@font-face {
  font-family: 'Forum-Regular';
  src: url('/assets/fonts/Forum-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
    --white: rgb(255, 255, 255);
    --black:rgb(0, 0, 0);
    --org: rgba(232, 176, 138, 1);
    --red: #E62E31;
    --Forum-Regular: 'Forum-Regular';
    --media: '(max-width: 992px)';
    --player-bg: #E8B08A;                /* цвет кнопки */
    --player-shadow: rgba(232, 176, 120, 1);
}
/* Общий стиль скроллбара */
::-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(--Forum-Regular), sans-serif;
    background-color: rgba(34, 34, 34, 1);
    color: var(--white);
    /* background-color: red; */
    
}
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 {
  /* height: 100%; */
  padding: 0;
  margin: 0;
  /* position: relative; */
  transition: transform .7s ease-in-out;
  z-index: 7;
}
body.no-scrol{
    overflow:hidden;
}
footer {
  color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;   /* сбросим до размера шрифта родителя */
  font-weight: normal;  /* уберём жирность по умолчанию */
  line-height: 1.2;     /* зададим аккуратную высоту строки */
}
a{
  color: var(--white);
}
a:hover{
  color: var(--white);
}


.sidebar {
  height: 100%;
  width: 800px;
  padding: 30px 50px;
  /* padding-top: 30px;
  padding-left: 50px; */
  position: fixed;
  top: 0;
  z-index: 100;
  /* right: 0; */
  right: -800px;
  /* background: transparent;
  backdrop-filter: blur(16px) saturate(120%); */
  background: rgba(22, 22, 22, 1);
    /* backdrop-filter: blur(20px); */
  /* -webkit-backdrop-filter: blur(16px) saturate(120%); */
  transition: transform .7s ease-in-out;
  @media screen and (max-width: 992px) {
    width: 100%;
    right: -100%;
  }
}
.sidebar.active {
    transform: translateX(-800px);
    overflow: auto;
    @media screen and (max-width: 992px) {
      transform: translateX(-100%);
    }
  }

.bar {
  display: block;
  height: 3px;
  width: 30px;
  background-color: var(--white);
  margin: 5px auto;
}

