@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
body{
	background: linear-gradient(90deg,#0e3959 0%,#0e3959 30%,#ff9999 30%,#ff9999 100%);
}
.logo{
	width: 80px;
	cursor: pointer;
	border-radius: 10px;
}
button {
	outline: none;
	width: 180px;
	height:50px;
	color: #000;
	font-size: 16px;
	padding: 12px 0;
	background:#249282;
	border: 0;
	border-radius: 20px;
	margin-top: 8px;
	
	
}
button:hover {
	outline: none;
	width: 180px;
	height:50px;
	color: #000;
	font-size: 16px;
	padding: 12px 0;
	background:#249282;
	border: 0;
	border-radius: 20px;
	margin-top: 10px;
	
}
.c{
	position: relative;
	width: 100%;
	padding: 40px 100px;
}
.c .t{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2em;
}
.c .t h2{
	color: #fff;
	font-weight: 500;
}

.info{
	grid-area: info;
}
.map{
	grid-area: map;
}
.con{
	padding: 40px;
	background: #fff;
	box-shadow: 0 5px 35px rgb(0,0,0,0.15);
	
}
.box{
	position: relative;
	display: grid;
    grid-template-columns: 2fr 1fr;	
	grid-template-rows: 4fr 4fr;
	grid-template-areas: 
		"info"
		"map";
	grid-gap: 20px;
	margin-top: 20px;
	margin-left: 300px;
	
}

.info{
	background: #0e3959;
}
.info h3{
	color: #fff;
}
.info .infobox div{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	
}
.info .infobox div span{
	min-width: 40px;
	height: 40px;
	color: #fff;
	background: #18b7ff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5em;
	border-radius: 50%;
	margin-right: 15px;
}
.info .infobox div p{
	color: #fff;
	font-size: 1.1em;
}.info .infobox div a{
	color: #fff;
	text-decoration: none;
		font-size: 1.1em;
}
.sci{
	margin-top: 40px;
	display: flex;
}
.sci li{
	list-style: none;
	margin-right: 15px;
}
.sci li a{
	color:#fff;
	font-size: 2em;
	color:#ccc;
}
.sci li a:hover{
	color: #fff;
}
.map{
	padding: 0px;
}
.map iframe{
	width: 100%;
	height: 100%;
	padding: 0px;
}
/*responsive design*/
@media(max-width:991px){
	body{
		background: #03a9f5;
	}
	.c{
		padding: 20px;
	}
	.box{
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		grid-template-areas: 
			"form"
			"info"
			"map";
		margin-left: 50px;
	}
	
	.formbox .row50{
		display: flex;
		gap: 0;
		flex-direction: column;
	}
	.inputbox{
		width: 100%;
	}
	.con{
		padding: 30px;
	}
	.map{
		min-height: 300px;
		padding: 0;
	}
}
/* CSS Document */

