/* barlow-condensed-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/barlow-condensed-v13-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/barlow-condensed-v13-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/barlow-condensed-v13-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/barlow-condensed-v13-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/barlow-condensed-v13-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-800italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/barlow-condensed-v13-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Increase line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

a {
    color: inherit;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

:root {
    --color-white: #fff;
    --color-blue: #002589;
}

body {
    display: flex;
    min-height: 100vh;
}

header {
    padding: 48px 48px 24px 48px;
    width: 320px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    height: 100vh;
    color: var(--color-blue);
}

.nav-main {
    margin-top: 32px;
}

.nav-main a {
    display: block;
    border: 1px solid var(--color-blue);
    border-width: 2px 0;
    padding: 12px 30px;
    text-decoration: none;
    font-family: "Barlow Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.nav-main a:hover {
    background: var(--color-blue);
    color: var(--color-white);
    transition: color .3s ease-out;
}

.header-bottom {
    justify-self: flex-end;
    margin-top: auto;
}

.header-bottom_name {
    font-family: "Barlow Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.header-bottom_city {
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.nav-footer a {
    text-decoration: none;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    display: block;
    line-height: 1.5;
}

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

main {
    width: 100%;
    border-left: 1px solid var(--color-blue);
}

.main-top {
    background: var(--color-blue);
    padding: 90px 82px 40px 52px;
    color: var(--color-white);
}

.main-top_inner {
    max-width: 950px;
}

.main-top h1 {
    font-family: "Barlow Condensed";
    font-size: 76px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 1.52px;
    text-transform: uppercase;
}

.main-top p {
    font-family: "Barlow Condensed";
    font-size: 32px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.64px;
    margin-top: 18px;
}

.main-bottom {
    padding: 40px 82px 40px 52px;
    color: var(--color-blue);
}

.main-bottom_inner {
    max-width: 950px;
}

.main-bottom_intro {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 62px;
}

.main-bottom_intro strong {
    font-weight: 700;
}

.main-bottom_soon {
    font-family: "Barlow Condensed";
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.main-bottom_arrive {
    font-family: "Barlow Condensed";
    font-size: 60px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.main-bottom_forward {
    font-family: "Barlow Condensed";
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.48px;
    margin-left: 490px;
    margin-top: 20px;
}

@media all and (max-width: 1200px) {
    .main-bottom_forward {
        margin-left: 100px;
    }
}

.main-static {
    padding: 40px 82px 40px 52px;
    color: var(--color-blue);
    max-width: 950px;
}

.main-static h1 {
    font-family: "Barlow Condensed";
    font-size: 76px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 1.52px;
    text-transform: uppercase;
}

.main-static p {
    font-family: "Barlow Condensed";
    font-size: 32px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.64px;
    margin-top: 48px;
}

.main-static--privacy p,
.main-static--privacy li {
    font-family: "Barlow Condensed";
    font-size: 20px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.64px;
    margin-top: 18px;
}

.main-static--privacy h2 {
    font-family: "Barlow Condensed";
    font-size: 30px;
    font-weight: 800;
    line-height: normal;
    margin-top: 12px;
}

.main-static--privacy h3 {
    font-family: "Barlow Condensed";
    font-size: 24px;
    font-weight: 800;
    line-height: normal;
    margin-top: 20px;
}

.hamburger {
    display: none;
}

@media all and (max-width: 980px) {
    body {
        display: block;
    }

    header {
        width: 100%;
        height: auto;
        flex-direction: row;
        padding: 10px 16px;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        width: 64px;
    }

    .hamburger {
        display: block;
        color: var(--color-blue);
        background: none;
        border: none;
        margin: 0;
        padding: 0;
        font-size: 60px;
        line-height: 1;
        margin-top: -8px;
    }

    #menu {
        display: none;
        position: absolute;
        background: var(--color-white);
        padding: 0 16px 10px 16px;
        top: 84px;
        right: 0;
        left: 0;

    }

    .hamburger[aria-expanded="true"] + #menu {
        display: block;
    }

    .header-bottom {
        justify-self: flex-start;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .main-top {
        padding: 32px 16px 48px;
    }

    .main-top h1,
    .main-static h1 {
        font-size: 52px;
    }

    .main-top p,
    .main-static p {
        font-size: 24px;
    }

    .main-bottom,
    .main-static {
        padding: 32px 16px 48px;
    }

    .main-static {
        border-top: 1px solid var(--color-blue);
    }

    .main-bottom_arrive {
        font-size: 40px;
    }

    .main-bottom_forward {
        margin-left: 0;
    }
}

@media all and (min-width: 981px) {
    #menu {
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: min-content;
    }

    header {
        position: sticky;
        top: 0;
    }
}