@font-face {
	font-family: "Segoe UI";
	src: url("./fonts/Segoe UI.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Segoe UI";
	src: url("./fonts/Segoe UI Bold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: "Segoe UI";
	src: url("./fonts/Segoe UI Bold Italic.ttf") format("truetype");
	font-weight: bold;
	font-style: italic;
}

@font-face {
	font-family: "Segoe UI";
	src: url("./fonts/Segoe UI Italic.ttf") format("truetype");
	font-weight: normal;
	font-style: italic;
}

@import url("https://fonts.googleapis.com/css?family=Parisienne|Quicksand&display=swap");

:root {
	--white: #fff;
	--boneWhite: #f4f4f4;
	--lightGray: #f3f3f3;
	--mediumGray: #ccc;
	--darkGray: #2d2d2f;
	--black: #333;
	--jetBlack: #343434;
	--fogdoGreen: #004800;
	--fogdoMediumGreen: rgb(6 115 12);
	--fogdoVeryLightGreen: rgb(118, 214, 123);
	--fogdoGradient: linear-gradient(to right, rgb(1, 94, 1), rgb(5, 155, 5)),
		url("https://www.transparenttextures.com/patterns/diamond-upholstery.png");
	--fogdoGradientLight: linear-gradient(to right, rgb(28, 221, 28), rgb(74, 196, 74)),
		url("https://www.transparenttextures.com/patterns/hexellence.png");
	--fogdoGradientVeryLight: linear-gradient(to bottom, rgb(83, 179, 108), rgb(100, 199, 108, 0.9));
	--fogdoGradientSection: linear-gradient(to right, rgb(209, 255, 209), rgb(166, 204, 166));
	--fogdoGradientSection2: linear-gradient(to right, #fff9e0 0%, #f7ecd1 100%);
	--fogdoGradientMediumDark: linear-gradient(120deg, #225c2b 0%, #3e8e41 100%),
		url("https://www.transparenttextures.com/patterns/diagmonds-light.png");
	--fogdoGolfball: linear-gradient(to bottom right, #ffffff 0%, #f2f2f2 40%, #dcdcdc 100%),
		url("../images/golfball-texture.png");
	--fogdoActive: linear-gradient(to right, rgb(5, 14, 5) 0%, rgb(0, 5, 0) 100%);
	--fogdoGradientActiveLight: linear-gradient(to right, rgb(129, 207, 129), rgb(82, 146, 82));
	--fogdoHoverLight: linear-gradient(to right, rgb(135, 211, 100), rgb(89, 219, 89));
	--footerTextureOpacity: 0.3;
	--footerTextureOpacity2: 0.5;
	--lightBlue: #d6e8f5;
	--red: #c83b3b;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
	scroll-behavior: smooth;
	word-break: break-word;
	-webkit-text-size-adjust: 100%;
	line-height: 150%;
}

html {
	font-size: 62.5%;
}

body {
	background-color: var(--white);
}

body.loaded {
	opacity: 1;
}

body.menu-open {
	overflow: hidden;
}

a,
a:visited {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Playfair Display", sans-serif;
	font-weight: 600;
}

h1,
h2,
h3 {
	padding-bottom: 1rem;
	text-wrap: balance;
}

h1 {
	font-size: 4.1rem;
	line-height: 125%;
}

h2 {
	font-size: 3.3rem;
	line-height: 125%;
}

h3 {
	font-size: 2.6rem;
	line-height: 125%;
}

h4 {
	font-size: 2.3rem;
	line-height: 125%;
	margin-bottom: 0.4rem;
	padding-bottom: 1rem;
}

span {
	font-size: inherit;
	line-height: inherit;
}

.section-text-wrapper h1,
.section-text-wrapper h2 {
	padding: 10px 0;
}

a {
	color: var(--black);
}

a:hover {
	color: var(--fogdoVeryLightGreen);
}

a,
p,
label,
li,
button {
	font-size: 1.8rem;
}

li {
	list-style: none;
	position: relative;
}

/* Only add golfball icon to li elements that do NOT have an <a> as a direct child */
li:not(:has(> a)):not(.splide__pagination li)::before {
	content: "";
	position: absolute;
	left: -28px;
	top: 0.3em;
	width: 1em;
	height: 1.2em;
	background-image: url(../images/golfball.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

p {
	color: #505050;
}

span {
	font-size: inherit;
}

img {
	width: 100%;
	height: auto;
}

hr {
	border: 1px solid var(--lightGray);
}

input:focus,
input:active,
textarea:focus,
textarea:active {
	border-bottom: 2px solid var(--lightGray) !important;
}

html,
body {
	width: 100%;
	height: 100%;
}

#content-wrapper {
	min-height: 100%;
	width: 100%;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

main {
	width: 100%;
	transition: all 0.4s ease;
	flex-grow: 1;
}

footer {
	transition: all 0.4s ease;
}

header,
main,
footer {
	flex-shrink: 0;
}

/* Header */
#header-equalizer {
	position: relative;
	top: 0;
	left: 0;
	height: 0;
	width: 100%;
	z-index: -1;
}

body.sticky-body #header-equalizer {
	height: 11rem;
}

header {
	position: absolute;
	z-index: 10;
	width: 100%;
	top: 0;
	left: 0;
	background-color: transparent;
	height: auto;
}

header.gallery-wrapper .active {
	z-index: 0;
}

header.sticky {
	background-color: var(--fogdoGradient);
	background-blend-mode: multiply;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.logo {
	display: none;
}

.section-slider {
	height: 20vh;
}

header:has(+ main > .section-slider) {
	background-color: transparent;
	box-shadow: none;
}

main:has(> .section-slider) {
	margin-top: 0;
}

header:has(+ main > .section-slider) .header-holder {
	margin-top: 0;
}

header:has(+ main > .section-slider) .mainmenu a:hover {
	color: var(--white) !important;
	/* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4) !important; */
}

header.sticky:has(+ main > .section-slider) .mainmenu a:hover {
	color: var(--white) !important;
	/* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4) !important; */
}

header.sticky:has(+ main > .section-slider) {
	margin-top: 0px;
}

header.sticky:has(+ main > .section-slider) .header-holder {
	margin-top: 0px;
}

header:has(+ main > .section-slider) .logo {
	display: flex;
}

header:has(+ main > .section-slider) .white-logo {
	display: none;
}

header.sticky:has(+ main > .section-slider) .logo {
	display: none;
	padding: 0;
}

header.sticky:has(+ main > .section-slider) .white-logo {
	display: flex;
	padding: 0;
}

header:has(+ main > .section-slider) .mainmenu>li .desktop-arrow {
	color: white;
}

header.sticky:has(+ main > .section-slider) .mainmenu>li .desktop-arrow {
	color: var(--white);
}

header:has(+ main > .section-slider) .mainmenu>li>a {
	text-shadow: 1px 2px rgb(45 41 41);
	color: white;
}

header.sticky:has(+ main > .section-slider) .mainmenu>li>a {
	text-shadow: none;
	color: var(--white);
}

header:has(+ main > .section-slider) .app-menu i {
	color: var(--white);
}

.header-social-wrapper {
	display: flex;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2rem;
}

.header-social-wrapper a {
	color: var(--darkGray);
}

.header-social-wrapper ul {
	top: 50%;
	left: 50%;
	display: flex;
	margin: 0;
	padding: 0;
}

.header-social-wrapper ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin: 0 2rem;
}

.header-social-wrapper ul li a .fa {
	font-size: 40px;
	color: #262626;
	line-height: 80px;
	transition: 0.5s;
	padding-right: 14px;
}

.header-social-wrapper ul li a span {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 30px;
	color: #262626;
	letter-spacing: 4px;
	transition: 0.5s;
}

.header-social-wrapper ul li a {
	position: relative;
	text-decoration: none;
	display: block;
	background: var(--fogdoGolfball);
	background-size: cover;
	background-repeat: no-repeat;
	background-blend-mode: multiply;
	text-align: left;
	padding: 0.5rem;
	transform: rotate(0deg) skew(0deg) translate(0, 0);
	transition: 0.6s;
	box-shadow: inset 2px -2px 4px rgba(0, 0, 0, 0.1), -5px 5px 5px rgba(0, 0, 0, 0.5);
	border-radius: 50%;
}

.header-social-wrapper ul li a:before {
	content: "";
	position: absolute;
	bottom: -55px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 20px;
	background: radial-gradient(ellipse at center, #3a5f0b 0%, #2d4f07 100%);
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	z-index: 0;
	opacity: 1;
	transition: opacity 0.7s ease;
}

.header-social-wrapper ul li a:after {
	content: "";
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 16px;
	/* Wider top */
	height: 40px;
	background: linear-gradient(to bottom, #3e8e41 0%, #2f6b30 50%, #3e8e41 100%);
	border-radius: 8px 8px 2px 2px;
	/* Rounded top, flatter base */
	clip-path: polygon(0% 0%,
			/* top-left */
			100% 0%,
			/* top-right */
			80% 10%,
			/* shoulder-right */
			60% 100%,
			/* bottom-right */
			40% 100%,
			/* bottom-left */
			20% 10%
			/* shoulder-left */
		);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
	box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
	opacity: 1;
	transition: opacity 0.7s ease;
}

header.sticky .header-social-wrapper ul li a:before,
header.sticky .header-social-wrapper ul li a:after {
	opacity: 0;
	transition: opacity 0.7s ease;
	pointer-events: none;
}

header.sticky .header-social-wrapper ul li a {
	display: block;
	background: none;
	padding: 0.5rem;
	transform: rotate(0deg) skew(0deg) translate(0, 0);
	transition: 0.5s;
	box-shadow: none;
}

header.sticky .header-social-wrapper ul li a:hover {
	background: var(--fogdoGolfball);
	background-size: cover;
	background-repeat: no-repeat;
	background-blend-mode: multiply;
	box-shadow: inset 2px -2px 4px rgba(0, 0, 0, 0.1), -5px 5px 5px rgba(0, 0, 0, 0.5);
}

header.sticky .social-link-wrapper i {
	color: white;
}

header.sticky .header-social-wrapper ul li a:hover i {
	color: var(--fogdoGreen);
}

header.sticky .header-social-wrapper ul li {
	margin: 0;
}

.header-social-wrapper ul li a i {
	transition: 0.5s;
}

.header-social-wrapper ul li:hover .fa {
	color: #fff;
}

.header-social-wrapper ul li:hover span {
	color: #fff;
}

.header-social-wrapper ul li:hover a {
	/* Simulate golfball being pushed/shot away */
	transform: translateX(-40px) scale(1.15) rotate(-15deg);
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25), 10px 0 40px -10px var(--black);
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	filter: brightness(1.15) drop-shadow(0 0 6px var(--black));
}

.header-social-wrapper ul li:hover a:before {
	background: var(--fogdoVeryLightGreen);
}

.header-social-wrapper ul li a:hover:before {
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6), transparent 70%);
	transform: translateX(-50%) scale(1.2, 0.6);
	/* wider, flatter shadow */
	opacity: 0.6;
	transition: all 0.4s ease;
}

.header-social-wrapper ul li:hover a:after {
	background: var(--fogdoGradientVar);
}

.hide {
	display: none;
}

.shadow {
	box-shadow: 0 7px 14px rgba(171, 171, 171, 0.2), 0 5px 5px rgba(171, 171, 171, 0.2);
}

.app-menu {
	display: none;
	background-color: transparent;
	cursor: pointer;
}

.app-menu i {
	color: var(--white);
	font-size: 34px;
}

#open-menu-button {
	display: none;
}

#open-menu-button.open {
	display: block;
}

#close-menu-button {
	display: none;
}

#close-menu-button.open {
	display: block;
}

