/* =========================================
   GENERAL
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: #ffffff;
    color: #000000;

    font-family: "Montserrat", sans-serif;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.site {
    width: 100%;
}
/* =========================
   MOBILE MENU OVERLAY
========================= */

.menu-overlay {
    display: none;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: #ffffff;

    z-index: 9999;
}

.menu-overlay.active {
    display: block;
}

.menu-content {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    width: 79px;

    margin-left: 59px;
    padding-top: 45px;

    gap: 24px;
}

.menu-item {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 79px;
}

.menu-item a {
    color: #000000;

    text-decoration: none;

    text-align: center;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: normal;
}

.menu-item.active a {
    font-weight: 500;
}

.menu-line {
    display: block;

    width: 79px;
    height: 2px;

    margin-top: 4px;

    background: #FED94D;

    border-radius: 2px;
}
/* =========================================
   HEADER
========================================= */

.header {
    width: 100%;
    max-width: 1200px;

    min-height: 72px;

    margin: 0 auto;

    padding: 12px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;

    gap: 8px;
}

/* Profile image */

.profile-image {
    width: 48px;
    height: 48px;

    object-fit: cover;

    border-radius: 50%;
}

/* Hamburger button */

.menu-button {
    width: 48px;
    height: 48px;

    padding: 10px;

    border: none;
    border-radius: 50%;

    background: #ffffff;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 5px;

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 22px;
    height: 2px;

    background: #000000;
}

/* Apply button */

.apply-button {
    min-width: 108px;
    min-height: 48px;

    padding: 12px 20px;

    background: #fed94d;

    border-radius: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 500;
}

/* PROGRAMS PAGE */

.programs {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 45px 20px 80px;
}

/* PAGE TITLE */

.programs h1 {
    text-align: center;
    margin: 0 0 45px;

    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;

    color: #000000;
}

/* EACH PROGRAM */

.program {
    width: 100%;
    margin-bottom: 60px;
}

/* PROGRAM IMAGE */

.program img {
    display: block;

    width: 100%;
    height: 360px;

    object-fit: cover;

    border-radius: 20px;

    margin-bottom: 25px;
}

/* PROGRAM TITLE */

.program h2 {
    margin: 0 0 18px;

    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;

    color: #000000;
}

/* PROGRAM TEXT */

.program p {
    margin: 0 0 20px;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 1.6;

    color: #000000;

    text-align: justify;
}

/* MOBILE */

@media (max-width: 600px) {

    .programs {
        padding: 40px 16px 70px;
    }

    .programs h1 {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .program {
        margin-bottom: 50px;
    }

    .program img {
        height: 300px;
        border-radius: 18px;
        margin-bottom: 22px;
    }

    .program h2 {
        font-size: 23px;
        margin-bottom: 15px;
    }

    .program p {
        font-size: 15px;
        line-height: 1.6;
    }

}

/* SMALL PHONES */

@media (max-width: 400px) {

    .programs {
        padding-left: 15px;
        padding-right: 15px;
    }

    .program img {
        height: 260px;
    }

    .program h2 {
        font-size: 21px;
    }

    .program p {
        font-size: 14px;
    }

}