:root {
	--primary: #284556;
	--secondary: #f4aa52;
	--accent: #f4aa52;
	--accent-secondary: #8A9A7B;
	--background-light: #f0b46b;
	--background-dark: #284556;
	--text: #000000;
}

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");

/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

html[xmlns] .clearfix {
	display: block;
}

* html .clearfix {
	height: 1%;
}

ul,
li {
	padding: 0;
	margin: 0;
	list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
	display: block;
}

* {
	box-sizing: border-box;
}

html,
body {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	background-color: #fff;
	font-size: 16px;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--accent);
	text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0px;
	margin-bottom: 0px;
	color: var(--primary);
	font-weight: 700;
}

ul {
	margin-bottom: 0px;
}

p {
	font-size: 15px;
	line-height: 30px;
	color: var(--text);
}

img {
	width: 100%;
	overflow: hidden;
}

.shadow {
	text-shadow: 2px 2px rgba(0, 0, 0, 0.6);
}

.required {
	color: red;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
	background: #fff;
	font-family: 'Poppins', sans-serif;
}

::selection {
	background: var(--accent);
	color: #fff;
}

::-moz-selection {
	background: var(--accent);
	color: #fff;
}

.text-button a {
	font-size: 14px;
	color: var(--accent);
	font-weight: 500;
	transition: all .3s;
}

.text-button a i {
	margin-left: 5px;
	transition: all .3s;
}

.text-button a:hover i {
	margin-left: 10px;
}

.border-button a {
	font-size: 14px;
	color: var(--accent);
	background-color: transparent;
	border: 1px solid var(--accent);
	padding: 12px 30px;
	display: inline-block;
	border-radius: 25px;
	font-weight: 500;
	text-transform: capitalize;
	letter-spacing: 0.5px;
	transition: all .3s;
	position: relative;
	overflow: hidden;
}

.border-button a:hover {
	background-color: var(--accent);
	color: #fff;
}

.main-button a {
	font-size: 16px;
	color: var(--primary);
	/* text-shadow: lightgray 0px 0px 2px; */
	background-color: var(--accent);
	border: 1px solid var(--accent);
	padding: 12px 25px;
	display: inline-block;
	border-radius: 25px;
	font-weight: 400;
	text-transform: capitalize;
	letter-spacing: 0.3px;
	transition: all .3s;
	position: relative;
	overflow: hidden;
	letter-spacing: 0.3px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.main-button a:hover {
	background-color: var(--primary);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
	color: var(--accent);
	border: 1px solid #fff;
}

.main-button a:hover::before {
	animation: shine 1.5s ease-out infinite;
}

.main-button a::before {
	content: "";
	position: absolute;
	width: 100px;
	height: 100%;
	background-image: linear-gradient(120deg,
			rgba(255, 255, 255, 0) 30%,
			rgba(255, 255, 255, 0.8),
			rgba(255, 255, 255, 0) 70%);
	top: 0;
	left: -100px;
	opacity: 0.6;
}

@keyframes shine {
	0% {
		left: -100px;
	}

	60% {
		left: 100%;
	}

	to {
		left: 100%;
	}
}

section {
	margin-top: 4rem;
}

.section-heading {
	position: relative;
	z-index: 2;
	margin-top: 0px;
	margin-bottom: 80px;
	text-align: left;
}

.section-heading h2 {
	margin-top: 0px;
	margin-bottom: 20px;
	line-height: 36px;
	font-size: 30px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--primary);
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #111;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	opacity: 1;
	visibility: visible;
	z-index: 9999;
	-webkit-transition: opacity 0.25s ease;
	transition: opacity 0.25s ease;
}

