* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	line-height: 1.5;
	font: inherit;
	vertical-align: baseline;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
}

*, *::before, *::after {
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	position: relative;
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

a {
	color: inherit;
}

p {
  margin-bottom: 1em;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, button, textarea, select {
	font: inherit;
}

input {
  appearance: none;
}

audio, canvas, iframe, img, svg, video {
	display: block;
	max-width: 100%;
  height: auto;
}

/* Prevents img without src to appear */
img:not([src]) {
	visibility: hidden;
}

/* Fonts */

@font-face {
  font-family: "Trust";
  src: url("../fonts/Trust1A-Regular.woff2")
    format("woff2-variations");
  font-weight: 400; 
  font-style: normal;
}

/* ==========================================================================
Theme Custom Style
========================================================================== */

:root {
    --black: #1F2926;
    --sand: #F3F1E6;
    --serif: 'Trust', apple-system, BlinkMacSystemFont, "Segoe UI", 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --grid-cols: 12;
    --grid-gutter: 40px;
    --total-gaps: calc(11 * 20px);
    --col-width: calc((100% - var(--total-gaps)) / 12);
    --space: 20px;
}

body {
    font-family: var(--serif);
    background-color: var(--sand);
    color: var(--black);
    line-height: 1.5em;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizelegibility;
    font-size: 100%;
    font-weight: 400;
}

body {
  opacity: 1;
  transition: 1s opacity;
}

body.fade {
  opacity: 0;
  transition: none;
}

main, section, header, footer {
	position: relative;
}

.mobile-only {
  display: none;
}

/* MEDIAS */

audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.fade-in img {
  opacity: 0;
  transition: opacity .6s ease-in-out;
}

.fade-in.visible img {
  opacity: 1;
}

/* TYPOGRAPHY */

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.25em;
}

p {
  line-height: 1.25em;
  margin-bottom: 1em;
}

p:last-of-type {
  margin-bottom: 0;
}

a {
    position: relative;
	color: inherit;
	text-decoration: none;
}

/* Animated Links */

a {
  position: relative;
}

a::after {
  content: "";
  position: absolute;
  bottom: -.1em;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--black);
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) and (pointer: fine) {
  a:hover::after {
    left: auto;
    right: 0;
    width: 0;
  }
}

/* LAYOUT */

#container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.container {
    position: relative;
    margin: 0 30px;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.space-between {
  justify-content: space-between;
}

.row-reverse {
  flex-direction: row-reverse;
}

.col-one {width: calc(1 * var(--col-width) + 0 * 20px);}
.col-two {width: calc(2 * var(--col-width) + 1 * 20px);}
.col-three {width: calc(3 * var(--col-width) + 2 * 20px);}
.col-four {width: calc(4 * var(--col-width) + 3 * 20px);}
.col-five {width: calc(5 * var(--col-width) + 4 * 20px);}
.col-six {width: calc(6 * var(--col-width) + 5 * 20px);}
.col-seven {width: calc(7 * var(--col-width) + 6 * 20px);}
.col-eight {width: calc(8 * var(--col-width) + 7 * 20px);}
.col-nine {width: calc(9 * var(--col-width) + 8 * 20px);}
.col-ten {width: calc(10 * var(--col-width) + 9 * 20px);}
.col-eleven {width: calc(11 * var(--col-width) + 10 * 20px);}
.col-twelve {width: calc(12 * var(--col-width) + 11 * 20px);}

.margin-top-fifty {
    margin-top: calc(25% - 40px);
}

.margin-right {
    margin-right: calc(1 * var(--col-width) + 1 * 20px);
}

.bt-medium {
  margin-top: calc(8vw + 30px);
}

.bm-small {
    margin-bottom: calc(4vw + 30px);
}

.bm-medium {
    margin-bottom: calc(8vw + 30px);
}

.bm-large {
    margin-bottom: calc(12vw + 30px);
}

.bm-huge {
    margin-bottom: calc(16vw + 30px);
}

