@charset "UTF-8";
/* CSS Document */

	* {
	  box-sizing: border-box;
	}

	body {
	  margin: 0;
	  font-family: Arial;
	}

	/* Center website */
	.container {
		position: relative;
		align-content: center;
		width: 100%;
		margin: 20px 10px 40px 10px;
	}

	.header {
		display: block;
		clear: right;
		width: 100%;
		top: 0px;
	}

	.center {
		position: relative;
		display: block;
		float: left;
		clear: both;
		top: 60px;
		left: 50%;
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

	.content .header img {
		postition: relative;
		max-height: 600px;
		width: 80%;
		margin-top: 0;
	}

	.content  {
		position: relative;
		float: left;
		width: 100%;
		margin-top: -100px;
		margin-bottom: 50px;
	}

	.content p {
		position: relative;
		display: inline-block;
		width: 45%;
		padding-Left: 6%;
		margin: 0 auto;
		line-height: 1.75em;
		padding-bottom: 30px;
	}

	.blue {
		display: block;
		color: #48799c;
		padding-Left: 6%;
		width: 45%;
		font-style: normal;
		text-align: center;
		line-height: 1em;
		margin-bottom: 0px;
	}

	.blue2 {
		font-style: normal;
		font-size: .85em;		
		color: #000;
		line-height: .8em;
		text-align: center;
		margin-top: -200px;
	}

	.blue3 {
		font-style: normal;
		color: #000;
		float: right;
		margin-right: 120px;
		margin-top: -20px;
		line-height: .8em;
	}

	.blue4 {
		color: 000;
		line-height: .8em;
		text-align: center;
		margin-top: -200px;
	}

	.header h2 {
		font-size: 21px;
		text-align: center;
		letter-spacing: .25em;
		width: 100%;
		color: cadetblue;
	}
		
	.header h4 {
		width: auto;
		height: 20px;
	}

	.special h4 {
		margin-top: 0px;
	}

	.container .content .center  {
		position: relative;
		float: left;
		clear: both;
		margin-top: 0px;
		letter-spacing: .25em;
		color: cadetblue;
}

	h1 {
		font-size: 50px;
		word-break: break-all;
	}
		
	h2 {
		font-size: 21px;
	}

	.content h3 {
		position: relative;
		text-align: center;
		margin-top: 12%;
		font-size: 1.25rem;
		width: 45%;
		padding-Left: 5%;
	}
		
	.content h4 {
		position: relative;
		text-align: center;
		margin-top: -8px;
		font-size: 1rem;
		width: 45%;
	}

	.special img {
		position: inherit;
		display: block;
		float: right;
		width: 45%;
		padding-right: 60px;
		margin-bottom: 60px;
		margin-top: -60px;
		margin-right: 20px;
	}

	.content img {
		position: relative;
		display: block;
		float: right;
		width: 45%;
		padding-right: 20px;
		padding-bottom: 20px;
		margin-top: -80px;
	}

	.column .content .overlay {
		position: relative;
		width: 100%;
		opacity: 0;
		transition: .5s ease;
		backkground-color: #008CBA;
		font-size: 20px;
		margin-top: 0;
		}
		
	.column .content:hover .overlay {
		opacity: 1;
}
		
	.column .content .text {
		color: #6b779a;
		font-size: 20px;
		position: inherit;
		text-align: center;
		margin-top: -15px;
		-wevkit-transform: translate (-50%, -50%);
		-ms-transform: translate (-50%, -50%);
		transform: translate (-50%, -50%);
}

	.row {
		position: relative;
		float: left;
		margin-top: 160px ;
		margin-left: 30px;
	}

	/* Add padding BETWEEN each column */
	.row,
	.row > .column {
		padding: 0px;
	}

	/* Create four equal columns that floats next to each other */
	.column {
		float: left;
		width: 25%;
	}

	/* Clear floats after rows */ 
	.row:after {
		content: "";
		display: table;
		clear: both;
	}

footer {
	display: fixed;
	position: fixed;
	width: 100%;
	background-color: #717070;
	padding: 8px 0px 20px 0px;
	height: 30px;
	bottom: 0px;
}

.copyright {
	text-align: center;
	background-color: #717070;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
	font-family: "Source Sans Pro";
}

	/* Responsive layout - makes a two column-layout instead of four columns */

	@media screen and (max-width: 900px) {
		.column {
			width: 25%;
		}
		.content img {
			width: 50%;
			height: auto;
		}
		.content p {
			width: 45%;
			line-height: 1.5em;
		}
		.header h2 { 
			font-size: .9rem;
			width: 100%;
		}
	}

	/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */

	@media screen and (max-width: 600px) {
		
		.container {
			display: block;
			max-width: 600px;
		}
		
		.column {
			width: 100%;
			align-content: center;
		}
		
		.header {
			display: inline-flex;
			float: none;
			width: 100%;
			padding-top: 90px;
		}

		.content img {
			display: block;
			float: left;
			width: 100%;
		}
		
		.column .content img {
			margin-bottom: 2rem;
			width: 100%;
		}
		.column .content .text {
			color: #6b779a;
			font-size: 20px;
			position: relative;
			text-align: inherit;
			width: 100%;
	}
		.content h4 {
			width: 100%;
	}
		
		.content p {
			display: inline-block;
			width: 100%;
			margin: 0 auto;
			line-height: 1.75em;
	}
}