.js-preloader.loaded {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

@-webkit-keyframes dot {
	50% {
		-webkit-transform: translateX(96px);
		transform: translateX(96px);
	}
}

@keyframes dot {
	50% {
		-webkit-transform: translateX(96px);
		transform: translateX(96px);
	}
}

@-webkit-keyframes dots {
	50% {
		-webkit-transform: translateX(-31px);
		transform: translateX(-31px);
	}
}

@keyframes dots {
	50% {
		-webkit-transform: translateX(-31px);
		transform: translateX(-31px);
	}
}

.preloader-inner {
	position: relative;
	width: 142px;
	height: 40px;
	background: transparent;
}

.preloader-inner .dot {
	position: absolute;
	width: 16px;
	height: 16px;
	top: 12px;
	left: 15px;
	background: var(--accent);
	border-radius: 50%;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-animation: dot 2.8s infinite;
	animation: dot 2.8s infinite;
}

.preloader-inner .dots {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	margin-top: 12px;
	margin-left: 31px;
	-webkit-animation: dots 2.8s infinite;
	animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
	display: block;
	float: left;
	width: 16px;
	height: 16px;
	margin-left: 16px;
	background: var(--accent);
	border-radius: 50%;
}


/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.background-header {
	/* background-color: #22b3c1 !important; */
	height: 70px !important;
	position: fixed !important;
	top: 0 !important;
	left: 0;
	right: 0;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
	-webkit-transition: all .5s ease 0s;
	-moz-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
	transition: all .5s ease 0s;
}

.header-area {
	/* background-color: var(--accent); */
	position: absolute;
	height: 70px;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	-webkit-transition: all .5s ease 0s;
	-moz-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
	transition: all .5s ease 0s;
}

.header-area .main-nav {
	background: transparent;
	display: flex;
	padding: 0px 30px;
	align-items: center;
}

.background-header .main-nav {
	padding: 0px;
	background-color: transparent;
}

.header-area .main-nav .logo {
	flex-basis: 30%;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo img {
	width: 135px;
}

.background-header .main-nav .logo img {
	/* width: 159px; */
}

.header-area .main-nav .nav {
	flex-basis: 70%;
	justify-content: flex-end;
	vertical-align: middle;
	margin-right: 0px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
	z-index: 999;
}

.header-area .main-nav .nav li {
	padding-left: 10px;
	padding-right: 10px;
}

.header-area .main-nav .nav li a {
	display: block;
	font-weight: 400;
	font-size: 15px;
	text-transform: capitalize;
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border: transparent;
	padding: 8px 15px;
	position: relative;
	border-radius: 18px;
	letter-spacing: 0.5px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li:last-child a:hover,
.background-header .main-nav .nav li.has-sub ul.sub-menu li:last-child a:hover {
	padding-left: 25px !important;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
	color: var(--accent);
}

.header-area .main-nav .nav li a.active::after {
	width: 20px;
	height: 2px;
	background-color: var(--accent);
	position: absolute;
	content: '';
	left: 15px;
	top: 2px;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
	color: #fff;
	opacity: 1;
}

.header-area .main-nav .nav li.has-sub {
	position: relative;
	padding-right: 15px;
}

.header-area .main-nav .menu-trigger {
	cursor: pointer;
	display: block;
	position: absolute;
	top: 33px;
	width: 32px;
	height: 40px;
	text-indent: -9999em;
	z-index: 99;
	right: 20px;
	display: none;
}

.background-header .main-nav .menu-trigger {
	top: 17px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	background-color: #fff;
	display: block;
	position: absolute;
	width: 30px;
	height: 2px;
	left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
	background-color: #fff;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	background-color: #fff;
	display: block;
	position: absolute;
	width: 30px;
	height: 2px;
	left: 0;
	width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
	background-color: #fff;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
	content: "";
}

.header-area .main-nav .menu-trigger span {
	top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
	-moz-transform-origin: 33% 100%;
	-ms-transform-origin: 33% 100%;
	-webkit-transform-origin: 33% 100%;
	transform-origin: 33% 100%;
	top: -10px;
	z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
	-moz-transform-origin: 33% 0;
	-ms-transform-origin: 33% 0;
	-webkit-transform-origin: 33% 0;
	transform-origin: 33% 0;
	top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
	background-color: transparent;
	width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
	-moz-transform: translateY(6px) translateX(1px) rotate(45deg);
	-ms-transform: translateY(6px) translateX(1px) rotate(45deg);
	-webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
	transform: translateY(6px) translateX(1px) rotate(45deg);
	background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:before {
	background-color: #fff;
}

.header-area .main-nav .menu-trigger.active span:after {
	-moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
	-ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
	-webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
	transform: translateY(-6px) translateX(1px) rotate(-45deg);
	background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:after {
	background-color: #fff;
}

.header-area.header-sticky {
	min-height: 70px;
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/
.title {
	position: absolute;
	width: 100%;
	top: 15%;
	text-align: center;
	z-index: 10;
}

.title h1 {
	color: white;
	font-size: 58px;
}

.title h2 {
	color: var(--accent);
}

.title h3 {
	margin-top: 5rem;
	color: white;
	font-size: 33px;
	border: 1px solid white;
	border-left: 0px;
	border-right: 0px;
}

#section-1 {
	margin-top: 0px;
	height: 100vh;
	min-height: 700px;
	color: #fff;
	background-color: #222;
	position: relative;
}

#section-1 .content-slider {
	position: relative;
	width: 100%;
	height: 100%;
}

#section-1 .content-slider input {
	display: none;
}

#section-1 .content-slider .slider {
	position: relative;
	width: inherit;
	height: inherit;
	overflow: hidden;
}

#section-1 .content-slider .slider .banner {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 0;
	width: inherit;
	height: inherit;
	text-align: center;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	transition: all 0.5s ease;
}

#section-1 .more-info {
	margin-top: 60px;
	background: #284556;
	background: radial-gradient(circle, rgba(40, 69, 86, 1) 0%, rgba(17, 48, 64, 1) 100%);
	border: 1px solid var(--accent);
	text-shadow: var(--background-light) 1px 0 1px;
	padding: 30px 60px;
	border-radius: 61px;
	position: absolute;
	width: 80%;
	left: 10%;
	bottom: 130px;
	display: inline-block;
}

#section-1 .more-info i {
	color: var(--accent);
	font-size: 24px;
	min-width: 60px;
	height: 60px;
	display: inline-block;
	text-align: center;
	line-height: 58px;
	border: 1px solid var(--accent);
	border-radius: 50%;
	float: left;
	margin-right: 20px;
}

