@font-face {
    font-family: 'Exo 2';
    src: url('../../fonts/static/Exo2-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

:root {
    color-scheme: light only;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Exo 2', sans-serif;
}

#top-nav-1 a.active {
    color: #00C0BA !important;
    border-top: 3px solid #00C0BA !important;
}
#top-nav-1 a:hover {
    color: #00C0BA !important;
    border-top: 3px solid #00C0BA !important;
}

#top-nav-2-links a {
    color: white;
}

    #top-nav-2-links a.active {
        color: #00C0BA !important;
    }

    #top-nav-2-links a:hover {
        color: #00C0BA !important;
    }

/* Navbar */
#scroll-nav {
    padding-top: 15px;
    background-color: #F0DD5D;
    display: none;
}

    #scroll-nav.fixed-nav {
        position: fixed;
        top: 0;
        width: 100%;
        display: block;
    }

ul.nav {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    ul.nav li a {
        padding: 10px 15px;
        text-decoration: none;
        font-weight: 500;
        display: inline-block;
        color: #fff;
    }


.page-section {
    height: 230vh;
    font-size: 30px;
    padding: 200px 0;
    text-align: center;
}

section#section1, section#section3 {
    background-color: #eee;
}

.container2 {
    display: grid;
}

.content, .overlay {
    grid-area: 1 / 1;
}

.overlay {
    position: absolute;
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 1360px) {
    #top-nav-1 {
        display: none;
    }

    #top-nav-2 {
        display: none;
    }

    #scroll-nav {
        display: none;
    }

    #responsive-top-nav-1 {
        display: block;
    }

    #responsive-top-nav-2 {
        display: block;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1360px) {
    #top-nav-1 {
        display: block;
    }

    #top-nav-2 {
        display: block;
    }

    #scroll-nav {
        display: block;
    }

    #responsive-top-nav-1 {
        display: none;
    }

    #responsive-top-nav-2 {
        display: none;
    }
}
