/*******************************
# Tags
*******************************/

:root {
	--primary: #c80a48;
	--secondary: #121129;
	--tertiary: #40102d;

	--success: #00834a;
	--warning: #c68800;
	--danger: #cc0000;

	--offwhite: #dddddd;

}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Montserrat", serif;
	font-optical-sizing: auto;
	font-style: normal;
	text-align: center;
	color: white;
}

html {
	background: #0d0719;
	position: relative;
	min-height: 100vh;
	z-index: 1;
}

h1,
h2,
h3,
h4,
h5 {
	margin: 1em 0 0.5em;
	font-weight: 700;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child {
	margin-top: 0;
}

p {
	line-height: 1.4;
	font-size: .875rem;
	margin: 0;
}

P:not(:last-child) {
	margin-bottom: 1em;
}

a {
	color: var(--primary);
}

a:hover {
	text-decoration: underline;
}

img {
	max-width: 100%;
}

pre {
	background: var(--offwhite);
	padding: 1rem;
	color: #111;
}

hr {
	color: #555662;
	margin: 1rem;
}

/*******************************
# Common
*******************************/

.container {
	margin: 0 auto;
	padding-left: clamp(1rem, 5vw, 3rem);
	padding-right: clamp(1rem, 5vw, 3rem);
}

.container--sm {
	max-width: 28rem;
}

.container--md {
	max-width: 34rem;
}

.container--lg {
	max-width: 38rem;
}

.container--xl {
	max-width: 42rem;
}

.margin {
	margin-top: clamp(1rem, 5vw, 2rem);
	margin-bottom: clamp(1rem, 5vw, 2rem);
}

.section__title,
.panel_subheading {
	text-transform: uppercase;
	font-size: 1rem;
}

.text--large {
	font-size: 1.1rem;
}



.text--sm {
	font-size: 0.875rem;
}

.text--lg {
	font-size: 1.15rem;
}

.home-button {
	position: fixed;
	width: 4rem;
	height: auto;
	background: var(--primary);
	bottom: 3%;
	right: 3%;
	aspect-ratio: 1;
	border-radius: 50%;
	color: white;
	z-index: 10;
	box-shadow: 0em 0.25em 0.5em rgba(0, 0, 0, 0.5);
}

.home-button svg {
	fill: currentColor;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


/*******************************
# Forms / Input
*******************************/

.form__row {
	display: flex;
	gap: 0.5em;
}

.form__password-reveal {
	width: 3em;
	aspect-ratio: 1;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 0.25rem;
	position: relative;
	cursor: pointer;
}

.form__password-reveal svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70%;
	opacity: 0.3;
}

.form__password-reveal:hover svg {
	opacity: .6;
}

.form__password-reveal-open {
	display: none;
}

.form__password-reveal-close {
	display: block;
}

.form__password-reveal.active .form__password-reveal-open {
	display: block;
}

.form__password-reveal.active .form__password-reveal-close {
	display: none;
}



.button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
	display: block;
	background: var(--primary);
	color: #fff;
	font-family: inherit;
	font-size: .875rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	border: 0;
	border-radius: 0.25rem;
	padding: 1em 1.5em;
	cursor: pointer;
	width: 100%;
	max-width: 80%;
	margin: 0 auto;
	transition: all .4s ease;
}

.button--secondary {
	background: var(--secondary);
}

.button:hover {
	text-decoration: none;
	transform: translateY(-5%);
}

.button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled {
	filter: grayscale(1);
	cursor: not-allowed;
	opacity: .5;
}

.button--sm {
	font-size: 0.875rem;
	padding: 0.5em 1em;
	width: auto;
	display: inline-block;
}


/*******************************
# Colours
*******************************/

.background--primary {
	background: var(--primary) !important;
}

.background--secondary {
	background: var(--secondary) !important;
}

.background--tertiary {
	background: var(--tertiary) !important;
}

.background--yellow {
	background: #c68800 !important;
}

.background--red {
	background: #d70147 !important;
}

.background--green {
	background: #00834a !important;
}

.background--facebook {
	background: #1976f0 !important;
}

.background--instagram {
	background: #8139b1 !important;
}

.background--tiktok {
	background: black !important;
}

.background--twitter {
	background: black !important;
}

