.site_header {
    background-color: #fff;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    position: relative;
    z-index: 99;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2) !important;
}

.logo {
    color: black;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.logo img {
    width: 90px;
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav_area ul {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
}

.nav_area ul li a {
    color: #474747;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav_area ul li a.active {
    border-bottom: 2px solid #000000;
}


/* Desktop active link */
.nav_area ul li a.active-link {
    border-bottom: 2px solid #474747;
}

.header_toggle_btn {
    display: none;
}


@media (max-width:991px) {

    .site_header .header_toggle_btn {
        display: block;
    }

    .site_header .header_toggle_btn button {
        background-color: black;
        color: white;
        border: none;
        width: 35px;
        height: 35px;
        display: flex;
        font-size: 20px;
        justify-content: center;
        align-items: center;
        transition: all linear .1s;
        border-radius: 5px;
    }

    .site_header .header_toggle_btn button:hover {
        background-color: blueviolet;
    }

    .site_header .nav_area ul {
        position: fixed;
        background-color: white;
        left: 0;
        top: 0;
        flex-direction: column;
        height: 100%;
        gap: 0px;
        width: 250px;
        align-items: flex-start;
        padding: 15px;
    }

    .site_header .site_header_overlay {
        display: none;
        z-index: 98;
        opacity: 0;
        transition: all 0.3s ease;
    }


    .site_header .nav_area ul li {
        display: block;
        width: 100%;
    }

    .site_header .nav_area ul li a {
        display: block;
        border-radius: 5px;
        width: 100%;
        padding: 10px;
        border-bottom: 1px solid rgba(94, 92, 92, 0.637);
    }

    .nav_area ul li a.active {
        border-radius: 0px !important;
        background-color: rgb(190, 0, 0);
        color: white;
        border-bottom: none;
    }

    .site_header_overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .site_header .nav_area ul {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 99;
    }

    .site_header .nav_area ul.active {
        transform: translateX(0);
    }

    .site_header_overlay.active {
        display: block;
        opacity: 1;
    }

}