/* ############### */
.header-holder {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 25px;
	max-width: 2200px;
	margin: 0 auto;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 100%;
}

header.sticky {
	transition: all 0.4s ease;
	position: fixed;
	top: 0;
	width: 100%;
	background: var(--fogdoGradient);
	background-blend-mode: multiply;
	background-color: rgba(0, 0, 0, var(--footerTextureOpacity));
	z-index: 998;
}

header.sticky .header-holder {
	opacity: 0;
	height: 75px;
	-moz-animation: fadeIn 0.4s ease-in forwards;
	-webkit-animation: fadeIn 0.4s ease-in forwards;
	-o-animation: fadeIn 0.4s ease-in forwards;
	animation: fadeIn 0.4s ease-in forwards;
}

header.sticky .social-link-wrapper i {
	font-size: 2.8rem;
	padding: 0.5rem;
}

header.sticky .mainmenu li>ul {
	top: 80px;
}

header.sticky .mainmenu li>ul>li>ul {
	top: 0;
}

header.sticky .mainmenu a {
	font-size: 1.6rem;
}

header.sticky .mainmenu a:hover {
	text-shadow: none !important;
}

header.sticky .mainmenu>li .desktop-arrow {
	bottom: 13px;
}

header.sticky img {
	top: -4px;
	opacity: 0;
	width: 100%;
	max-width: 8.5rem;
	-moz-animation: fadeIn 0.4s ease-in forwards;
	-webkit-animation: fadeIn 0.4s ease-in forwards;
	-o-animation: fadeIn 0.4s ease-in forwards;
	animation: fadeIn 0.4s ease-in forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 1;
	}
}

header img {
	width: 120px;
	padding: 2.5rem;
	z-index: 2;
	display: block;
}

header nav {
	flex: 1;
	height: 100%;
	display: flex;
	justify-content: center;
}

.mainmenu {
	position: relative;
	/* Needed for submenu positioning */
	overflow: visible;
	border-radius: 25px;
	height: fit-content;
	display: inline-flex;
	background-color: rgba(0, 0, 0, 0.4);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	align-items: center;
}

