*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.header_nav{
    width: 100%;
    height: 86px;
    background: #fafafa;
    position: fixed;
    box-shadow: 0 4px 2px -2px #aba9a9;
    z-index: 99999999;
}
.header_logo{
    width: 20%;
}
.header_logo a img{
    width: 97px;
    height: 70px;
    margin-top: -7px;
}
.header_logo a strong{
    font-size: 25px;
    font-family: 'ITC Avant Garde Gothic Std Demi Condensed', sans-serif;
}
.nav_ul{
    display: flex;
    align-items: center;
}
.nav_ul li a{
    font-size: 15px;
}
.nav_ul li a .li_text:hover{
    color: #07243a;
}
.li_dropdown{
     display: flex;
    position: relative;
}
.dropdown-li_menu{
    min-width: 218px;
    display: none;
    position: absolute;
    height: auto;
    background: #0a0a0a;
    opacity: 0.8;
    margin-top: 35px;
    border-radius: 5px;
}
.li_dropdown:hover .dropdown-li_menu{
    display: block;
}
.dropdown-li_menu a{
    color: white;
}
.header_mobil{
    display: none;
}
@media only screen and (max-width: 991px){
    .header_web{
        display: none;
    }
    .header_mobil{
        display: block;
    }
}
.nav_ul_li{
    display: flex;
    justify-content: center;
}



                                    /*FOOTER*/
footer{
    width: 100%;
    min-height: 300px;
}
.footer_top{
    width: 100%;
    height: 100%;
    padding-top: 30px;
    background: #232323;
}
.footer_ul li{
   list-style: none;
    margin-left: 10px;
}
.footer_ul li a{
    color: white;
    text-decoration: none;
}
.footer_ul .li_text:hover{
   color: #f5c988!important;
}
.footer_center{
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.footer_box{
    width: 20%;
    color: white;

}
.footer_icon{
    z-index: 5;
}
.footer_icon img{
    width: 40px;
    height: 40px;
}
.mobile_footer{
    width: 70%;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-around
}
.footer_bottom{
    width: 100%;
    height: 50px;
    display: flex;
    background: rgba(192, 191, 191, 0.4);;
    font-size: 12px;
    justify-content: center;
    align-items: center;
}
@media only screen and (max-width: 854px){
    .mobile_footer {
        width: 85%;
    }

}
@media only screen and (max-width: 740px){
    .mobile_footer{
        display: unset;
    }
    .footer_box{
        width: 100%;
        margin: 0 20px;
        border: unset!important;
    }
    .footer_center{
        justify-content: center;
    }
}
@media only screen and (max-width: 366px){
    .footer_ul li .ul_li_slash {
        display: none;
    }

}

.loading{
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    z-index: 99999999999;
}


