*{
    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%;
}


.banner{
    background-image: url(images/banner2.png);
    height: 100%;
    background-position:center;
    background-size:cover;
    width: 100%;
    background-repeat: no-repeat;
}

.con{
    text-align: center;
    margin-top: 30px; 
}

span{
    color: #34e7f8;
}

.intro{
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    font-weight: 700;
    color: #34e7f8;
}

.main{
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-left: 7%;
}

.main p{
    font-size: 10px;
}

.main .colour{
    color: #34e7f8;
}

.main .phon, .loc, .emai{
    margin-right: 70px;
    text-align: center;
}

.que{
    margin-bottom: 10px;
}

.h{
    height: 100px;
    width: 2px;
    background-color: #34e7f8;
    margin-right: 70px;
}

.hh{
    height: 100px;
    width: 2px;
    background-color: #34e7f8;
    margin-right: 30px;
}

.sub{
    margin-top: 40px;
    text-align: center;
}

.sub p{
    font-size: 13px;
}

form{
    text-align: center;
    margin-top: 25px;
}

form input{
    width: 300px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    margin-bottom: 15px;
    background-color: hsla(210, 93%, 5%, 0.555);
    outline: none;
    border: none;
    font-size: 10px;
}

form button{
    background-color: #34e7f8;
    border: none;
    padding: 10px 15px;
    color: black;
    font-weight: 500;
    cursor: pointer;
}

form button:hover{
    background-color: #34e8f898;
}

form .messa{
    height: 150px;
}

.info{
    text-align: center;
    margin-top: 40px;
}

.lo{
    text-align: center;
    padding-bottom: 20px;
}

.lo img{
    margin-left: 5px;
    margin-top: 15px;
}

footer{
	color: black;
	font-size: 16px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	font-weight: 600
}


@media(max-width:700px){
    .logo{
        width: 30px;
    }

    nav ul li a{
        text-decoration: none;
        color: #fff;
        font-size: 8px;
    }

   

   
}