@import url('https://fonts.googleapis.com/css2?family=Sigmar+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
* {
	box-sizing: border-box;
}
:root {
  --white: #fbfbfb;
  --light: #68b7af;
  --medium: #1f5953;
  --dark: #231f20;
  --pink: #ca9475;
}
/*
@font-face {
	font-family: "AhaWow";
	src: url("../files/layout/aAhaWow.woff") format("woff");
}
@font-face {
	font-family: 'Sigmar One';
	src: url("../files/layout/SigmarOne-Regular.woff") format("woff");
}
@font-face {
	font-family: "Helvetica Neue LT Std";
	src: url("../files/layout/HelveticaNeueLTStd-Cn.woff") format("woff");
}
*/



html,
body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	font-size: 19px;

	font-family: 'Roboto', sans-serif;
	color: var(--white);
	scroll-behavior: smooth;
	background-size: 75%;
	background-position:center center;
	background-attachment:scroll;
	background-repeat:repeat;
	background-image: url(../files/layout/bg.webp);
	background-color: var(--dark);
}

a,
a:visited {
	color: var(--medium);
}

a:hover,
a:active {
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5 {
	font-size: 2rem;
	font-family: "AhaWow";
	font-family: 'Sigmar One', cursive;
	text-transform: uppercase;
}

h2 {
	text-align: center;
}
h2.big-title {
	font-size: 2rem;
}
h2 img {
	height: 4rem;
	margin-bottom: 1rem;
}
h2.logo-title img {
	height: 40vh;
	margin-bottom: 0rem;
}
h2.logo-title.logo-route-title img {
	height: 30vh;
}
h3 {
	font-size: 1.5rem;
}

/** HEADER **/

header {
	z-index: 10000;
	position: fixed;
}

h1 {
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
}
header h1 img {
	width: 4rem;
}
p {
    line-height: 200%;
}

nav.menu {
	position: fixed;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
}
nav.menu img {
	width: 3rem;
	padding: 0.5rem;
	border-radius: 50%;
}
nav.menu aside {
	display: none;
	position: relative;
}

aside.language {
	position: fixed;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
}
aside.language img {
	width: 3rem;
	padding: 0.5rem;
	border-radius: 50%;
}



#cookies {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 0.5rem;
  background-color: var(--dark);
  box-shadow: 0px 0.5rem 1rem #000;
  opacity: 0.85;
  backdrop-filter: blur(16px);
  text-align: center;
}
footer {
	background: var(--dark);
	padding: 1rem 4rem;
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
#copyright {
	width: 100%;
	order: 4;
	padding: 0.5rem;
	margin: 1rem auto;
	text-align: center;
  }

#footer-logo {
	width: 6rem;
/*
	float: right;
*/
	order: 3;
}

footer p {
	margin: 0 0 0.5rem 0;
	font-size: 0.9rem;
	line-height: 100%;
}
footer address {
	font-style: normal;
}
.quotes {
	background: var(--accent1);
	backdrop-filter: blur(4px);
	color: var(--white);
	font-size: 2rem;
	position: relative;
	padding: 0;
	overflow: hidden;
}
.quote footer {
	padding: 1rem 4rem;
	background: transparent;
  }
.quote-bar {
	display: flex;
	transition: translate 1s ease;
}
.quotes[data-total="2"] .quote-bar {width: 200vw;}
.quotes[data-total="3"] .quote-bar {width: 300vw;}
.quotes[data-total="4"] .quote-bar {width: 400vw;}
.quotes[data-total="5"] .quote-bar {width: 500vw;}
.quotes[data-total="6"] .quote-bar {width: 600vw;}

.quotes[data-quote="0"] .quote-bar {translate: 0%;}
.quotes[data-quote="1"] .quote-bar {translate: -100vw;}
.quotes[data-quote="2"] .quote-bar {translate: -200vw;}
.quotes[data-quote="3"] .quote-bar {translate: -300vw;}
.quotes[data-quote="4"] .quote-bar {translate: -400vw;}
.quotes[data-quote="5"] .quote-bar {translate: -500vw;}

