@font-face {
  font-family: 'Unbounded';
  src: url(/assets/fonts/Unbounded-Bold/Unbounded-Bold.ttf) format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url(/assets/fonts/Montserrat/Montserrat-Regular.ttf) format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
    --white: rgb(255, 255, 255);
    --black:rgb(0, 0, 0);
    --org: rgba(232, 176, 138, 1);
    --Montserrat: 'Montserrat';
    --media: '(max-width: 992px)';
    --Unbounded: 'Unbounded';
    --cookie-consent-height: 0px;
}
/* Общий стиль скроллбара */
::-webkit-scrollbar {
  width: 10px; /* Ширина вертикального скролла */
  height: 10px; /* Высота горизонтального скролла */
}

/* Стиль ползунка */
::-webkit-scrollbar-thumb {
  background: #555; /* Цвет ползунка */
  border-radius: 5px; /* Скругление */
}

/* Стиль фона скроллбара */
::-webkit-scrollbar-track {
  background: var(--bg-footer); /* Цвет дорожки */
}

/* При наведении */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

html, body {
    margin: 0;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-family: var(--Montserrat), sans-serif;
    
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Высота хедера */
}
main{
  flex: 1 0 auto;
}
a:hover{
  cursor: pointer;
}
button {
    all: unset;
    cursor: pointer;
    display: inline-block; /* Нужно для корректного отображения */
}

input {
    all: unset;  /* Сбрасывает все стили, включая шрифты, отступы и границы */
    -webkit-appearance: none; /* Убирает стили, специфичные для WebKit браузеров */
    -moz-appearance: none; /* Убирает стили для Firefox */
    appearance: none; /* Стандартный синтаксис */
    border: none; /* Убирает границу */
    outline: none; /* Убирает фокус */
    padding: 0; /* Убирает внутренние отступы */
    background: transparent; /* Убирает фон */
    color: inherit; /* Наследует цвет от родительского элемента */
    font: inherit; /* Наследует шрифт */
    box-sizing: border-box; /* Устанавливает box-model для элемента */
}
a{
    text-decoration: none;
    outline: none;
    list-style: none;
    color: var(--black);
    transition: all .2s ease-in-out;
    width: max-content;
}
ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
}

/*          Бургер           */
body,
html {
  padding: 0;
  margin: 0;
}

body.no-scrol{
  overflow: hidden;
}

footer {
  background: rgba(45, 45, 45, 1);
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;   /* сбросим до размера шрифта родителя */
  font-weight: normal;  /* уберём жирность по умолчанию */
  line-height: 1.2;     /* зададим аккуратную высоту строки */
}
b{
  font-family: var(--Montserrat-ExtraBold);
}

.sidebar-desktop{
  display: block;
  position: relative;
}

.site-header-inner {
  min-height: 64px;
}

.menu-toggle {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 65;
}

.button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button:hover {
  opacity: 0.8;
}

.bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--white);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.button.active .bar:nth-child(2) {
  opacity: 0;
}

.button.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1045;
}

.sidebar-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100vh;
  padding: 108px 24px 32px;
  background: rgba(22, 22, 22, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: -12px 0 28px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1050;
  overflow-y: auto;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease;
  z-index: 2;
}

.sidebar-close:hover {
  opacity: 0.8;
}

.sidebar-close-line {
  position: absolute;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.sidebar-close-line:first-child {
  transform: rotate(45deg);
}

.sidebar-close-line:last-child {
  transform: rotate(-45deg);
}

.sidebar-menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-menu-link {
  position: relative;
  color: var(--white);
  font-family: var(--Unbounded), sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.sidebar-menu-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--org);
  transition: width 0.3s ease;
}

.sidebar-menu-link:hover {
  color: #fff;
}

.sidebar-menu-link:hover::after {
  width: 100%;
}

