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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
    color: #444;
    margin: 0;
}

a {
    color: #00788c;
	font-weight: bolder;
}
a:hover, a:focus {
  color: #006373;
}

p {
	margin: 20px;
}

h2 {
	margin: 20px;
}

h3 {
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
}

li {
	line-height: 1.6em;
}

.fullwidth-white {
	overflow: hidden;
	width: 100%;
	background-color: white;
}
.fullwidth-grey {
	overflow: hidden;
	width: 100%;
	background-color: #eeeeee;
}
.fullwidth-dot-pattern {
	overflow: hidden;
	width: 100%;
	background-color: rgba(255, 255, 255, 1);
	background-image: url("images/dot-pattern.png");
	background-repeat: repeat;
	background-attachment: scroll;
}

.fullwidth-line-pattern {
	overflow: visible;
	width: 100%;
	background-color: rgba(238, 238, 238, 1);
	background-image: url("images/line-pattern.png");
	background-blend-mode: difference;
	background-repeat: repeat;
	background-attachment: fixed;
}

.container {
    margin: 10px auto;
	max-width: 1100px;
	padding: 10px;
}

.logotop {
	overflow: auto;
	width: 100%;
	height: 70px;
	position: relative;
	text-align: center;
	margin: auto;
	background-color: #FFFFFF;
}

.logotop img {
	max-height: 65px;
	margin: 2px auto;
}

.header {
	overflow: hidden;
	width: 100%;
	height: 200px;
	position: relative;
	text-align: center;
	margin: auto;
	background-color: #990000;
}

.header h1 {
    font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
	font-size: 60px;
    color: #fff;
	position: absolute;
	z-index: 2;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	filter: drop-shadow(2px 2px 2px #444)
}

.header img {
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: .5;
	width: 100%;
	filter: blur(2px);
	filter: saturate(0);
	mix-blend-mode: screen;
}

.footer {
	overflow: hidden;
	width: 100%;
	position: relative;
	text-align: center;
	vertical-align: middle;
	margin: auto;
	background-color: #990000;
	min-height: 150px;
}

.footer h2 {
	position: absolute;
	z-index: 2;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.footer img {
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: .5;
	width: 100%;
	filter: blur(2px);
	filter: saturate(0);
	mix-blend-mode: screen;
}

.thumb img{
	width: 100%;
	box-shadow: 2px 2px 5px 0px #ccc;
	margin: 0px auto;
	text-align: center;
}


.thumb:hover img{
	filter: brightness(1.1);
}

.flexrow {
	text-align: center;
	width: 100%;
}

.flexcolumn {
	display: inline-flex;
	margin: 0px 10px;
	text-align: center;
	width: 25%;
	max-width: 250px;
	vertical-align: middle;
}


.flexcolumn a, p {
	text-decoration: none;
	color: #54575a;
}

.flexcolumn2 {
	display: inline-block;
	margin: 0px 2px;
	text-align: center;
	width: 50%;
	max-width: 500px;
	vertical-align: middle;
}

.flexcolumn2 h4, ol, li {
	color: #54575a;
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
	font-size: 20px;
	text-align: left;
	line-height: 1.5em;
}

.flexcolumn2 p {
	color: #54575a;
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
	font-size: 20px;
	text-align: left;
	line-height: 1.5em;
}

@media screen and (max-width: 680px) {
	
	.flexcolumn {
		display: inline-block;
		max-width: 500px;
		width: 90%;
		margin: 10px auto;
	}
	.flexcolumn2 {
		width: 90%;
	}
	
}

hr.separator {
	border: 2px solid #f7d117;
	width: 250px;
	margin: 10px auto 20px;
	box-shadow: 2px 2px 2px 0px #ccc;
}

.button {
	margin: 10px 0px;
	padding: 10px;
	width: 100%;
	background-image: linear-gradient(0turn, #990000, #ea0029);
	border-radius: 3px;
	color: #ffffff;
	font-weight: 700;
}

.button:hover {
	background-image: linear-gradient(.5turn, #990000, #ea0029);
}
