@import url("./fonts.css?v=20260618-1");
@import url("./header.css?v=20260729-1");
@import url("./partners.css?v=20260724-1");
@import url("./footer.css?v=20260618-1");
@import url("./social-links.css?v=20260623-1");
@import url("./preloader.css?v=20260618-1");
@import url("./date-picker.css?v=20260729-2");
@import url("./cookie-notice.css?v=20260630-1");

:root {
  --color-navy: #00031c;
  --color-navy-soft: #01041d;
  --color-blue: #022c5f;
  --color-gold: #d7b46a;
  --color-gold-light: #f0dfc3;
  --color-gold-soft: #f9dfb6;
  --color-border: #35333e;
  --color-border-gold: #b29e81;
  --font-display: "Geologica", "Arial Black", sans-serif;
  --font-text: "Roboto", Arial, sans-serif;
  --container-x: 130px;
  --page-width: 1440px;
}
*,
:after,
:before {
  box-sizing: border-box;
}
html {
  color: #fff;
  font-family: var(--font-text);
  scroll-behavior: smooth;
}
body,
html {
  background: var(--color-navy);
  min-width: 320px;
}
body {
  margin: 0;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
}
a,
button {
  color: inherit;
}
button {
  border: 0;
  font: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
.site-page {
  background: var(--color-navy);
  margin: 0 auto;
  position: relative;
  width: var(--page-width);
}
.site-page:after,
.site-page:before {
  content: "";
  height: 100%;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: 0.3s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 571px;
  z-index: 11;
}
.site-page:before {
  background: linear-gradient(270deg, #01122f00 70%, #00031c 90%);
  left: -60px;
}
.site-page:after {
  background: linear-gradient(270deg, #00031c 10%, #01122f00 30%);
  right: -62px;
}
@media (max-width: 1440px) {
  :root {
    --container-x: clamp(22px, calc(24.04vw - 216px), 130px);
  }
  body,
  html {
    width: 100%;
  }
  .site-page {
    width: 100%;
    overflow: clip;
  }
  .site-page:after,
  .site-page:before {
    opacity: 0;
  }
}
.site-page > main {
  margin-top: -60px;
}
.button {
  align-items: center;
  border: 1px solid var(--color-border-gold);
  border-radius: 2px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  height: 42px;
  justify-content: center;
  letter-spacing: 0.03em;
  line-height: 1.2;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  width: 186px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.button--small {
  font-size: 10px;
  height: 30px;
  width: 118px;
}
.button--gold {
  background:
    radial-gradient(circle at 47% 30%, #f0dfc3 0, #f0dfc3 12%, #cfb081 70%),
    #d7b46a;
  color: #04061b;
}
.button--ghost {
  background: #00142c61;
  color: #fff;
}
.button:focus-visible,
.button:hover {
  box-shadow: 0 0 28.9px #d7b56acc;
  transform: translateY(-2px);
}
.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid hsla(37, 85%, 85%, 0.9);
  outline-offset: 4px;
}
.section-dark {
  background: var(--color-navy);
  border-bottom: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
  height: 680px;
  position: relative;
}
.section-title {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.section-title--large {
  font-size: 70px;
}
.section-label {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  left: 130px;
  letter-spacing: 0.03em;
  line-height: 1.2;
  position: absolute;
  text-transform: uppercase;
  top: 74px;
  z-index: 2;
}
.title-line {
  background: #a48951;
  display: block;
  height: 2px;
  margin-top: 20px;
  width: 60px;
}
.circle {
  animation: ambientGlow 8s ease-in-out infinite alternate;
}
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
[data-animate] {
  --animate-blur: 0;
  --animate-extra-transform: translateZ(0);
  --animate-scale: 1;
  --animate-start-opacity: 0;
  --animate-end-opacity: 1;
  --animate-x: 0;
  --animate-y: 28px;
  filter: blur(var(--animate-blur));
  opacity: var(--animate-start-opacity);
  transform: translate3d(var(--animate-x), var(--animate-y), 0)
    scale(var(--animate-scale)) var(--animate-extra-transform);
  transition:
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
  will-change: filter, opacity, transform;
}
[data-animate="fade-down"] {
  --animate-y: -24px;
}
[data-animate="fade-left"] {
  --animate-x: 44px;
  --animate-y: 0;
}
[data-animate="fade-right"] {
  --animate-x: -44px;
  --animate-y: 0;
}
[data-animate="image-left"],
[data-animate="image-right"],
[data-animate="zoom"] {
  --animate-blur: 2px;
  --animate-scale: 1.04;
  transition-duration: 1.25s;
}
[data-animate="image-left"] {
  --animate-x: -58px;
  --animate-y: 0;
}
[data-animate="image-right"] {
  --animate-x: 58px;
  --animate-y: 0;
}
[data-animate="zoom"] {
  --animate-y: 18px;
  --animate-scale: 0.96;
}
[data-animate].is-visible {
  filter: blur(0);
  opacity: var(--animate-end-opacity);
  transform: translate3d(0, 0, 0) scale(1) var(--animate-extra-transform);
}
[data-animate] .title-line {
  opacity: 0.45;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--delay, 0s) + 180ms);
}
[data-animate].is-visible .title-line {
  opacity: 1;
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .circle {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
  *,
  :after,
  :before {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
  [data-animate] {
    filter: none;
    opacity: 1;
    transform: none;
  }
  [data-animate] .title-line {
    opacity: 1;
    transform: none;
  }
}

@keyframes ambientGlow {
  from {
    opacity: 0.68;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}