.sidebar-phone-block {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-phone-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--Montserrat), sans-serif;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-phone-link {
  display: inline-flex;
  width: max-content;
  color: #fff;
  font-family: var(--Montserrat), sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  transition: color 0.25s ease;
}

.sidebar-phone-link:hover {
  color: var(--org);
}

.sidebar-list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  gap: 100px;
}

@media (min-width: 992px) {
  .sidebar-list {
    width: 100%;
    gap: 56px;
    justify-content: flex-start !important;
  }

  .header-logo-item {
    z-index: 2;
  }

  .header-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-right-cluster {
    gap: 18px;
    align-items: center;
  }

  .header-right-cluster > .sidebar-anchor {
    font-size: 18px;
  }

  .header-right-cluster > .sidebar-anchor::after {
    display: none;
  }
}

.sidebar-item {
  opacity: 1;
}

.sidebar-anchor {
  position: relative;
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 400;
  font-size: 18px;
}

.sidebar-anchor:hover {
  color: var(--white);
}

.sidebar-anchor::after {
    content: '';
    position: absolute;
    left: 0; 
    bottom: -5px;
    height: 2px;
    background-color: #fff;
    width: 0;
    transition: width 0.3s ease;
}

.sidebar-anchor:hover::after {
    width: 100%; 
}

