@font-face {
    font-family: 'Cy Grotesk';
    src: url('../fonts/cy-grotesk-grand-6.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Cy Grotesk';
    src: url('../fonts/kobuzan-cy-grotesk-grand-dark.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}


/* =========================
   RESET & BASE
========================= */

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

body {
    font-family: 'Cy Grotesk', sans-serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
}

/* =========================
   BRAND COLORS
========================= */

:root {
    --blue: #1800ad;
    --orange: #ff751f;
    --white: #ffffff;
    --black: #000000;
}

/* =========================
   BASIC STRUCTURE
========================= */

main {
    padding: 60px 40px;
}

/* =========================
   HOME HERO
========================= */

.home-hero {
    background-color: #07369A;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.home-hero h1 {
    font-family: 'Cy Grotesk', sans-serif;
    font-size: 180px;
    line-height: 0.95;
    color: #ffffff;
    font-weight: 900;
    text-transform: lowercase;
}