.button {
  cursor: pointer;
  display: inline-block;
  width: auto;
  /* margin: 0 auto; */
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.nav-right {
  position: absolute;
  /* position: relative; */
  /* right: 28px;
  top: 35px; */
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 101;
}


.hidden-xs {
  display: none;
}

.middle {
  margin: 0 auto;
}

.bar {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.nav-right.visible-xs .active .bar {
  background-color: var(--white);
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.button.active .top {
  -webkit-transform: translateY(15px) rotateZ(45deg);
  -moz-transform: translateY(15px) rotateZ(45deg);
  -ms-transform: translateY(15px) rotateZ(45deg);
  -o-transform: translateY(15px) rotateZ(45deg);
  transform: translateY(15px) rotateZ(45deg);
}

.button.active .bottom {
  /* -webkit-transform: translateY(-15px) rotateZ(-45deg);
  -moz-transform: translateY(-15px) rotateZ(-45deg);
  -ms-transform: translateY(-15px) rotateZ(-45deg);
  -o-transform: translateY(-15px) rotateZ(-45deg); */
  transform: translateY(-2px) rotateZ(-45deg);
}

.button.active .middle {
  /* width: 0; */
  transform: translateY(6px) rotateZ(-45deg);
}

.move-to-left {
  -webkit-transform: translateX(-400px);
  -moz-transform: translateX(-400px);
  -ms-transform: translateX(-400px);
  -o-transform: translateX(-400px);
  transform: translateX(-400px);
}



.sidebar-list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  /* margin-top: 20px; */
}

.sidebar-item {
  margin: 20px 0;
  /* -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px); */
}

/* .sidebar-item:first-child {
  -webkit-transition: all .7s .2s ease-in-out;
  -moz-transition: all .7s .2s ease-in-out;
  -ms-transition: all .7s .2s ease-in-out;
  -o-transition: all .7s .2s ease-in-out;
  transition: all .7s .2s ease-in-out;
} */

.sidebar-item{
  -webkit-transition: all .7s .2s ease-in-out;
  -moz-transition: all .7s .2s ease-in-out;
  -ms-transition: all .7s .2s ease-in-out;
  -o-transition: all .7s .2s ease-in-out;
  transition: all .7s .2s ease-in-out;
}
/* .sidebar-item .link-online{
    font-size: 20px;
} */
/* 
.sidebar-item:nth-child(3) {
  -webkit-transition: all .7s .6s ease-in-out;
  -moz-transition: all .7s .6s ease-in-out;
  -ms-transition: all .7s .6s ease-in-out;
  -o-transition: all .7s .6s ease-in-out;
  transition: all .7s .6s ease-in-out;
}
.sidebar-item:nth-child(4) {
    -webkit-transition: all .7s .6s ease-in-out;
    -moz-transition: all .7s .6s ease-in-out;
    -ms-transition: all .7s .6s ease-in-out;
    -o-transition: all .7s .6s ease-in-out;
    transition: all .7s .6s ease-in-out;
  }
  .sidebar-item:nth-child(5) {
    -webkit-transition: all .7s .6s ease-in-out;
    -moz-transition: all .7s .6s ease-in-out;
    -ms-transition: all .7s .6s ease-in-out;
    -o-transition: all .7s .6s ease-in-out;
    transition: all .7s .6s ease-in-out;
  }
  .sidebar-item:nth-child(6) {
    -webkit-transition: all .7s .6s ease-in-out;
    -moz-transition: all .7s .6s ease-in-out;
    -ms-transition: all .7s .6s ease-in-out;
    -o-transition: all .7s .6s ease-in-out;
    transition: all .7s .6s ease-in-out;
  }

.sidebar-item:last-child {
  -webkit-transition: all .7s .8s ease-in-out;
  -moz-transition: all .7s .8s ease-in-out;
  -ms-transition: all .7s .8s ease-in-out;
  -o-transition: all .7s .8s ease-in-out;
  transition: all .7s .6s ease-in-out;
} */

.sidebar-item.active {
  opacity: 1;
  /* -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px); */
}

.sidebar-anchor {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 7px;
}

/* .sidebar-anchor:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--or);
  -webkit-transition: all .7s ease-in-out;
  -moz-transition: all .7s ease-in-out;
  -ms-transition: all .7s ease-in-out;
  -o-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
} */

.sidebar-anchor:hover:before {
  width: 100%;
}
header{
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  background: rgba(26, 26, 26, 1);
    top: 0;
  margin: 0 auto;
 
}
header {
  /* box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.25); */
  
  
  z-index: 50;
  color: var(--white);
}


.hed-li{
  margin-right: 45px;
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  transition: all .3s ease-in-out;
}
.hed-li a{
  color: var(--white);
}
.hed-li:hover a{
  color: var(--akva);
}
header .header-btn{
  padding: 6px 50px;
}
.ferst{
  position: relative;
  height: 850px;
  min-height: 700px;
  background: rgba(28, 28, 28, 1);
  @media (max-width:992px) {
    background: url('../images/mob-bg-ferst_1.webp') no-repeat center/cover;
  }
}

.adress-top{
  font-size: 14px;
  @media (max-width: 992px) {
    font-size: 12px;
    }
}
.adress-bottom{
  font-size: 19px;
  @media (max-width: 992px) {
    font-size: 12px;
    }
}


.ferst-sub{
  font-size: 19px;
  line-height: 21px;
  opacity: 0.6;
  @media (max-width: 992px) {
    font-size: 10px;
  }

}
.ferst-title{
  font-size: 57.31px;
  line-height: 63px;
  text-transform: uppercase;
  @media (max-width: 992px) {
  font-size: 30px;
  line-height: 25px;
  }
}
.ferst-text{
  opacity: 0.8;
  font-size: 23px;
  line-height: 36.68px;
  @media screen and (max-width: 992px) {
    font-size: 17px;
    line-height: 21.05px;
  }
}

.org-button{
  width: 280px;
  background: var(--org);
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease, transform 0.3s ease;
  padding: 30px 0;
  @media screen and (max-width: 992px) {
    width: 180px;
    font-size: 14px;
    padding: 10px 0;
  }
}
.org-button:hover{
  box-shadow: 0 15px 30px rgba(232, 176, 138, 0.4);
  transform: scale(1.05);
}
.white-button{
  width: 280px;
  text-align: center;
  border: 1px solid var(--white); 
  font-size: 20px;
  text-transform: uppercase;
  padding: 30px 0;
  @media screen and (max-width: 992px) {
    width: 180px;
    font-size: 14px;
    padding: 10px 0;
  }
}
.ferst-img{
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 100% !important;
}
  h3{
  color: rgba(255, 255, 255, 1);
  font-size: 64px;
  @media screen and (max-width: 992px) {
    font-size: 30px;
  }
}
.signature-1{
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.signature-3{
  position: absolute;
  left: -10px;
  top: 130px;
  z-index: 1;
}

.about-text{
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  line-height: 23.08px;
  @media screen and (max-width: 992px) {
    font-size: 14px;
  }
}

.about-num{
  color: rgba(255, 255, 255, 1);
  font-size: 76.7px;
  font-weight: 400;
  line-height: 46.02px;
  @media screen and (max-width: 992px) {
    text-align: center;
  }
}
.about-num-text{
  color: rgba(132, 132, 132, 1);
  font-size: 17.75px;
  font-weight: 400;
  line-height: 24.86px;
  @media screen and (max-width: 992px) {
    text-align: center;
  }
}
.signature-2{
  position: absolute;
  left: 0;
  bottom: 345px;
  z-index: -1;
}
.nav-link-tab{
  /* color: rgba(255, 255, 255, 1); */
  font-size: 24.11px;
  line-height: 27px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 20px;
}
/* .nav-link-tab.active{
  opacity: 1;
} */
/* .nav-link-tab.active .сross-tab svg {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.nav-link-tab .сross-tab svg {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
} */

/* .сross-tab svg {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.collapsed .сross-tab svg {
  transform: rotate(0deg) ;
  transition: transform 0.3s ease ;
} */
.nav-link-tab[aria-expanded="false"] .сross-tab svg {
  transform: rotate(0deg) ;
  transition: transform 0.3s ease ;
}
.nav-link-tab[aria-expanded="true"] .сross-tab svg {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.form-check-input:checked {
  background: transparent;
  border-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/%3E%3C/svg%3E");
  background-size: 22px 22px;
  background-position: center;
  background-repeat: no-repeat;
}

.form-check-input:focus,
.form-check-input:checked:focus{
  border-color: var(--white) !important;
  box-shadow: 0 0 0 .15rem rgba(255,255,255,.2) !important;
  outline: none !important;
}

.tab-title{
  color: rgba(255, 255, 255, 1);  
  font-size: 24.11px;
  opacity: 0.7;

}
.tab-text{
  color: rgba(255, 255, 255, 1);
  opacity: 0.6;
  font-size: 21.43px;
  line-height: 24px;
  margin-bottom: 50px;
}
.price-title{
  font-size: 24.11px;
  @media  (max-width:992px) {
    font-size: 16px;
  }
}
.price{
  border-bottom: 1px solid rgba(114, 114, 114, 0.4);
}
.right-border-tab{
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  @media  (max-width:992px) {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.portfolio-frame{
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  @media  (max-width: 992px) {
  }
}
.portfolio-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
}
.portfolio .splide__arrow--next {
  border-radius: 0;
  backdrop-filter: blur(2.585418224334717px);
  background: rgba(243, 241, 239, 0.2);
  padding: 25px;
  right: 2em;
  @media  (max-width: 992px) {
    right: 16px;
  }
}
.portfolio .splide__arrow--prev {
  border-radius: 0;
  backdrop-filter: blur(2.585418224334717px);
  background: rgba(243, 241, 239, 0.2);
  padding: 25px;
  left: 2em;
  @media  (max-width: 992px) {
    left: 16px;
  }
}

/* Сделать стрелки заметными на светлом фоне */
.portfolio .splide__arrow{
  width: 56px;
  height: 56px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);

  color: rgba(0, 0, 0, 0.9); /* задаём контраст стрелке */
}

/* Подхватываем цвет для разных SVG (и fill, и stroke) */
.portfolio .splide__arrow svg{
  width: 26px;
  height: 26px;
  fill: currentColor;
  stroke: currentColor;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}

.portfolio .splide__arrow:hover{
  background: rgba(232, 176, 138, 0.95); /* твой --org */
  border-color: rgba(232, 176, 138, 1);
  color: #fff;
}

.splide__arrow svg{
  height: 30px;
  width: 30px;
}
.portfolio .splide__pagination__page{
  height: 1px;
  border-radius: 0;
}
.portfolio .splide__pagination{
  bottom: 0;
}
.portfolio .splide__pagination--ltr{
  display: flex;
  gap: 5px;
}
.splide__pagination__page.is-active{
  background: rgba(232, 176, 138, 1);
}

.social-links{
  border: 1px solid var(--white);
  padding: 5px 15px;
  font-size: 24px;
  @media (max-width:992px) {
    font-size: 9px;
  }
}
.social-links svg{
  @media (max-width:992px) {
    width: 24px;
    height: 24px;
  }
}
.program{
  height: 400px;
  background: url('../images/bg-prog.webp') no-repeat center/cover;
}
.text-program{
  font-size: 24px;
  line-height: 23.08px;

}

@media (max-width:992px) {
  .ferst-title-margen{
    margin-top: 180px;
  }
}


/*  Footer  */


.gray-atom{
  
  /* clip-path: ellipse(58% 80% at 50% 100%); */
  padding: 100px 0 50px;
  width: 100%;
  /* height: 500px; */
  overflow: hidden;
      

  @media screen and (max-width: 992px) {
   clip-path: none; /* отключаем */
    padding: 80px 0 50px;
  }
}

.myDiv{
  clip-path: ellipse(100% 99% at 50% 100%);

  /* clip-path: circle(95.1% at 50% 100%); */
  top: 0;
  width: 100vw;
  height: 1600px;
  z-index: -1;
  @media (max-width: 992px) {
    clip-path: none; /* отключаем */
    
  }
}


.input-group {
  display: flex;
  flex-direction: column;
  width: 250px;
}


.input-group input ,textarea{
  background: rgba(49, 49, 49, 0.4);

  border: none; /* убираем стандартные бордеры */
  border-top: 1px solid rgba(121, 121, 121, 1); /* серый бордер только сверху */
  padding: 14px 17px;
  font-size: 16px;
  color: var(--white);
  outline: none; /* убираем синий контур при фокусе */
}

.input-group input::placeholder , textarea::placeholder {
  color: var(--white);
}
.but-form-desck{
  padding: 16px 40px;
  border: 2px solid rgba(94, 94, 94, 1);
  color: var(--white);
  text-transform: uppercase;
  font-size: 13px;
  transition: all 0.3s;
}
.but-form-desck:hover{
  opacity: 0.6;
}
.top-footer-line{
  border-top: 1.5px solid  rgba(255, 255, 255, 1);
}
.footer-small{
  color: rgba(142, 142, 142, 1);
  font-size: 18px;
  @media screen and (max-width: 992px){
    font-size: 8px;
  }
}
.privacy-policy{
  font-size: 18px;
  @media screen and (max-width: 992px) {
    font-size: 8px;
   }
}
.my-company{
  width: 176px;
  @media (max-width:992px){
    width: 110px;
    height: 50px;
  }
}
/* .dev-title{
  color: var(--white);
  font-size: ;
} */
.modal-content{
  padding: 20px 20px;
  background-color: rgba(34, 34, 34, 1);
}
.modal-header{
  border: none;
}
.sec-title{
  font-size: 33px;
  text-transform: uppercase;
}
.form-control{
  background: rgba(28, 28, 28, 0.5);
  border-radius: 0;
  border: none;
  padding: 16px 13px;
  color: var(--white)
}
.form-control:focus{
  background: rgba(28, 28, 28, 0.5);
  border-color: transparent;
  box-shadow: none;
  color: var(--white);

}
.form-control::placeholder{
  color: rgba(255, 255, 255, 1);
  font-family: Forum;
  font-size: 15px;
  font-weight: 400;
}

.flatpickr-calendar{
  background-color: rgba(34, 34, 34, 1);
}
span.flatpickr-weekday{
  background-color: rgba(34, 34, 34, 1) !important;
  text-transform: uppercase;
}
.flatpickr-months .flatpickr-month{
  background-color: rgba(34, 34, 34, 1);
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover{
  background-color: rgba(34, 34, 34, 1);
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{
  background-color: rgba(34, 34, 34, 1);
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
    background: rgba(52, 52, 52, 1);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    border-color: rgba(52, 52, 52, 1);
}
.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus{
  background: rgba(52, 52, 52, 1);
  border-color: rgba(52, 52, 52, 1);
}
.flatpickr-current-month .flatpickr-monthDropdown-months{
  background-color: rgba(34, 34, 34, 1);
}
.flatpickr-calendar.arrowTop:before{
  border-bottom-color: rgba(34, 34, 34, 1)!important;
}
.flatpickr-calendar.arrowTop:after{
  border-bottom-color: rgba(34, 34, 34, 1)!important;
}
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover{
  color: green;
}
.svg-date{
  background: rgba(28, 28, 28, 0.5);
  height: 56px;
  width: 56px;
  position: relative;
}
.svg-date svg{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.title-time{
  color: var(--white);
  font-size: 16px;
  padding: 16px 0;
  background: rgba(52, 52, 52, 1);
}

.time-option {
  display: inline-block;
  margin: 5px;
}

.time-option input {
  display: none;
}

.time-option label {
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 150px;
  background: transparent;
  transition: 0.2s;
}
.time-option label:hover{
  background: rgba(52, 52, 52, 1);
}

.time-option input:checked + label {
  background: rgba(52, 52, 52, 1);
  color: var(--white);
  border-color: #222;
}
/* .service-select{
  padding: 17px 0;
} */
.collapse-titel{
  background: rgba(52, 52, 52, 1);
}

.collapsed .service-select-arrow {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}

.service-select-arrow {
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}
.service-select{
  background: rgba(28, 28, 28, 0.5);
}
.service-select-svg{
  position: relative;
    width: 60px;
    background-color: rgba(28, 28, 28, 1);
    height: 60px;
}
.service-select-svg svg{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-footer{
  border: none;
}
.form-check-input {
  background: transparent;
  width: 30px;
  height: 30px;
  margin-top: 0;
  flex-shrink: 0;
  border: 2px solid var(--white);
  position: relative;
}
.form-check-input:focus{
  box-shadow: none !important;
  border-color: var(--white);

}
.form-check-input[type=checkbox] {
  border-radius: 0;
}
.form-check-input:checked {
  background: transparent;
  border-color: #000;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/%3E%3C/svg%3E");
  background-size: 30px 30px; /* Увеличиваем размер */
  background-position: center;
  background-repeat: no-repeat;
  /* background-size: 14px; */
}

.form-check-input {
  position: relative;
  z-index: 1;
}

.form-check-label {
  position: relative;
  z-index: 2;
  cursor: pointer;
  font-size: 16px;
  @media (max-width:992px) {
    font-size: 13px;
  }
}
.thanksReview-title{
  font-size: 30px;
}
.thanksReview-text{
  font-size: 20px;
}













.service-checkbox {
  display: none;
}

/* Стили для кастомного чекбокса */
.service-item {
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 12px 15px;
  margin: 5px 0;
  border-bottom: 1px solid rgba(114, 114, 114, 1);
}

.service-item:hover {
  background: rgba(52, 52, 52, 1);
}

/* Стиль когда чекбокс отмечен */
.service-checkbox:checked + span {
  background: rgba(52, 52, 52, 1);
}

.service-item:has(.service-checkbox:checked) {
  background: rgba(52, 52, 52, 1);
  color: white;
}

/* Визуальный индикатор выбора */
.price-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.courses{
  margin-top: 100px;
}
.courses-img-block{
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.courses-img-block img{
  position: absolute;
  height: 110%;
  width: 100%;
  top: 0;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  /* object-fit: cover; */
  transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  

}
.courses-img-block:hover{
  transform: scale(1.035, 1.035);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.courses-img-block-vert{
  position: relative;
}

.courses-img-block-vert::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  pointer-events: none;
  z-index: 1;
}

/* текст поверх затемнения */
.courses-img-inner-vert{
  position: absolute;
  z-index: 2;
}



.courses-img-block img:hover {
  transform: translateY(-10px);
}
/* 
.card:hover img {
  transform: translateY(-10px);
} */


.video-wrap {
    position: relative;
    display: inline-block;      /* ширина по видео */
}

.video-wrap video {
    display: block;
}

.btn-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none; /* кликаем по всему видео/ссылке */
}

/* Пульсирующий круг */
.pulse-player {
    position: relative;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--player-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: playShadow 1.6s ease-out infinite;
    pointer-events: none; /* чтобы не мешать fancybox-ссылке */
}

/* Иконка "play" сверху */
.pulse-player .svg-player {
    position: relative;
    z-index: 2;
}

/* Внешнее свечение/кольца */
.pulse-player::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}


.portfolio-frame .video-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.portfolio-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Анимация как в примере */
@keyframes playShadow {
  0% {
    box-shadow:
      0 0 0 0px rgba(232, 176, 138, 0.35),
      0 0 0 0px rgba(232, 176, 138, 0.18);
    transform: scale(1);
  }
  18% {
    box-shadow:
      0 0 0 0px rgba(232, 176, 138, 0.35),
      0 0 0 0px rgba(232, 176, 138, 0.18);
  }
  35% {
    transform: scale(1.08);
  }
  76% {
    transform: scale(0.96);
  }
  100% {
    box-shadow:
      0 0 0 16px rgba(232, 176, 138, 0),
      0 0 0 27px rgba(232, 176, 138, 0);
    transform: scale(1);
  }
}

@-webkit-keyframes playShadow {
  0% {
    box-shadow:
      0 0 0 0px rgba(232, 176, 138, 0.35),
      0 0 0 0px rgba(232, 176, 138, 0.18);
    transform: scale(1);
  }
  18% {
    box-shadow:
      0 0 0 0px rgba(232, 176, 138, 0.35),
      0 0 0 0px rgba(232, 176, 138, 0.18);
  }
  35% {
    transform: scale(1.08);
  }
  76% {
    transform: scale(0.96);
  }
  100% {
    box-shadow:
      0 0 0 16px rgba(232, 176, 138, 0),
      0 0 0 27px rgba(232, 176, 138, 0);
    transform: scale(1);
  }
}

#modalCourseImg {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover; /* или contain, если нужно без обрезки */
}








.courses-img-inner{
  position: absolute;
  bottom: 25px;
  left: 25px;
  max-width: 220px;
}
.org-button-courses{
  padding: 7px 23px;
  background: var(--org); 
}
.courses-img-title{
  color: rgba(255, 255, 255, 1);
  font-size: 23px;
  font-weight: 400;
  line-height: 25px;
  text-transform: uppercase;

}
.courses-img-text{
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 400;
  line-height: 14px;
}

#orderTraining .modal-dialog {
  width: 70vw;
  max-width: 70vw;
  @media (max-width:992px){
    width: auto;
    max-width: none;
  }
}
.button-modalCourses{
  background: var(--org); 
  padding: 15px ;
  width: 200px;
}
.modalCourses-title{
  color: rgba(255, 255, 255, 1);
  font-size: 33px;
  line-height: 36px;
  text-transform: uppercase;
}
.modalCourses-text{
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 15px;
}

#orderTraining .modal-content{
  position: relative;
  z-index: 20;
}
#orderTraining .cat-fav {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 50;
}

/* Рама 9:16 */
.media-frame{
  position: relative;
  width: 100%;          /* заполняем ширину колонки */
  aspect-ratio: 9 / 16; /* вертикальный формат */
  background: #1a1a1a;
  overflow: hidden;
  margin: 0 auto;
}

/* Картинка/видео внутри — без искажений */
.media-frame img,
.media-frame video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;   /* сохранить формат, без обрезки */
  object-position: center;
}

/* Чтобы на больших экранах блок не стал слишком высоким */
@media (min-width: 992px){
  .media-frame{
    max-height: 80vh;                         /* не выше 80% окна */
    max-width: calc(80vh * 9 / 16);           /* ширина в соотв. с 9:16 */
  }
}

/* Вертикальная карточка курса (уменьшенная) */
.courses-img-block-vert {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;               /* было 9 / 16 – сделали ниже */
  overflow: hidden;
  transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.courses-img-block-vert img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.courses-img-block-vert:hover {
  transform: scale(1.02, 1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.courses-img-block-vert img:hover {
  transform: translateY(-6px);
}

/* Текст внутри вертикальной карточки */
.courses-img-inner-vert {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.certificates .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* На мобильных ещё чуть компактнее по высоте */
@media (max-width: 768px) {
  .courses-img-block-vert {
    aspect-ratio: 1 / 1;     /* была 3 / 4 – теперь квадрат, ниже по высоте */
    max-height: 360px;       /* жёсткий предел высоты, можно меньше/больше */
  }

  .courses-img-inner-vert {
    left: 12px;
    right: 12px;
    bottom: 12px;            /* чуть меньше отступы, чтобы всё влезло */
  }
}

/* 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;
  z-index: 99;
  bottom: 40px;
  right: 40px;
  z-index: 999;
}

.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: var(--red);
  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 var(--red);
}
.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: var(--red);
  animation: pulse 2s infinite;
  -webkit-transition: .39s;
  transition: .39s;

}

.line-clamp-2{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* максимум 2 строки */
  overflow: hidden;
}

@-webkit-keyframes animate-svg-stroke-1{0%{stroke-dashoffset:1453.7293701171875px;stroke-dasharray:1453.7293701171875px}100%{stroke-dashoffset:0;stroke-dasharray:1453.7293701171875px}}@keyframes animate-svg-stroke-1{0%{stroke-dashoffset:1453.7293701171875px;stroke-dasharray:1453.7293701171875px}100%{stroke-dashoffset:0;stroke-dasharray:1453.7293701171875px}}.svg-elem-1{-webkit-animation:animate-svg-stroke-1 1s cubic-bezier(0.47,0,0.745,0.715) 0s both,animate-svg-fill-1 0.7s cubic-bezier(0.47,0,0.745,0.715) 0.8s both;animation:animate-svg-stroke-1 1s cubic-bezier(0.47,0,0.745,0.715) 0s both,animate-svg-fill-1 0.7s cubic-bezier(0.47,0,0.745,0.715) 0.8s both}@-webkit-keyframes animate-svg-stroke-2{0%{stroke-dashoffset:1486.2860107421875px;stroke-dasharray:1486.2860107421875px}100%{stroke-dashoffset:0;stroke-dasharray:1486.2860107421875px}}@keyframes animate-svg-stroke-2{0%{stroke-dashoffset:1486.2860107421875px;stroke-dasharray:1486.2860107421875px}100%{stroke-dashoffset:0;stroke-dasharray:1486.2860107421875px}}@-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-stroke-2 1s cubic-bezier(0.47,0,0.745,0.715) 0.12s both,animate-svg-fill-2 0.7s cubic-bezier(0.47,0,0.745,0.715) 0.9s both;animation:animate-svg-stroke-2 1s cubic-bezier(0.47,0,0.745,0.715) 0.12s both,animate-svg-fill-2 0.7s cubic-bezier(0.47,0,0.745,0.715) 0.9s both}@-webkit-keyframes animate-svg-stroke-3{0%{stroke-dashoffset:1486.2860107421875px;stroke-dasharray:1486.2860107421875px}100%{stroke-dashoffset:0;stroke-dasharray:1486.2860107421875px}}@keyframes animate-svg-stroke-3{0%{stroke-dashoffset:1486.2860107421875px;stroke-dasharray:1486.2860107421875px}100%{stroke-dashoffset:0;stroke-dasharray:1486.2860107421875px}}.svg-elem-3{-webkit-animation:animate-svg-stroke-3 1s cubic-bezier(0.47,0,0.745,0.715) 0.24s both,animate-svg-fill-3 0.7s cubic-bezier(0.47,0,0.745,0.715) 1s both;animation:animate-svg-stroke-3 1s cubic-bezier(0.47,0,0.745,0.715) 0.24s both,animate-svg-fill-3 0.7s cubic-bezier(0.47,0,0.745,0.715) 1s both}@-webkit-keyframes animate-svg-stroke-4{0%{stroke-dashoffset:543.5442504882812px;stroke-dasharray:543.5442504882812px}100%{stroke-dashoffset:0;stroke-dasharray:543.5442504882812px}}@keyframes animate-svg-stroke-4{0%{stroke-dashoffset:543.5442504882812px;stroke-dasharray:543.5442504882812px}100%{stroke-dashoffset:0;stroke-dasharray:543.5442504882812px}}@-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-stroke-4 1s cubic-bezier(0.47,0,0.745,0.715) 0.36s both,animate-svg-fill-4 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.1s both;animation:animate-svg-stroke-4 1s cubic-bezier(0.47,0,0.745,0.715) 0.36s both,animate-svg-fill-4 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.1s both}@-webkit-keyframes animate-svg-stroke-5{0%{stroke-dashoffset:664.7997436523438px;stroke-dasharray:664.7997436523438px}100%{stroke-dashoffset:0;stroke-dasharray:664.7997436523438px}}@keyframes animate-svg-stroke-5{0%{stroke-dashoffset:664.7997436523438px;stroke-dasharray:664.7997436523438px}100%{stroke-dashoffset:0;stroke-dasharray:664.7997436523438px}}@-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-stroke-5 1s cubic-bezier(0.47,0,0.745,0.715) 0.48s both,animate-svg-fill-5 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.2000000000000002s both;animation:animate-svg-stroke-5 1s cubic-bezier(0.47,0,0.745,0.715) 0.48s both,animate-svg-fill-5 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.2000000000000002s both}@-webkit-keyframes animate-svg-stroke-6{0%{stroke-dashoffset:463.50347900390625px;stroke-dasharray:463.50347900390625px}100%{stroke-dashoffset:0;stroke-dasharray:463.50347900390625px}}@keyframes animate-svg-stroke-6{0%{stroke-dashoffset:463.50347900390625px;stroke-dasharray:463.50347900390625px}100%{stroke-dashoffset:0;stroke-dasharray:463.50347900390625px}}@-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-stroke-6 1s cubic-bezier(0.47,0,0.745,0.715) 0.6s both,animate-svg-fill-6 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.3s both;animation:animate-svg-stroke-6 1s cubic-bezier(0.47,0,0.745,0.715) 0.6s both,animate-svg-fill-6 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.3s both}@-webkit-keyframes animate-svg-stroke-7{0%{stroke-dashoffset:536.3533935546875px;stroke-dasharray:536.3533935546875px}100%{stroke-dashoffset:0;stroke-dasharray:536.3533935546875px}}@keyframes animate-svg-stroke-7{0%{stroke-dashoffset:536.3533935546875px;stroke-dasharray:536.3533935546875px}100%{stroke-dashoffset:0;stroke-dasharray:536.3533935546875px}}@-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-stroke-7 1s cubic-bezier(0.47,0,0.745,0.715) 0.72s both,animate-svg-fill-7 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.4000000000000001s both;animation:animate-svg-stroke-7 1s cubic-bezier(0.47,0,0.745,0.715) 0.72s both,animate-svg-fill-7 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.4000000000000001s both}@-webkit-keyframes animate-svg-stroke-8{0%{stroke-dashoffset:667.5325317382812px;stroke-dasharray:667.5325317382812px}100%{stroke-dashoffset:0;stroke-dasharray:667.5325317382812px}}@keyframes animate-svg-stroke-8{0%{stroke-dashoffset:667.5325317382812px;stroke-dasharray:667.5325317382812px}100%{stroke-dashoffset:0;stroke-dasharray:667.5325317382812px}}@-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-stroke-8 1s cubic-bezier(0.47,0,0.745,0.715) 0.84s both,animate-svg-fill-8 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.5s both;animation:animate-svg-stroke-8 1s cubic-bezier(0.47,0,0.745,0.715) 0.84s both,animate-svg-fill-8 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.5s both}@-webkit-keyframes animate-svg-stroke-9{0%{stroke-dashoffset:709.0971069335938px;stroke-dasharray:709.0971069335938px}100%{stroke-dashoffset:0;stroke-dasharray:709.0971069335938px}}@keyframes animate-svg-stroke-9{0%{stroke-dashoffset:709.0971069335938px;stroke-dasharray:709.0971069335938px}100%{stroke-dashoffset:0;stroke-dasharray:709.0971069335938px}}@-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-stroke-9 1s cubic-bezier(0.47,0,0.745,0.715) 0.96s both,animate-svg-fill-9 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.6s both;animation:animate-svg-stroke-9 1s cubic-bezier(0.47,0,0.745,0.715) 0.96s both,animate-svg-fill-9 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.6s both}@-webkit-keyframes animate-svg-stroke-10{0%{stroke-dashoffset:667.51416015625px;stroke-dasharray:667.51416015625px}100%{stroke-dashoffset:0;stroke-dasharray:667.51416015625px}}@keyframes animate-svg-stroke-10{0%{stroke-dashoffset:667.51416015625px;stroke-dasharray:667.51416015625px}100%{stroke-dashoffset:0;stroke-dasharray:667.51416015625px}}@-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-stroke-10 1s cubic-bezier(0.47,0,0.745,0.715) 1.08s both,animate-svg-fill-10 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.7000000000000002s both;animation:animate-svg-stroke-10 1s cubic-bezier(0.47,0,0.745,0.715) 1.08s both,animate-svg-fill-10 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.7000000000000002s both}@-webkit-keyframes animate-svg-stroke-11{0%{stroke-dashoffset:543.5347290039062px;stroke-dasharray:543.5347290039062px}100%{stroke-dashoffset:0;stroke-dasharray:543.5347290039062px}}@keyframes animate-svg-stroke-11{0%{stroke-dashoffset:543.5347290039062px;stroke-dasharray:543.5347290039062px}100%{stroke-dashoffset:0;stroke-dasharray:543.5347290039062px}}@-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-stroke-11 1s cubic-bezier(0.47,0,0.745,0.715) 1.2s both,animate-svg-fill-11 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.8s both;animation:animate-svg-stroke-11 1s cubic-bezier(0.47,0,0.745,0.715) 1.2s both,animate-svg-fill-11 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.8s both}@-webkit-keyframes animate-svg-stroke-12{0%{stroke-dashoffset:417.10888671875px;stroke-dasharray:417.10888671875px}100%{stroke-dashoffset:0;stroke-dasharray:417.10888671875px}}@keyframes animate-svg-stroke-12{0%{stroke-dashoffset:417.10888671875px;stroke-dasharray:417.10888671875px}100%{stroke-dashoffset:0;stroke-dasharray:417.10888671875px}}@-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-stroke-12 1s cubic-bezier(0.47,0,0.745,0.715) 1.3199999999999998s both,animate-svg-fill-12 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.9000000000000001s both;animation:animate-svg-stroke-12 1s cubic-bezier(0.47,0,0.745,0.715) 1.3199999999999998s both,animate-svg-fill-12 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.9000000000000001s both}@-webkit-keyframes animate-svg-stroke-13{0%{stroke-dashoffset:436.82830810546875px;stroke-dasharray:436.82830810546875px}100%{stroke-dashoffset:0;stroke-dasharray:436.82830810546875px}}@keyframes animate-svg-stroke-13{0%{stroke-dashoffset:436.82830810546875px;stroke-dasharray:436.82830810546875px}100%{stroke-dashoffset:0;stroke-dasharray:436.82830810546875px}}@-webkit-keyframes animate-svg-fill-13{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-13{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-13{-webkit-animation:animate-svg-stroke-13 1s cubic-bezier(0.47,0,0.745,0.715) 1.44s both,animate-svg-fill-13 0.7s cubic-bezier(0.47,0,0.745,0.715) 2s both;animation:animate-svg-stroke-13 1s cubic-bezier(0.47,0,0.745,0.715) 1.44s both,animate-svg-fill-13 0.7s cubic-bezier(0.47,0,0.745,0.715) 2s both}@-webkit-keyframes animate-svg-stroke-14{0%{stroke-dashoffset:484.4576416015625px;stroke-dasharray:484.4576416015625px}100%{stroke-dashoffset:0;stroke-dasharray:484.4576416015625px}}@keyframes animate-svg-stroke-14{0%{stroke-dashoffset:484.4576416015625px;stroke-dasharray:484.4576416015625px}100%{stroke-dashoffset:0;stroke-dasharray:484.4576416015625px}}@-webkit-keyframes animate-svg-fill-14{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-14{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-14{-webkit-animation:animate-svg-stroke-14 1s cubic-bezier(0.47,0,0.745,0.715) 1.56s both,animate-svg-fill-14 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.1s both;animation:animate-svg-stroke-14 1s cubic-bezier(0.47,0,0.745,0.715) 1.56s both,animate-svg-fill-14 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.1s both}@-webkit-keyframes animate-svg-stroke-15{0%{stroke-dashoffset:429.23614501953125px;stroke-dasharray:429.23614501953125px}100%{stroke-dashoffset:0;stroke-dasharray:429.23614501953125px}}@keyframes animate-svg-stroke-15{0%{stroke-dashoffset:429.23614501953125px;stroke-dasharray:429.23614501953125px}100%{stroke-dashoffset:0;stroke-dasharray:429.23614501953125px}}@-webkit-keyframes animate-svg-fill-15{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-15{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-15{-webkit-animation:animate-svg-stroke-15 1s cubic-bezier(0.47,0,0.745,0.715) 1.68s both,animate-svg-fill-15 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.2s both;animation:animate-svg-stroke-15 1s cubic-bezier(0.47,0,0.745,0.715) 1.68s both,animate-svg-fill-15 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.2s both}@-webkit-keyframes animate-svg-stroke-16{0%{stroke-dashoffset:417.1113586425781px;stroke-dasharray:417.1113586425781px}100%{stroke-dashoffset:0;stroke-dasharray:417.1113586425781px}}@keyframes animate-svg-stroke-16{0%{stroke-dashoffset:417.1113586425781px;stroke-dasharray:417.1113586425781px}100%{stroke-dashoffset:0;stroke-dasharray:417.1113586425781px}}@-webkit-keyframes animate-svg-fill-16{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-16{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-16{-webkit-animation:animate-svg-stroke-16 1s cubic-bezier(0.47,0,0.745,0.715) 1.7999999999999998s both,animate-svg-fill-16 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.3s both;animation:animate-svg-stroke-16 1s cubic-bezier(0.47,0,0.745,0.715) 1.7999999999999998s both,animate-svg-fill-16 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.3s both}@-webkit-keyframes animate-svg-stroke-17{0%{stroke-dashoffset:500.3206787109375px;stroke-dasharray:500.3206787109375px}100%{stroke-dashoffset:0;stroke-dasharray:500.3206787109375px}}@keyframes animate-svg-stroke-17{0%{stroke-dashoffset:500.3206787109375px;stroke-dasharray:500.3206787109375px}100%{stroke-dashoffset:0;stroke-dasharray:500.3206787109375px}}@-webkit-keyframes animate-svg-fill-17{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-17{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-17{-webkit-animation:animate-svg-stroke-17 1s cubic-bezier(0.47,0,0.745,0.715) 1.92s both,animate-svg-fill-17 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.4000000000000004s both;animation:animate-svg-stroke-17 1s cubic-bezier(0.47,0,0.745,0.715) 1.92s both,animate-svg-fill-17 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.4000000000000004s both}@-webkit-keyframes animate-svg-stroke-18{0%{stroke-dashoffset:604.2178955078125px;stroke-dasharray:604.2178955078125px}100%{stroke-dashoffset:0;stroke-dasharray:604.2178955078125px}}@keyframes animate-svg-stroke-18{0%{stroke-dashoffset:604.2178955078125px;stroke-dasharray:604.2178955078125px}100%{stroke-dashoffset:0;stroke-dasharray:604.2178955078125px}}@-webkit-keyframes animate-svg-fill-18{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-18{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-18{-webkit-animation:animate-svg-stroke-18 1s cubic-bezier(0.47,0,0.745,0.715) 2.04s both,animate-svg-fill-18 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.5s both;animation:animate-svg-stroke-18 1s cubic-bezier(0.47,0,0.745,0.715) 2.04s both,animate-svg-fill-18 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.5s both}@-webkit-keyframes animate-svg-stroke-19{0%{stroke-dashoffset:769.1648559570312px;stroke-dasharray:769.1648559570312px}100%{stroke-dashoffset:0;stroke-dasharray:769.1648559570312px}}@keyframes animate-svg-stroke-19{0%{stroke-dashoffset:769.1648559570312px;stroke-dasharray:769.1648559570312px}100%{stroke-dashoffset:0;stroke-dasharray:769.1648559570312px}}@-webkit-keyframes animate-svg-fill-19{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-19{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-19{-webkit-animation:animate-svg-stroke-19 1s cubic-bezier(0.47,0,0.745,0.715) 2.16s both,animate-svg-fill-19 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.6s both;animation:animate-svg-stroke-19 1s cubic-bezier(0.47,0,0.745,0.715) 2.16s both,animate-svg-fill-19 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.6s both}@-webkit-keyframes animate-svg-stroke-20{0%{stroke-dashoffset:531.5584716796875px;stroke-dasharray:531.5584716796875px}100%{stroke-dashoffset:0;stroke-dasharray:531.5584716796875px}}@keyframes animate-svg-stroke-20{0%{stroke-dashoffset:531.5584716796875px;stroke-dasharray:531.5584716796875px}100%{stroke-dashoffset:0;stroke-dasharray:531.5584716796875px}}@-webkit-keyframes animate-svg-fill-20{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-20{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-20{-webkit-animation:animate-svg-stroke-20 1s cubic-bezier(0.47,0,0.745,0.715) 2.28s both,animate-svg-fill-20 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.7s both;animation:animate-svg-stroke-20 1s cubic-bezier(0.47,0,0.745,0.715) 2.28s both,animate-svg-fill-20 0.7s cubic-bezier(0.47,0,0.745,0.715) 2.7s both}

.preloader{
  z-index:9999999;
  width:100vw;
  background-color:#2222;
  backdrop-filter:blur(20px);
  height:100vh;
  position:fixed;
  display:flex;
  top:0;
  justify-content:center;
  align-items:center;
  padding: 0 2rem;          /* отступы от краёв */
  box-sizing: border-box;
}

#preloaderSvg {
    display: block;
    width: 100%;              /* занимает ширину минус паддинги родителя */
    height: auto;
  }

.preloader.hide{
  animation:2s prehide
}
#preloaderSvg{
  animation:show 1s
}

@media (max-width: 992px) {
  .preloader {
    padding: 0 2rem;
    box-sizing: border-box;
  }

  #preloaderSvg {
    display: block;
    width: 100%;
    height: auto;
  }
}
@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: 30px;
      right: 30px;
  }
 
}

/* Спасибо-модалка в стиле макета */
.thanks-modal .modal-dialog {
  max-width: 100%;
  margin: 0;
}

.thanks-modal .modal-content {
  background-color: rgba(34, 34, 34, 1); /* как фон сайта */
  border-radius: 0;
  border: none;
  padding: 80px 15px;
  box-shadow: none;
}

.thanksApp-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.thanksApp-title {
  font-size: 64px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.thanksApp-text {
  font-size: 24px;
  line-height: 1.4;
  color: #fff;
}

/* Адаптив под мобилки */
@media (max-width: 768px) {
  .thanks-modal .modal-content {
    padding: 50px 20px;
  }

  .thanksApp-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .thanksApp-text {
    font-size: 16px;
  }
}


.video-wrap--container{
  display: block;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-wrap--container video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1100;
  width: min(460px, calc(100% - 48px));
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(232, 176, 138, 0.7);
  background: rgba(22, 22, 22, 0.95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: flex-end;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--white);
}

.cookie-banner__text a {
  display: inline;
  width: auto;
  color: var(--org);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__button {
  white-space: nowrap;
  border-radius: 999px;
  background: var(--org);
  color: rgba(34, 34, 34, 1);
  padding: 10px 18px;
  font-size: 14px;
  line-height: 1;
  transition: opacity .2s ease, transform .2s ease;
}

.cookie-banner__button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner__button {
    text-align: center;
  }
}