#section-1 .more-info h4 {
	text-align: left;
	font-size: 20px;
	color: var(--accent);
	font-weight: 700;
	line-height: 28px;
}

#section-1 .more-info h4 span {
	font-size: 15px;
	color: var(--text);
	font-weight: 400;
}

#section-1 .more-info-details {
	justify-content: space-around;
	align-items: center;
}

#section-1 .meta-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

#section-1 .meta-icon,
#section-1 .meta-gif {
	width: 40px;
	height: 40px;
}

#section-1 .meta-text {
	font-size: 17px;
	font-weight: 300;
	letter-spacing: 0.3px;
	color: #fff;
	opacity: 0.95;
}

#section-1 .info-details {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 10px;
}

#section-1 .main-button {
	margin-top: 8px;
	text-align: right;
}

#section-1 .main-button a:hover {
	background-color: rgba(244, 170, 82, 0.7);
	border-color: var(--accent);
	color: #fff;
}

#section-1 .content-slider .slider .banner .banner-inner-wrapper {
	height: 100%;
	box-sizing: border-box;
}

#section-1 .content-slider .slider .banner .banner-inner-wrapper .main-caption {
	position: absolute;
	width: 100%;
	top: 55%;
}

#section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
	font-weight: 500;
	font-size: 20px;
	color: #fff;
	margin-bottom: 20px;
}

#section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
	font-size: 50px;
	color: #fff;
	font-weight: 700;
	margin-bottom: 30px;
}

#section-1 .content-slider .slider .banner .banner-inner-wrapper .learn-more-button a:hover {
	color: var(--accent);
	border-color: var(--accent);
	transition: 0.3s;
}

/* 
#section-1 .content-slider .slider #top-banner-1 {
  background-size: cover;
}

#section-1 .content-slider .slider #top-banner-2 {
  background-size: cover;
}

#section-1 .content-slider .slider #top-banner-3 {
  background-size: cover;
}

#section-1 .content-slider .slider #top-banner-4 {
  background-size: cover;
} */

#section-1 .content-slider nav {
	position: absolute;
	bottom: 30px;
	width: 100%;
	z-index: 10;
	text-align: center;
}

#section-1 .content-slider nav .controls {
	display: block;
	width: 70%;
	margin: 0 auto;
	font-family: Montserrat, sans-serif;
	color: #fff;
}

#section-1 .content-slider nav .controls label {
	position: relative;
	display: inline-block;
	width: 19.5%;
	height: 3.1em;
	overflow: hidden;
	margin: 0 1em;
	padding-top: 1em;
	text-align: left;
	text-transform: uppercase;
	font-family: Montserrat, sans-serif;
	font-size: 1em;
	color: var(--background-light);
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s;
}

#section-1 .content-slider nav .controls label .progressbar {
	position: absolute;
	top: 0;
	left: 0;
	height: 2px;
	width: 100%;
	background: var(--background-light);
	z-index: 100;
}

#section-1 .content-slider nav .controls label .progressbar .progressbar-fill {
	position: inherit;
	width: inherit;
	height: inherit;
	margin-left: -100%;
	background: var(--accent);
}

#section-1 .content-slider nav .controls label span.text {
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	display: inline-block;
	width: 100%;
}

#section-1 .content-slider nav .controls label:hover {
	color: var(--accent);
}

#section-1 .content-slider #banner1:checked~.slider #top-banner-1,
#section-1 .content-slider #banner2:checked~.slider #top-banner-2,
#section-1 .content-slider #banner3:checked~.slider #top-banner-3,
#section-1 .content-slider #banner4:checked~.slider #top-banner-4 {
	opacity: 1;
	z-index: 1;
}

#section-1 .content-slider #banner1:checked~nav label:nth-of-type(1),
#section-1 .content-slider #banner2:checked~nav label:nth-of-type(2),
#section-1 .content-slider #banner3:checked~nav label:nth-of-type(3),
#section-1 .content-slider #banner4:checked~nav label:nth-of-type(4) {
	cursor: default;
	color: #fff;
	transition: all 0.5s;
}

#section-1 .content-slider #banner1:checked~nav label:nth-of-type(1) .progressbar,
#section-1 .content-slider #banner2:checked~nav label:nth-of-type(2) .progressbar,
#section-1 .content-slider #banner3:checked~nav label:nth-of-type(3) .progressbar,
#section-1 .content-slider #banner4:checked~nav label:nth-of-type(4) .progressbar {
	background: #fff;
}

#section-1 .content-slider #banner1:checked~nav label:nth-of-type(1) .progressbar-fill,
#section-1 .content-slider #banner2:checked~nav label:nth-of-type(2) .progressbar-fill,
#section-1 .content-slider #banner3:checked~nav label:nth-of-type(3) .progressbar-fill,
#section-1 .content-slider #banner4:checked~nav label:nth-of-type(4) .progressbar-fill {
	animation: progressBarFill 5s linear;
}

/* Animations */
@keyframes progressBarFill {
	from {
		margin-left: -100%;
	}

	to {
		margin-left: 0;
	}
}

/* 
---------------------------------------------
Welcoming Text Style
--------------------------------------------- 
*/