.quote {
	padding: 2rem 10vw;
  	width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.quotes-nav {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

.quotes-nav-prev,
.quotes-nav-next {
	width: 50%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	text-align: left;
	font-size: 2rem;
	color: var(--white);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 100%);
	border-radius: 0;
	border: 0;
	padding: 2rem;
	cursor: pointer;
	transition: all 0.5s ease;
}
.quotes-nav-next {
	left: 50%;
	text-align: right;
}

.quotes-nav-prev:hover {
	background: linear-gradient(90deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 100%);
}
.quotes-nav-next:hover {
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 100%);
}

.full-width {
	width: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.full-height {
	min-height: 90%;
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.full-width-text {
	width: 100%;
	padding: 1rem 10%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	/*font-size: 1.25rem;*/
}
.full-width-text p {

	text-indent: 1rem;
}
.half-width {
	width: 50%;
	padding: 1rem ;
	margin-left: auto;
	margin-right: auto;
}

.full-image  {
	padding: 0;
	margin: 0;
	position: relative;
	width: 100%;
	height: 90%;
	overflow: hidden;
	max-width: 100%;
	max-height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}
.full-image-half  {
	padding: 0;
	margin: 0;
	position: relative;
	width: 100%;
	height: 60%;
	overflow: hidden;
	max-width: 100%;
	max-height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}


.full-video {
	padding: 0;
	margin: 0;
	position: relative;
	width: 100%;
	height: 90%;
	overflow: hidden;
	max-width: 100%;
	max-height: 100%;
}
.full-video video {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
}
.full-video img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 25vw;
	filter: drop-shadow(0px 8px 16px rgba(0,0,0,0.5));
	z-index: 1000;
}
.full-video .video-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.5;
	background-image: url(../files/layout/video-fg.png);
	background-position: center center;
	background-size: 4px 4px;
	background-repeat: repeat;
	z-index: 1000;
}

.columns {
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
}
.columns .column {
	display: block;
	/*width: calc(100% / 6);*/

}
.columns-4 .column {
	width: calc(100% / 4 - 0.5rem);
}
.columns-5 .column {
	width: calc(100% / 5 - 0.5rem);
}
.columns-6 .column,
.columns-many .column {
	width: calc(100% / 6 - 0.5rem);
}
.columns,
.columns-many {
	flex-wrap: wrap;
	justify-content: center;
}
.columns-many .column {
	margin-bottom: 2rem;
}
.columns .column,
.columns .column:visited {
	font-size: 1.5rem;
	color: var(--white);
	text-decoration: none;
	text-align: center;
	font-family: 'Sigmar One', cursive;
	text-transform: uppercase;
}


.columns .column.clickable {

	cursor: pointer;
}
.columns .column.clickable:active,
.columns .column.clickable:hover {
	text-decoration: underline;
}
.columns .column .column-bg-bottom {
	width: 100%;
}
.columns .column.clickable .column-bg-bottom {
	filter: grayscale(50%) brightness(50%) contrast(50%);
	transition: all 0.25s ease;
}
.columns .column.clickable:hover .column-bg-bottom {
	filter: initial;
}

.columns .column .column-logo-top {
	width: 50%;

	margin-bottom: -4rem;
	position: relative;
	z-index: 1000;
	opacity: 0.5;
	transition: all 0.25s ease;
}
.columns .column:hover .column-logo-top {
	opacity: 1;
}
.columns .column .column-title-bottom {
	width: 100%;
	text-align: center;
	margin-top: -1.25rem;
	position: relative;
	z-index: 1000;
}
.columns .column .column-text-bottom {
	width: 100%;
	text-align: left;
	position: relative;
	font-size: 1.25rem;
	z-index: 1000;
	clear: both;
	width: 100%;
	display: block;
	padding: 0 10%;
	width: min-content;
margin: 0 auto;
min-width: 80%;
}
body#extras 
.columns .column .column-text-bottom,
body#radical 
.columns .column .column-text-bottom { 
	text-align: center;
}

.icons {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}
.icon {
	margin: 0.5rem;
	border-radius: 50%;
	margin: 0.5rem;
	border-radius: 50%;
	border: 2px solid var(--white);
}
.icon-normal,

