html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

  }
  
  *,
  *::before,
  *::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    padding: 0;
    margin: 0;
  }
  body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    margin: 0 auto;
  }


h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  padding: 0;
  margin: 0;
}

.header {
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: row;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(84,182,157,1) 100%);
    margin: 0 auto;
    -webkit-box-shadow: 0px 12px 10px -5px rgba(34, 60, 80, 0.24);
    -moz-box-shadow: 0px 12px 10px -5px rgba(34, 60, 80, 0.24);
    box-shadow: 0px 12px 10px -5px rgba(34, 60, 80, 0.24);
}
.header__logo {
    padding: 24px 120px 18px 110px;
}
.navigatoin {
    max-width: 790px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 32px 0px 18px 0px ;
}
.nav {
    font-family: HelveticaNeueCyr;
    font-size: 16px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0em;
    text-align: left;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 1;
    text-decoration: none; /* Убираем подчеркивание */
    cursor: pointer;
}
.navigatoin a:after {
    background-color: #f66d52; /* Цвет линии при наведении на нее курсора мыши */
    display: block;
    content: "";
    height: 2px; /* Высота линии */
    width: 0%;
    -webkit-transition: width .3s ease-in-out;
    -moz--transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
}
.navigatoin a:hover:after,
.navigatoin a:focus:after {
    width: 100%;
}
.phone {
    padding: 28px 10px 18px 45px;
}
.phone a:after {
    background-color: #f66d52; /* Цвет линии при наведении на нее курсора мыши */
    display: block;
    content: "";
    height: 2px; /* Высота линии */
    width: 0%;
    -webkit-transition: width .3s ease-in-out;
    -moz--transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
}
.phone a:hover:after,
.phone a:focus:after {
    width: 100%;
}
.contacts__phone {
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0em;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
}

.box {
}
.box__banner {
    background-image: url(/img/banner.jpg);
    max-width: 1210px;
    width: 100%;
    height: 360px;
    margin: 13px auto;

}
.banner__title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 40px;
    letter-spacing: 0em;
    text-align: center;
    color: #007C86;
    display: flex;
    justify-content: flex-end;
    padding: 44px 20px 30px 0px  ;



}
.banner__price {
    width: 232px;
    height: 101px;
    border-radius: 27px;
    background: #54B69D;
    display: flex;
    flex-direction: column;
    margin-left: 801px;
   


}
.money {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 31px;
    letter-spacing: 0em;
    text-align: center;
    color: white;    
    margin-top: 18px ;
}

.benefit {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  
}
.benefit__list {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.benefit__item {
    width: 315px;
    padding-right: 80px;
    text-align: center;
    padding-top: 62px ;
}
.benefit__img {
    height: 75px;
    padding-bottom: 8px ;
}
.benefit__img:hover {
	animation: bounce  ease 2s;
    cursor: pointer;
    animation-timing-function: ease;
 
}
@keyframes bounce {
    0% { transform: scale(1) translateY(0); }
    10% { transform: scale(1.2, 0.6); }
    30% { transform: scale(0.8, 1.1) translateY(-50px); }
    50% { transform: scale(1) translateY(0); }
    100% { transform: translateY(0); }
}
.benefit__item-title {
    font-family: Arial, Helvetica, sans-serif;
}
.benefit__txt {
    font-family: Arial, Helvetica, sans-serif;
}

.content {
    max-width: 1216px;
    width: 100%;
    margin: 0 auto;
    border-radius: 51px;
    border: solid 5px #54B69D;
    margin-top: 50px ;

}
.content__title {
   margin: 0 auto;
   text-align: center;
   font-family: Arial, Helvetica, sans-serif;
   font-size: 30px;
    font-weight: 900;
    line-height: 29px;
    color: #54B69D;
    padding-top: 34px;
    padding-bottom: 36px;


}
.content__info {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    padding-left: 30px;
    padding-bottom: 35px;
}
.content__txt {
    max-width: 570px;
    width: 100%;
    text-align: justify;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 15px;


}
.content__img{
    width: 579px;
    height: 310px;
margin-left: 20px;
padding-bottom: 20px
}


.work {
    max-width: 1216px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    margin-top: 86px;
    margin-bottom: 91px;
}
.work__info {
    display: flex;
    flex-direction: column;
}
.work__title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: left;
    color: #007C86;
    padding-bottom: 31px;

}
.work__txt {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0em;
    text-align: justified;
    text-align: justify;
    max-width: 537px;
    width: 100%;
}
.work__img {
    width: 606px;
    height: 558px;
    margin-left: 58px;
}