.welcoming-text {
	/* background-image: url(../images/cta-bg.jpg); */
	/* background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; */
	padding: 50px 0px;
	text-align: center;
	background: #284556;
	background: radial-gradient(circle, rgba(40, 69, 86, 1) 0%, rgba(17, 48, 64, 1) 100%);
	color: var(--accent);
}

.welcoming-text h2 {
	color: var(--accent);
	font-size: 40px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.welcoming-text p {
	font-size: 20px;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.5px;
}

/* 
---------------------------------------------
Sponsor Style
--------------------------------------------- 
*/

.sponsor {
	/* background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9)), url(../images/cycling_don_fredo.jpg); */
	/* background-repeat: no-repeat; */
	/* background-size: cover; */
	padding: 50px 25px;
	text-align: center;
	color: var(--accent);
}

.sponsor h2 {
	color: var(--accent);
	font-size: 40px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.sponsor p {
	margin-top: 1rem;
}

.sponsor img {
	margin-top: 2rem;
}

.sponsor .socials-row {
	margin-top: 2rem;
}

/* 
---------------------------------------------
Call To Action Style
--------------------------------------------- 
*/
.call-to-action {
	background-image: linear-gradient(rgba(40, 69, 86, 0.9), rgba(40, 69, 86, 0.9)), url(../images/sfeer_zanger.jpeg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 50px 0px;
	text-align: center;
}

.call-to-action h2 {
	font-size: 40px;
	color: #fff;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.call-to-action h4 {
	font-size: 20px;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.5px;
}

/* .call-to-action .border-button {
  text-align: right;
  margin-top: 20px;
}

.call-to-action .border-button a {
  color: #fff;
  border-color: #fff
}

.call-to-action .border-button a:hover {
  background-color: #fff;
  color: var(--accent);
} */

.event-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
	color: #fff;
	border-radius: 8px;
	overflow: hidden;
	font-weight: 600;
}

.event-table thead {
	background: #f5f5f5;
}

.event-table th {
	text-align: left;
	padding: 12px 16px;
	font-weight: 600;
	color: #333;
}

.event-table td:last-child,
.event-table th:last-child {
	text-align: right;
}

.event-table td {
	padding: 12px 16px;
	vertical-align: middle;
}

.event-table tr:hover {
	/* background: #fafafa; */
}

.event-actions {
	white-space: nowrap;
}

.event-actions a {
	display: inline-block;
	padding: 6px 12px;
	margin-right: 6px;
	border-radius: 4px;
	font-size: 14px;
	text-decoration: none;
	transition: 0.2s ease;
}

.btn-detail {
	background: #ddd;
	color: var(--primary);
}

.btn-detail:hover {
	background: #ccc;
	color: #fff;
}

.btn-reserve {
	background: var(--accent);
	color: #fff;
}

.btn-reserve:hover {
	color: var(--primary)
}

#event {
	min-height: 50vh;
}

.event-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.event-meta {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.event-status.full {
    color: #c62828;
    font-weight: bold;
}

.event-status.available {
    color: #2e7d32;
    font-weight: bold;
}

/* DESCRIPTION */
.event-description {
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 40px;
	/* overflow: scroll; */
}

.event-cta {
    text-align: center;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
	background-color: var(--accent);
	text-align: center;
	padding: 25px 0px;
}

footer p {
	color: var(--background-dark);
}

footer p a {
	color: var(--background-dark);
	font-weight: 500;
	transition: all .3s;
}

footer p a:hover {
	color: #fff;
	opacity: 0.75;
}


/* 
---------------------------------------------
About Page Style
--------------------------------------------- 
*/

.about-don-fredo {
	padding: 0 2rem;
	text-align: center;
}

.story {
	justify-content: space-between;
}

.about-page-heading {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/sfeer_fiets.jpeg) !important;
}

.intro-text {
	font-size: 1.2rem;
	font-style: italic;
	text-align: center;
}

.story-block h3 {
	margin-bottom: 20px;
	color: var(--accent)
}

.story-block p {
	margin-bottom: 18px;
	text-align: justify;
}

.timeline-box {
	background: #fff;
	border-radius: 12px;
	padding: 25px;
	margin-top: 55px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-box h4 {
	margin-bottom: 15px;
	color: var(--accent);
	text-transform: uppercase;
	font-size: 1rem;
	letter-spacing: 0.05em;
}

.timeline-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.timeline-box li {
	margin-bottom: 10px;
	font-size: 0.95rem;
}

.media-title {
	margin-bottom: 25px;
	color: var(--accent);
}

.media-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 700px;
}

.about-media .row {
	display: flex;
	flex-wrap: wrap;
}

.about-media .col-md-6 {
	display: flex;
}

.media-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.media-card video {
	width: 100%;
	display: block;
}

.media-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.about-media .row {
	display: flex;
	flex-wrap: wrap;
}

.about-media .col-md-6 {
	display: flex;
}

.media-card-body {
	padding: 15px;
	text-align: center;
}

.media-card-body h5 {
	margin: 0 0 8px;
	color: var(--accent);
}

.media-card-footer {
	padding: 15px;
	text-align: center;
}

.media-card-footer h5, .media-card-footer a {
	margin: 0 0 8px;
	color: var(--background-dark);
}

.media-card-footer a {
	text-decoration-line: underline !important;
}

.youtube-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	/* 16:9 ratio */
	overflow: hidden;
	border-radius: 12px;
}

