:root{
    --first-color:#6D87FF;
    --navbar-color:#0082e6;
    --hover-color:#1b9bff;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    font-family: montserrat;
}
.phone-menu-active{
    left: 0px !important;
}
.to-top{
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--first-color);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 35px;
    z-index: 999;
    transition: .3s all ease;
}
.to-top i{
    color: white;
    font-size: 20px;
}
.to-top:hover{
    background: rgb(243, 159, 3);
}
 .logo img{
    max-width: 100px;
    border-radius: 50%;
 }
.top{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(5, 5, 85);
}
.top .container{
    padding: 5px;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top .container .left-side{
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top .container .left-side .adres{
    font-size: 13px;
    color: white;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}
.top .container .left-side .phone-number i,
.top .container .left-side .adres i{
    font-size: 13px;
    padding:8px;
    background: black;
    border-radius: 50%;
}
.top .container .left-side .phone-number a{
    color: white;
    text-decoration: none;
    background: none;
    font-size: 13px;
}
.top .container .left-side .phone-number a:hover{
    text-decoration: none;
    opacity: .7;
}
.top .container .right-side{
    width: 30%;
    display: flex;
    justify-content: end;
    align-items: center;
}
.top .container .right-side i{
    color: white;
    padding-right: 20px;
    font-size: 13px;
    background: none;
}
.top .container .right-side i:hover{
    opacity: .7;
}
.top .container .right-side a{
    background: none;
}
header{
    background: var(--navbar-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
}
header .container{
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .container .left-side{
    width: 30%;
}
header .container .left-side img{
    max-width: 70px;
    border-radius: 50%;
}
header .container .right-side{
    display: flex;
    justify-content: center;
    align-items: center;

}
header .container .right-side ul{
    display: flex;
}
header .container .right-side ul li{
    height: 80px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
header .container .right-side ul li a{
    font-size: 18px;
    letter-spacing: 0.5px;
    color: white;
    padding: 10px;
    border-radius: 5px;
}
header .container .right-side ul li .dropdown{
    position: absolute;
    top: 80px;
    height: auto;
    background: var(--navbar-color);
    display: none;
    border-radius: 5px;
    width: 250px;
    z-index: 999;
}
header .container .right-side ul li:hover .dropdown{
    display: block;
}
header .container .right-side ul li .dropdown ul{
    display: block;
    height: auto;
}
header .container .right-side ul li .dropdown ul li{
    height: 40px;
   justify-content: flex-start;
   padding: 25px 5px;
}
header .container .right-side ul li .dropdown ul li a{
    font-size: 16px;
    padding: 0;
}
header .container .right-side ul li .dropdown ul li a:hover{
    opacity: .8;
    background: none;
    padding: 0;
}
header .container .right-side ul li a:hover{
    background: var(--hover-color);
}
header .container .right-side ul li .dropdown ul .horizontal-line{
    width: 100%;
    height: 2px;
    background: white;
}
header .container .right-side .mobil-menu-buton{
    display: none;
    background: none;
    border: none;
}
header .container .right-side .mobil-menu-buton i{
    color: white;
    font-size: 30px;
}



/*nav-menu start*/
.nav-menu-bar{
    background: #0082e6;
    height: 100vh;
    position: absolute;
    top: 134px;
    left: -400px;
    transition: .3s all linear;
    padding: 10px 30px;
    z-index: 999;
}
.nav-menu-bar ul{
    padding: 20px;
    display: block !important;
}
.nav-menu-bar ul li{
    padding: 20px 0px;
    transition: .5s all;
}
.nav-menu-bar ul li a i{
    margin-left: 50px;
}
.nav-menu-bar ul li a{
    text-decoration: none;
    color: white;
    font-size: 25px;
}

.nav-menu-bar ul li .dropdown{
    display: none;
    background: #1b9bff;
    margin-top: 10px;
    width: 100%;
    border-radius: 5px;
}
.nav-menu-bar ul li .dropdown ul{
    padding: 0px;
}
.nav-menu-bar ul li .dropdown ul li{
    padding: 10px 20px;
}
.nav-menu-bar ul li .dropdown ul li a{
    font-size: 20px;
}
.nav-menu-bar ul li .dropdown ul li a i{
    margin-left: 0px;
}
.nav-menu-bar ul li .dropdown ul .vertical-line{
    width: 100%;
    height: 1px;
    background: #fff;
}
.nav-menu-bar ul li:hover .dropdown{
    display: block;
}


/*nav-menu end*/




/*footer*/
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background:#3E3E3E;
}
footer .container{
    padding: 50px 0px 20px;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: start;
}
footer .container h3{
    color: white;
    font-size: 25px;
    margin-bottom: 20px;
}
footer .container ul li{
    padding-bottom: 15px;
}
footer .container ul li a{
    color: white;
    font-size: 17px;
}
footer .container ul li a:hover{
    opacity: .7;
    background: none;
}
footer .container .contact a{
    text-decoration: none;
    color: white;
}
footer .container .contact a:hover{
    background: none;
    opacity: .7;
}
footer .container .contact .icon{
    margin-bottom: 20px;
}
footer .container .contact .icon a i{
    font-size: 17px;
    padding-right: 20px;
}
footer .contact .number{
    margin-bottom: 20px;
}
footer .contact .number a{
    font-size: 17px;
    margin-bottom: 20px;
}
footer .container .location{
    color: white;
    font-size: 17px;
    line-height: 22px;
}
footer .container .location i{
    margin-right: 5px;
}
footer .vertical-line{
    width: 80%;
    height: 2px;
    background: #fff;
}

footer .end p{
    padding: 10px;
    color: white;
    font-size: 13px;
}
footer .end a{
    text-decoration: none;
    color: var(--first-color);
}
footer .end a:hover{
    background: none;
    opacity: .7;
}



@media screen and (max-width: 1150px){
    header .container{
        width: 90%;
        justify-content: space-between;
        padding: 0 20px;
        align-items: center;
    }
    header .container .right-side .mobil-menu-buton{
        display: block;
        color: white;
        font-size: 24px;
    }
    header .container .right-side ul{
        display: none;
    }

    
}

@media screen and (max-width: 992px){
    .top{
        display: none;
    }
    footer .container{
        display: block;
    }
    footer .container .logo{
        margin-bottom: 20px;
    }
    .nav-menu-bar{
        top: 80px;
    }
}










