@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600&display=swap');


body {
	font-family: 'Open Sans', sans-serif;
	font-style: normal;
	font-size: 16px;
	font-weight: 300;
	color: #303540;
}

a {
	color: #215fbb;
	text-decoration: none;
}

a:hover {
	color: #215fbb;
	text-decoration: none;
	border-bottom: 1px dashed #215fbb;
}

.header {
	z-index: 9999;
	position: fixed;
	background: rgba(48, 51, 63, 0.9);
	box-shadow: 0 0 7.5px rgba(0, 0, 0, 0.25);
	width: 100vw;
	height: 70px;
	padding-top: 20px;
}

.header .logo {
	display: inline-block;
	float: left;
}

.header .logo img {
	height: 30px;
}

.header .menu {
	display: inline-block;
	float: right;
}

.header .menu a {
	margin-top: 10px;
	color: #FFFFFF;
}

.header .menu a:hover,
.header .menu .active {
	border-bottom: 1px dashed #fff;
}

.header .menu a:not(:last-child) {
	margin-right: 10px;
}

#home {
	background: url(bg.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100vh;
}

#home .title {
	padding-top: 40vh;
	text-align: center;
	font-size: 30px;
	font-weight: 300;
	color: #FFFFFF;
}

#home .title img {
	width: 200px;
	margin-bottom: 20px;
}

.section {
	padding-top: 100px;
	padding-bottom: 100px;
}

.section.gray {
	background: #F7F7F7;
}

.section .title {
	font-size: 30px;
	font-weight: 400;
	color: #007bff;
}

.section .content {
	margin-top: 20px;
	font-size: 18px;
	text-align: justify;
}

.section .section-image {
	text-align: center;
}

.section .section-image img {
	box-shadow: 0 44px 98px 0 rgba(0,0,0, 0.15);
	border-radius: 5px;
}

.section .section-image.nbs img {
	box-shadow: none;
	border-radius: 0;
}

.vertical-align {
    display: flex;
    align-items: center;
}

.footer {
	background: rgba(48, 51, 63, 1);
	box-shadow: 0 0 7.5px rgba(0, 0, 0, 0.25);
	color: #FFFFFF;
	font-size: 14px;
	padding: 20px 0 20px 0;
	text-align: center;
}

@media(max-width:800px) {
	
	#home {
		height: auto;
	}
	
	#home .title {
		padding-top: 200px;
		padding-bottom: 50px;
	}
	
	#home .title img {
		display: none;
	}
		
	.header .logo {
		display: block;
		float: none;
		text-align: center;
	}
	
	.header .menu {
		display: none;
	}
	
	.section .section-image img {
		margin-bottom: 40px;
		width: 50vw;
	}
	
}