.youtube-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#socials .socials-container {
	margin: 35px 0px;
}

.socials-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
}

.socials-row i {
	width: 70px;
	height: 70px;
	display: inline-block;
	text-align: center;
	line-height: 70px;
	border: 2px solid var(--primary);
	border-radius: 50px;
	font-size: 20px;
	font-size: 32px;
	color: #333;
	cursor: pointer;
	transition: 0.2s ease;
}

.socials-row i.fb:hover {
	color: #fff !important;
	background-color: #1877F2;
}

.socials-row i.insta:hover {
	color: #fff !important;
	background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
}

@-webkit-keyframes slide {

	0%,
	50% {
		opacity: 0;
		display: block !important;
	}

	100% {
		opacity: 1;
		display: block !important;
	}
}

@keyframes slide {

	0%,
	50% {
		opacity: 0;
		display: block !important;
	}

	100% {
		opacity: 1;
		display: block !important;
	}
}

@-webkit-keyframes diespin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes diespin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

body .credit {
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: inherit;
}

body .options {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	overflow: hidden;
	width: calc(100% - 0px);
	height: 400px;
}

body .options .option {
	position: relative;
	overflow: hidden;
	min-width: 60px;
	margin: 0px 10px;
	background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
	background-size: auto 120%;
	background-position: center;
	cursor: pointer;
	transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

body .options .option {
	--defaultBackground: var(--accent);
}

body .options .option.active {
	flex-grow: 10000;
	transform: scale(1);
	max-width: 600px;
	margin: 0px;
	border-radius: 40px;
	background-size: auto 100%;
	/*&:active {
     transform:scale(0.9);
  }*/
}

body .options .option.active .shadow {
	box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}

body .options .option.active .label {
	bottom: 20px;
	left: 20px;
}

body .options .option.active .label .info>div {
	left: 0px;
	opacity: 1;
}

body .options .option:not(.active) {
	flex-grow: 1;
	border-radius: 30px;
}

body .options .option:not(.active) .shadow {
	bottom: -40px;
	box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}

body .options .option:not(.active) .label {
	bottom: 10px;
	left: 10px;
}

body .options .option:not(.active) .label .info>div {
	left: 20px;
	opacity: 0;
}

body .options .option .shadow {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 120px;
	transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

body .options .option .label {
	display: flex;
	position: absolute;
	right: 0px;
	height: 40px;
	transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

body .options .option .label .icon {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	min-width: 40px;
	max-width: 40px;
	height: 40px;
	border-radius: 100%;
	background-color: white;
	color: var(--defaultBackground);
}

body .options .option .label .info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 10px;
	color: white;
	white-space: pre;
}

body .options .option .label .info>div {
	position: relative;
	transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}

body .options .option .label .info .main {
	font-size: 20px;
	font-weight: 700;
}

body .options .option .label .info .sub {
	font-size: 14px;
	font-weight: 500;
	transition-delay: 0.1s;
}



/* 
---------------------------------------------
Evenementen Page Style
--------------------------------------------- 
*/

.page-heading {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/sfeer_zaal.jpeg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 160px 0px 100px 0px;
	text-align: center;
}

.page-heading h4 {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 20px;
}

.page-heading h2 {
	font-size: 50px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 30px;
}

.page-heading .border-button a {
	border-color: #fff;
	color: #fff;
}

.page-heading .border-button a:hover {
	border-color: var(--accent);
}

.search-form #search-form {
	background-color: var(--accent);
	border-bottom-left-radius: 23px;
	border-bottom-right-radius: 23px;
	padding: 35px 60px;
}

.search-form #search-form h4 {
	color: var(--primary);
	font-size: 20px;
	font-weight: 700;
	margin-top: 10px;
}

.search-form #search-form select {
	background-color: transparent;
	border: none;
	outline: none;
	box-shadow: none;
	border-bottom: 1px solid var(--primary);
	border-radius: 0px;
	color: var(--primary);
	font-size: 15px;
	font-weight: 300;
	width: 100%;
	cursor: pointer;
}

.search-form #search-form option {
	background-color: var(--primary);
}

.search-form #search-form button {
	width: 100%;
	text-align: center;
	font-size: 14px;
	color: #fff;
	background-color: transparent;
	color: var(--primary);
	padding: 8px 30px;
	display: inline-block;
	border-radius: 25px;
	font-weight: 500;
	text-transform: capitalize;
	letter-spacing: 0.5px;
	transition: all .3s;
	position: relative;
	overflow: hidden;
}

.search-form #search-form button:hover {
	background-color: var(--background-dark);
	color: var(--accent);
}

.form-container {
	width: 75%;
	margin: 0 auto;
}

.deals-container {
	width: 85%;
	margin: 0 auto;
}

.amazing-deals {
	margin-top: 20px;
}