.background--linkedin {
	background: #0a66c2 !important;
}

.background--google {
	background: #d9412f !important;
}

.background--tripadvisor {
	background: #32dea2 !important;
}

.border--success,
.border--warning,
.border--danger {
	border: 0.25rem !important;
	border-style: solid !important;
}

.border--success {
	border-color: #00834a !important;
}

.border--warning {
	border-color: #c68800 !important;
}

.border--danger {
	border-color: #cc0000 !important;
}


/*******************************
# Messages
*******************************/

.message {
	padding: 1em;
	background: white;
	border-radius: 0.25em;
	margin: 0.5em 0;
	font-weight: bold;
	text-align: center;
	font-size: 0.875rem;
	flex: 1;
}

.message--hidden {
	display: none;
}

.message--success {
	background: #00834a;
	color: white;
}

.message--warning {
	background: #c68800;
}

.message--danger {
	background: #cc0000;
	color: white;
}

.message--black {
	background: #111;
	color: white;
}

/*******************************
# Panel
*******************************/

.panel {
	border-radius: 1rem;
	overflow: hidden;
	color: black;
}

.panel__heading {
	background: var(--primary);
	color: white;
	padding: 2.5%;
	position: relative;
	z-index: 1;
}

.panel__heading::after {
	display: block;
	content: "";
	background: linear-gradient(350deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .5;
	mix-blend-mode: darken;
}

.panel__heading h2 {
	font-size: 1.2rem;
	margin: 0;
}

.panel__body {
	background: #e4e4e4;
	background: #dddddd;
	padding: clamp(1.4rem, 7vw, 2.5rem);
}

.panel__body--white {
	background: white;
}

.panel__body--black {
	background: black;
	color: white;
}

.panel__image {
	line-height: 0;
	position: relative;
	z-index: 0;
}


/* .panel__image::after {
	display: block;
	content: "";
	background: linear-gradient(0deg,rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30%;
	z-index: 1;
} */

.panel--transparent .panel__body {
	background: none;
	color: white;
}


/* Minis */

.panel__minis {
	height: 2rem;
	background: #dddddd;
}

.panel__minis-inner {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	transform: translateY(-50%);
}

.panel__mini-button {
	background: var(--primary);
	border-radius: 100%;
	box-shadow: 0em 0.25em 0.25em rgba(0, 0, 0, 0.1);
	width: 4em;
	height: 4em;
	position: relative;
	overflow: hidden;
	animation: bounce 7s ease infinite;
}

.panel__mini-button:nth-child(2) {
	animation-delay: 0.2s;
}

.panel__mini-button:nth-child(3) {
	animation-delay: 0.4s;
}

.panel__mini-button::after {
	display: block;
	content: "";
	background: linear-gradient(350deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .25;
	mix-blend-mode: darken;
}

.panel__mini-button svg {
	fill: white;
	margin-right: 0.25em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 40%;
	width: 40%;
}

@media (min-width: 32rem) {
	.panel__minis {
		height: 1rem;
	}
}


/*******************************
# Logo
*******************************/

.logo {
	width: 100%;
}



/*******************************
# Links
*******************************/

.links {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-flow: column;
	gap: 1em;
}

.links__item a {
	background: white;
	display: block;
	padding: 1.2rem 4rem;
	position: relative;
	color: black;
	font-weight: 700;
	box-shadow: 0em 0.25em 0.25em rgba(0, 0, 0, 0.1);
	border-radius: 0.5em;
	overflow: hidden;
	transition: all .4s ease;
	letter-spacing: -0.05em;
	text-decoration: none;
}

.links__item a:hover {
	text-decoration: none;
	transform: translateY(-5%);
}

.links__icon {
	aspect-ratio: 1;
	background: var(--primary);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 1;
}

.links__icon::after {
	display: block;
	content: "";
	background: linear-gradient(350deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .25;
	mix-blend-mode: darken;

}



.links__icon svg {
	fill: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 40%;
	width: 40%;
	z-index: 10;
}



/*******************************
# Grid
*******************************/

.grid {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: grid;
	grid-gap: 1em;
	grid-template-columns: repeat(2, 1fr);
}

.grid a {
	display: block;
	position: relative;
	background: white;
	aspect-ratio: 5/2;
	border-radius: .5em;
	transition: all.4s ease;
	text-decoration: none;
	box-shadow: 0em 0.25em 0.25em rgba(0, 0, 0, 0.1);
}

.grid a:hover {
	text-decoration: none;
	transform: translateY(-5%);
}


.grid svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-height: 40%;
	max-width: 80%;
}





/*******************************
# Background
*******************************/

.background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	/* opacity: 0.5; */
	/* filter: blur(8px); */
}




/*******************************
# Forms
*******************************/

.form {
	display: flex;
	flex-flow: column;
	gap: 1rem;
	margin: 2rem 0 1rem;
}

form label {
	display: block;
	font-weight: bold;
	font-size: 0.875rem;
	margin-bottom: 0.5em;
	text-align: left;
}

textarea,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="password"] {
	display: block;
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
	padding: 1.2em;
	border: 0;
	border-radius: 0.25em;
}

