nav{
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    padding: 0 5px;
    background-color: white;
    font-family: "Inter", sans-serif !important;
}
.user{
    margin-right: 5px;
}
nav ul{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    list-style: none;
    align-items: center;
}
nav li{
    height: 60px;   
}
nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: 0.7s ease;
    color: black;
}
nav .navDesk a{
    justify-content: center;
}
.x{
    transform: translate(260px, -35px);
    font-size: 20px;
    cursor: pointer;
    color: black;
}
.xx{
    transform: translate(220px, -32px);
    font-size: 20px;
    display: none !important;
    color: black;
}
.show{
    display: block !important;
}
.flow{
    overflow: hidden;
}
.dropdown {
    display: none;
    z-index: 9999;
}
ul .pro:hover ul.dropdown {
    display: flex;
}
.d{
    padding-left: 10px;
}
nav a:hover{
    background-color: #f0f0f0;
    transform: translateY(5px);
    color: white;
    background-color:hsl(252, 100%, 67%) ;
}
nav li:first-child{
    margin-right: auto;
}
.logo img{
    width: 40px;
    padding: 0px 20px;
    box-sizing: content-box;
}
.navMob {
    position: fixed;
    top: 0;
    right: 0;
    min-height: 40vh;
    width: 250px;
    list-style: none;
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
}
.dropdown{
    width: 250px;
    list-style: none;
    z-index: 9999;
    display: none;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
}
.navDesk .dropdown a{
    padding: 0;
}
.dropdown li , .dropdown a{
    width: 100%;
}
.navMob li{
    width: 100%;
}
.navMob a{
    width: 100%;
    color: black;
    font-weight: 700;
}
.menu{
    display: none;
}
.logo{
    font-weight: 600;
    color: hsl(252, 100%, 67%);
    cursor:auto ;
    display: flex;
    align-items: center;
}
#feild{
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url("../images/searchicon.png");
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
    margin-top: 7px;
    display: none;
    width: 0;
}
.animition{
    animation: search 0.5s alternate 0.25s forwards ease-out;
    display: block;
}
@keyframes search {
    25% {
        width: 71.25px;
    }

    50% {
        width: 142.5px;
    }

    75% {
        width: 213.75px;
    }

    100% {
        width: 285px;
}
}
@media screen and (max-width:1370px) {
    .hide{
        display: none !important;
    }
    .menu{
        display: block;
    }
    .dropdown{
        background-color: rgba(255, 255, 255, 0.89);
    } 

}
.hideic{
    display: none;
}
@media screen and (max-width:580px) {
    .was{
        display: none;
    }
    .hideic{
        display: block;
    }
}
@media screen and (max-width:400px) {
    .navMob{
        width: 100%;
    }
    .xx{
        transform: translate(255px, -32px)
    }
}
footer{
    background-color: black;
}
.footerContainer{
    padding: 70px 30px 20px ;
}
.socialIcons{
    display: flex;
    justify-content: center;
}
.socialIcons a{
    text-decoration: none;
    padding:  10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}
.socialIcons a i{
    font-size: 2em;
    color: black;
    opacity: 0,9;
}
.socialIcons a:hover{
    background-color: #111;
    transition: 0.5s;
}
.socialIcons a:hover i{
    color: white;
    transition: 0.5s;
}
.footerNav{
    margin: 30px 0;
}
.footerNav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
}
.footerNav ul li a{
    color:white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;
}
.footerNav ul li a:hover{
    opacity: 1;
}
.footerBottom{
    background-color: #000;
    padding: 20px;
    text-align: center;
}
.footerBottom p{
    color: white;
}
.designer{
    font-weight: 700;
}
.footerBottom span a {
    text-decoration: underline;
    color: #551A8B;
}
@media screen and (max-width: 580px) {
    footer{
        display: flex;
        flex-direction: column;
    }
    .footerNav ul{
        flex-direction: column;
        align-items: center;
    }
    .footerNav li{
        padding: 10px;
    }
}
@media screen and (max-width: 365px) {
    .socialIcons a{
        margin: 10px 5px;
    }
}