
@font-face {
    font-family: 'ID Grotesk';
    src: url('../fonts/IDGrotesk-Regular.woff2') format('woff2'),
        url('../fonts/IDGrotesk-Regular.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ID Grotesk-Light';
    src: url('../fonts/IDGrotesk-Light.woff2') format('woff2'),
        url('../fonts/IDGrotesk-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.woff2') format('woff2'),
        url('../fonts/Helvetica.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ID Grotesk-Bold';
    src: url('../fonts/IDGrotesk-Bold.woff2') format('woff2'),
        url('../fonts/IDGrotesk-Bold.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ID Grotesk-SemiBold';
    src: url('../fonts/IDGrotesk-Semibold.woff2') format('woff2'),
        url('../fonts/IDGrotesk-Semibold.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica-Bold';
    src: url('../fonts/Helvetica-Bold.woff2') format('woff2'),
        url('../fonts/Helvetica-Bold.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --fs-xl: 70px;
    --fs-x: 18px;
    --fs-base: 16px;
    --fs-nav: 15px;

    --white: #FFFFFF;
    --text-light: #E0E0E0;
    --primary-blue: #127DD4;
    --dark-blue: #1A5585;

    --container-width: 1280px;
    --radius-btn: 6px;
    --transition: .3s ease;

    /* Font families */
    --font-body: "ID Grotesk", sans-serif;
    --font-light: "ID Grotesk-Light", sans-serif;
    --font-bold: "ID Grotesk-Bold", sans-serif;
    --font-semibold: "ID Grotesk-SemiBold", sans-serif;
    --font-helvetica: "Helvetica", sans-serif;
    --font-helvetica-bold: "Helvetica-Bold", sans-serif;

}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "ID Grotesk", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;}

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

button {
    outline: none;
    background: none;
    border: none;
    cursor: pointer;
}

p {
    font-family: 'Helvetica' , sans-serif;
}

 h1, h2, h3, h4, h5, h6 {
    font-family: 'ID Grotesk', sans-serif;

} 

h1 {
    font-size: 100px;
    font-family: var(--font-light);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;

    
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.section {
    padding: 80px 0;
}


.container-large{
    max-width: 1600px;
}

.container-medium{
max-width: 1500px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.badge--center {
    justify-content: center;
}

.badge-line {
    width: 24px;
    height: 1.5px;
    background-color: var(--dark-blue);
    flex-shrink: 0;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--dark-blue);
    white-space: nowrap;
}

.badge--light .badge-line {
    background-color: rgba(255, 255, 255, 0.6);
    width: 20px;
}

.badge--light .badge-text {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 3px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .container--fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

}

@media (max-width: 380px) {
    .container--fluid {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 32px 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 15px 0;
    }
}

/* ==========================================================
    GLOBAL TYPESCALE OVERRIDES
    ========================================================== */
@media (max-width: 1024px) {
    :root {
        --fs-xl: 56px;
    }
}
 
@media (max-width: 768px) {
    :root {
        --fs-xl: 42px;
        --fs-base: 15px;
    }
}
 
@media (max-width: 480px) {
    :root {
        --fs-xl: 34px;
        --fs-base: 14px;
    }
}


.site-title, .site-description {
    display: none;
}