@media (min-width: 992px) {
  .menu-toggle,
  .sidebar,
  .sidebar-backdrop {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .site-header-inner {
    padding-right: 72px !important;
    padding-left: 72px !important;
  }

  .sidebar-list {
    gap: 0;
    width: 100%;
    justify-content: center !important;
  }

  .sidebar-item svg {
    width: 160px;
    height: auto;
  }
}

header{
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  margin: 0 auto;
 
}
header {  
  z-index: 50;
  color: var(--white);
}
.header-pink{
  background: rgba(255, 178, 217, 1);
}

.header-phone{
  display: inline-flex;
  align-items: center;
  font-family: Forum;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
}

.ferst{
  color: rgba(255, 255, 255, 1);
  position: relative;
  height: 100vh;
  min-height: 700px;
    background: url('../images/background-f.png') no-repeat center/cover;
}
.ferst-title{
  font-family: Unbounded;
  font-weight: 700;
  font-style: Bold;
  font-size: 60px;
  line-height: 100%;


  @media screen and (max-width: 992px) {
    font-size: 30px;
    line-height: 36px;
  }
}
.ferst-text{
  color: rgba(255, 255, 255, 0.7);
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 25px;
  line-height: 37.5px;
  letter-spacing: 0%;
  vertical-align: middle;

}

.w-button{
  position: relative;
  /* width: 190px; */
  background: white;
  color: rgba(45, 45, 45, 1);
  border: 1px solid #fff;
  border-radius: 180px;
  font-size: 16px;
  text-align: center;
  padding: 20px 40px;
  transition: all 0.5s ease;
  @media screen and (max-width: 992px) {
    padding: 20px 50px 20px 50px;
    /* width: 180px; */
    /* font-size: 14px; */
    /* padding: 10px 0; */
  }
}

.w-button:hover{
  transition: all 0.5s ease;
  color: white;
  background-color: rgba(0, 0, 0, 1);

}

.b-button{
  color: rgba(43, 43, 43, 1);
  border: 1px solid rgba(0, 0, 0, 1);
  padding: 10px 35px;
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;

}

h3{
  color: rgba(43, 43, 43, 1);
  font-family: var(--Unbounded);
  font-weight: 500;
  font-style: Medium;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  @media screen and (max-width: 992px) {
    font-size: 30px;
    text-align: center;
  }
}
.advantages-section {
  background-color: #fff;
}
.advantage-card {
  background-color: rgba(45, 45, 45, 1);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}
.advantage-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-icon svg {
  width: 40px;
  height: 40px;
}
.advantage-title {
  color: #fff;
  font-family: var(--Unbounded);
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.services-card {
  border-radius: 12px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

  display: flex;
  flex-direction: column;
  height: 100%;
}
.services-card-text-block{
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1; 
}
.services-card-img{
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  flex-shrink: 0;
}
.services-card-img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  object-fit: cover;
  display: block;
}
.services-card-title{
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 28px;
  color: rgba(0, 0, 0, 1);
}
.services-section{
  background: linear-gradient(180deg, #FFFFFF 0%, #D9D9D9 100%);
}


.block-slide-reviews{
  background-color: rgba(45, 45, 45, 1);
  margin-top: 5px;
  color: var(--white);
  border: 1px solid rgba(45, 45, 45, 1);
  border-radius:  12px;
  padding: 20px;
}
.title-slide-reviews{
  font-family: var(--Unbounded);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);

}
.title-slide-text{
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: white;


}

.clamp-text  {
  display: -webkit-box;
  -webkit-line-clamp: 6; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  transition: all .3s ease-in-out;

}


.clamp-text.expanded  {
  -webkit-line-clamp: unset;
  overflow: visible;
  transition: all .3s ease-in-out;

}

.line-slide-title{
  background-color: rgba(224, 224, 224, 1);
  width: 100%;
  height: 1px;
}
.read-more-text{
  font-weight: 400;
  font-style: Regular;
  font-size: 10px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  }
.splide_6 .splide__pagination{
  bottom: -30px;
}
.splide__pagination__page{
  width: 14px;
  height: 3px;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.splide__pagination__page.is-active{
  background-color: rgba(45, 45, 45, 1);
}

#contact-sec {
  background: url('../images/bg-form.png') no-repeat center / cover;
}

.form-contact-us{
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid white;
  border-radius: 20px;
  padding: 40px;
  color: white;
}
.form-contact-us-title{
  font-family: var(--Montserrat);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;

  @media screen and (max-width: 992px) {
    font-size: 18.34px;
  }
}
.form-contact-us-text{
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  line-height: 16.8px;
  letter-spacing: 0%;
  vertical-align: middle;
  @media screen and (max-width: 992px) {
    font-size: 13.34px;
  }

}


/* Поля в виде линий */
.input-line {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(192, 196, 201, 1);
  padding: 10px 0;
  margin-bottom: 20px; /* Большой отступ как на макете */
  font-size: 16px;
  outline: none;
}

/* Стилизация плейсхолдера (текста внутри) */
.input-line::placeholder {
  color: rgba(206, 206, 206, 1);
  font-weight: 500;
  @media screen and (max-width: 992px) {
    text-align: center;
  }
  
}

/* Поле сообщения с рамкой */
.input-box {
  display: block;
  width: 100%;
  height: 150px;
  border: 1px solid #999;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 14px;
  box-sizing: border-box;
  resize: none;
  outline: none;
}

.input-box::placeholder {
  color: #000;
  font-weight: 500;
  text-align: start;
  @media screen and (max-width: 992px) {
    text-align: center;
  }
}

/* Чекбокс */
.agreement {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #333;
  margin-bottom: 40px;
  cursor: pointer;
}

/* Кнопка с рамкой и линией внутри */
.submit-button {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 25px;
  border: 1px solid #999;
  background: none;
  cursor: pointer;
  font-size: 16px;
  text-transform: lowercase;
}


.submit-button:hover {
  background-color: #f5f5f5;
}
.agreement-text{
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 16px;
  letter-spacing: 0%;
  vertical-align: middle;

}
.form-button-black{
  width: 100%;
  background-color: rgba(45, 45, 45, 1);
  color: rgba(255, 255, 255, 1);
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 19.55px;
  letter-spacing: 0%;
  padding: 15px 0;
  text-align: center;
  border-radius: 15px;
  transition: 0.3s ease;
}
.form-button-black:hover{
  background-color: rgba(255, 255, 255, 1);
  color: rgba(45, 45, 45, 1);
}
.title-form-sec{
  font-family: var(--Unbounded);
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 130%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
  @media screen and (max-width: 992px) {
    font-size: 18.34px;
    text-align: center;
  }

}
.text-form-sec{
  color: rgba(255, 255, 255, 1);
  font-family: var(--Montserrat);
  font-weight: 400;
  font-style: Regular;
  font-size: 36px;
  line-height: 50.4px;
  letter-spacing: 0%;
  vertical-align: middle;
  @media screen and (max-width: 992px) {
    font-size: 18.34px;
    text-align: center;
    line-height: 30.4px;
  }
}
.card-contact-title{
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;

}

.card-contact-text{
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 17px;
  line-height: 23.8px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;

}

.card-contact-email{
  font-size: 13px;
  line-height: 16px;
  opacity: 0.85;
}

.card-contact-email-link{
  color: inherit;
  display: block;
  max-width: 210px;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}

.card-contact-email-link:hover{
  color: inherit;
  opacity: 0.8;
}

.card-contact-block{
  width: 100%;
  padding: 50px 20px;
  border-radius: 12px;
  border: 1px solid rgba(45, 45, 45, 1);
}

/* Точечная коррекция только для карточки "На связи" с email */
.card-contact-block-contact{
  padding: 44px 20px 50px;
}

.card-contact-block-contact .card-contact-title{
  margin-top: 16px !important;
}

.card-contact-block-contact .card-contact-text{
  line-height: 21px;
}

.map {
  width: 100%;
  aspect-ratio: 16 / 5; 
  overflow: hidden;
  filter: grayscale(100%); 
  @media screen and (max-width: 992px) {
    aspect-ratio: 5/3;
  }
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.company{
  color: white;
  font-size: 15px;
  font-weight: 300;
}

.company > p{
  margin: 0;
}

@media (min-width: 992px){
  .company{
    flex-wrap: nowrap;
    align-items: center;
  }

  .company > p{
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media  (max-width:992px) {
  .company{
    font-size: 15px;
  }
}

.footer-policy-link{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-policy-link:hover{
  color: rgba(255, 255, 255, 0.75);
}

.cookie-consent{
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1030;
  width: auto;
  max-width: 560px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.cookie-consent.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent__inner{
  background: rgba(33, 33, 33, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  padding: 14px 16px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.cookie-consent__text{
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.4;
  min-width: 0;
  max-width: 440px;
  overflow-wrap: anywhere;
}

.cookie-consent__text a{
  color: var(--org);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__accept{
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid #fff;
  background: #fff;
  color: #2d2d2d;
  padding: 10px 16px;
  min-width: 132px;
  text-align: center;
  font-family: var(--Montserrat), sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: all .2s ease;
}

.cookie-consent__accept:hover{
  background: transparent;
  color: #fff;
}

body.cookie-consent-open{
  padding-bottom: 0;
}

body.cookie-consent-open .share{
  bottom: calc(var(--cookie-consent-height, 0px) + 24px);
}

@media (max-width: 992px){
  .cookie-consent{
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .cookie-consent__inner{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
  }

  .cookie-consent__text{
    font-size: 12px;
    line-height: 1.35;
    max-width: none;
  }

  .cookie-consent__accept{
    text-align: center;
    width: 100%;
  }

  body.cookie-consent-open{
    padding-bottom: 0;
  }

  body.cookie-consent-open .share{
    bottom: calc(var(--cookie-consent-height, 0px) + 18px);
  }
}

.about-card-block{
  background-color: rgba(45, 45, 45, 1);
  color: rgba(255, 255, 255, 1);
}
.about-card-text-block{
  padding: 40px 60px;
  @media  (max-width:992px) {
    padding: 20px 30px;
   }

}
.about-card-mid{
  padding: 20px 40px;
  @media  (max-width:992px) {
    padding: 20px 20px;
   }
}

.about-card-mid-img {
  width: 100%;
  aspect-ratio: 285 / 455;
  overflow: hidden;
  @media  (max-width:992px) {
    aspect-ratio: 320 / 370;

   }
}

.about-card-mid-img img {
  width: 100%;
  object-fit: cover;
}

.custom-checkbox {
  display: flex;
  align-items: center; /* Центрирует текст и квадратик по вертикали */
  cursor: pointer;
  font-family: sans-serif;
  font-size: 12px;
  color: white;
  user-select: none;
  @media screen and (max-width: 992px) {
    font-size: 10px;
  }
}

/* Прячем стандартный чекбокс */
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Рисуем наш кастомный квадратик */
.checkbox-box {
  height: 16px;
  width: 16px;
  border: 1px solid #999; /* Серый контур как на фото */
  margin-right: 12px;
  display: inline-block;
  position: relative;
  background-color: transparent;
  transition: all 0.2s;
}

/* Что происходит при наведении на всю область */
.custom-checkbox:hover .checkbox-box {
  border-color: white;
}

/* Рисуем галочку (скрыта по умолчанию) */
.checkbox-box:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white; /* Цвет галочки */
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Показываем галочку при клике */
.custom-checkbox input:checked ~ .checkbox-box:after {
  display: block;
}

/* Можно добавить легкий фон при клике */
.custom-checkbox input:checked ~ .checkbox-box {
  border-color: white;
}

.form-img{
  position: relative;
}
.form-img::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  top: 25px;
  left: 25px;
}






.input-group input ,textarea{
  border: none; /* убираем стандартные бордеры */
  border-bottom: 1px solid rgba(140, 140, 140, 1); /* серый бордер только сверху */
  /* padding: 18px 5px 25px 12px; */
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  width: 100%;

  outline: none; /* убираем синий контур при фокусе */
}
.input-group input::placeholder , textarea::placeholder {
  color: rgba(255, 255, 255, 1);
}
.input-group textarea{
  border: 1px solid rgba(140, 140, 140, 1); /* серый бордер только сверху */
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  width: 100%;
  outline: none;
  background-color: transparent;
}
.modal-input-center input::placeholder , textarea::placeholder{
}

.thanksReview-title{
  font-family: var(--Jost);
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
}
.thanksReview-text{
  font-size: 20px;
}
.modal-header{
  border: none;
}



.modal-content{
  background-color: rgba(45, 45, 45, 1);
  position: relative;
  @media (max-width:992px){
    /* padding: 20px; */
  }
}
.modal-content h3{
  color: white;
}
.modal-img{
  position: relative;
  overflow: hidden;
  height: 100%;
  @media (max-width:992px){
    aspect-ratio: 350/254;
  }
  
}

.modal-img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  @media (max-width:992px){
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.cat-fav{
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 20;
}

.modal-body{
  padding: 30px;
}
#ThanksFeedback .modal-content{
  padding: 10px 20px;
  color: white;
}

.review-modal .review-modal-dialog{
  max-width: 930px;
  width: calc(100% - 32px);
  margin: 1rem auto;
}

.review-modal .review-modal-content{
  display: flex;
  flex-direction: row;
  min-height: 540px;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: #2d2d2d;
  color: #fff;
  position: relative;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.72), 0 0 72px rgba(0, 0, 0, 0.45);
}

.review-modal .review-modal-left{
  flex: 0 0 60%;
  max-width: 60%;
  background: #2d2d2d;
  padding: 62px 52px 48px;
}

.review-modal .review-modal-right{
  flex: 0 0 40%;
  max-width: 40%;
}

.review-modal .review-modal-right img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.review-modal .review-modal-close{
  position: absolute;
  top: 12px;
  right: 18px;
  z-index: 3;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  opacity: 0.9;
}

.review-modal .review-modal-close:hover,
.review-modal .review-modal-close:focus-visible{
  opacity: 1;
}

.review-modal .review-modal-title{
  margin: 0;
  font-family: var(--Montserrat), sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}

.review-modal .review-form-fields{
  margin-top: 54px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.review-modal .review-form-field input{
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 11px;
  color: #fff;
  font-family: var(--Montserrat), sans-serif;
  font-size: 15px;
  line-height: 1.2;
}

.review-modal .review-form-field input::placeholder{
  color: rgba(255, 255, 255, 0.78);
}

.review-modal .review-form-field textarea{
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  padding: 14px 16px;
  min-height: 170px;
  resize: none;
  font-family: var(--Montserrat), sans-serif;
  font-size: 15px;
  line-height: 1.2;
}

.review-modal .review-form-field textarea::placeholder{
  color: rgba(255, 255, 255, 0.78);
}

.review-modal .review-agreement{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: -10px;
}

.review-modal .review-agreement input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.review-modal .review-agreement-box{
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  position: relative;
}

.review-modal .review-agreement-box::after{
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.review-modal .review-agreement input:checked + .review-agreement-box::after{
  opacity: 1;
}

.review-modal .review-agreement-text{
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--Montserrat), sans-serif;
  font-size: 11px;
  line-height: 1.2;
}

.review-modal .review-submit-btn{
  margin-top: 18px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 16px 20px;
  color: #fff;
  font-family: var(--Montserrat), sans-serif;
  font-size: 15px;
  line-height: 1;
}

.review-modal .review-submit-line{
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.review-modal .review-submit-btn:hover{
  border-color: #fff;
}

.review-thanks-content .review-thanks-left{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.review-thanks-content .review-thanks-inner{
  text-align: center;
  max-width: 520px;
}

.review-thanks-content .review-thanks-title{
  margin: 0;
  font-family: var(--Montserrat), sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}

.review-thanks-content .review-thanks-text{
  margin: 18px auto 0;
  font-family: var(--Montserrat), sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
}

#ThanksApp .review-modal-dialog{
  max-width: 980px;
}

#ThanksApp .review-modal-content{
  min-height: 600px;
}

#ThanksApp .review-modal-left{
  flex: 0 0 56%;
  max-width: 56%;
}

#ThanksApp .review-modal-right{
  flex: 0 0 44%;
  max-width: 44%;
}

#ThanksApp .review-thanks-left{
  justify-content: flex-start;
  padding: 0 56px;
}

#ThanksApp .review-thanks-inner{
  text-align: left;
  max-width: 420px;
}

#ThanksApp .review-thanks-title{
  font-size: clamp(36px, 2.85vw, 46px);
  line-height: 1.04;
}

#ThanksApp .review-thanks-text{
  margin: 14px 0 0;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.2;
}

#ThanksApp .review-modal-close{
  top: 12px;
  right: 14px;
  font-size: 40px;
}

.service-feedback-modal .review-modal-title{
  text-transform: none;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.08;
}

@media (max-width: 992px){
  .review-modal .review-modal-left{
    padding: 44px 34px 34px;
  }

  .review-modal .review-modal-title{
    font-size: clamp(30px, 5vw, 42px);
  }

  .review-modal .review-form-fields{
    margin-top: 32px;
    gap: 22px;
  }

  .review-modal .review-form-field input{
    font-size: 18px;
  }

  .review-modal .review-form-field textarea{
    font-size: 17px;
    min-height: 130px;
  }

  .review-modal .review-submit-btn{
    font-size: 18px;
    padding: 14px 18px;
  }

  .service-feedback-modal .review-modal-title{
    font-size: clamp(26px, 5vw, 34px);
  }

  #ThanksApp .review-modal-content{
    min-height: 540px;
  }

  #ThanksApp .review-thanks-left{
    padding: 0 36px;
  }

  #ThanksApp .review-thanks-title{
    font-size: clamp(30px, 4.4vw, 40px);
  }

  #ThanksApp .review-thanks-text{
    font-size: clamp(16px, 2.2vw, 20px);
  }
}

