/* css/style.css */
/* Variables */
:root {
  /* Intentionally empty: no custom properties yet. */
}
/* Base/Reset */
/* Общие настройки */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Mulish', sans-serif;
  color: #151515;
  line-height: 100%;
  background-color: #F2F2F2;
}
a{
  text-decoration: none;
  color: #151515;
  text-decoration: underline;
}


a:hover {
  color: #151515;
  text-decoration: none;
}


p{
  padding: 0px;
  margin: 0px;
}
ul{
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
img {
  max-width: 100%;
}
/* Layout */
.container {
  --container-padding: 120px; 
  
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
/* Адаптив */
/* Media Queries */
@media (max-width: 1280px) {
  .container {
    --container-padding: 80px;
  }
}
@media (max-width: 1024px) {
  .container {
    --container-padding: 64px;
  }
}
@media (max-width: 768px) {
  .container {
    --container-padding: 32px;
  }
}

@media (max-width: 576px) {
  .container {
    --container-padding: 16px;
  }
}


@media (min-width: 1281px) {
  .container__inner {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
}

@media (min-width: 1025px) {
  .container__inner--1024 {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
}





@media (min-width: 769px) {
  .offer__wrapper {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
}






/* Utilities */
.mb-section{
  margin-bottom: 240px;
}

.mb-section.benefits{
	margin-bottom: 350px;
}


.mb-120{
  margin-bottom: 120px;
}
.mb-66{
  margin-bottom: 66px;
}
.mb-48{
  margin-bottom: 48px;
}
.mb-28{
  margin-bottom: 28px;
}
.mb-25{
  margin-bottom: 25px;
}
.mb-24{
  margin-bottom: 24px;
}
.mb-20{
  margin-bottom: 20px;
}
.mb-16{
  margin-bottom: 16px;
}
.mb-8{
  margin-bottom: 8px;
}
.mb5{
  margin-bottom: 5px;
}
.mt-20{
  margin-top: 20px;
}
.mt-24{
  margin-top: 24px;
}
.h1{
  font-family: Mulish;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
}







.fs-14{
  font-size: 14px;
}
.flex-right{
  display: flex;
  justify-content: flex-end;
}

.text-grey{
  font-weight: 500;
  font-size: 16px;
  color: #858585;
}

.text-green{
  color: #C9F76E;
  text-transform: uppercase;
}

.text-white{
  color: #fff;
}








.visible-xs,
.visible-sm,
.visible-md,
.visible-lg,
.visible-xl {
  display: none !important;
}

.hidden-xs,
.hidden-sm,
.hidden-md,
.hidden-lg,
.hidden-xl {
  display: block !important;
}

@media (max-width: 576px) {
  .visible-xs { display: block !important; }
  .hidden-xs  { display: none !important; }
}

@media (max-width: 768px) {
  .visible-sm { display: block !important; }
  .hidden-sm  { display: none !important; }
}

@media (max-width: 1024px) {
  .visible-md { display: block !important; }
  .hidden-md  { display: none !important; }
}

@media (max-width: 1280px) {
  .visible-lg { display: block !important; }
  .hidden-lg  { display: none !important; }
}

@media (min-width: 1281px) {
  .visible-xl { display: block !important; }
  .hidden-xl  { display: none !important; }
}








.promo-title{
font-weight: 900;
font-size: 34px;
leading-trim: NONE;
line-height: 44px;
letter-spacing: 0%;
margin-bottom: 8px;

}

.promo-text{
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 2%;
}

.btn__submit{

  width: 100%;
  height: 50px;
  background: #151515;
  color: #C9F76E;
  border: none;
  font-weight: 800;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
}
















.hero {
  min-height: 60px;
  position: relative;
  background-color: #151515;
}
.hero__inner {
  position: relative;     
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-bar {
  display: flex;
  align-items: flex-end;
  z-index: 1;
  height: 42px;
}
.search-bar__container {
  display: flex;
  align-items: flex-end;
}
.search-bar__container.hidden-sm {
  display: flex !important;
}
.search-bar__input-wrapper {
  width: 290px;
  position: relative;
}
.search-bar__input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  line-height: 12px;       
  padding: 0px 0px 4px 0px;               
  height: 20px;            
  vertical-align: bottom;  
  color: #F5F5F5;
}
.search-bar__input::placeholder {
    color: #454545; 
}
/* линия */
.search-bar__input-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #454545;
}
.search-bar__actions {
  display: flex;
  align-items: center;
  margin-left: 8px; 
  gap: 12px;     
  margin-bottom: 4px;
}
.search-bar__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}








.hero__logo {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3px; 
  order: 1;
}
.hero__logo span{
font-weight: 300;
font-size: 10px;
line-height: 100%;
}
.hero__nav {
  display: flex;
  z-index: 1;
  align-items: center;
  font-family: sans-serif;
  order: 3;
}


/*

.hero__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px; 
}


.hero__logo span{
font-weight: 300;
font-size: 10px;
line-height: 100%;
}
.hero__nav {
  display: flex;
  z-index: 1;
  align-items: center;
  font-family: sans-serif;
}
.hero__nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 18px;
}

*/





.hero__nav__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hero__nav__item.hidden-sm {
  display: flex !important;
}

/* Здесь убрать */

.hero__nav__list .hero__nav__item:nth-child(-n+2){
  display: none !important;
}

.hero__nav__item.hidden-sm {
  display: none !important;
}

.search-bar {
 opacity: 0;
}

/* Здесь убрать */



.hero__nav__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  text-transform: uppercase;
  cursor: pointer;
  color: #FFFFFF;
}
.hero__nav__link--current::after {
  content: ""; 
  background-image: url(/skin/assets/img/promo/lang_arrow.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 12px;
  margin-left: 8px;
}
.hero__nav__dropdown {
  position: absolute;
  top: 70%;
  left: 0;
  display: none;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 100px;
  z-index: 10;
}
.hero__nav__item--lang:hover .hero__nav__dropdown {
  display: block;
}
.hero__nav__dropdown__link {
  display: block;
  padding: 2px 8px;
  color: #000;
  text-decoration: none;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
}
.hero__nav__dropdown__link:hover {
  background-color: #f0f0f0;
  border-radius: 4px;
}
.hero__nav__link svg {
  display: block;
  width: 28px;
  height: 28px;
}
.hero__nav__link:hover svg path {
  fill: red;
}
.hero__nav__link--human{
  padding-bottom: 1px;
}

.footer__center{
  display: flex;
  justify-content: end;
}

.footer__center .hero__nav__item{
  display: none;
}













.s-banner.mb-section{
  margin-bottom: 630px;
}


.banner__snow{
  margin-top: 40px;
  margin-right: 200px;
}

.banner__bg{
  margin-top: 10px;
  position: relative;
}
.banner__img{
  position: absolute;
}
.banner__img1{
  left: 190px;
  top: -50px;
  box-shadow: 0px 0px 5px 0px #0000001A;

}

.banner__img2{
  right: 233px;
  top: -95px;
}

.banner__img3{
  left: 50%;
  margin-left: -120px;
  bottom: -135px;
  z-index: -1;
}

.banner__img4{
  left: 240px;
  bottom: -270px;
  z-index: -1;
}

.banner__img5{
  right: 120px;
  top: 238px;
 
}

.banner__bg__img{
  width: 100%;
}




.form-inner{
  max-width: 1440px;
  margin: 12px auto 0px auto;
  position: relative;
}


/* ===== БАЗА ===== */
.register-form {
  display: block;
  background: #000;
  color: #fff;
  font: 14px Mulish, sans-serif;
}

/* ===== СЕТКА ===== */
.rf-grid-row {
  display: flex;
  border-left: 1px solid #444;
}

.rf-grid-row:first-child .rf-cell {
  border: 1px solid #444;
  border-left: none;
}

.rf-cell {
  flex: 1;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;

  background: #fff;
  border-right: 1px solid #444;
  border-bottom: 1px solid #444;
}

.rf-cell:last-child {
  border-right: none;
}

/* ===== МОДИФИКАТОРЫ ===== */
.rf-cell--wide {
  flex: 3;
}

.rf-cell--submit {
  flex: 2;
  background: #000;
}

.rf-cell--green {
  background: #c6ff4f;
  color: #000;
}

.rf-cell--green span {
  font: 600 18px/26px Mulish;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #151515;
}

/* ===== INPUT / SELECT ===== */
.rf-cell input,
.rf-cell select {
  width: 100%;
  padding: 22px 30px 22px 22px;
  border: none;
  background: transparent;

  font: 500 16px/22px Mulish;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #151515;
}

.rf-cell select {
  cursor: pointer;
  appearance: none;
}

/* Убрать фокус */
.rf-cell input:focus,
.rf-cell select:focus,
.rf-cell input:active,
.rf-cell select:active {
  outline: none;
  box-shadow: none;
  background: transparent;
}

/* ===== PLACEHOLDER ===== */
.rf-cell input::placeholder,
.rf-cell input::-moz-placeholder {
  font: 500 16px/22px Mulish;
  text-transform: uppercase;
  color: #A2A2A2;
  opacity: 1;
}

/* ===== SELECT СТРЕЛКА ===== */
.rf-cell--select {
  position: relative;
}

.rf-cell--select select {
  appearance: none;
  cursor: pointer;
  color: #151515;
}

.rf-cell--select::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #000;
  pointer-events: none;
  display: none;
}

/* ===== SUBMIT ===== */
.rf-submit {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C9F76E;
}









.gallery__inner {
  display: flex;
  width: 100%;
  height: 720px;
}

.gallery__item {
  flex: 1;              
  overflow: hidden;
  transition: flex 0.4s ease;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
}

.gallery__item.active {
  flex: 2; 
  position: relative;
}


.gallery__item__text{
  position: absolute;
  left: 0px;
  bottom: 30px;
}

.gallery__item__text{
  padding: 26px;
  background-color: #000000;
  max-width: 514px;
  color: #ffffff;
  font-weight: 900;
  font-style: Black;
  font-size: 26px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.circled{
  position: relative;
}

.underlined{
  position: relative;
}

.circled:before{
  content: "";
  background-image: url(/skin/assets/img/promo/circled_bg.png);
  background-repeat: no-repeat;
  width: 207px;
  height: 56px;
  position: absolute;
  top: -18px;
  left: -18px;
}

.gallery__item__text2 .circled:before{
  content: "";
  background-image: url(/skin/assets/img/promo/circled_bg2.png);
  background-repeat: no-repeat;
  width: 261px;
    height: 56px;
    position: absolute;
    top: -12px;
    left: -18px;
}
.gallery__item__text2 .underlined:before,
.gallery__item__text3 .underlined:before ,
.gallery__item__text4 .underlined:before  {
    bottom: -20px;
    left: -20px;
    z-index: -1;
    background-size: 146px;
}

.gallery__item__text.gallery__item__text3 {
    max-width: 323px;
}

.offer__title .circled:before{
  content: "";
  background-image: url(/skin/assets/img/promo/circled_big_bg.png);
  background-repeat: no-repeat;
  width: 655px;
  height: 164px;
  position: absolute;
  top: -24px;
  left: -26px;
  z-index: -1;
}

.benefits__title .circled:before{
  content: "";
  background-image: url(/skin/assets/img/promo/circled_middle_bg.png);
  background-repeat: no-repeat;
  width: 587px;
  height: 158px;
  position: absolute;
  top: -24px;
  left: -33px;
}


.underlined:before{
  content: "";
  background-image: url(/skin/assets/img/promo/underlined_bg.png);
  background-repeat: no-repeat;
  width: 282px;
  height: 27px;
  position: absolute;
  bottom: 3px;
  left: -20px;
  z-index: -1;
}

.cta__title .underlined:before{
  content: "";
  background-image: url(/skin/assets/img/promo/underlined_big_bg.png);
  background-repeat: no-repeat;
  width: 682px;
  height: 27px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
}

.faq-modal .underlined:before,{
  content: "";
  background-image: url(/skin/assets/img/promo/underlined_form_bg.png);
  background-repeat: no-repeat;
  width: 220px;
  height: 29px;
  position: absolute;
  bottom: -15px;
  left: -15px;
  z-index: -1;
}

.faq-modal-success .underlined:before{
  content: "";
  background-image: url(/skin/assets/img/promo/underlined_success_form_bg.png);
  background-repeat: no-repeat;
  width: 332px;
  height: 44px;
  position: absolute;
  bottom: -5px;
  left: -22px;
  z-index: -1;
}








.green-bg{
  background-color: #C9F76E;
}

.blue-bg{
  background-color: #A6F3E6;
}




.ticker {
  overflow: hidden;
  width: 100%;
  height: 71px;
  display: flex;
  align-items: center;
  position: relative;
}

.ticker__track {
  display: flex;
  white-space: nowrap;
  position: absolute;
  left: 0;
}

.ticker__track span {
  margin-right: 32px;
  font-weight: 900;
  font-size: 34px;
  line-height: 46px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #151515;
}




.online__img{
   background-image: url(/skin/assets/img/promo/online_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
}


.online__inner {
  display: flex;
  width: 100%;
}

.online__img,
.online__info {
  flex: 1;
  aspect-ratio: 1 / 1;   
  box-sizing: border-box;
}


.online__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background-color: #151515;
}



.online__info__title{
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 68px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #F5F5F5;
  margin: 0px 30px 0px 66px;
}

.online__info__text{
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 2%;
  color: #A2A2A2;
  max-width: 370px;
  margin: 0px 30px 0px 66px;
}


.offer__title{
  font-family: Mulish;
font-weight: 900;
font-size: 96px;
line-height: 120px;
letter-spacing: 0%;
text-transform: uppercase;
position: relative;
}

.offer__text{
  position: absolute;
  right: 0px;
  bottom: 0px;
  font-family: Mulish;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 4%;
  text-align: right;
  text-transform: uppercase;
}



.offer__wrapper{
  position: relative;
}

.offer__items{
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  gap: 18px;
}

.offer__item {
    height: 114px;
    max-width: 395px;
    width: 100%;
    background-color: #151515;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 4%;
    text-transform: uppercase;
    color: #F5F5F5;
    white-space: nowrap;
    padding: 0px 50px;
}



.benefits__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits__title{
  max-width: 1127px;
  font-weight: 900;
  font-size: 96px;
  line-height: 120px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}


.benefits__stickers{
  max-width: 620px;
  width: 100%;
  position: relative;

}

.benefits__sticker{
  max-width: 620px;
  width: 100%;
  height: 90px;
  border: 1px solid #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 34px;
  line-height: 46px;
  letter-spacing: 0%;
  text-transform: uppercase;
  position: absolute;
}

.benefits__sticker1{
  background-color: #C9F76E;
  transform: rotate(-0.52deg);

}

.benefits__sticker2{
  background-color: #FFE95A;
  top: -8px;

}

.benefits__sticker3{
  background-color: #D296FE;
  transform: rotate(0.96deg);
  top: -10px;

}

.benefits__sticker4{
  background-color: #FAA7BF;
  top: -16px;
}

.cta__title{
  font-weight: 900;
  font-size: 96px;
  line-height: 120px;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.cta__title .underlined{
  white-space: nowrap;
}




.cta__img {
  background-image: url(/skin/assets/img/promo/cta__img.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


.cta__block {
  display: flex;
  width: 100%;
  aspect-ratio: 2 / 1; 
}

.cta__items,
.cta__img {
  flex: 1;
  height: 100%;
}


.cta__items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.cta__items {
  display: flex;
  flex-direction: column; 
  width: 100%;
  height: 100%;
}

.cta__item {
  flex: 1;               
  box-sizing: border-box;
  padding: 10px 48px;
  background-color: #fff;
  border: 1px solid #151515;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta__item.active{
  background-color: #C9F76E;
}

.cta__item:hover {
    background-color: #C9F76E;
}



.faq__top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__title{
   font-weight: 900;
  font-size: 96px;
  line-height: 120px;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.faq__btn{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  max-width: 418px;
  width: 100%;
  background-color: #080808;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C9F76E;
  cursor: pointer;
}



.plus-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: none;
  background-color: #C9F76E; 
  cursor: pointer;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.plus-btn span {
  position: absolute;
  width: 32px;
  height: 4px;
  background-color: #000;
  border-radius: 2px;
}

.plus-btn span:last-child {
  transform: rotate(90deg);
}


.plus-btn:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
}


.faq__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border-top: 2px solid #151515;
  border-bottom: 2px solid #151515;
  position: relative;
  padding: 60px 120px 60px 48px;
}

.faq__item:first-child {
  border-top: none;
}

.faq__item__title {
  width: 520px;
  flex-shrink: 0;
}

.faq__item__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  overflow: hidden;
  text-overflow: ellipsis;
}

/* кнопка */
.plus-btn {
  position: absolute;
  top: 48px;
  right: 48px;
}


.faq__item.active{
  flex-direction: column;
  background-color: #C9F76E;
  gap: 16px;
}

.faq__item.active .plus-btn{
  background-color: #151515;
}


.faq__item.active .plus-btn span {
  background-color: #C9F76E;
}

.faq__item.active .plus-btn span:last-child {
  display: none;
}


.faq__item.active .faq__item__text {
   display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}


.bbanner__bg {
   background-image: url(/skin/assets/img/promo/bbanner_bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  height: 435px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bbanner__inner .form-inner{
  max-width: 100%;
  margin: 0px;
}

.bbanner__bg__img{
  max-width: 859px;
}


.bticker {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
}

.bticker__track {
  display: inline-block;
  white-space: nowrap;
}


.footer{
  padding: 66px 0px;
  background-color: #151515;
  color: #fff;
}



.dark-form {
  max-width: 656px;
  width: 100%;
  padding: 24px;
  background: #151515;
}

.dark-form__field {
}

.dark-form input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #C1C1C1;
  padding: 16px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0%;
  text-transform: uppercase;
  outline: none;
  color: #ffffff;
  height: 68px;
}

.dark-form input::placeholder {
  color: #fff;
  font-size: 14px;
}

.dark-form input:focus {
  border-bottom-color: #b7f35a;
}

.dark-form__submit {
    max-width: 316px;
    width: 100%;
    height: 58px;
    margin-top: 32px;
    background: #BEF15A;
    color: #151515;
    border: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}


.footer__top{
  display: flex;
  justify-content: space-between;
}

.footer__top__nav{
  display: flex;
  gap: 24px;
}

.footer__top__list{
  display: flex;
  flex-direction: column;
}

.footer__top__list:first-child {
}

.footer__top__title{
  font-weight: 500;
  font-size: 34px;
  line-height: 44px;
  letter-spacing: 0%;
  color: #FFFFFF;
}

.footer__bottom .footer__top__title{
  font-weight: 700;
}

.footer__nav__list{
   display: flex;
  gap: 90px;
}

.footer__nav__list ul li{
  margin-bottom: 3px;

}

.footer__nav__list ul li a{
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 2%;
  color: #A2A2A2;
  text-decoration: none;
}


.nav__text{
   font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 2%;
  color: #A2A2A2;
}

.social{
  text-align: right;
}

.social__list{
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}



.footer__links{
	display: flex;
	justify-content: space-between;
}

.footer__links a{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 2%;
	color: #FFFFFF;
}

.footer__links span {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #A2A2A2;
}


.footer__bottom{

}

.footer__bottom p{
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0%;
	color: #9C9C9C;
}

.footer__top__subtitle{
  font-weight: 600;
  font-size: 28px;
  line-height: 28px;
}






/* Registration */





.mtb-120{
  margin: 120px 0px;
}



.regist__inner{
  width: 100%;
  display: flex;
  border: 1px solid #151515;
  background-color: #fff;
  margin: 120px 0px;

}

.regist__img{
  background-image: url(/skin/assets/img/reg/registr_img.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
   flex: 1 1 auto;
   border-right: 1px solid #151515
}

.registr__form__inner{
  max-width: 687px;
  width: 100%;
  padding: 48px 120px;

}





.regist-form {
  max-width: 687px;
  margin: 0 auto;
  font-family: Mulish, sans-serif;
}

.regist-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.register-form__title {
  font-weight: 900;
  font-size: 34px;
  line-height: 46px;
  text-align: center;
  text-transform: uppercase;
  color: #151515;
  margin-bottom: 24px;
}


.form-group {
  margin-bottom: 16px;
}

.regist-form .form-group--half {
  flex: 1 1 calc(50% - 8px);
  min-width: 0;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #151515;
}


.form-group input {
  width: 100%;
  height: 46px;
  padding-left: 18px;
  border: 1px solid #CCCCCC;
  font-size: 14px;
  font-weight: 500;
  color: #151515;
  outline: none;
}
.form-group textarea {
  width: 100%;
  height: 180px;
  padding: 16px 18px;
  border: 1px solid #CCCCCC;
  font-size: 14px;
  font-weight: 500;
  color: #151515;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus{
  border: 1px solid #CCCCCC;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea:placeholder {
  color: #A2A2A2;
  letter-spacing: 2%;
}


.form-group--password {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 16px;
  bottom: 11px;
  background: none;
  border: none;
  cursor: pointer;
}

.registration-profile-type {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 70px;
  margin-bottom: 16px;
}

.registration-profile-type__option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.registration-profile-type__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.registration-profile-type__mark {
  width: 24px;
  height: 24px;
  border: 2px solid #D9D9D9;
  border-radius: 50%;
  background: #FFFFFF;
  position: relative;
  flex-shrink: 0;
}

.registration-profile-type__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #D9D9D9;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.registration-profile-type__option input:checked + .registration-profile-type__mark::after {
  background: #151515;
}

.registration-profile-type__text {
  color: #151515;
  font-family: Mulish, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 22px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  margin: 0px 0px 24px 0;
  padding-left: 0px;
}

.form-check input {
  display: none;
}

.form-check__box {
  width: 38px;
  height: 38px;
  border: 1px solid #151515;
  background: #F2F2F2;
  position: relative;
  flex-shrink: 0;
}


.form-check__box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 8px;
  border-left: 2px solid #151515;
  border-bottom: 2px solid #151515;
  transform: translate(-50%, -60%) rotate(-45deg);
  opacity: 0;
}


.form-check input:checked + .form-check__box::after {
  opacity: 1;
}

.form-check__text {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #A2A2A2;
}


.register-form__submit {
  max-width: 294px;
  width: 100%;
  height: 50px;
  background: #151515;
  color: #C9F76E;
  border: none;
  font-weight: 800;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-214{
   max-width: 214px;
  height: 46px;
  margin-bottom: 0px

}


.register-form__login {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  text-transform: uppercase;
}

.register-form__login span {
  color: #A2A2A2;
  display: block;
  margin-bottom: 6px;
}

.register-form__login a {
  color: #151515;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .regist-form .form-group--half {
    flex-basis: 100%;
  }

  .registration-profile-type {
    gap: 12px 24px;
  }
}



.password-toggle .icon-eye-open {
  display: none;
}

.password-toggle.is-open .icon-eye-open {
  display: block;
}

.password-toggle.is-open .icon-eye-close {
  display: none;
}



.password-toggle {
  background: none;
  border: none;
  cursor: pointer;
}


.eye-icon {
  position: relative;
  display: inline-block;
}


.password-toggle.is-open .eye-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: #BEF15A;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}


#regModalSuccess {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background-color: #E5E5E5;
  max-width: 1200px;
  width: 100%;
  display: none;
  z-index: 1000;
}

#regModalSuccess #regClose {
  position: absolute;
  top: 42px; 
  right: 42px;
  background: none;
  border: none;
  cursor: pointer;
}

.regist-modal-success{
  min-height: 661px;
  display: flex;       
  flex-direction: column;
}


.regist-modal__img {
  position: relative;
  width: 100%;
  height: 445px;

  background-image:
    url(/skin/assets/img/reg/reg_success_img.jpg);

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.regist-modal__inner{
  display: flex;
  justify-content: center;
  align-items: center;
   flex: 1 1 auto;
}

.regist-modal__inner .promo-title{
  text-transform: uppercase;
  margin-bottom: 24px;
}

.regist-modal__inner .faq__btn{
  max-width: 225px;
  height: 50px;
  font-size: 14px;
  line-height: 22px;
  margin: 0px auto;
}
















/* Login */


.login{
  margin: 120px 0px;
}


.login__inner{
  width: 100%;
  display: flex;
  border: 1px solid #151515;
  background-color: #fff;

}

.login__img{
  background-image: url(/skin/assets/img/reg/login_img.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
   flex: 1 1 auto;
   border-right: 1px solid #151515
}

.login__form__inner{
  max-width: 687px;
  width: 100%;
  padding: 48px 120px;

}





.login-form {
  max-width: 687px;
  margin: 0 auto;
  font-family: Mulish, sans-serif;
}





.login-form__submit {
  max-width: 294px;
  width: 100%;
  height: 50px;
  background: #151515;
  color: #C9F76E;
  border: none;
  font-weight: 800;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
  margin-top: 24px;
  text-transform: uppercase;
  font-size: 14px;
}


.login-form__login {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  text-transform: uppercase;
}

.login-form__login span {
  color: #A2A2A2;
  display: block;
  margin-bottom: 6px;
}

.login-form__login a {
  color: #151515;
  font-weight: 600;
  text-decoration: underline;
}


.message-line{
  width: 100%;
  height: 38px;
  background-color: #BEF15A;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.form-group.form-group--password{
  margin-bottom: 16px;
}

.forgot-password{
font-weight: 500;
font-size: 14px;
line-height: 22px;
color: #A2A2A2;
display: flex;
gap: 8px;
}
.forgot-password a{
font-weight: 500;
font-size: 14px;
line-height: 22px;
color: #A2A2A2;
text-decoration: underline;
}

.form-captcha{
  border: 1px solid #D3D3D3;
  box-shadow: 0px 0px 4px 1px #00000014;
  background: #F9F9F9;
  border-radius: 3px;
  padding: 0px 16px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.form-captcha .form-check {
  margin: 0px;
}

.mb-0{
  margin-bottom: 0px;
}

.login-form__submit.disаbled{
  background-color: #666666;
  max-width: 100%;
  color: #A2A2A2;
}

.login-form__submit.resend{
  background-color: #ffffff;
  color: #151515;
  border: 1px solid #151515;
  max-width: 100%;
  margin-bottom: 12px;
}

.mt-0{
  margin-top: 0px;
}

.message-line.message--error{
  background-color: #FFE6E6;
  color: #F15555;
}

.login .promo-text{
  font-size: 14px;
  line-height: 22px;
}






    /*  Info-modal  */

    .info-modal{
     display: none;
     position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #E5E5E5;
      max-width: 1200px;
      width: 100%;
      z-index: 1000;
      border: 1px solid #151515;
    }


    .info-modal .h2{
      margin-bottom: 0px;
      max-width: 850px;
      width: 100%;
      font-weight: 900 !important;
    }

    .info-modal p{
      max-width: 840px;
      width: 100%;
    }

  




    .info-modal__img{
      background-image: url(/skin/assets/img/home/info_popap_bg.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 445px;
    }

    .info-modal__content{
      padding: 48px 120px;
      display: flex;
      flex-direction: column;
      background-color: #fff;
      gap: 24px;
      align-items: center;
    }



/* Contact */


.page-header{

}
.page-header .breadcrumbs{
  height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.breadcrumbs a{
font-weight: 600;
font-size: 12px;
line-height: 16px;
color: #B2B0B0;
text-decoration: underline;
text-transform: uppercase;
position: relative;
padding-right: 12px;
}

.breadcrumbs a::before {
  content: "";
  position: absolute;
  right: 0px;       
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #B2B0B0;
  border-bottom: 1px solid #B2B0B0;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 1;
}

.breadcrumbs span{
font-weight: 600;
font-size: 12px;
line-height: 16px;
text-transform: uppercase;
}

.page-title{
font-weight: 900;
font-size: 34px;
line-height: 46px;
text-transform: uppercase;
}



.content__wrapper{
  position: relative;
  min-height: 640px;
}

.contact__inner{
  width: 100%;
  display: flex;
  border: 1px solid #151515;
  background-color: #fff;
  position: absolute;
  left: 0px;
  top: 314px;
}


.content__img{
  background-image: url(/skin/assets/img/contact_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 640px;
  width: 100%;
  margin-bottom: 408px;
  position: relative;
}



.contact__info{
  background-color: #C9F76E;
  width: 100%;
    flex: 1 1 auto;
    border-right: 1px solid #151515;
}

.contact__form__inner{
    width: 100%;
    padding: 48px 120px;
}


.contact__info{
	padding-left: 116px;
	display: flex;
	align-items: center;
	max-width: 480px;
    width: 100%;
}

.contact__content_title{
	font-weight: 900;
	font-size: 20px;
	line-height: 32px;
	text-transform: uppercase;
}

.contact__info__content li{
	font-weight: 700;
	font-size: 14px;
	line-height: 22px;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 16px;
	padding-left: 16px;
}








.contact-form {

}

.contact-form__title {
font-weight: 900;
font-size: 28px;
line-height: 36px;
text-align: center;
text-transform: uppercase;
}




.contact-form .form-group input {
  height: 54px;
  padding-left: 18px;
  font-size: 14px;
}

.contact-form__submit{
	max-width: 226px; 
}



.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 14px;
  resize: vertical;
}

.form-group.mb-24{
	margin-bottom: 24px;
}





.custom-dropdown {
  position: relative;
  width: 100%;
}
.custom-dropdown input {
  text-transform: uppercase;
}

.dropdown-input {
  height: 54px;
  padding: 0 50px 0 18px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
}

.dropdown-arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #000;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0px;
  right: 0px;
  background: #FFFFFF;
  list-style: none;
  padding: 0px;
  margin: 0px;
  max-height: 414px;
  overflow-y: auto;
  z-index: 10;
  display: none;
  border: 1px solid #151515;
  border-top: none;

  scrollbar-width: thin;
  scrollbar-color: #D2D2D2 transparent;
}

.custom-dropdown.active .dropdown-list {
  display: block;
}

.dropdown-list li {
  padding: 20px 22px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
  position: relative;
  color: #151515;
}

.dropdown-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: #D2D2D2;
}

.dropdown-list li:hover {
  background: #C9F76E;
}


.dropdown-list::-webkit-scrollbar {
  width: 6px;
}

.dropdown-list::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-list::-webkit-scrollbar-thumb {
  background: #D2D2D2;
  border-radius: 3px;
}

.dropdown-list::-webkit-scrollbar-thumb:hover {
  background: #B8B8B8;
}

.content__img{
  background-image: url(/skin/assets/img/contact_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 640px;
  width: 100%;
  margin-bottom: 408px;
}








/* Info */


.pinfo__title{
  font-weight: 900;
  font-size: 28px;
  line-height: 36px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pinfo__text{
font-weight: 500;
font-size: 14px;
line-height: 22px;
}


.no-scroll {
    overflow: hidden;
}





.reg-modal-success{
  max-width: 1200px;
  width: 100%;
  position: relative;
  border: 1px solid #151515;
  margin: 0px auto;

}

.modal-success__content{
  display: flex;
  flex-direction: column;
}

.modal-success__img {
   background-image: url(/skin/assets/img/reg_success_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  height: 445px;
  width: 100%;
  display: flex;
}

.modal-success__content{
  padding: 48px 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.modal-success__title{
font-weight: 900;
font-size: 34px;
line-height: 46px;
text-align: center;
text-transform: uppercase;
}

.modal-success__text{
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}




/* Здесь верхний зеленый баннер */

.top-notice{
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C9F76E;
  position: relative;
}


.top-notice:before{
  content: "";
  background-image: url(/skin/assets/img/promo/top_notice_bg1.png);
  background-repeat: no-repeat;
  width: 224px;
  height: 80px;
  position: absolute;
  top: 0px;
  left: 58px;
}

.top-notice:after{
  content: "";
  background-image: url(/skin/assets/img/promo/top_notice_bg2.png);
  background-repeat: no-repeat;
  width: 224px;
  height: 66px;
  position: absolute;
  bottom: 0px;
  right: 58px
}


.top-notice ul{
  display: flex;
  gap: 12px;
  z-index: 1;
}

.top-notice ul li{
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 4%;
  text-align: center;
  text-transform: uppercase;
}



.top-notice ul li::before {
  content: "✦";
  margin-right: 10px;
}


.top-notice ul li:last-child::after {
  content: "✦";
  margin-left: 10px;
}



.footer__center {
    display: flex;
    justify-content: space-between;
}


 .footer-contacts li{
      font-weight: 600;
      font-size: 18px;
      line-height: 26px;
      align-items: center;
      display: flex;
      gap: 16px;
    }
























































@media (max-width: 1600px) {



.online__info__title {
    font-weight: 900;
    font-size: clamp(36px, 2.5vw, 40px);
    line-height: 1.3;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #F5F5F5;
    margin: 0px 30px 0px 66px;
}



  .offer__items{
  bottom: -140px;
  left: 0px;
  width: 100%;
  gap: 8px;
  flex-wrap: wrap;
}

  .offer__item {
    max-width: 50%;
    flex: 0 0 calc(50% - 4px);
    height: 94px;
}






.offer__title {
    font-size: 54px;
    line-height: 64px;
}

.offer__title .circled:before{
  background-size: 371px;
  top: -11px;
  left: -15px;
}

.offer__title .underlined:before{
  background-size: 136px;
  bottom: -13px;
  left: -0px;
}

.mb-section.offer{
	margin-bottom: 300px;
}

.mb-section.benefits{

}

.registr__form__inner {
    max-width: 559px;
    width: 100%;
    padding: 48px 66px;
}

.form-group {
    margin-bottom: 12px;
}

.form-check {
    margin: 12px 0px 24px 0;
}





.form-group label {
  font-size: 12px;
  line-height: 18px;
}

/* INPUT */
.form-group input {
  font-size: 12px;
  line-height: 18px;
}


.form-check {
  font-size: 12px;
  line-height: 18px;
}




.form-check__text {
  font-size: 12px;
  line-height: 18px;
}

.register-form__title {
    font-size: 26px;
    line-height: 32px;
}


.top-notice:before{
  top: 0px;
  left: 0px;
}

.top-notice:after{
  bottom: 0px;
  right: 0px;
}



  
}





@media (max-width: 1280px) {


	.mb-section{
		margin-bottom: 200px;
	}
	.mb-66{
		margin-bottom: 46px;
	}

	.mb-25{
		margin-bottom: 18px;
	}

  .mb-48{
    margin-bottom: 24px;
  }



	.s-banner.mb-section {
		margin-bottom: 346px;
	}

	.mb-section.benefits{
		margin-bottom: 290px;
	}



	.banner__img1 {
		left: 80px;
		top: -75px;
		width: 191px;
	}

	.banner__img2 {
		right: 77px;
		top: -50px;
		width: 162px;
	}

	.banner__img3 {
		margin-left: -75px;
		bottom: -120px;
		width: 194px;
	}

	.banner__img4 {
		left: 80px;
		bottom: -114px;
		width: 204px;
	}

	.banner__img5 {
		right: 160px;
		top: 65px;
		width: 160px;
		z-index: -1;
	}

	.ticker__track span {
		font-size: 32px;
		line-height: 40px;
	}

	.benefits__title {
		max-width: 100%;
		font-size: 54px;
		line-height: 64px;
	}

	.cta__title{
		font-size: 54px;
		line-height: 64px;

	}

	.faq__title{
		font-size: 54px;
		line-height: 64px;
	}


	.benefits__title .circled:before{
		background-size: 334px;
		top: -10px;
		left: -18px;
	}

	.cta__title .underlined:before{
		background-size: 366px;
		bottom: -10px;
		left: -3px;
	}

	.form-inner {
		max-width: 100%;
		margin: 42px auto 0px auto;
	}

	.gallery__inner {
		height: 576px;
	}

	.online__info__title{
		font-size: 36px;
		line-height: 46px;
		margin: 0px 30px 0px 66px;
	}

	.online__info__text {
		margin: 0px 30px 0px 66px;
	}

  .register-form__submit {
  text-transform: uppercase;
  font-size: 12px;
  }



  .registr__form__inner {
    padding: 24px 60px;
}

.register-form__submit {
    height: 46px;
}


 .form-group label {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 2px;
}

.regist__inner {
    margin: 100px 0px;
}


.mtb-120{
  margin: 100px 0px;
}





.regist-modal__inner .promo-title {
  font-size: 26px;
  line-height: 32px;
}

.regist-modal__inner .faq__btn {
    max-width: 214px;
    height: 46px;
    font-size: 12px;
    line-height: 18px;
}

#regModalSuccess {
    max-width: 800px;
}

.regist-modal-success {
    min-height: 594px;
}

.regist-modal__img {
    height: 396px;
     background-image:
    url(/skin/assets/img/reg/reg_success_img1280.jpg);
}



.login__form__inner {
    max-width: 560px;
    padding: 48px 48px;
}

.login-form__submit {
    max-width: 193px;
    height: 46px;
    margin-bottom: 24px;
    font-size: 12px;
}

.forgot-password {
    font-size: 12px;
    line-height: 18px;
}

.forgot-password a {
    font-size: 12px;
    line-height: 18px;
}

.message-line {
    height: 34px;
    font-size: 12px;
    line-height: 18px;
}

.login {
    margin: 100px 0px;
}

.login-form__login {
    font-size: 12px;
    line-height: 18px;
}











    .info-modal{
      max-width: 800px;
    }

      .info-modal__img{
      height: 278px;
    }

    .info-modal .h2{
      max-width: 668px;
      font-size: 26px;
    }

    .info-modal p{
      max-width: 668px;
      font-size: 14px;
    }

    .info-modal__content{
      padding: 48px 66px;
      gap: 16px;
    }



.contact__info {
    padding-left: 90px;
    max-width: 401px;
}

.contact__form__inner {
    padding: 48px 40px;
}

.contact__content_title {
    font-size: 18px;
    line-height: 24px;
}

.contact__info__content li {
    font-size: 12px;
    line-height: 18px;
}

.contact-form .form-group input {
  height: 50px;
  font-size: 12px;
  line-height: 18px;
}

.contact-form__title {
    font-size: 22px;
    line-height: 28px;
}


.btn__submit {
    height: 46px;
    font-size: 12px;
}

.dropdown-list li {
    padding: 18px 20px;
    font-size: 12px;
}

.form-group textarea {
    font-size: 12px;
}

.breadcrumbs a {
    font-size: 10px;
    line-height: 14px;
}

.breadcrumbs span {
    font-size: 10px;
    line-height: 14px;
}

.page-title {
    font-size: 26px;
    line-height: 32px;
}

.content__img {
    height: 551px;
    margin-bottom: 396px;
}

.content__wrapper {
    min-height: 551px;
}

.contact__inner {
    top: 270px;
}



.pinfo__title{
  font-size: 22px;
  line-height: 28px;
}

.pinfo__text{
font-size: 12px;
line-height: 18px;
}

.footer__top__subtitle{
  font-size: 20px;
  line-height: 28px;
}


.dark-form__submit {
    max-width: 292px;
    height: 60px;
    font-size: 12px;
    line-height: 18px;
  }



  .footer__nav__list ul li a{
   font-size: 12px;
  line-height: 18px;
}


.nav__text{
    font-size: 12px;
  line-height: 18px;
}


.dark-form {
    max-width: 400px;
    padding: 16px;
}

.footer__links span {
    font-size: 12px;
    line-height: 18px;
}

.footer__top__title {
    font-size: 32px;
    line-height: 38px;
}


.dark-form input {
  font-size: 12px;
  line-height: 18px;
  height: 64px;
}

.dark-form input::placeholder {
  font-size: 12px;
}





.reg-modal-success{
  max-width: 800px;
}


.modal-success__img {
  height: 328px;
}

.modal-success__content{

}

.modal-success__title{
font-size: 26px;
line-height: 32px;
}





.top-notice ul li{
  font-size: 16px;
  line-height: 26px;
}

.top-notice:before{
  width: 121px;
  height: 45px;
  background-size: contain;
}

.top-notice:after{
   width: 121px;
  height: 35px;
  background-size: contain;
}


.hero {
 height: 44px;
     min-height: 44px;
	}


.hero__inner{
  height: 44px;
}


.burger-mobile {
    display: none;
}





















}









@media (max-width: 1024px) {

	.mb-25{
		margin-bottom: 16px;
	}



	.mb-section.benefits{
		margin-bottom: 250px;
	}


	.rf-grid-row:first-child .rf-cell {
		flex: 0 0 20%;
	}


	.rf-grid-row:first-child .rf-cell:nth-child(3) {
		flex: 0 0 calc(20% - 10px);
	}


	.rf-grid-row:first-child .rf-cell:nth-child(4) {
		flex: 0 0 calc(20% - 30px);
	}


	.rf-grid-row:first-child .rf-cell:nth-child(5) {
		flex: 0 0 calc(20% + 40px);
	}


	.rf-cell--submit {
		flex: 0 0 calc(40% + 10px);
	}


	.banner__img4 {
		left: 49px;
		bottom: -114px;
		width: 175px;
	}

	.banner__img5 {
		right: 64px;
		top: 75px;
	}

	.gallery__inner {
		height: 546px;
	}

	.ticker {
		height: 68px;
	}

	.mb-section{
		margin-bottom: 160px;
	}

	.online__info__title{
		margin: 0px 30px 0px 46px;
	}
	.online__info__text {
		margin: 0px 30px 0px 46px;
	}



	.cta__block {
		display: flex;
		flex-direction: column;
		aspect-ratio: auto;
	}

	.cta__img {
		flex: none;
		height: 584px;
		width: 100%;
		order: 1;
	}

	.cta__items {
		flex: none;
		width: 100%;
		order: 2;
	}

	.cta__item {
		flex: none;
		height: 124px;
		padding: 0 48px;
	}

	.faq__btn {
		max-width: 334px;
	}

	.faq__item__title {
		width: 450px;
	}


	.bbanner__bg {
		background-size: cover;
		height: 347px;
	}

	.bbanner__bg__img {
		max-width: 688px;
	}

	.footer__top__nav {
		gap: 24px;
	}

	.footer__nav__list {
		gap: 12px;
	}


	.dark-form {
		max-width: 300px;
		padding: 18px;
	}

	.dark-form__submit {
		max-width: 292px;
		height: 60px;

	}



  .form-group label {
    margin-bottom: 0px;
}

.form-group input {
    height: 42px;
    padding-left: 16px;
    font-size: 12px;
}

.form-check__box {
    width: 28px;
    height: 28px;
}

    .registr__form__inner {
        max-width: 448px;
    }

    .regist__inner {
    margin: 80px 0px;
}


.mtb-120{
  margin: 80px 0px;
}









.regist-modal__inner .promo-title {
  margin-bottom: 16px;
}

#regModalSuccess {
    max-width: 768px;
}

.regist-modal-success {
    min-height: 524px;
}

.regist-modal__img {
    height:382px;
     background-image:
    url(/skin/assets/img/reg/reg_success_img1024.jpg);
}

.login {
    margin: 80px 0px;
}

.login__form__inner {
    max-width: 448px;
}







    .contact__info {
        padding-left: 58px;
        max-width: 336px;
    }

     .contact__form__inner {
        padding: 48px 24px;
    }

    .content__img {
    height: 551px;
    margin-bottom: 376px;
}

.content__wrapper {
    min-height: 551px;
}

.contact__inner {
    top: 270px;
}

.footer__top__title {
    font-size: 24px;
    line-height: 32px;
}

    .dark-form input {
        height: 50px;
    }





.reg-modal-success{
  max-width: 768px;
}


.modal-success__img {
  height: 382px;
}

.modal-success__content {
    padding: 24px 0px;
    gap: 16px;
}








.top-notice ul li{
  font-size: 14px;
}











    .info-modal{
      max-width: 768px;
    }

      .info-modal__img{
      height: 268px;
    }

    .info-modal .h2{
      max-width: 636px;
    }

    .info-modal p{
      max-width: 636px;
    }

    .info-modal__content{
      padding: 48px 66px;
    }










}


@media (max-width: 992px) {



  .top-notice ul li{
  font-size: 12px;
  line-height: 16px;
}


}




@media (max-width: 768px) {



.hero {
 height: 44px;
     min-height: 44px;
	}


.hero__inner{
  height: 44px;
}

  .hero__logo img {
    width: 86px;
  }


	.mb-section{
		margin-bottom: 120px;
	}
	.mb-66{
		margin-bottom: 42px;
	}

	.mb-25{
		margin-bottom: 12px;
	}

  .mb-24{
    margin-bottom: 16px;
  }


	.s-banner.mb-section {
		margin-bottom: 381px;
	}

	.mb-section.benefits{
		margin-bottom: 290px;
	}

	.banner__img3 {
		margin-left: -75px;
		bottom: -120px;
		width: 176px;
	}

	.form-inner {
		margin: 68px auto 0px auto;
	}


	.rf-grid-row {
		display: flex;
		flex-wrap: wrap;
	}

	.rf-cell {
		flex: 0 0 100%;
		max-width: 100%;
	}


	.rf-grid-row:first-child .rf-cell:nth-child(-n+4) {
		flex: 0 0 50%;
		max-width: 50%;
	}


	.rf-grid-row:first-child .rf-cell:nth-child(5) {
		flex: 0 0 100%;
		max-width: 100%;
	}


	.rf-grid-row--second .rf-cell {
		flex: 0 0 100%;
		max-width: 100%;
	}


	.rf-cell--wide,
	.rf-cell--submit {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.rf-cell input, .rf-cell select {
		padding: 15px 30px 15px 22px;
	}

	.rf-submit {
		width: 100%;
		height: 80px;
	}

	.banner__img4 {
		left: 0px;
		bottom: -243px;
	}

	.banner__img5 {
		right: 0px;
		bottom: -261px;
		top: inherit;
	}

	.hero__nav__link svg {
		width: 20px;
		height: 20px;
	}

	.hero__nav__item span{
		display: none;
	}

.regist-form__row{
  gap: 0;
}
  /*

	.search-bar {
		display: none;
	}

	.hero__logo {
		position: relative;
		left: inherit;
		top: inherit;
		transform: inherit;
		gap: 0px;
	}

  */


	.gallery__inner {
		flex-direction: column;
		height: 656px;
	}

	.gallery__item {
		flex: 1 1 0;  
		min-height: 0;        
	}

	.gallery__item.active {
		flex: 8 1 0;         
	}


	.online__info__title {
		margin: 0px;
	}

	.online__info__text {
		font-size: 14px;
		line-height: 24px;
		max-width: 100%;
		margin: 0px;
	}

	.online__inner {
		flex-direction: column;
		padding: 0px 70px;
		background-color: #151515;
	}

	.online__img {
		order: 2;
	}
	.online__info {
		order: 1;
		padding: 130px 0px;
	}

	.online__img, .online__info {
		flex: inherit;
		aspect-ratio: inherit;
		box-sizing: border-box;
	}

	.online__img {
		position: relative;
	}
	    .online__img {
        aspect-ratio: 1 / 1;
        width: 100%;
    }

	.online-arrow {
		display: flex !important;    
		justify-content: center;
		align-items: center;
		width: 54px;
		height: 54px;
		background-color: #C9F76E;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.online-arrow-left{
		left: -70px;
	}

	.online-arrow-right{
		right: -70px;
	}

	.offer__text {
		bottom: -96px;
	}

	.offer__title.mb-66{
		margin-bottom: 138px;
	}

	.offer__video {
		height: 422px;
		position: relative; 
	}

	.offer__video img {
		width: 100%;
		height: 100%;    
		object-fit: cover;   
		display: block;             
	}

	.offer__item {
		padding: 0px 20px;
	}

	.benefits__sticker {
		font-size: 32px;
		line-height: 40px;
	}

	.promo-text {
		font-size: 14px;
	}

	.cta__item {
		height: 120px;
		padding: 0 22px;
	}

	.faq__item {
		flex-direction: column;
		gap: 0px;
		padding: 22px 112px 22px 22px;
	}


	.bbanner__bg__img {
		max-width: 540px;
	}

	.bbanner__bg {
		height: 273px;
	}

	.footer__top {
    flex-direction: column;
}

.footer__top__nav {
    gap: 52px;
}

    .footer__nav__list {
        gap: 27px;
    }

        .dark-form {
        max-width: 522px;
        margin: 0px auto;
    }

    .dark-form__submit {
        max-width: 239px;
        height: 54px;
        margin: 32px auto 0px auto;
    }




   .footer__center {
  align-items: center;  
  position: relative;  
}

.hero__nav__item.hero__nav__item--lang {
  margin-right: auto;   
  position: absolute;   
}

.social {
  margin-left: auto;  
  margin-right: auto;        
}

.footer__links a {
    font-size: 14px;
}

.footer__bottom p {
    font-size: 12px;
}






.mtb-120{
  margin: 70px 0px;
}



.regist__inner {
    flex-direction: column;
    margin: 70px 0px;
}

.regist__img {
    height: 293px;
    order: 2;
    border-right: none;
}

.registr__form__inner {
     max-width: 100%;
     order: 1;
}

.register-form__title {
        font-size: 22px;
        line-height: 26px;
    }


    .regist-modal__inner .promo-title {
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 18px;
}

#regModalSuccess {
    max-width: 704px;
}

.regist-modal-success {
    min-height: 570px;
}

.regist-modal__img {
    height: 424px;
     background-image:
    url(/skin/assets/img/reg/reg_success_img768.jpg);
}




.login {
    margin: 70px 0px;
}

.login__inner{
  flex-direction: column;
}



.login__img {
  height: 293px;
  order: 2;
  border-right: none;
}

.login__form__inner {
  max-width: 100%;
  order: 1;
}


.login__form__inner {
  max-width: 100%;
  padding: 48px 64px;
}








    .info-modal{
      max-width: 704px;
    }

      .info-modal__img{
      height: 324px;
    }

    .info-modal .h2{
      max-width: 570px;
      font-size: 22px;
      line-height: 26px;
    }

    .info-modal p{
      max-width: 570px;
      font-size: 12px;
      line-height: 18px;
    }

    .info-modal__content{
      padding: 24px 66px;
    }


   



.contact__inner {
  flex-direction: column;
}

.contact__info {
  padding: 48px 24px;
  max-width: 100%;
  border-right: none;
  border-bottom: 1px solid #151515
}

.contact__info__content{
  width: 100%;
}

.contact__info__content ul{
  display: flex;
  justify-content: space-between;
}

.contact__content_title{
  text-align: center;
  font-size: 20px;
  line-height: 24px;
}

.contact__info__content li {
    font-size: 14px;
    margin-bottom: 0px;
}

.contact__form__inner {
        padding: 48px 32px;
    }

    .contact-form__title {
        font-size: 20px;
        line-height: 24px;
    }

     .form-group label {
    font-size: 14px;
    line-height: 22px;
}

.contact-form .form-group input {
  height: 54px;
  font-size: 14px;
  line-height: 22px;
}

.form-group textarea {
        font-size: 14px;
    }

.dropdown-list li {
    padding: 20px 22px;
    font-size: 14px;
    color: #151515;
}

.page-title {
    font-size: 22px;
    line-height: 26px;
}


.breadcrumbs {
    
}


    .content__img {
       background-image: url(/skin/assets/img/contact_bg768.jpg);
    height: 402px;
    margin-bottom: 655px;
}

.content__wrapper {
    min-height: 402px;
}

.contact__inner {
    top: 230px;
}


.pinfo__title{
  font-size: 20px;
  line-height: 24px;
}

.footer__top__nav {
        gap: 24px;
        margin-bottom: 48px;
    }




.reg-modal-success{
  max-width: 704px;
}


.modal-success__img {
  height: 424px;
}

.modal-success__title{
  font-size: 22px;
  line-height: 26px;
}






.reg-modal-success{
  max-width: 704px;
}


.modal-success__img {
  height: 424px;
}

.modal-success__text{
  max-width: 350px;
}

.modal-success__title{
  font-size: 22px;
  line-height: 26px;
}

.modal-success__content {
    padding: 24px 0px;
    gap: 16px;
}










 .top-notice ul li{
  font-size: 10px;
  line-height: 10px;
}

.footer__center {
        align-items: center;
        position: relative;
        flex-direction: column;
        gap: 24px;
    }



    .hero__logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .hero__logo {
        order: 2;
    }

        .hero__logo img {
        width: 47px;
    }

    .hero__logo {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    order: 1;
}














}



@media (max-width: 576px) {


  .fs-14{
    font-size: 12px;
  }


  .btn-214{
    max-width: 214px !important;
  }


.hero {
 height: 54px;
     min-height: 54px;
	}


.hero__inner{
  height: 54px;
}

  .hero__logo img {
    width: 54px;
  }

	.mb-section{
		margin-bottom: 86px;
	}
	.mb-66{
		margin-bottom: 30px;
	}

	.mb-25{
		margin-bottom: 12px;
	}

  .mb-8{
  margin-bottom: 4px;
  }

  .mt-24{
    margin-top: 16px;
  }


	.s-banner.mb-section {
		margin-bottom: 275px;
	}

	.mb-section.benefits{
		margin-bottom: 256px;
	}


	.banner__bg {
    margin-top: 0px;
    position: static;
}

.banner__inner{
	position: relative;
}

	    .banner__img1 {
        left: 16px;
        top: 6px;
        width: 96px;
    }

        .banner__img2 {
        right: 16px;
        top: 75px;
        width: 104px;
    }

    .banner__bg__img {
    padding: 153px 16px 0px 16px;
}

    .banner__img3 {
        margin-left: -35px;
        top: 235px;
        width: 90px;
    }

        .form-inner {
        margin: 60px auto 0px auto;
    }


    .banner__snow {
    margin-top: 0px;
        margin-right: 0px;
        position: absolute;
        right: 100px;
        top: 58px;
}

 .banner__snow img{
 	width: 37px;
}

.rf-grid-row:first-child .rf-cell:nth-child(-n+4) {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .banner__img4 {
        bottom: -110px;
        width: 94px

    }

        .banner__img5 {
        bottom: -175px;
        width: 119px
    }

    .gallery__inner {
        height: 372px;
    }

    .gallery__item__text {
    padding: 12px 18px;
    max-width: 256px;
    font-size: 14px;
    bottom: 14px
    }

    .circled:before {
    top: -5px;
    left: -25px;
    background-size: 96px;
}

    .ticker__track span {
        font-size: 16px;
        line-height: 24px;
    }

    .ticker{
    	height: 60px;
    }

    .online__info__title {
        font-size: 30px;
        line-height: 40px;
    }

    .online__info {
    gap: 12px;
    }

    .online__info {
        order: 1;
        padding: 28px 0px 72px 0px;
    }

    .online__inner {
        padding: 0px 26px;
    }

    .online__img {
     aspect-ratio: 1 / 1;
       width: 100%;
    }

    .online-arrow {
        width: 40px;
        height: 40px;
        top: 70%;
    }

    .online-arrow-left {
        left: -20px;
    }

        .online-arrow-right {
        right: -20px;
    }

        .offer__title.mb-66 {
        	font-size: 32px;
        	line-height: 42px;
    }

    .offer__title .circled:before {
        background-size: 212px;
        background-size: 212px;
        top: -7px;
        left: -15px;
        z-index: 1;
    }

    .offer__title .underlined:before {
        background-size: 92px;
        bottom: -18px;
        left: -5px;
    }

    .offer__text {
        bottom: -66px;
        font-size: 12px;
        line-height: 16px;
    }

    .offer__title.mb-66 {
        margin-bottom: 100px;
    }

        .offer__item {
        max-width: 100%;
        flex: 0 0 100%;
        height: 56px;
        font-size: 16px;
    }

    .offer__items {
        bottom: -248px;
    }

    .mb-section.offer {
        margin-bottom: 330px;
    }

    .benefits__title {
        font-size: 32px;
        line-height: 42px;
    }

    .benefits__title .circled:before {
        background-size: 206px;
    }

        .benefits__sticker {
        font-size: 16px;
        line-height: 24px;
        height: 42px
    }

    .benefits__stickers {
    max-width: 286px;
   }

       .mb-section.benefits {
        margin-bottom: 142px;
    }

        .cta__title {
        font-size: 32px;
        line-height: 42px;
    }

        .cta__title .underlined:before {
        background-size: 218px;
        bottom: -20px;
        left: -3px;
    }

    .cta__img {
        height: 216px;
    }

    .promo-title {
    font-size: 24px;
    line-height: 20px;
    margin-bottom: 2px;
}

    .cta__item {
        height: 100px;
        padding: 0 16px;
    }


    .cta__item:hover {
    background-color: #C9F76E;
}

.faq__item {
    border-top: 1px solid #151515;
    border-bottom: 1px solid #151515;
}



.mtb-120{
  margin: 48px 0px;
}

.regist__inner {
    flex-direction: column;
    margin: 48px 0px;
}


.registr__form__inner {
  padding: 16px;

}

.register-form__title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    .form-group {
        margin-bottom: 8px;
    }

    .register-form__submit {
    max-width: 100%;
}




.regist-modal__inner .promo-title {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 16px;
}

#regModalSuccess {
    max-width: 429px;
}

.regist-modal-success {
    min-height: 453px;
}

.regist-modal__img {
    height: 335px;
     background-image:
    url(/skin/assets/img/reg/reg_success_img576.jpg);
}

 .info-modal{
      max-width: 328px;
    }

      .info-modal__img{
      height: 335px;
    }

    .info-modal .h2{
      max-width: 100%;
      font-size: 20px;
      line-height: 24px;
      text-align: center;
    }

    .info-modal p{
      max-width: 100%;
    }

    .info-modal__content{
      padding: 16px;
    }



.login {
    margin: 48px 0px;
}


.login-form__submit {
        max-width: 100%;
        margin: 16px 0px;
    }

 .login__form__inner {
        max-width: 100%;
        padding: 16px 16px;
  }

  .login .promo-text {
    font-size: 12px;
    line-height: 18px;
}

.message-line {
    height: 24px;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 16px;
}

.login-form__login {
    margin-top: 16px;
}

.login__img {
        height: 199px;
    }

    .page-title {
    font-size: 20px;
    line-height: 24px;
}

.page-header .breadcrumbs {
    height: 48px;
}





.contact__info {
  padding: 24px 16px;
  max-width: 100%;
}


.contact__info__content ul{
  display: flex;
  flex-direction: column;
 /* padding-left: 16px; */
}

.contact__content_title{
  text-align: center;
  font-size: 18px;
  line-height: 22px;
}

.contact__info__content li {
    font-size: 12px;
    margin-bottom: 16px;
}

.contact__form__inner {
        padding: 24px 16px;
    }

    .contact-form__title {
        font-size: 18px;
        line-height: 22px;
    }

     .form-group label {
    font-size: 12px;
    line-height: 18px;
}

.contact-form .form-group input {
  height: 50px;
  font-size: 12px;
  line-height: 18px;
}

.form-group textarea {
        font-size: 12px;
    }

.dropdown-list li {
    padding: 18px 20px;
    font-size: 12px;
}

.form-row {
    flex-direction: column;
    gap: 0px;
}

 .content__img {
       background-image: url(/skin/assets/img/contact_bg768.jpg);
    height: 260px;
    margin-bottom: 831px;
}

.content__wrapper {
    min-height: 260px;
}

.contact__inner {
    top: 160px;
}


.pinfo__title{
  font-size: 18px;
  line-height: 22px;
}


.footer__top__subtitle{
  font-size: 16px;
  line-height: 24px;
}





.reg-modal-success{
  max-width: 328px;
}


.modal-success__img {
  height: 335px;
}

.modal-success__text{
  max-width: 250px;
}

.modal-success__title{
  font-size: 20px;
  line-height: 24px;
}

.modal-success__content {
    padding: 16px 0px;
    gap: 16px;
}









.top-notice{
  min-height: 82px;
  height: auto;
}

 .top-notice ul{
  flex-direction: column;
  gap: 8px;
}



 .top-notice:before {
        width: 107px;
        left: -35px;
        top: -5px;
    }

        .top-notice:after {
        width: 107px;
        height: 32px;
        right: -40px;
        background-size: contain;
    }




    























}







@media (max-width: 400px) {

  .regist__img {
    height: 180px;
}


#regModalSuccess {
    max-width: 335px;
}


}





#contactSuccess {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #E5E5E5;
    padding: 0 48px;
    max-width: 1680px;
    width: 100%;
    display: none;
    z-index: 1000;
    border: 1px solid #151515;
}


 #contactSuccess #faqClose {
  position: absolute;
  top: 36px; right: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.hero {
  min-height: 60px;
}

.hero__inner {
  height: 60px;
  gap: 48px;
}

.search-bar {
  align-items: flex-end;
  height: 42px;
  order: 2;
  width: 100%;
  opacity: 1;
}

.search-bar__container {
  align-items: center;
  gap: 8px;
}

.search-bar__container.hidden-sm {
  width: 100%;
}

.search-bar__container.hidden-sm,
.search-bar__btn.search-btn-mob {
  display: none !important;
}

.search-bar__input-wrapper {
  width: 100%;
}

.hero__nav__item.hidden-sm {
  display: flex !important;
}

.hero__nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 18px;
}

.hero__nav__link--phone img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero__nav__link svg {
  width: 18px;
  height: 18px;
}

.search-field {
  display: none;
  padding: 8px 0;
  background: #151515;
}

.search-bar__submit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.search-bar__submit svg {
  fill: #F5F5F5;
}

.search-bar__btn--close {
  display: none;
}

.search-bar__container.active .search-bar__btn--search {
  display: none;
}

.search-bar__container.active .search-bar__btn--close {
  display: inline-flex;
}

.search-bar__container.active .search-bar__submit {
  display: block;
  padding-bottom: 7px;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 44px;
  }

  .hero__inner {
    height: 44px;
  }

  .search-bar {
    height: 28px;
  }
}

@media (max-width: 768px) {
  .hero__nav__item.hidden-sm {
    display: none !important;
  }

  .search-bar__container.hidden-sm {
    display: none !important;
  }

  .search-bar--mob.visible-sm {
    display: flex !important;
    gap: 16px;
    align-items: center;
  }

  .search-bar {
    align-items: center;
  }

  .hero__logo img {
    width: 47px !important;
  }

  .hero__nav__link svg {
    width: 20px;
    height: 20px;
  }


  .hero__nav__list .hero__nav__item.hero__nav__item--phone-desktop.hidden-sm{
    display: none !important;
  }


}

@media (max-width: 576px) {
  .search-bar {
    order: 1;
    width: inherit;
  }

  .hero__logo {
    order: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hero__nav {
    order: 3;
  }

  .hero {
    height: 54px;
    min-height: 54px;
  }

  .hero__inner {
    height: 54px;
  }

  .hero__logo img {
    width: 47px;
  }

  .hero__nav__link--phone img {
    width: 17px;
    height: 17px;
  }




  




}


