/* =========================================
   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;
}

/* CONTACT PAGE */

.contact-page {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 45px 20px 100px;
}

/* INTRODUCTION */

.contact-intro {
    width: 100%;
    margin-bottom: 50px;
}

.contact-intro h1 {
    margin: 0 0 35px;

    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;

    color: #000000;
}

.contact-intro p {
    margin: 0;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;

    color: #000000;
}

/* CONTACT DETAILS */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;

    width: 100%;
}

/* EACH CONTACT ITEM */

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* TITLES */

.contact-item h2,
.contact-social h2 {
    margin: 0;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;

    color: #000000;
}

/* PHONE AND EMAIL */

.contact-item a {
    width: fit-content;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;

    color: #000000;
    text-decoration: none;
}

/* LOCATION */

.contact-item p {
    margin: 0;

    max-width: 300px;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;

    color: #000000;
}

/* SOCIAL MEDIA */

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* SOCIAL ICON CONTAINER */

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* SOCIAL ICON */

.social-icon {
    width: 36px;
    height: 36px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #e9e3e3;

    border-radius: 5px;

    color: #000000;

    text-decoration: none;

    font-size: 20px;

    transition: 0.2s;
}

/* WHATSAPP */

.social-icon.whatsapp {
    color: #399a05;
}

/* HOVER */

.social-icon:hover {
    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 600px) {

    .contact-page {
        padding: 40px 16px 80px;
    }

    .contact-intro h1 {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .contact-intro p {
        font-size: 16px;
    }

    .contact-details {
        gap: 32px;
    }

}

/* SMALL PHONES */

@media (max-width: 400px) {

    .contact-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-intro h1 {
        font-size: 23px;
    }

    .contact-item a {
        font-size: 15px;
    }

}