@media (max-width: 576px){
  .review-modal .review-modal-dialog{
    width: calc(100% - 24px);
  }

  .review-modal .review-modal-content{
    min-height: 0;
    flex-direction: column;
  }

  .review-modal .review-modal-right{
    order: -1;
    flex: 0 0 auto;
    max-width: 100%;
    height: 260px;
  }

  .review-modal .review-modal-left{
    flex: 0 0 auto;
    max-width: 100%;
    padding: 30px 22px 26px;
  }

  .review-modal .review-modal-close{
    top: 8px;
    right: 12px;
    font-size: 34px;
  }

  .review-modal .review-modal-title{
    font-size: clamp(28px, 8vw, 38px);
  }

  .review-thanks-content .review-thanks-title{
    font-size: clamp(32px, 8vw, 44px);
  }

  .review-thanks-content .review-thanks-text{
    font-size: clamp(18px, 5.2vw, 26px);
    margin-top: 14px;
  }

  #ThanksApp .review-modal-right{
    flex: 0 0 auto;
    max-width: 100%;
    height: 240px;
  }

  #ThanksApp .review-modal-left{
    flex: 0 0 auto;
    max-width: 100%;
  }

  #ThanksApp .review-thanks-left{
    justify-content: center;
    padding: 28px 22px 24px;
  }

  #ThanksApp .review-thanks-inner{
    text-align: center;
    max-width: 100%;
  }

  #ThanksApp .review-thanks-title{
    font-size: clamp(24px, 7.2vw, 32px);
  }

  #ThanksApp .review-thanks-text{
    margin-top: 10px;
    font-size: clamp(14px, 4.8vw, 18px);
  }
}

