/************ WIRN **********/

body{
	font-family:'Lato', sans-serif;
	font-size:14px;
	color:#111;
	background: #001423;
}
.main-container{
	background: url('../images/bg.jpg') no-repeat top center;
	background-size:cover;
	height:500px;
	position: relative;
}
.text-wrap{
	position: absolute;
	left: 0;
	top:100px;
	border-left: 12px solid #ffe853;
	padding-left: 15px;
}
.text-wrap h4{
	color:#ffe853;
	margin-top: 10px;
	margin-bottom:0
}
.text-wrap p{
	color:#fff;
	margin-bottom: 0
}
.yellow-txt{
	color:#ffe853 !important;
	font-size: 13px !important;
}
.img{
	width: 52px;
}




/************* Responsive Style ***********/
@media (min-width: 1025px){
	.main-container{
		margin-top:20px
	}
}

@media (min-width: 768px) and (max-width: 1024px){
	.main-container{
		height:100vh;
	}
}

@media (max-width: 767px){
	.main-container{
		height:400px;
	}
	.text-wrap{
		top:auto;
		bottom: -220px;
	}
}


