*{
  box-sizing:border-box;
  -webkit-box-sizing: border-box;
  font-family: "Josefin Sans", serif;
  font-weight: 300;
  font-style: normal;
  scroll-behavior: smooth;
}

/* css reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
    --primary-color: #00a9e9;
    --secondary-color: #4944b8;
    --terciary-color: ;
    --black: black;
    --white: #f4f4f4;
    --sand: #F3E8DE;
}

/* Page css */
  
  a {
    color: var(--black);
  }

  p{
    font-family: "Roboto", serif;
    font-weight: 300;
    color: #000;
  }

  .wpp-link{
    font-size: 1.5rem;
    text-decoration: none;
    margin-left: 10px;
    font-family: "Roboto", serif;
    font-weight: 100;
    margin-bottom: 0;
  }

  h4{
    margin-top: 10px;
    font-size: 2rem;
  }

  .margin-left{
    margin-left: 10px;
  }

  .wpp-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
  }

  .row-justify-center{
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .header {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    position: fixed;
    width: 100%;
    z-index: 3;
  }
  
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
  }
  
  .header li a {
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
  }
  
  .header li a:hover,
  .header .menu-btn:hover {
    background-color: #f4f4f4;
  }
  
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
  }
  
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  
  .header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 240px;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }

  .banner {
    height: 60vh;
    overflow: hidden; 
    filter: grayscale(0%);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1; 
  }

  .banner h1{
    position: absolute;
    font-size: 4rem;
    color: var(--white);
    z-index: 2;
  }
  
  .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% 70%;
  }  

  .about-us{
    height: auto;
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 80px;
  }

  .contacts{
    height: auto;
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .contacts-row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
  
  .contacts-text {
    margin-left: 10px;
    font-family: "Roboto", serif;
    font-weight: 300;
  }

  .contacts-area{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contacts-area h3{
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .contacts-nodes{
    margin-top: 10px;
  }

  .contacts-icon{
    width: 30px;
    height: 30px;
  }

  .mosaic-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-gap: 10px;
    max-width: 1200px;
    width: 100%;
  }
  
  .mosaic-item {
    overflow: hidden;
    border-radius: 8px;
  }
  
  .mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .mosaic-item.portrait {
    grid-row: span 2; 
  }
  
  .mosaic-item.landscape {
    grid-column: span 2; 
  }

  .accomodations{
    height: auto;
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #e5fee8;
    padding-top: 80px;
  }

  .container {
    width: 60%;
  }

  .container h2 {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .container p{
    font-size: 1.25em;
    font-weight: lighter;
    line-height: 30px;
  }

  /* Carrousel */

  .mySlides {
    display: none;
  }

  .slideshow{
    max-width: 1000px;
    position: relative;
    margin: auto;
    margin-top: 50px;
  }

  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }

  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: #717171;
  }

  footer {
    background-color: var(--black);
    text-align: center;
    padding: 20px;
  }
  
  footer p{
    color: var(--white);
  }
  
  /* 48em = 768px */
  
  @media (min-width: 48em) {
    .header li {
      float: left;
    }
    .header li a {
      padding: 20px 30px;
    }
    .header .menu {
      clear: none;
      display: flex;
      flex-direction: row;
      justify-content: center;
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }
  }
  
  @media (max-width: 48em) {
    .banner {
      height: 40vh;
      text-align: center;
    }
    .container{
      width: 90%;
      display: block;
    }
    .tile{
      margin-bottom: 1rem;
    }
    .accomodations{
      padding: 50px 5%;
    }
    .contacts {
      padding: 20px;
    }
    iframe {
      width: 100%;
      height: 300px;
      margin-bottom: 20px;
    }
    .contacts-row {
      flex-direction: column;
      text-align: center;
    }
    .row img {
      margin-bottom: 10px;
    }
    .contacts-nodes{
      align-items: start;
    }
    .contacts-area h3{
      display: none;
    }
    .contacts-icon{
      width: 25px;
      height: 25px;
    }
    .contacts-nodes p{
      font-size: 1.25rem;
    }
    .wpp-link{
      font-size: 1.25rem;
    }
  }