.amazing-deals .item .image {
	border-top-left-radius: 23px;
	border-bottom-left-radius: 23px;
	overflow: hidden;
}

.amazing-deals .item {
	background-color: #f7f7f7;
	border-radius: 23px;
	padding-right: 30px;
	margin-bottom: 30px;
}

.amazing-deals .item span.info {
	color: var(--accent);
	font-size: 15px;
	margin-bottom: 20px;
	display: block;
}

.amazing-deals .item h4 {
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 25px;
	margin-bottom: 10px;
	border-bottom: 1px solid #ddd;
}

.amazing-deals .item i {
	color: var(--background-dark);
	margin-right: 5px;
	min-width: 20px;
	font-size: 1.05em;
}

.amazing-deals .item span.list {
	font-size: 15px;
	color: var(--text);
	font-weight: 500;
}

.amazing-deals .item p {
	padding-top: 25px;
	margin-top: 10px;
	white-space: pre-line;
	border-top: 1px solid #ddd;
	margin-bottom: 30px;
}

.amazing-deals .item a {
	font-size: 14px;
	padding: 8px 20px;
}

.amazing-deals .meta-icon {
	height: 20px;
	width: 20px;
}

.amazing-deals .event-details {}

.amazing-deals ul.page-numbers {
	text-align: center;
	margin-top: 30px;
}

.amazing-deals ul.page-numbers li {
	display: inline-block;
	margin: 0px 5px;
}

.amazing-deals ul.page-numbers li a {
	display: inline-block;
	width: 46px;
	height: 46px;
	border: 1px solid var(--accent);
	line-height: 44px;
	color: var(--accent);
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	border-radius: 50%;
	transition: all .3s;
}

.amazing-deals ul.page-numbers li.active a,
.amazing-deals ul.page-numbers li a:hover {
	background-color: var(--accent);
	color: #fff;
}

.amazing-deals ul.page-numbers li:first-child a,
.amazing-deals ul.page-numbers li:last-child a {
	border: none;
}

#event-list .col-lg-6 {
	display: flex;
	padding: 0;
}

#event-list .event {
	margin-bottom: 2rem;
	padding: 0 5px;
}

#event-list .item {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--background-dark);
	border-top-left-radius: 23px;
	border-bottom-left-radius: 23px;
	overflow: hidden;
	width: 100%;
	height: 100%;
	/* max-height: 650px; */
}

#event-list .item .row {
	flex: 1;
}

#event-list .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

#event-list .content {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	padding: 20px 0 20px 20px;
	overflow: hidden;
}

#event-list .content p {
	overflow-y: auto;
	max-height: 180px;
	flex: 1;
	margin-bottom: 10px;
}

#event-list .main-button {
	margin-top: auto;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}


/* 
---------------------------------------------
Reservation Page Style
--------------------------------------------- 
*/

.second-page-heading {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/sfeer_fietsjes.jpeg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 160px 0px 150px 0px;
	text-align: center;
}

.second-page-heading h4 {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 15px;
	position: relative;
	padding-bottom: 25px;
}

.second-page-heading h4::after {
	position: absolute;
	width: 100px;
	height: 2px;
	background-color: rgba(250, 250, 250, 0.3);
	content: '';
	left: 50%;
	bottom: 0;
	transform: translateX(-50px);
}

.second-page-heading h2 {
	font-size: 50px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 30px;
}

.second-page-heading p {
	padding: 0px 15%;
	color: #fff;
	margin-bottom: 30px;
}

/* .second-page-heading .main-button a {
  color: #fff;
  color: var(--primary);
}

.second-page-heading .main-button a:hover {
  background-color: var(--background-light);
  color: #fff;
} */

.reservation-info {
	margin-top: -99px;
}

.more-info .info-item {
	background: #284556;
	background: radial-gradient(circle, rgba(40, 69, 86, 1) 0%, rgba(17, 48, 64, 1) 100%);
	border-radius: 23px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
	text-align: center;
	padding: 30px;
	height: 100%;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.more-info a:hover .info-item {
	transform: translateY(-5px);
	box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
}

.more-info a {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}

.more-info a:active .info-item {
	transform: scale(0.97);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}


.more-info .info-item i {
	background-color: #f0f0f0;
	width: 60px;
	height: 60px;
	display: inline-block;
	text-align: center;
	line-height: 60px;
	border-radius: 50px;
	color: var(--accent) !important;
	font-size: 20px;
	margin-bottom: 20px;
}

.more-info .info-item h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--accent) !important;
}

.more-info .info-item a {
	font-size: 15px;
	color: var(--accent) !important;
}

.more-info .info-item span {
	font-size: 15px;
	color: var(--accent) !important;
}

.reservation-form {}

.reservation-form #map {
	margin-bottom: -6px;
}

.reservation-form #reservation-form h4 {
	font-size: 30px;
	text-align: center;
	margin-bottom: 50px;
}

.reservation-form #reservation-form h4 em {
	font-style: normal;
	color: var(--accent);
}

