.landing-section {
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header > a > img {
    height: 75px;
}

.header > * {
    padding: 0 100px;
}

.header > nav {
    height: 100px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: start;
    padding: 0 100px;
}

.header > nav > a {
    color: white;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
}

.blue-overlay {
    background-color: var(--primary);
    overflow: hidden;
    position: relative;
}

.blue-overlay > * {
    z-index: 1;
}

.blue-overlay::before {
    background-image: url('/assets/images/overlay.png');
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    overflow: hidden;
}

.small-menu {
    display: none;
}

.small-menu > i {
    font-size: 25px;
}

.full-menu {
    display: inline-block;
}

/* Laptop */
@media (max-width: 1665px) { 
    .header > * {
        padding: 0;
    }

    .header {
        padding: 0 6%;
    }

    .header > nav {
        padding: 0;
    }
}

/* Tablet Portrait */
@media (max-width: 1024px) { 
    .header {
        padding: 0 3%;
    }
}

/* Mobile Landscape */
@media (max-width: 880px) { 
    .small-menu {
        display: inline-block;
    }

    .full-menu {
        display: none;
    }
    
    .header {
        padding: 0 30px;
    }
}

/* Mobile Portrait */
@media (max-width: 650px) { 
}