@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700');
body {
	font-family: 'Roboto', sans-serif;
	background: url(../images/body_bg.jpg) 0 0 no-repeat;
	background-size: cover; 
	color: #4f7682;
	padding: 0;
	margin:0;
	font-size: 14px;
	font-weight: 300;
	animation: fadein 2s;
	-moz-animation: fadein 2s; /* Firefox */
	-webkit-animation: fadein 2s; /* Safari and Chrome */
	-o-animation: fadein 2s; /* Opera */
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-transition: all 0.3s linear 0.1s;
	-moz-transition: all 0.3s linear 0.1s;
	-ms-transition: all 0.3s linear 0.1s;
	-o-transition: all 0.3s linear 0.1s;
	transition: all 0.3s linear 0.1s;
}
@keyframes fadein {
from {
 opacity:0;
}
to {
	opacity: 1;
}
}
 @-moz-keyframes fadein { /* Firefox */
 from {
 opacity:0;
}
to {
	opacity: 1;
}
}
 @-webkit-keyframes fadein { /* Safari and Chrome */
 from {
 opacity:0;
}
to {
	opacity: 1;
}
}
 @-o-keyframes fadein { /* Opera */
 from {
 opacity:0;
}
to {
	opacity: 1;
}
}
.clearfix:after {
	content: '';
	display: block;
	overflow: hidden;
	visibility: hidden;
	height: 0;
	width: 0;
	clear: both;
}
.clearfix {
	zoom: 1;
}
.logo {
	display: block;
	text-align: center;
	margin: 150px auto 20px;
	width: 100%;
}
.logo img.logo {
    width: auto;
    height: 200px;
    background: #fff;
    padding: 15px;
    display: block;
    margin: 0 auto;
    border: 3px solid #fff;
    box-shadow: 0 0 10px -1px #ccc;
}
.logo img {
	margin-bottom: 10px;
}
h1, p {
	display: block;
	text-align: center;
	color: #fff;
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 15px;
	text-transform: capitalize;
}
h3 {
	font-size: 30px;
	font-weight: normal;
	line-height: 50px;
}
p {
	font-size: 24px;
}
.border-top {
	border-top: 6px solid #4f2c7e
}
.info {
	display: block;
	margin: 30px auto 0;
	width: 350px;
	background: rgba(0,0,0,0.8);
	padding: 15px 20px;
}
.info ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.info li {
	line-height: 50px;
	font-size: 18px;
	color: #fff;
	text-align: left;
	padding-left: 32px;
}
.info li.add {
	background: url(../images/contact_info.png) 0 12px no-repeat;
}
.info li.box {
	background: url(../images/contact_info.png) 0 -169px no-repeat;
}
.info li.phone {
	background: url(../images/contact_info.png) 0 -112px no-repeat;
}
.info li.fax {
	background: url(../images/contact_info.png) 0 -318px no-repeat;
}
.info li.email {
	background: url(../images/contact_info.png) 0 -262px no-repeat;
}

@media (max-width:767px) {
	.logo {
		width: 70%;
	}
	.info {
		width: 80%;
	}
	h1 {
		font-size: 30px;
	}
	h3 {
		font-size: 20px;
	}
	p {
		font-size: 18px;
	}
}