@font-face {
    font-family: "Sailec";
    src: url("fonts/Sailec-Hairline.woff2") format("woff2");
    font-style: normal;
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: "Sailec";
    src: url("fonts/Sailec-HairlineItalic.woff2") format("woff2");
    font-style: italic;
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: "Sailec";
    src: url("fonts/Sailec-Thin.woff2") format("woff2");
    font-style: normal;
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: "Sailec";
    src: url("fonts/Sailec-ThinItalic.woff2") format("woff2");
    font-style: italic;
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: "Sailec";
    src: url("fonts/Sailec-Light.woff2") format("woff2");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Sailec";
    src: url("fonts/Sailec-LightItalic.woff2") format("woff2");
    font-style: italic;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Sailec";
    src: url("fonts/Sailec-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Sailec";
    src: url("fonts/Sailec-RegularItalic.woff2") format("woff2");
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Sailec";
    src: url("fonts/Sailec-Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Sailec";
    src: url("fonts/Sailec-MediumItalic.woff2") format("woff2");
    font-style: italic;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Sailec";
    src: url("fonts/Sailec-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Sailec";
    src: url("fonts/Sailec-BoldItalic.woff2") format("woff2");
    font-style: italic;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Sailec";
    src: url("fonts/Sailec-Black.woff2") format("woff2");
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: "Sailec";
    src: url("fonts/Sailec-BlackItalic.woff2") format("woff2");
    font-style: italic;
    font-weight: 900;
    font-display: swap;
}

:root {
    --ink: #1c2653;
    --coral: #f06b7b;
    --cyan: #009fd9;
    --font-family: "Sailec", Arial, Helvetica, sans-serif;
}

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

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

:active {
  outline: none;
}

a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: $fontSize;
  font-family: $font-family;
  font-weight: $fontWeight;
  line-height: 1;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;

  &:visited,
  &:hover {
    text-decoration: none;
  }
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

sup {
  color: inherit;
  font-size: 0.55em;
}


* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    background: var(--ink);
    color: #fff;
    font-family: var(--font-family);
}

.page {
    min-height: max(100vh, 1246px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--ink);
}

.hero {
    padding: 160px 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.main-logo {
    display: block;
    width: 387px;
    height: 140px;
    object-fit: contain;
}

h1 {
    margin: 0;
    color: var(--coral);
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
}

.footer {
    position: relative;
    min-height: 513px;
    margin-top: auto;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .65);
}

.footer__copy {
    position: relative;
    z-index: 1;
    padding: 57px 80px 72px;
}

.footer-logo {
    display: block;
    width: 194px;
    height: 70px;
    object-fit: contain;
    object-position: left center;
}

.legal {
    max-width: 650px;
    margin: 35px 0 28px;
    font: 16px/1.45 "Sailec", Arial, Helvetica, sans-serif;
    color: rgba(255, 255, 255, .9);
}

.legal sup {
        color: var(--coral);
    font-size: 7px;
}

.footer-company-logo {
    display: block;
    width: 100px;
    height: 54px;
    object-fit: contain;
    object-position: left center;
}

.links {
    margin: 20px 0 0;
    font: 11px "Sailec", Arial, Helvetica, sans-serif;
}

.links a {
    color: #fff;
    text-decoration: none;
}

.links span {
    margin: 0 6px;
}

.footer-mark {
    position: absolute;
    right: 80px;
    bottom: -80px;
    width: min(53vw, 541px);
    height: auto;
}

@media (max-width:760px) {
    .footer-mark {
        width: 86vw;
    }
}

@media (max-width:760px) {
    .page {
        min-height: 970px;
    }

    .hero {
        padding: 160px 80px 230px;
        gap: 60px;
    }

    .main-logo {
        width: 240px;
        height: 86.94px;
    }

    h1 {
        width: 100%;
        font-size: 48px;
        line-height: 1.25;
        text-align: center;
    }

    .footer {
        min-height: 570px;
        margin-top: auto;
        margin-bottom: -10px;
    }

    .footer__copy {
        padding: 40px;
    }

    

    .footer-company-logo {
        width: 100px;
        height: 54px;
    }

    .legal {
        max-width: 310px;
        margin: 40px 0 40px;
    }

    

    .footer-mark {
        /* The mark deliberately overhangs the right edge on mobile. */
              right: -45px;
        bottom: -60px;
        width: 260px;

    }
}