.mainmenu li {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	color: white;
	font-family: sans-serif;
	font-weight: bold;
	position: relative;
	z-index: 1;
	cursor: pointer;
	white-space: nowrap;
}

.mainmenu li::before {
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	transition: 0.2s;
	border-radius: 25px;
}

.mainmenu li:hover::before {
	background: var(--fogdoGradientLight);
}

.mainmenu li:hover a {
	color: white !important;
}

.mainmenu li {
	padding: 0 1.5rem;
}

.mainmenu li.sub {
	position: relative;

	/* bridge to prevent the submenu to close when hovering over the gap to the submenu  */
	&::after {
		content: "";
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: 15px;
		pointer-events: auto;
		/* background-color: red; */
	}
}

.mainmenu li.sub>ul {
	position: absolute;
	top: calc(100% + 15px);
	left: 0;
	transform: translateY(-10px);
	margin: 0 auto;
	width: 400px;
	transform: none;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	border-radius: 20px;
	opacity: 0;
	padding: 0;
	transition: opacity 0.3s ease, transform 1.2s ease;
	overflow: hidden;
	clip-path: inset(0 0 0 0 round 20px);
	pointer-events: none;
	z-index: 100;
}

.mainmenu li.sub li:hover::before {
	border-radius: 0;
	padding: 0;
}

.mainmenu li.sub ul li {
	border-bottom: 1px solid gray;
}

.mainmenu li {
	position: relative;
}

.mainmenu li>ul li {
	padding: 0;
}

.mainmenu li>ul {
	position: absolute;
	display: block;
	pointer-events: none;
	opacity: 0;
	clip-path: inset(0 0 100% 0);
	transition: transform 0.5s ease, opacity 0.3s ease, clip-path 1s ease;
	transform: translateY(-10px);
	background-color: rgb(83, 179, 108);
	padding: 0;
	list-style-type: none;
	margin: 0;
	top: 50px;
	z-index: 200;
	border-radius: 0 0 25px 25px;
	overflow: hidden;
	background: var(--fogdoGradientVeryLight);
	backdrop-filter: blur(10px);
	border-radius: 0 0 25px 25px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.mainmenu li.sub:hover>ul {
	position: absolute;
	top: calc(100% + 15px);
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
	transition: transform 0.3s ease;
}

/* Remove border-radius on smaller screens */
@media (max-width: 1350px) {

	.mainmenu,
	.mainmenu li,
	.mainmenu li::before,
	.mainmenu li>ul,
	.mainmenu li.sub>ul,
	.mainmenu a {
		border-radius: 0 !important;
		clip-path: none !important;
	}
}

header.sticky .mainmenu li>ul {
	background-color: var(--white);
}

.mainmenu li>ul li a {
	padding: 1rem;
	width: 100%;
	text-align: center;
	display: block;
	color: black;
}

.mainmenu li>ul>li>ul {
	display: none;
	right: calc(100% + -20px);
	top: 0;
	z-index: 300;
	right: 100%;
	background-color: var(--white);
	border-radius: 5px;
}

header.sticky .mainmenu li>ul>li>ul {
	background-color: var(--white);
}

.mainmenu a.showsub {
	display: none;
}

.mainmenu a {
	color: var(--darkGray);
	font-size: 1.775rem;
	display: flex;
	height: 100%;
	align-items: center;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	position: relative;
	padding: 0 1rem;
	color: white;
	font-weight: 400;
	text-transform: uppercase;
}

.mainmenu li.active,
.mainmenu li>ul li.active {
	background: var(--fogdoGradientLight);
	background-blend-mode: multiply;
	box-shadow: none;
	border-radius: 25px;
}

.mainmenu li>ul li.active {
	border-radius: 0;
}

.mainmenu li.active .desktop-arrow i,
.mainmenu li.active .showsub i {
	color: var(--white) !important;
}

.mainmenu>li>a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 1rem 2rem;
	/* Moved here */
	box-sizing: border-box;
}

.mainmenu li a.active {
	font-weight: normal;
}

header.sticky .mainenu li.active {
	background: var(--fogdoGradientLight);
	background-blend-mode: multiply;
	box-shadow: none;
	border-radius: 0;
}

.menu-container {
	height: 100%;
	display: flex;
	align-items: center;
}

header.sticky .menu-container {
	opacity: 0;
	-moz-animation: fadeIn 0.4s ease-in forwards;
	-webkit-animation: fadeIn 0.4s ease-in forwards;
	-o-animation: fadeIn 0.4s ease-in forwards;
	animation: fadeIn 0.4s ease-in forwards;
}

.mainmenu>li .desktop-arrow {
	width: 20px;
	height: 20px;
	bottom: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 400;
	color: var(--white);
}

.mainmenu .desktop-arrow i {
	font-size: 13px;
}

.mainmenu>li>ul>li>.desktop-arrow {
	transform: rotate(90deg);
	left: 0;
	top: 24px;
}

.glide-indicator {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: var(--fogdoGradientLight);
	border-radius: 25px;
	transition: all 0.3s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), width 0.4s ease;
	will-change: transform, width;
	z-index: 0;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
	pointer-events: none;
}

.glide-hide {
	opacity: 0 !important;
	transition: none !important;
}

.flex-wrapper {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

footer {
	width: 100%;
	background: var(--fogdoGradient);
	background-blend-mode: multiply;
	background-color: rgba(0, 0, 0, var(--footerTextureOpacity));
}

.footer-main {
	width: 100%;
	padding: 8rem 4rem;
	max-width: 1400px;
	margin: 0 auto;
}

.footer-33-wrapper {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}

.footer-33-wrapper .footer-33 {
	width: 31.33%;
	margin: 1%;
	width: calc(31.33% - 3rem);
	margin: 1.5rem 0;
	color: var(--white);
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.footer-33 .footer-contact-info {
	display: flex;
	flex-direction: column;
}

.footer-33 .footer-contact-info div {
	display: flex;
	flex-direction: column;
}

.footer-33 .footer-contact-info div:first-of-type {
	margin-bottom: 10px;
}

.footer-33 .footer-contact-info a,
.footer-33 .footer-contact-info p {
	padding: 0;
	margin: 0;
}

.footer-33-wrapper .footer-33 a {
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	font-weight: normal;
	color: white;
	padding: 0 1rem;
}

.footer-33-wrapper .footer-33 h3 {
	font-weight: normal;
}

.footer-33-wrapper .footer-33 h4,
.footer-33-wrapper .footer-33 p {
	padding: 0 1rem;
}

.footer-main .footer-33 a:hover {
	color: var(--white);
	transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-menu a:hover,
.footer-contact-info a:hover {
	transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 6px rgba(243, 243, 243, 0.82);
	padding: 0 1rem;
}

#footer-33-1 {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

#footer-33-1 #logo img {
	width: 100px;
}

#footer-33-2 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#footer-33-3 {
	flex-direction: column;
}

#footer-33-3 div {
	display: flex;
	flex-direction: column;
}

