.text-lg {
  font-size: 22px;
  line-height: 160%;
  color: #FFFFFF;
  font-weight: 400;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .text-lg {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .text-lg {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .text-lg {
    font-size: 20px;
  }
}

.text-md {
  font-size: 20px;
  line-height: 140%;
  color: #FFFFFF;
  font-weight: 400;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .text-md {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .text-md {
    font-size: 17px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .text-md {
    font-size: 19px;
  }
}

.text-sm {
  font-size: 18px;
  line-height: 140%;
  color: #FFFFFF;
  font-weight: 400;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .text-sm {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .text-sm {
    font-size: 16px;
  }
}

.text-xsm {
  font-size: 16px;
  line-height: 140%;
  color: #FFFFFF;
  font-weight: 400;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .text-xsm {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .text-xsm {
    font-size: 15px;
  }
}

.section-title {
  font-size: 42px;
  color: #FFFFFF;
  font-family: "Natasha";
  line-height: 120%;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .section-title {
    font-size: 26px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .section-title {
    font-size: 36px;
  }
}

.title-md {
  font-size: 24px;
  color: #FFFFFF;
  line-height: 120%;
  font-family: "Natasha";
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .title-md {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .title-md {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .title-md {
    font-size: 20px;
  }
}

.title-sm {
  font-size: 20px;
  color: #FFFFFF;
  line-height: 120%;
  font-family: "Natasha";
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .title-sm {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .title-sm {
    font-size: 18px;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Tilda Sans";
  position: relative;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.center {
  text-align: center;
}

.slick-arrow.slick-prev, .slick-arrow.slick-next {
  width: auto;
  height: auto;
  z-index: 2;
}
.slick-arrow.slick-prev::before, .slick-arrow.slick-next::before {
  display: none;
}
.slick-arrow.slick-prev img, .slick-arrow.slick-next img {
  width: 63px;
}
@media screen and (min-width: 320px) and (max-width: 1500px) {
  .slick-arrow.slick-prev img, .slick-arrow.slick-next img {
    width: 48px;
  }
}

.slick-arrow.slick-next {
  right: -48px;
}
@media screen and (min-width: 320px) and (max-width: 1500px) {
  .slick-arrow.slick-next {
    right: 5px;
  }
}

.slick-arrow.slick-prev {
  left: -48px;
}
@media screen and (min-width: 320px) and (max-width: 1500px) {
  .slick-arrow.slick-prev {
    left: 5px;
  }
}

.page {
  overflow: hidden;
}

.about {
  background: url("../../images/bg.jpg") center center repeat;
}
.about-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .about-heading {
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about-heading {
    margin-bottom: 30px;
  }
}
.about-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.about__descr {
  max-width: 230px;
}
.about-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.about-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 40px 50%;
  grid-template-columns: 50% 50%;
  gap: 40px;
  position: relative;
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .about-block {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 20px;
  }
}
.about-video {
  position: relative;
}
.about-video video {
  max-width: 100%;
  border-radius: 24px;
}
.about-item img {
  width: 100%;
  border-radius: 24px;
}
.about-slider {
  position: relative;
}
.about-slider .slick-prev {
  left: -25px;
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .about-slider .slick-prev {
    left: 5px;
  }
}
.about-slider .slick-next {
  right: -25px;
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .about-slider .slick-next {
    right: 5px;
  }
}
.about-img {
  position: absolute;
  top: 50%;
  left: -200px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  min-width: 1838px;
}

.carts {
  background: url("../../images/carts/carts-bg.jpg") center center;
  background-size: cover;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .carts-slider .slick-prev, .carts-slider .slick-next {
    top: 20%;
    margin-top: 42px;
  }
}
.carts__title {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .carts__title {
    margin-bottom: 40px;
  }
}
.carts-slide-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 70px 50%;
  grid-template-columns: 50% 50%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .carts-slide-wrapper {
    gap: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .carts-slide-wrapper {
    gap: 32px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .carts-slide-wrapper {
    gap: 48px;
  }
}
@media screen and (min-width: 320px) and (max-width: 990px) {
  .carts-slide-wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 0;
  }
}
.carts-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}
.carts-info-text__title {
  margin-bottom: 16px;
}
.carts-info-text__descrinfo {
  max-width: 400px;
  margin-top: 16px;
}
.carts-info-text__descr {
  margin-bottom: 6px;
}

.cert {
  background: url("../../images/bg.jpg") center center repeat;
}
.cert__title {
  margin-bottom: 60px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .cert__title {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .cert__title {
    margin-bottom: 45px;
  }
}

.contact {
  position: relative;
}
.contact a:hover {
  color: #C02637;
}
.contact-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact-block {
  padding: 70px 60px;
  background: #13141A;
  border-radius: 24px;
  position: relative;
  width: 525px;
  max-width: 100%;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .contact-block {
    padding: 40px 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .contact-block {
    padding: 50px 40px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .contact-block {
    padding: 60px 50px;
  }
}
.contact__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .contact__title {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .contact__title {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .contact__title {
    margin-bottom: 35px;
  }
}
.contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .contact-list {
    gap: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .contact-list {
    gap: 18px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .contact-list {
    gap: 20px;
  }
}
.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .contact-item {
    gap: 8px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .contact-item {
    gap: 10px;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .contact-item img {
    width: 42px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .contact-item img {
    width: 48px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .contact-item img {
    width: 54px;
  }
}
.contact-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .contact-item-content {
    gap: 8px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .contact-item-content {
    gap: 10px;
  }
}
.contact-item-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .contact-item-icons {
    gap: 8px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .contact-item-icons {
    gap: 10px;
  }
}

.feature {
  background: url("../../images/feature/feature-bg.jpg") center center no-repeat;
  background-size: cover;
}
.feature-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .feature-block {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .feature-block {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 20px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .feature-block {
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
.feature-item-icon {
  margin-bottom: 24px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .feature-item-icon {
    margin-bottom: 16px;
    height: 64px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .feature-item-icon {
    height: 72px;
  }
}
.feature-item__title {
  margin-bottom: 12px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .feature-item__title {
    margin-bottom: 8px;
  }
}
.feature-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .feature-heading {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .feature-heading {
    margin-bottom: 45px;
  }
}
.feature__descr {
  max-width: 440px;
}

.footer {
  background: url("../../images/bg.jpg") center center repeat;
  padding: 50px 0;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .footer {
    padding: 30px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer {
    padding: 40px 0;
  }
}
.footer-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .footer-block {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer-bottom {
  background: #0D0D0E;
}
.footer-item__title {
  margin-bottom: 24px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .footer-item__title {
    margin-bottom: 16px;
  }
}
.footer-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .footer-item-list {
    gap: 12px;
  }
}
.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 32px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .footer-social {
    margin-top: 16px;
    gap: 8px;
  }
}
.footer-bottom-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 30px 0;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .footer-bottom-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-bottom-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.main {
  background: url("../../images/main/main-bg.jpg") center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main {
    background: url("../../images/main/main-mob-bg.jpg") left center no-repeat;
    background-size: cover;
  }
}
.main a:hover {
  color: #C02637;
}
.main__title {
  margin-bottom: 30px;
}
.main-social {
  display: none;
}
.main__descr {
  margin-bottom: 40px;
}
.main-content {
  padding-top: 130px;
  padding-bottom: 170px;
  max-width: 470px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-content {
    padding-bottom: 120px;
  }
}
.main-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 28px;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-header__logo {
    width: 130px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.main-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-list {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    gap: 30px;
  }
}
.main-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-contact {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.main-contact-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-contact-phone {
    gap: 8px;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .main-contact-phone img {
    width: 32px;
  }
}

.price {
  background: url("../../images/bg.jpg") center center repeat;
}
.price__title {
  margin-bottom: 60px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .price__title {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .price__title {
    margin-bottom: 45px;
  }
}
.price table {
  margin: 0 auto;
  border-spacing: 0px;
  border-collapse: collapse;
}
.price table thead tr {
  background: #191D1E;
  border-bottom: 1px solid #BE2330;
}
.price table tbody tr {
  border-bottom: 1px solid #4C4C4C;
}
.price table tbody tr:nth-child(even) {
  background: #191D1E;
}
.price table tbody tr:nth-child(odd) {
  background: #212526;
}
.price table tbody tr td.main-color {
  color: #C02637;
}
.price table td {
  padding: 17px 25px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .price table td {
    font-size: 14px !important;
    padding: 12px 15px;
  }
}

.question {
  background: url("../../images/question/bg.jpg") center center no-repeat;
  background-size: cover;
}
.question-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .question-block {
    gap: 20px;
  }
}
.question__title {
  margin-bottom: 60px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .question__title {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .question__title {
    margin-bottom: 45px;
  }
}
.question-item {
  padding: 22px 30px;
  background: rgba(13, 13, 13, 0.4);
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .question-item {
    padding: 20px;
  }
}
.question-item:hover .question-item__title {
  color: #C02637;
}
.question-item-icon {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.question-item-icon::before {
  content: "";
  background: url("../../images/icons/plus.svg") center center no-repeat;
  background-size: cover;
  display: block;
  height: 14px;
  width: 14px;
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -55%);
          transform: translate(-50%, -55%);
}
.question-item-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.question-item__title {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 100%;
  position: relative;
}
.question-item-body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
}
.question-item.active .question-item-body {
  max-height: 1000px;
  margin-top: 24px;
}
@media screen and (min-width: 320px) and (max-width: 1023px) {
  .question-item.active .question-item-body {
    margin-top: 16px;
  }
}
.question-item.active .question-item__title {
  color: #C02637;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 22, 22, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.popup--active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  overflow: scroll;
}
.popup-body {
  background: url("../../images/modal/modal-bg.png") center center no-repeat;
  background-size: cover;
  width: 840px;
  max-width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-top: 110px;
  padding-bottom: 70px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}
.popup-body-content {
  max-width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0 auto;
}
.popup-body__title {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .popup-body__title {
    margin-bottom: 12px;
    font-size: 23px;
  }
}
.popup-body__descr {
  margin-bottom: 35px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .popup-body__descr {
    margin-bottom: 24px;
    font-size: 14px;
  }
}
.popup__input {
  margin-bottom: 16px;
}
.popup__input, .popup__button {
  width: 100%;
}
.popup__small {
  color: #FFFFFF;
  margin-top: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 400px;
}
.popup__close {
  position: absolute;
  top: 85px;
  right: 80px;
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .popup__close {
    top: 60px;
    right: 20px;
    width: 24px;
  }
}
.popup__success {
  color: #40B14C;
  margin-bottom: 16px;
  display: none;
}
.popup__success.active {
  display: block;
}

.track {
  background: url("../../images/track/bg.jpg") center center no-repeat;
  background-size: cover;
}
.track__title {
  margin-bottom: 32px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .track__title {
    margin-bottom: 24px;
  }
}
.track-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 45% 40px 55%;
  grid-template-columns: 45% 55%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
  position: relative;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .track-block {
    -ms-grid-columns: 100% 100%;
    grid-template-columns: 100% 100%;
  }
}
.track__descr {
  margin-bottom: 40px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .track__descr {
    margin-bottom: 24px;
  }
}
.track-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
  margin-bottom: 32px;
}
.track-cup {
  position: absolute;
  bottom: -200px;
  right: -500px;
}
.track__scheme {
  position: relative;
}

.menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.menu-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc(50% - 7.5px) 15px calc(50% - 7.5px);
  grid-template-columns: repeat(2, calc(50% - 7.5px));
  gap: 15px;
}
.menu .wa-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #3BC658;
  color: #FFFFFF;
  border-radius: 48px;
}

.action {
  background: url("../../images/bg.jpg") center center repeat;
}
.action__title {
  margin-bottom: 60px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .action__title {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .action__title {
    margin-bottom: 45px;
  }
}
.action-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (min-width: 320px) and (max-width: 550px) {
  .action-block {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 551px) and (max-width: 1023px) {
  .action-block {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.container {
  width: 1400px;
  max-width: 95%;
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .section {
    padding: 45px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section {
    padding: 60px 0;
  }
}
@media screen and (min-width: 1023px) and (max-width: 1279px) {
  .section {
    padding: 75px 0;
  }
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Tilda Sans";
  font-weight: 500;
  font-size: 20px;
  height: 80px;
  padding: 0 65px;
  color: #FFFFFF;
  border-radius: 48px;
  border: none;
  outline: none;
  background: linear-gradient(45deg, #be2330, #c1273b, #7d171b);
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .button {
    height: 60px;
    font-size: 15px;
    padding: 0 35px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .button {
    height: 70px;
    font-size: 17px;
    padding: 0 45px;
  }
}

.input {
  font-family: "Tilda Sans";
  height: 80px;
  background: #303030;
  color: #757575;
  border-radius: 48px;
  font-size: 20px;
  font-weight: 500;
  border: 2px solid #303030;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding: 0 32px;
  outline: none;
}
.input:hover, .input:focus {
  border-color: #C02637;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .input {
    height: 60px;
    font-size: 15px;
    padding: 0 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .input {
    height: 70px;
    font-size: 17px;
    padding: 0 28px;
  }
}

.tab-content .tab-item {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.tab-content .tab-item.active {
  display: block;
  opacity: 1;
}

.tab {
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  border-radius: 50px;
  border: 2px solid #E3EFDD;
  background: #FFFFFF;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .tab {
    font-size: 12px;
    height: 42px;
    padding: 0 12px;
  }
}
.tab:hover {
  background: #C02637;
  border-color: #C02637;
  color: #FFFFFF;
}
.tab.active {
  background: #C02637;
  border-color: #C02637;
  color: #FFFFFF;
  font-weight: 600;
}

.tab-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 45px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .tab-header {
    margin-bottom: 25px;
    gap: 8px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .tab-header {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .tab-header {
    margin-bottom: 35px;
  }
}