:root {
	--content-width: 65rem;
	--main-font: 'hamlin-light';
    --bold-font: 'hamlin-bold';
    --extrabold-font: 'hamlin-extrabold';
    --black: #000000;
    --white: #ffffff;
	--red: #cd1719;
    --gold: #a59c75;
	--blue: #42596F;
	--basic-spacing: 1.5rem;
    --transition: all .3s ease-in-out;
	--body-font-size: 1.15rem;
}

body {
    box-sizing: border-box;
	background-color: var(--red);
	
	font-family: var(--main-font);
    color: var(--white);
    font-size: var(--body-font-size);
	font-weight: 300;
	text-decoration: none;
	line-height: 1.85em;
	
	position: relative;
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: center;

	min-height: 100vh;
	padding: calc(var(--basic-spacing) * 3.5) var(--basic-spacing) var(--basic-spacing);
	margin: 0;
}
a {
	color: var(--white);
}
body * {
    padding:0;
    margin: 0;
    box-sizing: border-box;
}
strong {
	font-family: var(--extrabold-font);
}
/* Typography */
html {
    font-size: 1vw;
}

h1 {
    display: none !important;
}
p {
	margin-bottom: 0rem;
}
/* Layout */
.wso-header,
.wso-img_wrapper {
    position: relative !important;
}
section:not(.wso-img-grid) {
    padding: var(--basic-spacing) 0;
    margin: 0 auto;
	position: relative !important;
	width: var(--content-width);
}
.wso-img_wrapper-inner {
	margin-bottom: calc(var(--basic-spacing) * 1.5);
}
.wso-img_wrapper-inner img {
	display: block;
	width: 35rem;
	max-width: 90%;
	height: auto;
	margin: 0 auto;
}
.wso-content {
	margin: 5rem 0 3rem;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: flex-start;
}
ul {
	list-style: none;
}
ul li {
	margin-bottom: 1rem;
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: flex-start;
}
ul li::before {
	content: '';
	background-image: url("images/check-2.svg");
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	background-repeat: no-repeat;
	background-position: center;
	vertical-align: middle;
	margin: 0.25rem 0.75rem 0 0;
	flex: 0 0 1.5rem;
}
.wso-contact {
	display: grid;
	display: -ms-grid;	
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-areas: "head head"
						 "ma1 ma2"
						 "mail tel";
	grid-template-rows: auto;
	grid-gap: 1rem;
	justify-items: stretch;
}
.wso-contact > * {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}
.wso-contact .head {
	grid-area: head;
	place-self: center;
	font-size: 2rem;
}
.wso-contact .ma1 {
	grid-area: ma1;
	place-self: end;
}
.wso-contact .ma2 {
	grid-area: ma2;
}
.wso-contact .mail {
	grid-area: mail;
	place-self: end;
}
.wso-contact .tel {
	grid-area: tel;
}
/* Image Grid */
.wso-img-grid img {
	-o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    font-family: 'object-fit: cover; object-position: center;';
    width: 100% !important;
    height: 100% !important;
}
.wso-img-grid {
	display: grid;
	display: -ms-grid;	
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: auto;
	grid-gap: 1rem;
	justify-items: stretch;
}
/* Footer */
#Footer {
	width: 100%;
	margin-top: auto;
	position: relative !important;
}
.footer-copy {
	display: flex !important;
	flex-flow: row wrap;
	justify-content: center !important;
	align-items: center !important;
	padding: 25px 0 0;
}
/* ============================================
   Responsiv
============================================ */
@media only screen and (max-width: 1499px) and (min-width: 1240px) {
	html {
		font-size: 1.15vw !important;
	}
}
@media only screen and (max-width: 1239px) and (min-width: 1024px) {
	html {
		font-size: 1.35vw !important;
	}
}
@media only screen and (max-width: 1023px) and (min-width: 768px) {
	html {
		font-size: 1.6vw !important;
	}
}
@media only screen and (max-width: 767px) and (min-width: 600px) {
	html {
		font-size: 2.5vw !important;
	}
}
@media only screen and (max-width: 599px) {
	html {
		font-size: 3.7vw !important;
	}
}
@media only screen and (max-width: 1023px) {
	:root {
		--content-width: 90vw;
	}
}
@media only screen and (max-width: 767px) {
	body {
		padding-top: var(--basic-spacing);
	}
	.wso-img_wrapper-inner {
		margin-bottom: calc(var(--basic-spacing) * 1.5);
	}
	.wso-img_wrapper-inner img {
		width: 45rem;
	}
	.wso-content_wrapper {
	    padding: var(--basic-spacing);
	}
	.wso-contact {
		grid-template-areas: "head head"
							 "ma1 ma1"
							 "ma2 ma2"
							 "mail tel";
		row-gap: 0.25rem;
		-moz-column-gap: 2rem;
		     column-gap: 2rem;
	}
	.wso-contact .head,
	.wso-contact .ma1,
	.wso-contact .ma2 {
		place-self: center;
	}
	.wso-img-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 0.5rem;
	}
}