/* One.com Web Editor - site theme */
* { box-sizing: border-box; }
body {
	margin: 0;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	color: #3c3c3c;
	background: #ffffff;
}
h1, h2, h3, h4 { color: #213f7b; font-weight: 700; line-height: 1.25; margin: 0 0 12px; }
h1 { font-size: 34px; }
h2 { font-size: 28px; }
h3 { font-size: 20px; }
p { margin: 0 0 16px; }
a { color: #213f7b; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 92%; max-width: 1100px; margin: 0 auto; }
.section { padding: 48px 0; }
.section.grey { background: #f7f7f7; }
.center { text-align: center; }

/* Header */
.site-header { background: #ffffff; border-bottom: 2px solid #213f7b; position: sticky; top: 0; z-index: 999; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; flex-wrap: wrap; }
.logo img { max-height: 54px; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; }
.main-nav a {
	display: block;
	padding: 12px 14px;
	color: #213f7b;
	font-weight: 500;
	font-size: 15px;
	text-decoration: none;
}
.main-nav a:hover, .main-nav .active a { color: #ffffff; background: #213f7b; }

/* Hero */
.hero {
	background-size: cover;
	background-position: center;
	color: #ffffff;
	text-align: center;
	padding: 110px 0 90px;
	position: relative;
}
.hero:before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(16, 35, 74, .55);
}
.hero .container { position: relative; }
.hero h1 { color: #ffffff; font-size: 40px; text-shadow: 1px 1px 3px rgba(0,0,0,.4); }
.hero p { font-size: 19px; }
.btn {
	display: inline-block;
	background: #213f7b;
	color: #ffffff !important;
	padding: 13px 30px;
	border-radius: 4px;
	font-weight: 700;
	text-decoration: none;
	margin: 6px 4px;
}
.btn:hover { background: #16305f; }
.btn.light { background: #ffffff; color: #213f7b !important; }
.btn.light:hover { background: #fbfafa; }

/* Cards */
.card-row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.card {
	flex: 1 1 calc(33.333% - 24px);
	margin: 12px;
	background: #ffffff;
	border: 1px solid #e3e3e3;
	border-radius: 4px;
	padding: 22px;
	box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 15px; }
.card img { border-radius: 4px; margin-bottom: 14px; }

/* Info band */
.info-band {
	background: #213f7b;
	color: #ffffff;
	text-align: center;
	padding: 36px 0;
}
.info-band h2 { color: #ffffff; }
.info-band .flags { font-size: 15px; letter-spacing: 1px; }

/* Forms */
.form-box { background: #fbfafa; border: 1px solid #e3e3e3; padding: 26px; border-radius: 4px; max-width: 760px; margin: 0 auto; text-align: left; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 500; margin-bottom: 4px; font-size: 15px; }
.form-row input, .form-row select, .form-row textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 3px;
	font-family: inherit;
	font-size: 15px;
	background: #ffffff;
}
.form-row textarea { min-height: 110px; }
.form-note { font-size: 13px; color: #775623; display: none; }

/* Two column text/image */
.split { display: flex; flex-wrap: wrap; align-items: center; }
.split > div { flex: 1 1 48%; padding: 10px; }

/* Gallery strip */
.gallery-strip { display: flex; flex-wrap: wrap; margin: 0 -6px; }
.gallery-strip figure { flex: 1 1 calc(33.333% - 12px); margin: 6px; }
.gallery-strip figcaption { font-size: 13px; color: #775623; padding-top: 6px; text-align: center; }

/* Lists */
.tip-list { list-style: none; margin: 0; padding: 0; }
.tip-list li { padding: 10px 0 10px 30px; position: relative; border-bottom: 1px solid #e3e3e3; }
.tip-list li:before { content: '\2693'; position: absolute; left: 0; color: #775623; }

/* Footer */
.site-footer { background: #213f7b; color: #cfd9ea; font-size: 14px; padding: 30px 0 20px; margin-top: 40px; }
.site-footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; }
.site-footer h4 { color: #ffffff; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; }
.site-footer a { color: #ffffff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 3px 0; }
.footer-bottom { text-align: center; padding-top: 16px; margin-top: 14px; border-top: 1px solid #2f4f8c; font-size: 13px; }

/* Breadcrumbs */
.breadcrumbs { font-size: 13px; color: #775623; padding: 14px 0 0; }
.breadcrumbs a { color: #775623; }

@media (max-width: 768px) {
	.card, .split > div, .gallery-strip figure { flex: 1 1 100%; }
	.hero h1 { font-size: 27px; }
	.site-header .container { justify-content: center; }
}