.privilege {
    max-width: 1216px;
    width: 100%;
    margin: 0 auto;
    background: #54B69D;

   
}
.privilege__title {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: center;
    color: white;
    padding-top: 41px;
}
.privilege__list {
max-width: 545px;
width: 100%;
margin-left: 290px;
margin-top: 27px;
padding-bottom: 45px ;
}
.privilege__item {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 550;
    line-height: 17px;
    text-align: left;
    color: white;
    padding-top: 10px;
    
}

.layout {
max-width: 1216px;
width: 100%;
border: 2px solid #54B69D ;
margin: 0 auto;
border-radius: 51px;
margin-top: 58px;
}
.layout__wrap {
    display: flex;
    flex-direction: row;
    margin-left: 90px;
    margin-top: 47px ;
}
.layout__block {
}
.layout__title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: left;
    color: #007C86;
    margin-bottom: 20px ;

}
.layout__list {
    width:500px;
    margin-left: 20px
}

.layout__item {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: left;


}
.layout__image{
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    margin-left: 80px;
}

.table {
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
}
.table__title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: center;
    color:#007C86 ;    
    margin-top: 85px; 
    margin-bottom: 19px; 
}
.table__img{
    margin: 0 auto;
    margin-left: 22%;
    max-width: 790px;
    width: 100%;
}

.video {
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
}
.video__title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: center;
    color: #007C86;
    margin-bottom: 20px ;
    margin-top: 59px;
}
.video__video {
    margin: 0 auto;
    margin-left: 22%;
}
.quation{
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
}

/* # The Rotating Marker # */
details summary::-webkit-details-marker { display: none; }
summary::before {
    font-family: Arial, Helvetica, sans-serif;
  content: "▶";
  position: absolute;
  top: 1rem;
  left: 0.8rem;
  transform: rotate(0);
  transform-origin: center;
  transition: 0s transform ease;
}
details[open] > summary:before {
  font-family: Arial, Helvetica, sans-serif;
  transform: rotate(90deg);
  transition: 0s transform ease;
}

/* # The Sliding Summary # */
details { overflow: hidden; }
details summary {
  position: relative;
  z-index: 10;
  font-family: Arial, Helvetica, sans-serif;
}
@keyframes details-show {
  from {
    margin-bottom: -80%;
    opacity: 0;
    transform: translateY(-100%);
 
  }
}
details > *:not(summary) {
  animation: details-show 0ms ease-in-out;
  position: relative;
  z-index: 1;
  transition: all 0s ease-in-out;
  color: transparent;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}
details[open] > *:not(summary) { color: inherit; }