select,
option {
	display: block;
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
	padding: 1.2em;
	border: 0;
	border-radius: 0.25em;
	background: white;
}

.spinner {
	max-width: 1.5rem;
	animation: rotation 1.5s linear infinite;
	vertical-align: middle;
}

.input--success {
	outline: 2px solid var(--success);
}

.input--warning {
	outline: 2px solid var(--warning);
	animation: judder 0.5s ease;
}

.input--danger {
	outline: 2px solid var(--danger);
	animation: judder 0.5s ease;
}




/*******************************
# Top Banner
*******************************/

.top-banner {
	line-height: 0;
	display: block;
}

@media(min-width: 32rem) {

	.top-banner {
		border-radius: 0 0 1rem 1rem;
		overflow: hidden;
	}

	.top-banner img {
		width: 100%;
		max-width: none;
	}


}


/*******************************
# Modal
*******************************/

.modal {
	position: fixed;
	top: -20%;
	left: 0;
	width: 100%;
	height: 140%;
	z-index: 99;
	background: rgba(0, 0, 0, 0.4);
	visibility: hidden;
	opacity: 0;
	transition: all 0.4s ease;
}

.modal__inner {
	background: #24262f;
	color: white;
	border-radius: 1em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 32rem;
	max-width: 90vw;
	max-height: 70vh;
	overflow: auto;
}

.modal::after {
	content: "";
	display: block;
}

.modal--open .modal {
	visibility: visible;
	opacity: 1;
}

.modal--open {
	overflow: hidden;
}

.modal--open .container {
	filter: blur(0.5rem);
}

.modal__close {
	position: absolute;
	cursor: pointer;
	top: 50%;
	right: 3%;
	transform: translateY(-50%);
	line-height: 0;
}

.modal__close svg {
	width: 2em;
	height: auto;
	fill: white;
}

.modal__heading {
	font-size: 1.2rem;
}

.modal__header {
	background: #555662;
	font-weight: bold;
	min-height: 3em;
	text-align: right;
	position: relative;
}

.modal__body {
	padding: clamp(0.5rem, 7vw, 2rem);
	padding-bottom: 2.6em;
}

/*******************************
# Footer
*******************************/

.footer {
	background: black;
	padding: 2rem 0;
	color: white;
	text-align: center;
	font-size: 0.75rem
}

.footer__container {
	display: flex;
	flex-flow: column;
	gap: .2em;
}

.footer__logo {
	width: 100%;
	max-width: 11.5rem;
	margin: 0.875em 0;
}


/*******************************
# Swiper
*******************************/

.swiper-slide {
	line-height: 0;
	position: relative;
	overflow: hidden;
}

.swiper-slide::after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 3em;
	height: 100%;
	opacity: .75;
}

/* .swiper-slide--1::after {
	background: linear-gradient(90deg,rgba(0, 131, 74, 1) 0%, rgba(0, 131, 74, 0) 100%);
}

.swiper-slide--2::after {
	background: linear-gradient(90deg,rgba(215, 1, 71, 1) 0%, rgba(215, 1, 71, 0) 100%);
}

.swiper-slide--3::after {
	background: linear-gradient(90deg,rgba(198, 136, 0, 1) 0%, rgba(198, 136, 0, 0) 100%);
}

.swiper-slide--4::after {
	background: linear-gradient(90deg,rgba(25, 118, 240, 1) 0%, rgba(25, 118, 240, 0) 100%);
} */


