/* website-mobile-header */

.website-mobile-header {
    display: none;
}

@media (min-width:768px) {

    .mobile-header {
        padding: 25px 5%;
        border-bottom: 1px solid #00000040;
        box-shadow: unset;
    }

}

@media (min-width:1024px) {


    .website-hide {
        display: none;
    }

    .website-mobile-header {
        display: flex;
        justify-content: flex-start;
        width: 90%;
        max-width: 1280px;
        gap: 10px;
        /* border-inline: 1px solid grey; */
        margin-inline: auto;
        padding-inline: 10px;
        max-height: 70px;
        /* position: fixed; */
    }



    .website-mobile-header-div {

        display: flex;
        flex-direction: column;
        gap: 2px;
        align-items: center;
        cursor: pointer;
        margin-top: 0;
    }

    .website-mobile-header-div h4 {
        font-size: 16px;
        color: var(--main-clr);
    }

        .website-mobile-header-div h3 {
        font-size: 16px;
        color: var(--main-clr);
        white-space: nowrap;
    }

    .k_prev-path-name {
        display: flex;
        align-items: center;
        gap: 5px;
        text-decoration: none;
    }
    .k_prev-path-name h4{
        color: #00000040;
        font-size: 16px;
    }

    .k_prev-path-name i{
        font-size: 16px;
        color: #00000040;
        transform: translateY(-1px);
    }



    .k_webheader_chevron_right {
        font-size: 12px !important;
        transform: translateY(2px);
        color: #00000040;
    }
    
}

@media (min-width:1280px) {
    .website-mobile-header {
        width: 100%;    
    }
}