
.navigation-bar{
    display: flex;
    justify-content: space-between;
    align-items: center ;
    /*background-color: rgb(22, 33, 61);*/color:white;background-color: RGB(15, 82, 186);
    z-index: 2; 
    user-select: none;
}

a{
    text-decoration: none;
    color:inherit;
}
a:active{
    color:inherit;
}
a:hover{
    color:inherit;
}


.brand{
    padding:12px 40px;
}

.logo{
    width:50px;display: inline-block;
    vertical-align:middle;
}

.menu-icon{
    width:50px;display: inline-block;
    vertical-align:middle;
    padding-right: 10px;
    color:white;
    display: none;
}

.b-name{
    display: inline-block;
    padding-left: 10px;
    font-size: 22px;
    font-family: "Merienda", serif;
    vertical-align: middle;
}
.menu-buts{
    user-select: none;
    margin-right: 20px;
    height: 100%;
}

.menu-buts .mname{
    display: inline-flex;
    margin-right:20px;
    position:relative;
    height: 100%;
    font-family: "Itim", serif;font-size: 18px;
    justify-content: center;
    align-items: center;
    padding: 18px 0px;
}
.serves::after{
    content: "SERVICES";

}

.companys::after{
    content:"COMPANYS";
}
.abouts::after{
    content:'ABOUT';
}
.contacts::after{  
    content: 'CONTACT'; 
}

.menu-buts .mname::after{
    position: absolute;
    width: 0%;left:0;
    padding: 18px 0px;
    overflow: hidden;
    color: rgb(176, 171, 172);
    font-family: "Itim", serif;font-size: 18px;
    transition: width .3s;
    background-color: transparent;
}

.menu-buts .mname:hover::after{
    width: 100%;
}

.tool{
    user-select: none;
    position:absolute;
    top:60px;
    background-color: rgb(247, 241, 253);
    width:250px;
    color:black;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    border-radius: 10px;
    padding-top:20px;
    padding-bottom: 10px;
    display:none;transition: opacity 0.3s;
}

.tool::before{
    content: '';
    position: absolute;
    height: 50px;width: 50px;
    top:-3px;
    z-index: -1;
    transform: rotate(45deg);
    background-color: rgb(247, 241, 253);
}

.navigation-menu{
    user-select: none;
    font-family:  "Itim", serif;
    font-size: 18px;
    color:black;
    border-style: solid;
    border-width: 0 0 1px 0;
    padding:10px;
    width:80%;
    text-align: center ;
    display: block;
    margin-bottom: 10px;
}

.navigation-menu:hover{
    background-color:rgb(33, 46, 76);
    color: white;
    border-radius: 10px;
}

.navigation-menu:active{
    background-color:rgb(9, 19, 42);
}
.mname:hover .tool{
    display: flex;
}


.menu-options {
    user-select: none;
    font-family:  "Itim", serif;
    display: none;
}
.menu-options .option{
    font-size: 18px;
    color:black;
    border-style: solid;
    border-width: 0 0 1px 0;
    padding:10px 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-top: 10px;
}

.menu-options .option:active{
    background-color:rgb(224, 235, 244);
    color:white;
}

#serve-option,#company-option,#about-option{
    display:none;
}
#serve-option .omenu,#company-option .omenu,#about-option .omenu{
    font-size: 18px;
    background-color: rgb(229, 230, 247);
    color:rgb(0, 0, 0);
    display: block;
    /*border-width: 0 0 1px 0;*/
    padding:10px 30px;
    margin-bottom:3px;
    border-radius:10px;
    
}
#serve-option .omenu:active,#company-option .omenu:active,#about-option .omenu:active{
    opacity: 0.8;
}


@media screen and (max-width:1000px) {
    
    .menu-buts{
        display: none;
    }
   
    .menu-icon{
        display:inline-block;
        width:38px;
        margin-right:20px;
        justify-content: space-between;
    }
    .logo{
        width:40px;
    }
    .b-name{
        font-size:20px;
        padding-left:2px;
    }
    .brand{
        padding-left:20px;
    }
    
}