
body{
    margin: 0;
    overflow-x: hidden;
}
.container{
    width:80% ;
    margin: auto;
}
header{
    display: flex;
    justify-content: center;
}
.logo{
    width: 25%;
    height: 7vh;
}
.logo img{
    width: 60%;
    height: 120%;
}
nav{
    width: 55%;
    text-align: center;
    margin: auto;
}
nav .nav-1{
    list-style: none;
    display: flex;
}
nav ul li a{
    color: black;
    text-decoration: none;
}
nav ul li{
    margin-right: 3%;
    padding: 1% ;
    border-right: 2px solid rgb(128, 72, 72, 0) ;
    border-left: 2px solid rgb(128, 72, 72, 0) ;
    border-top: 2px solid rgb(128, 72, 72, 0) ;
    border-bottom: 2px solid rgb(128, 72, 72, 0) ;
}
nav ul li:hover{
    border-right: 2px solid rgb(128, 72, 72, 1) ;
    border-left: 2px solid rgb(128, 72, 72, 1) ;
    border-top: 2px solid rgb(128, 72, 72, 1) ;
    border-bottom: 2px solid rgb(128, 72, 72, 1) ;
}
.li-fa{
    position: relative;
}
.dashport{
    display: flex;
    border: 2px solid rgb(128, 72, 72);
    width: 300%;
    transform: translate(-3.5%,14%);
    padding: 2%;
    margin-top: 10%;
    /* background-color: ; */
    visibility: hidden;
    position: absolute;
    transition-delay: 0.2s;
}
.li-fa:hover .dashport{
    visibility: visible;
}
.dashport ul{
    list-style: none;
    padding: 0;
    margin-right: 10%;
}
.search{
    width: 20%;
    margin: auto;
    display: flex;
    justify-content: end;
}
.search i{
    margin-right: 5%;
    color: rgb(128, 72, 72);
}
.number{
    color: #fff;
    background-color:  rgb(128, 72, 72);
    text-align: center;
    border-radius: 50%;
    border: 2px solid #fff;
    width: 4%;
    height: 15%;
    font-size: 12px;
    transform: translate(-140% , 20%);

}
