.landing-section {
    height: 300px;
    background-color: var(--primary);
    align-items: center;
    justify-content: start;
}

.header {
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: 100%;
}

.small-menu {
    display: none;
}

.small-menu > i {
    font-size: 25px;
}

.full-menu {
    display: inline-block;
}

.header > a > img {
    height: 75px;
}

.header > * {
    padding: 0 30px;
}

.header > nav {
    background-color: white;
    height: 100px;
    gap: 30px;
    align-items: center;
    justify-content: start;
    padding: 0 100px;
    border-bottom-left-radius: 300px;
}

.header > nav > a {
    color: black;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
}

.section {
    padding-bottom: 100px;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    color: white;
    gap: 30px;
}

.container {
    max-width: 1140px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

hr {
    border-top: 2px solid var(--primary);
    margin: 9px 0;
}

.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;
}

.contact {
    padding: 75px 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* Laptop */
@media (max-width: 1665px) { 
    .container {
        width: 90%;
    }

    .header > nav {
        padding: 0 4% 0 6%;
    }

    .landing-section {
        height: 350px;
    }

    .section {
        padding-top: 50px;
    }
}

/* Tablet Landscape */
@media (max-width: 1200px) { 
    .section {
        gap: 10px;
    }
}

/* Tablet Portrait */
@media (max-width: 1024px) { 
    .header > nav {
        padding: 0 3% 0 3%;
        border-bottom-left-radius: 50px;
    }

    .section {
        padding: 50px 5% 100px 5%;
    }
}

/* Mobile Landscape */
@media (max-width: 880px) { 
    .small-menu {
        display: inline-block;
    }

    .full-menu {
        display: none;
    }

    .landing-section {
        height: 300px;
    }

    .section {
        padding-top: 0px;
        padding-bottom: 50px;
    }

    .header > nav {
        padding: 0 30px 0 25px;
        border-bottom-left-radius: 50px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Portrait */
@media (max-width: 650px) { 
}