@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Semibold.woff") format("woff"),
    url("../fonts/ClashDisplay-Semibold.woff2") format("woff2"),
    url("../fonts/ClashDisplay-Semibold.woff2") format("woff2"),
    url("../fonts/Gilroy-ExtraBold.otf") format("otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Clash Medium";
  src: url("../fonts/ClashDisplay-Medium.woff") format("woff"),
    url("../fonts/ClashDisplay-Medium.woff2") format("woff2"),
    url("../fonts/ClashDisplay-Medium.woff2") format("woff2"),
    url("../fonts/Gilroy-Light.otf") format("otf");
  font-weight: normal;
  font-style: normal;
}
html {
  margin: 0;
  height: 100%;
}

body {
  overflow-x: hidden; /* Убираем горизонтальный скролл */
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: radial-gradient(
      52.54% 137.84% at 7.81% 79.32%,
      rgba(52, 101, 251, 0.4) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    radial-gradient(
      38.4% 161.39% at 54.32% -24.47%,
      rgba(213, 255, 79, 0.5) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  background-repeat: no-repeat;
  background-size: cover; /* Градиент растягивается на всю страницу */
}
html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header {
  width: 100%;
  margin-top: 1%;
}

/* Контент хедера по центру и равномерное распределение элементов */
.header-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0; /* Внутренние отступы по краям */
  max-width: 1200px; /* Максимальная ширина контента хедера */
  margin: 0 auto; /* Центрирует контент по горизонтали */
}

/* Логотип */
.header-content__logo img {
  width: 100%;
  max-height: 60px; /* Ограничивает высоту логотипа */
}

/* Стили для навигации */
/* Стили для навигации */
.header-content__nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px; /* Расстояние между пунктами меню */
  border: 3px solid black;
  border-radius: 100px;
  padding: 0px;
  height: 60px;
}
.header-content__nav-block {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: end;
}
.header-content__nav__item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: color 0.3s, background-color 0.3s;
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.5px;
  text-align: left;
  white-space: nowrap;

  /* Добавляем box-sizing */
  box-sizing: border-box;
  padding: 10px; /* Сохраняем одинаковые отступы */
  border-radius: 100px; /* Округляем края элемента */
  border: 2px solid transparent; /* Устанавливаем прозрачный бордер по умолчанию */
}

.header-content__nav__item:hover {
  background-color: #d5ff4f; /* Цвет фона при наведении */
  border-color: #d5ff4f; /* Цвет бордюра при наведении */
  height: 70px;
  z-index: 999;
  color: #333;
  text-decoration: none;
}

.header-content__nav-block .cta-button {
  min-width: 200px;
}
.header-content__nav-block .cta-button:hover {
  min-width: 240px;
}
@media only screen and (min-width : 320px) and (max-width : 767px) {
  .header-content__nav-block .cta-button {
    display: none;
  }
  .header-content__nav-block .header-content__nav .cta-button {
    display: inherit!important;
  }
}

/* Основной контейнер */
.header-content__language {
  position: relative;
  display: inline-block;
  align-items: center;
  border: 2px solid black;
  border-radius: 20px;
  width: 80px;
  overflow: hidden;
  transition: height 0.3s ease; /* Плавное изменение высоты */
  height: 60px; /* Изначальная высота контейнера */
}

.header-content__language__selector {
  background-color: transparent;
  padding: 20px 15px;
  cursor: pointer;
  font-family: Gilroy-SemiBold, sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: black;
}

.header-content__language__selector .arrow {
  margin-right: 10px;
  transition: transform 0.3s;
}

.header-content__language__option {
  display: none;
  padding: 10px 15px;
  font-family: Gilroy-SemiBold, sans-serif;
  font-size: 18px;
  color: black;
  cursor: pointer;
}

.header-content__language.open {
  height: 100px; /* Увеличенная высота контейнера при открытии */
}

.header-content__language.open .header-content__language__option {
  display: block; /* Показать опцию при открытии */
}

.header-content__language.open .arrow {
  transform: rotate(180deg); /* Поворот стрелки вверх при открытии */
}
.header-content__burger {
  display: none;
  cursor: pointer;
}
.header-content__burger img {
  transition: transform 0.3s ease;
  width: 40px; /* Опционально, настройка размера иконки */
  height: 40px; /* Опционально, настройка размера иконки */
}

/* Общие стили */

.main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 4%;
}

.marketing-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  padding: 20px;
  border-radius: 20px;
  position: relative;
}

.marketing-block__content {
  max-width: 50%;
  position: relative;
}

.marketing-block__content h1 {
  font-family: "Clash Display", sans-serif;
  font-size: 54px;
  line-height: 1.1;
  color: #111;
  margin-bottom: 10%;
  z-index: 2;
  position: relative;
  width: 150%;
  font-weight: 700;
}

.marketing-block__content h2 {
  font-family: "Clash Display", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #1f1f1f;
  margin-top: 2%;
  position: relative;
  z-index: 2;
}

.marketing-block__content p {
  font-family: "Syne", sans-serif;
  font-size: 24px;
  color: #1f1f1f;
  margin-top: 2%;
  line-height: 1.5;
}

.marketing-block__cta {
  display: flex;
  gap: 20px;
}

.cta-button {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: "Clash Medium", sans-serif;
  font-size: 18px;
  cursor: pointer;
  border: none;
  outline: none;
  font-weight: 500 !important;
  transition: all 0.6s ease;
}

.cta-button--primary {
  border-radius: 40px;
  background-color: #1f1f1f;
  color: white;
  position: relative;
  padding: 20px, 40px, 20px, 40px;
}

.cta-button--secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Clash Medium", sans-serif;
  font-weight: 500;
  background-color: transparent;
  color: #1f1f1f;
  border: 2px solid #1f1f1f;
  border-radius: 40px;
  position: relative;
  /* padding: 20px 40px; */
  width: 30%;
  font-size: 18px;
  transition: all 0.6s ease;
  text-align: center;
}
.cta-button--secondary:hover {
  background-color: #3465fb;
  color: white;
  border: 2px solid #3465fb;
  text-decoration: none;
}

.marketing-block__countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background: transparent;
  padding: 20px;
  border-radius: 20px;
  z-index: 9999;
}

.countdown-item {
  background-color: #fafafa;
  border-radius: 15px;
  padding: 0 24px;
  text-align: center;

  min-width: 60px;
}

.countdown-number {
  display: block;
  font-size: 36px;
  font-weight: 600;
  color: #000;
  font-family: "Clash Display", sans-serif;
}

.countdown-label {
  display: block;
  font-size: 16px;
  color: #888888;
  font-family: "Syne", sans-serif;
  text-align: center;
}

.marketing-block__image {
  position: relative;
  text-align: right;
}

.marketing-block__image img {
  margin-top: 10%;
  border-radius: 20px;
  max-width: 100%;
}

.highlight-box {
  max-width: 300px;
  text-align: center;
  position: absolute;
  top: 20%;

  background-color: #d5ff4f;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.line-overlay {
  position: absolute;
  top: -20%;
  right: 0;
  max-width: 100%;
  z-index: 2;
}

.line-overlay img {
  width: 100%;
  height: auto;
  display: block;
}

.highlight-text {
  display: block;
  font-family: "ClashDisplay-Semibold", sans-serif;
  font-size: 36px;
  color: black;
  font-weight: 500;
}

.highlight-subtext {
  display: block;
  font-family: "Clash Display", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: black;
  line-height: 18.45px;
}

.course-info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #f9f9f9;
  max-width: 100%;
}

.course-details {
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: #1f1f1f;
  padding: 20px;
  color: white;
}

.detail-item {
  text-align: center;
}

