@charset "UTF-8";
/* CSS Reset - Базовый сброс стилей */
/* Универсальный сброс отступов и использование border-box */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* HTML и Body */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Заголовки */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

/* Параграфы */
p {
  margin: 0;
}

/* Списки */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Ссылки */
a {
  text-decoration: none;
  color: inherit;
}

/* Изображения */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Кнопки */
button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Поля ввода */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Таблицы */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Цитаты */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/* Скрытие элементов */
[hidden] {
  display: none;
}

/* Удаление дефолтных стилей для деталей */
details {
  display: block;
}

summary {
  display: list-item;
  cursor: pointer;
}

/* ============================================
   SCSS Переменные
   ============================================ */
/* ============================================
   Глобальные стили
   ============================================ */
body {
  font-family: "Ubuntu", sans-serif;
  font-size: clamp(16px, 1vw, 24px);
  line-height: 1.5;
  color: #ffffff;
  background-color: #020e20;
}

.container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 clamp(10px, 1vw, 15px);
}

/* Общие кнопки */
.gradient__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 25px 30px;
  background: linear-gradient(100deg, #dab250 30%, #40a0c6 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(14px, 1vw, 20px);
  transition: all 0.3s ease;
  cursor: pointer;
}
.gradient__btn--rounded {
  border-radius: 12px;
}
.gradient__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(218, 178, 80, 0.4);
}

.breadcrumps {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 120px;
  margin-bottom: clamp(50px, 8vw, 110px);
}

.breadcrumps__container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.breadcrumps__item {
  color: #ffffff;
  font-size: 14px;
}
.breadcrumps__item--current {
  color: #414b77;
}

.pagination__custom {
  display: flex;
  justify-content: center;
  margin-top: clamp(20px, 3vw, 40px);
}

.pagination__custom-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination__custom-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f3fcff;
  color: #414b77;
}
.pagination__custom-bullet:hover {
  background-color: #daf6ff;
}
.pagination__custom-bullet--current {
  background-color: #40a0c6;
  color: #ffffff;
}
.pagination__custom-bullet--current:hover {
  background-color: #3692b6;
}

.location {
  padding: 0 clamp(20px, 11vw, 120px);
  max-width: 1660px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 768px) {
  .location {
    padding: 0 20px;
  }
}

.location__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.location__map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.location__map iframe {
  width: 100%;
  height: clamp(300px, 50vw, 556px);
  border: none;
  display: block;
}

/* ============================================
   Header (шапка сайта)
   ============================================ */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  background: transparent;
  border: none;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
  pointer-events: none;
}
header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.header__left-container {
  display: flex;
  align-items: center;
  gap: clamp(10px, 3.5vw, 92px);
  padding-left: 39px;
}

.lang {
  display: flex;
  align-items: center;
  gap: clamp(3px, 0.2vw, 8px);
  font-size: clamp(14px, 1vw, 20px);
}

.lang__item {
  color: #f5f5f5;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
}
.lang__item:hover {
  color: #40a0c6;
}
.lang__item--selected {
  color: #40a0c6;
  font-weight: 700;
  text-decoration: underline;
}

.header-dot {
  width: 4px;
  height: 4px;
  background-color: #f5f5f5;
  border-radius: 50%;
}

.header__logo {
  display: flex;
  align-items: center;
}
.header__logo svg {
  height: 50px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-item {
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.header__nav-item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #40a0c6;
  transition: all 0.3s ease;
}
.header__nav-item:hover {
  color: #40a0c6;
}
.header__nav-item:hover::after {
  width: 100%;
}

/* Header Submenu Styles */
.header__nav-item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.header__submenu {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  min-width: 280px;
  background: rgba(11, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.header__nav-item-wrapper:hover .header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__submenu-item {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
}

.header__submenu-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #dab250 0%, #40a0c6 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.header__submenu-item:hover {
  background: rgba(64, 160, 198, 0.1);
  color: #40a0c6;
  padding-left: 28px;
}

.header__submenu-item:hover::before {
  opacity: 1;
}

.header__right-container {
  display: flex;
  align-items: center;
  gap: 39px;
}

.search {
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
}
.search:hover {
  color: #40a0c6;
}
.search svg {
  width: 24px;
  height: 24px;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 13px;
  transition: all 0.3s ease;
  color: #ffffff;
}
.header__contact span {
  display: flex;
  align-items: center;
}

.header__contact-number {
  font-size: clamp(14px, 1vw, 20px);
  font-weight: 500;
}

/* ============================================
   Banner (главный баннер)
   ============================================ */
.banner__main {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner__main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: 1;
}

.banner__main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(358.5deg, #020e20 2.28%, rgba(0, 0, 0, 0) 85.8%);
  z-index: 2;
}

.banner__main-image--mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: 1;
  filter: brightness(0.7);
  display: none;
}

.banner__main-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(100px, 10vw, 176px);
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(10px, 8vw, 120px);
}

