/* MAIN HEADER WRAPPER */
.mec-new-main-head {
    max-width: 1260px;
    width: 100%;
    margin: auto;
}

/* HEADER BAR */
.mec-header-inner-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    margin-top: 15px;
    border-radius: 18px;
}

/* LOGO SECTION */
.mec-header-inner-block-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mec-header-inner-block h3 {
    color: #404040;
    font-size: 14px;
    margin: 0;
}

/* MENU + CONTACT SECTION */
.mec-new-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
}

/* CONTACT BUTTON (hidden on mobile) */
.mec-new-header-right li {
    display: none;
    border: 2px solid #d5d5d5;
    border-radius: 12px;
    padding: 7px 9px;
    font-size: 14px;
}

.mec-new-header-right li a {
    text-decoration: none;
    color: #333;
}

/* MENU ICON */
.mec-head-menu {
    cursor: pointer;
    height: 20px;
}

/* SLIDE MENU CONTAINER */
.header-container-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transition: right 0.4s ease;
    padding: 40px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
}

/* CLOSE ICON */
.mec-close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 22px;
    cursor: pointer;
}

/* MENU LIST */
.mec-header-main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mec-header-main-menu ul li {
    margin-bottom: 22px;
}

.mec-header-main-menu ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #222;
    font-weight: 500;
}

/* ACTIVE MENU LINK */
.mec-header-main-menu ul li.active a {
    color: #000;
    font-weight: 700;
}

/* APPLY BUTTON */
.cta-bg-blacks {
    margin-top: 20px;
}

/* DIVIDER LINE */
.mec-hr {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin-top: 30px;
}

.header-logo {
    height: 40px;
}

/* ---------------- TABLET ---------------- */

@media (min-width:641px) {

    .header-container-links {
        width: 50%;
    }

    .mec-new-header-right li {
        display: block;
    }

    .mec-header-inner-block {
        padding: 14px 60px;
        background: #eeeeee;
        margin-top: 30px;
        /* border-radius: 50px; */
    }

    .mec-new-main-head {
        max-width: 680px;
    }

    .header-logo {
        height: 30px;
    }

}

/* ---------------- DESKTOP ---------------- */

@media (min-width:1025px) {

    .mec-header-inner-block h3 {
        font-size: 18px;
    }

    .mec-new-header-right {
        gap: 36px;
    }

    .header-container-links {
        width: 420px;
    }

}

@media (min-width: 1000px) {
    .mec-new-main-head {
        max-width: 900px;
    }
}

@media (min-width: 1200px) {
    .mec-new-main-head {
        max-width: 1024px;
    }
}

@media (min-width: 1440px) {
    .mec-new-main-head {
        max-width: 1260px;
    }
}