/* FONTS */
@font-face {
    font-family: "Gilroy";
    src: url('/assets/fonts/Gilroy-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url('/assets/fonts/Gilroy-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url('/assets/fonts/Gilroy-ExtraBold.ttf');
  font-weight: 700;
  font-style: bold;
}

:root{
    --heading--font: 'Gilroy', sans-serif;
    --heading--font-weight: 500;
    --default--font: 'Gilroy', sans-serif;
    --default--font-weight: 400;
    --heading--font--bold: 'Gilroy', sans-serif;
    --headong--font-weight: 700;
}

/* COLORS */

:root{
    --background-color: #F7F5F2;
    --default-color: #4C4C4F;
    --light-color: #FFFFFF;
    --brand-color1: #FE5F02;
    --brand-color2: #5951FF;
    --link-color: #4D46DB;
    --shadow-color: #D2D1D1;
}

/* SMOOTH SCROLL */
:root {
    scroll-behavior: smooth;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

body{
    color: var(--default-color);
    font-family: var(--default--font);
    font-weight: var(--default--font-weight);
    position: relative;
}

body.index-page{
  background-color: var(--background-color);
}

html, body {
  overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    text-decoration: none;
  }

  h2{
    font-family: var(--heading--font);
    color:(var(--default-color));
    font-size: 42px;
  }

  h3{
    font-family: var(--heading--font--bold);
    font-weight: var(--heading--font-weight);
    color: #4B4B4E;
    font-size: 22px;

  }

  /* img {
    max-width: 100%; 
    height: auto;
  } */

  section {
    overflow: hidden; 
  }

.ellipse-blue {
  position: absolute;
  z-index: -100;
  max-height: 100vh;
  overflow: hidden;
  
}

.land-wrap{
  position: absolute; 
  top: 0;
  left: 33%;
  width: 100%; 
  height: 100%; 
  z-index: -10; 
}

.ellipse-green{
  top: 100px;
  left: 100px;
  position: absolute;
  height: auto;
  z-index: -80;
}

.illustration{
  position: absolute;
  top: 200px;
  left: 200px;
  z-index: -70;
}

.down{
  position: absolute;
  top:600px;
  left:900px;
  z-index: -60;
}

.header, .main{
  position: relative;
  z-index: 100;
}

@media only screen and (max-width: 1024px) {
  .land-wrap {
    display: none; 
  }


}
@media (min-width: 768px) and (max-width: 1024px){
  header a{
    color: var(--light-color);
  }

  header a:hover, header a:focus{
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .ellipse-blue {
    content: url('/assets/img/Ellipse\ 2mob.svg');
    width:100%;
  }

}


img {
  pointer-events: none;
}


.header {
  margin-top: 50px;
  width: 100%;
  display: block;
}



.nav {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  width: 100%;
}
/* LANDING section */

.landing{
  width: 100%;
  min-height: 100vh;
}

.landing h1{
  font-family: var(--heading--font);
  font-weight: var(--heading--font-weight);
  font-size: 68px;
  color: var(--light-color);
  
}

.landing p{
  font-family: var(--default--font);
  font-weight: var(--default--font-weight);
  font-size: 24px;
  color: var(--light-color);
  margin-bottom: 30px;
}
  

.btn-primary {
  border-radius: 10px;
  padding: 12px 32px;
  border: 1px solid var(--light-color);
  background-color: transparent; 
  color: var(--light-color); 
  transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  font-size: 16px;
  white-space: nowrap;
}

.btn-primary:hover, .btn-primary:focus{
  border: 1px solid #D2D1D1;
  color: #D2D1D1;
}

.btn-secondary{
  border-radius: 10px;
  padding: 12px 32px;
  border: 1px solid var(--brand-color1);
  background-color: var(--brand-color1);
  color:var(--light-color);
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  font-size: 16px;
  white-space: nowrap;
  z-index: 3;
  position: relative;
}

.btn-secondary:hover, .btn-secondary:focus{
  border: 1px solid #E85E25;
  background-color: #E85E25;
  color: var(--light-color);
}

.d-flex {
  display: flex;
  align-items: center; /* Центрируем кнопки по вертикали */
}

.arrow-wrapp {
  margin-left: auto;
}

@media (max-width: 768px) {
  .arrow-wrapp{
    position: absolute;
    top:580px;
    left:-30px;
  }
}




  @media (max-width: 767px) {
    h1 {
      font-size: 42px;
      line-height: 43px;
    }
  
    p {
      font-size: 16px;
      line-height: 20px;
    }
    
    h2{
      font-size: 32px;
      line-height: 40px;
    }

    .landing h1 {
      font-size: 42px;
      line-height: 43px;
    }
  
    .landing p {
      font-size: 16px;
      line-height: 20px;
    }

    .header-link{
      color: var(--light-color);
    }
  }


  /* STRATEGY SECTION */

.strategy{
  width:100%;
  min-height: 70vh;
}

.card-wrap {
  position: relative;
  background-color: #FBFBFB;
  width: 400px;
  height: 433px;
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
}

.card-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 1px; 
  background: linear-gradient(to bottom, #C9C7FA, #4D46DB); 
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0); 
  -webkit-mask-composite: destination-out;
  mask-composite: subtract;
}

.card-ill-wrap {
  height: 150px;
  width: 100%;
  margin-bottom: 20px;
  border-bottom: 1px solid #4E47DC;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-ill {
  max-width: 100%;
  max-height: 100%;
  margin-bottom: 40px; 
}

.cards-container{
  display: flex;
  justify-content: center;
  gap: 40px; 
  height: 50vh; 
  align-items: center;
  margin-top: 50px;
}

.swiper-container {
  width: 100%;
  position: relative;
  margin-top: 50px;
  padding-bottom: 60px; /* Add padding at the bottom to make space for the pagination */
  height: auto; 
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto; /* Let Swiper manage the width dynamically */
}

.swiper-pagination {
  position: absolute;
  bottom: 10px; /* Position it closer to the bottom */
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10; /* Ensure it's above the slides */
}


.swiper-pagination-bullet-active {
  background-color: var(--brand-color1);
}

@media (max-width: 767px) {
  .card-wrap{
    width: 266px;
    height: 330px;
    padding: 10px;
  }

  .card-ill{
    max-height: 120px;
  }

  .card-ill-wrap{
    width: 220px;
  }
}

@media (max-width: 1023px) {
  .card-wrap{
    width: 300px;
    height: 382px;
    padding: 30px;
    margin-right: 10px;
  }

  .card-ill{
    max-height: 200px;
  }

  .card-ill-wrap{
    width: 251px;
  }
}

/* @media (max-width: 767px) {
  .swiper-slide {
    margin: 0 10px;
  }

  .swiper-container {
    display: block;
  }

  .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
  }

  .swiper-slide {
    flex: 0 0 100%; 
  }
} */


/* @media (min-width: 768px) and (max-width: 1024px) {
  .swiper-container {
    display: block;
  }

  .swiper-slide {
    flex: 0 0 50%; 
  }
}


@media (min-width: 1025px) {
   .swiper-wrapper {
    display: flex;
  }

  .swiper-slide {
    width: auto;
    max-width: 100%; 
    display: flex;
    justify-content: center;
}

  .swiper-slide {
    flex: 0 0 33.33%; 
  }
}
 */




/* AHEAD section */

.ahead {
  width: 100%;
  position: relative;
  min-height: 100vh; 
  padding-bottom: 50px;
}

.ahead-wrap-img {
  position: absolute;
  top: 0;  
  left: 800px; 
  width: 100%; 
  height: auto; 
  overflow: hidden; 
  z-index: -3;
}

.ahead-ill {
  max-height: 1000px;
  object-fit: cover;
  object-position: center; 
}

.ahead p{
  font-size: 22px;
  color: #000000;
}

.ahead span{
  font-size: 16px;
  color: #C9C7FA;
}

.desktop-img {
  display: block;
}

.mobile-img {
  display: none;
}

.ahead-highlight{
  color: var(--brand-color1);
  margin-top: 250px;
  font-size: 4vw; 
}


@media (max-width: 767px) {
  .ahead-wrap-img {
    position: relative; 
    width: 100%; 
    z-index: -1; 
    left: 50px;
  }

  .ahead-ill {
    width: 100%; 
    height: auto; 
  }

  .ahead h2 {
    font-size: 4vw;
    line-height: 36px;
    margin-bottom: 20px; 
  }

  .ahead p {
    font-size: 4vw;
    line-height: 24px;
    margin-bottom: 15px;
  }

  .ahead-highlight {
    font-size: 4vw;
    line-height: 34px;
    margin-top: 0px;
    z-index: 0;
  }

  .desktop-img {
    display: none; 
  }

  .mobile-img {
    display: block; 
    width: 100%; 
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .ahead-wrap-img {
    position: relative; 
    width: 100%; 
    z-index: -1; 
    left: 50px;
  }

  .desktop-img {
    display: none;
  }
  
  .mobile-img {
    display: block;
    width: 100%; 

  }

  .ahead-highlight{
    margin-top: 0px;
    font-size: 4vw;
  }

}

 /* OFFER section */
.offer {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  background-image: url('/assets/img/arrow.svg');
  background-repeat: no-repeat;
  background-position: center 200px;
  background-size: auto;
}

.offer p {
  font-size: 22px;
  line-height: 26px;
  color: #4B4B4E;
}

.offer .btn-secondary {
  display: inline-block;
  margin-top: 50px;
}

.offer-ill {
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .offer {
    min-height: 150vh;
    background-size: 90%;
    background-position: center 500px;
  }

  .offer p {
    font-size: 20px;
  }
}

/* FEATURES section */

.features{
  position: relative;
  z-index:3;
  margin-top: -20vh;
}

.fea-wrap{
  margin: 0 auto;
  border-radius: 20px;
  height: auto;
  width: 100%; 
  max-width: 1300px; 
  overflow: hidden; 
  padding: 50px;
  background: linear-gradient(180deg, #4B4B4E 0%, #313035 100%);
}


.features-card-wrap {
  background-color: transparent;
  position: relative;
  width: 330px;
  height: 412px;
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; 
  padding: 20px;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  margin-right: 30px;
}

.features-ill-wrap {
  margin-top: 20px; 
  height: 200px;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-ill {
  max-width: 100%;
  max-height: 100%;
  margin-bottom: 5px; 
}

.features-text {
  color: #FFFFFF;
  font-size: 22px;
  margin-top: 5px; 
  margin-bottom: 0; 
}

@media (max-width: 767px) {
  .features-card-wrap{
    background: linear-gradient(180deg, #4B4B4E 0%, #313035 100%);
    width: 266px;
    height:400px;
  }

  .fea-wrap{
    background: transparent;
    width: 100%; 
    min-height: 60vh;
  }

  .features{
    margin-top: -50vh;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .features-card-wrap{
    background: linear-gradient(180deg, #4B4B4E 0%, #313035 100%);
    width: 300px;
    height:350px;
  }
  .fea-wrap{
    background: transparent;
  }

  .features{
    margin-top: -15vh;
  }
  
}


/* FOOTER  */

footer{
  width: 100%;
  height: 12rem;
  background-color: #D9D9D9;
  margin-top: 50px;
  padding: 60px 0;
}

.footer-logo{
  height:56px;
}


footer a{
  font-size: 22px;
  color: #4C4C4F;
  margin-left:30px;
}

footer a:hover, a:focus{
  color: rgba(0, 0, 0, 0.7); 
  transition: color 0.3s ease-in-out; 
}

.footer-spacer{
  width:100px;
}

footer span{
  color: #59595B;
  font-size: 16px;
}


@media (max-width: 768px) {
  footer{
    height:17rem;
    padding: 30px 0;
  }

  .footer-logo{
    height:30px;
  }

  .footer-logo-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  footer a {
    font-size: 18px;
    color: #4C4C4F;
  }

  footer a:hover, a:focus{
    color: rgba(0, 0, 0, 0.7); 
    transition: color 0.3s ease-in-out; 
  }

  footer span {
    font-size: 14px;
  
  }

  .footer-links {
    flex-direction: column; 
    display: flex;
    align-items: flex-start;
  }
  .footer-links a{
    display: inline-block;
    width: 100%;
    text-align: left;
  }

  .footer-spacer{
    height:0.5rem;
  }
} 

@media (min-width: 768px) and (max-width: 1024px) {
  footer{
    background-color: #D9D9D9;
    height:16rem;
    padding: 30px 0;
  }
  .footer-logo{
    height:45px;
  }
}




/* MANAGEMENT SECTION */

.management{
  width:100vw;
  height: 80vh;
  background-image: url('/assets/img/arrow_right.svg');
  background-repeat: no-repeat;
  background-position: right center; 
  background-size: 50% 100%; 
}

.management h1{
  font-size: 4vw;
  color: #5951FF;
}


@media (max-width: 768px){
  .management{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 90%; 
  }
  
  .management h1{
    font-size: 42px;
  }
}

@media (min-width: 768px) and (max-width: 1024px){
  .management h1{
    font-size: 50px;
  }
}


/* DELIVERY section */

.delivery{
  width:100vw;
  min-height: 80vh;
  background-image: url('/assets/img/arrow-green.svg');
  background-repeat: no-repeat;
  background-position: calc(100% - 50%) center; 
  background-size: 50% 100%; 
}

.delivery p{
  font-size: 22px;
  color: #4B4B4E;
}

.delivery-card-ill{
  width:75px;
  height:75px;
  margin-right: 10px;
}

.delivery-card{
  width:100%;
  height:100px;
  background-color: #FBFBFB;
  border-radius: 10px;
  border: 1px solid #CAC7F9;
  
  font-size: 22px;
  color: #7972FF;
  font-family: var(--heading--font--bold);
  font-weight: var(--heading--font-weight);
}

.delivery-card-wrap{
  padding: 5px 20px;
}

.delivery-btn {
  border-radius: 10px;
  padding: 12px 32px;
  border: 1px solid #FE5F02;
  background-color: transparent; 
  color: #FE5F02; 
  transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  font-size: 16px;
  white-space: nowrap;

  margin-top: -100px;
}

.delivery-btn:hover, .delivery-btn:focus{
  border: 1px solid #E85E25;
  color: #E85E25;
}

.delivery-margin{
  margin-top: -20rem;
}


@media (max-width: 768px){
  .delivery{
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 100% 70%;  
  }
  
  .delivery p{
    font-size: 18px;
  }

  .delivery-card-ill{
    width:40px;
    height: 40px;
    margin-right: 2px;
  }

  .delivery-card{
    height: 65px;

    font-size: 16px;
  }

  .delivery-card-wrap{
    padding: 2px 3px;
  }

  .delivery-btn{
    margin-top: 20px;
  }

  .delivery-list-wrap{
    margin-top: 20px;
  }

  .delivery-margin{
    margin-top: 0px;
  }
}


@media (min-width: 768px) and (max-width: 1024px){

  .delivery-card-ill{
    width:50px;
    height: 50px;
    margin-right: 5px;
  }

  .delivery-card{
    height: 100px;

    font-size: 16px;
  }

  .delivery-card-wrap{
    padding: 2px 3px;
  }

  .delivery-btn{
    margin-top: 100px;
  }
}







/* FAQ's */

.FAQ{
  width: 100%;
  height: auto;
}


/* Общий стиль для заголовков аккордеона */
.accordion-button {
  border: 1px solid #C9C7FA; /* Рамка для кнопки в закрытом состоянии */
  border-left: 5px solid #C9C7FA; /* Толстая левая рамка */
  background-color: #FBFBFB !important; /* Фон по умолчанию */
  transition: background-color 0.3s ease, border-color 0.3s ease;
  color: #4C4C4F; /* Цвет текста */
}

/* Сбрасываем ненужные стили при фокусе, но оставляем рамки */
.accordion-button:focus,
.accordion-button:active,
.accordion-button:focus-visible {
  background-color: #FBFBFB !important; /* Сохраняем нужный фон */
  outline: none !important; /* Убираем стандартное фокусное выделение */
  box-shadow: none !important; /* Убираем тень при фокусе */
  border-color: inherit; /* Сохраняем кастомные рамки */
  color: #4C4C4F;
}

/* Переопределяем цвет рамки для кнопки в закрытом состоянии */
.accordion-button.collapsed {
  border-color: #C9C7FA; /* Цвет рамки для закрытого аккордеона */
  background-color: #FBFBFB !important; /* Фон закрытого состояния */
}

/* Для кнопки в открытом состоянии убираем нижнюю границу */
.accordion-button:not(.collapsed) {
  background-color: #FBFBFB !important; /* Оставляем нужный цвет фона */
  border-bottom: none; /* Убираем нижнюю границу */
}

/* Стиль для кнопки в открытом состоянии */
.accordion-button[aria-expanded="true"] {
  border-color: #FE5F02; /* Оранжевая рамка в открытом состоянии */
  color: #4C4C4F;
}

.accordion-body[aria-expanded="true"] {
  border:none;
}

/* Убираем фокусные линии и обводки для всех уровней */
.accordion,
.accordion-item,
.accordion-collapse,
.accordion-body {
  outline: none !important;
  box-shadow: none !important;
}

/* Восстанавливаем кастомные отступы между элементами аккордеона */
.accordion-item {
  border: none; /* Убираем стандартные рамки Bootstrap */
  margin-bottom: 1rem; /* Отступ между элементами */
}

/* Убираем серую линию между заголовком и телом */
.accordion-collapse {
  border-top: none !important; /* Убираем верхнюю границу у тела */
}

/* Восстанавливаем кастомные рамки у тела аккордеона */
.accordion-body {
  border: 1px solid #FE5F02; /* Оранжевая рамка */
  border-left: 5px solid #FE5F02; /* Толстая левая рамка */
  border-top: none !important; /* Убираем верхнюю границу */
  padding: 1rem; /* Отступ внутри тела */
  background-color: #FBFBFB !important; /* Фон тела аккордеона */
  color: #4C4C4F;
}

/* Скрываем стандартную стрелку */
.accordion-button::after {
  display: none;
}

/* Добавляем свою стрелку */
.accordion-button::before {
  content: url('/assets/img/arrow-blue.svg');
  position: absolute;
  right: 20px; /* Позиционируем стрелку справа */
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s; /* Анимация поворота */
}

/* Анимация для поворота стрелки при открытии */
.accordion-button[aria-expanded="true"]::before {
  content: url('/assets/img/arrow-orange.svg');
  /* transform: translateY(-50%) rotate(180deg); */
}

/* Восстанавливаем отступы для корректного позиционирования */
.accordion-button {
  position: relative;
  padding-right: 40px; /* Оставляем место для стрелки справа */
}

.question-wrap{
  height: 9rem;
  border:1px solid #FE5F02;
  border-radius: 10px;
  padding-left: 20px;
}

.email-wrap{
  height:9rem;
  border-radius: 10px;
  background-color: #4C4C4F;
  padding-left: 20px;
}



.email-us h2{
  font-size: 32px;
  color: #FE5F02;
  line-height: 40px;
}

.email-us form{
  width: 100%;
  margin-bottom: 10px;
}

.email-us label{
  display: block;
}

.email-us input{ 
  width: 70%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
  font-size: 32px;
  line-height: 40px;
  border-radius: 0px;
}

.email-us input::placeholder{
  color: #FFFFFF;
  opacity: 0.5;
}

.email-us input:focus {
  outline: none;
}

.email-us input:focus, input:not(:focus) {
  color: #FFFFFF; 
}

.email-btn{
  margin-left: 40px; /* Добавляем отступ слева */
  top: 50%; /* Позиционирование кнопки между label и input */
  right: 0; /* Кнопка справа */
  transform: translateY(-50%); /* Центрирование по вертикали */
}

.email-btn {
  border-radius: 10px;
  padding: 12px 32px;
  border: 1px solid var(--light-color);
  background-color: transparent; 
  color: var(--light-color); 
  transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  font-size: 16px;
  white-space: nowrap;
}

.email-btn:hover, .email-btn:focus{
  border: 1px solid #D2D1D1;
  color: #D2D1D1;
}

/* Исходное состояние элемента p - скрыт */
#MessageSubmit {
  opacity: 0;
  transition: opacity 0.5s ease-in-out; /* Плавное изменение opacity */
}

/* Когда форма валидна, элемент становится видимым */
#MessageSubmit.show {
  opacity: 1;
}

@media (max-width: 768px){
  .email-wrap{
    height: 14rem;
  }
  
  .email-us input {
    width: 90%; 
    margin-bottom: 40px; 
  }

  .email-btn {
    margin-left: 0; 
    transform: translateY(0); 
  }

  .email-us h2{
    font-size: 20px;
  }
  .question-wrap h2{
    font-size: 32px;
  }
  .email-us input{
    font-size: 20px;
  }

}


/* MEETING */
.meeting{
  width: 100%;
  height: auto;
}


/* POP UP */

.popup {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  justify-content: center;
  align-items: center;
  z-index: 1000; 
}


.popup-content {
  background-color: #FBFBFB;
  padding: 40px 0;
  border-radius: 20px;
  border: 1px solid #CAC7F9;
  position: relative;
  opacity: 0; 
  transform: scale(0.7); 
  transition: all 0.3s ease; 
  width: 60vw;
  height: 580px;
}

.popup.show .popup-content {
  opacity: 1; 
  transform: scale(1); 
}


  .form-field {
    margin-bottom: 15px;
  }

  .popup-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  .popup-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
  }

  .close-btn{
    width:60px;
  }

  .error-message {
    color: red;
    font-size: 12px;
    min-height: 20px; 
    display: block;
    visibility: hidden; 
  }
  
  .error-message.active {
    visibility: visible; 
  }
  
  .popup-form input {
    width: 100%;
    height: 80px;
    border-radius: 10px;
    border: 1px solid #CAC7F9;
    color: #7972FF; 
    font-size: 22px;
    font-family: var(--heading--font--bold);
    font-weight: var(--heading--font-weight);
  }

  .popup-form input::placeholder{
    color: #7972FF;
  }
  
  .popup-form input:focus {
    border-color: #CAC7F9;
    outline: none;
  }
  
  .popup-form input:focus,  .popup-form input:not(:focus) {
    color: #7972FF; 
  }

  .popup-form button[type="submit"]{
    width: 106px;
    height: 43px;
    border-radius: 10px;
    border:1px solid #FE5F02;
    background-color: transparent;
    color: #FE5F02;
  }

  .popup-form button[type="submit"]:hover, button[type="submit"]:active  {
    border:1px solid #E85E25;
    color: #E85E25;
  }

  .close-mask {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #C9C7FA; 
    mask: url('/assets/img/close.svg') no-repeat center;
    -webkit-mask: url('/assets/img/close.svg') no-repeat center; 
    mask-size: contain;
    transition: background-color 0.1s ease;
  }
  
  .close-mask:hover, .close-mask:focus {
    background-color: #7972FF; 
  }

  .popup p{
    font-size: 22px;
    color: #4C4C4F;
  }
  
  .popup .offer-text{
    color:#FE5F02;
  }

  .btn-popup{
    width: 150px;
    height: 43px;
    border-radius: 10px;
    border:1px solid #FE5F02;
    background-color: transparent;
    color: #FE5F02;
    margin-top: 100px;
  }

  .btn-popup:hover, .btn-popup:focus{
    border:1px solid #E85E25;
    color: #E85E25;
  }

  @media (max-width: 767px) {
    .popup-content {
      background-color: #FBFBFB;
      padding: 40px 0;
      border-radius: 20px;
      border: 1px solid #CAC7F9;
      position: relative;
      opacity: 0; 
      transform: scale(0.7); 
      transition: all 0.3s ease; 
      width: 90vw;
      height: auto;
    }

    .popup p{
      font-size: 16px;
    }

    .close-mask{
      width: 40px;
      height: 40px;
    }
    .popup-form input{
      height: 60px;

      font-size: 16px;
    }
    }

    .btn-popup{
      margin-top: 20px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
      .popup-content {
        width: 80vw;
        height: 60%;
      }
      
    }


    /* PUZZLE */

    .puzzle-img{
      height: 250px;
    }

    .puzzle-wrap{
      position: relative;
      display: inline-block;
    }

    .puzzle-text1{
      position: absolute;
      top: 45%; 
      left: 50%; 
      transform: translate(-50%, -50%);
      color: #FFFFFF;
    }

    .puzzle-text2{
      position: absolute;
      top: 50%; 
      left: 55%; 
      transform: translate(-50%, -50%);
      color: #FFFFFF;
    }


    .puzzle-text3{
      position: absolute;
      top: 65%; 
      left: 55%; 
      transform: translate(-50%, -50%);
      color: #FFFFFF;
    }

    .puzzle-text4{
      position: absolute;
      top: 65%; 
      left: 50%; 
      transform: translate(-50%, -50%);
      color: #FFFFFF;
    }


    .puzzle-number{
      font-size: 32px;
      width: 50px; 
      height: 50px; 
      border-radius: 50%;
      border:1px solid #FFFFFF;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      line-height: 1; 
    }

    .puzzle-desc{
      font-size: 18px;
    }

    .puzzle-img2{
      height: 330px;
    }

    .puzzle-spacer{
      height: 100px;
    }



    .puzzle-main{
      color: #5951FF;
      margin-top: 10px;
      width:80%;
    }


    @media (max-width: 768px){
      .puzzle-spacer{
        display: none;
      }
    }

    /* ABOUT page */

    body.about-page{
      background-color: #353439;
    }

    body.about-page .header-link{
      color: #FFFFFF;
    }

    body.about-page .header-link:hover{
      opacity: 0.5;
    }

    .about-section{
      min-height: 80vh;
    }

    body.about-page footer{
      background-color: #222226;
    }

    body.about-page footer a{
      color: #D9D9D9;
    }

    body.about-page footer a:hover{
      opacity: 0.5;
    }

    body.about-page footer span{
      color: #59595B;
    }

    body.about-page h2{
      color: #FFFFFF;
    }

    .ellipse-about{
      position: absolute;
      top: -150px; 
      left: 50%;
      transform: translateX(-50%); 
      min-height: 100vh; 
      z-index: 1; 
    }

    .mission-text{
      max-width: 50%;
      margin: 0 auto;
    }

    .arrow-icon{
      margin-top: 50px;
    }
    
/* Обычная версия (десктоп) */
.ellipse-about {
  content: url('/assets/img/Ellipse 7.svg');
}

/* Планшетная версия */
@media (max-width: 1024px) {
  .mission-text{
    max-width: 70%;
  }
}

/* Мобильная версия */
@media (max-width: 768px) {
  .mission-text{
    max-width: 100%;
  }

  .ellipse-about {
    height:90vh;
    width:100%;
    top:0;
    content: url('/assets/img/Ellipse\ 7\ mob.svg'); /* Замените на путь к вашему изображению для мобильного устройства */
  }

  .about-logo{
    height: 50px;
  }

  .arrow-icon{
    height: 180px;
    margin-top: 20px;
  }
}

/* 
OUR story */

.story{
  font-size: 68px;
  background: linear-gradient(113.16deg, #FE5F02 2.53%, #7972FF 83.81%);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.gradient-border-left {
  border-radius: 20px;
  border-left: 2px solid; 
  border-image-source: linear-gradient(180deg,#FE5F02 68.6%, #C66CE5 91.8%);
  border-image-slice: 1;
}




.our-story p{
  color: #FFFFFF;
}

.story-p{
  max-width: 50%;
}

.vendor{
  margin-right: 30px;
  height: 150px;
}


.spacer{
  margin-top: 100px;
}

.team-box{
  border-radius: 20px;
  border: 2px solid #C66DE5;
}

.team-box p{
  width: 80%;
}

.linked-in{
  transition: all 0.3s ease;
}

.linked-in:hover, .linked-in:focus{
  content: url('/assets/img/linkedinhov.svg');
}

.member-wrap{
  margin-bottom: 30px;
  border-bottom: 2px solid #C66CE5;
  padding-bottom: 30px;
}

.member-pic{
  height: 220px;
}




@media (min-width: 768px) {
  .line-wrap1 {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    z-index: -1;
    border-radius: 0 0 20px 0; 
    border-bottom: 2px solid #C66CE5;
    overflow: hidden;
}

.line-wrap1::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 2px; 
    background: linear-gradient(180deg, #FE5F02 68.6%, #C66CE5 91.8%); 
    border-radius: 0 0 20px 0; 
}

.line-wrap2{
  position: absolute;
  top:-2px;
  left: 0;
  height: 100%;
  width:50%;
  border-radius: 20px 0 0 0;
  border-top:2px solid #C66CE5;
  border-left: 2px solid #C66CE5;
  z-index: -1;
}

.line-wrap3{
  position: absolute;
  top:-2px;
  left: 0;
  height: 100%;
  width:70%;
  border-radius: 0 0 0 20px;
  border-left: 2px solid #C66CE5;
  border-bottom: 2px solid #C66CE5;
  z-index: -1;
}

.line-wrap4{
  position: absolute;
  top:-4px;
  left: 20px;
  height: 103%;
  width:30%;
  border-radius: 0 20px 0 0;
  border-top: 2px solid #C66CE5;
  border-right: 2px solid #C66CE5;
  z-index: -1;
}

.ellipse-orange{
  position: absolute;
  top: 12.5px;
  right: 0;
  width: 25px; 
  height: 25px; 
  background-color: #FE5F02; 
  border-radius: 50%; 
  transform: translate(50%, -50%); 
}



}

@media (max-width: 767px){
  .story{
    font-size: 32px;
  }


  .story-p{
    font-size: 20px;
    max-width: 100%;
    line-height: 26px;
  }

  .team-box p{
    width: 100%;
    line-height: 20px;
  }



  .vendor{
    height: 100px;
  }


  .team-box{
    border-radius: 10px;
    border: 2px solid #C66DE5;
  }

  .ellipse-orange-mob{
    position: absolute;
    top: 0;
    left: -1.5rem;
    width: 25px; 
    height: 25px; 
    background-color: #FE5F02; 
    border-radius: 50%; 
    transform: translate(50%, -50%); 
  }

  .mob-wrap1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    z-index: -1;
    border-radius: 0 0 0 20px; 
    border-bottom: 2px solid #C66CE5;
    overflow: hidden;
}

  .mob-wrap1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px; 
    background: linear-gradient(180deg, #FE5F02 68.6%, #C66CE5 91.8%); 
    border-radius: 0 0 0 20px;  
}

.mob-wrap2{
  position: absolute;
  top: -2px;
  right: 0;
  height: 100%;
  width: 50%;
  z-index: -1;
  border-radius: 0 20px 0 0; 
  border-top: 2px solid #C66CE5;
  border-right: 2px solid #C66CE5;
  overflow: hidden;
}

.mob-wrap3{
  position: absolute;
  top: -2px;
  right: 0;
  height: 100%;
  width: 50%;
  z-index: -1;
  border-right: 2px solid #C66CE5;
  overflow: hidden;
}

.mob-wrap4{
  position: absolute;
  top: -2px;
  right: 0;
  height: 100%;
  width: 30%;
  z-index: -1;
  border-radius: 0 0 20px 0; 
  border-right: 2px solid #C66CE5;
  border-bottom: 2px solid #C66CE5;
  overflow: hidden;
}

.mob-wrap5{
  position: absolute;
  top: -4px;
  left: 0;
  height: 102%;
  width: 50%;
  z-index: -1;
  border-radius: 20px 0 0 0; 
  border-top: 2px solid #C66CE5;
  border-left: 2px solid #C66CE5;
  overflow: hidden;
}

}

@media (min-width: 768px) and (max-width: 1024px){
  .vendor{
    height: 100px;
  }

  .story-p{
    max-width: 70%;
  }
}




    
  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(-10px);
    }
  }
  

  .container,
  .wrapper {
      max-width: 1440px; 
      margin: 0 auto; 
      padding: 0 30px; 
  }
  
  @media (min-width: 1920px) {
      .container,
      .wrapper {
          max-width: 1700px; 
      }
  }

  