{
	padding:0;
	margin: 0;
	box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}	
	section
	{
	position: relative;
	background-size:     cover;                     
    background-repeat:   no-repeat;
    background-position: center center; 
	justify-content: center;
	align-items: center;
	min-height: 70vh;
	background: #112d42;
	}
	section::before
	{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 50%;
	height:100%;
	background: #abd5ee ;
	}
	
	section .container
	{
	postion: relative;
	min-width: 1100px;
	min-height: 550px;
	display: flex;
	z-index: 1000;
	}
	
	section .container .contactinfo
	{
	position: absolute;
	top: 40px;
	width: 450px;
	height: calc(90% - 80px);
	background: #0f3959;
	z-index: 1;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 20px 20px rgba(0,0,0,0.2);
	}

	section .container .contactinfo h2
	{
	color: #fff;
	font-size: 24px;
	font-weight:500;
	}
	
	section .container .contactinfo .info
	{
	position: relative;
	margin: 20px 0;
	}
	
	section .container .contactinfo .info li
	{
	position: relative;
	list-style: none;
	color: #fff;
	display: flex;
	margin: 20px 0;
	cursor: pointer;
	align-items: flex-start;
	}
	
	section .container .contactinfo .info li span: nth-child(1)
	{
	width: 30px;
	min-width: 30px;
	}
	
	section .container .contactinfo .info li span: nth-child(1)img
	{
	max-width: 100%;
	filter: invert(1);
	opacity: 0.5;
	}
	
	section .container .contactForm
	{
	
	position: absolute;
	padding: 70px 50px;
	background: #fff;
	margin-left: 280px;
	padding-left: 300px;
	width: calc(70% - 150px);
	height: 95%;
	box-shadow: 0 50px 50px rgba(0,0,0,0.5);
	}
	
	section .container .contactForm h2
	{
	color: #0f3959;
	font-size: 24px;
	font-weight: 500;
	}