.center {
    margin-left: auto;
    margin-right: auto;
}

/* Animated Texts */

.yscroll.fade-up {
  opacity: .25;
  transform: translateY(1rem); 
	transition: opacity 3s cubic-bezier(.22,1,.36,1),transform 3s cubic-bezier(.22,1,.36,1);
  will-change: opacity;
}

.yscroll.fade-up.visible {
  opacity: 1;
  transform: translateY(0%); 
}

.yscroll.up {
  transform: translateY(1rem); 
	transition: transform 3s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

.yscroll.up.visible {
  transform: translateY(0%); 
}

/* Animated Images */

.img-container {
    overflow: hidden;
}

.img-container img {
  transform: scale(1.05);
  transition: all .7s cubic-bezier(.4,0,.2,1) .1s;
}

.img-container .visible img {
  transform: scale(1);
}

/* HEADER */

header h1 {
    position: fixed;
    top: 22px;
    z-index: 1;
}

header .booking-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    background-color: var(--black);
    color: var(--sand);
    font-size: 1.25em;
    padding: 6px 12px;
    border-radius: 3px;
    transition: background-color 200ms ease-in;
    z-index: 1;
}

header .booking-btn:after {
    display: none;
}

header .booking-btn:hover {
    background-color: #30403b;
}

header .hero {
    position: absolute;
    top: 22px;
}

header .hero h2 span {
    color: transparent;
}

/* FOOTER */

footer, footer .container {
    min-height: 100svh;
}

.footer-top {
    font-size: calc(26.80488px + .58537vw);
    padding-top: 150px;
}

.label-stars {
  margin-top: 1em;
  max-width: 120px;
}

.footer-bottom {
    padding-bottom: 30px;
    font-size: 1.125em;
    line-height: 1em;
}

.footer-bottom .flex a {
  margin-left: 15px;
}

/* SECTIONS */

section p, .hero {
    font-size: calc(20.43902px + .68293vw);
}

/* Home */

.logo {
    margin-top: 55svh;
    margin-bottom: 30px;
}

.logo svg {
    width: 100%;
}

/* Captions */

.caption {
    font-size: .8125em;
}

/* Carrousel */

.section-carrousel {
    background-color: #E6E3D7;
    padding: 80px 0;
}

.carrousel-container {
    position: relative;
}

.carrousel-nav {
    position: absolute;
    inset: 0;
}

.carrousel-nav div {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
}

.btn-prev {
    padding-left: 10vw;
}

.btn-next {
    padding-right: 10vw;
}

.flickity-page-dots {
  display: none;
}

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 4px;
  background: var(--black);
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* ==========================================================================
Legals Template
========================================================================== */

  .page-template-template-legals header,
  .page-template-template-legals footer {
		display: none;
	}

 .page-template-template-legals  .page-content {
    padding-top: calc(8vw + 30px);
  }

	.close-btn {
		position: fixed;
		top: 10px;
		right: 10px;
    display: block;
    width: 60px;
    height: 60px;
	}

  .close-btn, .close-btn svg {
		cursor: pointer;
  }

/* ==========================================================================
Theme Media Queries
========================================================================== */


/* Desktop Computer based on screen width */
@media screen 
  and (min-width: 1567px) {	
}

/* Large Laptop based on screen width */
@media screen 
  and (min-width: 1281px) 
  and (max-width: 1566px) {	
}

/* Small Laptop based on screen width */
@media screen 
  and (min-width: 1081px) 
  and (max-width: 1280px) {	
}

/* iPad Landscape based on screen width */
@media screen 
  and (min-width: 769px) 
  and (max-width: 1080px)  {	
}

/* iPad Portrait based on screen width */
@media screen 
  and (max-width: 768px)  {	
}