.reservation-form #reservation-form {
	padding: 30px 120px 80px 120px;
	background-color: rgba(244, 170, 82, 0.2);
	border-top-right-radius: 23px;
	border-top-left-radius: 23px;
	margin-bottom: -3rem;
}

.reservation-form #reservation-form label {
	font-size: 15px;
	color: var(--text);
}

.reservation-form #reservation-form input,
.reservation-form #reservation-form select {
	width: 100%;
	height: 46px;
	/* background-color: transparent; */
	border-radius: 23px;
	border: 1px solid #e0e0e0;
	padding: 0px 20px;
	cursor: pointer;
	margin-bottom: 30px;
}

.reservation-form #reservation-form input.date {
	color: #aaa;
}

.reservation-form #reservation-form button {
	font-size: 14px;
	color: #fff;
	background-color: var(--accent);
	border: 1px solid var(--accent);
	padding: 12px 30px;
	width: 100%;
	max-width: 15rem;
	text-align: center;
	display: inline-block;
	border-radius: 25px;
	font-weight: 500;
	text-transform: capitalize;
	letter-spacing: 0.5px;
	transition: all .3s;
	position: relative;
	overflow: hidden;
}

.reservation-form #reservation-form button:hover {
	opacity: 0.7;
	color: var(--primary)
}


/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
	overflow-x: hidden;
}



.thanks {
	background: #284556;
	background: radial-gradient(circle, rgba(40, 69, 86, 1) 0%, rgba(17, 48, 64, 1) 100%);
	border: 1px solid var(--accent);
	text-shadow: var(--background-light) 1px 0 1px;
	padding: 30px 60px;
	border-radius: 61px;
}

.thanks p, .thanks h2, .thanks a {
	color: var(--accent);	
}

@media screen and (max-width: 1200px) {
	#section-1 .more-info h4 span {
		font-size: 12px;
	}

	#section-1 .more-info h4 {
		font-size: 15px;
	}

	.weekly-offers .container-fluid {
		padding: 0px;
	}

	.header-area .main-nav .nav li {
		padding-left: 10px;
		padding-right: 10px;
	}

	.header-area .main-nav:before {
		display: none;
	}

	.main-button a {
		padding: 12px 20px;
	}

	#section-1 .content-slider .slider .banner .banner-inner-wrapper .main-caption {
		/* top: 55%; */
	}
}

