
@media (min-width: 992px) {
    .dropdown-menu{
        border: 1px solid #dadada;
        border-radius: 2px;
        padding: 6px;
        min-width: 240px;
        animation: dropdown 0.3s ease forwards;
        top: 100%;
        overflow: hidden;
        margin: 0;
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
        background: #f4f4f4;
    }
    #nav .dropdown:hover .dropdown-menu , #nav .dropdown:hover .dropdown-menu.show {
        display: block;
        animation: dropdown_hover 0.3s ease forwards;
        transform: none !important;
    } 
}


@media (max-width: 991px) {
    #navbar_content:not(.show){
        display: block !important;
        /* flex-direction: column; */
        position: fixed;
        transform: translateX(-100%);
        top: 0;
        background: var(--color_white);
        height: 100vh;
        overflow: auto;
        transition: all .4s cubic-bezier(.6,.1,.68,.53) ;
    }
    #navbar_content{
        display: block !important;
        position: fixed;
        top: 0;
        width: 320px;
        /* transition: transform 0.4s, visibility 0.4s; */
        transition: all .6s cubic-bezier(.6,.1,.68,.53) ;
        /* will-change: transform, visibility; */
        background: var(--color_white);
        height: 100vh;
        overflow: auto;
        overflow-x: hidden !important;
        left: 0;
        transform: translateX(0);
        z-index: 99;
        padding: 1rem 0.5rem 1rem;
    }
    #navbar_content.collapse_content_shadow:not(.show){
        display: flex;
        transform: translateX(-100%);
        height: 100vh;
        overflow: auto;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        transition: all .4s cubic-bezier(.6,.1,.68,.53);
        background: rgba(51,51,51,.5);
    }

    #navbar_content.collapse_content_shadow{
        display: flex !important;
        position: fixed;
        height: 100%;
        width: 100%;
        /* transition: transform 0.4s, visibility 0.4s; */
        transition: all .4s cubic-bezier(.6,.1,.68,.53);
        /* will-change: transform, visibility; */
        background: rgba(51,51,51,.5);
        overflow: auto;
        overflow-x: hidden !important;
        left: 0;
        transform: translateX(0);
        padding: 1rem;
        z-index: 99;
    }
    #btn_toggleNav{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1px solid var(--color_primary);
        color: var(--color_primary);
        background: var(--color_white);
        transition: var(--transition);
        border-radius: 8px;
    }
    #btn_toggleNav:hover{
        color: var(--color_white);
        background: var(--color_primary);
    }

    #logo{
        max-width: 160px;
    }
    #nav_item{
        color: var(--color_text);
        font-size: 16px;
        font-weight: 500;
        padding: 10px;
        border-radius: 0;
        border-bottom: 1px solid var(--color_border);
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: auto;
    }
    #nav_item:hover{
        color: var(--color_primary);
    }
    #nav_item:hover i{
        color: var(--color_white);
        background: var(--color_primary);
    }
    #nav_item i{
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color_primary);
        border: 1px solid var(--color_primary);
        border-radius: 8px;
        transition: var(--transition);
        padding: 5px;
        width: 25px;
        height: 25px;
    }
    .topbar{
        padding: 5px;
    }
    .listsocial{
        gap: 0.4rem !important;
    }
    .listContact_info_item{
        font-size: 12px;
    }
    .listsocial_item{
        width: 25px;
        height: 25px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    #logo{
        max-width: 130px;
    }
     .title_banner{
        line-height: 40px;
        font-size: 30px;
    }
    .steps_list li{
        margin-bottom: 0.4rem;
        font-size: 1rem;
    }
    .steps_list li img{
        width: 31px;
        height: 31px;
    }
    .salah_row{
        right: 0 !important;
    }
    .about-section-title{

        font-size: 25px;
        line-height: 35px;
    }
    .form_booking {
        padding: 18px 6px 12px 6px;
    }
    .blog_details{
        padding: 50px 0;
    }
    .terms_title {
        font-size: 25px;
    }
    .terms_desc {
        font-size: 14px;
    }
}
@media (max-width: 650px) {
    .card_counter{
        flex-wrap: wrap;
    }
    .form_group .form-check-label{
        font-size: 14px;
    }
}
@media (max-width: 576px) {
    #logo{
        max-width: 120px;
    }
    .salah_title {
        font-size: 20px;
    }
    .salah_quote {
        font-size: 18px;
    }
   .counter_icon{
        max-width: 80%;
        margin: auto;
    }
}

