

@media (min-width: 1600px) {
    .about-experience__words {
        width: fit-content;
        right: 10px;
        top: 70px;
    }
}

@media (min-width: 1024px) {
    .advantages__title {
        margin-bottom: 32px;
    }
}

@media (min-width: 1600px) {
    .nav__list.kk .nav__item {
        margin: 0 14px;
    }
}


.container_special {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 8px;
    padding-right: 8px;
  }
  
  @media (min-width: 1024px) {
    .container_special {
      max-width: 1224px !important;
      padding-left: 12px;
      padding-right: 12px;
    }
  }
  
  @media (min-width: 1600px) {
    .container_special {
      max-width: 1432px !important;
    }
  }

.hero-video {
   margin-bottom: 64px;
}

  @media (max-width: 1025px) {
    .hero__title {
        margin-bottom: 24px;
    }
    .hero-video {
        margin-bottom: 24px;
    }
  }


.hero-video__preview {
    position: relative;
    z-index: 1;
}

.hero-video__preview::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: rgba(0,0,0,.5);
    z-index: 2;
}

.hero-video__preview video {
    position: relative;
    width: 100%;
    /* height: 800px; */
    object-fit: contain;
    border-radius: 16px;
}

.hero-video__circle {
  /* display: flex;
  justify-content: center;
  align-items: center; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: white;
  border-radius: 100%;
  transition: all 0.3s linear;
  z-index: 3;
  opacity: 0;
}

.hero-video__circle:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.hero-video__circle::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    width: 32px;
    height: 38px;
    background: url(../img/icons/play-blue.svg) center/contain no-repeat;
}

@media (max-width: 1025px) {
    /* .hero-video__preview video {
        height: 500px;
    } */
    .hero-video__circle {
        width: 80px;
        height: 80px;
    }
    .hero-video__circle::after {
        width: 22px;
        height: 26px;
    }
}


.video-mobile{
    display: none;
}

@media (max-width: 1025px) {
    .video-mobile {
        display: block;
    }
    .video-desktop {
        display: none;
    }
}

@media (max-width: 1025px) {
    .checkboxes, .radios {
        white-space: nowrap;
        flex-wrap: nowrap;
        overflow: auto;
    }

    .checkboxes::-webkit-scrollbar {
        display: none;
    }

    .radios::-webkit-scrollbar {
        display: none;
    }
}

@media (min-width: 1024px) {
    .hero-video:hover .hero-video__circle {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .hero-video__circle {
        opacity: 1;
    }
}

.headline__wrap {
  padding-block: 24px;
}

@media (min-width: 1024px) {
  .headline__wrap {
      padding-block: 32px;
  }
}
  @media (min-width: 1536px) {
  .headline__wrap {
      padding-block: 40px;
  }
}

.headline {
  position: relative;
  z-index: 1;
    padding: 24px;
    background-color: #fff;
    -webkit-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
  }

@media (min-width: 1024px) {
.headline {
    padding: 32px;
}
}
@media (min-width: 1536px) {
.headline {
    padding: 40px;
}
}
.headline__back {
    font-size: 18px;
    margin-bottom: 24px;
    color: #96A1B5;
}

@media (min-width: 1024px) {
    .headline__back {
        font-size: 22px;
    }
}

.headline__back:hover {
    color: #FF1111;
}

.headline__back:hover svg path {
    stroke: #FF1111;
}

.headline__back svg path {
    stroke: #96A1B5;
    -webkit-transition: stroke 0.3s ease-in-out;
    transition: stroke 0.3s ease-in-out;
}

.headline__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.headline__info {
    width: 100%;
    color: #000;
}
@media (min-width: 1024px) {
    .headline__info {
        width: 66.6%;
    }
}

.headline__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.1;
}
@media (min-width: 1536px) {
    .headline__title {
        font-size: 40px;
    }
}

.headline__text {
    margin: 24px 0 24px 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
}
@media (min-width: 1024px) {
    .headline__text {
        font-size: 20px;
        margin: 24px 0 0 0;
    }
}
@media (min-width: 1536px) {
    .headline__text {
        font-size: 24px;
    }
}

.headline__visit {
    -ms-flex-item-align: end;
        align-self: flex-end;
}
@media (min-width: 1024px) {
    .headline__visit {
        margin-left: auto;
    }
}

.headline__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #3E54FF;
}
.headline__link svg {
    margin-left: 4px;
}
@media (min-width: 1024px) {
    .headline__link {
        font-size: 20px;
    }
}
@media (min-width: 1536px) {
    .headline__link {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .synergy-app__hero {
        padding-top: 24px;
    }
}

.headline-apps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
    margin: 0 -4px;
  }
  