@media screen and (max-width: 992px) {
	section {
		margin-top: 3rem;
	}

	#section-1 .more-info {
		margin-top: 60px;
		padding: 20px;
	}

	#section-1 .more-info h4 span {
		font-size: 15px;
	}

	#section-1 .more-info h4 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	#section-1 .main-button {
		text-align: left;
	}

	#section-1 .content-slider nav .controls label {
		width: 15%;
	}

	.call-to-action h2,
	.call-to-action h4 {
		text-align: center;
	}

	.call-to-action .border-button {
		text-align: center;
		margin-top: 30px;
	}

	.about-main-content .content p {
		padding: 0px 5%;
	}

	.weekly-offers .container-fluid {
		padding: 0px;
	}

	.more-about .left-image {
		margin-right: 0px;
		margin-bottom: 60px;
	}

	.search-form #search-form h4 {
		margin-bottom: 15px;
	}

	.search-form #search-form select {
		margin-bottom: 30px;
	}

	.amazing-deals .item .image {
		border-top-right-radius: 23px;
		border-bottom-left-radius: 0px;
	}

	.amazing-deals .item {
		padding-right: 0px;
	}

	.amazing-deals .item .content {
		padding: 30px !important;
	}


	.more-info .info-item {
		margin-bottom: 30px;
	}

	.reservation-form #reservation-form {
		padding: 65px 30px;
	}

	.header-area {
		top: 0;
	}

	.header-area .main-nav {
		background-color: transparent;
		border-radius: 0px;
	}

	.header-area .main-nav .nav {
		height: auto;
		flex-basis: 100%;
	}

	.header-area .main-nav .logo {
		position: absolute;
		left: 30px;
		top: 15px;
	}

	.header-area .main-nav .logo img {
		width: 100px;
	}

	.background-header .main-nav .logo {
		top: 0px;
	}

	.background-header .main-nav .border-button {
		top: 0px !important;
	}

	.header-area .main-nav .border-button {
		position: absolute;
		top: 15px;
		right: 70px;
	}

	.header-area.header-sticky .nav li a:hover,
	.header-area.header-sticky .nav li a.active {
		color: #22b3c1 !important;
		opacity: 1;
	}

	.header-area.header-sticky .nav li.search-icon a {
		width: 100%;
	}

	.header-area {
		/* background-color: var(--accent); */
		padding: 0px 15px;
		height: 100px;
		box-shadow: none;
		text-align: center;
	}

	.header-area .container {
		padding: 0px;
	}

	.header-area .logo {
		margin-left: 0px;
	}

	.header-area .menu-trigger {
		display: block !important;
	}

	.header-area .main-nav {
		overflow: hidden;
	}

	.header-area .main-nav .nav {
		float: none;
		width: 100%;
		display: none;
		-webkit-transition: all 0s ease 0s;
		-moz-transition: all 0s ease 0s;
		-o-transition: all 0s ease 0s;
		transition: all 0s ease 0s;
		margin-left: 0px;
	}

	.header-area.header-sticky .nav {
		margin-top: 85px !important;
	}

	.background-header.header-sticky .nav {
		margin-top: 70px !important;
	}

	.header-area .main-nav .nav li:first-child {
		border-top: 1px solid var(--accent-secondary);
	}

	.header-area .main-nav .nav li {
		width: 100%;
		background: #f7f7f7;
		border-bottom: 1px solid var(--accent-secondary);
		padding-left: 0px !important;
		padding-right: 0px !important;
	}

	.header-area .main-nav .nav li a {
		height: 50px !important;
		line-height: 50px !important;
		padding: 0px !important;
		border: none !important;
		background: #f7f7f7 !important;
		color: #1e1e1e !important;
	}

	.header-area .main-nav .nav li a:hover {
		background: #f7f7f7 !important;
		color: #22b3c1 !important;
	}

	.header-area .main-nav .nav li.has-sub ul.sub-menu {
		position: relative;
		visibility: inherit;
		opacity: 1;
		z-index: 1;
		transform: translateY(0%);
		top: 0px;
		width: 100%;
		box-shadow: none;
		height: 0px;
		transition: all 0s;
	}

	.header-area .main-nav .nav li.submenu ul li a {
		font-size: 12px;
		font-weight: 400;
	}

	.header-area .main-nav .nav li.submenu ul li a:hover:before {
		width: 0px;
	}

	.header-area .main-nav .nav li.has-sub ul.sub-menu {
		height: auto;
	}

	.header-area .main-nav {
		padding: 0px;
	}

	.header-area .main-nav .nav li.has-sub:after {
		color: #3B566E;
		right: 30px;
		font-size: 14px;
		top: 15px;
	}

	.header-area .main-nav .nav li.submenu:hover ul,
	.header-area .main-nav .nav li.submenu:focus ul {
		height: 0px;
	}

	.timeline-box {
		margin-top: 0;
	}

	.deals-container {
		width: 90%;
	}

	#section-1 .content-slider .slider .banner .banner-inner-wrapper .main-caption {
		top: 55%;
	}

	.second-page-heading p {
		padding: 0px 2px;
	}

		.location {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	section {
		margin-top: 2rem;
	}

	#section-1 .content-slider nav .controls label span.text {
		display: none;
	}

	#section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
		font-size: 15px;
	}

	#section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
		font-size: 36px;
	}

	#section-1 .more-info {
		padding: 30px;
		margin-top: 30px !important;
		border-radius: 23px;
		width: 95%;
		left: 2.5%;
	}

	#section-1 .more-info i {
		width: 36px;
		height: 36px;
		line-height: 34px;
		font-size: 18px;
		margin-right: 10px;
		margin-top: 8px;
	}

	.visit-country .item .right-content .main-button a {
		font-size: 14px;
		padding: 12px 15px;
	}

	.main-button a {
		text-align: center;
	}

	#section-1 .more-info h4 {
		font-size: 14px !important;
	}

	#section-1 .content-slider nav .controls label {
		width: 7% !important;
	}

	.visit-country .item .right-content ul li {
		width: 30%;
	}

	.visit-country .item .right-content h4 {
		margin-top: 20px;
	}

	.event-table th:nth-child(3),
	.event-table td:nth-child(3) {
		display: none;
		/* prijs verbergen op mobiel */
	}

	.event-table {
		font-weight: 300;
	}

	.event-table td {
		padding: 12px 2px;
	}


	.welcoming-text h2,
	.sponsor h2,
	.call-to-action h2,
	.page-heading h2,
	.second-page-heading h2 {
		font-size: 32px;
	}
}

@media screen and (max-width: 718px) {
	body .options {
		min-width: 520px;
	}

	body .options .option:nth-child(5) {
		display: none;
	}

	.intro-text {
		font-size: 1rem;
		font-weight: 500;
	}
}

@media screen and (max-width: 638px) {
	body .options {
		min-width: 440px;
	}

	body .options .option:nth-child(4) {
		display: none;
	}
}

@media screen and (max-width: 558px) {
	body .options {
		min-width: 360px;
	}

	body .options .option:nth-child(3) {
		display: block;
		border-radius: 15px !important;
	}

	body .options .option {
		border-radius: 15px !important;
	}

	.title h1 {
		font-size: 36px;
	}

	.title h3 {
		font-size: 28px;
	}

	.header-area .main-nav .logo img {
		width: 80px;
	}

	.about-don-fredo {
		padding: 0 1.5rem;
	}

	#section-1 .content-slider .slider .banner .banner-inner-wrapper .main-caption {
		top: 47%;
	}

	.telefoon-info {
		margin-bottom: 1rem;
	}

	.form-container {
	width: 85%;
}
}

@media screen and (max-width: 478px) {
	body .options {
		min-width: 280px;
	}

	body .options .option:nth-child(2) {
		display: block;
		border-radius: 15px !important;
	}

	.header-area .main-nav .logo {
		left: 30px;
		top: 0px;
	}

	.about-don-fredo {
		padding: 0 1rem;
	}
}