.modal h3{
  text-transform: uppercase;
  font-size: 20px;
  @media (max-width:992px){
    font-size: 20px;
  }
}
.checkbox-text{
  color: white;
  text-decoration: underline;
}

.cursor-tel{
  cursor: pointer;
}

/* sharepulse */
@keyframes pulse{
  0%, 100% {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
  }
  
  50% {
      -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
      transform: scale(1.3);
  }

}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
.share {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1031;
  transition: bottom .25s ease;
}

.share:before, .share:after {
  content: '';
  will-change: transform;
}
.share, .share:before, .share:after {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  position: fixed;
  cursor: pointer;
}
.share:after {
  background: #E73526;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
  z-index: 999;
  -webkit-transition: .39s;
  transition: .39s;
}
.share:hover:after{
  background: var(--white);
  -webkit-transition: .39s;
  transition: .39s;
}
.pulse::before {
  animation: pulse 2s infinite;
  box-shadow: 0px 0px 2px 2px #E73526;
}
.share-svg{
  z-index: 10000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  
}
.share:hover .share-svg svg{
  width: 25px;
  height: 25px;
  fill: #E73526;
  animation: pulse 2s infinite;
  -webkit-transition: .39s;
  transition: .39s;

}

.preloader{
  z-index:9999999;
  width:100vw;
  background-color:#2D2D2D;
  backdrop-filter:blur(20px);
  height:100vh;
  position:fixed;
  display:flex;
  top:0;
  justify-content:center;
  align-items:center
}

