@charset "utf-8";
/* ------------------------------------- */
/* Header & Footer ..................... */
/* ------------------------------------- */
html, body {
	height: 100%;
	min-height: 100%;
	overflow: hidden;
	background: #005682;
}
body {
	display: flex;
	flex-direction: column;
}
.StickyHeader {
	top: 10px;
	flex: 0 0 auto;
	background: #005682;
	color: #FFF6CC;
	clear: both;
	text-align: center;
	width: 100%;
	height: 50px;
}
.StickyFooter {
	bottom: 0px;
	flex: 0 0 auto;
	background: #005682;
	color: #FFF6CC;
	clear: both;
	text-align: center;
	width: 100%;
	height: 50px;
}
.main-wrapper {
	display: flex;
	margin: 0px 0px 0px 0px;
}
.row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}
.column {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
}
.left-column-top {
	display: flex;
	justify-content: flex-start;
	margin-left: 20px;
	margin-top: 15px;
	height: 100%;
}
.left-column {
	display: flex;
	justify-content: flex-start;
	margin-left: 20px;
	height: 100%;
}
.center-column {
	height: 100%;
}
.right-column {
	display: flex;
	justify-content: flex-end;
	margin-right: 20px;
	margin-top: 15px;
	height: 100%;
}
.StickyContent {
	flex: 1 1 auto;
	overflow-y: scroll;
	background: #005682;
}
/* Style all font awesome icons */
.fa {
	width: 30px;
	font-size: 18px;
	text-decoration: none;
}
/* Add a hover effect if you want */
.fa:hover {
	color: #FFFFFF;
	opacity: 0.7;
}
/* Set a specific color for each brand */
/* Facebook */
.fa-facebook {
	color: #FFF6CC;
}

.fa-facebook:visited {
	color: #FFF6CC;
}
/* Twitter */
.fa-twitter {
	color: #FFF6CC;
}
.fa-twitter:visited {
	color: #FFF6CC;
}

.fa-instagram {
	color: #FFF6CC;
}
.fa-instagram:visited {
	color: #FFF6CC;
}
/* --------------------*/
/* Style sliding texts */
/* --------------------*/
.box {
	position: relative;
	text-align: center;
	color: #FFF6CC;
}
.box-img:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease-in-out 0s;
}
.box-img img {
	width: 100%;
	height: auto;
}
.content {
	position: absolute;
	color: #FFF6CC;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 30px;
	background: rgba(0, 86, 130, 0.5);
	opacity: 0;
	transition: all 0.8s ease-in-out 0s;
}
.content > .title {
	font-size: 18px;
	line-height: 1.6;
	font-family: 'Cairo', sans-serif;
}
.content > .description {
	font-size: 24px;
}
.box:hover .content {
	opacity: 1;
}
@media only screen and (max-width: 990px) {
	.box {
		/*margin-bottom: 20px;*/
	}
}
/* ------------*/
/* Form Labels */
/* ------------*/
.fn_container {
	display: table;
	width: 80%;
}
.left-half {
	position: absolute;
	margin-top: -10px;
	left: 15px;
	width: 50%;
}
.right-half {
	font-family: 'Cairo';
	font-size: 12px;
	text-align: right;
	position: absolute;
	right: 15px;
	margin-top: -10px;
	width: 50%;
}