#footer-33-3 div a {
	padding: 0;
}

#footer-33-2 .partner-logo {
	max-width: 15rem;
	padding: 1rem;
}

.footer-logo {
	max-width: 200px;
	min-width: 200px;
}

.footer-logos {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: space-evenly;
}

.footer-logo img {
	width: 100%;
	height: auto;
}

.footer-main .footer-33 a.footer-social:hover {
	color: var(--fogdoVeryLightGreen);
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
}

.footer-main p,
.footer-main a {
	color: var(--white);
}

.footer-map {
	width: 100%;
	margin: 0 auto;
}

.footer-map iframe {
	width: 100%;
	height: 400px;
	border: none;
}

ul.footer-menu,
ul.footer-menu li {
	list-style-type: none;
}

ul.footer-menu li {
	padding: 0.1rem 0;
}

ul.footer-menu li:first-of-type {
	padding-top: 0;
}

ul.footer-menu {
	display: flex;
	flex-direction: column;
}

ul.footer-menu .mainmenu {
	display: flex;
	flex-direction: column;
}

ul.footer-menu .mainmenu a {
	padding: 0;
	margin: 10px 0px 10px 0;
	font-size: 16px;
}

ul.footer-menu .mainmenu-left a {
	margin-right: 70px;
}

ul.footer-menu .mainmenu a:hover {
	color: var(--white) !important;
}

ul.footer-menu li ul {
	padding-left: 5px;
}

ul.footer-menu li ul li {
	display: flex;
	display: none;
}

ul.footer-menu li ul li::before {
	content: "-";
	padding-right: 10px;
	color: var(--darkGray);
}

ul.footer-menu .sub ul ul {
	display: none;
}

ul.footer-menu .showsub {
	display: none;
}

#footer-logo img {
	max-width: 15rem;
	height: auto;
	margin: 0 auto;
}

.footer-social-wrapper {
	display: flex;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-social-wrapper a {
	color: var(--darkGray);
}

.social-link-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.social-link-wrapper i {
	font-size: 3.8rem;
	padding: 0.8rem;
	color: var(--fogdoGreen);
	border-radius: 2rem;
}

footer .social-link-wrapper i {
	color: var(--white);
	background-color: var(--fogdoGreen);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	margin: 0 -1rem;
}

.social-link-wrapper i:hover {
	filter: brightness(1.1) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.5));
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link-wrapper img {
	height: 40px;
	margin: 2px;
	transition: all 0.4s ease;
}

.social-link-wrapper img:hover {
	transform: scale(1.05);
}

.footer-social {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer-social i {
	font-size: 30px;
	margin-right: 0.75rem;
}

.footer-copy {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 10px 25px;
	background-color: var(--darkGray);
}

.footer-copy p,
.footer-copy a {
	color: var(--lightGray);
	font-size: 12px;
	padding-bottom: 0;
}

.footer-icons {
	text-align: center;
}

.footer-icons a,
.footer-icons div {
	color: var(--darkGray);
	font-size: 9px;
}

.footer-icons a {
	font-weight: bold;
}

.center {
	text-align: center;
}

.fat {
	font-weight: bold;
	padding-bottom: 2.5px;
}

.bold {
	font-weight: bold;
}

.tiny {
	font-size: 4px;
	line-height: 100%;
}

.loader {
	align-items: center;
	justify-content: center;
	display: none;
	padding-top: 25px;
}

.circle {
	background-color: var(--mediumGray);
	border-radius: 50%;
	width: 12px;
	height: 12px;
	margin: 4px;
	animation: bounce 0.5s ease-in infinite;
}

.circle:nth-of-type(2) {
	animation-delay: 0.1s;
}

.circle:nth-of-type(3) {
	animation-delay: 0.2s;
}

@keyframes bounce {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.loader-wrapper {
	width: 100%;
	display: none;
}

#message-confirm {
	display: flex;
}

.spinner {
	margin: 100px auto;
	width: 50px;
	height: 40px;
	text-align: center;
	font-size: 10px;
}

.spinner>div {
	background-color: var(--mediumGray);
	height: 100%;
	width: 6px;
	display: inline-block;
	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.spinner .rect3 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.spinner .rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.4);
	}

	20% {
		-webkit-transform: scaleY(1);
	}
}

@keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}

	20% {
		transform: scaleY(1);
		-webkit-transform: scaleY(1);
	}
}

.form-outer-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
}

.form-wrapper {
	max-width: 1000px;
	width: 100%;
	width: calc(100% - 3rem);
	margin: 10rem 1.5rem;
	display: flex;
	flex-flow: column-reverse;
	border-radius: 5px;
}

.contact-form {
	background-color: var(--white);
	color: var(--darkGray);
	display: flex;
	justify-content: center;
	flex-flow: column;
	padding: 5% 10%;
	width: 100%;
	border-radius: 0 0 5px 5px;
	text-align: center;
}

.contact-form-100 {
	width: 100%;
	border-radius: 0;
}

.contact-form h2 {
	padding-bottom: 10px;
}

.contact-info {
	color: var(--white);
	width: 100%;
	padding: 25px;
	min-height: 35rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	border-radius: 5px 5px 0 0;
	position: relative;
	background-color: var(--fogdoVeryLightGreen);
}

.contact-info-content {
	z-index: 1;
	text-align: center;
}

.contact-form label {
	display: block;
	margin: 5px 0;
	font-size: 14px;
	color: var(--darkGray);
	font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"] {
	background-color: var(--white);
	padding: 5px;
	display: block;
	border: none;
	min-width: 200px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--mediumGray);
	border-radius: 0 !important;
}

.contact-form textarea {
	background-color: var(--white);
	padding: 5px;
	display: block;
	border: none;
	min-width: 200px;
	min-height: 100px;
	margin-bottom: 20px;
	resize: vertical;
	border-bottom: 1px solid var(--mediumGray);
	outline: 0;
	border-radius: 0 !important;
}

textarea:focus,
input:focus,
button:focus {
	outline: none;
}

.contact-form #contact-form-title {
	padding-bottom: 25px;
	color: #4d4c50;
}

.contact-form #submit-button {
	display: block;
	border: none;
	background-color: var(--fogdoVeryLightGreen);
	color: var(--white);
	margin-top: 25px;
	cursor: pointer;
	padding: 10px 30px;
	border-radius: 3px;
	width: fit-content;
	width: -moz-fit-content;
	display: table;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	position: relative;
	transition: all 0.4s ease;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transform-origin: 0 100%;
	transform-origin: 0 100%;
	appearance: none;
	-webkit-appearance: none;
}

.contact-form #submit-button:disabled {
	background-color: var(--mediumGray);
	opacity: 0.7;
	color: var(--white);
	cursor: not-allowed;
}

.contact-form #submit-button:hover {
	background-color: var(--fogdoVeryLightGreen);
	color: var(--white);
	-webkit-animation-name: hvr-wobble-top;
	animation-name: hvr-wobble-top;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