.columns .column .column-bg-bottom.icon-normal {
	width: 9rem;
}
/*
input:nth-child(0) {transform: perspective(200px) rotateX(-1deg) rotateY(-2deg);}
input:nth-child(1) {transform: perspective(200px) rotateX(5deg) rotateY(-3deg);}
input:nth-child(2) {transform: perspective(200px) rotateX(-5deg) rotateY(-4deg);}
input:nth-child(3) {transform: perspective(200px) rotateX(-5deg) rotateY(-1deg);}
input:nth-child(4) {transform: perspective(200px) rotateX(0deg) rotateY(-2deg);}
input:nth-child(5) {transform: perspective(200px) rotateX(3deg) rotateY(3deg);}
input:nth-child(6) {transform: perspective(200px) rotateX(-4deg) rotateY(3deg);}
input:nth-child(7) {transform: perspective(200px) rotateX(3deg) rotateY(-5deg);}
input:nth-child(8) {transform: perspective(200px) rotateX(1deg) rotateY(-3deg);}
input:nth-child(9) {transform: perspective(200px) rotateX(-3deg) rotateY(2deg);}
input:nth-child(10) {transform: perspective(200px) rotateX(2deg) rotateY(3deg);}
*/

input,
textarea,
select {
	display: block;
	margin: 2rem auto;
	width: max-content;
	padding: 0.5rem;
	position: relative;
	font-size: 1.5rem;
	border: 2px solid var(--white);
	color: var(--dark);
	background-color: var(--white);
	text-decoration: none;
	text-align: center;
	font-family: "AhaWow";
	font-family: 'Sigmar One', cursive;
	/*transform: perspective(200px) rotateX(2deg) rotateY(2deg);*/
	transition: all 0.25s ease;
	cursor: pointer;
	resize: none;
	max-width: 80%;
}
textarea {
	margin: 2rem auto 3rem auto;
	height: 17.5rem;
	width: 100%;
	/*transform: perspective(200px) rotateX(-3deg) rotateY(1deg);*/
}

input:focus,
textarea:focus {
	outline: 2px solid var(--white);
	border: 2px solid var(--dark);
}
input[type="date"] {
    min-width: 130px;
}
.action-button,
.action-button:visited {
	display: block;
	margin: 2rem auto;
	width: max-content;
	padding: 0.5rem 1rem;
	font-size: 2rem;
	border: 0.25rem solid var(--white);
	color: var(--white);
	text-decoration: none;
	border-radius: 0.5rem;
	text-align: center;
	font-family: "AhaWow";
	font-family: 'Sigmar One', cursive;
	/*transform: perspective(200px) rotateX(8deg) rotateY(8deg);*/
	transition: all 0.25s ease;
	cursor: pointer;
	background: transparent;
	clear: both;
	float: none;
}
.action-button-small {
	font-size: 1.5rem;
	padding: 0.5rem 1rem;
}
.action-button-icon {
	margin: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	height: max-content;
}
.action-button:hover,
.action-button:active {
	background-color: var(--white);
	color: var(--dark);
}


.text-box {
	padding: 3rem 4rem 3rem 2rem;
	margin: 3rem 0 3rem 0;
	width: 50%;
	background-color: rgba(0,0,0,0.5);
	backdrop-filter: blur(8px);
	display: block;
}
.text-box-right{
	margin-left: auto;
}
.video-side-box {
	max-width: 40%;
	height: 90vh;
	margin: 1rem;
	  margin-left: 1rem;
	margin-left: auto;
  }
.text-box h2 {
	text-align: left;
}
.text-box p {
	margin: 0;
	text-indent: 1rem;
}
.icon-normal {
	width: 9rem;
}

