.courses-container {
    flex-wrap: wrap;
    gap: 50px;
    padding: 20px 0;
}
 
.course-info {
    width: 100%;
    justify-content: center;
    gap: 20px;
    padding-bottom: 10px;
    align-items: center;
}

.course-card {
    position: relative;
    width: 300px;
    min-width: 300px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.course-card > img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.course-content {
    padding: 10px 20px 30px 20px;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.landing-section {
    height: 300px;
    background-color: var(--primary);
    align-items: center;
    justify-content: start;
}

.small-menu {
    display: none;
}

.small-menu > i {
    font-size: 25px;
}

.full-menu {
    display: inline-block;
}

.header {
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: 100%;
}

.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;
    margin-left: auto;
    margin-right: auto;
}

.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;
}

/* 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;
    }
}

/* Mobile Portrait */
@media (max-width: 650px) { 
}