.contact-form #submit-button:disabled:hover {
	background-color: var(--mediumGray);
	cursor: not-allowed;
	animation: none !important;
	-webkit-animation: none !important;
}

.contact-form #submit-button i {
	color: var(--white);
}

.contact-info .big-icon-wrapper .big-icon {
	font-size: 100px;
	color: var(--white);
}

.contact-info .big-icon-wrapper .big-icon i {
	animation: twiggle 5s 3s ease forwards infinite;
}

@keyframes twiggle {
	0% {
		transform: scale(1);
		transform: rotate(180deg);
	}

	10% {
		transform: scale(1.05);
	}

	50% {
		transform: scale(1.25);
	}

	90% {
		transform: rotate(180deg);
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

.error-message {
	font-size: 12px;
	color: var(--red);
	margin-bottom: 25px;
}

#message-box {
	height: 50px;
	width: 100%;
	overflow: hidden;
	position: fixed;
	bottom: 0;
	z-index: 1;
	opacity: 0;
	background-color: var(--fogdoVeryLightGreen);
	animation-name: popUp;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	animation-delay: 1.5s;
}

#message-box p {
	text-align: center;
	line-height: 50px;
	font-weight: bold;
	font-size: 120%;
	color: var(--white);
}

@keyframes popUp {
	0% {
		bottom: -50px;
		opacity: 1;
	}

	10% {
		bottom: -25px;
		opacity: 1;
	}

	20% {
		bottom: 0px;
		opacity: 1;
	}

	79% {
		bottom: 0px;
		opacity: 1;
	}

	90% {
		bottom: -25px;
		opacity: 1;
	}

	99% {
		bottom: -50px;
		opacity: 1;
	}

	100% {
		bottom: -50px;
		opacity: 0;
	}
}

/* News */

.box-50-news,
.box-50-news:visited {
	width: 50%;
	width: calc(50% - 3rem);
	margin: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	color: var(--darkGray);
	border-radius: 0.3rem;
}

.box-50-news:hover {
	background-color: var(--boneWhite);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.box-50-news:hover .box-date {
	transition: background 0.3s ease, filter 0.3s ease;
	filter: brightness(0.85);
}

.box-date {
	position: relative;
}

.box-date::before {
	content: "";
	display: block;
	position: absolute;
	left: 2rem;
	width: 32px;
	height: 32px;
	background: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="6" width="26" height="20" rx="3" fill="%23f3f3f3" stroke="%23333" stroke-width="2"/><rect x="7" y="10" width="18" height="2.5" rx="1.25" fill="%23333"/><rect x="7" y="14.5" width="12" height="2" rx="1" fill="%23ccc"/><rect x="7" y="18.5" width="10" height="2" rx="1" fill="%23ccc"/><rect x="20" y="14.5" width="5" height="6" rx="1" fill="%23004800"/></svg>') no-repeat center center;
	background-size: contain;
	pointer-events: none;
}

.box-50-news .box-date {
	background: var(--fogdoGradientVeryLight);
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-flow: column;
	padding: 1rem;
	color: var(--white);
	border-radius: 3px 3px 0 0;
}

.box-date-text-date {
	color: var(--white);
	font-weight: bold;
	font-size: 16px;
}

.box-date-text-year {
	color: var(--white);
	font-weight: bold;
	font-size: 10px;
}

.box-50-news .box-content {
	width: 100%;
	padding: 5rem;
	border-radius: 0 0 3px 3px;
}

.box-50-news .box-content h4 {
	color: var(--fogdoMediumGreen);
}

.box-50-news .box-content .box-content-date {
	font-size: 12px;
	padding-top: 10px;
	color: var(--jetBlack);
}

.news-link {
	color: var(--mediumGray);
	font-weight: bold;
}

.single-news-header {
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 70vh;
}

.single-news {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	background-color: var(--white);
	margin: 50px auto;
	padding: 25px 50px;
}

.single-news h1 {
	position: relative;
	padding-bottom: 10px;
}

.single-news img {
	margin: 15px 0;
}

#news-wrapper {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.latest-news-wrapper {
	padding-bottom: 4rem;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.latest-news-heading {
	width: 100%;
}

.latest-news-heading h2 {
	text-align: center;
	padding: 4rem;
}

.box-33-news {
	width: 33.33%;
	width: calc(33.33% - 4rem);
	margin: 2rem;
	border-radius: 2rem;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.box-33-news .box-image-container {
	border-radius: 2rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 100%;
	clip-path: polygon(-227% 0%, 100% 0%, 100% 87%, 13% 100%, 26% 98.1%);
}

.box-33-news .box-content h2 {
	color: var(--fogdoVeryLightGreen);

	/* padding-bottom: 0; */
}

.box-33-news .box-content .date {
	color: var(--darkGray);
	font-size: 14px;
}

.box-33-news .box-content {
	padding: 2rem 3rem 3rem 3rem;
	background-color: var(--white);
}

.box-33-news .item-action {
	margin-bottom: 0 !important;
}

#more-news-wrapper {
	width: 100%;
	padding: 0 1.5rem;
}

#more-news {
	margin: 50px auto;
	display: table;
}

.news-loader-wrapper {
	width: 100%;
	position: relative;
}

.news-loader {
	align-items: center;
	justify-content: center;
	display: none;
	padding-top: 25px;
}

/* SLideshows */

.box-slider-image {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	/* height: 75vh; */
	height: 60vh;
	min-height: 300px;
	width: 100%;
	position: relative;
}

.slider-text-holder {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	width: calc(100% - 30px);
	max-width: 1100px;
}

.slider-text-holder h1 {
	color: var(--white);
	font-size: 44px;
	padding-bottom: 15px;
}

.slider-text-holder p {
	color: var(--white);
	font-size: 22px;
	line-height: 175%;
}

.slider-text {
	padding: 20px 50px;
}

.wave-transition {
	position: absolute;
	bottom: 0em;
	left: 0;
	width: 100%;
	height: clamp(122px, 7%, 133px);
	z-index: 3;
	pointer-events: none;
	transform: scaleY(-1);
}

.wave-transition svg {
	display: block;
	width: 100%;
	height: 100%;

	/* background: #084b004f; */
}

.box-slider-image-block {
	position: relative;
	/* required so absolute wave stays inside */
	overflow: hidden;
	/* optional, depending on your layout */
	z-index: 1;
}

/** Gallery **/

