
nav{
    height: 80px;
    width: 100%;
    padding: 0% 5%;
    background-color: var(--black1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    position: fixed;
}

nav a{
    display: flex;
    gap: 5px;
}

nav a img{
    height: 50px;
    width: 50px;
    object-fit: scale-down;
}
nav a p{
    font-size: 18px;
}

nav ul{
    display: flex;
    list-style: none;
    gap: 2rem;
    right: 0;
}
nav ul li {
    display: flex;
    align-items: center;
    justify-content: center;
}
nav ul li a{
    color: white;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    transition: 0.3s ease-in;
}

nav ul li a:hover{
    transform: scale(1.02) translateX(2px) translateY(2px);
    transition: 0.3s ease-in;
}



nav ul li a i{
    color: var(--black1);
    transition: 0.5s ease-in;
}

.contactBtn{
    color: var(--black1);
    padding: 6px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    font-weight: bolder;
    letter-spacing: 2px;
    transition: 0.5s ease-in;
}
.contactBtn:hover{
    background-color: var(--black1);
    color: var(--primary-color);
    transition: 0.3s ease-in;
}

.contactBtn:hover i{
    color: var(--primary-color);
    transition: 0.3s ease-in;
}
nav .navBtn{
    display: none;
    /* height: 5rem;
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center; */
}

/* .navBtn input{
    display: none;
    height: 4rem;
    width: 4rem;
    opacity: 0;
}

.navBtn i{
    display: none;
    position: absolute;
    font-size: 2rem;
} */

@media screen and (max-width: 925px) {
    nav{
        width: 100%;
        position: fixed;
        z-index: 10;
    }
    .logo a{
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .logo a img{
        height: 2.5rem;
        width: 2.5rem;
    }
    .logo a p{
        font-size: 14px;
    }
    .navUl{
        z-index: 5;
        margin-top: 80px;
        position: absolute;
        padding-left: 0px;
        width: 100%;
        align-self: flex-start;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 30px;
        transform: translatex(-100%);
        transition: 0.5s ease-in;
        background-color: var(--black1);
        padding: 20px 0px;
    }


    nav ul li{
        text-transform: uppercase;
        font-size: 1.2rem;
        padding: 0 2%;
    }
    nav ul li a{
        font-size: 0.9rem;
    }
    nav .navBtn{
        display: block;
        height: 5rem;
        width: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navBtn{
        height: 100%;
        width: 100%;
    }
    .navBtn input{
        z-index: 22;
        height: 2rem;
        width: 2rem;
        opacity: 0;
    }

    .navBtn i{
        position: absolute;
        font-size: 2rem;
    }

}