.socials {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.socials--banner {
  position: absolute;
  top: -61%;
}

.socials-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1098039216);
  border-radius: 50%;
}
.socials-item:hover {
  transform: scale(1.1);
  color: #40a0c6;
}
.socials-item svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.banner__main-text {
  max-width: 914px;
}
.banner__main-text h1 {
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.banner__main-text p {
  font-size: clamp(22px, 1vw, 32px);
  color: #ffffff;
  line-height: 1.2;
}

.banner__main-btn-down {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}
.banner__main-btn-down svg {
  width: 18px;
  height: 24px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
/* ============================================
   About Company (о компании)
   ============================================ */
.about-company {
  position: relative;
  width: 100%;
  background-color: #020e20;
}

.about-company__uzor {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70dvw;
  z-index: 1;
  object-fit: cover;
}

.about-company__wrapper {
  padding: 120px 0px;
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
}

.about-company__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

.about-company__header-title {
  display: flex;
  font-size: clamp(32px, 3.5vw, 64px);
  font-weight: 700;
  color: #ffffff;
  position: relative;
}

.about-company__header-text {
  font-size: clamp(16px, 1vw, 24px);
  color: #f5f5f5;
  line-height: 1.7;
  text-align: right;
}
@media (max-width: 768px) {
  .about-company__header-text {
    text-align: left;
  }
}

.about-company__container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.about-company__desc {
  max-width: 440px;
}

.about-company__desc-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 24px;
}

.about-company__desc-text {
  font-size: clamp(14px, 1vw, 20px);
  color: #f5f5f5;
  line-height: 1.8;
}

.about-company__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}

.about-company__more {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  max-width: 342px;
  min-width: 280px;
}
.about-company__more:hover .about-company__more-arrow {
  transform: translateX(10px);
}
.about-company__more:hover img {
  transform: scale(1.05);
}
.about-company__more img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease;
}

.about-company__more-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(11, 26, 46, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.about-company__more-text {
  position: absolute;
  bottom: 50px;
  left: 50px;
  font-size: 25px;
  font-weight: 500;
  color: #ffffff;
  z-index: 3;
}

.about-company__numbers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-company__numbers-item {
  width: 100%;
  max-width: 467px;
  padding: 30px clamp(20px, 5vw, 120px);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.about-company__numbers-item--blue {
  background: radial-gradient(50% 50% at 50% 50%, #40a0c6 0%, #40a0c6 100%);
}
.about-company__numbers-item--gold {
  background: linear-gradient(135deg, #b8923f 0%, #dab250 100%);
}

.about-company__numbers-digit {
  font-size: clamp(40px, 5vw, 96px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  text-align: center;
}

.about-company__numbers-label {
  font-size: clamp(16px, 1vw, 24px);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.filter-gradient--black {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #020e20 83.35%);
  z-index: 2;
}

/* ============================================
   Our Sites (наши проекты)
   ============================================ */
.our-sites {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 8vw, 120px);
}

.our-sites__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.our-sites .filter-black {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(2, 14, 32, 0.85) 0%,
    rgba(11, 26, 46, 0.75) 100%
  );
  z-index: 2;
}

.our-sites__container {
  position: relative;
  z-index: 10;
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
}

.our-sites__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 3vw, 40px);
}

.our-sites__title {
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.our-sites__description {
  font-size: clamp(16px, 1.2vw, 24px);
  color: #f5f5f5;
  line-height: 1.7;
  max-width: 900px;
}

.our-sites__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: clamp(10px, 2vw, 20px);
}

.our-sites__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.our-sites__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transition: all 0.4s ease;
  z-index: 0;
}

.our-sites__button:hover::before {
  left: 0;
}

.our-sites__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(218, 178, 80, 0.5);
}