.gallery-modal-layer {
	transform: translateZ(0);
	transform: translateX(-200%);
	transition: transform 0.5s cubic-bezier(0.07, 0.23, 0.34, 1);
	position: fixed;
	overflow: visible;
	overflow-y: scroll;
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-modal {
	background-color: var(--white);
	width: 80%;
	height: 80%;
	margin: auto;
	padding: 25px;
	position: relative;
	box-shadow: 0 7px 14px rgba(87, 87, 87, 0.12), 0 5px 5px rgba(88, 88, 88, 0.12);
}

.close-gallery-modal {
	position: absolute;
	top: -10px;
	right: -10px;
	cursor: pointer;
	padding: 15px;
	background-color: var(--fogdoVeryLightGreen);
}

.close-gallery-modal i {
	font-size: 25px;
	color: var(--white);
}

.gallery-modal-image {
	width: 100%;
	height: calc(100% - 100px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-modal-image img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.gallery-modal-inner {
	height: 100px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0;
}

.gallery-modal-inner .prev,
.gallery-modal-inner .next {
	cursor: pointer;
}

.gallery-modal-inner .prev i,
.gallery-modal-inner .next i {
	color: var(--mediumGray);
	font-size: 50px;
}

.gallery-modal-content {
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-flow: column;
	padding-top: 25px;
}

body.gallery-modal-open .gallery-modal-layer {
	transform: translateX(0);
	transform: translateY(0);
	position: fixed;
}

body.gallery-modal-open .gallery-modal {
	filter: drop-shadow(0 7px 14px rgba(87, 87, 87, 0.308));
}

.gallery-wrapper {
	padding: 50px 0;
	display: flex;
	flex-wrap: wrap;
}

.gallery-item {
	margin: 1.5rem;
	width: 100%;
	width: calc(20% - 3rem);
	cursor: pointer;
	background-color: var(--white);
	border-radius: 0.3rem;
	/* padding: 2.5rem; */
	/* padding: .5rem; */
}

.gallery-item img {
	max-width: 100%;
}

.box-100-thin {
	width: 100%;
	width: calc(100% - 3rem);
	max-width: 1100px;
	margin: 1.5rem;
	position: relative;
	/* border: 1px solid var(--fogdoVeryLightGreen); */
	display: flex;
	overflow: hidden;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	flex-direction: column;
}

.box-100-thin .box-content {
	display: flex;
	z-index: 100;
	width: 100%;
	padding: 1rem 1rem;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: var(--black);
	width: 100%;
	padding: 3rem;
	border-radius: 0 0 3px 3px;
}

.box-100-thin .border-top {
	padding: 2.5rem 0;
	width: 100%;
	background-color: var(--fogdoVeryLightGreen);
}

.box-100-thin .box-content>div>h4 {
	color: var(--fogdoVeryLightGreen) !important;
	width: 100%;
	display: flex;
	padding: 0 0 1rem 0;
	position: relative;
	top: 0;
	left: 0;
	margin: 0 !important;
	transition: all 0.5s ease;
}

.search-header {
	max-width: 1100px;
	width: 100%;
	margin: 0 1.5rem;
}

.form-answer {
	text-align: center;
}

.partner-outer-wrapper {
	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 4rem 4rem;
}

#partners {
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 4rem;
}

#partners li {
	padding: 0;
}

#partners .splide__slide img {
	width: 10rem;
}

#partners .splide__arrow {
	background: transparent;
}

/* modal for forms */

.error-message {
	font-size: 12px;
	color: var(--red);
	margin-bottom: 25px;
}

.error-message-initial-size {
	color: var(--red);
}

/* chbx-container */
.box-chbox-wrapper .chbx-container {
	display: flex;
	flex-direction: column;
}

.chbx-container .error-message {
	display: flex;
	flex-direction: column;
}

#modal-inner-content {
	position: relative;
	width: 100%;
}

.modal-layer {
	display: none;
	position: fixed;
	overflow-y: scroll;
	overflow-x: hidden;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.747);
	z-index: 999999;
}

.modal {
	max-width: 100%;
	width: auto;
	padding: 8rem 0rem;
	height: auto;
	min-height: 30rem;
	min-width: 80rem;
	background-color: var(--white);
	position: absolute;
	top: 43%;
	top: 50vh;
	left: 50%;
	transform: translate(-50%, -50%);
	transform: translate(-50%, -50vh);
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 7px 14px rgba(48, 48, 48, 0.1), 0 5px 5px rgba(90, 90, 90, 0.1);
	margin: 10rem 0;
}

.modal-close {
	position: absolute;
	top: 2.5rem;
	right: 2.5rem;
}

