html{
	height:100%;
	width:100%;
	background:#fff;
	font-family:"Edu SA Beginner";
}

#logo{
	width:80px;
	height:80px;
}

header{
	display:flex;
	background:linear-gradient(#186bd8 60%,#afe1ee);
	color:black;
}

#heading{
	font-size:30px;
}

ul{
	display:flex;
	position:absolute;
	right:10px;
	top:30px;
	color:black;
}

li{
	font-size:15px;
	padding:10px;
}

select{
	all:unset;
}

option{
	color:black;
}

a{
	text-decoration:none;
	color:black;
}

@media (min-width:769px)
{
	ul{
		top:0px;
	}
	#heading{
		font-size:50px;
	}
	#logo{
		width:150px;
		height:150px;
	}
	li{
		font-size:25px;
	}
}

#banner{
	height:600px;
	background-image:url("bg.png");
	background-size:content;
	background-repeat:no-repeat;
	background-position:center;
}

#india{
	margin-top:5%;
	background-color:#186bd8;
	color:white;
	padding:20px;
}

#india h3{
	text-align:center;
	font-size:40px;
}

#india p{
	margin:20px;
	font-size:25px;
	text-align:justify;
}

#explore{
	margin-top:30px;
	position:relative;
}

#explore h3{
	font-size:40px;
	position:absolute;
	text-align:center;
	left:40%;
	line-height:40px;
}

#explore h6{
	font-size:25px;
	position:absolute;
	text-align:center;
	left:40%;
	top:70%;
}

@media (min-width:769px){
	#explore h3{
		font-size:90px;
		line-height:90px;
	}

	#explore h6{
		top:90%;
	}
}

.e-image{
	width:100px;
	height:150px;
	transition:transform 1s;
	transform:skewX(20deg);
}


.e-image1{
	width:100px;
	height:150px;
	position:absolute;
	right:0;
	transition:transform 1s;
	transform:skewX(-20deg);
}

@media (min-width:769px){
	.e-image{
		width:300px;
		height:200px;
	}
	.e-image1{
		width:300px;
		height:200px;
	}
}

.content{
	font-size:20px;
	line-height:23px;
	font-weight:100;
	position:fixed;
	top:20%;
	left:20%;
	background:radial-gradient(#186bd8,white);
	border:3px solid black;
	color:black;
	width:60%;
	height:60%;
	padding:20px;
	opacity:0;
	z-index:1;
}

.e-image:hover{
	transform:skewX(0deg);
}

.e-image1:hover{
	transform:skewX(0deg);
}

@media (min-width:769px){
	.content{
		font-size:35px;
		line-height:50px;
	}
}

.e-image:hover+.content{
	opacity:1;
	border-radius:5px;
}

.e-image1:hover+.content{
	opacity:1;
	border-radius:5px;
}

#others div span img{
	border:1px solid black;
	padding:10px;
	margin:20px;
	width:80px;
	height:80px;
	box-shadow:inset 0 0 0 5px 5px white;
}

#others div{
	margin-top:30px;
	padding-left:70px;
	width:250px;
	height:300px;
	display:flex;
}

#others h1{
	font-size:50px;
	text-decoration:underline;
	padding-left:40px;
}

#others{
	margin:20px;
	padding:15px;
	background-color:#186bd8;
	box-shadow:inset 0 0 30px 30px white;
}

@media (min-width:1029px){
	#others div span img{
		width:150px;
		height:250px;
	}
}


@media (min-width:1229px){
	#others div span img{
		width:250px;
		height:250px;
	}	
}

#worth{
	padding:10px;
	margin:20px;
}

#worth h1{
	font-size:40px;
	font-weight:bold;
}


#worth p{
	font-size:30px;
	text-align:justify;
}


footer{
	background-color:#186bd8;
	margin-top:30px;
	color:white;
	text-align:right;
	font-size:30px;
	padding:20px;
}













