*{
    margin: 0;
    padding: 0;
    font-family: Montserrat, 'Poppins', sans-serif;
    color: white;
    box-sizing: border-box;
}

.header{
    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);
    height: 120vh;
    background-position:center;
    background-size:cover;
    width: 100%;
    background-repeat: no-repeat;
}

.con{
    text-align: center;
    margin-top: 30px; 
}


.all{
    display: flex;
    margin-bottom: 5%;
    margin-left: 8%;
    margin-right: 8%;
    justify-content: space-between;
}

.all .graphic{
    text-align: center;
}

.all .graphic p{
    font-size: 12px;
   
}

.all .graphic .colour{
     color: #34e7f8;
}


@media(max-width:700px){
    .logo{
        width: 30px;
    }

    nav ul li a{
        text-decoration: none;
        color: #fff;
        font-size: 8px;
    }

   

   
}