/* =========================================================
   SNOW HILLS - HEADER / NAVIGATION
========================================================= */


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: #fff;
    position: relative;
}

.icon_name {
    text-transform: uppercase;
    font-size: 20px;
    width: 170px;
    color: #573481;
}

.top-bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1120px;
    height: 0.5px;
    background: #000;
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.container {
    max-width: 1100px;
    margin: auto;
    padding: 14px 20px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.mainlogo {
    display: flex;
    align-items: center;
    margin-left: -45px;
}

.mainlogo img {
    height: 85px;
}


/* =========================================================
   HEADER RIGHT SIDE
========================================================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 50px;
}


/* =========================================================
   INFO BOX
========================================================= */

.info-box {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* =========================================================
   HEADER ICON
========================================================= */

.h_icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e33a5b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h_icon i {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}


/* =========================================================
   HEADER ICON HOVER
========================================================= */

.info-box:hover .h_icon i {
    color: #6c2db5;
}


/* =========================================================
   HEADER TEXT
========================================================= */

.text_num span {
    font-size: 20px;
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    color: #6c2db5;
    display: block;
}

.text_num p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

#para {
    margin-top: 15px;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.contact-btn {
    background: #6c2db5;
    color: #fff;
    border: none;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 200;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 80px;
    font-family: "Montserrat", sans-serif;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    background: #fff;
}

.nav-content {
    max-width: 1100px;
    margin: auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* =========================================================
   MENU
========================================================= */

.menu a {
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #e94b64;
    text-decoration: none;
    margin-right: 22px;
}


/* =========================================================
   SOCIAL TEXT
========================================================= */

.social span {
    color: #6929b6;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}


/* =========================================================
   SOCIAL
========================================================= */

.social {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* =========================================================
   FACEBOOK
========================================================= */

.fa-facebook {
    width: 36px;
    height: 36px;
    background: #e94b64;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}


/* CENTER FACEBOOK ICON */

.fa-facebook::before {
    color: #fff;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* =========================================================
   INSTAGRAM
========================================================= */

.instagram_header {
    width: 36px;
    height: 36px;
    background: #e94b64;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}


/* CENTER INSTAGRAM ICON */

.instagram_header::before {
    color: #fff;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {
    display: none;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    /* -----------------------------------------------------
       TOP BAR
    ----------------------------------------------------- */

    .top-bar::after {

        max-width: calc(100% - 40px);
    }


    /* -----------------------------------------------------
       HEADER CONTAINER
    ----------------------------------------------------- */

    .container {

        width: 100%;

        max-width: 100%;

        padding: 12px 25px;

        box-sizing: border-box;
    }


    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    .header {

        width: 100%;
    }


    /* -----------------------------------------------------
       LOGO
    ----------------------------------------------------- */

    .mainlogo {

        margin-left: 0;
    }


    .mainlogo img {

        height: 72px;

        width: auto;

        display: block;
    }


    /* -----------------------------------------------------
       HEADER RIGHT
    ----------------------------------------------------- */

    .header-right {

        gap: 25px;
    }


    /* -----------------------------------------------------
       INFO BOX
    ----------------------------------------------------- */

    .info-box {

        gap: 9px;
    }


    .h_icon {

        width: 40px;

        height: 40px;
    }


    .h_icon i {

        font-size: 16px;
    }


    .text_num span {

        font-size: 17px;
    }


    .text_num p {

        font-size: 12px;
    }


    /* -----------------------------------------------------
       CONTACT BUTTON
    ----------------------------------------------------- */

    .contact-btn {

        margin-left: 0;

        padding: 11px 20px;

        font-size: 14px;
    }


    /* -----------------------------------------------------
       NAVBAR
    ----------------------------------------------------- */

    .nav-content {

        max-width: 100%;

        padding: 14px 25px;

        box-sizing: border-box;
    }


    .menu a {

        font-size: 14px;

        margin-right: 16px;
    }


    .social {

        gap: 8px;
    }


    .social span {

        font-size: 14px;
    }


    .fa-facebook,
    .instagram_header {

        width: 34px;

        height: 34px;
    }


    .fa-facebook::before,
    .instagram_header::before {

        font-size: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------------------
       TOP BAR
    ----------------------------------------------------- */

    .top-bar::after {

        width: calc(100% - 30px);

        max-width: none;
    }


    /* -----------------------------------------------------
       HEADER CONTAINER
    ----------------------------------------------------- */

    .container {

        width: 100%;

        padding: 10px 18px;

        box-sizing: border-box;
    }


    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    .header {

        min-height: 65px;

        position: relative;
    }


    /* -----------------------------------------------------
       LOGO
    ----------------------------------------------------- */

    .mainlogo {

        margin-left: 0;

        flex-shrink: 0;
    }


    .mainlogo img {

        height: 62px;

        width: auto;

        max-width: 180px;

        object-fit: contain;
    }


    /* -----------------------------------------------------
       HIDE DESKTOP HEADER INFO
    ----------------------------------------------------- */

    .header-right {

        display: none;
    }


    /* -----------------------------------------------------
       NAVBAR
    ----------------------------------------------------- */

    .navbar {

        width: 100%;

        position: relative;
    }


    .nav-content {

        width: 100%;

        max-width: 100%;

        padding: 10px 18px;

        box-sizing: border-box;

        display: flex;

        align-items: center;

        justify-content: space-between;
    }


    /* -----------------------------------------------------
       HIDE DESKTOP MENU
    ----------------------------------------------------- */

    .menu {

        display: none;
    }


    /* -----------------------------------------------------
       HIDE SOCIAL TEXT
    ----------------------------------------------------- */

    .social span {

        display: none;
    }


    /* -----------------------------------------------------
       SOCIAL
    ----------------------------------------------------- */

    .social {

        display: none;
    }


/* =====================================================
       HAMBURGER
    ===================================================== */

.hamburger {

    position: absolute;

    top: -65px;
    right: 68px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #222222;

    border: 1px solid #777;

    border-radius: 3px;

    padding: 0;
    margin: 0;

    font-size: 18px;

    line-height: 1;

    cursor: pointer;

    z-index: 10010;

    box-sizing: border-box;

}


/* -----------------------------------------------------
       HAMBURGER WHEN OPEN
    ----------------------------------------------------- */

.hamburger.active {

    background: #ffffff;

    color: #222222;

    border-color: #777;

}


/* =====================================================
       FULL MOBILE MENU
    ===================================================== */

.menu {

    display: none !important;

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: auto;

    min-height: 100px;

    padding: 58px 0 0 0;

    margin: 0;

    background: #ffffff;

    box-sizing: border-box;

    flex-direction: column;

    align-items: stretch;

    z-index: 10005;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

}


/* -----------------------------------------------------
       OPEN MENU
    ----------------------------------------------------- */

.menu.active {

    display: flex !important;

}


/* =====================================================
       MENU LINKS
    ===================================================== */

.menu a {

    width: 100%;

    min-height: 43px;

    display: flex;

    align-items: center;

    padding: 0 22px;

    box-sizing: border-box;

    background: #ffffff;

    color: #d20b3b;

    text-decoration: none;

    font-family: 'Montserrat', sans-serif;

    font-size: 11px;

    font-weight: 600;

    line-height: 1;

    border-bottom: 1px solid #eeeeee;

}

        /* When menu is OPEN */
    
        .hamburger.active i {
            display: none;
        }
    
    
        /* Create X */
    
        .hamburger.active::before {
    
            content: "×";
    
            display: flex;
    
            align-items: center;
            justify-content: center;
    
            width: 100%;
            height: 100%;
    
            font-family: Arial, sans-serif;
    
            font-size: 25px;
    
            font-weight: 400;
    
            line-height: 1;
    
            color: #222222;
    
        }


/* -----------------------------------------------------
       FIRST LINK
    ----------------------------------------------------- */

.menu a:first-child {

    border-top: 1px solid #eeeeee;

}


/* -----------------------------------------------------
       HOVER
    ----------------------------------------------------- */

.menu a:hover {

    background: #fafafa;

    color: #6c2db5;

}


/* -----------------------------------------------------
       SOCIAL
    ----------------------------------------------------- */

.social {

    display: none !important;

}


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

.menu:not(.active) {

    display: none !important;

}


    /* -----------------------------------------------------
       FACEBOOK / INSTAGRAM
       HIDDEN ON MOBILE
    ----------------------------------------------------- */

    .fa-facebook,
    .instagram_header {

        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    /* -----------------------------------------------------
       TOP BAR
    ----------------------------------------------------- */

    .top-bar::after {

        width: calc(100% - 24px);
    }


    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    .container {

        padding: 8px 14px;
    }


    .header {

        min-height: 58px;
    }


    /* -----------------------------------------------------
       LOGO
    ----------------------------------------------------- */

    .mainlogo img {

        height: 56px;

        max-width: 160px;
    }


    /* -----------------------------------------------------
       NAVIGATION
    ----------------------------------------------------- */

    .nav-content {

        padding: 8px 14px;
    }


    /* -----------------------------------------------------
       HAMBURGER
    ----------------------------------------------------- */

    .hamburger {

        width: 40px;

        height: 40px;

        font-size: 18px;

        border-radius: 5px;
    }

}
