*{
	margin:0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins',Sans-serif;
}

body{
	background-image:url("12.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size:cover;
	background-position: center;
	
	color: black;
	font-weight: 400;
}

.banner{
	position:fixed;
	width: 100%;
	height: 80px;
	padding: 20px 10%;
	background-image:url('0 (2).gif');
	background-size:cover;
	background-position: center;
	backdrop-filter: blur(10px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index:100;
	box-shadow: 0px 0.3px 20px black;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #fff;
	
	
	
}

.logo{
	font-size: 18px;
	color: aqua;;
	text-shadow: 0px 0px 16px aqua;
	text-decoration: none;
	font-weight: 800;
	
}

.navbar a {
	font-size: 18px;
	color: #ededed;
	text-decoration: none;
	text-shadow: 0px 4px 10px black;
	font-weight: 500;
	margin-left: 35px;
	transition: .3s;
}

.navbar a:hover,
.navbar a.active {
	color: #00abf0;
	text-shadow: 0 0 20px #00abf0;
}

.btn1{


	border-width: 3px;
	border-style: solid;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 13px;
	padding-right: 13px;
	background-color:transparent;
	border-radius: 20px;
	box-shadow: 0px 0px 15px #00abf0;
	
	
}

.btn{
	border-width: 3px;
	border-style: solid;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	background-color: transparent;
	border-radius: 20px;
	box-shadow: 0px 0px 15px #00abf0;
	
	
}


.contact{
	padding-top:30px;
	min-height: 100vh;
	background-color: #e8f0fe;
	
	text-align: center;
}

.container{
	padding-top:80px;
	max-width: 800px;
	margin:0 auto;
	
}

.container h2{
	padding-top:50px;
	text-align: center;
	font-size: 36px;
	text-shadow: 0 0 10px aqua;
	margin-bottom: 40px;
	color: aqua;
}

.contact-wrapper{
	
	display: grid;
	grid-template-colums: repeat(2, 1fr);
	grid-gap: 30px;
	color:white;
	position:relative;
	left:80px;
}

.contact-form{
	text-align: left;
	
	
}

.contact-form h3{
	font-size: 24px;
	text-shadow: 0 0 10px #00abf0;
	
	margin-bottom: 20px;
	color:aqua;
}

.form-group{
	margin-bottom: 20px;
	
	border-radius: 8px;
	
}
input, textarea{
	width: 40%;
	padding: 12px;
	border: 1px solid aqua;
	border-radius: 8px;
	box-shadow: 0 0 5px aqua;
	border: none;
	background-color: #f8f9fa;
	color: #333;
}
input:focus,
textarea:focus{
	outline:none;
	
	box-shdow: 0 0 10px green;
}

button{
	display: inline-block;
	padding:12px 24px;
	background-color: #45a049;
	box-shadow: 0 0 10px #45a049;
	border-radius: 50px 50px 50px 50px;
	color:#fff;
	
	border:1px solid aqua;
	cusor: pointer;
	transition: 0.3s ease;
}

button:hover{
	background-color: #00abf0 ;
	transition: .5s;
}

.contact-info{
	text-align: left;
	text-shadow: 0 0 10px #00abf0;
}

.contact-info h3{
	font-size: 24px;
	margin-bottom: 20px;
	text-shadow: 0 0 10px #00abf0;
	color: #fff;
	
}

.contact-info p{
	margin-bottom: 10px;
	color: #fff;
}

.contact-info i{
	color: aqua;
	margin-right: 10px;
}

h3{
	color: aqua;
	font-size:24px;
	align:center;
	text-shadow: 0 0 10px aqua;
	
	
}

@media screen and (max-width: 768px){
	.container{
		padding:120px;
}
	.contact-wrapper{
			
			grid-template-colums: 1fr;
			
	}
}

.dropdown{
				float: right;
				overflow:hidden;
				
				padding-left: 20px;
			}
			
			.dropdown .dropbtn{
				font-size: 18px;
				border: none;
				outline:none;
				color: #fff;
				text-shadow: 0 0 20px aqua;
				padding: 14px 16px;
				background:transparent;
				
				
			}
			
			.navbar a:hover, .dropdown:hover
			.dropbtn{
				background:transparent;
				color: aqua;
				text-shadow: 0 0 20px aqua;
				transition: .3s;
			}
			
			.dropdown-content{
				display:none;
				position: absolute;
				background-color:#f9f9f9;
				min-width: 160px;
				box-shadow: 0 2px 10px aqua;
				z-index:1;
			}
			
			.dropdown-content a{
				float: none;
				color:black;
				padding: 12px 16px;
				text-decoration: none;
				border:none;
				display: block;
				text-align: left;
			
			}
			
			.dropdown-content a:hover {
				
				background-color: #ddd;
			}
			
			.dropdown:hover .dropdown-content{
				transition: .5s;
				display:block;
			}