/* ===================================================== */
/* General ============================================= */
/* ===================================================== */

html {
	font-size: 10px;
	/* scroll-behavior: smooth; */
}
html, body {
	height: 100%;
}
body {
	font-family: "metropolis-regular", sans-serif;
	font-size: 1.7rem;
	font-style: normal;
	font-weight: normal;
	line-height: 1.765;
	color: #555555;
	margin: 0;
	padding: 0;
	background: url(../images/background.jpg) no-repeat;
	background-size: cover;
    background-position: center -100px;
	top: 0;
    left: 0;
    width: 100%;
    height: 170px;
    object-fit: cover;
    z-index: -1;
    background-position: center;
    background-position-x: center;
    background-size: cover;
	background-attachment: fixed;
}
a {
	color: #EFE561;
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
a:hover,
a:active {
	outline: 0;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "metropolis-semibold", sans-serif;
	color: #EFE561;
	font-style: normal;
	font-weight: normal;
	text-rendering: optimizeLegibility;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
	margin-top: 6rem;
	margin-bottom: 1.8rem;
}
h5, .h5, h6, .h6 {
	margin-top: 4.2rem;
	margin-bottom: 1.5rem;
}
h1, .h1 {
	font-size: 3.6rem;
	line-height: 1.25;
	letter-spacing: -0.1rem;
}
h2, .h2 {
	font-size: 3rem;
	line-height: 1.3;
}
h3, .h3 {
	font-size: 2.4rem;
	line-height: 1.25;
}
h4, .h4 {
	font-size: 2.1rem;
	line-height: 1.286;
	text-transform: uppercase;
}
h5, .h5 {
	font-size: 1.7rem;
	line-height: 1.235;
}
h6, .h6 {
	font-size: 1.4rem;
	line-height: 1.286;
	text-transform: uppercase;
	letter-spacing: 0.16rem;
}
h1 {
	font-family: "domine-bold", sans-serif;
    font-size: 8.2rem;
    line-height: 1.1;
	letter-spacing: 0;
	color: #EFE561;
	letter-spacing: -0.03rem;
	margin-top: 0;
	margin-bottom: 4.8rem;
	text-transform: uppercase;
	font-family: "AvertaDemoPE-ExtraboldItalic";
	font-family: 'Staatliches Regular';
}
h1 span {
	font-size: 60px;
}
h3 {
	font-family: "metropolis-semibold", sans-serif;
	font-size: 1.6rem;
	line-height: 1.3125;
	text-transform: uppercase;
	letter-spacing: 0.25rem;
	color: #EFE561;
	margin-top: 0;
	margin-bottom: 2.1rem;
	max-width: 470px;
	max-width: 100%;
}
h3::before {
	content: "/ ";
}
h5 {
    font-family: 'Staatliches Regular';
    font-size: 40px;
    margin-top: 0;
}
p {
	margin-bottom: 3rem;
    color: #D1D5DB;
}
p.lead {
	font-family: "metropolis-regular", sans-serif;
	font-size: 2.4rem;
	line-height: 1.75;
	margin-bottom: 3.6rem;
    color: #D1D5DB;
}

/* General Media Queries
------------------------------------------------- */

@media only screen and (max-width: 1400px) {
    h1 {
        font-size: 7.6rem;
        margin-right: 10px;
    }
}
@media only screen and (max-width: 1366px) and (hover: none) and (pointer: coarse) {
	body {
		/* Background with fallback color */
		background: #060606 url("../images/background.jpg") center center / cover no-repeat;
		background-attachment: scroll; /* Fixes iOS misalignment */
	}
}
@media only screen and (max-width: 600px) {
	body {
		/* Background with fallback color */
		background: #060606 url("../images/background.jpg") center center / cover no-repeat;
		background-attachment: scroll; /* Fixes iOS misalignment */
	}
	h1 {
		margin-bottom: 30px;
        font-size: 60px;
	}
	.row {
		width: auto;
		padding-left: 20px;
		padding-right: 20px;
	}
	.row.ui-img {
        padding: 0 30px 0 30px;
	}
	p.lead {
		font-size: 1.8rem;
	}
}



/* ===================================================== */
/* Preloader =========================================== */
/* ===================================================== */

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #2D2C3E;
	background: rgba(45, 44, 62, .5);
	z-index: 800;
	height: 100%;
	width: 100%;
}
.no-js #preloader,
.oldie #preloader {
	display: none;
}
#loader {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	padding: 0;
}
#loader:before {
	content: "";
	border-top: 6px solid rgba(255, 255, 255, 0.1);
	border-right: 6px solid rgba(255, 255, 255, 0.1);
	border-bottom: 6px solid rgba(255, 255, 255, 0.1);
	border-left: 6px solid #EFE561;
	-webkit-animation: load 1.1s infinite linear;
	animation: load 1.1s infinite linear;
	display: block;
	border-radius: 50%;
	width: 60px;
	height: 60px;
}
#preloader #loader {
	display: none
}
@-webkit-keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}



