/* =========================================
   GLOBAL
========================================= */

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

body {

    background: rgb(44, 33, 135);

    color: #f5d96b;

    font-family: Arial, Helvetica, sans-serif;

    width: 100vw;

    min-height: 100vh;

    overflow-x: hidden;
}


/* =========================================
   TOP NAVIGATION
========================================= */

.topbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding-top: 18px;

    padding-bottom: 10px;

    background: rgb(44, 33, 135);
}


/* =========================================
   NAVBAR
========================================= */

.navbar {

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;
}


/* =========================================
   NAV ITEMS
========================================= */

.nav-left {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 24px 40px;

    max-width: 1400px;
}


.nav-left > * {

    white-space: nowrap;
}


/* =========================================
   LINKS & BUTTONS
========================================= */

.navbar a,
.dropbtn {

    color: #f5d96b;

    text-decoration: none;

    font-size: 18px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    background: none;

    border: none;

    cursor: pointer;

    transition: opacity 0.2s ease;
}


.navbar a:hover,
.dropbtn:hover {

    opacity: 0.75;
}


/* =========================================
   DROPDOWN
========================================= */

.dropdown {

    position: relative;
}


/* =========================================
   DROPDOWN CONTENT
========================================= */

.dropdown-content {

    display: none;

    position: absolute;

    top: 100%;
    left: 50%;

    transform: translateX(-50%);

    min-width: 320px;

    background: #f5d96b;

    padding: 14px 0;

    z-index: 1000;
}


/* =========================================
   DROPDOWN LINKS
========================================= */

.dropdown-content a {

    display: block;

    padding: 12px 22px;

    white-space: nowrap;

    color: rgb(44, 33, 135);

    font-size: 15px;

    letter-spacing: 1px;

    text-transform: none;
}


.dropdown-content a:hover {

    background: rgba(44, 33, 135, 0.08);
}


/* =========================================
   DROPDOWN HOVER
========================================= */

.dropdown:hover .dropdown-content {

    display: block;
}


/* =========================================
   LANDING PAGE HERO
========================================= */

.hero {

    position: fixed;

    top: 50px;
    left: 0;

    width: 100vw;
    height: calc(100vh - 50px);

    overflow: hidden;
}


.hero-logo {

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -56%);

    width: 60vw;

    min-width: 320px;

    max-width: calc(100vw - 40px);

    height: auto;

    display: block;
}


/* =========================================
   CONTENT PAGE BACKGROUND LOGO
========================================= */

.content-logo-container {

    position: fixed;

    top: 50px;
    left: 0;

    width: 100vw;
    height: calc(100vh - 50px);

    overflow: hidden;

    pointer-events: none;

    z-index: 0;
}


.content-logo {

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -56%);

    width: 60vw;

    min-width: 320px;

    max-width: calc(100vw - 40px);

    height: auto;

    opacity: 0.10;

    display: block;
}


/* =========================================
   CONTENT PAGE LAYOUT
========================================= */

.content-page {

    position: relative;

    z-index: 10;

    width: 100%;

    padding-top: 140px;

    padding-bottom: 120px;
}


/* =========================================
   CONTENT CONTAINER
========================================= */

.content-section {

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

    padding-left: 120px;

    padding-right: 120px;
}


/* =========================================
   CONTENT TYPOGRAPHY
========================================= */

.content-section h1 {

    color: #f5d96b;

    font-size: 48px;

    font-weight: 500;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 60px;
}


.section h2 {

    color: #f5d96b;

    font-size: 24px;

    font-weight: 500;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-top: 72px;

    margin-bottom: 28px;
}


.content-section p {

    color: rgba(255,255,255,0.92);

    font-size: 21px;

    line-height: 1.9;

    font-weight: 300;

    max-width: 1400px;

    margin-bottom: 34px;
}


.content-section ul {

    margin-top: 20px;

    margin-bottom: 34px;

    padding-left: 28px;
}


.content-section li {

    color: rgba(255,255,255,0.92);

    font-size: 21px;

    line-height: 1.9;

    font-weight: 300;

    margin-bottom: 6px;
}


/* =========================================
   PUBLICATION LINKS
========================================= */

.content-section a {

    color: #f5d96b;

    text-decoration: underline;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .nav-left {

        gap: 24px;
    }

    .navbar a,
    .dropbtn {

        font-size: 15px;
    }

    .content-section {

        padding-left: 60px;

        padding-right: 60px;
    }

    .content-section h1 {

        font-size: 40px;
    }

    .content-section p,
    .content-section li {

        font-size: 19px;
    }
}


@media (max-width: 800px) {

    .content-section {

        padding-left: 32px;

        padding-right: 32px;
    }
}