.main_slide {
  width: 83%;
  position: relative;
  max-width: 800px;
  margin: 15px auto;
  background: rgba(0,0,0,0.45);
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 25px;
  border-radius: 25px;
  height: 400px;
  transition: all 0.3s;
}

@media screen and (max-width: 576px) {
  .main_slide {
    width: 93%;
    max-width: 680px;
    height: 350px;
    margin: auto;
    padding: 15px 0;
  }
}

@media screen and (max-width: 843px) and (min-width: 768px) {
  .main_slide {
    width: 93%;
  }
}

@media screen and (max-width: 576px) {
  .main_slide {
    min-height: 500px;
    height: auto;
    margin: 149px auto 25px;
  }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
  .main_slide {
    height: 350px;
  }
}

.slide_item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 576px) {
  .slide_item {
    flex-direction: column;
  }
}

.slide_img {
  width: 275px;
  flex-shrink: 0;
  height: 275px;
  background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}

.slide_img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  border-radius: 20px;
  opacity: 0.3;
}

@media screen and (max-width: 992px) and (min-width: 576px) {
  .slide_img {
    width: 225px;
    height: 225px;
    position: relative;
    bottom: -25px;
    left: 25px;
  }
}

@media screen and (max-width: 576px) {
  .slide_img {
    transform: translateY(-50%);
    width: 90%;
  }
}

@media screen and (max-width: 576px) {
  .slide_img {
    width: 90%;
  }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
  .slide_img {
    height: 270px;
  }
}

.slide_content {
  padding-right: 25px;
}

@media screen and (max-width: 576px) {
  .slide_content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
  }
}

@media screen and (max-width: 576px) {
  .slide_content {
    padding: 0;
  }
}

.slide_date {
  color: #777777;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}

.slide_title {
  font-size: 24px;
  font-weight: 700;
  color: #bbbbbb;
  margin-bottom: 20px;
}

.slide_text {
  color: #bb9d7a;
  margin-bottom: 30px;
  line-height: 1.5em;
}

.slide_butt {
  display: inline-flex;
  background-image: linear-gradient(147deg, rgba(254,138,57,0.5) 0%, rgba(253,56,56,0.5) 74%);
  padding: 5px 10px;
  border-radius: 10px;
  color: #eeeeee;
  box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}

@media screen and (max-width: 476px) {
  .blog-slider__button {
    width: 100%;
  }
}

.butts {
  display: flex;
  justify-content: space-evenly;
  position: relative;
  top: -240px;
}

@media (min-width: 576px) {
  .butts {
    top: 29px;
    right: 175px;
    justify-content: center;
  }
}

@media (max-width: 422px) {
  .butts {
    top: -259px;
  }
}

.prev, .next {
  cursor: pointer;
  position: relative;
  top: 50%;
  width: auto;
  padding: 9px;
  margin-top: -22px;
  color: #eb5535;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  border: 1px solid #7b7992;
  border-radius: 9px;
}

@media only screen and (max-width: 300px) {
  .prev, .next, .text {
    font-size: 11px;
  }
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.activ, .dot:hover {
  background-color: rgba(253,56,56,0.5);
}

.slide_content {
  animation-name: slide_content;
  animation-duration: .9s;
}

@keyframes slide_content {
  from {
    transform: translateY(-25px);
    opacity: .7;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

.fad {
  animation-name: fad;
  animation-duration: 2.3s;
  width: 100%;
  height: 275px;
  object-fit: cover;
}

@keyframes fad {
  from {
    opacity: .4;
  }
  to {
    opacity: 1;
  }
}

.prev:hover, .next:hover {
  color: #aaaaaa;
}

@media (min-width: 768px) {
  .main_slide {
    right: -23px;
  }
}