.our-sites__button svg {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .our-sites {
    min-height: 500px;
    padding: 60px 20px;
  }
  .our-sites__button {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Calendar Download (календарь мероприятий)
   ============================================ */
.calendar-download {
  width: 100%;
  background: linear-gradient(135deg, #0b1a2e 0%, #020e20 100%);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}

.calendar-download::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(64, 160, 198, 0.1) 0%,
    rgba(64, 160, 198, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.calendar-download__container {
  max-width: 1460px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.calendar-download__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 60px);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: clamp(30px, 4vw, 50px) clamp(30px, 5vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.calendar-download__icon {
  flex-shrink: 0;
  width: clamp(60px, 8vw, 80px);
  height: clamp(60px, 8vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #40a0c6;
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(218, 178, 80, 0.3);
}

.calendar-download__icon svg {
  width: clamp(32px, 4vw, 48px);
  height: clamp(32px, 4vw, 48px);
}

.calendar-download__text {
  flex: 1;
}

.calendar-download__title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(8px, 1vw, 12px);
  line-height: 1.2;
}

.calendar-download__description {
  font-size: clamp(14px, 1vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 700px;
}

.calendar-download__button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.calendar-download__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218, 178, 80, 0.4);
}

.calendar-download__button svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .calendar-download__content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .calendar-download__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .calendar-download__description {
    text-align: center;
  }

  .calendar-download__button {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   About City (места города)
   ============================================ */
.about-city {
  background-color: #0b1a2e;
  position: relative;
  z-index: 11;
}

.about-city__place {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-city__place:nth-child(even) .about-city__place-content {
  order: 2;
}
.about-city__place:nth-child(even) .about-city__place-image {
  order: 1;
}

.about-city__place-content {
  position: relative;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0f2847;
}

.about-city__place-content-container {
  position: relative;
  z-index: 3;
  max-width: 522px;
}
.about-city__place-content-container--right {
  max-width: 602px;
}
@media (max-width: 768px) {
  .about-city__place-content-container {
    padding: 0 0px;
  }
}

.about-city__place-content-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.filter-black {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 14, 32, 0.9);
  z-index: 2;
}

.about-city__place-info {
  margin-bottom: clamp(30px, 3vw, 50px);
}

.about-city__place-subtitle {
  display: block;
  font-size: clamp(16px, 1vw, 20px);
  color: #f5f5f5;
  letter-spacing: 1px;
  margin-bottom: clamp(16px, 2vw, 30px);
}

.about-city__place-title {
  font-size: clamp(32px, 3.5vw, 64px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: clamp(16px, 2vw, 30px);
}

.about-city__place-text {
  font-size: clamp(14px, 1vw, 20px);
  color: #f5f5f5;
  line-height: 1.3;
  max-width: 400px;
}

.about-city__place-image {
  position: relative;
  overflow: hidden;
}
.about-city__place-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.more-info-link {
  align-self: flex-start;
}

/* ============================================
   News (новости)
   ============================================ */
.news {
  position: relative;
  background-color: #0b1a2e;
  background-image: url("../images/front-page/new-banner-v2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.news__container {
  position: relative;
  z-index: 2;
  max-width: 1680px;
  margin: 0 auto;
  padding: 121px clamp(10px, 9vw, 120px) 131px clamp(10px, 9vw, 120px);
}

.news__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}

.news__header-content {
  max-width: 782px;
}

.news__header-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, 1vw, 20px);
  color: #caccd4;
  margin-bottom: 30px;
}

.news__header-title {
  font-size: clamp(32px, 3.5vw, 64px);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 30px;
}

.news__header-text {
  font-size: clamp(14px, 1vw, 20px);
  color: #caccd4;
  line-height: 1.5;
}

.news__header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news__header-actions-filter {
  display: flex;
}

.news__header-actions-filter-item {
  font-size: 16px;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding: 20px 30px;
  background-color: white;
  border: 1px solid transparent;
}
.news__header-actions-filter-item:hover {
  color: #40a0c6;
}
.news__header-actions-filter-item.active {
  color: #ffffff;
}
.news__header-actions-filter-item:nth-child(1) {
  border-radius: 12px 0 0 12px;
}
.news__header-actions-filter-item:nth-child(2) {
  border-radius: 0 12px 12px 0;
  border-left-color: rgba(2, 14, 32, 0.1);
}

.news__header-btn-all {
  white-space: nowrap;
  font-size: 16px;
  padding: 21px 30px;
}

.news__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  place-items: stretch;
}

.news__list-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 343px;
}

.news__list-item-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
}
.news__list-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease;
}
.news__list-item-image:hover img {
  transform: scale(1.05);
}

.news__list-item-content {
  padding: 20px;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.news__list-item-content--blue {
  background-color: #40a0c6;
}
.news__list-item-content--gold {
  background-color: #dab250;
}
.news__list-item-content--velvet {
  background-color: #414b77;
}

.news__list-item-location {
  display: inline-block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 42px;
}

.news__list-item-title-container {
  margin-bottom: 19px;
}

.news__list-item-date {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.news__list-item-title {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  vertical-align: middle;
}

.news__list-item-text {
  font-size: 12px;
  color: #ffffff;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   Footer (подвал)
   ============================================ */
.footer {
  background-color: #020e20;
  padding: 40px clamp(10px, 1vw, 15px) 50px;
}

.footer__container {
  max-width: 1460px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
}
.footer__logo img {
  height: 39px;
  width: auto;
}
.footer__logo svg {
  height: 39px;
  width: auto;
}

.footer__nav {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.footer__nav-item {
  font-size: clamp(16px, 1.5vw, 20px);
  color: #f5f5f5;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer__nav-item:hover {
  color: #40a0c6;
}

/* Footer Flattened Submenu Styles */
.footer__nav-item-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.footer__submenu {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  font-size: clamp(12px, 1vw, 14px);
}

.footer__bottom {
  padding-top: 40px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__socials-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
}
.footer__socials-item:hover {
  background-color: #40a0c6;
  color: #020e20;
}
.footer__socials-item svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   Decorative Line with Icons
   ============================================ */
/* Vertical line - always visible, fixed to viewport */
.decorative-line__line {
  position: fixed;
  left: 9%;
  top: 0;
  width: 2px;
  height: 100vh;
  background: linear-gradient(
    to bottom,
    rgba(229, 243, 255, 0.1019607843) 0%,
    rgba(229, 243, 255, 0.1019607843) 100%
  );
  pointer-events: none;
  z-index: 10;
}

/* Icons container - scrolls with page content */
.decorative-line__icons {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.decorative-line__icon {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: all 0.3s ease;
}

.decorative-line__icon-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ============================================
   Адаптивность
   ============================================ */

@media (max-width: 1790px) {
  .decorative-line__line {
    left: 6%;
  }
  .header__left-container {
    padding-left: 20px;
  }
}

@media (max-width: 1500px) {
  .about-company__wrapper {
    padding: 120px 120px;
  }
  .company-info,
  .breadcrumps {
    padding: 0 120px;
  }

  .header__left-container {
    padding-left: 15px;
  }
  .footer__container {
    padding: 0 8%;
  }
}

@media (max-width: 1300px) {
  .news__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1200px) {
  .header__nav {
    gap: 20px;
  }

  .about-company__content {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .about-company__more {
    height: -webkit-fill-available;
  }
  .footer__container {
    padding: 0;
  }
}
@media (max-width: 1125px) {
  .header__nav {
    display: none;
  }
  .banner__main-text h1 {
    font-size: 42px;
  }
  .about-company__uzor {
    display: none;
  }
  .about-company__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-city__place {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-city__place:nth-child(even) .about-city__place-content {
    order: 1;
  }
  .about-city__place:nth-child(even) .about-city__place-image {
    order: 2;
  }
  .about-city__place-image {
    height: 400px;
  }
  .about-city__place-content-image {
    display: none;
  }

  .news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .about-city__place-content {
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .news__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .breadcrumps {
    padding: 0 20px;
  }
  .header__contact-number {
    display: none;
  }
  .banner__main {
    min-height: 600px;
  }
  .banner__main-container {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .socials {
    flex-direction: row;
  }
  .banner__main-text h1 {
    font-size: 32px;
  }
  .about-company__wrapper {
    padding: 50px 15px;
  }
  .about-company__header-title {
    font-size: 40px;
  }
  .about-company__container {
    flex-direction: column;
  }
  .about-company__content {
    flex-direction: row;
  }
  .about-city__place-content {
    padding: 40px 20px;
  }
  .about-city__place-title {
    font-size: 28px;
  }
  .news {
    padding: 60px 0;
    /* background-image: none;
    background-color: rgba(255, 255, 255, 0.97); */
  }
  .news__container {
    padding: 0 20px;
  }
  .news__header-title {
    font-size: 28px;
  }
  .news__list {
    grid-template-columns: 1fr;
  }
  .news__list-item {
    max-width: 100%;
  }
  .footer {
    padding: 30px 20px;
  }
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer__nav {
    display: none;
  }
}
@media (max-width: 600px) {
  .about-company__content {
    flex-direction: column;
    align-items: center;
    padding: 0 0px;
  }
  .about-company__numbers {
    align-items: center;
    width: 100%;
  }
  .about-company__more {
    max-width: 100%;
  }
}
/* ============================================
   Mobile Burger Menu
   ============================================ */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media (max-width: 1125px) {
  .burger-menu {
    display: flex;
  }
}

.burger-line {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger-menu.active .burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ============================================
   Mobile Sidebar
   ============================================ */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #0b1a2e;
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar__content {
  padding: 80px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mobile-sidebar__lang {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 8px;
}

.mobile-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-sidebar__nav-item {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-sidebar__nav-item:hover {
  color: #40a0c6;
  padding-left: 10px;
}

/* Mobile Sidebar Submenu Styles */
.mobile-sidebar__nav-item-wrapper {
  display: flex;
  flex-direction: column;
}

.mobile-sidebar__nav-item--has-submenu {
  position: relative;
  padding-right: 30px;
}

.mobile-sidebar__nav-item--has-submenu::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: all 0.3s ease;
}

.mobile-sidebar__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 20px;
}

.mobile-sidebar__nav-item-wrapper.active .mobile-sidebar__submenu {
  max-height: 200px;
}

.mobile-sidebar__nav-item-wrapper.active
  .mobile-sidebar__nav-item--has-submenu::after {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-sidebar__submenu-item {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
  padding-left: 12px;
}

.mobile-sidebar__submenu-item:hover {
  color: #40a0c6;
  border-left-color: #40a0c6;
  padding-left: 16px;
}

.mobile-sidebar__search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-sidebar__search svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}
.mobile-sidebar__search span {
  font-size: 16px;
  color: #ffffff;
}
.mobile-sidebar__search:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-sidebar__contact {
  gap: 10px;
}
.mobile-sidebar__contact span {
  font-size: 16px;
}

/* ============================================
   Mobile Sidebar Overlay
   ============================================ */
.mobile-sidebar-overlay {
  position: fixed;
  inset: 0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   Header Responsive
   ============================================ */
@media (max-width: 1125px) {
  .header__left-container .lang,
  .header__nav,
  .header__right-container .search,
  .header__right-container .header__contact {
    display: none;
  }
  .header__right-container {
    padding-right: clamp(10px, 2vw, 40px);
  }
  .header__logo svg {
    height: 32px;
  }
}
@media (max-width: 480px) {
  .banner__main-image--mobile {
    display: block;
  }
  .banner__main-image {
    display: none;
  }

  .header__left-container {
    padding-left: 10px;
  }
  .header__right-container {
    padding-right: 10px;
  }
  .header__contact {
    display: none;
  }
  .banner__main-text h1 {
    font-size: 28px;
  }
  .about-company__numbers-digit {
    font-size: 36px;
  }
  .about-city__place-title {
    font-size: 24px;
  }
  .news__header-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .news__header-btn-all,
  .news__header-actions-filter-item {
    padding: 10px 15px;
    font-size: 14px;
    gap: 5px;
  }
}
@media (max-width: 375px) {
  .news__header-actions {
    flex-direction: column;
    align-items: center;
  }
}
.line {
  width: 2px;
  height: 100dvh;
  background-color: rgba(229, 243, 255, 0.1019607843);
  position: fixed;
  top: 0;
  left: 9%;
  z-index: 4;
  display: none;
}

.search,
.mobile-sidebar__search {
  display: none;
}

/* Mobile Sidebar Close Button */
.mobile-sidebar__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  z-index: 10;
}

.mobile-sidebar__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.mobile-sidebar__close svg {
  width: 20px;
  height: 20px;
}

.uzor {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: none;
}

/* Hide decorative line on tablets and mobile */
@media (max-width: 1024px) {
  .decorative-line {
    display: none;
  }
}

/* ============================================
   Video Modal
   ============================================ */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal__content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

@media (max-width: 768px) {
  .video-modal__content {
    width: 95%;
    max-height: 70vh;
  }
}

.video-modal__player {
  width: 100%;
  height: auto;
  max-height: 90vh;
  display: block;
  outline: none;
}

@media (max-width: 768px) {
  .video-modal__player {
    max-height: 70vh;
  }
}

.video-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: gray;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.video-modal__close svg {
  width: 24px;
  height: 24px;
  stroke: #000;
  stroke-width: 2px;
}

@media (max-width: 576px) {
  .video-modal__close {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }

  .video-modal__close svg {
    width: 20px;
    height: 20px;
  }
}

/* ========================================
   COMPLIANCE PAGE STYLES
   ======================================== */

.compliance {
  padding: 0 120px;
  max-width: 1660px;
  margin: 0 auto;
  margin-bottom: clamp(50px, 8vw, 120px);
  width: 100%;
}

@media (max-width: 768px) {
  .compliance {
    padding: 0 20px;
  }
}

.compliance__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(24px, 3vw, 40px);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.compliance__container {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 60px);
}

.compliance__content {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 32px);
}

.compliance__subtitle {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: #dab250;
  line-height: 1.3;
}

.compliance__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compliance__text p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.compliance__hotline {
  background: linear-gradient(
    135deg,
    rgba(218, 178, 80, 0.1) 0%,
    rgba(218, 178, 80, 0.05) 100%
  );
  border: 1px solid rgba(218, 178, 80, 0.3);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 32px);
  margin: clamp(16px, 2vw, 24px) 0;
}

.compliance__hotline-title {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: clamp(16px, 2vw, 20px);
}

.compliance__contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compliance__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.85);
  flex-wrap: wrap;
}

.compliance__contact-item a {
  color: #dab250;
  font-weight: 600;
  transition: color 0.3s ease;
}

.compliance__contact-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.compliance__icon {
  width: 24px;
  height: 24px;
  color: #dab250;
  flex-shrink: 0;
}

.compliance__documents {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance__documents-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: clamp(20px, 2.5vw, 32px);
  text-align: center;
}

.compliance__doc-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compliance__doc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(16px, 2vw, 20px);
  background: linear-gradient(
    135deg,
    rgba(218, 178, 80, 0.08) 0%,
    rgba(218, 178, 80, 0.02) 100%
  );
  border: 1px solid rgba(218, 178, 80, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.compliance__doc-item:hover {
  background: linear-gradient(
    135deg,
    rgba(218, 178, 80, 0.15) 0%,
    rgba(218, 178, 80, 0.05) 100%
  );
  border-color: rgba(218, 178, 80, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(218, 178, 80, 0.2);
}

.compliance__doc-icon {
  width: 40px;
  height: 40px;
  color: #dab250;
  flex-shrink: 0;
}

.compliance__doc-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.compliance__doc-title {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.compliance__doc-subtitle {
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.compliance__download-icon {
  width: 24px;
  height: 24px;
  color: #dab250;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.compliance__doc-item:hover .compliance__download-icon {
  transform: translateY(3px);
}

@media (max-width: 768px) {
  .compliance__doc-item {
    flex-wrap: wrap;
  }

  .compliance__doc-icon {
    width: 32px;
    height: 32px;
  }

  .compliance__download-icon {
    width: 20px;
    height: 20px;
  }

  .compliance__hotline {
    padding: 20px;
  }

  .compliance__contact-item {
    font-size: 14px;
  }

  .compliance__icon {
    width: 20px;
    height: 20px;
  }
}

.about-city {
  display: none;
}
/*# sourceMappingURL=styles.css.map */
