@charset "UTF-8";
/* Body */
body {
    font-family: Arial;
	margin: 0px;
    font-style: normal;
    font-weight: 300;
    text-transform: none;
	background-color: #ffffff;
}
/* Container */
.container {
	width: auto;
	margin-left: auto;
	margin-right: auto;
}
/* Navigation */
footer {
	width: 100%;
	height: 50px;
	background-color: #FFD500;
	box-sizing: border-box;
    padding: 15px 30px 10px 30px;
	color: #005BBB;
    letter-spacing: 2px;
	text-align: center;
	font-size: small;
	position: static;
	z-index: 10;
	bottom: 0;
	left: 0;
}

/* Hero Section */
.bg-top {
    background-image: url("../images/flag-top.jpg");
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: auto;
    padding-top: 150px;
    padding-bottom: 50px;
}
.bg-bottom {
    background-image: url("../images/flag-bottom.jpg");
	background-repeat: no-repeat;
	background-position: top;
	background-size: auto;
    padding-top: 50px;
    padding-bottom: 150px;
}

.text-container {
	padding: 0px 200px 0px 200px;
	text-align: center;
}
.title {
    color: #ffffff;
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
	font-size: xxx-large;
    font-weight: bold;
}
.subtitle {
    color: #ffffff;
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
	font-size: xx-large;
    font-weight: bold;
}
.text {
	text-align: center;
	color: #ffffff;
	margin-top: 10px;
	font-weight: normal;
	font-size: large;
	letter-spacing: 1px;
	text-shadow: 1px 1px 30px #000000;
}
.blue {
	color: #005BBB;
}
.yellow {
	color: #FFD500;
}
.black {
	color: #000000;
}
.bg-white {
	background-color: #ffffff;
}
.hidden {
	display: none;
}

/* Mobile */
@media (max-width: 320px) {
.bg-top {
    background-image: url("../images/flag-top.jpg");
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
    padding-top: 50px;
	padding-bottom: 50px;
}
.text-container {
	padding: 0px 50px 0px 50px;
}
}

/* Small Tablets */
@media (min-width: 321px)and (max-width: 767px) {
.text-container {
	padding: 0px 50px 0px 50px;
}
}

/* Small Desktops */
@media (min-width: 768px) and (max-width: 1096px) {
.text-container {
	padding: 0px 50px 0px 50px;
}
}