.modal-close i {
	color: var(--black);
	font-size: 3.6rem;
	cursor: pointer;

	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.modal-close i:hover {
	transform: scale(0.9);
}

.modal-success-message {
	padding: 1.5rem 3rem 1.5rem 3rem;
	min-height: 4rem;
	border-radius: 0;
	width: fit-content;
	border: 0.2rem solid var(--yellow);
	background-color: var(--yellow);
	color: var(--white);
}

.modal-success-message h2 {
	font-size: 2.2rem;
	color: var(--white) !important;
}

.modal-success-message p {
	font-size: 1.8rem;
	color: var(--white) !important;
}

/* end modal for forms */

/* modal specific styling modal-interest-buy-merch-img-wrapper */
.modal-interest-buy-merch-img-wrapper {
	width: 100%;
	display: flex;
	margin-bottom: 20px;
}

.modal-interest-buy-merch-img-wrapper img {
	max-width: 140px;
	height: auto;
}

/*  */

/* new for box-chbox-wrapper used in forms */
.box-chbox-wrapper {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.chbx-container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: fit-content;
	letter-spacing: 0.05rem;
}

.box-chbox-wrapper input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.box-chbox-wrapper .checkmark {
	position: absolute;
	top: 0;
	left: 0px;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 0.5rem;
}

.box-chbox-wrapper label:hover input:not(input:checked)~.checkmark {
	background-color: #ccc;
}

.box-chbox-wrapper input:checked~.checkmark {
	background-color: var(--fogdoVeryLightGreen);
}

.box-chbox-wrapper .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.box-chbox-wrapper input:checked~.checkmark:after {
	display: block;
}

.box-chbox-wrapper .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* ANIMATIONS */

/**********************************/

/* Only show ball-slider-animate on the index page */
body.body-start .ball-slider-animate {
	display: block;
}

/* ball-slider-animate */
.ball-slider-animate {
	z-index: 2;
	width: 60px;
	height: 60px;
	background-image: url(../images/golfball.png);
	background-position: center;
	background-size: contain;
	position: absolute;
	top: 0;
	left: -100px;
	transform: rotate(4000deg);
	animation: ballslider 3s linear, ballfadeout 5s linear 5s forwards;
	animation-fill-mode: forwards;
}

@keyframes ballslider {
	0% {
		left: 0%;
		top: 550px;
		transform: rotate(0deg);
	}

	20% {
		left: 30%;
		top: 70px;
		transform: rotate(600deg);
	}

	40% {
		left: 50%;
		top: 300px;
		transform: rotate(1200deg);
	}

	60% {
		left: 70%;
		top: 500px;
		transform: rotate(1800deg);
	}

	80% {
		left: 90%;
		top: 800px;
		transform: rotate(2400deg);
	}

	100% {
		left: 95%;
		top: 1000px;
		transform: rotate(3000deg);
	}
}

@keyframes ballfadeout {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

/* Responsive ball-slider-animate for smaller screens */
@media (max-width: 960px) {
	.ball-slider-animate {
		width: 40px;
		height: 40px;
	}

	@keyframes ballslider {
		0% {
			left: 0%;
			top: 250px;
			transform: rotate(0deg);
		}

		20% {
			left: 30%;
			top: 40px;
			transform: rotate(600deg);
		}

		40% {
			left: 50%;
			top: -100px;
			transform: rotate(1200deg);
		}

		60% {
			left: 70%;
			top: -300px;
			transform: rotate(1800deg);
		}

		80% {
			left: 90%;
			top: -600px;
			transform: rotate(2400deg);
		}

		100% {
			left: 95%;
			top: -900px;
			transform: rotate(3000deg);
			opacity: 0;
		}
	}
}

@media (max-width: 550px) {
	.ball-slider-animate {
		width: 30px;
		height: 30px;
	}

	@keyframes ballslider {
		0% {
			left: 0%;
			top: 120px;
			transform: rotate(0deg);
		}

		20% {
			left: 30%;
			top: 20px;
			transform: rotate(600deg);
		}

		40% {
			left: 50%;
			top: -150px;
			transform: rotate(1200deg);
		}

		60% {
			left: 60%;
			top: -350px;
			transform: rotate(1800deg);
		}

		80% {
			left: 70%;
			top: -500px;
			transform: rotate(2400deg);
		}

		100% {
			left: 75%;
			top: -700px;
			transform: rotate(3000deg);
			opacity: 0;
		}
	}
}


/* end ball-slider */


.menu-open .splide__pagination {
	display: none;
}

.gallery-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.gallery-header {
	padding-top: calc(120px);
	padding-bottom: 2rem;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-menu h4 {
	width: fit-content;
	font-weight: 900;
	border-bottom: 2px solid #353636;
	margin-bottom: 1rem;
}


/**********************************/

/* MEDIA QUERIES */

@media all and (max-width: 1750px) {
	.header-social-wrapper ul li a:before {
		display: none;
	}

	.header-social-wrapper ul li a:after {
		display: none;
	}

	.header-social-wrapper ul li {
		margin: 0 0.5rem;
	}

	.header-social-wrapper ul li a {
		padding: 0.1rem;
	}

	.social-link-wrapper i {
		font-size: 3.2rem;
	}

	header img {
		width: 100px;
	}
}

@media all and (max-width: 1600px) {
	header img {
		display: none;
	}

	.header-social-wrapper {
		display: none;
	}

	header {
		display: flex;
	}

	.header-holder {
		justify-content: center;
	}

	/* header:has(+ main > .section-slider) .header-holder {
		margin-top: 30px;
	} */
}

@media all and (max-width: 1350px) {

	/* Overlay for mobile menu */
	.mobile-menu-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 300px;
		width: calc(100vw - 300px);
		height: 100vh;
		background: rgba(20, 20, 20, 0.65);
		z-index: 997;
		transition: opacity 0.3s;
		opacity: 0;
		pointer-events: none;
	}

	.menu-open .mobile-menu-overlay {
		display: block;
		opacity: 0;
		pointer-events: none;
	}

	.menu-fully-open .mobile-menu-overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.header-content {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.mainmenu a:hover {
		color: var(--black) !important;
		transform: none;
	}

	.header-content #logo {
		padding-bottom: 0;
		/* margin-top: 2rem; */
		z-index: 999999;
	}

	header img {
		width: 100%;
		max-width: 5.7rem;
		padding: 1rem;
		display: flex;
		transition:
			max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
			padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
			right 0.4s cubic-bezier(0.4, 0, 0.2, 1),
			opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		opacity: 1;
	}

	.sticky header img {
		max-width: 8.5rem;
		padding: 1.2rem;
		right: 0;
		opacity: 0.85;
	}

	header.sticky img {
		top: 5px;
		right: 47%;
		max-width: 5rem;
	}

	.menu-open header img {
		top: 0;
		right: 194px;
		z-index: 999999;
	}

	.menu-open {
		overflow: hidden;
	}

	.app-menu {
		display: block;
		z-index: 6000;
		position: absolute;
		left: 1rem;
		top: 2rem;
	}

	.app-menu {
		left: 1rem;
		top: 1rem;
		background: var(--darkGray);
		border-radius: 50em;
		padding: 0.8rem;
	}

	header nav {
		margin-right: 0;
	}

	.search-wrapper {
		padding: 0 40px;
	}

	.mainmenu.open {
		top: 0;
		left: 0;
		padding-top: 80px;
		border-radius: 0;
	}

	.mainmenu>li {
		font-size: 20px;
		margin: 20px 0 !important;
		margin: 0 !important;
		padding: 0;
		z-index: 0 !important;
	}

	.mainmenu li>ul {
		background-color: var(--white);
	}

	.mainmenu li>ul>li>ul {
		background-color: var(--white);
	}

	.mainmenu>li>ul>li {
		font-size: 16px;
	}

	.mainmenu>li>ul>li a {
		font-size: 1.5rem !important;
		font-weight: normal !important;
		padding: 1rem 2.5rem;
	}

	.mainmenu>li>ul>li>ul>li {
		font-size: 15px;
	}

	.mainmenu>li>ul>li>ul>li a {
		font-weight: normal;
		margin-bottom: 10px;
		margin-top: -10px;
		margin-left: 5px;
	}

	.mainmenu {
		display: block;
		position: fixed;
		top: 0px;
		left: -300px;
		width: 300px;
		max-width: 300px;
		height: 100%;
		background-color: var(--darkGray);
		z-index: 998;
		overflow: scroll;
		padding-bottom: 200px;
		transition: all 0.4s ease;
		padding-top: 80px;
	}

	.mainmenu a {
		padding: 1.5rem 2rem 1.5rem 5.5rem;
		font-size: 2rem !important;
		text-shadow: none !important;
	}

	.mainmenu li>ul li a {
		text-align: left;
	}

	.mainmenu li {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.mainmenu>li .desktop-arrow {
		display: none;
	}

	.mainmenu a:after {
		display: none;
	}

	.mainmenu li a.active:after {
		display: none;
	}

	.mainmenu a.showsub {
		position: absolute;
		bottom: 0;
		width: 40px;
		height: 40px;
		right: 10px;
		top: 6px;
		display: flex;
		justify-content: center;
		z-index: 99999999999999;
	}

	.showsub:hover {
		text-decoration: none;
	}

	.mainmenu>li>ul>li>a.showsub {
		right: 10px;
		top: 4px;
	}

	.mainmenu a.showsub i {
		color: var(--mediumGray);
		font-size: 16px;
	}

	.mainmenu li.sub a.showsub i {
		color: var(--fogdoVeryLightGreen);
		font-size: 16px;
	}

	.mainmenu a.showsub i.hide {
		display: none;
	}

	.mainmenu li>ul {
		background-color: var(--black);
	}

	.mainmenu li>ul>li>ul {
		background-color: var(--black);
	}

	.mainmenu li.sub>ul::before {
		display: none;
	}

	.mainmenu li.active {
		border-radius: 0;
	}

	.mainmenu li.sub>ul {
		display: none;
		/* Hidden by default on mobile */
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		/* background-color: var(--white); */
		z-index: 9999;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	}

	.mainmenu li.sub.open>ul {
		display: block;
		/* Show when .open is toggled */
	}

	.mainmenu li.sub:hover>ul {
		position: relative;
	}

	.open .active {
		display: flex;
		flex-direction: column;
	}

	.slider-text {
		padding: 20px;
	}

	.gallery-item {
		width: calc(25% - 3rem);
	}

	.box-33-news {
		width: calc(33.33% - 3rem);
		margin: 1.5rem;
	}

	.search-wrapper div a i {
		font-size: 22px;
	}

	#search-box {
		top: 10rem;
		left: 50%;
		transform: translate(-50%, 0);
		max-width: 80vw;
	}

	.glide-indicator {
		display: none;
	}
}

@media all and (max-width: 960px) {

	/* header img {
    width: 90px;
    padding: 19px 0;
  } */
	.single-news-header {
		min-height: 500px;
	}

	.footer-triangle {
		clip-path: polygon(50% 65%, 0% 100%, 100% 100%);
		-webkit-clip-path: polygon(50% 65%, 0% 100%, 100% 100%);
	}

	.footer-main .icons-wrapper i {
		font-size: 24px;
		padding: 12px;
	}

	.footer-top:after {
		background-color: transparent;
	}

	.gallery-item {
		width: calc(33.33% - 3rem);
	}

	.single-news {
		padding: 25px 20px;
	}

	.box-50-news .box-content {
		padding: 3.5rem;
	}

	.form-wrapper {
		margin: 2rem 1.5rem;
	}

	.footer-logo {
		width: 100%;
		max-width: 200px;
		min-width: 200px;
		padding: 30px;
	}

	.footer-logos {
		flex-wrap: wrap;
	}

	ul.footer-menu .mainmenu-left a {
		margin-right: 30px;
	}

	.modal {
		min-width: 85vw;
	}
}

@media all and (max-width: 768px) {

	h1,
	section.section-header>div .section-text-wrapper h1,
	section.section-header>div .section-text-wrapper h1>span {
		font-size: 24px;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 18px;
	}

	h4 {
		font-size: 20px;
	}

	p,
	a,
	label,
	li {
		font-size: 14px;
	}

	.slider-text-holder h1 {
		font-size: 24px;
	}

	.slider-text-holder p {
		font-size: 16px;
		line-height: 150%;
	}

	.box-slider-image {
		height: 50vh;
	}

	.gallery-wrapper {
		columns: 2;
	}

	.single-news-header {
		min-height: 400px;
	}

	.form-wrapper {
		flex-flow: column-reverse;
		width: 100%;
		margin: 0;
	}

	.contact-form {
		width: 100%;
		border-radius: 0;
		padding: 50px;
	}

	.contact-info {
		width: 100%;
		border-radius: 0;
		padding: 25px;
		background-attachment: unset !important;
	}

	.contact-info .big-icon-wrapper {
		padding: 25px;
	}

	.contact-info .big-icon-wrapper .big-icon {
		font-size: 50px;
		color: var(--white);
	}

	.contact-info .big-icon-wrapper .big-icon i {
		font-size: 50px;
		color: var(--white);
	}

	.gallery-item {
		width: calc(50% - 3rem);
	}

	.box-50-news {
		flex-flow: column;
		width: calc(100% - 4rem);
		margin: 1.5rem 2rem;
	}

	.box-50-news .box-date {
		width: 100%;
		padding: 25px 0;
	}

	.box-33-news {
		width: calc(100% - 4rem);
		margin: 1.5rem 2rem;
	}

	.contact-info .big-icon-wrapper .big-icon {
		font-size: 50px;
		color: var(--white);
	}

	.contact-form {
		padding: 00px 20px;
		border-radius: 0;
	}

	.form-wrapper,
	.contact-info,
	.contact-info::after {
		border-radius: 0;
	}

	.footer-main .footer-33 {
		width: 100%;
		width: calc(50% - 3rem);
		margin: 0;
	}

	.footer-main {
		padding: 5rem 2rem;
	}

	.footer-33-wrapper .footer-33 {
		padding: 1.5rem 0;
	}

	#footer-33-2 {
		border: none;
	}

	#footer-33-2 .partner-logo {
		max-width: 10rem;
		padding: 1rem;
	}

	.footer-33 .footer-contact-info {
		text-align: center;
	}

	#footer-33-3 {
		justify-content: center;
		display: flex;
	}

	#footer-33-3 .footer-social {
		display: flex;
		justify-content: center;
	}

	.footer-social-wrapper {
		align-items: center;
	}

	.footer-33-wrapper {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.mainmenu a {
		padding: 1.5rem 2rem 1.5rem 2.5rem;
	}

	.menu-open .app-menu {
		background: unset;
	}

	.sticky .app-menu {
		background: unset;
	}

	.search-wrapper {
		padding: 0 25px;
	}

	#search-box {
		top: 8rem;
		max-width: 100vw;
	}

	.header-holder {
		padding: 0 20px;
	}

	#footer-33-1 #logo img {
		width: 10rem;
	}

	header.sticky .header-content #logo {
		margin-top: 0rem;
	}

	ul.footer-menu {
		align-items: center;
	}
}

