*{
    margin: 0;
    padding: 0;
    font-family: Montserrat, 'Poppins', sans-serif;
    color: white;
    box-sizing: border-box;
}

.banner{
    height: 100vh;
    background-position:center;
    background-size:cover;
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
}

.header{
    width: 100%;
    background: #041527;
}

.set-logo{
    display: flex;
    align-items: center;
}

.set-logo h1{
    cursor:pointer;
    font-size: 1.6rem;
    /* font-family: 'Kaushan Script', cursive;
    font-family: 'Roboto', sans-serif; */
}

.logo{
    width: 40px;
    margin-right: 5px;
    transition: 0.15s;
    
}

.logo:hover{
    transform: rotateZ(180deg);
    box-shadow: none;
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav ul li a{
    text-decoration: none;
    color: #fff;
}

.nav-links{
   flex: 1;
   text-align: right; 
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    position: relative;
    padding: 8px 12px;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background:#34e7f8;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

nav .fa{
    display: none;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
}

.menu{
    text-align: center;
    margin-top: 40px;
}

.menu a{
    list-style: none;
    text-decoration: none;
    color: black;
    margin-left: 30px;
    font-weight: bold;
    transition: 0.15s;
}

.menu a:hover{
    color: #ff0202;
}

.menu p{
    display: inline-block;
}

.imgs{
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
.imgs1{
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 20px;
}

.imgs1 img:hover{
    transform: scale(1.05);
}

.imgs img{
    cursor: pointer;
    transition: 0.1s;
}
.imgs img:hover{
    transform: scale(1.05);
}
.imgs1 img{
    transition: 0.15s;
}







@media(max-width:700px){
    *{
        margin: 0;
        padding: 0;
        font-family: Montserrat, 'Poppins', sans-serif;
        color: white;
        box-sizing: border-box;
    }

    .logo{
        width: 30px;
    }

    nav ul li a{
        text-decoration: none;
        color: #fff;
        font-size: 8px;
    }

    .set-logo h1{
        cursor:pointer;
        font-size: 1rem;
    }

    .imgs{
        text-align: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .imgs img{
        width: 320px;
    }

    .imgs1{
        flex-direction: row;
        text-align: center;
        flex-wrap: wrap;
    }

    .imgs1 img{
        width: 320px;
    }
    
}