/* # Style 4 # */
details.style4 summary {
  padding-right: 2.2rem;
  padding-left: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
details.style4 summary::before {
  content: "×";
  color: #FFF;
  font-size: 2rem;
  line-height: 1rem;
  transform: rotate(-45deg);
  top: 1.2rem;
  left: unset;
  right: 0.6rem;
  font-family: Arial, Helvetica, sans-serif;
}
details[open].style4 > summary:before {
  transform: rotate(90deg);
  color: white !important;
  transition: color ease 2s, transform ease 1s;
  font-family: Arial, Helvetica, sans-serif;
}
/* # Just Some Pretty Styles # */

img { max-width: 100%; }
p { margin: 0; padding-bottom: 10px; }
p:last-child { padding: 0; }
details {
  max-width: 896px;
  box-sizing: border-box;
  margin-top: 5px;
  background: white;
  margin: 0 auto;
  margin-top: 15px;
  font-family: Arial, Helvetica, sans-serif;
}
summary {
  border: 4px solid transparent;
  outline: none;
  padding: 1rem;
  display: block;
  background: #54B69D;
  color: white;
  padding-left: 2.2rem;
  position: relative;
  cursor: pointer;
}
details[open] summary,
summary:hover {
  color: white;
  background: #54B69D;
}
summary:hover strong,
details[open] summary strong,
summary:hover::before,
details[open] summary::before {
  color: white;
}
.content1 {
  padding: 18px;
  background-color: #E3E3E3;
  border-top: none;
}

.footer {
    padding-top: 30px;
    margin: 0 auto;
    margin-top: 101px ;
    padding-bottom: 40px;
    display: flex;
    flex-direction: row;
    max-width: 1440px;
    width: 100%;
    justify-content: space-around;
    background: rgb(84,182,157);
background: linear-gradient(0deg, rgba(84,182,157,1) 0%, rgba(255,255,255,0.00462962962962965) 100%);
}
.footer__info {   font-family: Arial, Helvetica, sans-serif;
}
.footer__txt {
    font-family: Arial, Helvetica, sans-serif;
}
.contacts__phone {
    font-family: Arial, Helvetica, sans-serif;
}
.footer__nav {
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
}
.navi{
    font-family: Arial, Helvetica, sans-serif;
}

.footer__nav a:after {
    background-color: #f66d52; /* Цвет линии при наведении на нее курсора мыши */
    display: block;
    content: "";
    height: 2px; /* Высота линии */
    width: 0%;
    -webkit-transition: width .3s ease-in-out;
    -moz--transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
}
.footer__nav a:hover:after,
.footer__nav a:focus:after {
    width: 100%;
}

@media (max-width: 1440px) {
   
    .header__logo {
    padding: 24px 40px 18px 120px;
}
  }
  
  @media (max-width: 1256px) {
    .layout__list {
        width: 380px;
        margin-left: 20px;}
    .phone {
    display: none ;
}
  }
  @media (max-width: 1160px) {
    .layout__image {
        display: none;
      
    }
    .banner__price {
        margin-left: 501px;
}
.navigatoin{
    display: none;
}
.table__img {
    margin: 0 auto;
    margin-left: 13%;}
    .video__video {
        margin: 0 auto;
        margin-left: 13%;
    }
  }

  @media (max-width: 830px) {
   

.benefit {
    max-width: 770px;}
    .banner__price {
        margin-left: 253px;
}
.content__info {
    display: flex;
    flex-direction: column;}
    .work {
       
        display: flex;
        flex-direction: column;
    margin-left: 20px;}
    .work__img {
        width: 400px;
        height: 305px;
        margin-left: 58px;
}
.privilege__list {
    margin-left: 30px;
 
}
.layout__wrap {
    display: flex;
    flex-direction: column;
   
  }
  .layout__image {
    display: none;
  
}
.table__img {
    margin: 0 auto;
    margin-left: 0%;
    }
    .video__video {
        margin: 0 auto;
        margin-left: 20%;
        width: 400px;
    }
  }
  .container{
    display: flex;
    flex-direction: column;
    align-items:center ;
  }

  .products {
    padding-top: 50px;
    padding-bottom: 0px;
  }
  @media (max-width: 1380px) {
    .products {
      padding-top: 30px;
      padding-bottom: 30px;
    }
  }
  
  .products__subtitle {
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 120%;
    font-weight: bold;
    text-decoration: underline;
  }
  @media (max-width: 780px) {
    .products__subtitle {
      font-size: 24px;
    }
  }
  @media (max-width: 560px) {
    .products__subtitle {
      font-size: 22px;
    }
  }
  @media (max-width: 480px) {
    .products__subtitle {
      font-size: 20px;
    }
  }
  
  .products__list {
    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;
    gap: 50px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 1075px;
  }
  @media (max-width: 470px) {
    .products__list {
      display: block;
    }
  }
  
  .product__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 325px;
            flex: 0 0 325px;
    margin-bottom: 30px;
    background-color: #54B69D;
  
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
    cursor: pointer;
  }
  @media (max-width: 1380px) {
    .product__item {
      -ms-flex-preferred-size: 280px;
          flex-basis: 280px;
    }
  }
  @media (max-width: 780px) {
    .product__item {
      -ms-flex-preferred-size: 230px;
          flex-basis: 230px;
    }
  }
  @media (max-width: 470px) {
    .product__item {
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
      margin-left: 10px;
      margin-right: 10px;
      margin-bottom: 15px;
    }
  }
  
  .product__item:hover {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  
  .product__link {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 319px;
    height: 100%;
    max-height: 480px;
    padding-top: 0px;
    padding-bottom: 35px;
    background-color: #54B69D;
    
  }
  @media (max-width: 1380px) {
    .product__link {
      padding-top: 70px;
      padding-bottom: 25px;
      font-size: 20px;
      line-height: 24px;
    }
  }
  @media (max-width: 780px) {
    .product__link {
      padding-top: 30px;
      font-size: 18px;
      line-height: 22px;
    }
  }
  @media (max-width: 470px) {
    .product__link {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding-top: 15px;
      padding-bottom: 10px;
    }
  }
  
  .products__img-label {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 73px;
    height: 56px;
  }
  @media (max-width: 1380px) {
    .products__img-label {
      top: 5px;
      right: 5px;
    }
  }
  @media (max-width: 1380px) {
    .products__img-label {
      width: 55px;
      height: 45px;
    }
  }
  
  .product__label {
    position: absolute;
    top: 0;
    left: 0;
    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: 5px 8px;
    background-color: #454381;
    border-radius: 10px 0 0 0;
  }
  
  .product__label-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
    text-transform: uppercase;
  }
  @media (max-width: 1380px) {
    .product__label-text {
      font-size: 18px;
    }
  }
  @media (max-width: 470px) {
    .product__label-text {
      font-size: 10px;
    }
  }
  
  .product__img {
    display: inline-block;
    height: 120px;
    /* margin-bottom: 25px; */
    padding-left: 48px;
    padding-right: 20px;
  }
  @media (max-width: 1380px) {
    .product__img {
      height: 100px;
      margin-bottom: 20px;
    }
    .product__link{
      max-height: 580px;
    }
  }
  @media (max-width: 780px) {
    .product__img {
      margin-bottom: 15px;
    }
  }
  @media (max-width: 470px) {
    .product__img {
      max-width: 100px;
      height: 60px;
      padding-right: 0;
      padding-left: 0;
    }
  }
  
  .product__img img {
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  .product__img:hover img {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  
  .product__text {

  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: center;
  color: white;
  margin-bottom: 0px;

  }
  @media (max-width: 1380px) {
    .product__text {
      font-size: 19px;
      margin-bottom: 15px;
    }
  }
  @media (max-width: 780px) {
    .product__text {
      font-size: 18px;
      margin-bottom: 10px;
    }
  }
  @media (max-width: 470px) {
    .product__text {
      font-size: 15px;
      margin-bottom: 0;
    }
  }
  @media (max-width: 380px) {
    .product__text {
      font-size: 13px;
    }
  }
  
  @media (max-width: 470px) {
    .product__mobwrap {
      -ms-flex-preferred-size: 160px;
          flex-basis: 160px;
      -webkit-box-flex: 0;
          -ms-flex-positive: 0;
              flex-grow: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      padding-top: 10px;
      padding-left: 8px;
      padding-right: 8px;
    }
  }
  @media (max-width: 400px) {
    .product__mobwrap {
      -ms-flex-preferred-size: 120px;
          flex-basis: 120px;
    }
  }
  @media (max-width: 360px) {
    .product__mobwrap {
      -ms-flex-preferred-size: 100px;
          flex-basis: 100px;
    }
  }
  
  .product__summaru {
    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-left: 10px;
    padding-right: 10px;
    margin-bottom: 15px;
  }
  @media (max-width: 470px) {
    .product__summaru {
      margin-bottom: 0;
    }
  }
  @media (max-width: 380px) {
    .product__summaru {
      padding-left: 5px;
    }
  }
  
  .product__descr {
    text-align: left;
  }
  
  .product__descr .product__descr-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: center;
    color: white;
    margin-top:19px ;

  }
  @media (max-width: 1380px) {
    .product__descr .product__descr-title {
      font-size: 18px;
      line-height: 22px;
    }
  
  }
  @media (max-width: 780px) {
    .product__descr .product__descr-title {
      font-size: 16px;
      line-height: 20px;
    }
  }
  @media (max-width: 470px) {
    .product__descr .product__descr-title {
      font-size: 14px;
      line-height: 18px;
    }
  }
  @media (max-width: 380px) {
    .product__descr .product__descr-title {
      font-size: 13px;
      line-height: 17px;
    }
  }
  
  .product__descr p {
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
  }
  @media (max-width: 1380px) {
    .product__descr p {
      font-size: 16px;
    }
  }
  @media (max-width: 780px) {
    .product__descr p {
      font-size: 14px;
      line-height: 18px;
    }
  }
  @media (max-width: 470px) {
    .product__descr p {
      font-size: 12px;
      line-height: 14px;
    }
  }
  
  @media (max-width: 1380px) {
    .product__shopicon {
      display: none;
    }
  }
  
  .product__shopicon:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  .product__price {
    position: absolute;
    right: 118px;
    bottom: 15px;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    text-align: right;
    display: flex;
    justify-content: center;
    font-size: 16px;
  }
  @media (max-width: 1380px) {
    .product__price {
      font-size: 16px;
      right: 100px;
    }
  }
  @media (max-width: 1180px) {
    .product__price {
      font-size: 18px;
    }
  }
  @media (max-width: 780px) {
    .product__price {
      right: 0;
      font-size: 16px;
    }
  }
  @media (max-width: 480px) {
    .product__price {
      font-size: 14px;
    }
  }
  @media (max-width: 470px) {
    .product__price {
      display: none;
    }
  }


  .modal {
    display: none;
  }
  
  .modal-dialog {
    max-width: 590px;
    width: auto;
  }
  
  #ModalPresent .form {
    max-width: 600px;
    width: 100%;
    background-color: #FFFFFF;
    padding-bottom: 20px;
    border-radius: 20px;
    padding-right: 20px;
    padding-left: 20px;
  }
  
  .modal__title {
    background-color: #ed1c24;
    border-radius: 20px 20px 0 0;
    font-family: "OpenSans-Bold", Arial, sans-serif;
    font-size: 30px;
    line-height: 130%;
    color: #FFFFFF;
    padding: 10px 10px 10px 10px;
    margin-left: -20px;
    margin-right: -20px;
    text-align: center;
  }
  
  @media (max-width: 1380px) {
    .modal__title {
      font-size: 26px;
    }
    .scroll{
      top: 70px;
    }
  }
  @media (max-width: 1180px) {
    .modal__title {
      font-size: 24px;
    }
  }
  @media (max-width: 780px) {
    .modal__title {
      font-size: 20px;
    }
  }
  .modal .form__list {
    text-align: center;
  }
  
  .modal.fancybox__content > .carousel__button.is-close {
    position: absolute;
    top: -40px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    color: var(--fancybox-color, #fff);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: -webkit-gradient(linear, left top, right top, from(#54B69D), to(#54B69D));
    background: linear-gradient(90deg, #54B69D, #c1d6d0);
  }
  
  .modal.fancybox__content {
    padding: 0;
    border-radius: 20px;
  }
  
  .modal .form__item {
    padding-right: 0;
  }
  
  .modal__more-title,
  .modal__more-text {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .modal__more-title {
    margin-top: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: center;
    color: #007C86;
  }
  @media (max-width: 1380px) {
    .modal__more-title {
      font-size: 30px;
    }
  }
  @media (max-width: 1180px) {
    .modal__more-title {
      font-size: 24px;
    }
  }
  @media (max-width: 640px) {
    .modal__more-title {
      font-size: 20px;
    }
  }
  
  .modal__more-subtitle {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 110%;
    text-align: justify;
    padding-left: 13px;
    padding-right: 13px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  @media (max-width: 1080px) {
    .modal__more-subtitle {
      font-size: 18px;
    }
  }
  @media (max-width: 640px) {
    .modal__more-subtitle {
      font-size: 16px;
    }
  }
  @media (max-width: 480px) {
    .modal__more-subtitle {
      font-size: 14px;
    }
  }
  
  .modal__more-text {
    font-size: 20px;
    line-height: 110%;
    padding-bottom: 20px;
  }
  @media (max-width: 1080px) {
    .modal__more-text {
      font-size: 18px;
    }
  }
  @media (max-width: 640px) {
    .modal__more-text {
      font-size: 16px;
    }
  }
  @media (max-width: 480px) {
    .modal__more-text {
      font-size: 14px;
    }
  }
  
  .modal__more-text p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 3px;
  }
  
  .modal__more-text p img {
 margin-left: 0px;
  }
  @media (max-width: 1080px) {
    .modal__more-text p img {
   width: 100%;
   margin-left: 0px;
    }
  }
  @media (max-width: 640px) {
    .modal__more-text p img {
      width: 100%;
    }
  }

  .scroll{
  position: fixed;
  top: 816px;
  right: 0px;
  left: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  }
  .center-con {
    margin-right: 86px;
}

.round {
    position: relative;
    border: 1px solid #54B69D;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.ro {
    z-index: 999;
    height: 3px;
    margin:1px;
    width: 16px;
    background: #54B69D;
    transition: 0.4s ease;
}

span:first-child {
    display: block;
    position: absolute;
    transform: rotate(45deg);
    left: 41%;
    bottom: 35%;
}

span:nth-child(2) {
    display: block;
    position: absolute;
    transform: rotate(-45deg);
    left: 20%;
    bottom: 35%;
}

span:nth-child(3) {
    display: block;
    position: absolute;
    transform: rotate(45deg);
    left: 41%;
    bottom: 57%;
}

span:nth-child(4) {
    display: block;
    position: absolute;
    transform: rotate(-45deg);
    left: 20%;
    bottom: 56%;
}

.round:hover span:nth-child(1) {
    transform: rotate(-135deg);
}

.round:hover span:nth-child(2) {
    transform: rotate(135deg);
}

.round:hover span:nth-child(3) {
    transform: rotate(225deg);
}

.round:hover span:nth-child(4) {
    transform: rotate(-225deg);
}
@media (max-width: 1440px) {

  .scroll{
    top: 470px;
  }
  .center-con {
    margin-right: 10px;
}
}
@media (max-width: 1380px) {

  .scroll{
    top: 470px;
  }
  .center-con {
    margin-right: 10px;
}
}
@media (max-width: 420px) {
  .header {
    max-width: 100%;
    width: 420px;
  }
  .banner__price {
    margin: 0 auto;
}
.content{
  width: 400px;
}
.layout{
  width: 370px;
}
.work__txt{
  width: 360px;
}
.work__img {
  width: 340px;
  height: 305px;
  margin-left: 0px;
}

.privilege__list {
  margin-left: 31px;
  width: 345px;
}
.layout__list {
  width: 300px;
  margin-left: 0px;
}
.layout__wrap {

  margin-left: 60px;

}
.video {
  margin: 0 auto;
  max-width: 390px;
  width: 100%;
}
.video__video {
  margin: 0 auto;
  margin-left: 0%;
  width: 390px;
}
.benefit__list{
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.content {
  width: 360px;
}
.content__txt{
  margin-left: -16px;
  max-width: 330px;
}
.content__img{
  margin-left: 0px;
  width: 300px;
}
.center-con {
  margin-right: 26px;
}
}
@media (max-width: 390px) {
  .header {
    max-width: 100%;
    width: 390px;
  }
  .banner__price {
    margin-left: 83px;
}
.work__txt{
  width: 360px;
}
.work__img {
  width: 340px;
  height: 305px;
  margin-left: 0px;
}

.privilege__list {
  margin-left: 31px;
  width: 345px;
}
.layout__list {
  width: 300px;
  margin-left: 0px;
}
.layout__wrap {

  margin-left: 60px;

}
.video {
  margin: 0 auto;
  max-width: 390px;
  width: 100%;
}
.video__video {
  margin: 0 auto;
  margin-left: 0%;
  width: 390px;
}
.benefit__list{
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.content__txt{
  margin-left: -16px;
}
.content__img{
  margin-left: 0px;
  width: 300px;
}
.center-con {
  margin-right: 26px;
}
}
@media (max-width: 310px) {
  .header {
    max-width: 100%;
    width: 300px;
  }
  .header__logo{
    padding: 24px 0 18px 50px;
  }
  .banner__price {
    margin-left: 43px;
}
.work__txt{
  width: 270px;
}
.work__img {
  width: 250px;
  height: 305px;
  margin-left: 0px;
}

.privilege__list {
  margin-left: 31px;
  width: 280px;
}
.layout__title {

  margin-left: -45px;
  font-size: 27px;

}
.layout__list {
  width: 210px;
  margin-left: 0px;
}
.layout__wrap {

  margin-left: 60px;

}
.video {
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
}
.video__video {
  margin: 0 auto;
  margin-left: 0%;
  width: 100%;
  max-width: 300px;
}

.benefit__list{
  margin: 0 auto;
    padding-left: 74px;
    display: flex;
    justify-content: right;
    width: 300px;
}

.content__txt{
  margin-left: -16px;
}
.content__img{
  margin-left: 0px;
  width: 300px;
}
.center-con {
  margin-right: 26px;
}
}


.topscreen__form-wrap {
  margin-bottom: 50px;
  margin-top: 55px;
  padding-right: 80px;
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  text-align: center;
}
@media (max-width: 1080px) {
  .topscreen__form-wrap {
    display: none;
  }
}

.topscreen__slider-text {
  font-family: "OpenSans-Bold", Arial, sans-serif;
  font-size: 34px;
  line-height: 120%;
  margin-bottom: 20px;
  text-shadow: 0 -1px 3px #FFFFFF, 0 -1px 3px #FFFFFF, 0 1px 3px #FFFFFF, 0 1px 3px #FFFFFF, -1px 0 3px #FFFFFF, 1px 0 3px #FFFFFF, -1px 0 3px #FFFFFF, 1px 0 3px #FFFFFF, -1px -1px 3px #FFFFFF, 1px -1px 3px #FFFFFF, -1px 1px 3px #FFFFFF, 1px 1px 3px #FFFFFF, -1px -1px 3px #FFFFFF, 1px -1px 3px #FFFFFF, -1px 1px 3px #FFFFFF, 1px 1px 3px #FFFFFF;
}
@media (max-width: 1380px) {
  .topscreen__slider-text {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1180px) {
  .topscreen__slider-text {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1080px) {
  .topscreen__slider-text {
    margin-bottom: 15px;
  }
}
@media (max-width: 780px) {
  .topscreen__slider-text {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .topscreen__slider-text {
    font-size: 18px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.topscreen__slider-text img {
  width: 80px;
  height: 80px;
}
@media (max-width: 1380px) {
  .topscreen__slider-text img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 1180px) {
  .topscreen__slider-text img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 780px) {
  .topscreen__slider-text img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .topscreen__slider-text img {
    width: 30px;
    height: 30px;
  }
}

.topscreen__slider-title {
  font-family: "Kong", Arial, sans-serif;
  line-height: 120%;
}

.topscreen__slider-title2 {
  font-family: "Roboto-Black", Arial, sans-serif;
  font-weight: bold;
  line-height: 100%;
  margin-bottom: 30px;
}

.topscreen__slider-title,
.topscreen__slider-title2 {
  font-size: 80px;
  color: #454381;
}
@media (max-width: 1380px) {
  .topscreen__slider-title,
.topscreen__slider-title2 {
    font-size: 70px;
  }
}
@media (max-width: 1180px) {
  .topscreen__slider-title,
.topscreen__slider-title2 {
    font-size: 60px;
  }
}
@media (max-width: 960px) {
  .topscreen__slider-title,
.topscreen__slider-title2 {
    font-size: 40px;
  }
}
@media (max-width: 640px) {
  .topscreen__slider-title,
.topscreen__slider-title2 {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .topscreen__slider-title,
.topscreen__slider-title2 {
    font-size: 25px;
  }
}

.topscreen__slider-button {
  max-width: 300px;
  width: 100%;
  height: 60px;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .topscreen__slider-button {
    width: 250px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .topscreen__slider-button {
    width: 200px;
    height: 40px;
  }
}

.topscreen__img {
  max-width: 640px;
  width: 100%;
  height: 215px;
  margin: 0 auto;
}

.topscreen__img img {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1380px) {
  .topscreen__img {
    height: 170px;
  }
}
@media (max-width: 1180px) {
  .topscreen__img {
    height: 140px;
  }
}
@media (max-width: 780px) {
  .topscreen__img {
    height: 100px;
  }
}
.topscreen__arrow {
  margin-top: 20px;
  -webkit-animation: 4s flash ease-in-out infinite;
          animation: 4s flash ease-in-out infinite;
}

.topscreen__arrow p {
  margin-top: 20px;
  font-weight: 800;
  text-shadow: 0 -1px 3px #FFFFFF, 0 -1px 3px #FFFFFF, 0 1px 3px #FFFFFF, 0 1px 3px #FFFFFF, -1px 0 3px #FFFFFF, 1px 0 3px #FFFFFF, -1px 0 3px #FFFFFF, 1px 0 3px #FFFFFF, -1px -1px 3px #FFFFFF, 1px -1px 3px #FFFFFF, -1px 1px 3px #FFFFFF, 1px 1px 3px #FFFFFF, -1px -1px 3px #FFFFFF, 1px -1px 3px #FFFFFF, -1px 1px 3px #FFFFFF, 1px 1px 3px #FFFFFF;
}

.topscreen__arrow img {
  width: 40px;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.form__send {
  margin: -25px auto 0;
  background-color: rgba(255, 255, 255, 0.71);
  max-width: 460px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 100px;
 
 
}

.form__title {
  background-color: #54b69d;
  font-family: "OpenSans-Bold", Arial, sans-serif;
  font-size: 25px;
  line-height: 35%;
  color: #FFFFFF;
  padding-top: 17px;
  padding-bottom: 15px;
  margin-right: -20px;
  margin-left: -20px;
}

@media (max-width: 1380px) {
  .form__title {
    font-size: 30px;
  }
}
@media (max-width: 1180px) {
  .form__title {
    font-size: 24px;
  }
}
.form__list {
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 780px) {
  .form__list {
    padding-left: 0;
    padding-right: 0;
  }
}

.form__item {
  margin-bottom: 20px;
  padding-right: 20px;
}

.form__input {
  max-width: 410px;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border-color: #cccccc;
  padding-left: 10px;
  padding-right: 10px;
  outline: 0;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: none;
}

.carousel__button:hover svg {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.form__button {
  max-width: 430px;
  width: 100%;
  height: 55px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px; 
  text-align: center;
}
.form__button1 {
  max-width: 871px;
  width: 100%;
  height: 55px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;

  display: flex;
  justify-content: flex-end;

}
.form__button2 {
  max-width: 430px;
  width: 100%;
  height: 55px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px; 
  text-align: center;
  display: flex;
    justify-content: center;

}
@media (max-width: 1180px) {
  .form__button {
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 960px) {
  .form__button {
    height: 45px;
  }
}
@media (max-width: 780px) {
  .form__button {
    height: 40px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1180px) {
  .form__send {
    padding-bottom: 20px;
  }
  .form__list {
    padding-top: 20px;
  }
  .form__input {
    height: 35px;
  }
}

.modal__messages {
  width: 100vw;
  height: 100vh;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-image: url("/img/1675237547_top-fon-com-p-fon-dlya-prezentatsii-meditsinskii-stil-178.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.modal__messages-items {
  padding-left: 15px;
  padding-right: 15px;
}

.modal__messages-item {
  max-width: 500px;
  width: 100%;
  padding: 21px 29px 30px 30px;
  border: 5px solid #54b69d;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.18);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.18);
  border-radius: 5px;
}

.modal__message-title {
  font-size: 40px;
  line-height: 50px;
}

.modal__message-text {
  font-size: 21px;
  line-height: 25px;
}

.error404 {
  width: 100vw;
  height: 100vh;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.title404 {
  font-size: 110px;
  line-height: 150px;
  font-family: "Roboto Bold", sans-serif;
}

.text404 {
  font-size: 21px;
  line-height: 25px;
}
.wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button {
  min-width: 300px;
  min-height: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #ffffff;
  background: #54b69d;
background: linear-gradient(90deg, rgba(129,230,217,1) 0%, #54b69d 100%);
  border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 24px #54b69d;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  }

button::before {
content: '';
  border-radius: 1000px;
  min-width: calc(60px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #00FFCB;
  box-shadow: 0 0 60px rgba(0,255,203,.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

.button:hover, .button:focus {
  color: #ffffff;
  transform: translateY(-6px);
}

button:hover::before, button:focus::before {
  opacity: 1;
}

button::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 6px solid #54b69d;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

button:hover::after, button:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.form{
  margin: 45px auto 0;
  background-color: rgba(255, 255, 255, 0.71);
  max-width: 460px;
  border: 1px solid black;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
  padding-top: 25px;
  align-items: unset;
  display: flex;
  flex-direction: column;

}
.form__send{
  background-color: #54b69d;
  font-family: "OpenSans-Bold", Arial, sans-serif;
  font-size: 25px;
  line-height: 35%;
  color: #FFFFFF;
  padding-top: 17px;
  padding-bottom: 15px;
  margin-right: -20px;
  margin-left: -20px;
}
.titles {
}
.input {
}
.form__input {
}


.button1 {
  min-width: 223px;
  min-height: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #ffffff;
  background: #54b69d;
  background: linear-gradient(90deg, rgb(115 200 189) 0%, #54b69d 100%);
  border: none;
  border-radius: 14px;
  box-shadow: 12px 12px 24px #54b69d;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  margin-top: 11px;
  }

button1::before {
  content: '';
  border-radius: 1000px;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #00FFCB;
  box-shadow: 0 0 60px rgba(0,255,203,.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

.button1:hover, .button1:focus {
  color: #ffffff;
  transform: translateY(-6px);
}

button1:hover::before, button1:focus::before {
  opacity: 1;
}

button1::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 6px solid #54b69d;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

button1:hover::after, button1:focus::after {
  animation: none;
  display: none;
}



.results {

  display: flex;

  width: calc(80% - 2em);
  padding: 0;
  margin: 0 auto;
  list-style-type: none;
  justify-content: center;
  margin-top: 2%;
}


.result {
  padding: 0;
}

.img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.2s ease;
}

.results:is(:hover, :focus-within) img {
  opacity: calc(0.1 + (var(--active-lerp, 0) * 0.9));
  filter: grayscale(calc(1 - var(--active-lerp, 0)));
}

:root {
  --lerp-0: 1;
  --lerp-1: 0.5787037;
  --lerp-2: 0.2962963;
  --lerp-3: 0.125;
  --lerp-4: 0.037037;
  --lerp-5: 0.0046296;
  --lerp-6: 0;
}

.a {
  outline-offset: 4px;
}

.result {
  flex: calc(7.29 + (var(--active-lerp, 0) * 2.02));
  transition: flex 0.2s ease;
}

.result:is(:hover, :focus-within) {
  --active-lerp: var(--lerp-0);
  z-index: 7;
}
.result:has( +.result:is(:hover, :focus-within)),
.result:is(:hover, :focus-within) + .result {
  --active-lerp: var(--lerp-1);
  z-index: 6;
}
.result:has( + .result + .result:is(:hover, :focus-within)),
.result:is(:hover, :focus-within) + .result + .result {
  --active-lerp: var(--lerp-2);
  z-index: 5;
}
.result:has( + .result + .result + .result:is(:hover, :focus-within)),
.result:is(:hover, :focus-within) + .result + .result + .result {
  --active-lerp: var(--lerp-3);
  z-index: 4;
}
.result:has( + .result + .result + .result + .result:is(:hover, :focus-within)),
.result:is(:hover, :focus-within) + .result + .result + .result + .result {
  --active-lerp: var(--lerp-4);
  z-index: 3;
}
.result:has( + .result + .result + .result + .result + .result:is(:hover, :focus-within)),
.result:is(:hover, :focus-within) + .result + .result + .result + .result + .result {
  --active-lerp: var(--lerp-5);
  z-index: 2;
}
.result:has( + .result + .result + .result + .result + .result + .result:is(:hover, :focus-within)),
.result:is(:hover, :focus-within) + .result + .result + .result + .result + .result + .result {
  --active-lerp: var(--lerp-6);
  z-index: 1;
}

@media (max-width: 1440px) {
  .result {
    flex: calc(3.29 + (var(--active-lerp, 0) * 6.02));
    transition: flex 0.2s ease;
  }
}
@media (max-width: 1032px) {
  .result {
    flex: calc(7.29 + (var(--active-lerp, 0) * 2.02));
    transition: flex 0.2s ease;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
 
  display: none;
}