.headline-apps__item {
    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;
    width: 50%;
    margin: 0 8px;
    height: 50px;
    background: #000000;
    border-radius: 32px;
  }
.headline-apps__item img {
    max-width: 80%;
}
@media (min-width: 768px) {
    .headline-apps__item {
        width: 200px;
        height: 64px;
}
    .headline-apps__item img {
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    .hero__scene {
        margin-top: 48px;
    }
}

.prepro .headline {
    position: relative;
    z-index: 2;
}

.page_three .headline {
    position: relative;
    z-index: 2;
}

.page_three .section_inner {
    padding-top: 24px;
}

.three_hero {
    padding-top: 24px !important;
}



.prepro-scene {
    padding-top: 48px;
}

.page_atlas .headline__info {
    color: #000000 !important;
}

.page_atlas .headline__text {
    max-width: 100% !important;
}

.pediatr_hero {
    top: -510px !important;
}

@media (max-width: 1025px) {
    .prepro-scene {
        padding-top: 24px;
    }
    .prepro-hero {
        padding-top: 24px;
    }
    .synergy-family__hero {
        padding-top: 24px;
    }
    .atlas_hero {
        padding-top: 24px;
    }

    .bulldozer-hero {
        padding-top: 24px;
    }

    .page_farm .hero {
        padding-top: 24px !important;
    }

    .pediatr_hero {
        top: -670px !important;
    }

    .foodfilter-case {
        padding-top: 24px;
    }

    .christmas-case {
        padding-top: 24px;
    }

}

.page_christmas .christmas_hero {
    height: 1200px;
}

.page_christmas .christmas-case {
    background: transparent;
}

.page_christmas .christmas_hero_laptop {
    top: 425px;
}

@media (max-width: 1500px) {
    .page_christmas .christmas_hero {
        flex-direction: column;
        height: auto;
    }
    .christmas-case {
        padding-top: 24px;
    }
    .page_christmas .christmas_hero_laptop {
        position: relative;
        left: auto;
        top: 30px;
        right: auto;
        transform: none;
    }
    .page_christmas .christmas_hero_laptop img {
        max-width: 100%;
    }
}

.page_pediatr .headline {
    margin-bottom: 24px;
}

@media(min-width: 1201px) {
    .page_pediatr .hero_img {
        right: -48px;
    }
}

@media (max-width: 1380px) {
    .page_pediatr .hero_text {
        padding: 525px 0 50px;
    }
}

@media (max-width: 1199px) {
    .page_pediatr .hero_text {
        padding: 525px 0 50px;
    }
}

@media (max-width: 991px) {
    .page_pediatr .hero_text {
        padding: 710px 0 50px;
    }
}

.success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 24px;
    text-align: center;
}

@media (min-width: 1024px) {
    .success {
        padding-block: 64px;
    }
}

@media (min-width: 1600px) {
    .success {
        padding-block: 80px;
    }
}

.success__link {
    max-width: 180px;
}

.improve {
  padding-block: 16px 32px;
}

.improve__slide {
  width: 256px;
  margin-right: 12px;
}

.improve__item {
  display: flex;
  align-items: center;
}

.improve__img {
  position: relative;
  max-width: 68px;
  width: 100%;
  margin-right: 8px;
  padding-bottom: 68px;
  border-radius: 21px;
  overflow: hidden;
}

.improve__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.improve__descr {
  max-width: 180px;
}

.improve__title {
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 1.2;
}

.improve__text {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
}

@media (min-width: 1024px) {  
  .improve {
    padding-block: 16px 40px;
  }

  .improve__slide {
    width: 316px;
    margin-right: 16px;
  }
  
  .improve__img {
    max-width: 80px;
    margin-right: 16px;
    padding-bottom: 80px;
  }
  
  .improve__descr {
    max-width: 220px;
  }
  
  .improve__title {
    font-size: 24px;
  }
  
  .improve__text {
    font-size: 18px;
  }
}

@media (min-width: 1600px) {
  .improve {
    padding-block: 16px 60px;
  }
  
  .improve__slide {
    width: 414px;
    margin-right: 24px;
  }
  
  .improve__img {
    max-width: 98px;
    margin-right: 24px;
    padding-bottom: 98px;
  }
  
  .improve__descr {
    max-width: 298px;
  }
  
  .improve__title {
    font-size: 32px;
  }
  
  .improve__text {
    font-size: 20px;
  }
}

.control__recaptcha {
  flex-direction: column;
}

.page.home .works__item:nth-child(n+11),
.page.blue .works__item:nth-child(n+11),
.page.black .works__item:nth-child(n+11) {
  display: none;
}