.swiper-slide img {
	aspect-ratio: 4/1;
	object-fit: cover;
	width: 100%;
}

.swiper-pagination {
	margin-top: .5rem;
	position: static;
}

.swiper-pagination-bullet {
	background: white;
	opacity: .5;
	width: 5px;
	height: 5px;
}

.swiper-pagination-bullet-active {
	background: white;
	opacity: 1;
}









/*******************************
# Admin
*******************************/

/* Bar */

.admin-bar {
	background: #dddddd;
	color: black;
	padding: 1rem 1.5rem;
	position: relative;
	text-align: left;
	font-size: 0.75rem;
	margin-right: 3em;
	border-radius: 0.25rem;
}

.admin-bar__profile {
	position: absolute;
	top: 50%;
	right: 0;
	width: 6em;
	height: auto;
	transform: translate(50%, -50%);
	aspect-ratio: 1;
	cursor: pointer;
}

.admin-bar__profile img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0em 0em 1em rgba(255, 255, 255, 0.25);
}

.admin-bar__button {
	width: 1.5em;
	aspect-ratio: 1;
	background: white;
	position: absolute;
	top: 70%;
	left: 70%;
	border-radius: 0.25rem;
}

.admin-bar__button svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	fill: var(--primary);
}

/* Menu */

.admin-menu {
	display: none;
	position: fixed;
	top: 4%;
	border-radius: 1em;
	width: 90%;
	left: 50%;
	height: 85%;
	text-align: left;
	z-index: 1000;
	box-shadow: 0em 0em 5em rgb(0, 0, 0);
	max-width: 32rem;
	transform: translateX(-50%);
	text-align: center;
	flex-flow: column;
	overflow: scroll;
}

.admin-menu__body {
	background: var(--offwhite);
	padding: clamp(1rem, 5vw, 2rem);
	flex: 1;
}

.admin-menu__footer {
	background: #111;
	padding: 1.5em;
	font-size: 0.75rem;
	display: flex;
	flex-flow: column;
	text-align: center;
	align-items: center;
	gap: 0.4em;
}

.admin-menu__footer svg {
	width: 12rem;
	max-width: 80%;
	margin: 0.7em 0;
}

.admin-menu--open {
	display: flex;
}

.admin-menu__profile img {
	width: 4rem;
	margin: 0 auto;
	aspect-ratio: 1;
	display: block;
	border-radius: 50%;
}

.admin-menu__logout {
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.75rem;
	font-weight: bold;
	margin-top: 1rem;
	display: inline-block;
	border: 1px solid currentColor;
	padding: 0.4em 1em;
	border-radius: 0.25rem;
}

.admin-menu ul {
	margin: 2rem 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
	font-weight: bold;
}

.admin-menu ul a {
	background: white;
	display: block;
	width: 100%;
	padding: 1em;
	text-decoration: none;
	border-radius: 0.25em;
}

.admin-menu ul a.close {
	background: var(--primary);
	color: white;
	cursor: pointer;
	margin-top: 1.5em;
	font-weight: bold;
}

.admin-menu ul a.close:hover {
	background: var(--secondary);
}

.admin-menu ul a:hover {
	background: gainsboro;
}

.admin-menu ul li {
	margin: 0.5em 0;
}

/* Overlay */

.admin-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(6px);
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 999;
	visibility: hidden;
	opacity: 0;
	transition: all .4s ease;
}

.admin-overlay--open {
	visibility: visible;
	opacity: 1;
}


/*******************************
# Animations
*******************************/

@keyframes bounce {

	0%,
	5%,
	12.5%,
	20%,
	100% {
		transform: translateY(0);
	}

	10% {
		transform: translateY(-5%);
	}

	15% {
		transform: translateY(-2.5%);
	}
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes judder {
	0% {
		transform: translateX(0);
	}

	20% {
		transform: translateX(-5px);
	}

	40% {
		transform: translateX(5px);
	}

	60% {
		transform: translateX(-5px);
	}

	80% {
		transform: translateX(5px);
	}

	100% {
		transform: translateX(0);
	}
}

/* End */