/* ========================================================= */
/* Email Capture =========================================== */
/* ========================================================= */

input[type="email"] {
	display: block;
	height: 6rem;
	padding: 1.5rem 2.4rem;
	border: 0;
	outline: none;
	color: #151515;
	font-family: "metropolis-regular", sans-serif;
	font-size: 1.5rem;
	line-height: 3rem;
	max-width: 100%;
	background: rgba(0, 0, 0, 0.12);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
form#emailCaptureForm {
    display: flex;
	margin-bottom: 3rem;
}
form#emailCaptureForm input#emailInput {
	font-size: 30px;
    font-family: 'Staatliches Regular';
	border-top-left-radius: 10px;
	margin-bottom: 3rem;
}
form#emailCaptureForm button {
    font-size: 30px;
    font-family: 'Staatliches Regular';
	height: 60px;
    color: #333;
	border: 0;
	margin-left: 10px;
	letter-spacing: 0;
}
form#emailCaptureForm #formMessage {
    color: green;
    background: lawngreen;
    height: 60px;
	font-family: 'Staatliches Regular';
    font-size: 30px;
	font-size: 30px;
    padding: 4px 20px;
	margin-bottom: 3rem;
}
::-webkit-input-placeholder {
	color: #626262;
}
:-moz-placeholder {
	color: #626262;
	/* Firefox 18- */
}
::-moz-placeholder {
	color: #626262;
	/* Firefox 19+ */
}
:-ms-input-placeholder {
	color: #626262;
}
.placeholder {
	color: #626262 !important;
}

/* Email Capture Media Queries
------------------------------------------------- */

@media only screen and (max-width: 600px) {
	form#emailCaptureForm input#emailInput {
		width: 100%;
	}
	form#emailCaptureForm {
		display: block;
		margin-bottom: 3rem;
	}
	form#emailCaptureForm input#emailInput {
		margin-bottom: 10px;
	}
	form#emailCaptureForm button {
		margin-left: 0;
		width: 100%;
	}
}



/* ========================================================= */
/* Buttons ================================================= */
/* ========================================================= */

.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	font-family: "metropolis-semibold", sans-serif;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 0.3rem;
	height: 5.4rem;
	line-height: 5rem;
	padding: 0 3rem;
	margin: 0 0.3rem 1.2rem 0;
	color: #000000;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: #c5c5c5;
	border: 0.2rem solid #c5c5c5;
}
.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	background-color: #b8b8b8;
	border-color: #b8b8b8;
	color: #000000;
	outline: 0;
}

/* button primary
------------------------------------------------- */

.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
	background: #EFE561;
	border-color: #EFE561;
	color: #ffffff;
}
.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover,
.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus,
input[type="reset"].btn--primary:focus,
input[type="button"].btn--primary:focus {
	background: #EFE561;
	border-color: #EFE561;
}



/* ========================================================= */
/* Header & Nav ============================================ */
/* ========================================================= */

