@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
	--font-main: 'Playfair Display', 'Open Sans', 'Roboto', 'Helvetica', 'Arial', sans-serif;
	--green: #427c53;
	--teal: #207482;
	--grey: #605f5e;
	--white: #ffffff;
	--bg-light: #f8f8f8;
	--light: #cccccc;
	--boxshadow: 0 0 20px rgba(0, 0, 0, 0.1);
	--borderradius: 10px;
}
* {
	outline: 0 !important;
	-webkit-box-sizing: border-box !important;
	box-sizing: border-box !important;
	margin: 0;
	padding: 0;
	font-weight: 400;
}
html,
body {
	font-family: var(--font-main) !important;
	-webkit-tap-highlight-color: transparent !important;
}
html {
	background: var(--white) !important;
	font-size: 16px !important;
}
body {
	width: 100% !important;
	min-height: 100vh !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
	color: var(--grey) !important;
	word-break: break-word;
	line-height: 1.5 !important;
	font-size: 1rem !important;
}
::-moz-selection {
	background: #000000 !important;
	color: #ffffff !important;
}
::selection {
	background: #000000 !important;
	color: #ffffff !important;
}
::-webkit-input-placeholder {
	color: var(--grey) !important;
	opacity: 1 !important;
}
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-thumb {
	background: var(--green);
	border-radius: 100px;
}
::-webkit-scrollbar-track {
	background: transparent;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--grey);
	font-weight: 700;
	margin: 0 auto;
	margin-bottom: 20px !important;
	line-height: 1.4 !important;
}
.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small {
	font-weight: 400;
	font-size: 0.8rem;
}
.h1,
h1 {
	font-size: 1.9rem;
}
.h2,
h2 {
	font-size: 1.7rem;
}
.h3,
h3 {
	font-size: 1.5rem;
}
.h4,
h4 {
	font-size: 1.3rem;
}
.h5,
h5 {
	font-size: 1.1rem;
}
.h6,
h6 {
	font-size: 1rem;
}
b,
strong {
	font-weight: 700 !important;
}
small,
.small {
	font-size: 0.8rem !important;
}
img {
	width: 100%;
	vertical-align: middle;
}
.title {
	text-align: center;
	color: var(--green);
}
h2.title {
	margin-bottom: 1.5rem;
	position: relative;
	display: block;
	text-align: center;
}
h2.title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--teal);
	margin: 0.6rem auto 0;
	border-radius: 5px;
}
a {
	text-decoration: none;
	color: var(--grey);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	display: none !important;
	appearance: none;
	-webkit-appearance: none;
	margin: 0;
}
input[type='number'] {
	-webkit-appearance: textfield;
	appearance: textfield;
	-moz-appearance: textfield;
}
.btn,
input,
textarea,
a,
button {
	cursor: pointer;
	outline: 0 !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border: 0 !important;
}
.btn,
input,
button {
	height: 50px !important;
	line-height: 50px !important;
	padding: 0 10px !important;
	border-radius: var(--borderradius) !important;
}
.btn {
	background: var(--green) !important;
	color: var(--white) !important;
}
input {
	border: 1px solid var(--light) !important;
}
input:focus {
	border: 1px solid var(--green) !important;
}
section {
	padding: 80px 0;
}
.sidemenubutton {
	display: none;
	position: relative;
	color: var(--green) !important;
	font-size: 2rem;
	height: 80px;
	width: 50px;
	line-height: 80px;
	text-align: center;
	cursor: pointer;
}
.loader_parent {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 9999;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.loader_parent img {
	max-width: 200px;
}
.loader {
	width: 40px;
	height: 40px;
	border: 3px solid var(--green);
	border-top-color: transparent;
	border-radius: 50%;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
	margin: 0 auto;
	margin-top: 40px;
}
@-webkit-keyframes spin {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spin {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.header {
	padding: 0 20px !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100% !important;
	height: auto;
	overflow: hidden;
	-webkit-box-shadow: var(--boxshadow) !important;
	box-shadow: var(--boxshadow) !important;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	background: var(--white);
}
.header .logo {
	width: auto !important;
	max-width: 100% !important;
	height: 80px !important;
	display: block;
	position: relative;
	padding: 10px;
}
.header > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
#main-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	margin: 0;
}
#main-menu a {
	color: var(--grey);
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.15);
	padding: 10px;
	-webkit-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
	display: block;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	margin: 0 auto;
	text-align: center;
	min-width: 100px;
}
#main-menu a.btn {
	padding: 0 10px;
}
#main-menu a.active {
	font-weight: 700;
	color: var(--green);
}
.home {
	height: 100vh;
	background: url('../img/home.jpg') center/cover no-repeat;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	position: relative;
	color: var(--white);
}
.home::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}
.home-container {
	position: relative;
	z-index: 2;
}
.home h1 {
	color: var(--green);
	font-size: 4rem;
	font-weight: 700;
}
.home h3 {
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: 2px;
	color: var(--white);
}
.gallery {
	border-top: 1px solid var(--green);
}
.booking {
	background: var(--bg-light);
}
.gallery .swiper-container {
	width: 100%;
	padding: 0;
	position: relative;
	border-radius: var(--borderradius);
	overflow: hidden;
	z-index: 0;
}
.gallery img {
	width: 100%;
	height: 400px;
	-o-object-fit: contain;
	object-fit: contain;
}
.gallery .swiper-wrapper,
.gallery .swiper-slide {
	border-radius: 0 !important;
}
.swiper-pagination-bullet {
	opacity: 0.3;
	background: var(--grey);
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--green);
}
.toast-message {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background: var(--white);
	color: var(--grey);
	padding: 20px 40px;
	border-radius: var(--borderradius);
	z-index: 9999;
	-webkit-box-shadow: var(--boxshadow);
	box-shadow: var(--boxshadow);
	width: calc(100% - 20px);
}
form {
	text-align: left;
}
form label,
form input {
	color: var(--grey) !important;
}
.recapverdiv {
	color: var(--grey);
}
.recapver {
	position: relative;
	letter-spacing: 3px;
	color: var(--green);
}
.recapver:nth-child(2) {
	left: 15px;
}
.recapver:nth-child(3) {
	left: 15px;
}
.recapver:nth-child(4) {
	left: -24px;
}
.card {
	max-width: 480px;
	margin: 0 auto !important;
	-webkit-box-shadow: var(--boxshadow);
	box-shadow: var(--boxshadow);
	padding: 30px;
	border-radius: var(--borderradius);
	border: 0 !important;
	background: var(--white);
}
.contact .card > * {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 5px;
	margin-bottom: 20px;
}
.contact .card > *:last-child {
	margin-bottom: 0;
}
.contact .card > * > *:first-child {
	color: var(--green);
	text-align: center;
	width: 30px;
}
.contact .card > * > *:last-child {
	width: calc(100% - 30px);
}
.fixedbuttons {
	position: fixed;
	bottom: 80px;
	right: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
	z-index: 999;
}
.fixedbuttons a {
	background: var(--green);
	color: var(--white);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.2rem;
	-webkit-box-shadow: var(--boxshadow) !important;
	box-shadow: var(--boxshadow) !important;
	border: 2px solid var(--white) !important;
}
.footer {
	text-align: center;
	padding: 40px 20px;
	background: var(--green);
	color: var(--white);
}
.footer .logo {
	max-width: 200px;
	margin-bottom: 20px;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
.footer a {
	color: var(--white);
	text-decoration: underline;
}
/* mobile */
@media (max-width: 768px) {
	#main-menu {
		position: relative;
		display: none;
		width: 100%;
		text-align: center;
		height: auto;
		padding: 20px;
	}
	#main-menu a {
		margin: 0 auto;
		margin-bottom: 10px;
	}
	.sidemenubutton {
		display: block;
	}
}
