.hero .slick-prev, .hero .slick-next {
  width: 15px;
  z-index: 20;
  opacity: 0.5;
}
.hero .slick-prev:hover, .hero .slick-prev:focus {
  opacity: 1;
}
.hero .slick-next:hover, .hero .slick-next:focus {
  opacity: 1;
}
.hero .slick-prev::before, .hero .slick-prev::after {
  display: none;
}
.hero .slick-next::before, .hero .slick-next::after {
  display: none;
}
.hero .slick-prev {
  left: 0;
}
.hero .slick-next {
  right: 0;
}

.hero__nav {
  width: 100%;
  border-top: 1px solid rgb(63, 25, 25);
  border-bottom: 1px solid rgb(63, 25, 25);
}
.hero__nav .slick-slide {
  margin: 0;
}
.hero__nav .slick-current.heroButton::before, .hero__nav .slick-current.heroButton::after {
  display: none;
}
.hero__nav .slick-current.heroButton::before {
  top: 0;
}
.hero__nav .slick-current.heroButton::after {
  bottom: 0;
}

.hero .heroButton {
  color: #ddceb7;
  font-weight: 700;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  width: 100%;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  position: relative;
  font-size: var(--block-text-lg);
}
.hero .heroButton.slick-current {
  color: #fff;
  background: radial-gradient(circle, rgb(147, 58, 58) 25%, rgb(63, 25, 25) 100%);
}
.hero .heroButton:hover, .hero .heroButton:focus {
  color: #fff;
  background: radial-gradient(circle, rgb(147, 58, 58) 25%, rgb(63, 25, 25) 100%);
}
.hero .heroButton:hover::before, .hero .heroButton:hover::after {
  content: "";
  width: 95%;
  display: block;
  height: 1px;
  position: absolute;
  z-index: 1;
  color: #fff;
}
.hero .heroButton:focus::before, .hero .heroButton:focus::after {
  content: "";
  width: 95%;
  display: block;
  height: 1px;
  position: absolute;
  z-index: 1;
  color: #fff;
}
.hero .heroButton:hover::before, .hero .heroButton:focus::before {
  top: 0;
}
.hero .heroButton:hover::after, .hero .heroButton:focus::after {
  bottom: 0;
}

.hero__for {
  padding-top: 3%;
}

.hero__for-item h2 {
  text-align: center;
}

.hero__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hero__main-img {
  width: 82%;
  margin: 3% auto;
}

.hero__main .iconblock {
  margin: 2% auto 5%;
  text-align: center;
  width: calc(50% - 10px);
}
.hero__main .iconblock__img img {
  display: inline-block;
  margin: 0 5px;
  max-width: 50px;
}
.hero__main .iconblock p {
  line-height: 1.2;
}

@media (min-width: 576px) {
  .hero__main .iconblock {
    width: calc(25% - 10px);
  }
}
@media (min-width: 996px) {
  .hero .slick-prev, .hero .slick-next {
    width: 25px;
  }
  .hero .hero__nav {
    background: rgba(63, 25, 25, 0.5);
  }
  .hero__nav .slick-track {
    -webkit-transform: none !important;
    transform: none !important;
  }
  .hero__main {
    display: block;
  }
  .hero__main-img {
    width: 37%;
    margin: 0 auto;
    position: relative;
  }
  .hero__main .iconblock {
    position: absolute;
    margin: auto;
    width: 23%;
  }
  .hero__main .iconblock__img {
    display: none;
  }
}
@media (min-width: 1600px) {
  .hero__main-img {
    width: 55%;
  }
}/*# sourceMappingURL=hero.css.map */