header {
	z-index: 500;
	width: 100%;
	height: 96px;
	background-color: transparent;
	position: absolute;
	top: 24px;
}
.header-logo {
	z-index: 501;
	display: inline-block;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 60px;
    top: 91px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.header-logo a {
	display: block;
	padding: 0;
	outline: 0;
	border: none;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.header-logo img {
    width: auto;
    height: 100px;
}
.header-nav {
	z-index: 900;
	font-family: "metropolis-regular", sans-serif;
	font-size: 1.3rem;
	line-height: 1.846;
    padding: 65px 60px 30px 60px;
	height: 100%;
    width: 350px;
	background: #242726;
	color: rgba(255, 255, 255, 0.25);
	overflow-y: auto;
	overflow-x: hidden;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	visibility: hidden;
    border-left: 2px solid #9CF0FA;
}
.header-nav h3 {
	font-family: "brandmark-bold";
    font-size: 20px;
    line-height: 1.363;
    text-transform: capitalize;
    letter-spacing: 0;
    margin-bottom: 4.8rem;
    margin-top: 2px;
    color: #2D2C3E;
}
.header-nav a,
.header-nav a:visited {
    color: #EFE561;
}
.header-nav a:hover,
.header-nav a:focus,
.header-nav a:active {
	color: #EFE561;
}
.header-nav h3 {
	font-family: "metropolis-semibold", sans-serif;
	font-size: 11px;
	line-height: 1.363;
	text-transform: uppercase;
	letter-spacing: 0.25rem;
	margin-bottom: 4.8rem;
	margin-top: 0.9rem;
	color: #9CF0FA;
}
.header-nav p {
	margin-bottom: 2.7rem;
	color: #D1D5DB;
}
.header-nav-content {
	background: #242726;
	position: relative;
	left: 50px;
	opacity: 0;
	visibility: hidden;
}
.header-nav-list {
	font-family: "metropolis-regular", sans-serif;
	font-size: 1.6rem;
	margin: 3.6rem 0 3rem 0;
	padding: 0 0 1.8rem 0;
	list-style: none;
	counter-reset: ctr;
}
.header-nav-list li {
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	line-height: 4.8rem;
	position: relative;
}
.header-nav-list li:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.header-nav-list a {
	display: block;
	color: #EFE561;
	position: relative;
	text-transform: uppercase;
	font-family: "AvertaDemoPE-ExtraboldItalic";
	padding-left: 3.5rem;
}
.header-nav-list a::before {
	content: counter(ctr, decimal-leading-zero) ".";
	counter-increment: ctr;
	font-family: "metropolis-regular", sans-serif;
	font-size: 11px;
	color: #D1D5DB;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	position: absolute;
	left: 3px;
	top: 0;
}
.header-nav-list a:hover::before {
	color: #9CF0FA;
}
.header-nav__social {
	list-style: none;
	display: inline-block;
	font-size: 1.8rem;
	margin: 0;
}
.header-nav__social li {
	display: inline-block;
	margin-right: 12px;
	padding-left: 0;
}
.header-nav__social li a {
	color: rgba(255, 255, 255, 0.15);
}
.header-nav__social li a:hover,
.header-nav__social li a:focus {
	color: white;
}
.header-nav__social li:last-child {
	margin: 0;
}
.header-nav-close {
	z-index: 800;
	display: block;
	background-color: #EFE561;
    height: 45px;
    width: 45px;
    border-radius: 10px;
	position: absolute;
    right: 60px;
    top: 60px;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
}
.header-nav-close span::before,
.header-nav-close span::after {
	content: "";
	display: block;
	height: 2px;
	width: 12px;
	background-color: #394140;
	position: absolute;
	top: 50%;
    left: 15px;
	margin-top: -1px;
}
.header-nav-close span::before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.header-nav-close span::after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* menu is open
----------------------------------------------- */
.menu-is-open .header-nav {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	-webkit-overflow-scrolling: touch;
}
.menu-is-open .header-nav .header-nav-content {
	opacity: 1;
	visibility: visible;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	left: 0;
}
.header-nav-content img {
	height: 40px;
}
.header-menu-toggle {
	position: fixed;
	right: 60px;
	top: 60px;
	width: 48px;
	width: 68px;
	height: 45px;
	line-height: 45px;
	font-family: "metropolis-regular", sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: 0.4rem;
	color: #ffffff;
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.header-menu-toggle.opaque {
	background-color: #EFE561;
	border-radius: 10px;
	height: 4.8rem;
	width: 4.8rem;
}
.header-menu-toggle.opaque::before {
	display: none;
}
.header-menu-toggle::before {
    padding-left: 0;
	padding-right: 0;
	margin-right: 15px;
	font-weight: bold;
}
.header-menu-toggle:hover::before,
.header-menu-toggle:focus::before,
.header-menu-toggle:active::before {
	border-bottom: 1px solid #ffffff;
}
.header-menu-toggle:hover,
.header-menu-toggle:focus,
.header-menu-toggle:active {
	color: #ffffff;
}
.header-menu-icon {
	display: block;
	width: 26px;
	height: 2px;
	margin-top: -1px;
	right: auto;
	bottom: auto;
	background-color: #394140;
	position: absolute;
	left: 11px;
	top: 50%;
	border-radius: 100px;
}
.header-menu-icon::before,
.header-menu-icon::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: inherit;
	position: absolute;
	left: 0;
	border-radius: 100px;
}
.header-menu-icon::before {
	top: -9px;
}
.header-menu-icon::after {
	bottom: -9px;
}
.header-menu-toggle {
    border-radius: 10px;
    background: #EFE561;
}
.header-nav p a, .mock-link {
    color: #EFE561 !important;
    font-weight: bold;
}

/* Header & Nav Media Queries
------------------------------------------------- */

@media only screen and (max-width: 1600px) {
	.header-menu-toggle {
		background: #EFE561;
		border-radius: 10px;
		top: 60px;
	}
}
@media only screen and (max-width: 1200px) {
	.header-logo {
		left: 40px;
	}
}
@media only screen and (max-width: 600px) {
	.header-menu-toggle.opaque {
        height: 45px;
        width: 45px;
	}
	.header-menu-icon {
		width: 18px;
		left: 13px;
	}
	.header-menu-icon::before {
		top: -7px;
	}
	.header-menu-icon::after {
		bottom: -7px;
	}
	.header-logo {
        top: 65px;
		left: 20px;
	}
	.header-nav {
        padding: 40px 30px 30px 30px;
		width: 100%;
	}
	.header-nav h3 {
		margin-bottom: 0;
	}
	.header-nav-list {
		margin: 20px 0 5px 0;
	}
	.header-nav-close {
        height: 45px;
        width: 45px;
        right: 30px;
        top: 30px;
        border-radius: 10px;
	}
	.header-logo img {
        height: 60px;
        margin-top: 9px;
	}
	.header-nav-close span::before,
	.header-nav-close span::after {
        width: 12px;
        left: 16px;
	}
    .header-nav-content img {
        height: 40px;
        margin-top: -8px;
    }
	.header-logo {
		left: 30px;
		top: 35px;
	}
	.header-menu-toggle {
		right: 30px;
		top: 30px;
	}
	.header-nav,
    .header-nav .header-nav-content {
        transition: none !important;
        animation: none !important;
    }
}



/* ========================================================= */
/* Hero ==================================================== */
/* ========================================================= */

.hero {
	width: 100%;
    height: 271px;
	background-color: transparent;
	position: relative;
	display: table;
}
.hero .shadow-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    height: 271px;
	opacity: 0.4;
	background: linear-gradient(to right, #2D2C3E 0%, #2D2C3E 100%, transparent 100%);
}
.hero::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.65;
	/* background-color: #000000; */
}

.no-js .hero {
	background: #000000;
}

/* Hero Media Queries
------------------------------------------------- */

@media only screen and (max-width: 600px) {
	.hero,
	.hero .shadow-overlay {
		height: 119px;
	}
	.hero .shadow-overlay {
		opacity: 0.75;
	}
}



/* ========================================================= */
/* Content ================================================= */
/* ========================================================= */

.content {
	padding-top: 150px;
	padding-bottom: 150px;
    background-color: rgba(57, 65, 64, .9);
	position: relative;
}
.content.top-section {
	border-top: 2px solid #9CF0FA;
}
.content.solid-section {
    background-color: rgba(57, 65, 64, 1);
}
.tockify-container {
	border-radius: 20px;
}
.bottom-section {
	padding-bottom: 0;
}
.google-map {
	height: 400px;
}
h1.hh-logo {
	position: relative;
}
h1.hh-logo img {
	position: absolute;
    right: 0;
	bottom: 17px;
	max-width: 250px;
}
.blocks {
	margin-top: 4.2rem;
	position: relative;
}
.block-1-2 .col-block {
    width: 50%;
}
.block-1-2 .col-block:nth-child(2n+1) {
    clear: both;
}
.blocks h4 {
	font-size: 4.8rem;
    line-height: 1.1;
    margin-top: 0;
    position: relative;
    text-transform: uppercase;
    font-family: "AvertaDemoPE-ExtraboldItalic";
    color: #EFE561;
    margin-top: 10px;
    font-family: 'Staatliches Regular';
}
.col-block {
	position: relative;
	min-height: 24.6rem;
}
.col-block::before {
    content: "";
    display: block;
    font-family: "metropolis-semibold", sans-serif;
    font-size: 2.1rem;
    text-align: center;
    color: #ffffff;
    background-image: url(../images/tick.svg);
    background-size: 50px 50px;
    height: 50px;
	background-color: rgba(245, 244, 170);
    width: 50px;
    line-height: 48px;
    box-shadow: 0 0 0 18px #ffffff;
    position: absolute;
    left: 20px;
	top: 10px;
    padding: 0;
    border-radius: 100px;
}
.block-text {
    margin-left: 90px;
	padding-right: 30px;
}
.block-text p {
	margin-bottom: 3rem;
	color: #EFE561;
}
.ui-img {
    padding: 40px 0 40px 0;
}
.blocks-cta {
	display: flex;
}
.blocks-cta .col-block {
    border: 3px solid #EFE561;
    border-radius: 10px;
    padding: 15px 30px 30px 30px;
	margin-right: 20px;
}
.blocks-cta .col-block:last-child {
    margin-right: 0; /* Remove margin on the last <a> tag */
}
/* .blocks-cta .col-block:hover {
	transform: scale(1.03);
    transition: transform .2s;
} */
/* .blocks-cta .col-block::after {
    content: "";
    background-image: url(../images/arrow-red.svg);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    position: absolute;
    right: 30px;
    top: 30px;
    width: 30px;
    height: 30px;
} */
.blocks-cta .col-block::before {
	display: none;
}
.blocks-cta .block-text {
    margin-left: 0;
    padding-right: 30px;
}
.blocks-cta h4 {
    margin-right: 25px;
}
.about-img {
	border-radius: 20px;
	opacity: 0.75;
}

/* Content Media Queries
------------------------------------------------- */

@media only screen and (max-width: 1200px) {
	.row {
		width: 100%;
		padding-left: 40px;
		padding-right: 40px;
		max-width: 1200px;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 1000px) {
	.block-1-2 .col-block {
		width: 100%;
	}
	.blocks-cta {
		display: block;
	}
	.blocks-cta .col-block {
		min-height: 0;
		margin-bottom: 20px;
	}
}
@media only screen and (max-width: 600px) {
	.content {
		padding-top: 60px;
		padding-bottom: 50px;
		background-color: rgba(57, 65, 64, .9);
	}
	.bottom-section {
		padding-bottom: 0;
	}
	.block-text p {
		font-size: 15px;
	}
	.row {
		padding-left: 30px;
		padding-right: 30px;
	}
	.block-text {
		margin-left: 0;
		padding-right: 0;
	}
	.col-block::before {
		background-size: 30px 30px;
		height: 30px;
		width: 30px;
		box-shadow: 0 0 0 15px #ffffff;
		left: 15px;
	}
	.blocks h4 {
		font-size: 40px;
		margin-top: 3px;
	}
	.blocks-cta .col-block {
		padding: 23px 30px 20px 30px;
	}
	.blocks-cta .col-block::after {
		right: 30px;
		top: 30px;
	}
	.blocks-cta .block-text {
		padding-right: 0;
	}
	.blocks-cta h4 {
		margin-right: 45px;
		margin-right: 0;
	}
	.blocks-cta .col-block:last-child {
        margin-bottom: 30px;
    }
	.blocks-checks h4 {
        padding-left: 80px;
        margin-top: -5px;
	}
	.blocks-checks p {
		margin-bottom: 40px;
		color: black;
	}
	.blocks-checks .col-block {
        padding: 0;
    }
	h1.hh-logo img {
		position: relative;
		bottom: 0;
	}
}



/* ========================================================= */
/* Footer ================================================== */
/* ========================================================= */

footer {
	padding-top: 10.2rem;
	padding-bottom: 10.2rem;
	background-color: #242726;
	color: rgba(255, 255, 255, 1);
	position: relative;
	/* border-top: 1px solid #eee; */
}
footer a {
	color: #ffffff;
	border-bottom: 1px solid transparent;
	display: inline-block;
}
footer a:hover,
footer a:focus {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright {
	margin-top: 2.1rem;
	width: 50%;
}

.copyright span {
	font-size: 15px;
	display: inline-block;
	color: #D1D5DB;
}
.copyright span::after {
	content: "|";
	display: inline-block;
	padding: 0 1rem 0 1.2rem;
	color: rgba(255, 255, 255, 0.1);
}
.copyright span:last-child::after {
	display: none;
}
footer .copyright a {
    color: #fff;
    font-weight: bold;
}
footer .copyright a:hover {
    color: #EFE561;
    font-weight: bold;
}
.footer-logo {	
	display: inline-block;
	float: right;
	margin-top: -40px;
}
.footer-logo img {
    width: auto;
    height: 100px;
    margin-top: -68px;
}
footer h3 span {
    color: #D1D5DB;
}

/* Footer Media Queries
------------------------------------------------- */

@media only screen and (max-width: 1000px) {
	.footer-logo {
		display: inline-block;
		float: none;
		margin-top: 100px;
	}
}
@media only screen and (max-width: 600px) {
	footer {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.copyright span {
		float: left;
	}
	.footer-logo {
        float: none;
        width: 100%;
        margin-top: 60px;
	}
	.copyright {
        margin-top: 20px;
		width: 100%;
	}
	.footer-logo img {
		width: auto;
        height: 60px;
	}
}



/* ========================================================= */
/* Cookie Plugin =========================================== */
/* ========================================================= */

@font-face {
	font-family: 'proxima_novalight';
	src: url('../fonts/proximanova-light-webfont.eot');
	src: url('../fonts/proximanova-light-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/proximanova-light-webfont.woff') format('woff'),
		 url('../fonts/proximanova-light-webfont.ttf') format('truetype'),
		 url('../fonts/proximanova-light-webfont.svg#proxima_novalight') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'proxima_nova_altlight';
	src: url('../fonts/proximanovaalt-light-webfont.eot');
	src: url('../fonts/proximanovaalt-light-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/proximanovaalt-light-webfont.woff') format('woff'),
		 url('../fonts/proximanovaalt-light-webfont.ttf') format('truetype'),
		 url('../fonts/proximanovaalt-light-webfont.svg#proxima_nova_altlight') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'proxima_nova_scosflight';
	src: url('../fonts/proximanovascosf-light-webfont.eot');
	src: url('../fonts/proximanovascosf-light-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/proximanovascosf-light-webfont.woff') format('woff'),
		 url('../fonts/proximanovascosf-light-webfont.ttf') format('truetype'),
		 url('../fonts/proximanovascosf-light-webfont.svg#proxima_nova_scosflight') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'ProximaNovaA-Bold';
	src: url('../fonts/2D5B99_0_0.eot');
	src: url('../fonts/2D5B99_0_0.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/2D5B99_0_0.woff2') format('woff2'),
		 url('../fonts/2D5B99_0_0.woff') format('woff'),
		 url('../fonts/2D5B99_0_0.ttf') format('truetype');
}
@font-face {
	font-family: 'ProximaNovaS-Bold';
	src: url('../fonts/2D5B99_1_0.eot');
	src: url('../fonts/2D5B99_1_0.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/2D5B99_1_0.woff2') format('woff2'),
		 url('../fonts/2D5B99_1_0.woff') format('woff'),
		 url('../fonts/2D5B99_1_0.ttf') format('truetype');
}
@font-face {
	font-family: 'ProximaNova-Bold';
	src: url('../fonts/2D5B99_2_0.eot');
	src: url('../fonts/2D5B99_2_0.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/2D5B99_2_0.woff2') format('woff2'),
		 url('../fonts/2D5B99_2_0.woff') format('woff'),
		 url('../fonts/2D5B99_2_0.ttf') format('truetype');
}
#cc-main .cc--anim .cm {
	max-width: 100% !important;
    width: 100% !important;
    left: 0;
	display: block;
	background: transparent;
	box-shadow: none !important;
	padding: 30px;
	bottom: 0;
	margin-left: 0;
}
#cc-main .cm__body {
    display: block;
    padding: 30px !important;
	max-width: 1200px;
    margin: 0 auto;
    background-color: #242726;
	backdrop-filter: blur(5px);
	border-radius: 10px;
    box-shadow: 0 0.625em 1.875em rgba(0,0,2,.3);
	padding-bottom: 27px !important;
}
#cc-main .cm__texts {
    display: inline-block;
    padding: 0;
    width: calc(100% - 280px);
}
#cc-main .cm__desc,
#cc-main .cm__title {
	padding: 0 !important;
    color: #D1D5DB;
    font-family: 'proxima_novalight';
    /* font-weight: 600; */
    font-size: 16px;
}
#cc-main .pm__section--toggle.is-expanded .pm__section-title {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-family: 'ProximaNovaA-Bold';
    color: #111;
    font-size: 18px;
}
#cc-main .pm__section-title {
    border-radius: var(--cc-btn-border-radius);
    font-size: .95em;
    /* font-weight: 600; */
    font-family: 'ProximaNovaA-Bold';
    color: #111;
    font-size: 18px;
}
#cc-main .pm__section-desc {
    line-height: 1.5em;
    color: #000;
    font-family: 'proxima_novalight';
    /* font-weight: 600; */
    font-size: 16px;
}
#cc-main .cm__btns {
    border: 0;
}
#cc-main .cm__btns {
    display: block;
}
#cc-main .cm__btns,
#cc-main .cm__links {
	padding: 0;
    display: inline-block;
	float: right;
}
#cc-main .cm__btn-group {
    display: block;
}
#cc-main .cc--anim .cm__btn,
#cc-main .cc--anim .cm__close {
    border-radius: 10px;
    font-size: 16px;
    height: 48px;
    padding: 0 25px;
	max-width: 120px;
	width: 120px;
	margin-left: 10px;
	margin-top: 0;
	font-weight: 700;
}
#cc-main .cc--anim .cm__btn:first-child {
	border: 3px solid #EFE561;
	color: #EFE561;
	background: #242726;
	float: right;
	font-family: 'ProximaNovaA-Bold';
    font-size: 17px;
    padding-top: 3px;
}
#cc-main .cc--anim .cm__btn:first-child:hover {
	color: #fff;
    background-color: #394140;
}
#cc-main .cc--anim .cm__btn:last-child {
	border: 0;
	color: #777;
    background: #394140;
	font-family: 'ProximaNovaA-Bold';
    font-size: 17px;
    padding-top: 3px;
}
#cc-main .cc--anim .cm__btn:last-child:hover {
	color: #D1D5DB;
}
#cc-main button.cc-link {
	color: #EFE561;
	font-family: 'ProximaNovaA-Bold';
}
#cc-main .pm__body,
#cc-main .pm__footer,
#cc-main .pm__header {
    padding: 20px;
}
#cc-main .pm__btn {
	border: 3px solid #06f;
    color: #06f;
    background: white;
    float: right;
	border-radius: 10px;
    font-size: 16px;
    height: 48px;
    padding: 0 25px;
    margin-left: 10px;
    margin-top: 0;
    font-weight: 700;
}
#cc-main .pm__btn+.pm__btn,
#cc-main .pm__btn-group+.pm__btn-group button {
	border: 0;
    color: #777;
    background: #ccc;
	border-radius: 10px;
    font-size: 16px;
    height: 48px;
    padding: 0 25px;
    margin-left: 10px;
    margin-top: 0;
    font-weight: 700;
}
#cc-main .cc__link,
#cc-main a {
	color: #06f;
	font-family: 'ProximaNovaA-Bold';
}
#cc-main .toggle__icon {
    background: #999;
	box-shadow: 0 0 0 1px #999;
}
#cc-main .toggle__icon-on svg {
    stroke: #06f;
}
#cc-main .section__toggle:checked~.toggle__icon {
    background: #06f;
    box-shadow: 0 0 0 1px #06f;
}
#cc-main .pm__btn:hover {
    color: #fff;
    background-color: rgb(28, 115, 245);
	border-color: #06f;
}
#cc-main .pm__btn+.pm__btn:hover,
#cc-main .pm__btn-group+.pm__btn-group button:hover {
	color: #777;
    background: #BBBBBB;
}
#cc-main .pm__title {
	font-family: 'ProximaNovaA-Bold';
    color: #111;
    font-size: 18px;
}

