.custom_head{
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 80px;
    z-index: 1060;
    transition: 0.33s linear;
    background-color: #ffc43a;
    z-index: 999999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom_head .head_navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 45px; */
    width: 890px;
}
.custom_head .head_navbar img,
.custom_head .head_navbar_mobile img{
    width: 35px;
    height: 35px;
}

.custom_head .head_navbar a:not(a > img),
.custom_head .head_navbar_mobile a:not(a > img){
    padding: 0 .5rem;
    color: #885019;
    text-transform: uppercase;
    font-weight: 600;
}

#mobile-toggle{
    font-size: 1.5rem;
    color: #885019;
    cursor: pointer;
    display: none;
}

.custom_head .head_logo img{
    width: 140px;
    height: 70px;
}
.custom_head .head_navbar_mobile{
    width: 100%;
    position: absolute;
    top: 100%;
    transition: 0.33s linear;
    background-color: #ffc43a;
    left: 0;
    display: flex;
    flex-direction: column;
    /* padding: 30px 40px; */
    height: 0;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
.custom_head .head_navbar_mobile .link{
    margin-bottom: 30px;
    display: none;
}
.custom_head .head_navbar_mobile .img{
    display: none;
}
.custom_head .head_navbar_mobile .link a{
    margin: 10px 0;
}

h2.page-heading{
    font-size: 20px !important;
    font-weight: 700 !important;
}
@media(max-width: 990px){
    #mobile-toggle{
        display: block;
    }
    .custom_head {
        padding: 10px 50px;
    }
    .custom_head .head_navbar{
        justify-content: end;
    }
    .custom_head .head_navbar a{
        display: none;
    }
    .custom_head .head_navbar_mobile.active{
        padding: 20px 40px;
        height: max-content;
        transition: .5s;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        -ms-transition: .5s;
        -o-transition: .5s;
    }
    .custom_head .head_navbar_mobile.active .link{
        display: block;
    }
    .custom_head .head_navbar_mobile.active .img{
        display: block;
    }
}
@media(max-width: 400px){
    .custom_head {
        padding: 10px 30px;
    }
    .custom_head .head_logo img{
        width: 130px;
        height: 60px;
    }
}