.preloader.hide{
  animation:2s prehide
}
#preloaderSvg{
  animation:show 1s
}

@media (max-width:992px){
  #preloaderSvg{
    width:85%;
    height:85%;
  }
}
@keyframes prehide{0%{opacity:1}100%{opacity:0}}

.share-svg svg{
  width: 25px;
  height: 25px;
  fill: white;
  animation: pulse 2s infinite;
  -webkit-transition: .39s;
  transition: .39s;
}
@media(max-width:992px){
  .share {
      bottom: 20px;
      right: 16px;
  }
 
}


/***************************************************
 * Generated by SVG Artista on 3/26/2026, 3:44:07 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-fill-1{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-1{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-1{-webkit-animation:animate-svg-fill-1 1.2s cubic-bezier(0.47,0,0.745,0.715) 0.8s both;animation:animate-svg-fill-1 1.2s cubic-bezier(0.47,0,0.745,0.715) 0.8s both}@-webkit-keyframes animate-svg-fill-2{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-2{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-2{-webkit-animation:animate-svg-fill-2 1.2s cubic-bezier(0.47,0,0.745,0.715) 0.9500000000000001s both;animation:animate-svg-fill-2 1.2s cubic-bezier(0.47,0,0.745,0.715) 0.9500000000000001s both}@-webkit-keyframes animate-svg-fill-3{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-3{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-3{-webkit-animation:animate-svg-fill-3 1.2s cubic-bezier(0.47,0,0.745,0.715) 1.1s both;animation:animate-svg-fill-3 1.2s cubic-bezier(0.47,0,0.745,0.715) 1.1s both}@-webkit-keyframes animate-svg-fill-4{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-4{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-4{-webkit-animation:animate-svg-fill-4 1.2s cubic-bezier(0.47,0,0.745,0.715) 1.25s both;animation:animate-svg-fill-4 1.2s cubic-bezier(0.47,0,0.745,0.715) 1.25s both}@-webkit-keyframes animate-svg-fill-5{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-5{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-5{-webkit-animation:animate-svg-fill-5 1.2s cubic-bezier(0.47,0,0.745,0.715) 1.4s both;animation:animate-svg-fill-5 1.2s cubic-bezier(0.47,0,0.745,0.715) 1.4s both}@-webkit-keyframes animate-svg-fill-6{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-6{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-6{-webkit-animation:animate-svg-fill-6 1.2s cubic-bezier(0.47,0,0.745,0.715) 1.55s both;animation:animate-svg-fill-6 1.2s cubic-bezier(0.47,0,0.745,0.715) 1.55s both}@-webkit-keyframes animate-svg-fill-7{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-7{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-7{-webkit-animation:animate-svg-fill-7 1.2s cubic-bezier(0.47,0,0.745,0.715) 1.7s both;animation:animate-svg-fill-7 1.2s cubic-bezier(0.47,0,0.745,0.715) 1.7s both}@-webkit-keyframes animate-svg-fill-8{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-8{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-8{-webkit-animation:animate-svg-fill-8 1.2s cubic-bezier(0.47,0,0.745,0.715) 1.85s both;animation:animate-svg-fill-8 1.2s cubic-bezier(0.47,0,0.745,0.715) 1.85s both}@-webkit-keyframes animate-svg-fill-9{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-9{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-9{-webkit-animation:animate-svg-fill-9 1.2s cubic-bezier(0.47,0,0.745,0.715) 2s both;animation:animate-svg-fill-9 1.2s cubic-bezier(0.47,0,0.745,0.715) 2s both}@-webkit-keyframes animate-svg-fill-10{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-10{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-10{-webkit-animation:animate-svg-fill-10 1.2s cubic-bezier(0.47,0,0.745,0.715) 2.15s both;animation:animate-svg-fill-10 1.2s cubic-bezier(0.47,0,0.745,0.715) 2.15s both}@-webkit-keyframes animate-svg-fill-11{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-11{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-11{-webkit-animation:animate-svg-fill-11 1.2s cubic-bezier(0.47,0,0.745,0.715) 2.3s both;animation:animate-svg-fill-11 1.2s cubic-bezier(0.47,0,0.745,0.715) 2.3s both}@-webkit-keyframes animate-svg-fill-12{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-12{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-12{-webkit-animation:animate-svg-fill-12 1.2s cubic-bezier(0.47,0,0.745,0.715) 2.45s both;animation:animate-svg-fill-12 1.2s cubic-bezier(0.47,0,0.745,0.715) 2.45s both}
