@charset "UTF-8";
/* HEADER */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  padding: 40px 20px;
  display: block;
  justify-content: center;
  pointer-events: none;
}
.site-header__inner {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  pointer-events: auto;
  padding-right: 35px;
}
.site-header__logo {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/* Активный хедер при открытии меню */
.site.menu-open .site-header__icons {
  opacity: 1;
  pointer-events: auto;
}

.site-header__icons {
  opacity: 0;
  pointer-events: none;
}

/* HEADER ICONS */
.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.header-icon:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}
.header-icon img {
  width: 47px;
  height: 47px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* BURGER */
.menu-toggle {
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 9999;
  /* чтобы кнопка была выше всего */
}

.menu-toggle img {
  width: 35px;
  height: 35px;
  display: block;
}

.icon-close {
  display: none !important;
}

/* Когда меню открыто — показываем крестик */
.site.menu-open .icon-burger {
  display: none;
}

.site.menu-open .icon-close {
  display: block !important;
}

/* БАЗА */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
  color: #fff;
}

body.home {
  overflow: hidden;
}

.site {
  min-height: 100vh;
  position: relative;
}
.site.menu-open .site-menu__panel {
  transform: translateX(0);
  opacity: 1;
}
.site.menu-open .site-menu__backdrop {
  opacity: 1;
  pointer-events: auto;
}
.site.menu-closing .site-menu__panel {
  transform: translateX(-120%);
  opacity: 0;
}
.site.menu-closing .site-menu__backdrop {
  opacity: 0;
  pointer-events: none;
}

/* FULLSCREEN SCROLL */
.fp-wrapper {
  position: relative;
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  z-index: 1;
}

.fp-section {
  position: relative;
  height: 100vh;
  scroll-snap-align: start;
}
.fp-section--stub {
  background: #111;
}

/* SWIPER ЭЛЕМЕНТЫ */
.swiper-pagination {
  width: auto !important;
  left: 50% !important;
  margin-bottom: 50px;
}

.swiper-pagination-bullet {
  display: block !important;
}

/* HERO SLIDER */
.hero-slide--static {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-section {
  background: #000;
}

.hero-slider {
  height: 100%;
}
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
}
.hero-slider .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1) !important;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}
.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero-slide__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.hero-slide__content--center {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 3;
}
.hero-slide__title {
  font-size: 42px;
  text-transform: uppercase;
  line-height: 110%;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}
.hero-slide__btn {
  margin-bottom: 50px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
.hero-slide__dots {
  margin-top: 40px;
  display: flex;
  gap: 8px;
}
.hero-slide__dots .dot {
  width: 26px;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
}

/* SWIPER PAGINATION */
.hero-slider__pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}
.hero-slider__pagination .swiper-pagination-bullet {
  width: 69px;
  height: 8px;
  border: 1.5px solid #fff;
  background: transparent;
  border-radius: 13px;
  overflow: hidden;
  position: relative;
  opacity: 1;
}
.hero-slider__pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #fff;
  animation: none;
}
.hero-slider__pagination .swiper-pagination-bullet-active::after {
  animation: fillbar 7s linear forwards;
}

