html {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  max-width: 100vw;
  overflow-x: clip;
  margin: 0;
  background: #ffffff;
  color: #0f1b3d;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

svg, img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  line-height: 1.15;
  color: #0f1b3d;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  border: none;
  border-radius: 100px;
  background: #ff8c00;
  color: #ffffff;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover {
  background: #e67c00;
}
.btn:active {
  transform: translateY(1px);
}
.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.section-eyebrow {
  display: inline-block;
  color: #ff8c00;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  min-height: 110px;
  color: #ffffff;
  background: linear-gradient(180deg, #263B87 0%, #283167 100%);
  transition: background 0.25s ease, box-shadow 0.25s ease, min-height 0.25s ease;
}
.site-header.is-scrolled {
  min-height: 72px;
  background: #0b1f4a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.site-header.is-scrolled .site-header__inner {
  min-height: 72px;
}
.site-header.is-scrolled .site-header__search {
  width: 46px;
  height: 46px;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 24px;
  pointer-events: none;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  min-height: 110px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) {
  .site-header__inner {
    padding: 0 20px;
  }
}
.site-header__logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.site-header__logo img {
  display: block;
  height: 32px;
  width: auto;
}
.site-header__logo-text {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.site-header__logo img {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}
.site-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 1200px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__menu > li {
  position: relative;
  display: flex;
  align-items: center;
}
.site-header__menu a {
  display: inline-block;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22.4px;
  color: #ffffff;
  white-space: nowrap;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s ease;
}
.site-header__menu a:hover, .site-header__menu a:focus-visible {
  opacity: 0.7;
}
.site-header__menu > .current-menu-item > a,
.site-header__menu > .current-menu-ancestor > a {
  font-weight: 700;
}
.site-header__utils {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.site-header__lang {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.site-header__lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22.4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.site-header__lang-btn[aria-expanded=true] .site-header__lang-icon {
  transform: rotate(180deg);
}
.site-header__lang-label {
  text-transform: uppercase;
  color: #ffffff;
}
.site-header__lang-icon {
  display: block;
  color: #ffffff;
  transition: transform 0.2s ease;
}
.site-header__lang-list {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 40;
  min-width: 88px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 27, 61, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
}
.site-header__lang-list li {
  margin: 0;
}
.site-header__lang-list a {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22.4px;
  color: #0f1b3d;
  text-transform: uppercase;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-header__lang-list a:hover, .site-header__lang-list a:focus-visible {
  background: rgba(255, 140, 0, 0.1);
  color: #ff8c00;
}
.site-header__lang.is-open .site-header__lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0s;
}
.site-header__search {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.site-header__search:hover, .site-header__search:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
.site-header__search svg {
  display: block;
}
.site-header__burger {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}
.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
}
@media (max-width: 1200px) {
  .site-header__burger {
    display: block;
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}
.mobile-nav__drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 380px);
  display: flex;
  flex-direction: column;
  background: #0b1f4a;
  color: #ffffff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.is-open .mobile-nav__drawer {
  transform: translateX(0);
}
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
.mobile-nav__logo {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.mobile-nav__logo img {
  display: block;
  height: 32px;
  width: auto;
}
.mobile-nav__close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.mobile-nav__close:hover, .mobile-nav__close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}
.mobile-nav__close svg {
  display: block;
}
.mobile-nav__nav {
  padding: 16px 8px 32px;
}
.mobile-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav__menu li {
  position: relative;
}
.mobile-nav__menu > li > a {
  display: block;
  padding: 14px 16px;
  border-radius: 6px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  color: #ffffff;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.mobile-nav__menu > li > a:hover, .mobile-nav__menu > li > a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ff8c00;
}
.mobile-nav__menu > .current-menu-item > a,
.mobile-nav__menu > .current-menu-ancestor > a {
  font-weight: 700;
  color: #ff8c00;
}
.mobile-nav__menu .sub-menu {
  list-style: none;
  margin: 0 0 4px 12px;
  padding: 0 0 0 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav__menu .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.85);
  -webkit-text-decoration: none;
  text-decoration: none;
}
.mobile-nav__menu .sub-menu a:hover, .mobile-nav__menu .sub-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ff8c00;
}

body.is-mobile-nav-open {
  overflow: hidden;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
}
@media (max-width: 900px) {
  .site-footer {
    padding: 48px 0 0;
  }
}
.site-footer__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.site-footer__inner {
  display: grid;
  grid-gap: 32px;
  gap: 32px;
  grid-template-columns: 1fr 274px 296px 296px;
  padding-bottom: 40px;
}
@media (max-width: 1200px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.site-footer__logo {
  display: inline-block;
}
.site-footer__logo img {
  display: block;
  height: 32px;
  width: auto;
}
.site-footer__logo-text {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.site-footer__address {
  font-style: normal;
}
.site-footer__address p {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 14px;
  line-height: 22.4px;
  color: rgba(255, 255, 255, 0.75);
}
.site-footer__col {
  display: flex;
  flex-direction: column;
}
.site-footer__heading {
  margin: 0 0 16px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
}
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__list li {
  margin-bottom: 8px;
}
.site-footer__list a {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 15px;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s ease;
}
.site-footer__list a:hover {
  color: #ff8c00;
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__contact p {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 15px;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.75);
}
.site-footer__email a {
  color: #ffffff;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.site-footer__email a:hover {
  color: #ff8c00;
}
.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 600px) {
  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }
}
.site-footer__copy {
  margin: 0;
}
.site-footer__legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}
.site-footer__legal-list a {
  color: rgba(255, 255, 255, 0.6);
  -webkit-text-decoration: none;
  text-decoration: none;
}
.site-footer__legal-list a:hover {
  color: #ff8c00;
}
/*# sourceMappingURL=style.css.map */