#rgpd {
	clear: both;
	width: 50%;
	margin: 1rem auto;
	font-size: 0.75rem;
	width: 100%;
}
#rgpd h2 {
	font-size: 1rem;
}
.terms-images {
  max-width: calc(95% - 2rem);
}
#contact-form-message {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	padding: 1rem 4rem;
	margin: 0 auto;
}
.contact-form-break {
	width: 100%;
}
#contact-form-feedback {
	font-family: "AhaWow";
	font-family: 'Sigmar One', cursive;
	position: fixed;
	background-color: var(--dark);
	color: var(--white);
	z-index: 10000;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	padding: 2rem;
	display: flex;
	pointer-events: none;
	opacity: 0;
};
#contact-form-feedback.active {
	animation: 5s contact-form-feedback-animation ease 1 both;
}
@keyframes contact-form-feedback-animation {
	0%		{opacity: 0;}
	10%		{opacity: 0.9;}
	90%		{opacity: 0.9;}
	100%	{opacity: 0;}


}

.gallery {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	background-color: #231f20;
	margin-top: 2rem;
}

.gallery-image {
    height: 90vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 2rem;
}
div.gallery-image:last-child {
    margin-bottom: 0rem;
}

.gallery-image.gallery-100 {width: 100%;}
.gallery-image.gallery-50 {width: calc(50% - 1rem);}
.gallery-image.gallery-33 {width: calc(100% / 3 - 4rem / 3);}
.gallery-image.gallery-25 {width: calc(50% - 2rem);}

.clickable {
	cursor: pointer;
}

.price-tag {
	float: right;
	padding: 0;
	margin: -5.5rem 10% 0 0;
	text-transform: uppercase;
	color: var(--pink);
	text-align: right;
}
.price-tag-small {
	display: block;
	font-size: 0.7rem;
}

.full-width-specs {
	text-transform: uppercase;
	padding: 0 15%;
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: repeat(3, 1fr);
	color: #f9b030;
font-weight: bold;
}
.full-width-specs p {
	margin: 0;
}

.routes-bg {
	background-color: rgba(255,237,86,0.25);
}

.tile {
	aspect-ratio: 9/16;
	width: calc(100% / 6);
	background-size: auto calc(100% - 3rem);
	background-repeat: no-repeat;
	background-position: top center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	font-size: 2rem;
	font-family: 'Sigmar One', cursive;
}
.tile-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
a.tile,
a.tile:visited,
a.tile:active,
a.tile:hover {
	text-decoration: none;
	color: var(--white);
}


#book-form h2 {
  width: 100%;
  text-align: left;
}

.book-dates {
  display: flex;
  flex-wrap: wrap;
/*
  justify-content: center;
*/
  margin-bottom: 2rem;
}
.book-date {
	font-size: 1.25rem;
	text-align: center;
	font-weight: bold;
}
.book-date input {
	margin: 0.5rem auto;
	margin: 0.5rem 0.5rem;
	max-width: initial;
}
select.book-data {
	margin: 0;
	margin-top: -0.5rem;
}
.book-data[name="trees"] {
  width: 6rem;
  margin: 0;
  margin-top: -0.5rem;
}
.book-data {
  font-size: 1rem;
  padding: 0.25rem;
}
.book-vans {
	position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 2rem;
}
.book-van-icon {
  width: 100%;
}
.book-van {
  width: calc(100% / 6 - 1rem);
  min-width: 100px;
  margin: 0px 0.5rem 0.5rem 0.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
}
.book-van.unavailable {
  opacity: 0.5;
  pointer-events: none;
  border: 2px solid #fff;
}
.book-van.selected {
  border: 5px solid #fff;
  transform: scale(1.1);
}

.book-routes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 2rem;
}
.book-route-icon {
  width: 100%;
}
.book-route {
  width: calc(100% / 6 - 1rem);
  min-width: 100px;
  margin: 0px 0.5rem 0.5rem 0.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
}
.book-route.unavailable {
  opacity: 0.5;
  pointer-events: none;
  border: 2px solid #fff;
}
.book-route.selected {
  border: 5px solid #fff;
  transform: scale(1.1);
}



input[type="checkbox"] {
  margin: 0.25rem;
height: 1.5rem;
width: 1.5rem;
border: none;
outline: none;
margin-top: -0.1rem;
}
input.locked[type="checkbox"] {
  opacity: 0.5;
  pointer-events: none;
}


