@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: local('Poppins Regular'), local('Poppins-Regular'), url(Poppins/Poppins-Regular.ttf);
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	src: local('Poppins Medium'), local('Poppins-Medium'), url(Poppins/Poppins-Medium.ttf);
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	src: local('Poppins Bold'), local('Poppins-Bold'), url(Poppins/Poppins-Bold.ttf);
}

html {
	font-size: 14px;
}

body {
	margin: 0;
	padding: 0;
	text-align: left;
	--body-width: 100vw;
	color: #535353;
}

body, td {
	font: 1rem/1.5em "Poppins", sans-serif;
}
p {
	margin: 0 0 0.66em 0;
	line-height: 1.75em;
}
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.66em 0; line-height: 1.25em; }
h1 { font-size: 36px; line-height: 40px; font-weight: 500; }
h2 { font-size: 30px; line-height: 40px; font-weight: 500; }
h3 { font-size: 22px; line-height: 30px; font-weight: 700; color: #403023; }
h4 { font-size: 18px; line-height: 26px; font-weight: 400; }
h5 { font-size: 14px; line-height: 18px; font-weight: bold; color: #333; }
.tall-lines { line-height: 1.6em; }
.smaller p { font-size: 12px; }
.smaller h3 { font-size: 18px; line-height: 1.4em; }
.smaller h4 { font-size: 14px; line-height: 1.4em; }
.bigger p, p.bigger { font-size: 15px; margin: 0 0 1.1em 0; }

td {
	vertical-align: top;
}

a {
	color: #535353;
	text-decoration: none;
}
button {
	cursor: pointer;
}
article a:hover {
	color: #8bc53f;
}

.l { text-align: left; }
.c { text-align: center; }
.r { text-align: right; }

.green { color: #8dc63f; }
.brown { color: #535353; }
.dark-brown { color: #403023; }
.light-brown { color: #786b5d; }
.gray { color: #aaaaaa; }

.mobile-only { visibility: hidden; }

.message {
	background: #eee;
	color: #000;
	border: solid 1px #ccc;
	border-radius: 3px;
	padding: 5px 10px;
	width: 90%;
	margin: 2px auto;
	font-weight: bold;
	text-align: center;
}

.message.alert {
	border-color: #C70022;
} 
.message.alert.error {
	border-color: #C70022;
	background-color: #ffe4e9;
}
.message.alert.green {
	border-color: #0c0;
	background-color: #cec;
}

.fw500 { font-weight: 500; }

.h-250 { height: 250px; }
.h-300 { height: 300px; }
.h-350 { height: 350px; }
.h-400 { height: 400px; }
.h-500 { height: 500px; }
.h-600 { height: 600px; }
.h-700 { height: 700px; }

.wrapper {
	position: relative;
}
.content {
	box-sizing: border-box;
	position: relative;
	width: 1140px;
	max-width: 98vw;
	margin: 0 auto;
	padding: 50px 70px 30px 70px;
}
.content.no-padding {
	padding: 0;
}
.margin-top, .content.margin-top {
	margin-top: 50px;
}
.content.narrow {
	width: 730px;
	padding: 0;
}
.content.wide {
	width: 1325px;
	padding: 0;
}
.overlap-top {
	margin-top: -48px;
}
.inner-content { width: 67%; margin: 0 auto; }

.bg-white {
	background-color: #fff;
}
.bg-silver {
	background-color: #f5f5f5;
}
.flex-container {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex-container > .flex-item {
	box-sizing: border-box;
	flex: auto;
}
.v-centered {
	align-self: center;
}
.cols-2 > .flex-item {
	max-width: 48%;
	min-width: 300px;
}
.cols-3 > .flex-item {
	max-width: 32%;
	min-width: 300px;
}
.cols-4 > .flex-item {
	max-width: 22%;
	min-width: 300px;
}
.cols-5 > .flex-item {
	max-width: 19%;
	min-width: 300px;
}
.cols-6 > .flex-item {
	max-width: 14%;
	min-width: 150px;
}
.cols-2-66-33 > .flex-item:nth-child(1) {
	max-width: 64%;
	min-width: 200px;
}
.cols-2-66-33 > .flex-item:nth-child(2) {
	max-width: 31%;
	min-width: 150px;
}

.image-box-h {
	height: 200px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 25px;
}
.image-box-h > img {
	max-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

.small-image-boxes > .flex-item {
	box-sizing: border-box;
	margin: 16px 1%;
}
.small-image-boxes .square {
	width: 100%;
	height: 175px;
	display: flex;
	border-radius: 8px;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}
.small-image-boxes img {
	width: auto;
	height: 110%;
}
.small-image-boxes img.use-width {
	width: 100%;
	height: auto;
}
textarea, select, button, input[type=text] {
	box-sizing: border-box;
}

.hr {
	position: relative;
	margin: 8px auto;
	width: 120px;
	text-align: center;
}
.hr::before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: calc(50% - 1.5em);
	height: 1px;
	background: #e0e0e0;
}
.hr::after {
	display: block;
	content: ' ';
	position: absolute;
	top: 50%;
	left: calc(50% + 1.5em);
	width: calc(50% - 1.5em);
	height: 1px;
	background: #e0e0e0;
}
.hr > i,
.hr > em {
	font-size: 14px;
	color: #e0e0e0;
}
.hr > i::before,
.hr > em::before {
	transform: rotateY(180deg);
}
i.h-flip::before,
em.h-flip::before {
	transform: rotateY(180deg);
}
.hr > i.green,
.hr > em.green {
	color: #8dc63f;
}
.hr.wide {
	width: 100%;
}
.hr.wide::before,
.hr.wide::after {
	height: 2px;
}

/* 
[class^="icon-"]:before, [class*=" icon-"]:before {

}
 */

.to-top {
	display: block;
	position: fixed;
	right: 10px;
	bottom: 100px;
	width: 50px;
	height: 50px;
	color: #fff;
	font-size: 0.8rem;
	text-align: center;
	background: #787878;
	border-radius: 4px;
	opacity: 0.66;
	transition: all .2s ease-out;
}
.to-top:hover {
	background: #404040;
	opacity: 1;
}
.to-top a {
	color: #fff;
	display: inline-block;
	width: 100%;
}
.button {
	display: inline-block;
	padding: 2px 4px;
	border: solid 1px #ccc;
	border-radius: 4px;
}
.button:hover {
	background-color: #eee;
}

.btn-fullwidth {
	display: block;
	padding: 1em;
	margin: 1em 0;
	text-align: center;
}
.btn-fullwhite {
	background: #fff;
	color: #000;
	font-size: 0.875rem;
	font-weight: bold;
	text-transform: uppercase;
}

.tip {
	z-index: 2000;
	padding: 2px 5px;
	background-color: hsla(60, 1%, 96%, 0.90);
	border-radius: 3px;
	border: solid 1px hsla(60, 1%, 10%, 0.90);
}

.tip-text {
	font-size: 0.9rem;
}

.tip-title {
	font-size: 0.9rem;
}

.slideshow-container { position: relative; }
.slideshow-slides { position: relative; width: 100%; height: 100%; min-height: 200px; }
.slide { position: absolute; width: 100%; height: 100%; max-width: 100vw; max-height: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.slide img { object-fit: cover; width:100%; height:100%; }
.content .slide img { object-fit: cover; width:100%; height:100%; }
.slideshow-container .image-overlay {
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	max-width: 100vw;
	max-height: 100%;
	background: rgba(0,0,0,0.2);
}
.slideshow-container .slideshow-nav { display: grid; position: absolute; left: 0; top: 0; width: 100%; height: 100%; align-items: center; color: #fff; font-size: 50px; }
.slideshow-previous { cursor: pointer; position: absolute; left: 5px; }
.slideshow-next { cursor: pointer; position: absolute; right: 5px; }
.slideshow-nav > * { opacity: 0.5; }
.slideshow-nav > *:hover { opacity: 1; }
.slideshow-container .text-overlay {
	display: block; position: absolute; top: 0; width: 100%; height: 100%; max-width: 100vw; max-height: 100%;
}

.slideshow-slides.large { min-height: 750px; }
/* 
.text-overlay * { color: #fff; }
 */
.menu-spacer {
	width: 100%;
	min-height: 180px;
	height: 35%;
}


.header-slideshow .text-overlay h1 {
	font-size: 72px;
	color: #fff;
	line-height: 1.25em;
	font-weight: 500;
	letter-spacing: 15px;
}
.header-slideshow .text-overlay h2 {
	font-size: 24px;
	color: #fff;
	line-height: 1.25em;
	font-weight: normal;
	margin-top: 0.75em;
}

.header-slides {
	height: 947px;
	max-height: 86vh;
}

.menu-toggler {
	position: absolute;
	top: 2px;
	right: 2px;
	color: rgba(255,255,255,0.33);
	background-color: rgba(0,0,0,0.166);
	font-size: 36px;
}

.main-menu-wrapper {
	position: absolute;
	top: 24px;
	width: 100vw;
	display: grid;
	grid-gap: 0;
	grid-template-columns: 1fr auto 1fr;
}

ul.main-menu {
	margin: 0;
	padding: 0;
	background: none;
	list-style: none;
	text-align: center;
}

.main-menu-wrapper ul.main-menu:nth-child(1) {
	text-align: right;
}

.main-menu-wrapper ul.main-menu:nth-child(3) {
	text-align: left;
}

ul.main-menu:after {
	content: "";
	clear: both;
	display: block;
}

ul.main-menu li {
	position: relative;
	margin: 0;
	padding: 0;
	display: inline-block;
	font-size: 1.125rem;
	line-height: 2em;
	color: #fff;
	vertical-align: top;
}

ul.main-menu li.menu-newline {
	display: block;
}

ul.main-menu li.menu-item {
	margin-top: 40px;
}

ul.main-menu li a {
	position: relative;
	margin: 0 1em;
	padding: 0;
	display: inline-block;
	height: 100%;
	background: none;
	color: #fff;
	transition: all 0.33s ease-out;
}
ul.main-menu li a.selected {
	border-bottom: solid 2px #fff;
}
ul.main-menu li.logo-menu-wrapper a.selected {
	border-bottom: none;
}
.menu-item.off {
	background-color: #ccc;
}

/* #MARK Sub-Menu */

ul.main-menu li ul {
	position: absolute;
	padding: 0 5px;
	right: 0;
	top: 100%;
	min-width: 11em;
	max-height: 0;
	text-align: right;
	overflow: hidden;
	transition: all 0.33s ease-out;
}

ul.main-menu li:hover ul {
	max-height: 400px;
	background: rgba(255,255,255,0.95);
	box-shadow: 1px 1px 5px rgba(0,0,0,0.25);
	outline: solid 1px #ccc;
}
ul.main-menu li li {
	width: 100%;
	height: auto;
}
ul.main-menu li li a {
	width: 96%;
	margin: 0;
	padding: 0 2%;
	color: #757575;
}
ul.main-menu li li.menu-item {
	margin-top: 0;
}


/* #MARK Inline Menu */

ul.inline-menu {
	display: inline-block;
	margin: 0 1em;
	padding: 0;
	background: none;
	list-style: none;
	text-align: center;
}
ul.inline-menu li {
	z-index: 1000;
	position: relative;
	margin: 0;
	padding: 0;
	display: inline-block;
	font-size: inherit;
	line-height: 1.5em;
	vertical-align: top;
}
ul.inline-menu li ul {
	position: absolute;
	padding: 0 5px;
	right: 0;
	top: 100%;
	min-width: 9em;
	max-height: 0;
	text-align: right;
	overflow: hidden;
	transition: all 0.33s ease-out;
}
ul.inline-menu li:hover ul {
	max-height: 400px;
	background: rgba(255,255,255,0.95);
	box-shadow: 1px 1px 5px rgba(0,0,0,0.25);
	outline: solid 1px #ccc;
}
ul.inline-menu li li {
	width: 100%;
	height: auto;
}


/* Footer Menu */

ul.footer-menu {
	margin: 40px auto;
	padding: 0;
	background: none;
	list-style: none;
	text-align: center;
}

ul.footer-menu:after {
	content: "";
	clear: both;
	display: block;
}

ul.footer-menu li {
	position: relative;
	margin: 0;
	padding: 0;
	display: inline-block;
	font-size: 14px;
	line-height: 1.5em;
	color: #000;
	vertical-align: top;
}

ul.footer-menu li.menu-newline {
	display: block;
}

ul.footer-menu li a {
	position: relative;
	padding: 0 1em;
	display: inline-block;
	height: 100%;
	background: none;
	color: #000;
	transition: all 0.33s ease-out;
}
ul.footer-menu li a:hover {
	color: #8dc63f;
}
ul.footer-menu li a.selected {
	font-weight: bold;
}
.more-info {
	font-size: 1.065rem;
	font-weight: bold;
	color: #000;
	line-height: 1.5em;
}
.box-shadow-light {
	box-shadow: rgba(0, 0, 0, 0.06) 0px 15px 75px 0px;
}
.box-shadow {
	box-shadow: 0 14px 28px rgba(0,0,0,0.25),0 10px 10px rgba(0,0,0,0.22);
	transition: all 0.33s ease-out;
}
.box-shadow:hover {
	box-shadow: 0 40px 120px -20px rgba(0,0,0,0.6);
}

/* #MARK Page specific */

.accommodation .flex-container {
	justify-content: space-between;
	column-gap: 2%;
}
.accommodation .description {
	width: 32%;
}
.accommodation .images {
	position: relative;
	width: 66%;
	background: #f7f7f7;
}
.accommodation .slideshow-container {
	width: 80%;
	height: 300px;
	margin: 40px auto;
}
.accommodation .images a.book-now {
	position: absolute;
	bottom: -1.5em;
	right: -1em;
	padding: 1em;
	background: rgba(255,255,255,0.8);
	color: #786b5d;
	border: solid 2px #786b5d;
	font-size: 1.75rem;
	border-radius: 4px;
}
.accommodation .images a.book-now:hover {
	background: #3ac3c4;
	color: #fff;
	border-color: #fff;
}
.accommodation .images a.book-now.left {
	right: unset;
	left: -1em;
}

.accommodation table {
	border-spacing: 0;
}
.accommodation td {
	padding: 0 30px 30px 0;
}

.contact-us h4 {
	margin-bottom: 0.75em;
}
.contact-us {
	padding-top: 70px;
	padding-bottom: 70px;
}

.social-icons a {
	color: #000;
	font-size: 16px;
	margin: 0 1.5em;
}

.medium-icons .icon {
	font-size: 30px;
}
.big-icons .icon {
	font-size: 72px;
}
.icons-table td {
	font-size: 15px;
	line-height: 40px;
}
.icons-table td:first-child {
	font-size: 26px;
	color: #000;
	padding-right: 15px;
}

 [class^="icon-"].accommodation {
	font-size: 30px;
	color: rgb(120,107,93);
	transition: color .2s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

 [class^="icon-"].accommodation:hover {
	color: rgb(138,186,67);
}

.accommodation td p {
	font-size: 0.875rem;
	margin-bottom: 1em;
}
.accommodation td h4 {
	font-size: 0.875rem;
	margin-bottom: 1em;
	color: #333;
	font-weight: bold;
}

.our-eco-values h4 { font-size: 14px; font-weight: bold; color: #000; }
.our-eco-values p { font-size: 13px; line-height: 24px; }
.our-eco-values .flex-item:nth-child(2n+1) em {
	color: #8dc63f;
	transition: color .2s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.our-eco-values .flex-item:nth-child(2n+1) em:hover {
	color: #3ac3c4;
}
.our-eco-values .flex-item:nth-child(2n+0) em {
	color: #3ac3c4;
	transition: color .2s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.our-eco-values .flex-item:nth-child(2n+0) em:hover {
	color: #8dc63f;
}
.cols-4.big-icons > .flex-item {
	max-width: 24%;
}
.big-icons .flex-item .flex-item.icon {
	max-width: 32px;
}
.big-icons .flex-item .flex-item.text {
	max-width: 66%;
	text-align: left;
}
.big-icons .icon-travel-29 {
	margin-left: -0.55em;
}


.reviews {
	background: center no-repeat url("../images/pexels-photo-1078983.jpg");
	height: 520px;
}

.reviews h3 {
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0.5em 0;
}
.reviews p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 20px;
	line-height: 28px;
	margin: 0.5em 0;
}

/* #MARK Login Form */

.login-form {
	max-width: 100%;
}
.simple-modal .login-form {
	font-size: 1rem;
}
.login-form div {
}
.login-form fieldset {
	border: solid 1px #eee;
}
.login-form legend {
	color: #403023;
	font-weight: bold;
}
.login-form label {
	display: block;
	margin: 10px 0;
	min-width: 18em;
	text-align: left;
}
.login-form label.c {
	text-align: center;
}
.login-form input[type=text], .login-form input[type=password] {
	font-size: 1rem;
	width: 100%;
}
.login-form button {
	padding: 7px 16px;
	color: #fff;
	background: #8dc63f;
	border: solid 1px #8dc63f;
	border-radius: 4px;
}

/* #MARK Admin / Edit */

button.admin,
.button.admin {
	background: #333;
	border: solid 2px #999;
	color: #ccc;
	padding: 6px 12px;
	border-radius: 6px;
}

.top-admin-menu {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	padding: 6px 12px;
	background: #333;
	border-bottom: solid 1px #000;
	text-align: right;
	color: #aaa;
	position: fixed;
	z-index: 1001;
	width: 100%;
	box-sizing: border-box;
}
.top-admin-menu a {
	color: #aaa;
	border-radius: 4px;
}
.top-admin-menu a:hover {
	background: rgba(255,255,255,0.25);
}
.top-admin-menu a.on {
	color: #9f9;
}
.debug {
	color: #99f;
	font-family: monospace;
	font-size: 12px;
	line-height: 1.2em;
}
.disabled {
	color: #aaa;
}
.page_edit_tools {
	margin: 8px 16px;
	padding: 8px 16px;
	border: dashed 3px #ccc;
	border-radius: 16px;
	background-color: #eee;
}

.visible-off {
	opacity: 0.25;
}
.visible-off:hover {
	opacity: 1;
}
.edit-tools-block {
	position: absolute;
	z-index: 1000;
	background: rgba(48,48,48,0.9);
	padding: 4px 15px 2px 15px;
	right: 15px;
	border: solid 1px rgba(192,0,0,0.95);
	border-radius: 0px 0px 6px 6px;
	opacity: 0.50;
	transition: opacity .2s ease-out;
}

.edit-tools-block:hover {
	opacity: 1;
}
.edit-tools-block a {
	color: #aaa;
	border-radius: 4px;
}
.edit-tools-block a.delete_obj {
	color: #faa;
}
.edit-tools-block a:hover {
	background: rgba(255,255,255,0.25);
}

.edit-tools-block:hover + div,
.edit-tools-block:hover + article,
.edit-tools-block:hover + section,
.edit-tools-block:hover + nav
{
	outline: dashed 4px rgba(255,0,0,0.5);
}
.edit-tools-block:hover + article::after {
	content: '';
	position: absolute;
	left: 0; top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,0,0,0.125);
}


.edit-popup li {
	position: relative;
	margin: 10px;
	padding: 2px 5px;
	background: #eee;
	border-radius: 10px;
}
.edit-popup .more-data {
	position: absolute;
	right: 1em;
	width: 12px;
	height: 14px;
	overflow: hidden;
	top: 4px;
	background-color: #ddd;
}
.edit-popup .more-data:hover {
	width:auto; height:auto;
}

.editswitch.icon-toggle-on {
	color: #0a0;
}
.editswitch.icon-toggle-off {
	color: #a00;
}
/* #MARK .form-top */

.form-top {
	text-align: center;
}
.form-top > div {
	display: inline-block;
	position: relative;
}
.form-top fieldset {
	border: none;
	margin: 0;
	padding: 0;
}
.form-top label {
	display: block;
	width: 100%;
	margin: 6px 0;
	padding: 4px 8px;
	text-align: left;
	background: #fff;
	border-radius: 4px;
	font-size: 11px;
	font-weight: bold;
	color: #999;
}
.form-top.with-borders label {
	border: solid 1px #ccc;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.125);
}
.form-top input[type=text],
.form-top input[type=password],
.form-top select {
	width: 100%;
	margin: 0;
	padding: 6px 10px;
	background: #fff;
	border: none;
/* 
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
 */
	outline: none;
}

.form-top input[type=checkbox] {
	width: auto;
	margin: 0 8px;
}

.form-top textarea {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 6px 1% 6px 1%;
	background: #fff;
	text-align: left;
	border: none;
	outline: none;
}

.form-top select {
	width: 95.5%;
}

.form-top label.focus {
	background-color: hsl(350, 100%, 95%);
	border-color: hsl(350, 100%, 39%);
	box-shadow: 0px 0px 5px hsl(350, 0%, 75%);
}

.form-top input.validation-failed {
	background-color: hsl(0, 100%, 98%);
}

.form-top .validation-advice {
	position: relative;
	top: 32px;
}

.form-top input.datepicker + .icon-calendar {
	position: absolute;
	margin-left: -26px;
	margin-top: 3px;
}
.form-top button,
.form-top input[type=submit] {
	padding: 10px 20px;
	margin: 0;
	font-weight: bold;
	color: #fff;
	background: #786b5d;
	border: none;
	border-radius: 3px;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}
.form-top button.green {
	color: #fff;
	background: #8dc63f;
}


.beds24 * {
	font-size: 15px;
	line-height: 1.4em;
	color: #7a7a7a;
}
.beds24 > div {
	margin: 0 4px;
}
.beds24 input[type=text] {
	padding: 6px 10px;
	margin: 0;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 0;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}
.beds24 button {
	padding: 6px 10px;
	margin: 0;
	color: #fff;
	background: #008acc;
	border: 1px solid #008acc;
	border-radius: 3px;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.beds24 select {
	appearance: none;
	margin: 0;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	padding: 6px 10px;
	box-shadow: inset 0 0 0 rgba(0,0,0,.075);
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/* @end */

@media only screen and (max-width : 750px) {
	.mobile-only { visibility: visible; }
	.content {
		padding: 30px 20px 20px 20px;
	}
	h2 { font-size: 26px; }
	.form-top.beds24 > div {
		display: block;
	}

	.main-menu-wrapper {
		position: absolute;
		display: block;
		z-index: 100;
		right: 0;
		margin-top: 30px;
		width: 100%;
		transition: all ease-in-out .15s;
	}
	.main-menu-wrapper ul.main-menu:nth-child(1),
	.main-menu-wrapper ul.main-menu:nth-child(3) {
		text-align: right;
	}
	ul.main-menu li.menu-item {
		overflow: hidden;
		max-height: 0;
		margin: 0 0 0 50%;
		padding: 0;
		display: block;
		text-align: right;
		background-color: rgba(0,0,0,0.75);
		left: 0;
		transition: all ease-in-out .25s
	}
	.mobile-collapse.visible ul.main-menu > li.menu-item {
		max-height: 4em;
		padding: 5px 0;
	}
	.sub-menu-toggler {
		margin-right: 1em;
	}
	.mobile-collapse.visible ul.main-menu > li.menu-item.sub-menu {
		max-height: 40em;
	}
	.mobile-collapse.visible ul.main-menu > li.menu-item .mobile-collapse.visible li.menu-item {
		max-height: 4em;
		padding: 5px 0;
	}
	ul.main-menu li.logo-menu-wrapper {
		position: absolute;
		top: -30px;
		width: 40%;
		left: 28%;
	}
	ul.main-menu li.logo-menu-wrapper img {
		width: 100px;
	}

	ul.main-menu li ul {
		position: relative;
		padding-right: 1em;
	}
	ul.main-menu li ul,
	ul.main-menu li:hover ul {
		max-height: 1000px;
		background: none;
		box-shadow: none;
		outline: none;
	}
	ul.main-menu li li {
		line-height: 1.5rem;
	}
	ul.main-menu ul li.menu-item {
		margin: 0;
	}

	.header-slideshow .text-overlay h1 {
		font-size: 30px;
		letter-spacing: 5px;
	}
	.header-slideshow .text-overlay h2 {
		font-size: 14px;
	}
	.cols-2 > .flex-item {
		max-width: 100%;
	}
	.cols-3 > .flex-item {
		max-width: 100%;
	}
	.cols-4 > .flex-item {
		max-width: 100%;
	}
	.cols-5 > .flex-item {
		max-width: 100%;
	}
	.cols-6 > .flex-item {
		max-width: 100%;
	}
	.cols-2-66-33 > .flex-item:nth-child(1) {
		max-width: 100%;
	}
	.cols-2-66-33 > .flex-item:nth-child(2) {
		max-width: 100%;
	}
	.small-image-boxes > .flex-item {
		margin: 16px auto;
	}
	.accommodation .slideshow-container {
		margin: 20px auto;
		width: 90%;
	}
	.accommodation .slideshow-container .text-overlay {
		text-align: center;
		display: grid;
		align-items: end;
	}
	.accommodation .images a.book-now {
		position: relative;
		bottom: unset;
		right: unset;
		width: unset;
		margin: 0 auto;
		padding: 0.5em 1em;
	}
	.accommodation .images a.book-now.left {
		left: unset;
	}

}