*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	text-decoration: none;
	border: none;
	outline: none;
    font-family: 'Montserrat', sans-serif;
}
.hero{
    height: 100vh;
    width: 100%;
	background: url("images/background.jpg");
    background-position: center;
    background-size: cover;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
    padding-left: 8%;
    padding-right: 8%;
}
.logo{
    color: white;
    font-size: 35px;
    letter-spacing: 1px;
    cursor: pointer;
}
span{
    color: #0093FF;
}
nav ul li{
    list-style-type: none;
    display: inline-block;
    padding: 10px 25px;
    color: white;
}
nav ul li a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

nav ul li a:hover{
    color: #0093FF;
    transition: .4s;
    scale: 1.5;
}
.btn{
    background-color: #0093FF;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 10px 20px;
    transition: .4s;
    border-radius: 30px;
    border:2px #0093FF solid;
}
.btn:hover{
    transform: scale(1.1);
    color: black;
    background: white;
    border-color: white;
}
.content{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
}
div h1{
    color: white;
    margin: 20px 0px 20px;
    font-size: 75px;
}
div h3{
    color: white;
    font-size: 25px;
    margin-bottom: 50px;
    position: relative;
    bottom: 15px;
}
div h4{
    color: white;
    letter-spacing: 2px;
    font-size: 20px;
    position: relative;
    top: 30px;
}
.my-form form{
    width:380px ;
    max-width: 100%;
    position: relative;
}
.my-form form input {
    display: inline-block;
    width: 100%;
    padding: 14px 130px 14px 15px;
    border: 2px solid #0093FF;
    outline: none;
    border-radius: 30px;
    background-color: white;
}
.submit{
    max-width: 100%;
    width: 380px;
    position: absolute;
    padding-top:0px ;
}
.submit form input{
    position: absolute;
    display: inline-block;
    outline: none;
    border: none;
    padding: 10px 20px;
    background-color: #0093FF;
    color: white;
    border-radius: 30px;
    box-shadow: 0px 0px 5px #000,0px 0px 15px #0093FF;
    right: 6px;
    bottom:6px ;
    cursor: pointer;
}
/*
@media screen and (max-width: 970px){
	
	.logo{
    color: white;
    font-size: 25px;
    letter-spacing: 1px;
    cursor: pointer;
	
    }
	nav{
    padding-top: 45px;
    padding-left: 8%;
    padding-right: 8%;
    }
	nav ul li{
    padding: 10px 15px;
}
	div h1{
    margin: 20px 50px 20px;
    font-size: 45px;
}
div h3{
    color: white;
    font-size: 15px;
    margin-bottom: 50px;
	margin-left: 50px;
    position: relative;
    bottom: 15px;
}
div h4{
    color: white;
    letter-spacing: 2px;
    font-size: 20px;
    position: relative;
    top: 30px;
	left: 50px;
}
	.my-form {
    width:380px ;
    max-width: 100%;
    position: relative;
	top: 50px;
}
	.submit{
    max-width: 100%;
    width: 380px;
    position: absolute;
    padding-top:50px ;
}
	.content{
    position: absolute;
    top: 70%;
    left: 8%;
    transform: translateY(-50%);
}
	
}
*/

/*about section*/