/* Cookie Plugin Media Queries
------------------------------------------------- */

@media only screen and (max-width:922px) {
	#cc-main .cm__texts {
		width: 100%;
		margin-bottom: 20px;
	}
	#cc-main .cm__btns, #cc-main .cm__links {
		float: none;
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
		border: 0 !important;
	}
	#cc-main .cc--anim .cm__btn, #cc-main .cc--anim .cm__close {
		max-width: calc(50% - 5px);
		width: 50%;
		margin-left: 0;
	}
	#cc-main .cc--anim .cm__btn:first-child {
		margin-right: 0px;
	}
	#cc-main .cc--anim .cm__btn:last-child {
		margin-left: 0px !important;
		margin-top: 0 !important;
	}
	#cc-main .cm__btn-group {
		display: block !important;
	}
}
@media (max-width: 640px) {
	#cc-main .cm__body {
		padding: 20px !important;
	}
	#cc-main .cc--anim .cm__btn, #cc-main .cc--anim .cm__close {
		max-width: 100%;
		width: 100%;
	}
	#cc-main .cc--anim .cm__btn:first-child {
		margin-right: 0;
	}
	#cc-main .cc--anim .cm__btn:last-child {
		margin-left: 0px !important;
		margin-top: 10px !important;
	}
}
@media only screen and (max-width:500px) {
	#cc-main .cc--anim .cm {
		padding: 15px;
	}
	#cc-main .cm__desc, #cc-main .cm__title {
		font-size: 16px;
		line-height: 15px;
		font-family: 'proxima_novalight';
    	color: #D1D5DB;
		font-weight: 100;
	}
	#cc-main .pm__section--toggle .pm__section-title {
		padding: 15px 85px 15px 55px !important;
	}
	#cc-main .pm__body,
	#cc-main .pm__footer,
	#cc-main .pm__header {
		padding: 15px !important;
	}
	#cc-main .pm__section-desc {
		font-size: 16px;
		line-height: 19px;
		font-family: 'proxima_novalight';
		color: #000;
		font-weight: 100;
	}
	#cc-main .pm__btn,
	#cc-main .pm__btn-group+.pm__btn-group button {
		margin-left: 0;
	}
	#cc-main .cm__btn-group {
		display: flex !important;
		flex-direction: row !important;
	}
	#cc-main .cc--anim .cm__btn:last-child {
		margin-left: 5px !important;
		margin-top: 0px !important;
	}
	#cc-main .cc--anim .cm__btn:first-child {
		margin-right: 5px;
	}
	#cc-main .cc--anim .cm__btn:first-child,
	#cc-main .cc--anim .cm__btn:last-child {
		padding-top: 0;
		padding: 0;
	}
	#cc-main .cm__texts {
		margin-bottom: 15px;
	}
	#cc-main .cm__body {
		padding: 20px !important;
		padding-top: 16px !important;
	}
}