@media (max-width: 600px) {
  .hero-slider__pagination .swiper-pagination-bullet-active::after {
    animation: fillbar 6s linear forwards;
  }
}
@keyframes fillbar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* SITE MENU */
.site-menu {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 90000;
}
.site-menu__panel {
  width: 420px;
  max-width: 80%;
  background: rgba(252, 252, 252, 0.07);
  -webkit-backdrop-filter: blur(7px) saturate(100%);
          backdrop-filter: blur(7px) saturate(100%);
  padding: 105px 25px 25px;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease-out;
  pointer-events: auto;
  overflow-y: auto;
}
.site-menu__panel::-webkit-scrollbar {
  display: none;
}
.site-menu__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 80000;
}
.site-menu__group.has-accordion ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.site-menu__group.has-accordion.is-open ul {
  max-height: 500px;
  margin: 0 0 16px;
}
.site-menu__group.has-accordion .site-menu__title {
  cursor: pointer;
}
.site-menu__title {
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  margin: 0;
  padding-bottom: 16px;
}
.site-menu__title a {
  color: #fff;
  text-decoration: none;
}
.site-menu__title-simple {
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  margin: 0 0 48px;
}
.site-menu__title-simple a {
  color: #fff;
  text-decoration: none;
}
.site-menu__nav ul {
  list-style: none;
  padding: 0;
}
.site-menu__nav li {
  font-size: 14px;
  margin-bottom: 15px;
}
.site-menu__nav li a {
  color: #fff;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
.site-menu__nav li a:hover {
  text-decoration: underline;
}
.site-menu__contacts {
  padding-top: 30px;
  font-size: 14px;
}
.site-menu__contacts p {
  margin: 0 0 15px;
}
.site-menu__contacts a {
  color: #fff;
  text-decoration: none;
}
.site-menu__contacts a:hover {
  text-decoration: underline;
}
.site-menu__socials {
  margin-top: 25px;
  display: flex;
  gap: 8px;
}
.site-menu__socials a {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}
.site-menu__socials a:hover {
  background: rgba(255, 255, 255, 0.15);
  opacity: 0.9;
}

/* АДАПТИВ */
@media (max-width: 768px) {
  .hero-slide__title {
    font-size: 32px;
  }
  .site-menu__panel {
    max-width: 100%;
    background-size: cover;
    background-position: center;
  }
  .hero-slide__content--center {
    width: 324px;
  }
}
.iti__country-list {
  background-color: #000 !important;
  color: #fff !important;
}

.site-footer {
  background: #000;
  padding: 87px 65px 87px 50px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  /* Brand column */
  /* Bottom row */
}
.site-footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.site-footer .footer-group {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.site-footer .footer-group-location {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site-footer__column--brand {
  grid-column: span 1;
}
.site-footer__column--brand .site-footer__title {
  margin: 0;
}
.site-footer__column--brand .site-footer__phone {
  margin: 0;
}
.site-footer__column--brand .site-footer__email {
  margin: 25px 0 0;
}
.site-footer__column--brand .site-footer__phone a,
.site-footer__column--brand .site-footer__email a {
  font-family: "Oswald", sans-serif;
  color: #D1974E;
  font-size: 26px;
  text-decoration: none;
  font-weight: 600;
}
.site-footer__column--brand .site-footer__socials {
  margin-top: 25px;
  display: flex;
  gap: 14px;
}
.site-footer__column--brand .site-footer__socials a {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #444;
  transition: 0.3s;
}
.site-footer__column--brand .site-footer__socials a:hover {
  opacity: 0.8;
  background: #666;
}
.site-footer__column--brand .site-footer__socials a img {
  width: 47px;
  height: 47px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer__column h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  margin: 0;
}
.site-footer__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-footer__list li {
  margin-bottom: 15px;
}
.site-footer__list li a {
  color: #aaa;
  font-size: 16px;
  text-decoration: none;
}
.site-footer__list li a:hover {
  color: #fff;
}
.site-footer__address {
  color: #aaa;
  font-size: 16px;
  margin: 0;
}
.site-footer__bottom {
  margin-top: 100px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #888;
  font-size: 16px;
}
.site-footer__bottom a {
  color: #888;
  text-decoration: none;
}
.site-footer__bottom a:hover {
  color: #fff;
}

/* Адаптив */
@media (max-width: 1200px) {
  .site-footer__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 70px 15px;
  }
  .site-footer__column h3 {
    font-size: 26px;
  }
  .site-footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: left;
    align-items: flex-start;
  }
  .site-footer__column--brand .site-footer__socials {
    margin: 0;
  }
}
@media (max-width: 480px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}