.detail-item h3 {
  font-family: "Syne", sans-serif;
  line-height: 30px;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.detail-item p {
  font-family: "Clash Display", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44.28px;
  margin: 0;
}

.graduates-info {
  max-width: 100%;
  width: 100%;
  text-align: center;
  margin-top: 0;
  padding: 20px;
  padding-top: 40px;
  background: #fff;
}

.graduates-info h2 {
  font-weight: 600;
  font-family: "Clash Display", sans-serif;
  font-size: 40px;

  margin-bottom: 20px;
}

.graduates-info p {
  font-family: "Syne", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #717171;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.company-logos {
  display: flex;

  justify-content: center;
}

.company-logos img {
  max-width: 100%;

  object-fit: contain;
}
.skills-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background: linear-gradient(to right, #eef2f7, #e2eec8);
  /* border-radius: 20px; */
  width: 100%;
}
.skills-block__container {
  max-width: 1200px;
}

.skills-info {
  text-align: center;
  margin-bottom: 30px;
}

.skills-info h2 {
  font-family: "Clash Display", sans-serif;
  font-size: 40px; /* Increase font size */
  font-weight: 600;
  margin-bottom: 20px;
}

.skills-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px; /* Space between tags */
  max-width: 600px; /* Constraint for wrapping */
  margin: 0 auto; /* Center the container */
  padding: 20px 0; /* Padding around the tags */
}

.skills-tags .tag {
  flex: 1 1 45%; /* Ensure all tags take up roughly the same space */
  max-width: 45%; /* Keep the width consistent */
  min-width: 200px; /* Set a minimum width to make them more uniform */
  height: 60px; /* Set a consistent height for all tags */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 18px;
  font-family: "Syne", sans-serif;
  font-weight: 500;
  cursor: pointer;
  background-color: transparent;
  border: 3px solid #1f1f1f;
  transition: all 0.3s ease-in-out;
  text-align: center;
  word-wrap: break-word;
}

.skills-tags .tag.active {
  background-color: #d5ff4f;
  border-color: #d5ff4f;
  color: #000;
}

.skills-tags .tag:hover {
  background-color: #d5ff4f;
  border-color: #d5ff4f;
  color: #000;
}
#carouselExampleControls {
  width: 100%;
}
/* Customizing the carousel control buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-control-prev {
  left: -65px; /* Adjust this to position the left arrow correctly */
}

.carousel-control-next {
  right: -65px; /* Adjust this to position the right arrow correctly */
}

/* Customizing the icons inside the buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-image: none;
  color: #333;
}

.carousel-control-prev-icon:after,
.carousel-control-next-icon:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
}

.carousel-control-prev-icon:after {
  border-right-color: #333;
  border-bottom-color: #333;
  transform: rotate(135deg);
}

.carousel-control-next-icon:after {
  border-left-color: #333;
  border-top-color: #333;
  transform: rotate(135deg);
}

/* Adding shadow for a more modern look */
.carousel-control-prev,
.carousel-control-next {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hover effect to make it look clickable */
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #f0f0f0;
  border-color: #d0d0d0;
}

.pricing-section {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  background-color: #f9fafb;
}