/* ========================================================= */
/* List Section ================================================ */
/* ========================================================= */

.list-section .list {
    max-width: 1200px;
    margin: 0 auto;
}
.list-section .list h2 {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-top: 0;
    position: relative;
    text-transform: uppercase;
    color: #EFE561;
    padding-top: 80px;
    font-family: 'Staatliches Regular';
}
.list-section .list > div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.list-section .list .list-item {
    cursor: pointer;
    color: #EFE561;
    position: relative;
    font-size: 18px;
    font-family: "metropolis-semibold", sans-serif;
    line-height: normal;
    margin-bottom: 0;
    padding-top: 4.2rem;
    padding-right: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.16rem;
}
.list-section .list .list-item:hover {
	color: #EFE561;
}

/* List Section Media Queries
------------------------------------------------- */

@media (max-width: 1280px) {
    .list-section .list {
        padding: 0 40px 40px 40px;
        text-align: left;
    }
}
@media (max-width: 900px) {
    .list-section .list > div {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .list-section .list {
        padding: 0 0px 40px 0px;
    }
	.list-section .list .list-item {
		padding-top: 0;
	}
	.list-section .list .list-item br.hide-br {
		display: none;
	}
	.list-section .list > div {
        grid-template-columns: repeat(1, 1fr);
    }
	.list-section .list h2 {
		padding-top: 0;
	}
	.list-section .list:first-of-type h2 {
		padding-top: 30px;
	}
}
@media (max-width: 400px) {
    .list-section .list > div {
        grid-template-columns: repeat(1, 1fr);
    }
}



/* ========================================================= */
/* Carousel ================================================ */
/* ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.carousel {
    width: 100vw;
    overflow: hidden;
    position: relative;
}
.carousel-track {
    display: flex;
    animation: slide 9s infinite linear;
}
.carousel-item {
    flex: 0 0 100px; /* Fixed width of 100px */
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    background-color: #3498db;
    border: 1px solid #2980b9;
}
.carousel-item:nth-child(3n + 2) {
    background-color: #e74c3c;
    border: 1px solid #c0392b;
}
.carousel-item:nth-child(3n + 3) {
    background-color: #2ecc71;
    border: 1px solid #27ae60;
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-300px); /* Move by 3 items (3 * 100px) */
    }
}
/* Pause animation on hover */
.carousel:hover .carousel-track {
    animation-play-state: paused;
}