@media all and (max-width: 550px) {

	p,
	a,
	label,
	li {
		font-size: 16px;
	}

	.gallery-wrapper {
		columns: 1;
	}

	.gallery-item {
		width: 100%;
		margin: 1rem 0;
		padding: 0 2rem;
	}

	.single-news-header {
		min-height: 350px;
	}

	.footer-main {
		padding: 50px 0;
	}

	.footer-copy p,
	.footer-copy a {
		font-size: 8px;
	}

	.footer-main .icons-wrapper i {
		font-size: 20px;
		padding: 10px;
	}

	.footer-main .footer-33 {
		width: 100%;
		margin: 0;
		padding: 20px;
	}

	.gallery-modal-inner {
		padding: 10px;
	}

	.gallery-modal-inner .next i,
	.gallery-modal-inner .prev i {
		font-size: 20px;
	}

	.gallery-modal {
		padding: 25px;
	}

	.close-gallery-modal {
		padding: 10px;
	}

	.close-gallery-modal i {
		font-size: 20px;
	}

	.avaliable-times-wrapper {
		height: 50rem;
	}

	.footer-social-wrapper {
		padding: 3rem 0 0 0;
		gap: 1rem;
	}

	.wave-transition {
		height: clamp(7px, 7%, 133px);
	}

	.latest-news-heading h2 {
		padding: 2rem;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		text-align: center;
	}

	header.sticky img {
		max-width: 6rem;
	}

	.menu-open header img {
		margin-right: 75px;
	}
}