/* iPhone Portrait based on screen width */
@media screen 
  and (max-width: 480px)  {	

    .container {
      margin: 0 15px;
    }

    .hero {
      display: none;
    }

    .hero-mobile {
      text-align: right;
      margin: 12px 0 !important;
      font-size: 1em;
    }

    .logo {
      margin-top: 15px;
      margin-bottom: 0;
    }

    .home-image {
      aspect-ratio: 9 / 11.75;
      margin-bottom: 75px;
    }

    header .booking-btn {
      top: auto;
      bottom: 5px;
      left: 15px;
      right: 15px;
      text-align: center;
      padding: 12px;
      border-radius: 5px;
    }
    
    .location-map {
      width: 100%;
    }

    .section-outside .col-four,
    .section-local .col-four {
      width: calc(5 * var(--col-width) + 4 * 20px);
    }

    .section-outside .col-five,
    .section-local .col-six {
      width: calc(10 * var(--col-width) + 5 * 20px);
    }

    /* Slider */

    .section-slider {
      background-color: #E6E3D7;
      padding: 40px 0;
    }

    .section-slider {
      display: flex;
      overflow-x: auto;
      white-space: nowrap;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .slider-cell {
        min-width: calc(9 * var(--col-width) + 8 * 15px);
        margin-right: 15px; 
    }

    .slider-cell:first-of-type {
        margin-left: 15px;
    }


    /* Footer */

    .footer-top {
      padding-top: 75px;
    }

    .footer-top br {
      display: none;
    }

    .footer-bottom {
      font-size: 1em;
      margin-bottom: 50px;
    }

    .footer-bottom.flex, .footer-bottom.flex .flex, .footer-bottom span {
      display: block;
    }

    .footer-bottom .col-six {
      width: 100%;
    }

    .footer-bottom span {
      display: block;
      margin-bottom: 15px;
      
    }

    .footer-bottom .flex a.footer-link {
      margin-left: 0;
    }

}

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
  and (min-device-width : 320px) 
  and (max-device-width : 480px) {
}

/* Smartphones (landscape) ----------- */
@media only screen 
  and (min-width : 321px) {
}

/* Smartphones (portrait) ----------- */
@media only screen 
  and (max-width : 320px) {
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
  and (min-device-width : 768px) 
  and (max-device-width : 1024px) {
}

/* iPads (portrait) ----------- */
@media only screen 
  and (min-device-width : 768px) 
  and (max-device-width : 1024px) 
  and (orientation : portrait) {
}

/* iPads (landscape) ----------- */
@media only screen 
  and (min-device-width : 768px) 
  and (max-device-width : 1024px) 
  and (orientation : landscape) {
}


/* iPad3 ----------- */

/* Portrait */
@media only screen 
  and (min-device-width : 768px) 
  and (max-device-width : 1024px) 
  and (orientation : portrait) 
  and (-webkit-min-device-pixel-ratio : 2) {
}

/* Landscape */
@media only screen 
  and (min-device-width : 768px) 
  and (max-device-width : 1024px) 
  and (orientation : landscape) 
  and (-webkit-min-device-pixel-ratio : 2) {
}

/* iPhone 4 and 4S ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2) {
}

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
}

/* Phone 5, 5S, 5C and 5SE ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {
}

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
}

/* ----------- iPhone 6, 6S, 7 and 8 ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2) { 
}

/* Portrait */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) { 
}

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) { 
}

/* ----------- iPhone 6+, 7+ and 8+ ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
}

/* Portrait */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 
}

/* Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) {
}

/* ----------- iPhone X ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
}

/* Portrait */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 
}

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 
}


/* Samsung Galaxy S3 ----------- */

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-height: 640px) 
  and (orientation : portrait) 
  and (-webkit-device-pixel-ratio: 2) {
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-height: 640px) 
  and (orientation : landscape) 
  and (-webkit-device-pixel-ratio: 2) {
}

/* Samsung Galaxy S4 ----------- */

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-height: 640px) 
  and (orientation : portrait) 
  and (-webkit-device-pixel-ratio: 3) {
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-height: 640px) 
  and (orientation : landscape) 
  and (-webkit-device-pixel-ratio: 3) {
}