body {
	margin: 0px;
	padding: 0px;
	min-width: 1280px;
	font-family: Verdana;
	font-size: 15px;
}

#header #logo {
	position: absolute;
	width: 100vw;
	min-width: 1280px;
    top: 0;
    filter:
	    drop-shadow(-1px -1px 1px rgb(255,255,255))
	    drop-shadow(1px 1px 1px rgb(255,255,255));
}

#header #logo img {
	position: absolute;
	left: 50%;
	top: 0px;
	width: 25vw;
	min-width: 320px;
	transform: translate(-50%, 0);
}

#header {
	width: 100%;
	height: auto;
}

#banner-image img {
    width: 100%;
    height: auto;
}

.row {
	min-width: 900px;
	padding-top: 50px;
	display: flex;
	flex-direction: row;
}

.row .text {
	flex-grow: 1;
	flex-basis: 20%;
	padding-right: 50px;
	text-align: justify;
}

.row .text h1 {
	text-transform: uppercase;
	text-align: left;
}
.row .text h1 strong {
	font-size: 40px;
}

.row .image {
	flex-shrink: 1;
	flex-basis: 40%;
	min-width: 450px;
}

.row .padding {
	flex-basis: 10%;
}

.row .padding-half {
	flex-basis: 5%;
}

.row .image img {
    width: 100%;
    height: auto;
}

.row-style-2-separator {
	position: relative;
	height: 120px;
	width: 100%;
	overflow: hidden;
	margin-bottom: -40px;
	padding-top: 40px;
	z-index: 1;
}

.row-style-2-separator p {
	position: relative;
	height: 120px;
	width: 110%;
	background-color: #dfd8cc;
	margin-left: -10px;
	/*margin-bottom: -60px;*/
	z-index: 1;
	transform: rotate(3deg);
}

.row-style-2 {
	position: relative;
	z-index: 2;
	background-color: #dfd8cc;
}

.row-style-2 .text {
	flex-basis: 10%;
	padding-left: 50px;
}

.row-style-2 .text h1 {
	text-align: right;
}

.row-style-2 .image {
	flex-basis: 60%;
	padding-bottom: 50px;
}

.row-style-2 .image img {
	border: 4px solid #000;
}

.row-style-3 {
	padding-top: 0;
}

.row-style-3 .text {
	padding-top: 50px;
	flex-basis: 10%;
	/*padding-left: 50px;*/
}

.row-style-3 .image {
	flex-basis: 80%;
}

.row-style-3 .image img {
	margin-left: -8px;
	border: 4px solid #000;
}

.padding-smedia {
	margin-top: -50px;
	flex-shrink: 0;
	text-align: center;
}

#footer {
	display: block;
	height: 12vw;
	font-size: 14px;
	min-width: 1280px;
	min-height: 220px;
	background-color: #2b3846;
	border-top: 27px solid #000;
}

#footer .logo {
	text-align: center;
}

#footer .logo .centered-container {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
}

#footer .logo img {
	opacity: 0.5;
	width: 20vw;
	min-width: 320px;
}

#footer .smedia {
	float: right;
	text-align: center;
	padding-right: 20px;
}

.smedia-icons {
	text-align: left;
}

.smedia-icons-top {
	text-align: left;
	margin-left: 10px;
}


@media screen and (min-width: 1280px) {
	#header #logo {
		top: calc(430px + (650 - 430) * (100vw - 1280px) / (1920 - 1280));
	}

	.row .text h1 strong {
		font-size: calc(40px + (60 - 40) * ((100vw - 1280px) / (1920 - 1280)));
	}

	body {
		font-size: calc(15px + (23 - 15) * ((100vw - 1280px) / (1920 - 1280)));
	}
}

@media screen and (max-width: 1279px) {
	#header #logo img {
		top: 430px;
	}

	.row .text h1 strong {
		font-size: 40px;
	}

	.row .text {
		font-size: 15px;
	}
}