.section-title {
  font-family: "Clash Display", sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 59.4px;
  margin-bottom: 40px;
  color: #000;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  padding: 30px;
  width: 25%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.pricing-card h3 {
  font-family: "Clash Display", sans-serif;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #000;
  position: relative;
  z-index: 2; /* Ensure the text stays above other elements */
}

.pricing-card .pro-image {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.pricing-card .pro-image img.sale {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 127px;
  height: auto;
}
.btn-old {
  border-radius: 40px;
  background: var(--blue, #3465fb) !important;
}
.btn-old:hover {
  background-color: #d5ff4f !important;
}
.pricing-card .price {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 66px;
  color: #000;
  margin: 10px 0 20px 0;
  position: relative;
  text-align: center;
  z-index: 2; /* Ensure price text is above other elements */
}

.pricing-card .price::after {
  content: "";
  display: block;
  width: 80%;
  height: 2px;
  background-color: #e0e0e0;
  margin: 15px auto 0 auto;
}

.pricing-card.pro {
  background-color: #000;
  color: #fff;
}

.pricing-card.pro h3,
.pricing-card.pro ul li,
.pricing-card.pro .price {
  color: #fff;
}

.pricing-card.pro .price::after {
  background-color: #fff; /* White line under the price on blue card */
}

.pricing-card.pro .btn-pro {
  background-color: #000;
  color: #fff;
  margin-top: auto; /* Keep buttons aligned at the bottom */
  width: 100%;
}
.break {
  display: none; /* По умолчанию перенос скрыт */
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.pricing-card ul li {
  font-weight: 500;
  font-family: "Syne", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.pricing-card ul li img {
  margin-right: 10px;
}

.pricing-card .btn {
  font-family: "ClashDisplay-Semibold", sans-serif;
  display: inline-block;
  font-weight: 500;
  padding: 12px 25px;
  border-radius: 30px;
  background-color: #000;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Align buttons at the same level */
  width: 100%; /* Ensure buttons are the same width */
}

.pricing-card .btn:hover {
  background-color: #d5ff4f;
  color: #000;
}

.pricing-card:hover {
  transform: translateY(-10px);
}
.about-us-section {
  width: 100%;
  text-align: center;
  padding: 60px 20px;
  background-color: #f9fafb;
}

.about-us-content {
  position: relative;
  background-color: #000;
  color: #fff;
  padding: 4%;
  border-radius: 20px;
  font-size: 18px;
  line-height: 1.6;
  display: inline-block;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.about-us-content p {
  font-family: "Syne", sans-serif;
  font-weight: 400;
  line-height: 40.8px;
  margin: 0;
  z-index: 2;
  position: relative;

  font-size: 34px;
}

.about-us-content .arrow-icon {
  position: absolute;
  bottom: -80px; /* Adjust as necessary */
  left: -20px; /* Adjust as necessary */
  width: 170px; /* Adjust size as needed */
  z-index: 1;
}

.about-us-content .dollar-icon {
  position: absolute;
  top: -20px; /* Adjust as necessary */
  right: -30px; /* Adjust as necessary */
  width: 150px; /* Adjust size as needed */
  z-index: 1;
}
.experience-section {
  padding: 60px 20px;
  background-color: #fff;
}

.experience-block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.experience-block .text-content,
.experience-block .image-content {
  display: flex;
  flex-direction: column;

  width: 47%;
  padding: 20px;

  justify-content: center;
}
#texttoplanet {
  margin-left: 30px;
}

.experience-block .text-content h3 {
  font-family: "Clash Display", sans-serif;
  font-size: 36px;
  line-height: 44.28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1f1f1f;
  text-transform: uppercase;
}

.experience-block .text-content p {
  font-family: "Syne", sans-serif;
  font-weight: 400;
  font-size: 34px; /* Уменьшил размер шрифта для лучшего расположения текста */
  color: #717171;
  line-height: 40.8px;
  max-width: 90%; /* Ограничиваем ширину текста */
  /* text-align: justify; */
}

.experience-block .image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 40px;
  object-fit: cover;
  max-height: 100%; /* Ограничение высоты изображения */
}

.testimonials-section {
  background-color: #181818;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.testimonials-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.comment-card-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  min-height: 437px;
}

.comment-card {
  background-color: #3465fb;
  border-radius: 20px;
  padding: 20px;
  color: #fff;
  text-align: left;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.comment-card.green {
  background-color: #d5ff4f;
  color: #000;
}

.highlight-button {
  font-size: 20px;
  font-family: "Clash Display", sans-serif;
  background-color: transparent;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  text-align: center;
  display: block;
  border: 2px solid white;
  cursor: pointer;
  width: 100%;
}
.highlight-button--top {
  margin-top: 0;
  margin-bottom: 10px;
}

.highlight-button--bottom {
  margin-top: 10px;
  margin-bottom: 0;
}

.comment-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.comment-card p {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.comment-card .comment-author {
  display: flex;
  align-items: center;
}

.comment-card .comment-author img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.comment-card .comment-author span {
  font-family: "Syne", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.comment-card .rating {
  width: 14px;
  height: 14px;
}

.rating-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.rating-text {
  margin-left: 10px;
  font-size: 14px;
  color: #fff;
}

.comment-card.green .rating-text {
  color: #000;
}

.carousel-inner .carousel-item.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff !important;
  border-radius: 50%;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: -10%;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-image-container {
  position: relative;
  text-align: center;
  overflow: hidden;
  border-radius: 40px;
  height: 650px; /* Высота соответствует высоте элемента carousel-item */
}
.carousel-image-container img {
  width: 100%;
  height: 100%; /* Соответствует высоте контейнера */
  object-fit: cover;
  border-radius: 15px;
}

.single-card {
  max-width: 50%; /* Поддержание размера даже для одного элемента */
  margin: 0 auto; /* Центрируем карточку */
}
.carousel-caption {
  position: absolute;

  bottom: 20px;
  left: 25px;
  z-index: 2;
  color: white;
  transition: all 0.4s ease;
  padding: 10px;
  border-radius: 10px;
  text-align: left;
  width: calc(100% - 50px);
}
.carousel-caption p.hidden-text {
  display: none;
  margin-top: 15px;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.carousel-image-container:hover .carousel-caption {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Центрируем контент по вертикали */
  height: 100%; /* Высота caption должна занимать всю высоту карточки */
  bottom: 0;
  top: 0;
  padding: 20px; /* Добавляем больше отступов для лучшей читабельности */
  justify-content: center; /* Центрируем контент и по горизонтали, и по вертикали */
}

.carousel-image-container:hover img {
  filter: blur(8px);
  transition: all 1s ease;
}
.carousel-image-container:hover .carousel-caption p.hidden-text {
  display: block;
  opacity: 1;
}
.carousel-caption h3 {
  margin: 0 0 10px 0;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Clash Display", sans-serif;
}
.carousel-caption .highlighted-text {
  font-size: 16px;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.custom-arrow {
  display: inline-block;
  margin-left: 15px;
  font-size: 24px;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}

.custom-arrow:hover {
  transform: translateX(5px); /* Двигаем стрелку вправо при наведении */
}
.custom-arrow {
  font-size: 30px; /* Размер стрелки */
  margin-left: 20px; /* Отступ от текста */
}

.carousel-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Черное полупрозрачное затемнение */
  border-radius: 15px;
  z-index: 1;
}

.carousel-button .arrow-icon {
  margin-left: 10px;
  font-size: 24px;
}
/* .highlight-card {
  border: 4px solid #d5ff4f;
  border-radius: 40px;
  transition: border 0.3s ease-in-out;
} */
.highlight-card {
  border: 4px solid #d5ff4f !important;
  border-radius: 40px !important;
  transition: border 0.3s ease-in-out;
  box-shadow: 0 0 20px 10px rgba(213, 255, 79, 0.7) !important;
}

/* Для последнего слайда, чтобы карточка была по центру */
.carousel-item .row.justify-content-center .col-6 {
  max-width: 50%; /* Устанавливаем ширину карточки на третьем слайде */
  margin: 0 auto; /* Центрируем карточку */
}

#mob-carousel {
  display: none !important;
}

.main-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
      52.54% 137.84% at 7.81% 79.32%,
      rgba(52, 101, 251, 0.4) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    radial-gradient(
      38.4% 161.39% at 54.32% -24.47%,
      rgba(213, 255, 79, 0.5) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(0deg, #ffffff, #ffffff);

  padding: 10%;
  position: relative;
}

.image-left,
.image-right {
  position: relative;
  width: 30%; /* Увеличьте ширину для изображения */
}
.image-left {
  left: -94px;
}

.image-left img,
.image-right img {
  height: auto;
}
.image-left .dollar {
  position: absolute;
  top: -40%;
  left: 20px;
}

.image-right .arrow {
  position: absolute;
  top: -30%;
  right: -20%;
}

.image-right .hand {
  position: absolute;
  bottom: -30%; /* Настройте положение руки */
  right: 10%; /* Подкорректируйте правую позицию */
  width: 60%; /* Увеличьте ширину руки */
}

.content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  text-align: center;
  padding: 20px;
}

.content h1 {
  width: 150%;
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 54px;
  line-height: 59.4px;
  margin-bottom: 20px;
  text-align: center;

  max-width: 800px; /* Ограничиваем максимальную ширину заголовка */
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.countdown-item {
  text-align: center;
}

#downbutton {
  margin-top: 10%;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 500;

  line-height: 20px;
  font-family: "Clash Display", sans-serif;
  padding: 20px 40px;
}

.countdown-label {
  font-size: 16px;
  font-weight: 500;
  color: #717171;
  font-family: "Syne", sans-serif;
}

.cta-button {
  padding: 15px 30px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}
.cta-button:hover {
  background-color: #d5ff4f;
  color: #000;
}
.cta-button {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 15px 30px;
  border-radius: 40px;
  font-family: "Clash Medium", sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  background-color: #000;
  color: #fff;
  border: none;
  transition: all 0.4s ease; /* Плавный переход */
  position: relative;
  width: 200px; /* Изначальная ширина кнопки */
  overflow: hidden; /* Предотвращение выхода элементов за границы */
}

.cta-button--primary {
  border-radius: 40px;
}

.cta-button:hover {
  background-color: #d5ff4f; /* Изменение цвета фона */
  color: #000; /* Изменение цвета текста */
  width: 240px; /* Увеличение ширины кнопки */
}

/* Добавляем стрелку через псевдоэлемент */
.cta-button::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 33px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}

.cta-button:hover::after {
  width: 51px;
  background-color: #000;
}

/* Стрелочная головка */
.cta-button::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%) rotate(45deg); /* Поворот для стрелки */
  transition: all 0.4s ease;
}
.market-desk {
  display: flex;
}
.cta-button:hover::before {
  right: 32px; /* Сдвигаем головку стрелки дальше */
  border-color: #000; /* Изменяем цвет головки */
}

.site-footer {
  background-color: #181818;
  padding: 40px 20px;
  color: #ffffff;
  text-align: left;
  font-family: "Syne", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-left: 10%;
}
.footer-top__logo {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
}
.footer__top-social {
  display: flex;
  gap: 10px;
  list-style-type: none;
  padding: 0;
}
@media (max-width: 600px) {
  .footer__top-social li img {
    width: 24px;
    height: 24px;
  }
  .footer-top__logo {
    justify-content: center;
    flex-direction: column;
  }
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
}
.footer-center {
  margin-left: 20px;
}
.footer-adress__email {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 10px;
}

.footer-address p,
.footer-center p {
  margin: 5px 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 23.5px;
  font-family: "Clash Medium", sans-serif;
}
.footer-address {
  margin-top: 5%;
  font-family: "Clash Medium", sans-serif;
}

.email-icon img {
  max-width: 50px;
  border-radius: 50%;
}
.footer-right {
  display: flex;
  justify-content: space-around;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: "ClashDisplay-Semibold", sans-serif;
  font-weight: 400;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-bottom {
  /* border-top: 1px solid #fafafa; */
  padding-top: 10px;
  text-align: center;
}

.footer-bottom p {
  font-family: "ClashDisplay-Semibold", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 20px;
  font-size: 16px;
}

/* Фон попапа */
.popup-form {
  display: none; /* Скрыто по умолчанию */
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px); /* Эффект размытия фона */
}

/* Контент попапа */
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
      52.54% 137.84% at 7.81% 79.32%,
      rgba(52, 101, 251, 0.4) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    radial-gradient(
      38.4% 161.39% at 54.32% -24.47%,
      rgba(213, 255, 79, 0.5) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  text-align: left;
}

/* Кнопка закрытия попапа */
.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

/* Стили формы */
.popup-content h2 {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 15px;
}

.popup-content p {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
}

.form-name__phone {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

#half-input {
  width: 45%;
}
#short-input {
  width: 50%;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-family: "Clash Display", sans-serif;
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #000;
  border-radius: 15px;
  background-color: #fafafa;
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* padding-right: 40px; */
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
.select-container:after {
  background-image: url("../images/downarrow.svg"); /* Вставьте путь к вашей иконке стрелки */
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.sub-btn {
  margin: auto;
}

.arrow-icon {
  margin-left: 5px;
}

.popup-content select option {
  background-color: #ffffff;
  color: #000;
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 12px;
  border-bottom: 1px solid #e0e0e0;
}

#course-select option {
  background-color: white;
}

#course-select {
  background-image: url("../images/downarrow.svg"); /* Вставьте путь к вашей иконке стрелки */
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
#tarif {
  background-image: url("../images/downarrow.svg"); /* Вставьте путь к вашей иконке стрелки */
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
/* Стилизация самого контейнера select */
.mobile-only {
  display: none;
}
.footer {
  width: 100%;
  padding: 25px 68px;
  background-color: #1f1f1f;
}
.footer-container {
  max-width: 1158px;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}
.footer-container__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 46px;
}
.footer-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 46px;
}

.footer-top__content {
  display: flex;
  align-items: center;
  gap: 140px;
}
.footer-top__logo-link {
  display: block;
  height: 85px;
}
.footer-top__logo-link img,
.footer-top__logo-link picture {
  height: 100%;
  max-width: 200px;
}

.footer-top__location {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-top__location p,
.footer-top__location h3 {
  margin: 0;
}

.footer-top__location h3 {
  color: #fafafa;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

.footer-top__location p {
  color: #fafafa;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9;
  text-transform: capitalize;
}
.footer-top-nav__container {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  column-gap: 89px;
  padding-left: 0;
  margin: 0;
}

.footer-top-nav__container-item {
  color: #fafafa;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-top-nav__container-item,
.footer-list ul {
  list-style-type: none;
  padding-left: 0;
}

.footer-top-nav__container-link {
  color: #ffffff;
}

.footer-list {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.footer-list::before {
  content: "";
  position: absolute;
  top: -46px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fafafa;
}

.footer-list::after {
  content: "";
  position: absolute;
  bottom: -46px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fafafa;
}

.footer-list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-list ul li h3 {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}

.footer-list ul li p {
  color: #c8c8c8;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.footer-bottom {
  color: #fafafa;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9;
  text-transform: uppercase;
  margin: 25px 0 0 0;
}
.footer-top__location {
  display: flex;
}
.mob {
  display: none;
}

.popup-overlay-push {
  display: none; /* Скрыто по умолчанию */
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px); /* Эффект размытия фона */
  padding: 10px;
}
.popup-img-push {
  max-width: 412px;
  position: relative;
  right: 20px;
}
.popup-push {
  border-radius: 35px;
  max-width: 1019px;
  background: var(
    --background,
    radial-gradient(
      55.09% 162.09% at 54.32% -24.47%,
      rgba(213, 255, 79, 0.5) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    radial-gradient(
      139.1% 94.44% at 7.81% 79.32%,
      rgba(52, 101, 251, 0.4) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    #fff
  );
  padding: 40px 92px 60px 36px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.close-btn-push {
  position: absolute;
  top: 21px;
  right: 21px;
  cursor: pointer;
  font-size: 18px;
}
.popup-container-left {
  max-width: 513px;
  width: 100%;
}
.popup-container-push {
  display: flex;
  gap: 34px;
  align-items: center;
}
.popup-title-push {
  color: #000;
  text-align: center;
  font-family: "Clash Display";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.popup-subtitle-push {
  color: #000;
  text-align: center;
  font-family: "Clash Display";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  /* margin-bottom: 20px; */
  max-width: 366px;
  margin: 0 auto 20px;
}
.popup-countdown-push {
  margin-bottom: 20px;
  padding: 0;
}
.popup-btn-push {
  border-radius: 40px;
  background: var(--blue, #3465fb);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  width: 400px;
  align-items: center;
  height: 70px;
  color: var(--white, #fafafa);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Syne;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 125% */
  margin: auto;
  text-decoration: none;
  justify-content: center;
}
.popup-btn-push:hover {
  text-decoration: none;
  width: 440px;
}
.popup-img-push {
  display: block;
}
.popup-img-push-mob {
  display: none;
}
.new-price {
  color: var(--white, #fafafa);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "DM Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 0; /* 206.25% */
  margin-bottom: 14px;
}
.price-title {
  margin-bottom: 40px !important;
}
.price-old {
  color: #d5ff4f !important;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "DM Sans";
  font-size: 60px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 0;
  text-decoration: line-through;
  margin-top: 20px;
}
.event {
  background-image: url(../images/11.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  width: 100%;
  padding: 40px 0 47px;
}
.event-title {
  color: #fff;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Clash Display";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px; /* 115% */
  margin-bottom: 40px;
  text-transform: uppercase;
}
.event__block-left {
  max-width: 538px;
  width: 100%;
}
.event__block-left__title {
  color: #d5ff4f;
  font-family: "Clash Display";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.event__block-left__subtitle {
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Syne;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 25px;
}
.event__color {
  color: #8d0002;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Syne;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.event__block-left__text {
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;

  font-family: Syne;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 125% */
}
.image-container-desk {
  position: relative;
}
.event__block-right {
  max-width: 676.5px;
  width: 100%;
  height: 592px;
  position: relative;
}
.event__blocks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.event__block-link {
  margin: auto;
  display: block;
  position: absolute;
  color: #fff;
  bottom: 10%;
  left: 28%;
  border-radius: 40px;
  background: var(--black, #1f1f1f);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  z-index: 10;
}
.event__block-link:hover {
  text-decoration: none;
  background: linear-gradient(180deg, #d5ff4f);
}
.event__block-link::after {
  background-color: #fff;
}
.event__block-link::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.event__block-link p {
  margin-bottom: 0;
}
.marketing-button {
  width: 400px;
}
.marketing-button:hover {
  width: 440px;
}
.image-container {
  display: none;
}
.event-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}
.carousel-button {
  width: 216px;
  display: flex;
  align-items: center;
  height: 64px;
  background-color: #3465fb !important;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  border-radius: 40px;
  font-size: 20px;
}
.carousel-button:hover {
  text-decoration: none;

  background: #d5ff4f !important;
}
.snow {
  top: 0px;
  /* background: #fff; */
  width: 100%;
  height: 100%;
  /* min-height: 800px; */
  /* position: absolute; */
  left: 0%;
  z-index: 10;
  position: relative;
}

.fallingSnow {
  text-align: center;
  position: relative;
  z-index: 999;
  height: 0;
}
.fallingSnow span {
  display: inline-block;
  width: 20px;
  height: 21px;
  margin: -20px 60px 54px -34px;
  background: url("../images/test.png");
  background-repeat: no-repeat;

  -webkit-animation: fallingSnow 12s infinite
    cubic-bezier(0.35, 0.45, 0.39, 0.29);
  -moz-animation: fallingSnow 12s infinite cubic-bezier(0.35, 0.45, 0.39, 0.29);
}
.fallingSnow span:nth-child(5n + 5) {
  -webkit-animation-delay: 1.3s;
  -moz-animation-delay: 1.3s;
}
.fallingSnow span:nth-child(3n + 2) {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
}
.fallingSnow span:nth-child(2n + 5) {
  -webkit-animation-delay: 1.7s;
  -moz-animation-delay: 1.7s;
}

.fallingSnow span:nth-child(3n + 10) {
  -webkit-animation-delay: 2.7s;
  -moz-animation-delay: 2.7s;
}
.fallingSnow span:nth-child(7n + 2) {
  -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
}
.fallingSnow span:nth-child(4n + 5) {
  -webkit-animation-delay: 5.5s;
  -moz-animation-delay: 5.5s;
}
.fallingSnow span:nth-child(3n + 7) {
  -webkit-animation-delay: 8s;
  -moz-animation-delay: 8s;
}
@-webkit-keyframes fallingSnow {
  0% {
    opacity: 1;

    -webkit-transform: translate(0, 0px) rotateZ(0deg);
  }
  75% {
    opacity: 1;

    -webkit-transform: translate(100px, 700px) rotateZ(270deg);
  }
  100% {
    opacity: 0;

    -webkit-transform: translate(150px, 900px) rotateZ(360deg);
  }
}
@-moz-keyframes fallingSnow {
  0% {
    opacity: 1;

    -webkit-transform: translate(0, 0px) rotateZ(0deg);
  }
  75% {
    opacity: 1;

    -webkit-transform: translate(100px, 700px) rotateZ(270deg);
  }
  100% {
    opacity: 0;

    -webkit-transform: translate(150px, 900px) rotateZ(360deg);
  }
}
@media (max-width: 1200px) {
  .event__block-left {
    max-width: 991px;
  }
}
@media (max-width: 991px) {
  .event__block-left {
    max-width: 100%;
  }
  .event {
    background-position: right;
  }
  .event__blocks {
    gap: 0;
  }
}

@media (max-width: 767px) {
  .event__block-right {
    display: none;
  }

  .event {
    background-image: url(../images/4.png);
  }

  .image-container {
    position: relative;
    display: inline-block;
  }

  .image-container img {
    display: block;
    max-width: 100%;
  }

  .image-container .clickable-area {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 322px;
    height: 59px;
    display: block;
    z-index: 10;
  }
}
@media (max-width: 575px) {
  .image-container .clickable-area {
    width: 263px;
  }
  .event-title {
    color: #fff;
    text-align: center;

    /* Подзаголовок моб */
    font-family: "Clash Display";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
  }
  .event__block-left__title {
    /* Подзаголовок моб */
    font-family: "Clash Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.16px;
    text-transform: uppercase;
  }
  .event__block-left__subtitle {
    font-family: "Clash Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.15px;
  }
  .event__color {
    font-family: "Clash Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.15px;
  }
  .event__block-left__text {
    font-feature-settings: "liga" off, "clig" off;

    /* ОСновной текст моб */
    font-family: Syne;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
}

@media (max-width: 1310px) {
  .carousel-control-next {
    right: -20px;
    width: 60px;
    height: 60px;
  }
  .carousel-control-prev {
    left: -20px;
    width: 60px;
    height: 60px;
  }

  .section-title {
    font-size: 40px;
  }
  .pricing-card h3 {
    font-size: 30px;
  }
  .pricing-card .price {
    font-size: 40px;
  }
  .pricing-card .pro-image img.sale {
    position: absolute;
    right: -35px;
    top: -33px;
    width: 131px;
    height: auto;
  }

  .experience-block .text-content h3 {
    font-size: 30px;
  }
  .experience-block .text-content p {
    font-size: 25px;
  }
  .image-left,
  .image-right {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .fallingSnow {
    display: none;
  }
}
@media (max-width: 1179px) {
  .header-content__nav {
    width: 75%;
  }
  .image-left {
    left: 0;
  }

  .detail-item p {
    font-size: 25px;
  }
  .detail-item h3 {
    font-size: 18px;
  }
  .carousel-caption h3 {
    font-size: 30px;
  }
  .carousel-caption .highlighted-text {
    font-size: 16px;
  }
  .carousel-caption p.hidden-text {
    margin-top: 0px;
    font-size: 14px;
  }
  .carousel-button {
    padding: 10px 20px;
    font-size: 18px;
  }
  .pricing-card h3 {
    font-size: 25px;
  }
  .pro-image img {
    width: 38%;
  }
  .pricing-card .btn {
    font-size: 18px;
    padding: 10px 22px;
  }
  .experience-block .text-content h3 {
    font-size: 28px;
  }
  .experience-block .text-content p {
    font-size: 20px;
    line-height: 35px;
  }

  .arrow {
    max-width: 100px;
  }
  .dollar {
    max-width: 100px;
  }
  .content h1 {
    font-size: 35px;
    line-height: 35px;
    width: 100%;
  }
}
@media (max-width: 1103px) {
  .header-content__nav__item {
    padding: 5px;
    font-size: 18px;
  }
}

@media (max-width: 1048px) {
  .marketing-block__content h1 {
    font-size: 44px;
  }
  .marketing-block__content h2 {
    font-size: 32px;
  }
  .marketing-block__content p {
    font-size: 20px;
  }
  .countdown-item {
    padding: 6px 20px;
  }
  .countdown-number {
    font-size: 28px;
  }
  .graduates-info h2 {
    font-size: 35px;
  }
  .graduates-info p {
    font-size: 18px;
  }
  .skills-info h2 {
    font-size: 35px;
  }
  .pricing-card .btn {
    font-size: 16px;
    padding: 6px 16px;
  }
  .pricing-card ul li {
    font-size: 14px;
  }
  .section-title {
    font-size: 35px;
  }
  .about-us-content p {
    font-size: 25px;
    line-height: 35px;
  }
}

@media (max-width: 1000px) {
  .experience-block .text-content h3 {
    font-size: 25px;
    line-height: 30px;
  }
  .experience-block .text-content p {
    font-size: 18px;
  }
  .popup-push {
    padding: 20px;
  }
}
@media (max-width: 950px) {
  .popup-btn-push {
    height: 62px;
    padding: 10px;
    font-size: 18px !important;
    padding-right: 20px !important;
  }

  .popup-btn-push::after {
    width: 15px !important;
  }

  .popup-btn-push:hover:after {
    width: 25px !important;
  }

  .popup-title-push {
    font-size: 20px;
    max-width: 229px;
    margin: 0 auto 12px;
  }
  .popup-subtitle-push {
    margin-bottom: -12px;
    font-size: 14px;
    max-width: 217px;
  }
  .close-btn-push {
    right: 16px;
    top: 16px;
  }

  .popup-container-push {
    flex-direction: column;
  }
  .popup-overlay-push {
    overflow: scroll;
  }
  .popup-img-push {
    display: none;
  }
  .popup-img-push-mob {
    max-width: 295px;
    margin: auto;
    display: block;
    position: relative;
    top: 19px;
    z-index: 0;
    left: 2px;
  }
  .popup-countdown-push {
    position: relative;
    margin-bottom: 40px;
  }
  .popup-container-push {
    gap: 0;
  }
  .popup-overlay-push {
    padding: 0;
  }
  .popup-push {
    padding: 15px 20px;
  }
  .push-item {
    padding: 0px 16px;
  }
}
@media (max-width: 950px) {
  .header-content__nav__item {
    padding: 0px;
    font-size: 16px;
  }

  .line-overlay {
    width: 80%;
  }

  .footer-top__content {
    gap: 100px;
  }

  .footer-top-nav__container {
    column-gap: 69px;
  }
}

@media (max-width: 925px) {
  .pricing-card .btn {
    font-size: 12px;
  }

  .footer-top__content {
    gap: 80px;
  }

  .footer-top-nav__container {
    column-gap: 30px;
  }
}

@media (max-width: 886px) {
  .header-content__nav {
    width: 70%;
    gap: 10px;
  }
  .header-content {
    padding: 20px;
  }
  .header-content__nav__item {
    padding: 0px;
    font-size: 14px;
  }
  .marketing-block__content h1 {
    font-size: 35px;
  }
  .marketing-block__content h2 {
    font-size: 25px;
  }
  .marketing-block__content p {
    font-size: 18px;
  }
  .graduates-info p {
    font-size: 16px;
  }
  .graduates-info h2 {
    font-size: 28px;
  }
  .skills-info h2 {
    font-size: 28px;
  }
  .section-title {
    font-size: 28px;
  }
  .about-us-content p {
    font-size: 23px;
  }
  .experience-block .text-content h3 {
    font-size: 22px;
  }
  .experience-block .text-content p {
    font-size: 16px;
    line-height: 25px;
  }
}
/* Основные стили для мобильного вида */
@media (max-width: 768px) {
  body {
    background: radial-gradient(
        52.54% 137.84% at 7.81% 79.32%,
        rgba(52, 101, 251, 0.4) 0%,
        rgba(255, 255, 255, 0) 100%
      ),
      radial-gradient(
        38.4% 161.39% at 54.32% -24.47%,
        rgba(213, 255, 79, 0.5) 0%,
        rgba(255, 255, 255, 0) 100%
      ),
      linear-gradient(0deg, #def0c5, #dde9cb);
  }
  .pricing-card .pro-image img.sale {
    position: absolute;
    right: -52px;
    top: -42px;
    width: 165px;
    height: auto;
  }

  .price-old {
    font-size: 45px !important;
  }
  .header-content__nav {
    display: none; /* Скрываем навигацию по умолчанию */
    flex-direction: column;
    background: radial-gradient(
        52.54% 137.84% at 7.81% 79.32%,
        rgba(52, 101, 251, 0.4) 0%,
        rgba(255, 255, 255, 0) 100%
      ),
      radial-gradient(
        38.4% 161.39% at 54.32% -24.47%,
        rgba(213, 255, 79, 0.5) 0%,
        rgba(255, 255, 255, 0) 100%
      ),
      linear-gradient(0deg, #e0eec8, #cbe8ba);
    position: absolute;
    top: 12%;
    left: 0;
    width: 100%;
    border-radius: 0 0 20px 20px;
    padding: 10px 0;
    z-index: 9999;
    height: auto;
    border: none;
  }

  .header-content__nav__item {
    font-size: 16px;
    font-weight: 799;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    text-align: center;
    border: 2px solid #000000;
  }

  .header-content__burger {
    display: block; /* Показываем бургер-меню */
    z-index: 10000;
  }

  .header-content__nav.active {
    display: flex; /* Показываем меню при активации */
  }

  .marketing-block {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .line-overlay {
    display: none;
  }
  .marketing-block__content {
    max-width: 100%;
  }
  .marketing-block__content h1 {
    width: 100%;
    font-size: 35px;
    margin-bottom: 5%;
  }
  .marketing-block__content h2 {
    font-size: 25px;
  }
  .marketing-block__content p {
    font-size: 16px;
  }
  .marketing-block__cta {
    margin-top: 5%;
    display: flex;
    flex-direction: column;
  }
  .cta-button--primary {
    /* width: 50%; */
    display: flex;
    justify-content: center;
  }
  .cta-button--secondary {
    width: 45%;
    padding: 12px 20px;
  }
  .marketing-block__image {
    width: 100%;
  }
  /* .marketing-block__countdown {
        width: 100%;
    } */
  .course-details {
    flex-wrap: wrap; /* Разрешаем перенос строк */
    justify-content: center; /* Центрируем элементы */
  }

  .detail-item {
    width: 45%; /* Устанавливаем ширину каждого элемента на 45% */
    margin: 10px; /* Отступ между элементами */
  }

  .course-details .detail-item:nth-child(odd) {
    margin-right: 0; /* Убираем отступ справа для нечетных элементов */
  }

  .course-details .detail-item:nth-child(even) {
    margin-left: 0; /* Убираем отступ слева для четных элементов */
  }
  .skills-tags .tag {
    padding: 10px 15px;
  }

  #desctop-carousel {
    display: none !important;
  }
  #mob-carousel {
    display: flex !important;
  }
  .carousel-image-container {
    height: 450px;
  }
  .carousel-control-next {
    width: 50px;
    height: 50px;
    right: -20px;
  }
  .carousel-control-prev {
    width: 50px;
    height: 50px;
    left: -20px;
  }
  .desktop-only {
    display: none; /* Прячем блоки на мобильных устройствах */
  }

  .mobile-only {
    display: flex; /* Показываем слайдер на мобильных устройствах */
  }

  .pricing-card {
    width: 100%;
  }
  .pricing-card {
    height: 720px;
  }
  .pricing-card ul li {
    font-size: 20px;
  }
  .pricing-card h3 {
    font-size: 36px;
  }
  .pro-image img {
    width: auto;
  }
  .pro-image img {
    font-size: 20px;
    padding: 12px 22px;
  }
  .about-us-content p {
    font-size: 20px;
  }
  .about-us-content .arrow-icon {
    width: 140px;
  }
  .about-us-content .dollar-icon {
    width: 120px;
  }

  .experience-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Меняем направление на колонку */
    text-align: center;
  }
  .text-content {
    display: flex;
    align-items: center;
  }
  .image-content {
    order: -1; /* Перемещаем изображение выше текста */
  }
  .experience-block .text-content,
  .experience-block .image-content {
    width: 100%;
  }
  .experience-block .text-content h3 {
    font-size: 28px;
  }
  .experience-block .text-content p {
    font-size: 16px;
  }
  .comment-card-container {
    min-height: 350px;
  }
  .section-title {
    line-height: 35px;
  }
  #texttoplanet {
    margin-left: 0;
  }
  .carousel-indicators {
    bottom: -15%;
  }
  .main-section {
    flex-direction: row;
    padding: 5%; /* Уменьшаем padding для мобильных устройств */
    align-items: flex-start; /* Выравниваем элементы по верхнему краю */
    justify-content: space-between;
  }

  .image-left,
  .image-right {
    width: 100%; /* Уменьшаем ширину изображений на мобильных устройствах */
    min-width: 100px; /* Максимальная ширина изображений */
    position: relative;
    top: 160px;
  }

  .image-left img,
  .image-right img {
    width: 100%;
    margin-bottom: 10px; /* Добавляем отступ снизу */
  }

  .image-right .arrow {
    top: 10%;
    right: 0;
    width: 30%; /* Уменьшаем размер стрелки на мобильных устройствах */
  }

  .image-right .hand {
    bottom: 0;
    right: 5%;
    width: 40%; /* Уменьшаем размер руки на мобильных устройствах */
  }

  .content {
    width: 50%; /* Контент занимает 50% ширины */
    text-align: left;
    padding: 10px;
    z-index: 5;
  }

  .content h1 {
    font-size: 28px; /* Уменьшаем размер шрифта на мобильных устройствах */
    line-height: 1.2;
    max-width: 100%; /* Убираем ограничение по ширине */
  }

  .cta-button--primary {
    width: 275px;
  }

  .cta-button--primary:hover {
    width: 285px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .footer-right {
    display: flex;
    flex-direction: column;

    text-align: center;
  }
  .footer-left,
  .footer-right {
    order: 1;
  }
  .footer-logo {
    order: -1;
  }
  .footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }
  .popup-content {
    width: 100%;
  }
  .footer-top {
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 0;
  }
  .footer-top-nav__container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding-left: 0;
  }
  .footer-list {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-list::before {
    content: none;
  }
  .footer-top__location {
    display: none;
  }
  .mob {
    text-align: center;
    align-items: center;
    display: flex;
    margin-bottom: 20px;
  }
  .footer-top-nav__container {
    gap: 0;
  }
}
a:hover {
  color: unset;
}

@media (max-width: 680px) {
  .carousel-caption h3 {
    font-size: 25px;
  }
}
@media (max-width: 655px) {
  .marketinаg-block__content h1 {
    font-size: 32px;
  }
  .cta-button--primary {
    font-size: 16px;
    font-weight: 400;
  }
  .cta-button--secondary {
    font-size: 16px;
    font-weight: 400;
  }
  .pricing-card h3 {
    font-size: 28px;
  }
  .pricing-card .price {
    font-size: 30px;
  }
  .pricing-card ul li {
    font-size: 16px;
  }
  .content h1 {
    font-size: 20px;
  }
  .footer-nav a {
    font-size: 14px;
  }
  .footer-bottom p {
    font-size: 10px;
  }
}

@media (max-width: 620px) {
  .carousel-caption h3 {
    font-size: 20px;
  }
  .carousel-caption .highlighted-text {
    margin-bottom: 0;
    font-size: 14px;
  }
  .carousel-caption p.hidden-text {
    font-size: 10px;
  }
}
@media (max-width: 605px) {
  .marketing-block__content h1 {
    font-size: 28px;
  }
  .marketing-block__content h2 {
    font-size: 20px;
  }
  .marketing-block__content p {
    font-size: 14px;
  }

  .countdown-item__min {
    width: 70%;
  }
  .countdown-number {
    font-size: 18px;
  }
  .countdown-label {
    font-size: 12px;
  }
  .twodots {
    font-size: 12px !important;
  }
  .image-left {
    position: relative;
    left: -5%;
  }
  .image-left .dollar {
    width: 70%;
  }
}

@media (max-width: 500px) {
  .cta-button {
    padding: 5px;
    font-size: 14px;
    width: 260px;
    margin: auto;
    height: 55px;
  }

  .cta-button:hover {
    width: 300px;
  }

  .cta-button:hover::after {
    width: 40px;
  }

  .cta-button--secondary {
    margin: auto;
  }

  .marketing-block__content h1 {
    font-size: 28px;
  }
  .marketing-block__content h2 {
    font-size: 17px;
  }
  .marketing-block__content p {
    font-size: 12px;
  }
  .cta-button {
    padding: 5px;
    font-size: 14px;
  }
  .cta-button--secondary {
    padding: 10px;
    font-size: 14px;
  }
  .highlight-box {
    max-width: 50%;
    top: 10%;
    left: 5%;
  }
  .highlight-text {
    font-size: 20px;
  }
  .highlight-subtext {
    font-size: 10px;
    line-height: 10px;
  }
  .marketing-block__image img {
    width: 100%;
  }

  .detail-item p {
    font-size: 20px;
  }
  .detail-item h3 {
    font-size: 14px;
  }
  .carousel-button {
    font-size: 15px;
    padding: 5px 10px;
  }
  /* .pricing-card {
    height: auto;
  } */
  .experience-block .text-content h3 {
    font-size: 25px;
  }

  .popup-content h2 {
    font-size: 20px;
  }
  .popup-content p {
    font-size: 14px;
  }
  .submit-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-width: 405px) {
  .header-content__logo img {
    width: 90%;
  }
  .header-content__burger img {
    width: 30px;
    height: 30px;
  }
  .header-content__logo img {
    width: 80%;
  }
  .countdown-label {
    font-size: 10px;
  }
  .countdown-item {
    min-width: auto;
  }
  .countdown-item {
    padding: 10px;
  }
  .graduates-info h2 {
    font-size: 24px;
  }
  .carousel-caption h3 {
    font-size: 18px;
  }
  .carousel-caption .highlighted-text {
    font-size: 10px;
  }
  .about-us-content .arrow-icon {
    width: 110px;
  }
  .about-us-content .dollar-icon {
    width: 110px;
    right: -40px;
  }
  .about-us-content p {
    font-size: 18px;
    line-height: 25px;
  }
  .cta-button {
    padding: 5px;
    font-size: 14px;
  }
  .image-left,
  .image-right {
    display: none;
  }
  .footer-bottom {
    font-size: 8px;
  }
}

@media (max-width: 365px) {
  .popup-img-push-mob {
    max-width: 220px;
  }
  .close-btn-push {
    right: 8px;
    top: 10px;
  }
  .popup-countdown-push {
    margin-bottom: 30px;
  }
  .marketing-block__content h1 {
    font-size: 22px;
  }
  .detail-item p {
    font-size: 18px;
  }
  .detail-item h3 {
    font-size: 12px;
  }
  .graduates-info h2 {
    font-size: 22px;
  }
  .graduates-info p {
    font-size: 12px;
  }
  .skills-info h2 {
    font-size: 22px;
  }
  .section-title {
    font-size: 22px;
  }
  .skills-tags .tag {
    font-size: 18px;
  }
  .popup-content h2 {
    font-size: 16px;
  }
  .popup-content p {
    font-size: 10px;
  }
  .form-group label {
    font-size: 10px;
  }
  .form-group input,
  .form-group select {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  .detail-item p {
    font-size: 15px;
  }
  .detail-item h3 {
    font-size: 10px;
  }
  .carousel-caption p.hidden-text {
    margin-top: 2px;
    font-size: 8px;
  }
  .carousel-caption h3 {
    font-size: 15px;
  }
  .carousel-caption .highlighted-text {
    font-size: 8px;
  }
}

@media (max-width: 300px) {
  .marketing-block__countdown {
    gap: 30px;
  }
  .cta-button--primary {
    width: 60%;
  }
  .cta-button--secondary {
    width: 50%;
  }
  .popup-content h2 {
    font-size: 14px;
  }
  .submit-btn {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .skills-tags .tag {
    height: 90px;
  }
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.col-6 {
  flex: auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.market-mob {
  display: none;
}

@media (max-width: 500px) {
  .market-mob {
    display: flex;
    justify-content: center;
    position: relative;
    left: -5px;
  }

  .market-mob:hover {
    left: -71px;
  }

  .market-desk {
    display: none;
  }

  .btn-old,
  .btn-mob {
    margin: 0;
    margin-top: auto;
    width: 90% !important;
    padding-right: 30px;
  }

  .pricing-card {
    justify-content: start;
  }

  .carousel-button {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .skills-tags .tag {
    font-size: 20px;
    height: 78px;
    min-width: 309px;
  }
  .event__block-link {
    bottom: 9%;
    left: 18%;
  }
}

@media (max-width: 620px) {
  .carousel-caption p.hidden-text {
    font-size: 12px;
  }
}

@media (max-width: 620px) {
  .carousel-caption .highlighted-text {
    margin-bottom: 0;
    font-size: 12px;
  }

  .btn-old,
  .btn-mob {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .carousel-image-container {
    height: 490px;
  }

  .btn-old,
  .btn-mob {
    width: 50%;
  }
}

.btn-desktop {
  width: 260px !important;
}

.btn-desktop:hover {
  width: 300px !important;
}

@media (max-width: 1200px) {
  .pricing-card {
    width: 43% !important;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    width: 100% !important;
  }

  .btn-desktop {
    width: 300px !important;
  }

  .btn-desktop:hover {
    width: 340px !important;
  }
}

@media (max-width: 575px) {
  .pricing-card {
    width: 100% !important;
  }

  .btn-desktop {
    width: 220px !important;
  }

  .btn-desktop:hover {
    width: 260px !important;
  }
}
.iti {
  width: 100%;
  z-index: 999999;
}

.iti__selected-flag {
  background-color: transparent !important;
}

._error {
  box-shadow: 0 10px 20px -12px #f12b2b !important;
  color: #f12b2b !important;
  border: 2.5px solid #f12b2b !important;
  font-weight: bolder;
}

label._error {
  box-shadow: none !important;
  color: #f12b2b !important;
  border: none !important;
  font-weight: bolder;
}

._error::placeholder {
  color: #f12b2b !important;
  font-weight: bolder;
}

*[type="submit"]:disabled {
  opacity: 50%;
  cursor: not-allowed;
}
.countdown-item__min {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px, 24px, 8px, 24px;
  border-radius: 19px;
  background-color: #fafafa;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.twodots {
  font-size: 34px;
  font-weight: 500;
  color: #717171;
  font-family: "Syne", sans-serif;
}

#days {
  background-color: #1f1f1f;
  color: #fafafa;
}
.section-404 {
  padding: 80px 0 150px;
}

.section-404__wrapper {
  position: relative;
  max-width: 998px;
  margin: auto;
  padding: 40px 20px; /* отступы внутри, чтобы текст не прилипал */
  z-index: 1;
}

.section-404__bg {
  position: absolute;
  top: -61px;
  left: 0;
  width: 100%;
  height: 328px;
  object-fit: cover; /* обеспечит масштабирование */
  z-index: -1;
  pointer-events: none; /* чтобы клик проходил сквозь */
  user-select: none;
}
.section-404__desc {
  position: relative;
  bottom: -84px;
}

.section-404__title {
  color: var(--black, #1f1f1f);
  text-align: center;
  margin-bottom: 20px;
  /* Заголовок */
  font-family: "Clash Display";
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 59.4px */
  text-transform: uppercase;
}
.section-404__text {
  color: var(--black, #1f1f1f);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  margin-bottom: 30px;
  /* Основной текст */
  font-family: Syne;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 125% */
}
.section-404__wrapper-btn {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.section-404__secondary {
  max-width: 244px;
  text-transform: uppercase;
  width: 100%;
}
.section-404__primary {
  max-width: 204px;
  justify-content: start;
  width: 100%;
}
.section-404__bg-mob {
  display: none;
}
@media (max-width: 991px) {
  .section-404__bg {
    height: auto;
  }
}
@media (max-width: 767px) {
  .section-404__bg {
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    user-select: none;
  }
}
@media (max-width: 575px) {
  .section-404__bg-mob {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: none;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    display: block;
  }
  .section-404__primary {
    max-width: 280px;
    justify-content: center;
    width: 100%;
  }
  .section-404__secondary {
    max-width: 280px;
    text-transform: uppercase;
    width: 100%;
  }
  .section-404__wrapper-btn {
    flex-direction: column;
    gap: 14px;
  }
  .section-404__bg {
    display: none;
  }
  .section-404__wrapper {
    padding: 0;
  }
  .section-404 {
    padding: 0 0 150px 0;
  }
  .section-404__primary {
    justify-content: center;
    height: 45px;
  }
  .section-404__title {
    color: var(--black, #1f1f1f);
    text-align: center;
    margin-bottom: 12px;
    /* Заголовок Моб */
    font-family: "Clash Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 26.4px */
    text-transform: uppercase;
  }
  .section-404__text {
    color: var(--black, #1f1f1f);
    text-align: center;
    font-feature-settings: "liga" off, "clig" off;
    margin-bottom: 25px;
    /* Основной текст 18 */
    font-family: Syne;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
}
@media (max-width: 380px) {
  .section-404__bg-mob {
    position: absolute;
    top: 12px;
  }
}
/* ==================== BREADCRUMBS STYLES ==================== */

.breadcrumbs-container {
  padding: 20px 0 0; /* Только верхний отступ 20px */
  background-color: transparent;
  margin-bottom: 25px; /* Добавляем нижний отступ через margin, чтобы общий отступ до контента был 25px */
}

.breadcrumbs-container .container {
  background-color: transparent;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--gray, #717171);
  font-feature-settings: "liga" off, "clig" off;

  /* Основной текст маленький */
  font-family: Syne;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 115.986%; /* 18.558px */
}

.breadcrumbs__link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.breadcrumbs__link:hover {
  color: var(--hover-color);
}

.breadcrumbs__current {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  color: var(--black, #1f1f1f);
  font-family: Syne;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.breadcrumbs__separator {
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  color: var(--black, #1f1f1f);
  font-feature-settings: "liga" off, "clig" off;

  /* Основной текст маленький */
  font-family: Syne;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 115.986%; /* 18.558px */
}

.breadcrumbs__separator-icon {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 12px; /* Размер шрифта 12px для мобильной версии */
  }

  .breadcrumbs-container {
    padding: 15px 0 0; /* Только верхний отступ 15px */
    margin-bottom: 20px; /* Добавляем нижний отступ через margin, чтобы общий отступ до контента был 20px */
  
  }

  /* Для страниц, где хлебные крошки могут быть скрыты или отсутствовать */
  body.fixed-header main {
    padding-top: 0; /* Убираем отступ для контента */
  }

  .breadcrumbs__separator-icon {
    width: 12px;
    height: 12px;
  }
}
/*
Roadmap
 */
.roarmap-block {
  padding: 80px 0 80px 0px;
  max-width: 1212px;
  display: inline-block;
  width: 1212px;
  position: relative;
}
.roarmap-block h2 {
  font-family: "Clash Display", sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 95px;
  color: #000;
  text-transform: uppercase;
  text-align: left;
}
.roadmap-items {
  width: 1054px;
  height: 531px;
  position: relative;
  margin: 0 auto;
}
.roadmap-sf {
  border: solid 3px rgba(213, 255, 79, 1);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.in-sf {
  width: 116px;
  height: 116px;
  background: rgba(213, 255, 79, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.in-sf span {
  font-family: "Clash Display", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}
.roadmap-street img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.roadmap-start {
  position: absolute;
  left: -70px;
  top: -30px;
}
.roadmap-finish {
  position: absolute;
  right: -70px;
  bottom: -15px;
}
.roadmap-item {
  display: flex;
  flex-direction: row;
  gap: 28px;
  position: absolute;
}
.item-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  line-height: 140%;
}
.item-content p {
  margin: 0;
  font-family: "Clash Display", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  color: #000;
  text-transform: uppercase;
}
.roadmap-item-1 {
  left: 272px;
  top: 35px;
}
.roadmap-item-2 {
  left: -70px;
  top: 290px;
  text-align: right;
}
.roadmap-item-2 .item-icon {
  position: absolute;
  right: -113px;
  bottom: 0;
}
.roadmap-item-3 {
  right: -40px;
  top: 195px;
}
.roadmap-item-4 {
  left: 180px;
  bottom: -20px;
  text-align: right;
}
.roadmap-item-4 .item-icon {
  position: absolute;
  right: -113px;
  bottom: 0;
}
.roadmap-offers p {
  margin: 0;
  font-family: "Clash Display", sans-serif;
  font-size: 36px;
  line-height: 100%;
  font-weight: 500;
  color: #000;
}
.roadmap-offers {
  background: rgba(213, 255, 79, 1);
  border-radius: 30px;
  text-align: center;
  display: inline-block;
  padding: 12px 20px 12px 20px;
  font-family: "Clash Display", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  min-width: 292px;
  left: -35px;
  bottom: 100px;
  transform: rotate(-15deg);
}
#roadmap .rd, #roadmap .curr {
  position: absolute;
  z-index: -1;
}
#roadmap .rd {
  left: 250px;
  bottom: 70px;
}
#roadmap .curr {
  right: 140px;
  top: 175px;
}
@media only screen and (min-width : 320px) and (max-width : 767px) {
  .street-illustration-pc, #roadmap .rd, .item-content span br {
    display: none;
  }
  .street-illustration-mob, .item-icon-mob {
    display: block !important;
  }
  .roarmap-block h2 {
    position: absolute;
    font-size: 20px;
    left: 80px;
    top: 125px;
  }
  .roadmap-item {
    position: relative;
    left: auto;
    right: 0;
    bottom: auto;
    top: auto;
    text-align: left!important;
  }
  .roadmap-items {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 2px;
  }
  .roarmap-block {
    width: 100%;
    max-width: 100%;
    padding: 80px 0 0px 0px;
  }
  .roadmap-item .item-icon {
    display: none;
  }
  .roadmap-sf {
    width: 50px;
    height: 50px;
  }
  .in-sf {
    width: 42px;
    height: 42px;
  }
  .in-sf span {
    font-size: 8px;
  }
  .roadmap-start {
    position: absolute;
    left: 25px;
    top: -25px;
  }
  .roadmap-street img {
    position: relative;
  }
  .roadmap-finish {
    position: absolute;
    right: auto;
    left: 25px;
    bottom: 135px;
  }
  .item-content p, .item-content span {
    font-size: 15px;
    line-height: 100%;
  }
  #roadmap .curr {
    z-index: -1;
    width: 80px;
    right: 35px;
    top: 47%;
  }
  .item-content div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 70%;
  }
  .item-content {
    margin-bottom: 18px;
  }
  .item-icon-mob {
    position: relative;
    left: -30px;
  }
  .roadmap-content {
    margin-top: 109px;
  }
  .roadmap-offers {
    transform: rotate(4deg);
    right: 20%;
    left: auto;
    font-size: 11px;
    min-width: auto;
    bottom: 75px;
  }
  .roadmap-offers p {
    font-size: 16px;
  }
}