/* ========================================================= */
/* Popover ================================================= */
/* ========================================================= */

.o-popover {
	position: absolute;
    top: 30px;
    left: 0;
    max-width: calc(100% - 20px);
    transform: translateX(0%);
    background: #fff;
    padding: 22px 25px 22px 25px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    color: #111;
    font-size: 17px;
    display: none;
    z-index: 1000;
    border-radius: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
	text-transform: none;
    letter-spacing: normal;
}
.list-item .o-popover {
	display: block; /* Only displayed when added via JavaScript */
}





/* ========================================================= */
/* Gallery ================================================= */
/* ========================================================= */

#gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 10px;
	width: 100%;
	margin: 0 auto;
	padding-top: 80px;
}
/* #gallery img.thumb {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	cursor: pointer;
	border-radius: 4px;
	transition: transform 0.2s ease-in-out;
} */
#gallery img.thumb {
  width: 100%;
  aspect-ratio: 1 / 1;  /* makes square frames */
  object-fit: cover;    /* crops edges neatly */
  display: block;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.2s ease-in-out;
}
#gallery img.thumb:hover {
	transform: scale(1.03);
	transition: transform .2s;
}

/* Lightbox */
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #242726;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}
.lightbox img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 6px;
}
.lightbox .close {
	position: absolute;
	top: 20px;
	right: 30px;
	color: white;
	font-size: 30px;
	cursor: pointer;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
	#gallery {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
}
@media (max-width: 768px) {
	#gallery {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}
}

