:root {
    --font-inter: "Inter", serif;
    --font-fjalla: "Fjalla One", serif;
    --font-ibm-plex-sans: "IBM Plex Sans", serif;
    --font-saira-medium: "Saira-Medium";
    --font-saira-semibold: "Saira-SemiBold";
    --font-dm: "DM Sans", sans-serif;
    --ldwp-dark: #000;
    --ldwp-navy: #003b5b;
    --ldwp-darkblue: #005583;
    --ldwp-yellow: #e9d046;
    --ldwp-gray: #dde2e5;
    --ldwp-light-gray: #eaeff2;
    --ldwp-lighter-gray: #fdfdff;
    --ldwp-darkish-green: #0C0F00;
    --ldwp-light-purple: #DED2E1;
    --ldwp-dark-yellow: #DF8E2F;
    --ldwp-muted-cyan: #C1D6E0;
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** font-face
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
@font-face {
    font-family: "Saira-Medium";
    src:
        local("Saira-Medium"),
        url("Saira-Medium.eot") format("opentype"),
        url("Saira-Medium.woff") format("woff"),
        url("Saira-Medium.woff2") format("woff2");
}

@font-face {
    font-family: "Saira-SemiBold";
    src:
        local("Saira-SemiBold"),
        url("Saira-SemiBold.eot") format("opentype"),
        url("Saira-SemiBold.woff") format("woff"),
        url("Saira-SemiBold.woff2") format("woff2");
}

@font-face {
    font-family: "Good Pro Black";
    src: url("../fonts/FFGoodPro-Black.ttf") format("opentype"),
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** pre-defined classes
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

* {
    box-sizing: border-box;
}

.font-inter {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}

.font-fjalla {
    font-family: "Fjalla One", serif;
    font-weight: 400;
    font-style: normal;
}

.font-ibm-plex-sans {
    font-family: "IBM Plex Sans", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.font-saira-medium {
    font-family: "Saira-Medium";
}

.font-saira-semibold {
    font-family: "Saira-SemiBold";
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

h1, .h1 {
    font-size: 150px;
    line-height: 80%;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: -0.02em;
    font-weight: 400;
}

h2, .h2 {
    font-size: 120px;
    line-height: 85%;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.01em;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

h3, .h3 {
    font-size: 80px;
    line-height: 85%;
    font-family: "Bebas Neue", sans-serif;
    font-family: var(--font-dm);
    letter-spacing: 0.01em;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

h4, .h4 {
    font-size: 26px;
    line-height: 125%;
    /* font-family: "Bebas Neue", sans-serif; */
    font-family: var(--font-dm);
    /* letter-spacing: 0.01em; */
    font-weight: 400;
    margin: 0;
}

h5, .h5 {
    /* font-family: "Bebas Neue", sans-serif; */
    /* letter-spacing: 0.01em; */
    line-height: 125%;
    font-weight: 400;
    font-size: 20px;
    font-family: var(--font-dm);
    margin: 0;
}

h6, .h6 {
    /* font-family: "Bebas Neue", sans-serif; */
    font-family: var(--font-dm);
    /* letter-spacing: 0.01em; */
    font-weight: 400;
    line-height: 140%;
    font-size: 18px;
    margin: 0;
}

.tt-upper {
    text-transform: uppercase;
}

.tt-lower {
    text-transform: lowercase;
}

.ta-center {
    text-align: center;
}

.ta-left {
    text-align: left;
}

.ta-right {
    text-align: right;
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.ls-3 {
    letter-spacing: 3px;
}

.fl {
    display: flex;
} 

.grid {
    display: grid;
}

.fl-ai-center {
    align-items: center;
} 

.fl-ai-fs {
    align-items: flex-start;
} 

.fl-ai-fe {
    align-items: flex-end;
} 

.fl-jc-sb {
    justify-content: space-between;
}

.fl-jc-fs {
    justify-content: flex-start;
}

.fl-jc-fe {
    justify-content: flex-end;
}

.fl-jc-center {
    justify-content: center;
}

.fl-dir-row {
    flex-direction: row;
}

.fl-dir-col {
    flex-direction: column;
}

.fl-dir-row-rev {
    flex-direction: row-reverse;
}

.fl-dir-col-rev {
    flex-direction: column-reverse;
}

.ldwp-navy {
    color: var(--ldwp-navy);
}

.ldwp-darkblue {
    color: var(--ldwp-darkblue);
}

.ldwp-yellow {
    color: var(--ldwp-yellow);
}

.ldwp-gray {
    color: var(--ldwp-gray);
}

.ldwp-light-gray {
    color: var(--ldwp-light-gray);
}

.ldwp-lighter-gray {
    color: var(--ldwp-lighter-gray);
}

.bg-ldwp-navy {
    background-color: var(--ldwp-navy);
}

.bg-ldwp-darkblue {
    background-color: var(--ldwp-darkblue);
}

.bg-ldwp-yellow {
    background-color: var(--ldwp-yellow);
}

.bg-ldwp-gray {
    background-color: var(--ldwp-gray);
}

.bg-ldwp-light-gray {
    background-color: var(--ldwp-light-gray);
}

.bg-ldwp-lighter-gray {
    background-color: var(--ldwp-lighter-gray);
}
.bg-dark {
    background-color: var(--ldwp-dark);
}

.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.p-0 {
    padding: 0;
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pt-5 {
    padding-top: 5rem;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.pr-0 {
    padding-right: 0;
}
.pl-0 {
    padding-left: 0;
}
.border {
    border: 1px solid inherit;
}

.btn-ldwp-default {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-family: var(--font-fjalla);
    color: var(--ldwp-lighter-gray);
    z-index: 1;
    padding: 15px 40px;
    background-color: transparent;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-ldwp-default::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--ldwp-darkblue);
    z-index: -1;
    transform: skewX(-15deg);
}

.btn-has-arrow::after {
    content: "→";
    font-family: var(--font-fjalla);
}

.btn-ldwp-default:hover, 
.btn-ldwp-default:focus, 
.btn-ldwp-default:active,
.btn-ldwp-default:visited {
    color: var(--ldwp-lighter-gray); 
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** core
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-dm);
    background-color: var(--ldwp-darkish-green);
    color: var(--ldwp-light-purple);
    line-height: 140%;
}

.section {
    position: relative;
}

.wrapper {
    max-width: 100%;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
    position: relative;
}

.f-light-purple {
    color: var(--ldwp-light-purple);
}
.f-dark-yellow {
    color: var(--ldwp-dark-yellow);
}
.f-muted-cyan {
    color: var(--ldwp-muted-cyan);
}
a {
    transition: all .2s;
}
a:hover {
    color: #ded2e180;
}

@media only screen and (max-width: 1500px) {
    h1, .h1 {
        font-size: 11vw;
    }

    h2, .h2 {
        font-size: 8vw;
    }

    h3, .h3 {
        font-size: 6vw;
    }


}

@media only screen and (max-width: 991px) {
    .wrapper {
        padding: 0 20px;
    }

    
}

@media only screen and (max-width: 767px) {
    h1, .h1, h2, .h2 {
        font-size: 80px;
    }
    body {
        line-height: 125%;
    }
    
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** header
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
