body{
	font-family: 'Cabin', Arial, sans-serif;
	margin:0; padding:0
	font-size:16px;
	color:#085486;
}
*{
	box-sizing:border-box;
}



.container{
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
}

.left-bg, .right-bg{
	position:absolute;
	top:0;
	bottom:0;
	background-size:cover;
	background-repeat:no-repeat;
	width:50%;
}

.left-bg{
	left:0;
	background-position: right 0 top 50%;
	background-image:url('/img/Truck-Design.jpg');
}
.right-bg{
	right:0;
	background-position: right 0 top 50%;
	background-image:url('/img/haulage.jpg');
}





.panel{
	text-align:center;
	width:691px;
	max-width:100%;
	padding:32px 48px;
	position:relative;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:16px;

	box-shadow:0 8px 16px rgba(0,0,0,0.5);
	background: white;
}

.panel img{
	width:100%;
	max-width:375px;
}



a{
	color:#88b1d1;
	display:inline-block;
}

p{
	font-size:14px;
	padding:0 48px;
}
h3{
	font-size:22px;
	font-weight:bold;
	margin-top:16px;
}
h4{
	font-size:17px;
	font-weight:bold;
}




@media(max-width:640px){
	.panel{
		padding:32px 16px;
		// background:rgba(225,255,255,0.8);
	}
	p{
		padding:0 16px;
	}

	.left-bg, .right-bg{
		display:none;
	}
}