*{
    margin: 0;
    padding: 0;
    font-family: Montserrat, 'Poppins', sans-serif;
    color: white;
    box-sizing: border-box;
}

.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;
}

.banner{
    background-image: url(images/banner2.png);
    min-height: 100vh;
    background-position:center;
    background-size:cover;
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
}

.info{
    line-height: 26px;
    margin-top: 10px;
}

.about{
    font-size: 60px;
}

span{
    color: #34e7f8;
}

.all{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10% 8%;
}

.all img{
    cursor: pointer;
}

button{
    padding: 10px 18px;
    background-color: #34e7f8;
    border: none;
    margin-top: 30px;
    color: #041527;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
}

.pro{
    font-size: 30px;
    font-weight: 600;
}


@media(max-width:700px){
    .logo{
        width: 30px;
    }

    nav ul li a{
        text-decoration: none;
        color: #fff;
        font-size: 8px;
    }

    .set-logo h1{
        cursor:pointer;
        font-size: 1rem;
    }

    .all{
        text-align: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .image img{
        height: 300px;
        
    }

    .image{
        width: 100%;
        margin-right: 0%;
        padding-top: 20px;
    }

    .first{
        margin: 0 auto;
    }

    .buton{
        display: flex;
        margin-top: 52px;
        font-size: 12px;
        margin-left: 15px;
    }

    .first h1{
        font-size: 1.3rem;
    }
    
    .all .occu{
        font-weight: bold;
        font-size: 13px;
    }

    .first .welcome{
        margin-top: 90px;
        font-size: 13px;
    }

    .first .second{
        margin-top: 52px;
        font-size: 12px;
        line-height: 20px;
    }

    .icons{
        margin-top: 10px;
        display: flex;
        column-gap: 20px;
        cursor: pointer;
        justify-content: center;
        margin-left: 0;
    }
}