/*headr*/
.header{
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, .62) 0%, rgba(38, 44, 51, .62) 100%);
  backdrop-filter: blur(84px);
}
.header__top{
  padding: 12px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-nav{padding-bottom: 15px;}
.header-supnav ul,
.header-nav ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-supnav ul a,
.header-nav ul a{
  font-weight: 600;
  font-size: 14px;
  line-height: 1.57;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  display: block;
}
.header-supnav ul a::before,
.header-nav ul a::before{
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(46, 201, 108, 0) 0%, #2EC96C 53.92%, rgba(23, 99, 53, 0) 100%);
  transition: opacity .25s linear;
  opacity: 0;
}
.header-supnav ul a.active::before,
.header-supnav ul a:hover::before,
.header-nav ul a.active::before,
.header-nav ul a:hover::before{opacity: 1;}
.header-logo{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.header-logo__pic{
  width: 59px;
  flex-shrink: 0;
}
.header-logo__name{
  width: 41px;
  margin-bottom: 7px;
}
.header-logo__txt{
  width: 205px;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.2;
  color: rgba(255, 255, 255, .5);
}
.header-supnav ul{gap: 30px;}
.header-supnav ul a{text-transform: none;}
.header-calc{
  width: 166px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px;
  font-size: 14px;
  line-height: 15px;
  color: #fff;
  background-color: rgba(255, 255, 255, .08);
  border-radius: 25px;
}
.header-calc:hover{background-color: rgba(255, 255, 255, .16);}
.header-calc img{
  width: 31px;
  flex-shrink: 0;
}
.header-soc__title{
  margin-bottom: 7px;
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
  color: rgba(255, 255, 255, .5);
  text-align: center;
}
.header-soc ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.header-soc ul li a{
  display: block;
  width: 32px;
}
.header-contacts{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
}
.header-contacts__time{
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  text-align: right;
  color: rgba(255, 255, 255, .5);
}
.header-contacts__tel{
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}
.header-contacts__btn{
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-decoration-line: underline;
  color: #0CBB65;
}
.header-contacts__btn:hover{color: #fff;}
@media only screen and (max-width : 1023px){
  .header__top{padding: 12px 0 10px;}
  .header-logo__pic{width: 46px;}
  .header-logo__name{
    width: 57px;
    margin-bottom: 0;
  }
  .header-logo__name img{width: 100%;}
  .header-soc ul{gap: 6px;}
  .header-burger.open{transform: rotate(90deg);}
}

/*mob-menu*/
.mob-menu{display: none;}
@media only screen and (max-width : 1023px){
  .mob-menu{
    display: block;
    height: 100vh;
    height: 100%;
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(38, 44, 51, .94);    
    overflow-y: auto;
    transform: translateY(-110%);
    transition: transform .25s linear;
  }
  .mob-menu.open{transform: translateY(0);}
  .mob-menu__wrap{padding: 97px 20px 40px;}
  .mob-menu-nav{margin-bottom: 40px;}
  .mob-menu-nav ul li{
    text-align: center;
    margin-bottom: 15px;
  }
  .mob-menu-nav ul li a{
    display: inline-block;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #fff;
  }
  .mob-menu-nav ul a::before{
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(46, 201, 108, 0) 0%, #2EC96C 53.92%, rgba(23, 99, 53, 0) 100%);
    transition: opacity .25s linear;
    opacity: 0;
  }
  .mob-menu-nav ul a.active::before{opacity: 1;}
  .mob-menu .header-soc__title{
    margin-bottom: 19px;
    font-size: 16px;
    line-height: 10px;
  }
  .mob-menu-contacts{
    align-items: center;
    gap: 0;
  }
  .mob-menu-contacts{
    margin-top: 40px;
    text-align: center;
  }
  .mob-menu-contacts .header-contacts__time{
    margin-bottom: 10px;
    text-align: center;
    font-size: 14px;
    line-height: 12px;
  }
  .mob-menu-contacts .header-contacts__tel{
    margin-bottom: 26px;
    font-size: 24px;
    line-height: 29px;
  }
}

/*hero*/
.hero{
  background: url(../img/hero-min.webp) center center no-repeat;
  background-size: cover;
  color: #fff;
}
.hero__wrap{
  padding: 223px 0;
  position: relative;  
}
.hero__wrap::before,
.hero__wrap::after{
  content: '';
  display: block;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .23);
  user-select: none;
  pointer-events: none;
}
.hero__wrap::before{
  height: calc(100% + 2px);
  width: 187px;
  top: -1px;
  right: 0;
}
.hero__wrap::after{
  width: calc(100vw + 2px);
  height: 294px;
  top: 197px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__header{
  position: relative;
  margin-bottom: 16px;
}
.hero-title{
  font-weight: 500;
  font-size: 64px;
  line-height: 70px;
}
.hero-title span{
  display: block;
  font-weight: bold;
}
.hero-sup{
  position: absolute;
  top: 27px;
  left: 568px;
  padding: 6px 14px 8px 32px;
  background-color: rgba(24, 24, 26, .3);
  backdrop-filter: blur(10px);
  border-radius: 19px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
}
.hero-sup::before{
  content: '';
  display: block;
  position: absolute;
  left: 14px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0CBB65;
  box-shadow: 0 0 20.8px #2EC96C;
}
.hero-txt{
  width: 600px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.33;
}
.hero-play{
  position: absolute;
  z-index: 3;
  top: 198px;
  right: 1px;
  width: 185px;
  height: 292px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 26px;
  color: #fff;
  background-color: rgba(24, 24, 26, .34);
  backdrop-filter: blur(14px);
}
.hero-play__btn{
  background-color: #0CBB65;
  box-shadow: 0 0 42.8px #2EC96C;
  width: 64px;
  height: 64px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-play__btn:hover{
  box-shadow: 0 0 0 #2EC96C;
  background-color: #1FD37B;
}
.hero-play__btn:active{
  box-shadow: 0 0 0 #2EC96C;
  background-color: #10A059;
}
.hero-play__txt{
  font-weight: 500;
  font-size: 14px;
  line-height: 1.29;
  text-align: center;
}
.hero-play__txt span{
  display: block;
  font-weight: bold;
}
.hero-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 775px;
  gap: 13px;
  background-color: rgba(24, 24, 26, .34);
  backdrop-filter: blur(22px);
  border-radius: 40px;
  margin-top: 136px;
}
.hero-bar__btn{
  width: 310px;
  flex-shrink: 0;
}
.hero-bar__icn{flex-shrink: 0;}
.hero-bar__txt{
  padding-right: 24px;
  font-size: 18px;
  line-height: 133%;
}
.hero-timeline{
  margin-top: 182px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.hero-timeline::before{
  content: '';
  display: block;
  width: calc(100% - 180px);
  left: 90px;
  bottom: 0;
  position: absolute;
  height: 1px;
  border-bottom: 1px dashed #fff;;
}
.hero-timeline li{
  position: relative;
  padding-bottom: 26px;
  width: 180px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;  
}
.hero-timeline li::before,
.hero-timeline li::after{
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #fff;
}
.hero-timeline li::before{  
  width: 18px;
  height: 18px;
  opacity: .16;
}
.hero-timeline li::after{
  width: 10px;
  height: 10px;
}
@media only screen and (max-width : 1023px){
  .hero{background-image: url(../img/hero-mob-min.webp);}
  .hero__wrap{
    padding: 116px 0 60px;
    max-width: 768px;
    margin: 0 auto;
  }
  .hero__wrap::before,
  .hero__wrap::after{display: none;}
  .hero__header{margin-bottom: 16px;}
  .hero-title{
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 22px;
    text-align: center;
  }
  .hero-sup{
    position: static;
    padding: 6px 14px;
    border-radius: 19px;
    margin: 23px auto 0;
    width: fit-content;
  }
  .hero-sup::before{display: none;}
  .hero-list{
    max-width: 283px;
    margin: 16px auto 216px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
  }
  .hero-list li{
    position: relative;
    padding-left: 17px;
    margin-bottom: 4px;
  }
  .hero-list li::before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 7px;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background-color: #0CBB65;
    box-shadow: 0 0 20.8px #2EC96C;
  }
  .hero-play{
    position: static;
    width: 217px;
    margin: 0 auto 24px;
    height: auto;
    flex-direction: row;
    gap: 14px;
    background-color: transparent;
    backdrop-filter: unset;
  }
  .hero-play__btn{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .hero-play__txt{text-align: left;}
  .hero-play__txt span{display: inline;}
  .hero-bar{
    flex-direction: column;
    width: 320px;
    max-width: 100%;
    gap: 0;
    border-radius: 35px;
    margin: 0 auto;
  }
  .hero-bar__btn{width: 100%;}
  .hero-bar__icn{display: none;}
  .hero-bar__txt{
    padding: 14px 26px 20px;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
  }
}

/*advantages*/
.advantages{
  position: relative;
  margin: -187px 0 -187px;
  z-index: 3;
}
.advantages__wrap{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.advantage{
  position: relative;
  overflow: hidden;  
}
.advantage--1{
  width: 34.5%;
  padding: 52px 32px 32px 36px;
  background-color: #fff;
}
.advantage--2,
.advantage--3{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 187px;
  padding: 20px 49px;
}
.advantage--2{background-color: #0CBB65;}
.advantage--3{background-color: #E0E6EB;}
.advantage--4{
  width: 30.5%;
  padding: 52px 52px 32px 45px;
  background: linear-gradient(0deg, rgba(24, 24, 26, 0.48), rgba(24, 24, 26, 0.48));
  backdrop-filter: blur(116.45px);
}
.advantage__col{
  width: 35%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
}
.advantage__title{
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  position: relative;
  z-index: 3;
}
.advantage__title strong{font-weight: bold;}
.advantage--1 .advantage__title,
.advantage--2 .advantage__title,
.advantage--3 .advantage__title{color: #303030;}
.advantage--1 .advantage__title strong,
.advantage--3 .advantage__title strong{color: #2EC96C;}
.advantage--1 .advantage__title{margin-bottom: 17px;}
.advantage--2 .advantage__title strong{color: #fff;}
.advantage--4 .advantage__title{
  color: #fff;
  margin-bottom: 10px;
}
.advantage--1 ol{
  font-weight: 500;
  font-size: 14px;
  line-height: 1.29;
  color: rgba(24, 24, 26, .8);
  counter-reset: num;
}
.advantage--1 ol li{
  position: relative;
  padding-left: 20px;
  z-index: 3;
  margin-bottom: 10px;
}
.advantage--1 ol li:before {
  content: counter(num) '.'; 
  counter-increment: num;
  position: absolute;
  top: 0;
  left: -2px;
  width: 22px;
  text-align: center;
}
.advantage--4 ul{
  font-weight: 500;
  font-size: 14px;
  line-height: 1.29;
  color: rgba(255, 255, 255, .8);
}
.advantage--4 ul li{margin-bottom: 10px;}
.advantage img{position: absolute;}
.advantage--1 img{
  width: 188px;
  bottom: 0;
  right: -18px;
}
.advantage--2 img{
  width: 146px;
  bottom: 0;
  right: 0;
}
.advantage--3 img{
  width: 180px;
  bottom: -25px;
  right: 0;
}
.advantage--4 img{
  width: 245px;
  bottom: -55px;
  right: 0;
}
@media only screen and (max-width : 1023px){
  .advantages{
    margin: 0;
    background-color: #262C33;
  }
  .advantages__wrap{
    display: block;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .advantage--1{
    width: 100%;
    padding: 60px 20px;
  }
  .advantage--2,
  .advantage--3{
    width: 50%;
    height: unset;
    padding: 60px 20px;
  }
  .advantage--4{
    width: 100%;
    padding: 60px 20px;
  }
  .advantage__col{
    width: 100%;
    flex-direction: row;
  }
  .advantage__title{
    font-size: 22px;
    line-height: 120%;
  }
  .advantage--1 .advantage__title,
  .advantage--4 .advantage__title{margin-bottom: 15px;}
  .advantage--4 ul li:last-child,
  .advantage--1 ol li:last-child{margin-bottom: 0;}
  .advantage--1 img{
    width: 114px;
    bottom: 10px;
    right: 0;
  }
  .advantage--2 img{
    width: 132px;
    bottom: -28px;
    right: 0;
  }
  .advantage--3 img{
    width: 242px;
    bottom: -32px;
    right: -96px;
  }
  .advantage--4 img{
    width: 218px;
    bottom: 40px;
    right: -56px;
  }
  .advantage--3 .advantage__title{max-width: 212px;}
}
@media only screen and (max-width : 767px){
  .advantage__col{display: block;}
  .advantage--2,
  .advantage--3{width: 100%;}
  .advantage--4 ul{max-width: 164px;}
  .advantage--2{padding-top: 52px;}
}

/*calc*/
.calc{
  padding-top: 273px;
  background: url(../img/ess-bg.svg) 0 center no-repeat #262C33;
  position: relative;
  z-index: 2;
  height: 576px;
}
.calc__wrap{
  background-color: #fff;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.calc-manager{
  width: 30.5%;
  flex-shrink: 0;
  padding: 73px 35px 35px;
  background-color: #0C191F;
  color: #fff;
}
.calc-manager__header{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 36px;
  gap: 20px;
}
.calc-manager__header img{
  flex-shrink: 0;
  width: 70px;
}
.calc-manager__name{
  font-weight: 600;
  font-size: 18px;
  line-height: 1.17;
}
.calc-manager__state{
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.36;
  color: #B9B9B9;
}
.calc-manager__main{
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  color: #CDCDCD;
}
.calc__main{
  flex-grow: 1;
  min-height: 383px;
  padding: 70px 50px 80px;
  background: url(../img/calc-bg-min.webp) left 414px bottom -16px no-repeat #fff;
  background-size: 267px auto;
}
.calc__title{
  font-weight: 600;
  font-size: 36px;
  line-height: 122%;
  color: #18181A;
}
.calc__list{
  margin: 35px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  counter-reset: num;
}
.calc__list li{
  position: relative;
  padding-left: 54px;
  font-size: 14px;
  line-height: 1.31;
  letter-spacing: .27px;
  color: #18181A;
}
.calc__list li strong{font-weight: bold;}
.calc__list li:before {
  content: counter(num); 
  counter-increment: num;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  line-height: 38px;
  text-align: center;
  color: #fff;
  background-color: #2EC96C;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width : 1023px){
  .calc{
    padding-top: 0;
    background: #fff;
    height: auto;
  }
  .calc__wrap{
    width: calc(100% + 30px);
    margin-left: -15px;
  }
}
@media only screen and (max-width : 767px){
  .calc__wrap{display: block;}
  .calc__main{
    min-height: unset;
    padding: 60px 20px;
    background: url(../img/calc-bg-min.webp) center bottom 118px no-repeat #fff;
    background-size: 267px auto;
  }
  .calc__title{
    font-size: 30px;
    line-height: 120%;
    text-align: center;
  }
  .calc__list{
    margin: 30px 0 226px;
    flex-direction: column;
    gap: 15px;
  }
  .calc__list li{
    padding-left: 52px;
    letter-spacing: .26px;
  }
  .calc__list li:before {
    top: 50%;
    margin-top: -19px;
  }
  .calc__btn{margin: 0 auto;}
}

/*types*/
.types{
  margin: 150px 0 70px;
}
.types-list{
  margin: 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.types-list li{
  position: relative;
  padding-left: 52px;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #303030;
  flex-grow: 1;
}
.types-list li::before{
  content: '';
  display: block;
  background: url(../img/check-icn.svg) center center no-repeat;
  background-size: contain;
  width: 39px;
  height: 39px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width : 1023px){
  .types{margin: 60px 0;}
  .types .sec-title{text-align: center;}
  .types-list{
    margin: 30px auto 60px;
    align-items: stretch;
    flex-direction: column;
    width: 260px;
    gap: 15px;
  }
  .types-list li{padding-left: 47px;}
  .types-list li::before{
    width: 29px;
    height: 29px;
  }
}

.type-item{
  background: linear-gradient(180deg, rgba(38, 44, 51, 0) 64.85%, #262C33 100%), linear-gradient(0deg, rgba(38, 44, 51, 0.78), rgba(38, 44, 51, 0.78));
  color: #fff;
  position: relative;
  padding: 45px 50px 26px;
  margin-bottom: 5px;
  overflow: hidden;
}
.type-item__wrap{overflow: hidden;}
.type-item::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: center 0 no-repeat;
  background-size: 100% auto;
}
.type-item--1::before{background-image: url(../img/type-1.jpg);}
.type-item--2::before{background-image: url(../img/type-2.jpg);}
.type-item::after{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  min-height: 800px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(38, 44, 51, 0) 22.57%, #262C33 42.09%);
}
.type-item__main{
  position: relative;
  z-index: 2;
}
.type-item__title{
  font-weight: 700;
  font-size: 30px;
  line-height: 122%;
  color: #fff;
  margin-bottom: 30px;
}
.type-item__main ul{width: 472px;}
.type-item__main ul li{
  margin-bottom: 10px;
  position: relative;
  padding-left: 19px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: rgba(255, 255, 255, .8);
}
.type-item__main ul li::before{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: -4px;
  background-color: #0CBB65;
  box-shadow: 0 0 20.8px #2EC96C;
}
.type-item__mark{
  margin: 30px 0;
  padding: 8px 14px;
  width: fit-content;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.71;
  color: #fff;
  background-color: rgba(12, 187, 101, .68);
  backdrop-filter: blur(9.75px);
  border-radius: 20px;
}
.type-item__mark span{font-weight: 800;}
.type-item__bar{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 25px;
  transition: margin-bottom .25s;
}
.type-item.open .type-item__bar{margin-bottom: 0;}
.type-item__btn{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid #0CBB65;
}
.type-item__btn svg{
  fill: #fff;
  transition: fill .25s;
}
.type-item__btn:hover{color: #2EC96C;}
.type-item__btn:hover svg{fill: #2EC96C;}
.type-item__btn.open svg{transform: rotate(90deg);}
.type-item__hide{
  display: none;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width : 1023px){
  .type-item{
    width: calc(100% + 30px);
    margin-left: -15px;
    background: none;
    padding: 0;
  }
  .type-item::before{
    background: center 0 no-repeat;
    background-size: 100% auto;
  }
  .type-item--1::before{background-image: url(../img/type-1-mob.jpg);}
  .type-item--2::before{background-image: url(../img/type-2-mob.jpg);}
  .type-item::after{display: none;}
  .type-item__main{
    padding: 50px 15px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    min-height: 448px;
  }
  .type-item__title{
    font-size: 24px;
    margin-bottom: 20px;
    order: 1;
  }
  .type-item__main ul{
    width: auto;
    order: 3;
    opacity: 0;
    transition: opacity .25s;
    flex-grow: 1;
    text-shadow: 0 0 30px rgba(38, 41, 51, .4);
  }
  .type-item.more .type-item__main ul{opacity: 1;}
  .type-item__main ul li{
    margin-bottom: 8px;
    font-size: 14px;
  }
  .type-item__mark{
    margin: 0 0 30px;
    order: 2;
  }
  .type-item__bar{
    order: 4;
    justify-content: space-between;
    gap: 10px;
    margin: 30px 0 20px;
  }
  .type-item.open .type-item__bar{margin-bottom: 20px;}
  .type-item__btn{gap: 8px;}
  .type-item__btn svg{
    fill: #fff;
    transition: fill .25s;
  }
  .type-item__calc{
    order: 6;
    width: 249px;
    background-color: rgba(24, 24, 26, .34);
    backdrop-filter: blur(10.6px);
    justify-content: flex-start;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.07;
  }
  .type-item.more .js-type-item-more svg{transform: rotate(180deg);}
}

.type-item-slider{
  position: relative;
  overflow: visible;
  height: 487px;
  padding-bottom: 32px;
  padding-top: 54px;
}
.type-item-slider .swiper-slide{
  height: 196px;
}
.type-item-slide{
  display: block;
  width: 100%;
  height: 100%;
}
.type-item-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.type-item-slider__pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.type-item-slider__pagination .swiper-pagination-bullet{
  display: block;
  margin: 0 !important;
  cursor: pointer;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .47);
  backdrop-filter: blur(9.28411px);
  opacity: 1;
}
.type-item-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: #0CBB65;
  backdrop-filter: unset;
}
.type-item-slider__prev,
.type-item-slider__next{
  position: absolute;
  bottom: 100%;
  margin-bottom: 34px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0CBB65;
}
.type-item-slider__prev img,
.type-item-slider__next img{width: 18px;}
.type-item-slider__prev:hover,
.type-item-slider__next:hover{background-color: #1FD37B;}
.type-item-slider__prev:active,
.type-item-slider__next:active{background-color: #10A059;}
.type-item-slider__prev.swiper-button-disabled,
.type-item-slider__next.swiper-button-disabled{
  background-color: #18181A;
  opacity: .47;
}
.type-item-slider__next{right: 0;}
.type-item-slider__prev{right: 72px;}
@media only screen and (max-width : 1023px){
  .type-item-slider{
    height: auto;
    padding-bottom: 55px;
    padding-top: 0;
    background-color: #F2F2F2;
  }
  .type-item-slider .swiper-slide{
    height: 100vw;
    max-height: 450px;
  }
  .type-item-slider__pagination{
    gap: 6px;
    bottom: 16px !important;
  }
  .type-item-slider__pagination .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    background-color: rgba(48, 48, 48, 0.23);
    backdrop-filter: blur(17px);
  }
  .type-item-slider__prev,
  .type-item-slider__next{
    bottom: 0;
    margin-bottom: 0;
    width: 40px;
    height: 40px;
  }
  .type-item-slider__prev img,
  .type-item-slider__next img{width: 14px;}
  .type-item-slider__next{right: 16px;}
  .type-item-slider__prev{
    right: auto;
    left: 15px;
  }
}

/*footer*/
.footer{
  background-color: #262C33;
  color: #9698A5;
}
.footer-bottom{
  border-top: 1px solid #454F5B;
  padding: 24px 0 32px;
}
.footer-bottom__wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #9698A5;
  gap: 40px;
}
.footer-bottom__txt{
  flex-grow: 1;
  max-width: 570px;
}
.footer-bottom a{color: #9698A5;}
.footer-bottom a:hover{color: #0CBB65;}
.footer-main__wrap{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}
.footer-logo{
  position: absolute;
  top: 54px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 285px;
  gap: 11px;
}
.footer-logo__pic{width: 59px;}
.footer-logo__pic2{width: 200px;}
.footer-logo__name{width: 84px;}
.footer-logo__txt{
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.14;
  color: #9698A5;  
}
.footer-content{
  padding: 172px 40px 40px 0;
  font-size: 14px;
  line-height: 17px;
  color: #9698A5;
  border-right: 1px solid #454F5B;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
}
.footer-content div{
  max-width: 290px;
  margin-bottom: 9px;
}
.footer-content div:last-child{margin-bottom: 0;}
.footer-nav{
  flex-grow: 2;
  padding: 54px 40px 40px;
}
.footer-nav ul{
  max-width: 360px;
  margin: 0 auto;
  column-count: 2;
  column-gap: 160px;
}
.footer-nav ul li{margin-bottom: 24px;}
.footer-nav ul li a{
  font-weight: 500;
  font-size: 14px;
  line-height: 1.57;
  color: #fff;
  white-space: nowrap;
}
.footer-nav ul li a:hover{color: #0CBB65;}
.footer-contacts{
  flex-grow: 1;
  padding: 54px 0 40px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column;
  border-left: 1px solid #454F5B;
  text-align: right;
}
.footer-soc,
.footer-contacts__top{
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: column;
}
.footer-contacts__time{
  font-weight: 500;
  font-size: 14px;
  line-height: 12px;
  color: #9698A5;
  margin-bottom: 10px;
}
.footer-contacts__tel{
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #fff;
}
.footer-contacts__btn{
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-decoration-line: underline;
  color: #0CBB65;
  margin: 10px 0;
}
.footer-contacts__btn:hover{color: #fff;}
.footer-soc__title{
  margin-bottom: 11px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  text-align: right;
  letter-spacing: .3px;
  color: #9698A5;
}
.footer-soc ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.footer-soc ul li a{
  width: 36px;
  display: block;
}
@media only screen and (max-width : 1099px){
  .footer-logo{max-width: 265px;}
}
@media only screen and (max-width : 1023px){
  .footer-main__wrap{
    flex-direction: column;
    padding-top: 40px;
  }
  .footer-logo{
    position: static;
    max-width: 320px;
    gap: 10px;
  }
  .footer-content{
    order: 5;
    padding: 0 0 30px;
    font-size: 12px;
    line-height: 1.25;
    border-right: none;
    flex-grow: unset;
  }
  .footer-content div{
    max-width: unset;
    margin-bottom: 0;
    margin-top: 30px;
  }
  .footer-nav{
    flex-grow: unset;
    margin: 40px 0;
    padding: 0;
  }
  .footer-nav ul{
    column-count: 1;
    column-gap: 0;
    margin: 0;
  }
  .footer-nav ul li{margin-bottom: 15px;}
  .footer-nav ul li:last-child{margin-bottom: 0;}
  .footer-bottom{padding: 30px 0 40px;}
  .footer-bottom__wrap{
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 30px;
  }
  .footer-contacts{
    flex-grow: unset;
    padding: 0;
    margin-bottom: 10px;
    align-items: flex-start;
    border-left: none;
    text-align: left;
    gap: 30px;
  }
  .footer-soc,
  .footer-contacts__top{align-items: flex-start;}
  .footer-soc__title br{display: none;}
}

/*contacts*/
.contacts{background-color: #fff;}
.contacts__wrap{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.contacts-map{
  width: 368px;
  position: relative;
  flex-shrink: 0;
}
.contacts-map__wrap{
  width: calc(50vw - 220px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.contacts-office{
  flex-grow: 1;
  overflow: hidden;
}
.contacts-office img{
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
  object-position: center;
}
.contacts-list{
  width: 480px;
  padding: 70px 0 80px 54px;
  flex-shrink: 0;
}
.contacts-list .sec-title{margin-bottom: 46px;}
.contact-item{
  position: relative;
  margin-bottom: 18px;
  padding-left: 68px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.33;
  letter-spacing: .3px;
  color: #303030;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  min-height: 40px;
}
.contact-item img{
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  margin-top: -20px;
}
.contact-item a{color: #303030;}
.contact-item a[href^="tel:"]{
  font-weight: 700;
  font-size: 32px;
  line-height: 24px;
  letter-spacing: .3px;
  color: #303030;
}
.contact-item sup{
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .3px;
  color: #888;
  top: 0;
}
.contact-soc{margin-top: 46px;}
.contact-soc__title{
  margin-bottom: 11px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .3px;
  color: #9698A5;
}
.contact-soc ul{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.contact-soc ul li a{
  display: block;
  width: 42px;
}
@media only screen and (max-width : 1199px){
  .contacts-map__wrap{width: calc(50vw - 128px);}
  .contacts-list {
    width: 420px;
    padding-left: 32px;
  }
}
@media only screen and (max-width : 1023px){
  .contacts__wrap{
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .contacts-map{
    order: 2;
    width: 50%;
  }
  .contacts-map__wrap{width: 100%;}
  .contacts-office{
    order: 3;
    width: 50%;
  }
  .contacts-office img{
    height: auto;
    max-width: 100%;
  }
  .contacts-list{
    order: 1;
    width: 100%;
    padding: 60px 20px;
  }
  .contacts-list .sec-title{margin-bottom: 25px;}
  .contact-item{
    margin-bottom: 12px;
    padding-left: 55px;
    font-size: 16px;
  }
  .contact-item a[href^="tel:"]{font-size: 24px;}
  .contact-item sup{font-size: 12px;}
  .contact-soc{margin-top: 25px;}
}
@media only screen and (max-width : 767px){
  .contact-soc__title,
  .contacts-list .sec-title{text-align: center;}
  .contact-soc ul{justify-content: center;}
  .contacts-map{
    width: 100%;
    height: 400px;
  }
}

/*seo*/
.seo{
  padding: 72px 0 76px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: .3px;
}
.seo__wrap{
  overflow: hidden;
  height: 182px;
  position: relative;
}
.seo__wrap::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(242, 242, 242, 0) 0%, #F2F2F2 80%, #F2F2F2 100%);
}
.seo__wrap.open{height: auto;}
.seo__wrap.open::before{display: none;}
.seo h2{
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 32px;
  line-height: 122%;
  color: #303030;
}
.seo p:not(:last-child){margin-bottom: 13px;}
.seo-more{
  width: 40px;
  margin: 0 auto;
}
@media only screen and (max-width : 1023px){
  .seo{padding: 60px 0;}
  .seo__wrap{height: 190px;}
  .seo h2{
    margin-bottom: 25px;
    font-size: 24px;
    line-height: 120%;
  }
}

/*help*/
.help{background-color: #E0E6EB;}
.help__wrap{
  padding: 200px 0 80px 567px;
  position: relative;
}
.help__main{
  position: relative;
  z-index: 3;
}
.help__sup{
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #18181A;
}
.help-soc{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 20px;
}
.help-soc a{
  display: block;
  width: 54px;
}
.help-soc a img{width: 100%;}
.help__wrap::before,
.help__wrap::after{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  background: center bottom no-repeat;
  background-size: contain;
}
.help__wrap::before{
  width: 524px;
  height: 280px;
  left: 36px;
  background-image: url(../img/help-bush-min.webp);
}
.help__wrap::after{
  width: 362px;
  height: 378px;
  left: 180px;
  background-image: url(../img/help-phone-min.webp);
}
@media only screen and (max-width : 1199px){
  .help__wrap{padding-left: 440px;}
  .help__wrap::before{left: -24px;}
  .help__wrap::after{left: 80px;}
}
@media only screen and (max-width : 1023px){
  .help__wrap{padding-left: 320px;}
  .help__wrap::before{left: -80px;}
  .help__wrap::after{left: 0;}
}
@media only screen and (max-width : 767px){
  .help__wrap{padding: 60px 0 298px;}
  .help__main{text-align: center;}
  .help__sup{
    max-width: 320px;
    margin: 0 auto 12px;
  }
  .help-soc{
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }
  .help-soc a{width: 48px;}
  .help__wrap::before,
  .help__wrap::after{
    left: 50%;
    transform: translateX(-50%);
  }
  .help__wrap::before{
    width: 414px;
    height: 221px;
  }
  .help__wrap::after{
    width: 285px;
    height: 284px;
  }
}

/*order-sec*/
.order-sec{
  position: relative;
  z-index: 3;
  margin-bottom: -98px;
}
.order-sec__wrap{
  background: url("../img/order-bg-min.webp") center center no-repeat;
  background-size: cover;
  color: #fff;
  padding: 73px 60px 70px 54px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}
.order-sec__main{
  width: 430px;
  flex-shrink: 0;
}
.order-sec__main .sec-title{
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  font-size: 36px;
}
.order-sec__main .sec-title span{
  color: #fff;
  display: block;
}
.order-sec__form{
  width: 320px;
  margin: 0 auto;
}
.order-sec__sub{
  color: #9A9A9A;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.order-sec-soc{
  text-align: center;
  margin-top: 50px;
}
.order-sec-soc__title{
  margin-bottom: 11px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.94;
  text-align: center;
  letter-spacing: .3px;
  color: rgba(255, 255, 255, .8);
}
.order-sec-soc ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.order-sec-soc ul a{
  display: block;
  width: 42px;
}
.order-sec-soc ul a img{width: 100%;}
.order-sec-fig{
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 384px;
  margin-left: -150px;
}
.order-sec-fig__name{
  position: absolute;
  bottom: 146px;
  right: 48px;
  width: 221px;
  padding: 11px 40px 11px 23px;
  background: rgba(24, 24, 26, .41);
  backdrop-filter: blur(10px);
  border-radius: 37px;
  text-align: right;
  font-size: 14px;
  line-height: 1.14;
  color: rgba(255, 255, 255, .8);
}
.order-sec-fig__name b{
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
.order-sec-fig__name::before{
  content: '';
  display: block;
  position: absolute;
  right: 23px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: -4px;
  background-color: #0CBB65;
  box-shadow: 0 0 20px #2EC96C;
}
.order-sec-list{
  width: 317px;
  position: relative;
  z-index: 4;
}
.order-sec-list li{
  font-weight: 600;
  font-size: 18px;
  line-height: 1.33;
  color: #fff;
  margin-bottom: 20px;
}
.order-sec-list li:last-child{margin-bottom: 0;}
.order-sec-list li::before{
  content: '';
  display: block;
  width: 39px;
  height: 39px;
  margin-bottom: 15px;
  background: url(../img/check-icn.svg) center center no-repeat;
  background-size: contain;
}
@media only screen and (max-width : 1199px){
  .order-sec-fig__name{right: 128px;}
}
@media only screen and (max-width : 1023px){
  .order-sec{margin-bottom: 0;}
  .order-sec__wrap{
    background: url(../img/order-bg-mob-min.webp) center 0 no-repeat;
    background-size: cover;
    padding: 60px 20px 170px;
    display: block;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .order-sec__main{
    width: 100%;
    position: static;
  }
  .order-sec__main .sec-title{
    margin-bottom: 350px;
    font-size: 30px;
  }
  .order-sec__form{max-width: 100%;}
  .order-sec-soc{
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    z-index: 5;
  }
  .order-sec-soc__title{white-space: nowrap;}
  .order-sec__form{
    position: relative;
    z-index: 3;
  }
  .order-sec-fig{
    bottom: auto;
    top: 110px;
    left: 50%;
    width: 330px;
    margin-left: -165px;
    transform: scale(.88);
  }
  .order-sec-fig__name{
    bottom: auto;
    top: 300px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .order-sec-list{
    margin: 37px auto 0;
  }
  .order-sec-list li{
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }
  .order-sec-list li:last-child{margin-bottom: 0;}
  .order-sec-list li::before{
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/*form*/
.input{
  display: block;
  width: 100%;
  outline: none;
  border: 1px solid #fff;
  background: #fff;
  transition: border-color .25s ease;  
  padding: 0 46px;
  box-shadow: none;
  -webkit-appearance: none;
  border-radius: 35px;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 5px;
  height: 70px;
}
.input::-webkit-input-placeholder{opacity: 1; color: #B6B6B6;}
.input::-moz-placeholder{opacity: 1; color: #B6B6B6;}
.input:-moz-placeholder{opacity: 1; color: #B6B6B6;}
.input:-ms-input-placeholder{opacity: 1; color: #B6B6B6;}
.input:placeholder{opacity: 1;color: #B6B6B6;}
.input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 100px #fff !important;
  -webkit-text-fill-color: #000 !important;
  color: #000 !important;
}
.input.error{border-color: red;}
.form-btn{
  width: 100%;
  padding: 23px 30px;
}
.form-sub{
  margin-top: 10px;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}
.form-sub a{
  color: #0CBB65;
  text-decoration: underline;
}
.form-sub a:hover{text-decoration: none;}
.form__add-btn{
  height: 70px;
  border-radius: 35px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px 0 46px;
  color: #757575;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 5px;
}
.form__file{
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 17px 6px 9px;
  margin-bottom: 5px;
  background-color: #fff;
  border-radius: 18px;
}
.form__file.open{display: flex;}
.form__file-icn{flex-shrink: 0;}
.form__file-name{
  color: #18181A;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}
.btn-del{flex-shrink: 0;}

/*steps*/
.steps{padding: 70px 0 80px;}
.steps .sec-title{text-align: center;}
.steps-list{
  margin-top: 55px;
  counter-reset: num;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px 6px;
}
.steps-item{
  background-color: #fff;
  width: calc((100% - 18px) / 4);
  padding: 34px 30px;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.29;
  color: #18181A;
}
.steps-item:first-child{border: 2px solid #0CBB65;}
.steps-item:before {
  content: '0' counter(num); 
  counter-increment: num;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin: -20px 0 0 -20px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .26em;
  color: #fff;
  background-color: #2EC96C;
}
.steps-item .btn{
  display: inline;
  color: #0CBB65;
  text-decoration: underline;
}
.steps-item .btn:hover{text-decoration: none;}
.steps-item a[href^="tel:"]{
  display: block;
  margin-top: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 20px;
  color: #0CBB65;
}
@media only screen and (max-width : 1199px){
  .steps-item{width: calc((100% - 12px) / 3);}
}
@media only screen and (max-width : 991px){
  .steps-item{width: calc((100% - 6px) / 2);}
}
@media only screen and (max-width : 767px){
  .steps{padding: 60px 0;}
  .steps .sec-title{text-align: left;}
  .steps-list{
    margin-top: 35px;
    display: block;
  }
  .steps-item{
    width: 100%;
    margin-bottom: 5px;
  }
}

/*doc*/
.doc__wrap{
  position: relative;
  border: 1px solid #D4D6DF;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 66px;
}
.doc__wrap::before,
.doc__wrap::after{
  content: '';
  display: block;
  width: 25%;
  border: 1px solid #D4D6DF;
  position: absolute;
  top: -1px;
  bottom: -1px;
}
.doc__wrap::before{left: 25%;}
.doc__wrap::after{
  right: 25%;
  margin-right: 1px;
}
.doc__main{
  width: 330px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.doc__txt{
  margin-top: 20px;
  padding-top: 60px;
  padding-bottom: 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #18181A;
  position: relative;
}
.doc__txt::before{
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/check-icn.svg) center center no-repeat;
  background-size: cover;
}
.doc__txt span{font-weight: 600;}
.doc-slider{
  padding-bottom: 22px;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}
.doc-slider__pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.doc-slider__pagination .swiper-pagination-bullet{
  display: block;
  margin: 0 !important;
  cursor: pointer;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(150, 152, 165, .3);
  backdrop-filter: blur(9px);
  opacity: 1;
}
.doc-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: #0CBB65;
  backdrop-filter: unset;
}
.doc-slider__prev,
.doc-slider__next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0CBB65;
  z-index: 10;
}
.doc-slider__prev img,
.doc-slider__next img{width: 18px;}
.doc-slider__prev:hover,
.doc-slider__next:hover{background-color: #1FD37B;}
.doc-slider__prev:active,
.doc-slider__next:active{background-color: #10A059;}
.doc-slider__prev.swiper-button-disabled,
.doc-slider__next.swiper-button-disabled{
  background-color: rgba(24, 24, 26, .47);
  backdrop-filter: blur(5px);
}
.doc-slider__next{right: 11px;}
.doc-slider__prev{left: 11px;}
@media only screen and (max-width : 767px){
  .doc__wrap{
    padding: 70px 0 60px;
    display: block;
    gap: 0;
  }
  .doc__wrap::before{display: none;}
  .doc__wrap::after{width: 50%;}
  .doc__wrap::after{right: -2px;}
  .doc__main{width: 100%;}
  .doc__txt{
    margin-top: 25px;
    padding-top: 54px;
    padding-bottom: 0;
    margin-bottom: 25px;
    font-size: 14px;
  }
  .doc-slider{
    width: 216px;
    margin: 0 auto;
    overflow: visible;
    padding-bottom: 55px;
  }
  .doc-slider__pagination{
    gap: 14px;
    bottom: 15px;
  }
  .doc-slider__pagination .swiper-pagination-bullet{
    width: 9px;
    height: 9px;
  }
  .doc-slider__prev,
  .doc-slider__next{
    top: auto;
    bottom: 0;
    transform: none;
    margin-top: 0;
    width: 40px;
    height: 40px;
  }
  .doc-slider__prev img,
  .doc-slider__next img{width: 14px;}
  .doc-slider__next{right: -52px;}
  .doc-slider__prev{left: -52px;}
  .doc-slider .swiper-slide{
    transform: scale(.94);
    transition: transform .1s linear;
  }
  .doc-slider .swiper-slide-active{transform: scale(1);}
}

/*arrows*/
.pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  left: 0;
  width: 100%;
}
.pagination .swiper-pagination-bullet{
  display: block;
  margin: 0 !important;
  cursor: pointer;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(150, 152, 165, .3);
  backdrop-filter: blur(9px);
  opacity: 1;
}
.pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: #0CBB65;
  backdrop-filter: unset;
}
.swiper-wrapper .prev,
.swiper-wrapper .next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0CBB65;
  z-index: 10;
}
.swiper-wrapper .prev img,
.swiper-wrapper .next img{width: 18px;}
.swiper-wrapper .prev:hover,
.swiper-wrapper .next:hover{background-color: #1FD37B;}
.swiper-wrapper .prev:active,
.swiper-wrapper .next:active{background-color: #10A059;}
.prev.swiper-button-disabled,
.next.swiper-button-disabled{
  background-color: rgba(24, 24, 26, .47);
  backdrop-filter: blur(5px);
}
@media only screen and (max-width : 767px){
  .pagination{gap: 14px;}
  .pagination .swiper-pagination-bullet{
    width: 9px;
    height: 9px;
  }
  .prev,
  .next{
    width: 40px;
    height: 40px;
  }
  .prev img,
  .next img{width: 14px;}
}

/*personal*/
.personal{
  border-top: 1px solid rgba(117, 117, 117, .26);
  border-bottom: 1px solid rgba(117, 117, 117, .26);
  position: relative;
}
.personal::before{
  content: '';
  display: block;
  position: absolute;
  top: 30px;
  right: 0;
  width: 518px;
  height: 431px;
  background: url(../img/personal-bg.svg) center center no-repeat;
}
.personal__wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.personal__main{
  width: calc(50% - 4px);
  padding-right: 30px;
}
.personal__txt{margin: 35px 0;}
.personal-slider{
  position: relative;
  width: calc(50% - 4px);
}
.personal-slide{
  display: block;
  height: 462px;
  overflow: hidden;
}
.personal-slide img{
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
}
.personal-slider__pagination{bottom: 28px;}
.personal-slider__prev{left: 17px;}
.personal-slider__next{right: 17px;}
@media only screen and (max-width : 991px){
  .personal{
    border-top: none;
    border-bottom: none;
  }
  .personal::before{display: none;}
  .personal__wrap{
    display: block;
    gap: 0;
    padding: 60px 0 32px;
    position: relative;
  }
  .personal__main{
    width: 100%;
    padding-right: 0;
    margin-bottom: 60px;
  }
  .personal__txt{margin: 35px 0;}
  .personal-slider{
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-bottom: 65px;
  }
  .personal__btn{
    position: absolute;
    bottom: 115px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    width: 320px;
    text-align: center;
    white-space: normal;
    z-index: 15;
    height: 70px;
  }
  .personal-slide{height: auto;}
  .personal-slider__pagination{bottom: 28px;}
  .personal-slider__prev,
  .personal-slider__next{
    top: auto;
    bottom: 0;;
    transform: none;
  }
  .personal-slider__prev{left: 15px;}
  .personal-slider__next{right: 15px;}
}
@media only screen and (max-width : 767px){
  .personal-slider{padding-bottom: 55px;}
  .personal-slider__pagination{bottom: 15px !important;}
  .personal__btn{bottom: 106px;}
}

/*adv-list*/
.adv-list{
  position: relative;
  z-index: 3;
  margin-bottom: -72px;
  border-top: 1px solid rgba(117, 117, 117, .26);
  border-bottom: 1px solid rgba(117, 117, 117, .26);
}
.adv-list__wrap{
  border-left: 1px solid rgba(117, 117, 117, .26);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.adv-list-item{
  border-right: 1px solid rgba(117, 117, 117, .26);
  width: calc(100% / 3);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
}
.adv-list-item__main{
  flex-grow: 1;
  padding: 36px 26px;
}
.adv-list-item__title{
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  color: #18181A;
}
.adv-list-item__txt{
  font-weight: 500;
  font-size: 18px;
  line-height: 1.11;
  letter-spacing: .3px;
  color: #757575;
}
.adv-list-item__img{
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 71px;
  object-fit: cover;
  max-width: unset;
}
@media only screen and (max-width : 767px){
  .adv-list{
    border-top: none;
    border-bottom: none;
  }
  .adv-list__wrap{
    border: 1px solid rgba(117, 117, 117, .26);
    display: block;
  }
  .adv-list-item{
    border-right: none;
    width: 100%;
    display: block;
  }
  .adv-list-item__main{padding: 32px 26px 38px;}
  .adv-list-item__txt{font-size: 16px;}
}

/*tour*/
.tour{
  background: url(../img/tour-bg-min.webp) center center no-repeat;
  background-size: cover;
}
.tour__wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.tour__form{
  padding: 69px 44px 66px;
  width: 406px;
  background-color: rgba(38, 44, 51, .75);
  backdrop-filter: blur(12px);
  flex-shrink: 0;
}
.tour__form-txt{
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.29;
  text-align: center;
  color: rgba(255, 255, 255, .8);
}
.tour__main{
  flex-grow: 1;
  max-width: 570px;
  color: #fff;
  position: relative;
}
.tour__main .sec-title{
  margin-bottom: 30px;
  color: #fff;
}
.tour__main .sec-title span{
  color: #fff;
  display: block;
}
.tour__txt{
  font-weight: 500;
  font-size: 18px;
  line-height: 1.33;
  color: rgba(255, 255, 255, .8);
  max-width: 540px;
}
.tour__sup{
  position: absolute;
  left: 346px;
  top: -48px;
  padding: 8px 14px 8px 32px;
  width: 335px;
  background-color: rgba(24, 24, 26, .41);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  font-size: 14px;
  line-height: 1.29;
  color: rgba(255, 255, 255, .8);
}
.tour__sup::before{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 14px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background-color: #0CBB65;
  box-shadow: 0 0 20.8px #2EC96C;
  border-radius: 50%;
}
@media only screen and (max-width : 1199px){
  .tour__sup{left: 216px;}
}
@media only screen and (max-width : 1023px){
  .tour__sup{
    left: -12px;
    top: -62px;
  }
}
@media only screen and (max-width : 767px){
  .tour{background-image: url(../img/tour-bg-mob-min.webp);}
  .tour__wrap{
    display: block;
    padding: 60px 0;
  }
  .tour__form{
    padding: 0;
    width: 100%;
    background-color: transparent;
    backdrop-filter: unset;
  }
  .tour__form-txt{margin-bottom: 20px;}
  .tour__main{
    max-width: unset;
    padding-bottom: 578px;
    position: relative;
  }
  .tour__main .sec-title{
    margin: 0 auto 20px;
    text-align: center;
    font-size: 20px;
    line-height: 1.2;
  }
  .tour__main .sec-title span{
    margin-bottom: 20px;
    font-size: 30px;
  }
  .tour__txt{
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #fff;
    width: 100%;
    max-width: 320px;
    padding: 18px 14px 36px;
    text-align: center;
    background: rgba(24, 24, 26, .57);
    backdrop-filter: blur(10px);
    border-radius: 28px;
  }
  .tour__txt::before{
    content: '';
    display: block;
    position: absolute;
    bottom: 18px;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    background-color: #0CBB65;
    box-shadow: 0 0 20.8px #2EC96C;
    border-radius: 50%;
  }  
  .tour__sup{
    position: absolute;
    left: 50%;
    top: 171px;
    padding: 36px 14px 18px;
    width: 100%;
    max-width: 264px;
    transform: translateX(-50%);
    background-color: rgba(24, 24, 26, .57);
    border-radius: 28px;
    color: #fff;
    text-align: center;
  }
  .tour__sup::before{
    top: 18px;
    left: 50%;
    margin-top: 0;
    margin-left: -4px;
  }
}

/*bonus*/
.bonus{
  position: relative;
  z-index: 3;
  padding-top: 80px;
}
.bonus-slider{
  margin: 40px auto 0;
  width: 100%;
  max-width: 680px;
  position: relative;
  overflow: visible;
}
.bonus-slider .swiper-wrapper{align-items: stretch;}
.bonus-slider .swiper-slide{
  transition: transform 1s, opacity 1s;
  transform: scale(1);
  height: unset;
  opacity: 1;
}
.bonus-slider .swiper-slide:not(.swiper-slide-active){
  transform: scale(.88088);
  opacity: .64;
}
.bonus-slider__pagination{display: none;}
.bonus-slider__prev{left: -110px;}
.bonus-slider__next{right: -110px;}
.bonus-slide{
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: #262C33;
  color: #fff;
}
.bonus-slide__pic{
  width: 230px;
  flex-shrink: 0;
  overflow: hidden;
}
.bonus-slide__pic img{
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
}
.bonus-slide__main{padding: 53px 45px 65px;}
.bonus-slide__title{
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 30px;
  line-height: 122%;
}
.bonus-slide__txt{
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .8);
}
.bonus-slide__link{
  width: fit-content;
  display: inline-block;
  padding-right: 24px;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid #0CBB65;
  background: url(../img/next.svg) right 2px no-repeat;
  background-size: 10px auto;
}
.bonus-slide__link:hover{border-bottom-color: transparent;}
@media only screen and (max-width : 1023px){
  .bonus-slider{max-width: 600px;}
  .bonus-slider__prev{left: -30px;}
  .bonus-slider__next{right: -30px;}
}
@media only screen and (max-width : 767px){
  .bonus{padding-top: 60px;}
  .bonus-slider{
    margin-top: 35px;
    max-width: unset;
    overflow: hidden;
    padding-bottom: 55px;
  }
  .bonus-slider .swiper-slide:not(.swiper-slide-active){
    transform: scale(1);
    opacity: 1;
  }
  .bonus-slider__pagination{
    display: flex;
    bottom: 15px !important;
  }
  .bonus-slider__prev,
  .bonus-slider__next{
    top: auto;
    bottom: 0;
    transform: none;
  }
  .bonus-slider__prev{left: 0;}
  .bonus-slider__next{right: 0;}
  .bonus-slide{flex-direction: column;}
  .bonus-slide__pic{
    width: 100%;
    height: 162px;
  }
  .bonus-slide__main{
    padding: 32px 22px 40px;
    flex-grow: 1;
  }
  .bonus-slide__title{
    margin-bottom: 14px;
    font-size: 24px;
  }
  .bonus-slide__txt{font-size: 14px;}
}

/*programm*/
.programm__wrap{
  padding: 70px 58px 64px 60px;
  position: relative;
  background: url(../img/programm-min.webp) 0 bottom no-repeat #FAFAFA;
  background-size: 1032px auto;
}
.programm__wrap::before{
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 222px;
  background-color: #FAFAFA;
  bottom: 100%;
  left: 0;
}
.programm .sec-title{max-width: 510px;}
.programm-list{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  margin: 30px 0 10px;
}
.programm-list li{
  width: calc(50% - 25px);
  padding-left: 62px;
  background: url(../img/check-icn.svg) 0 4px no-repeat;
  background-size: 40px auto;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #1E1E1E;
}
.programm-brands,
.programm-brands__wrap{
  display: flex;
  justify-content: flex-end;
}
.programm-brands__wrap{
  align-items: stretch;
  flex-wrap: wrap;
  width: 594px;
}
.programm-brand{
  width: 198px;
  flex-shrink: 0;
}
.programm-brand:nth-child(1),
.programm-brand:nth-child(3),
.programm-brand:nth-child(4),
.programm-brand:nth-child(6){background-color: #fff;}
.programm-brand:nth-child(4){margin-left: 198px;}
@media only screen and (max-width : 991px){
  .programm-list{
    display: block;
    gap: 0;
    margin: 25px 0;
  }
  .programm-list li{
    width: 100%;
    margin-bottom: 25px;
    padding-left: 0;
    padding-top: 54px;
    background-position: center 0;
    font-size: 14px;
    text-align: center;
  }
}
@media only screen and (max-width : 767px){
  .programm__wrap{
    padding: 60px 0 194px;
    background: none;
  }
  .programm__wrap::before,
  .programm__wrap::after{
    content: '';
    display: block;
    position: absolute;
    width: 636px;
    height: 276px;
    background: center bottom no-repeat;
    background-size: contain;
    bottom: 0;
    left: -209px;
  }
  .programm__wrap::before{background-image: url(../img/programm-bush-min.webp);}
  .programm__wrap::after{
    background-image: url(../img/programm-house-min.webp);
    z-index: 6;
  }
  .programm .sec-title{
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }
  .programm-brands__wrap{
    width: 100%;
    background-color: #F9FAFC;
    position: relative;
    z-index: 3;
  }
  .programm-brand{width: 50%;}
  .programm-brand:nth-child(1),  
  .programm-brand:nth-child(4),
  .programm-brand:nth-child(5){background-color: #fff;}  
  .programm-brand:nth-child(2),
  .programm-brand:nth-child(3),
  .programm-brand:nth-child(6){background-color: transparent;}  
  .programm-brand:nth-child(4){margin-left: 0;}
}

/*support*/
.support{
  border-top: 1px solid #BEC0CA;
  border-bottom: 1px solid #BEC0CA;
  position: relative;
  z-index: 4;
}
.support__wrap{
  height: 537px;
  border-left: 1px solid #BEC0CA;
  border-right: 1px solid #BEC0CA;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
}
.support__main{
  width: 100%;
  max-width: 890px;
  margin: 0 auto;
}
.support-form,
.support .sec-title,
.support__txt{width: 425px;}
.support__txt,
.support .sec-title{  
  text-align: center;
  margin-bottom: 22px;
  font-size: 32px;
}
.support__txt{
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: #303030;
}
.support__fig{
  margin-left: 83px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  width: 316px;
}
.support-form .form-sub br{display: none;}
@media only screen and (max-width : 991px){
  .support-form,
  .support .sec-title,
  .support__txt{width: 360px;}
  .support__fig{margin-left: 40px;}
  .support-form .form-btn{
    white-space: normal;
    height: 70px;
    padding: 11px 24px;
  }
  .support-form .form-sub br{display: block;}
}
@media only screen and (max-width : 767px){
  .support{
    border-top: none;
    border-bottom: none;
  }
  .support__wrap{
    height: auto;
    padding: 60px 0 0;
    border-left: none;
    border-right: none;
    display: block;
  }
  .support__main{
    position: relative;
    z-index: 3;
  }
  .support-form,
  .support .sec-title,
  .support__txt{width: 100%;}
  .support__txt,
  .support .sec-title{  
    text-align: center;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: #303030;
  }
  .support .sec-title span{font-weight: 600;}
  .support__txt{margin-bottom: 300px;}
  .support__fig{
    margin-left: 0;
    left: 50%;
    top: 130px;
    transform: translateX(-50%);
    width: 234px;
    height: 300px;
    overflow: hidden;
  }
}

/*build-order*/
.build-order{
  position: relative;
  z-index: 3;
}
.build-order__wrap{
  max-width: 1070px;
  margin: 0 auto;
  position: relative;
  height: 507px;
  background: url(../img/build-order-bg-min.webp) center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 80px;  
}
.build-order__main{width: 350px;}
.build-order .sec-title{
  color: #fff;
  margin-bottom: 38px;
  font-size: 32px;
}
.build-order .sec-title span{color: #fff;}
.build-order__fig{
  position: absolute;
  bottom: 0;
  right: 444px;
  width: 446px;
}
.build-order__fig img {
  max-width: 76%;
  transform: scale(-1, 1) 
}
.build-order__sup{
  position: absolute;
  bottom: 244px;
  left: -40px;
  padding: 11px 43px 11px 25px;
  background-color: rgba(24, 24, 26, .41);
  backdrop-filter: blur(10px);
  border-radius: 37px;
  text-align: right;
  font-size: 14px;
  line-height: 1.14;
  color: rgba(255, 255, 255, .8);
  width: 240px;
}
.build-order__sup::before{
  content: '';
  display: block;
  position: absolute;
  right: 25px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background-color: #0CBB65;
  box-shadow: 0 0 20.8px #2EC96C;
  border-radius: 50%;
}
.build-order__sup b{
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.build-order-form{
  position: relative;
  z-index: 3;
  width: 320px;
}
.build-order-tg{
  padding: 20px 34px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 35px;
  background-color: #2CA4D7;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  position: absolute;
  bottom: 80px;
  right: 560px;
}
@media only screen and (max-width : 1099px){
  .build-order-tg{
    right: 460px;
    bottom: 86px;
  }
}
@media only screen and (max-width : 991px){
  .build-order__wrap{padding: 0 20px;}
  .build-order__fig{right: 234px;}
  .build-order__sup{left: -10px;}
  .build-order-tg{
    width: 320px;
    white-space: normal;
    padding: 11px 50px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    right: 380px;
  }
}
@media only screen and (max-width : 767px){
  .build-order__wrap{
    width: calc(100% + 30px);
    margin-left: -15px;
    height: auto;
    background-image: url(../img/build-order-bg-mob-min.webp);
    display: block;
    padding: 60px 20px;  
  }
  .build-order__main{
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .build-order .sec-title{
    margin-bottom: 5px;
    font-size: 30px;
    text-align: center;
  }
  .build-order__fig{
    position: relative;
    bottom: 0;
    right: 22px;
    width: 342px;
    margin-bottom: -40px;
  }
  .build-order__sup{
    bottom: 113px;
    left: 80px;
  }
  .build-order-form{max-width: 100%;}
  .build-order-tg{
    position: static;
    margin: 32px auto 0;
  }
}

/*about*/
.about__wrap{
  position: relative;
  padding: 72px 0 80px;
}
.about .sec-header{
  position: relative;
  z-index: 3;
  margin-bottom: 30px;
}
.about .sec-title span{display: block;}
.about__main{
  width: calc(100% - 535px);
  max-width: 590px;
  padding-right: 20px;
}
.about-list{margin-bottom: 30px;}
.about-list li{
  padding-left: 70px;
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #303030;
  position: relative;
}
.about-list li::before{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background: url(../img/check-icn.svg) center center no-repeat;
}
.about-link{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: 70px;
  width: fit-content;
  border-bottom: 1px solid #0CBB65;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: #18181A;
}
.about-link:hover{border-bottom-color: transparent;}
.about-stat{
  position: absolute;
  bottom: 0;
  top: 0;
  right: 274px;
  background-color: #fff;
  width: 260px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
}
.about-stat-item{
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #303030;
}
.about-stat-item span{
  display: block;
  font-weight: 700;
  font-size: 60px;
  line-height: 73px;
  color: #0CBB65;
}
.about-fig{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  margin-left: -337px;
  z-index: 3;
  width: 998px;
}
.about-fig__bg{
  position: absolute;
  bottom: 0;
  left: 188px;
  width: 810px;
}
.about-fig__fig{
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 349px;
}
.about-fig__fig img {
  max-width: 90%;
}
.about-fig__sup{
  position: absolute;
  bottom: 195px;
  left: 70px;
  padding: 11px 43px 11px 25px;
  background-color: rgba(24, 24, 26, .41);
  backdrop-filter: blur(10px);
  border-radius: 37px;
  text-align: right;
  font-size: 14px;
  line-height: 1.14;
  color: rgba(255, 255, 255, .8);
  width: 218px;
}
.about-fig__sup::before{
  content: '';
  display: block;
  position: absolute;
  right: 25px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background-color: #0CBB65;
  box-shadow: 0 0 20.8px #2EC96C;
  border-radius: 50%;
}
.about-fig__sup b{
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
@media only screen and (max-width : 1199px){
  .about .sec-header{margin-bottom: 70px;}
}
@media only screen and (max-width : 1023px){
  .about .sec-header{margin-bottom: 35px;}
}
@media only screen and (max-width : 991px){
  .about__wrap{padding: 60px 0 0;}
  .about__main{
    width: 100%;
    max-width: unset;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .about-list li{
    padding-left: 54px;
    margin-bottom: 16px;
    font-size: 14px;
  }
  .about-link{margin-left: 54px;}
  .about-stat{
    position: relative;
    left: auto;
    right: auto;
    width: calc(100% + 30px);
    margin-left: -15px;
    gap: 22px;
    padding: 20px 45px;
    z-index: 5;
  }
  .about-stat-item{
    width: 100%;
    display: flex;  
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
    gap: 20px;
  }
  .about-stat-item span{
    text-align: right;
    width: 140px;
    flex-shrink: 0;
  }
  .about-fig{
    position: relative;
    top: auto; 
    left: auto;
    margin-left: 0;
    width: 100%;
    height: 414px;
  }
  .about-fig__bg{
    left: 50%;
    width: 696px;
    transform: translateX(-50%);
  }
  .about-fig__fig{
    left: 50%;
    transform: translateX(-50%);
    bottom: -80px;
  }
  .about-fig__sup{
    bottom: 58px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*team*/
.team{
  padding: 70px 0 80px;
  background-color: #E0E6EB;
}
.team__wrap{
  max-width: 1040px;
  margin: 0 auto;
}
.team-list{
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 40px;
  gap: 12px;
}
.team-item{
  width: 100px;
  height: 442px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  transition: width .25s linear;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-item.open{
  width: calc(100% - 600px - 72px);
  /* width: 20%; */
}
.team-item img{
  width: 368px;
  height: 100%;
  max-width: unset;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition: filter .25s linear;
}
.team-item.open img{filter: grayscale(0);}
.team-item__desc{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 30px;
  background-color: rgba(60, 69, 85, .5);
  backdrop-filter: blur(27px);
  transform: translateY(100%);
  transition: transform .25s linear;
}
.team-item.open .team-item__desc{transform: translateY(0);}
.team-item__state{
  white-space: nowrap;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: rgba(219, 235, 255, .5);
}
.team-item__name{
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #DBEBFF;
}
@media only screen and (max-width : 1023px){
  .team-list{gap: 10px;}
  .team-item{width: 90px;}
  .team-item.open{width: calc(100% - 540px - 60px);}
}
@media only screen and (max-width : 991px){
  .team-list{gap: 4px;}
  .team-item{width: 70px;}
  .team-item.open{width: calc(100% - 420px - 24px);}
}
@media only screen and (max-width : 767px){
  .team{padding: 60px 0;}
  .team__wrap{max-width: 320px;}
  .team-list{
    flex-direction: column;
    margin: 35px auto 0;
    max-width: 320px;
  }
  .team-item{
    width: 100%;
    height: 100px;
    transition: height .25s linear;
    align-items: flex-start;
  }
  .team-item.open{
    width: 100%;
    height: 300px;
  }
  .team-item img{
    width: 50%;
    height: 300px;
    object-fit: cover;
    object-position: top;
    position: relative;
    top: -54px;
    transition: filter .25s linear, top .25s linear;
  }
  .team-item.open img{top: 0; width: 60%;}
  .team-item__desc{padding: 18px 30px;}
  .team-item__state{margin-bottom: 0;}
  .team-item__name{
    font-size: 16px;
    line-height: 28px;
  }
}

/*plus*/
.plus{margin-bottom: -138px;}
.plus__wrap{
  position: relative;
  padding-top: 70px;
}
.plus__wrap::before,
.plus__wrap::after{
  content: '';
  display: block;
  position: absolute;
}
.plus__wrap::before{
  width: 496px;
  height: 680px;
  background-color: #fff;
  top: 0;
  left: -235px;
}
.plus__wrap::after{
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 688px;
  background: url(../img/take-bg-min.webp) center bottom no-repeat;
  background-size: contain;
}
.plus .sec-header{
  position: relative;
  z-index: 3;
  margin-bottom: 0;
}
.plus__logotyps{
  position: absolute;
  top: 174px;
  left: 34px;
  width: 202px;
  z-index: 3;
  user-select: none;
  pointer-events: none;
}
.plus__shem{
  position: relative;
  z-index: 2;
  height: 798px;
}
.plus-item{
  position: absolute;
  border-radius: 21px;
  background-color: rgba(255, 255, 255, .74);
  backdrop-filter: blur(13px);
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  cursor: pointer;
}
.plus-item__header{
  padding: 8px 14px 8px 8px;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.plus-item__title{
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #18181A;
  white-space: nowrap;
}
.plus-item__title br{display: none;}
.plus-item__icn{
  flex-shrink: 0;
  position: relative;
  width: 26px;
}
.plus-item__icn img{
  position: relative;
  z-index: 3;
}
.plus-item__icn::before,
.plus-item__icn::after{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  border-radius: 50%;
  animation: puls 1s both linear infinite;
}
.plus-item__icn::after{animation-delay: .2s;}
.plus-item__hide{
  padding: 2px 14px 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.29;
  text-align: center;
  color: #18181A;
  display: none;
}
.plus-item:hover{z-index: 10;}
.plus-item:hover .plus-item__hide{display: block;}
.plus-item:nth-child(1){
  top: 188px;
  right: 300px;
  width: 309px;
}
.plus-item:nth-child(2){
  top: 310px;
  right: 40px;
  width: 295px;
}
.plus-item:nth-child(3){
  top: 331px;
  left: 210px;
  width: 366px;
}
.plus-item:nth-child(4){
  top: 415px;
  right: 335px;
  width: 228px;
}
.plus-item:nth-child(5){
  top: 488px;
  left: 62px;
  width: 304px;
}
.plus-item:nth-child(6){
  top: 57px;
  left: 239px;
  width: 304px;
}
@keyframes puls {
  from { 
    opacity: 1;
    width: 2px;
    height: 2px;
  }
  to { 
    opacity: 0;
    width: 84px;
    height: 84px;
  }
}
@media only screen and (max-width : 1023px){
  .plus-item:nth-child(1){right: 20px;top: 88px;}
  .plus-item:nth-child(2) {top: 252px; right: 120px;}
  .plus-item:nth-child(3){left: 30px;}
  .plus-item:nth-child(4){right: 75px;}
}
@media only screen and (max-width : 768px){
  .plus{margin-bottom: 0;}
  .plus__wrap{padding-top: 60px;}
  .plus .sec-title{text-align: center;}
  .plus__wrap::before{display: none;}
  .plus__wrap::after{
    width: 1400px;
    height: 620px;
    background-image: url(../img/take-bg-mob-min.webp);
  }
  .plus__logotyps{display: none;}
  .plus__shem{height: 734px;}
  .plus-item--revers .plus-item__header{flex-direction: row-reverse;}
  .plus-item__title br{display: block;}
  .plus-item:nth-child(1){
    top: 30px;
    right: auto;
    left: 0;
  }
  .plus-item:nth-child(2){
    top: 102px;
    right: 0;
    width: 289px;
  }
  .plus-item:nth-child(3){
    top: 173px;
    left: 0;
    width: 267px;
  }
  .plus-item:nth-child(4){
    top: 267px;
    right: 0;
    width: 209px;
  }
  .plus-item:nth-child(5){
    top: 341px;
    left: 0;
    width: 304px;
  }
  .plus-item:nth-child(6){
    top: 432px;
    left: auto;
    right: 0;
    width: 304px;
  }
}

/*our-advantages*/
.our-advantages{
  padding-top: 80px;
  position: relative;
}
.our-advantages::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: 84px;
  width: 50vw;
  height: 630px;
  background-color: #E0E6EB;
}
.our-advantages .container{
  position: relative;
  z-index: 2;
}
.our-advantages__wrap{
  margin-top: 50px;
  gap: 4px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.our-advantages-item{
  width: calc(50% - 2px);
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  overflow: hidden;
}
.our-advantages-item--check{
  border: 2px solid #0CBB65;
  background-color: #fff;
  backdrop-filter: blur(45.35px);
}
.our-advantages-item--del{
  background-color: #F3F3F3;
  border: 1px solid #D1D2D3;
}
.our-advantages-item__main-header,
.our-advantages-item__del-header{
  border-bottom: 1px solid #E4E9EE;
  height: 124px;
  display: flex;
  align-items: center;  
}
.our-advantages-item__main-header{
  justify-content: flex-start;
  padding-left: 80px;
  gap: 34px;
}
.our-advantages-item__del-header{justify-content: center;}
.our-advantages-item__logo{width: 161px;}
.our-advantages-item__main-title{
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #303030;
}
.our-advantages-item__del-title{
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: #959595;
}
.our-advantages-item__list{
  position: relative;
  flex-grow: 1;
  padding: 34px 26px 230px 106px;
}
.our-advantages-item__list::before{
  content: '';
  display: block;
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 80px;
  background-color: #E4E9ED;
  z-index: 2;
}
.our-advantages-item__list::after{
  content: '';
  display: block;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: center bottom no-repeat;
  background-size: contain;
  z-index: 3;
}
.our-advantages-item__list li{
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #1E1E1E;
  position: relative;
}
.our-advantages-item__list li::before{
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: -86px;
  margin-top: -20px;
  background: center center no-repeat;
  background-size: 100% 100%;
}
.our-advantages-item__main-list li{margin-bottom: 20px;}
.our-advantages-item__main-list li:last-child{margin-bottom: 0;}
.our-advantages-item__main-list li::before{background-image: url(../img/check-list.svg);}
.our-advantages-item__del-list li{margin-bottom: 38px;}
.our-advantages-item__del-list li:last-child{margin-bottom: 0;}
.our-advantages-item__del-list li::before{background-image: url(../img/del-icn.svg);}
.our-advantages-item__main-list::after{
  background-image: url(../img/yes-pic-min.webp);
  width: 484px;
  height: 247px;
}
.our-advantages-item__del-list::after{
  background-image: url(../img/no-pic-min.webp);
  width: 230px;
  height: 242px;
}
@media only screen and (max-width : 991px){
  .our-advantages{padding-top: 60px;}
  .our-advantages::before{display: none;}
  .our-advantages__wrap{margin-top: 20px;}
  .our-advantages-item__main-header,
  .our-advantages-item__del-header{
    height: 116px;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  .our-advantages-item__main-header{
    padding: 10px;
    gap: 6px;
  }
  .our-advantages-item__del-header{
    justify-content: center;
    padding: 10px;
  }
  .our-advantages-item__logo{width: 136px;}
  .our-advantages-item__main-title,
  .our-advantages-item__del-title{
    font-size: 16px;
    text-align: left;
  }
  .our-advantages-item__main-title br{display: none;}  
  .our-advantages-item__list{
    position: relative;
    flex-grow: 1;
    padding: 37px 20px 177px 14px;
  }
  .our-advantages-item__list::before{display: none;}
  .our-advantages-item__list li{
    padding-top: 45px;
    font-size: 16px;
  }
  .our-advantages-item__list li::before{
    top: 0;
    left: 0;
    margin-top: 0;
  }
  .our-advantages-item__main-list li{margin-bottom: 12px;}
  .our-advantages-item__main-list li:last-child{margin-bottom: 0;}
  .our-advantages-item__del-list li{margin-bottom: 20px;}
  .our-advantages-item__del-list li:last-child{margin-bottom: 0;}
  .our-advantages-item__main-list::after{
    width: 484px;
    height: 247px;
    max-width: 100%;
  }
  .our-advantages-item__del-list::after{width: 200px;}
}
@media only screen and (max-width : 767px){
  .our-advantages__wrap{
    overflow-x: auto;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .our-advantages__wrap::before,
  .our-advantages__wrap::after{
    content: '';
    display: block;
    width: 15px;
    flex-shrink: 0;
  }
  .our-advantages-item{
    width: 320px;
    flex-shrink: 0;
  }
  .our-advantages__wrap::-webkit-scrollbar,
  .our-advantages__wrap::-webkit-scrollbar-track {display: none;}
  .plus__shem{margin-top: 1.4rem;}
  .plus__shem {display: flex; flex-direction:column; align-items: center}
  .plus-item--revers .plus-item__header {flex-direction: row;}
  .plus-item{position: static; margin-top: 40px; width: 100%;}
}

/*reviews*/
.reviews{
  position: relative;
  padding: 80px 0 50px;
}
.reviews::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 50px;
  top: 0;
  left: 50%;
  margin-left: 84px;
  width: 50vw;
  background-color: #E0E6EB;
}
.reviews .container{
  position: relative;
  z-index: 2;
}
.reviews__header{
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}
.reviews__header .sec-header{
  flex-grow: 1;
  margin-bottom: 0;
}
.reviews__calc{width: 360px;}
.reviews-video{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 87px;
}
.reviews-video__fig{
  width: calc(50% - 84px);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;  
  justify-content: flex-end;
}
.reviews-video__fig img{
  width: 615px;
  max-width: unset;
}
.reviews-video__main{
  width: calc(50% + 84px);
  padding-right: 40px;
}
.reviews-video__row{
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 8px;
  padding-top: 57px;
}
.reviews-video-item{
  display: block;
  position: relative;
  width: calc(50% - 4px);
}
.reviews-video-item::after{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url(../img/play-btn.svg) center center no-repeat;
  background-size: contain;
  box-shadow: 0 0 42.8px #2EC96C;
  transition: box-shadow .25s linear;
}
.reviews-video-item:hover::after{box-shadow: 0 0 0 #2EC96C;}
.reviews-video__footer{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
}
.reviews-video__footer a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: #18181A;
  border-bottom: 1px solid #0CBB65;
}
.reviews-video__footer a:hover{border-bottom-color: transparent;}
.reviews-video__footer a span span{color: #FF0000;}
.reviews-video__footer a img{width: 16px;}
.reviews-main{
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  height: 466px;
}
.reviews-main__header{
  width: calc(50% - 84px);
  flex-shrink: 0;
  position: relative;
  padding-left: 34px;
}
.reviews-main-list{
  width: calc(50% + 84px);
  padding-right: 40px;
  gap: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.reviews-main-item{display: block;}
.reviews-main__title{
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  width: 196px;
}
.reviews-main__title a{
  color: #0CBB65;
  font-weight: bold;
  text-decoration: underline;
}
.reviews-main__title a:hover{text-decoration: none;}
.reviews-main__flag{
  width: 75px;
  margin: 25px 0 16px;
}
.reviews-main__stars{
  margin: 16px 0 20px;
  width: 186px;
}
.reviews-main__more{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: fit-content;
  border-bottom: 1px solid #0CBB65;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: #18181A;
}
.reviews-main__more:hover{border-bottom-color: transparent;}
.reviews-main__fig{
  position: absolute;
  top: 50%;
  left: 167px;
  transform: translateY(-50%);
  width: 411px;
  height: 518px;
  overflow: hidden;
  margin-top: 14px;
  user-select: none;
  pointer-events: none;
}
@media only screen and (max-width : 767px){
  .reviews{padding: 60px 0 114px;}
  .reviews::before{
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    margin-left: 0;
    width: 100vw;
    height: 860px;
  }
  .reviews__header{
    margin-bottom: 35px;
    display: block;
  }
  .reviews__header .sec-header{
    text-align: center;
    margin-bottom: 0;
  }
  .reviews__calc{
    width: 260px;
    margin: 0 auto 16px;
  }
  .reviews-video{
    display: block;
    margin-bottom: 60px;
  }
  .reviews-video__fig{
    width: 100%;
    display: block;
    margin: 35px auto 0;
    max-width: 286px;
  }
  .reviews-video__fig img{width: 100%;}
  .reviews-video__main{
    width: 100%;
    padding-right: 0;
    max-width: 320px;
    margin: 0 auto;
  }
  .reviews-video__row{
    flex-direction: column;
    gap: 4px;
    padding-top: 0;
  }
  .reviews-video-item{width: 100%;}
  .reviews-video__footer{
    justify-content: center;
    margin-top: 35px;
  }
  .reviews-main{
    padding-bottom: 0;
    display: block;
    height: auto;
  }
  .reviews-main__header{
    width: 100%;
    max-width: 320px;
    padding-left: 0;
    margin: 0 auto 40px;
  }
  .reviews-main-list{
    width: calc(100% + 30px);
    margin-left: -15px;
    padding-right: 0;
    gap: 4px;
    align-items: stretch;
    overflow-x: auto;
  }
  .reviews-main-list::before,
  .reviews-main-list::after{
    content: '';
    display: block;
    width: 15px;
    flex-shrink: 0;
  }
  .reviews-main-list::-webkit-scrollbar,
  .reviews-main-list::-webkit-scrollbar-track {display: none;}  
  .reviews-main-item{
    width: 235px;
    flex-shrink: 0;
  }
  .reviews-main__title{
    width: 176px;
    margin-bottom: 18px;
    text-align: right;
  }
  .reviews-main__flag{
    width: 68px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 193px;
  }
  .reviews-main__stars{
    margin: 18px 0 0 14px;
    width: 162px;
  }
  .reviews-main__more{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -554px;
  }
  .reviews-main__fig{
    position: absolute;
    top: -27px;
    left: 242px;
    transform: none;
    width: 94px;
    height: auto;
    margin-top: 0;
  }
}

/*attach-sec*/
.attach-sec{
  background-color: #E0E6EB;
  padding: 152px 0 80px;
}
.attach-sec__wrap{
  display: flex;
  justify-content: center;
}
.attach-sec__center{
  position: relative;
  max-width: 924px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  flex-direction: row-reverse;
}
.attach-sec__center::before{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: -340px;
  transform: translateY(-50%);
  width: 577px;
  height: 590px;
  background: url(../img/plan-bg-min.webp) center center no-repeat;
  background-size: contain;
}
.attach-form,
.attach-sec__main{
  position: relative;
  z-index: 2;
}
.attach-form{
  width: 320px;
  flex-shrink: 0;
}
.attach-sec__main{flex-grow: 1;}
.attach-sec__sub{
  font-weight: 500;
  font-size: 14px;
  line-height: 1.29;
  color: #303030;
  max-width: 424px;
}
.attach-sec .sec-txt{
  max-width: 424px;
  margin: 30px 0;
}
@media only screen and (max-width : 767px){
  .attach-sec{padding: 132px 0 60px;}
  .attach-sec__center{display: block;}
  .attach-sec__center::before{
    top: auto;
    left: 50%;
    bottom: 225px;
    transform: translateX(-50%);
    width: 341px;
    height: 349px;
    background: url(../img/plan-bg-mob-min.webp) center center no-repeat;
    background-size: contain;
  }
  .attach-form{
    max-width: 100%;
    margin: 15px auto 0;
  }
  .attach-sec__sub{
    margin-top: 175px;
    max-width: 320px;
    text-align: center;
  }
  .attach-sec .sec-txt{
    max-width: 320px;
    margin: 20px 0;
  }
  .attach-sec__main{
    max-width: 320px;
    margin: 0 auto;
  }
}

/*services*/
.services{padding: 70px 0 80px;}
.services__main{margin-top: 35px;}
.services__nav{
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.services-btn{
  height: 60px;
  padding: 0 27px;
  background-color: #fff;
  border-radius: 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #18181A;
}
.services-btn:hover,
.services-btn.active{
  background-color: #0CBB65;
  color: #fff;
}
.services__wrap{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.service-item{
  position: relative;
  width: calc(50% - 4px);
}
.service-item__pic{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: brightness(30%)
}
.service-item__pic img{
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
}
.service-item__main{
  padding: 45px 50px 55px;
  position: relative;
  z-index: 3;
}
.service-item__title{
  font-weight: 700;
  font-size: 30px;
  line-height: 122%;
  color: #fff;
  height: 84px;
}

.service-item__bar{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 44px;
}
.service-item__btn{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border-bottom: 1px solid #0CBB65;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}
.service-item__btn:hover{border-bottom-color: transparent;}
.service-item__hide{
  min-height: 100px;
  padding: 27px 0;
}
.service-item__list{display: none;}
.service-item__list li:not(:last-child){margin-bottom: 14px;}
.service-item__list li{
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: rgba(255, 255, 255, .8);
}
.service-item__list .service-item__subtitle {
  font-size: 24px;
}

.li-nested {
  margin-left: 24px;
}
.service-item__list li::before{
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -4px;
  background-color: #0CBB65;
  box-shadow: 0 0 20.8px #2EC96C;
}
@media only screen and (max-width : 1199px){
  .service-item__main{padding: 54px 20px 60px;}
}
@media only screen and (max-width : 1099px){
  .service-item__main{padding: 54px 20px 60px;}
  .service-item__title{font-size: 24px;}
  .service-item__subtitle{font-size: 18px;}
  .service-item__bar{gap: 40px;}
}
@media only screen and (max-width : 1023px){
  .service-item:hover .service-item__list{display: none;}
  .service-item__btn.open svg{transform: rotate(180deg);}
}
@media only screen and (max-width : 991px){
  .service-item{width: 100%;}
  .service-item__hide{min-height: 55px;}
}
@media only screen and (max-width : 767px){
  .services{padding: 60px 0 0;}
  .services__main{margin-top: 30px;}
  .services__nav{
    margin-bottom: 60px;
    flex-wrap: nowrap;
    gap: 3px;
    overflow-x: auto;
  }
  .services__nav::before,
  .services__nav::after{
    content: '';
    display: block;
    width: 12px;
    height: 100%;
    flex-shrink: 0;
  }
  .services-btn{
    height: 54px;
    padding: 0 16px;
    border-radius: 27px;
    font-size: 14px;
    line-height: 1.2;
  }
  .services__main{
    width: calc(100% + 30px);
    margin-left: -15px;    
  }
  .services__nav::-webkit-scrollbar,
  .services__nav::-webkit-scrollbar-track {display: none;}  
}

/*popup*/
.popup{
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: none;
}
.popup.open{display: block;}
.popup__overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .6;
}
.popup__main{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 780px;
  height: 540px;
  max-width: 100%;
  background-color: #E0E6EB;
  padding: 65px 109px 65px 340px;
  overflow: hidden;
}
.popup__close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 12px;
  z-index: 5;
}
.popup__header{
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  color: #303030;
  position: relative;
  z-index: 3;
}
.popup__txt{
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #303030;
  position: relative;
  z-index: 3;
}
.popup-form{
  max-width: 320px;
  position: relative;
  z-index: 3;
}
.popup__main::before{
  content: '';
  display: block;
  position: absolute;
  background: center center no-repeat;
  background-size: contain;
  user-select: none;
  pointer-events: none;
}
.popup__main--order::before{
  width: 369px;
  height: 560px;
  left: -29px;
  bottom: -57px;
  background-image: url("../img/popup-order-min.webp");
}
.popup__main--consultation::before{
  width: 460px;
  height: 612px;
  left: -58px;
  bottom: -91px;
  background-image: url("../img/popup-consalt-min.webp");
}
.popup__main--project::before{
  width: 561px;
  height: 574px;
  left: -76px;
  bottom: -17px;
  background-image: url("../img/popup-project-min.webp");
}
.popup__main--confirm{
  text-align: center;
  padding: 65px 128px 40px;
}
.popup__main--confirm::before{
  width: 857px;
  height: 438px;
  left: -65px;
  bottom: -60px;
  background-image: url("../img/popup-confirm-min.webp");
}
@media only screen and (max-width : 767px){
  .popup__main{
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
    padding: 50px 19px 19px;
  }
  .popup__header{
    font-size: 30px;
    text-align: center;
  }
  .popup__txt{text-align: center;}
  .popup-form{margin: 0 auto;}
  .popup__main--order::before{
    width: 258px;
    height: 390px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -174px;
  }
  .popup__main--consultation::before{
    width: 286px;
    height: 380px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -154px;
  }
  .popup__main--project::before{
    width: 355px;
    height: 364px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -121px;
    background-image: url(../img/popup-project-mob-min.webp);
  }
  .popup__main--confirm::before{
    left: -175px;
  }
}

/*cookies*/
.cookies{
  position: fixed;
  z-index: 999;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  max-width: 790px;
  padding: 30px 50px;
  border-radius: 65px;
  background-color: rgba(255, 255, 255, .87);
  backdrop-filter: blur(8.3px);
}
.cookies__txt{
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: #262C33;
  margin-bottom: 12px;
}
.cookies__link{
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: #0CBB65;
}
.cookies__btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -6%;
  right: -1%;
  width: 26px;
  height: 26px;
  background-color: rgba(255, 255, 255, .87);
  backdrop-filter: blur(8.3px);
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
}
@media only screen and (max-width : 767px){
  .cookies{
    bottom: 16px;
    padding: 20px 16px 25px;
    border-radius: 9px;
  }
  .cookies__txt{margin-bottom: 10px;}
}