.book-extras,
.book-sports,
.book-options {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px 30px;
}
.book-id {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}
.book-bill {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
  font-size: 2rem;
}
.cost_description {
  width: 100%;
  font-size: 1.25rem;
}
.cost_value {
  font-weight: bold;
}
.book-id input,
.book-pax input {
	margin: 0;
	width: calc(50% - 20px);
	text-align: left;
}
.book-label {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  font-size: 1.1rem;
}

.book-comment textarea {
  margin: 0;
  text-align: left;
}
.book-captcha {
margin: 1rem 0 0 0;
}
#book-rgpd {
  display: inline-block;
}
#book-terms {
  display: inline-block;
}
.book-van.locked,
.book-date input.locked {
	pointer-events: none;
	opacity: 0.25;
}


.full-width-text p.book-van-message {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  text-indent: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0px 2px 4px #231f20;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.full-width-text p.book-van-message.active {
	opacity: 1;
}

input.book-mandatory.alert {
  box-shadow: inset 0px 0px 8px rgba(242, 34, 34, 0.75);
}
input.book-mandatory.alert[type="checkbox"] {
  box-shadow: 0px 0px 8px rgba(242, 34, 34, 0.75);
}

.submit-booking {
  margin-right: auto;
  margin-left: 0;
  font-size: 3rem;
  padding: 1rem 2rem;
}
.submit-booking {

}
.book-data[name="people"] {
  width: 4rem;
}

#book-submit-success,
#book-submit-fail {
	display: none;
}
.book-submit-feedback-message h2 {
	text-align: left;
}
.book-submit-feedback-message p {
	font-size: 1.5rem;
}

.home-book-dates {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  justify-content: center;
  text-align: center;
}
#book-now {
  margin-top: 0;
}
.home-book-date input {
	margin: 0.5rem 0.5rem;
	max-width: initial;
	text-align: center;
}
.home-book-date {
  font-size: 1.25rem;
  text-align: center;
  font-weight: bold;
}
.home-book-date input.locked {
	pointer-events: none;
	opacity: 0.25;
}

.island.island-vertical {
  width: 65%;
  margin: 0 auto;
  display: block;
}
.island.island-horizontal {
  width: 95%;
  margin: 0 auto;
  display: block;
}
.yellow-title {
	color: #f9b030;
}
.yellow-tag {
	color: #f9b030;
	font-size: 0.75em;
	margin-top: 0.2rem;
}

main.insurance {
	padding: 0 10%;
}
.insurance-table {
	width: 100%;
	border-spacing: 0px;
	border-collapse: collapse;
	max-width: 960px;
	margin: 0 auto;
  }
.insurance-table  td {
	padding: 0.25rem 1rem;
}
.insurance-table  td:nth-child(2),
.insurance-table  td:nth-child(3),
.insurance-table  td:nth-child(4) {
	  width: 15%;
	  text-align: center;
  }
.insurance-table tr {
	border-bottom: 1px solid var(--white);
}
.insurance-table tr:last-child {
	border-bottom: none;
}

#instagram {
	position: fixed;
	top: 0.5rem;
	right: 3rem;
  }
#instagram img {
	height: 2rem;
  }
  a#store-link,
  a#store-link:visited {
	position: fixed;
	color: var(--white);
	text-decoration: none;
	top: 0.5rem;
	right: 6rem;
	text-transform: uppercase;
	font-size: 1.5rem;
	font-family: 'Sigmar One', cursive;
  }
  a#store-link:hover,
  a#store-link:focus,
  a#store-link:active {
	color: var(--medium);
	text-decoration: underline;
  }

  a.big-cta-button,
  a.big-cta-button:visited,
  a.big-cta-button:hover,
  a.big-cta-button:focus,
  a.big-cta-button:active { 
	padding: 0.5rem 1.5rem 0.5rem 0.5rem;
	display: inline-block;
	color: var(--white);
	font-size: 1.25rem;
	background: #f9b030;
	margin-right: 0.5rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 1.5rem;
	transition: all 0.25s ease;
  }
  a.big-cta-button:hover,
  a.big-cta-button:focus,
  a.big-cta-button:active {
	scale: 1.1;
  }