@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
:root{
  --red:#DA022A;
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html{
  scroll-behavior: smooth;
}
body, html {

  width: 100%;
  height: 100%;
  align-items: stretch;
  display: flex;
  font-size: 14px;
  min-height: calc(var(--vh, 1vh) * 100);
}

html {
  height: auto;
  font-size: 1px;
}

body {
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

footer, header, .banner, main {
  flex-shrink: 0;
}

main {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1296px;
  height: 100%;
  padding: 0 48px;
  margin: 0 auto;
  position: relative;
}
.header{
  height: 96px;
  margin-bottom: -96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header .container{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header__content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
.header__nav{
  display: flex;
  gap: 48px;
  margin-right: auto;
}
.header__nav-burger{
  display: none;
}
.header__nav-list{
  display: flex;
  gap: 48px;
}
.header__nav-list .btn-red{
  display: none;
}
.header__nav a{
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.2s ease-in;
}
.header__nav a:hover{
  opacity: 0.7;

}
.header__login{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 16px;
  width: 126px;
  height: 48px;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #0E090A;
  text-decoration: none;
  transition: all 0.2s ease-in;

}
.header__login:hover{
  transform: scale(1.03);
  opacity: 0.97;
}

.banner{
  width: 100%;
  padding-top: 96px;
  background: radial-gradient(57.53% 76.92% at 85.12% 90.07%, #F1A584 0%, rgba(241, 165, 132, 0) 100%), #DA022A;
  overflow-x: hidden;
}

.banner__content{
  display: flex;
  justify-content: space-between;
}
.banner__left{
  display: flex;
  flex-direction: column;
  width: 50%;
  max-width: 500px;
  justify-content: center;
  padding-bottom: 27px;
}
.banner__chevron{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 16px;
  width: 100%;
  max-width: 140px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: #FFFFFF;
}
.banner__title{
  margin-top: 48px;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: #FFFFFF;
}
.banner__text{
  margin-top: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
}
.banner__button{
  margin-top: 48px;
  display: flex;
  gap: 16px;
}
.banner__button .btn-white, .banner__button .btn-white-b{
  width: 100%;
  max-width: 200px;
}
.banner__img{
  position: relative;
  padding-top: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner__img>img{
  margin-right: -30px;
}
.banner__img>img:first-child{
  display: block;
}
.banner__img>img:nth-child(2), .banner__img>img:nth-child(3){
  display: none;
}
.banner__logo{
  position: absolute;
  left: 254px;
  top: 167px;
}

.banner__logo img {
  opacity: 0.2;
  animation: flickerGlow 5s ease-out forwards;
  transition: filter 0.2s ease;

}

@keyframes flickerGlow {
  0%   { opacity: 0.2; filter: none; }
  10%  { opacity: 1;   filter: drop-shadow(0 0 5px white); }
  20%  { opacity: 0.1; filter: none; }
  25%  { opacity: 1;   filter: drop-shadow(0 0 10px white); }
  30%  { opacity: 0.2; filter: none; }
  40%  { opacity: 0.6; filter: drop-shadow(0 0 8px white); }
  50%  { opacity: 0.1; filter: none; }
  60%  { opacity: 1;   filter: drop-shadow(0 0 12px white); }
  70%  { opacity: 0.4; filter: drop-shadow(0 0 4px white); }
  80%  { opacity: 1;   filter: drop-shadow(0 0 10px white); }
  90%  { opacity: 0.5; filter: drop-shadow(0 0 5px white); }
  100% { opacity: 1;   filter: none; }
}

.btn-white{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 25px;
  gap: 16px;
  height: 64px;
  background: #FFFFFF;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #0E090A;
  text-decoration: none;
  transition: all 0.2s ease-in;

}
.btn-white:hover{
  transform: scale(1.03);
  opacity: 0.97;
}
.btn-red{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 25px;
  gap: 16px;
  height: 64px;
  background: var(--red);
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease-in;
}
.btn-red:hover{
  transform: scale(1.03);
  background: #F91E46;
 }
.btn-white-b{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 25px;
  gap: 16px;
  height: 64px;
  border: 1px solid #FFFFFF;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.2s ease-in;
}
.btn-white-b:hover{
  transform: scale(1.03);
  opacity: 0.97;
}
.c-red{
  color: var(--red) !important;
}
.benefit{
  margin-top: 130px;
  display: flex;
  flex-direction: column;
}
.benefit__content{
  display: flex;
  flex-direction: column;
}
.benefit__title{
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: #0E090A;
}
.benefit__list{
  display: flex;
  gap:8px;
  margin-top: 48px;
}
.benefit__item{
  width: 100%;
  max-width: 294px;
  background: #FAFAFA;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  gap: 16px;
  transition: all 0.2s ease-in-out;
}
.benefit__item:hover{
  transform: scale(1.03);
}
.benefit__item-img{
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit__item-img img{
  max-width: 100%;
}
.benefit__item-text{
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 8px;
}
.benefit__item-text b{
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #0E090A;
}
.benefit__item-text span{
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #0E090A;
}
.how-work{
  margin-top: 130px;
}
.how-work__content{
  display: flex;
}
.how-work__left{
  width: 50%;
  padding-right: 40px;
}
.how-work__title{
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: #0E090A;
  margin-bottom: -46px;
}
.how-work__nav{
  margin-top: 96px;
  display: flex;
  flex-direction: column;
  gap: 31px;
}
.how-work__nav-item {
  display: flex;
  flex-direction: column;
  gap: 31px;
  text-decoration: none;
}
.how-work__nav-item span{
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #0E090A;
}
.how-work__nav-item.active span{
  color:var(--red);
}
.how-work__nav-progress{
  width: 100%;
  background: #FAFAFA;
}
.how-work__right {
  padding-top: 48px;
  width: 50%;
  background: #FAFAFA;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.how-work__right-item {
  opacity: 0;
  transform: translate(-50%, 100%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: absolute;
  bottom: 0;
  left: 50%;
  pointer-events: none;
  font-size: 0;
}

.how-work__right-item.active {
  opacity: 1;
  transform: translate(-50%, 0%);
  pointer-events: auto;
  z-index: 2;
}
.how-work__right-item img{
  max-width: 100%;
  margin: 0 auto;
}
.how-work__nav-progress-thumb {
  height: 3px;
  width: 0%;
  background-color: var(--red);
  transition: width 3s linear;
}
.review{
  margin-top: 130px;
  height: 706px;
  background: #FAFAFA;
  padding: 130px 0;
}
.review__content{
  display: flex;
  flex-direction: column;
}
.review__title{
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #0E090A;
}
.review__sld{
  margin-top: 14px;

}
.review__item{
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 16px;
  transition: all 0.2s ease-in;
  height: 100%;
}
.review__item:hover{
  transform: scale(1.03);
}
.review__item-top{
  display: flex;
  gap: 16px;
}
.review__item-img{
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: radial-gradient(129.87% 49.62% at 49.87% 69.4%, #F1A584 0%, rgba(241, 165, 132, 0) 100%), #DA022A;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  transition: all 0.2s ease-in;
}
.review__item-img img{
  transition: all 0.2s ease-in;
}
.review__item-name {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review__item-name b{
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #0E090A;
}
.review__item-date{
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #0E090A;
  opacity: 0.5;
}
.review__sld.owl-carousel .owl-stage {
  padding: 34px 0;
  display: flex;
}
.review__item:hover{
  box-shadow: 0px 14px 34px rgba(14, 9, 10, 0.05);
}
.review__item:hover .review__item-img{
  background: #FAFAFA;
}
.review__item:hover .review__item-img img{
  filter: saturate(0) brightness(43%) contrast(240%) invert(86%);
}
.review__rating {
  display: flex;
  gap: 4px;
  margin-bottom: 7px;
}
.review__rating img{
  filter: invert(85%) sepia(58%) saturate(749%) hue-rotate(314deg) brightness(101%) contrast(102%);
}
.review__rating.rate4  img:nth-child(5),
.review__rating.rate3  img:nth-child(n+4),
.review__rating.rate2  img:nth-child(n+3),
.review__rating.rate1  img:nth-child(n+2){
  filter: invert(100%) sepia(1%) saturate(1553%) hue-rotate(304deg) brightness(111%) contrast(75%);
}
.review__item-bottom span{
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #0E090A;
}
.review__sld.owl-carousel .owl-nav button.owl-prev,
.review__sld.owl-carousel .owl-nav button.owl-next{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: #FBE6EA;
  border-radius: 16px;
  transition: all 0.3s ease-in;
  margin: 0;
}
.review__sld.owl-carousel .owl-nav button.owl-prev:hover,
.review__sld.owl-carousel .owl-nav button.owl-next:hover{
  background: #DA022A;
}
.review__sld.owl-carousel .owl-nav button.owl-prev{
  left: -95px;
}
.review__sld.owl-carousel .owl-nav button.owl-next{
  right: -95px;
}
.review__sld.owl-theme .owl-dots .owl-dot span{
  background: #F4F3F3;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease-in;
}
.review__sld.owl-theme .owl-dots .owl-dot.active span, .review__sld.owl-theme .owl-dots .owl-dot:hover span{
  background: var(--red);
}

.bonus{
  margin-top: 133px;
}
.bonus__content{
  display: flex;
  flex-direction: column;
}
.bonus__title{
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: #0E090A;
}
.bonus__list{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
}
.bonus__item{
  width: calc((100% - 16px) / 3);
  max-width: 395px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FAFAFA;
  border-radius: 16px;
  gap: 28px;
  padding: 40px 40px 24px;
}
.bonus__item-img{
  display: flex;
  align-items: center;
  justify-content: center;
}
.bonus__item-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bonus__item-text b{
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #0E090A;
}
.bonus__item-text span{
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #DA022A;
}
.bonus__bottom{
  width: 100%;
  height: 96px;
  background: radial-gradient(53.29% 608.25% at 83.12% 50%, #F1A584 0%, rgba(241, 165, 132, 0) 100%), linear-gradient(0deg, #DA022A, #DA022A), #FAFAFA;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
}
.bonus__bottom-left{
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #FFFFFF;
}
.bonus__bottom-right{
  display: flex;
  align-items: center;
  gap: 16px;
}
.bonus__bottom-right .btn-white, .bonus__bottom-right .btn-white-b{
  max-width: 200px;
}
.faq{
  margin-top: 135px;
}
.faq__content{
  display: flex;
  flex-direction: column;
}
.faq__title{
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #0E090A;
}
.faq__list{
  margin-top: 48px;
  display: flex;
  gap: 8px;
}
.faq__col{
  width: calc(50% - 4px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item{
  background: #FAFAFA;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq__question{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq__question b{
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #0E090A;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-in-out, padding 0.6s ease-in-out;
  padding-top: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #0E090A;
}

.faq__item.active .faq__answer {
  max-height: none; /* можешь увеличить, если у тебя больше контента */
  padding-top: 10px;
}

.faq__arrow{
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DA022A;
  transition: all 0.3s ease-in;
}
.faq__arrow img {
  transition: transform 0.3s ease;
}

.faq__item.active .faq__arrow, .faq__item:hover .faq__arrow {
  background: #FBE6EA;
}
.faq__item.active .faq__arrow img {
  transform: rotate(180deg);
}
.footer{
  margin-top: 135px;
  background: #0E090A;
  padding-top: 48px;
}
.footer__content{
  display: flex;
  flex-direction: column;
}
.footer__top{
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer__left{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__left .btn-red{
  display: none;
}
.footer__center{
  width: 50%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer__nav-col{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__nav-title{
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 2px;
  color: #FFFFFF;
  opacity: 0.5;

}
.footer__nav-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__nav-list a{
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
  text-decoration: none;
}
.footer__row{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__row small{
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #FFFFFF;
  opacity: 0.5;
}
.footer__right .btn-red{
  height: 48px;
}
.footer__bottom{
  border-top: 1px solid rgba(250, 250, 250, 0.4);
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #FFFFFF;
  opacity: 0.4;
}
@media (max-width: 1440px){
  .review__sld.owl-carousel .owl-nav button.owl-next{
    right: -30px;
  }
  .review__sld.owl-carousel .owl-nav button.owl-prev{
    left: -30px;
  }
}
@media (max-width: 1024px){
  .header__nav, .header__nav-list{
    gap: 20px;
  }
  .header__content{
    gap: 30px;
  }
}
@media (max-width: 768px){
  .container{
    padding: 0 48px;
  }
  .header{
    position: relative;

  }
  .header__content{
    gap: 16px;
  }
  .header__logo{
    order:1
  }
  .header__right{
    order:2;
    margin-left: auto;
  }
  .header__nav{
    order:3;
    margin-right: 0;
  }
  .header__nav-burger{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 16px;
    position: relative;
    z-index: 11;
  }
  .header__nav-burger img:nth-child(2) {
    display: none;
  }
  .header__nav-burger.active{
    background:#FBE6EA;
  }

  .header__nav-burger.active img:nth-child(1) {
    display: none;
  }

  .header__nav-burger.active img:nth-child(2) {
    display: block;
  }

  .header__nav-list {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.4s ease, opacity 0.3s ease;
    position: fixed;
    top: 0;
    right: 0;
    background: #FFFFFF;
    z-index: 10;
    width: 0;
    height: 0vh;
  }

  .header__nav-list.active {
    position: absolute;
    padding: 112px 16px 16px 32px;
    width: 360px;
    height: auto;
    min-height: 100vh;
    transform: translateX(0%);
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 0 100px #000;
  }

  .header__nav a{
    color:#0E090A;
    padding-bottom: 24px;
    border-bottom: solid 1px #FAFAFA;
    font-size: 16px;
    line-height: 150%;


  }
  .banner__img{
    padding-top: 51px;
  }
  .banner__img>img{
    margin-right: -48px;
  }
  .banner__img>img:first-child{
    display: none;
  }
  .banner__img>img:nth-child(2){
    display: block;
  }
  .banner__logo {
    left: 182px;
    top: 123px;
  }
  .banner__logo img{
    height: 57px;
  }
  .banner__left{
    width: auto;
    padding-bottom: 66px;
  }
  .banner__title{
    font-size: 40px;
    line-height: 120%;
    margin-top: 40px;
  }
  .banner__button .btn-white, .banner__button .btn-white-b{
    max-width: 190px;
  }
  .banner__button{
    margin-top: 40px;
  }
  .benefit{
    margin-top: 120px;
  }
  .benefit__list{
    flex-wrap: wrap;
  }
  .benefit__item{
    width: calc(50% - 4px);
    max-width: none;
    gap: 13px;
  }
  .how-work{
    margin-top: 120px;
  }
  .how-work__content{
    flex-direction: column;
    width: 100%;
  }
  .how-work__left{
    width: 100%;
    order: 2;
  }
  .how-work__right{
    height: 436px;
    width: 100%;
    order: 1;
  }
  .how-work__title{
    margin-bottom: 48px;
  }
  .how-work__nav{
    margin-top: 48px;
  }
  .review{
    margin-top: 120px;
    padding: 116px 0 147px;
    height: auto;
  }
  .review__sld{
    width: auto;
    margin-right: -48px;
  }
  .review__title br{
    display: none;
  }
  .review__sld.owl-carousel .owl-nav button.owl-next{
    top: auto;
    bottom: -40px;
    right: 15%;
  }
  .review__sld.owl-carousel .owl-nav button.owl-prev{
    top: auto;
    bottom: -40px;
    left: 15%;
  }
  .bonus{
    margin-top: 120px;
  }
  .bonus__list{
    flex-wrap: wrap;
  }
  .bonus__item, .bonus__bottom{
    width: calc(50% - 4px);
  }
  .bonus__bottom{
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 48px 32px 32px;
  }
  .bonus__bottom-left{
    text-align: center;
  }
  .bonus__bottom-right{
    flex-direction: column;
    width: 100%;
  }
  .bonus__bottom-right .btn-white, .bonus__bottom-right .btn-white-b{
    max-width: none;
    width: 100%;
  }
  .faq{
    margin-top: 120px;
  }
  .faq__list{
    flex-direction: column;
  }
  .faq__col{
    width: 100%;
  }
  .footer__top{
    flex-direction: column;
    gap: 36px;
  }
  .footer__left{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
    gap: 20px;
  }
  .footer__left .btn-red{
    display: flex;
    height: 48px;
    margin-left: 20px;
  }
  .footer__center{
    width: 100%;
  }
  .footer__right {
    display: none;
  }
}
@media (max-width: 560px){
  .container{
    padding: 0 16px;
  }
  .header__right{
    display: none;
  }
  .header__nav-list.active{
    width: 240px;
  }
  .header__nav-list .btn-red{
    display: flex;
    height: 48px;
    color: #fff;
    padding: 5px 10px;
    border-bottom: none;
  }
  .banner__content{
    flex-direction: column;
  }
  .banner__left, .banner__img{
    width: 100%;
  }
  .banner__left{
    padding-top: 16px;
    padding-bottom: 0;
    max-width: none;
  }
  .banner__title{
    margin-top: 26px;
    font-size: 34px;
  }
  .banner__text{
    margin-top: 23px;
    font-size: 14px;
  }
  .banner__button{
    position: relative;
    z-index: 9;
    margin-top: 220px;
    margin-bottom: -264px;
    justify-content: center;
  }
  .banner__img{
    padding-top: 0;
  }
  .banner__img>img:first-child{
    display: none;
  }
  .banner__img>img:nth-child(2){
    display: none;
  }
  .banner__img>img:nth-child(3){
    display: block;
    margin: 0;
  }
  .btn-white,.btn-white-b,.btn-red{
    font-size: 14px;
    padding: 10px 15px;
    height: 58px;
  }
  .banner__logo{

    left: 50%;
    transform: translateX(-50%);
    top: 54px;
  }
  .banner__logo img {
    height: 43px;
  }
  .benefit {
    margin-top: 80px;
  }
  .benefit__title{
    font-size: 32px;
  }
  .benefit__item{
    width: 100%;
  }
  .benefit__list{
    margin-top: 32px;
  }
  .benefit__item {
    padding: 40px 24px 47px;
    gap: 16px;
  }
  .how-work{
    margin-top: 80px;
  }
  .how-work__title{
    font-size: 32px;
    margin-bottom: 32px;
  }
  .how-work__right{
    height: 300px;
  }
  .how-work__right-item img{
    height: 272px;
  }
  .how-work__left{
    padding-right: 0;
  }
  .how-work__nav{
    margin-top: 34px;
    gap: 25px;
  }
  .how-work__nav-item {
    gap: 20px;
  }
  .how-work__nav-item span{
    font-size: 18px;
  }
  .review{
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 94px;
  }
  .review__title{
    font-size: 32px;
  }
  .review__sld{
    margin-top: 0;
    margin-right: 0;
  }
  .review__sld.owl-carousel .owl-nav button.owl-next{
    right: 0;
  }
  .review__sld.owl-carousel .owl-nav button.owl-prev{
    left: 0;
  }
  .bonus{
    margin-top: 80px;
  }
  .bonus__title{
    font-size: 32px;
  }
  .bonus__list{
    margin-top: 30px;
  }
  .bonus__bottom{
    padding: 32px 24px;
  }

  .bonus__bottom-left{
    margin-bottom: 48px;
  }
  .bonus__bottom-right .btn-white, .bonus__bottom-right .btn-white-b{
    height: 64px;
  }
  .bonus__item, .bonus__bottom{
    width: 100%;
    max-width: none;
  }
  .faq{
    margin-top: 80px;
  }
  .faq__title{
    font-size: 32px;
  }
  .faq__list{
    margin-top: 32px;
  }

  .footer__top{
    gap: 48px;
  }
  .footer__left{
    row-gap: 30px;
    padding: 0;
  }
  .footer__left, .footer__center{
    flex-wrap: wrap;
  }
  .footer__left .btn-red{
    width: 100%;
    margin-left: 0;
  }
  .footer__center{
    row-gap: 50px;
  }
  .footer__nav-col:nth-child(1){order:1}
  .footer__nav-col:nth-child(2){order:3}
  .footer__nav-col:nth-child(3){order:2}
  .faq__arrow{
    min-width: 50px;
  }
}