@import url('css/font-awesome.min.css');

* {box-sizing: border-box;}
html { font-family: 'Karla', sans-serif; font-size:18px; line-height: 1.5; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
body { margin: 0; text-align: center; color: #555; background-color: #aaa; }

::selection { background: #6fc33a; color: white; }
::-moz-selection { background: #6fc33a; color: white; }

h1, h2 { color: #6fc33a; margin-bottom: 0; }
h2 { margin-top: 0; }

a { color: #6fc33a; text-decoration: none; }
a:hover { color: #64af34; text-decoration: underline; }

img {
}

.whole {
	max-width: 1440px;
	margin: 0 auto;
	background-color: #fff;
}
.wrap {
	padding: 0 20px;
}
.header {
	padding: 20px 0;
}
.header__row {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.header__logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 0 5px;
}
.header__tagline {
	color: #0066ad;
	padding: 10px 0 0 0;
}
.header__right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.header__right a {
	font-size: 15px;
	color: #0066ad;
	text-transform: uppercase;
	padding: 3px 0;
}
.header__right a:hover {
	text-decoration: none;
}
.header__right--email i {
	margin-right: 5px;
	display: inline-block;;
}
.content {
	padding-bottom: 25px;
}
.footer {
	font-size: 16px;
	background-color: #0066ad;
    border-top: 5px solid #6fc33a;
    color: #fff;
}

.footer__social {
	padding-top: 40px;
	padding-bottom: 30px;
}
.footer__social a {
	width: 50px;
	height: 50px;
	border-radius: 25px;
	margin: 0 5px;
	background: #6fc33a;
	color: white;
	display: inline-block;
	font-size: 24px;
	padding-top: 13px;
}
.footer__social a:hover {
	background: #64af34;
}

.footer__copyright {
	background-color: #0d5692;
	font-size: 14px;
	text-transform: uppercase;
	color: #ccd6e2;
	padding: 12px 0;
}

.footer__copyright p {
	margin: 0;
}
/*@media all and (max-width: 599px) {
	.responsive-iframe {
		position: relative;
		padding-bottom: 150%;
		height: 0;
		overflow: hidden;
		max-width: 150%;
	}
	.responsive-iframe iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}*/
@media all and (max-width: 900px) {
    .header__logo,
    .header__right--email {
        display: none;
    }   
}
@media all and (min-width: 730px) {
	.header__row {
		flex-direction: row;
		margin: 0 -10px;
	}
	.header__logo {
		flex-direction: row;
		padding: 0 10px;
	}
	.header__tagline {
		align-self: center;
		padding: 0 0 0 10px;
	}
	.header__right {
		margin-left: auto;
		padding: 0 10px;
	}
}