/*!
Theme Name: Blank Theme
Author: Niels Klop
Author URI: https://niels-klop.info
Details URI: https://niels-klop.info
Version: 1.0.0
*/

body {
	font-family: "Montserrat", sans-serif;
	padding-top: 6rem;
	background-color: #F8F8F8;
	min-height: 100dvh;
}
main {
	min-height: calc(100dvh - 8.5rem);
}

@media(min-width:992px){
	body {
		padding-top: 8rem;
	}
	main {
		min-height: calc(100dvh - 10.5rem);
	}
}

@media(max-width:992px){
	.mobileNoScroll {
		overflow: hidden;
	}
}

a.button {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: fit-content;
	height: 32px;
	padding: 0 16px;
	background-color: #144587;
	color: white;
	font-size: 12px;
	font-weight: 500; /* medium */
	text-transform: uppercase;
}
a.button::after {
	content: "\f101";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	display: inline;
	transition: transform 0.3s;
}

a.button:hover::after {
	transform: translateX(50%);
}

.container {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	margin-left: auto;
	margin-right: auto;
}

@media(min-width:1536px){
	.container {
		max-width: 1280px !important;
	}
}

/* ### Header ### */
header .main-menu {
	display: flex;
	gap: 20px;
} header .main-menu .menu-item a {
	position: relative;
	font-weight: 700; /* bold */
	font-size: 18px;
	text-transform: uppercase;
	color: white;
} header .main-menu .menu-item a::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	display: block;
	width: 0;
	height: 0;
	border-bottom: 2px solid #BE993F;
	transition: width 0.3s;
} header .main-menu .current-menu-item a::after,
header .main-menu .menu-item a:hover::after {
	width: 100%;
}
@media(min-width:1280px){
	header .main-menu {
		gap: 40px;
	} header .main-menu .menu-item a {
		font-size: 20px;
	}
}

header .mobile-menu {
	display: flex;
	flex-direction: column;
	gap: 20px;
} header .mobile-menu .menu-item a {
	position: relative;
	font-weight: 700; /* bold */
	font-size: 32px;
	text-transform: uppercase;
	color: white;
} header .mobile-menu .menu-item a::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	display: block;
	width: 0;
	height: 0;
	border-bottom: 2px solid #BE993F;
	transition: width 0.3s;
} header .mobile-menu .current-menu-item a::after,
header .mobile-menu .menu-item a:hover::after {
	width: 100%;
}

@media(min-width:375px){
	header .mobile-menu .menu-item a {
		font-size: 36px;
	}
}

/* ### Animation Delays ### */
.animation-delay-0 { -webkit-animation-delay:0ms; animation-delay:0ms; }
.animation-delay-100 { -webkit-animation-delay:100ms; animation-delay:100ms; }
.animation-delay-200 { -webkit-animation-delay:200ms; animation-delay:200ms; }
.animation-delay-300 { -webkit-animation-delay:300ms; animation-delay:300ms; }
.animation-delay-400 { -webkit-animation-delay:400ms; animation-delay:400ms; }
.animation-delay-500 { -webkit-animation-delay:500ms; animation-delay:500ms; }
.animation-delay-600 { -webkit-animation-delay:600ms; animation-delay:600ms; }
.animation-delay-700 { -webkit-animation-delay:700ms; animation-delay:700ms; }
.animation-delay-800 { -webkit-animation-delay:800ms; animation-delay:800ms; }
.animation-delay-900 { -webkit-animation-delay:900ms; animation-delay:900ms; }
.animation-delay-1000 { -webkit-animation-delay:1000ms; animation-delay:1000ms; }
.animation-delay-2000 { -webkit-animation-delay:2000ms; animation-delay:2000ms; }
.animation-delay-3000 { -webkit-animation-delay:3000ms; animation-delay:3000ms; }
.animation-delay-4000 { -webkit-animation-delay:4000ms; animation-delay:4000ms; }
.animation-delay-5000 { -webkit-animation-delay:5000ms; animation-delay:5000ms; }