/*================  Media queries   ==========================*/
/*===========================================================*/
/*  0 - 600px    Phone
600 - 900px     Tablet portrait
900-1200px      Tablet landscape
[1200 - 1800px] is where our normal styles apply (Desktop)
1800px +        Big desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop		1em = 16px        600px = (600/16) = 37.5em	

 > 600 need to overwrite >900 and >1200  so we start apply the rules in order 1200, 900, 600, 1800 into our styles!

*/
/*=============================================================*/
/*====================================================================*/
/*=================    Utilities     =========================*/
.u-center-text {
  text-align: center; }

.u-right-text {
  text-align: right; }

div.center {
  width: 75%;
  margin: 0 auto; }
  @media only screen and (max-width: 56.25em) {
    div.center {
      width: 90%; } }
  @media only screen and (max-width: 37.5em) {
    div.center {
      width: 95%; } }

div.center-medium {
  width: 60%;
  margin: 0 auto; }

div.center-small {
  width: 55%;
  margin: 0 auto; }
  @media only screen and (max-width: 75em) {
    div.center-small {
      width: 70%; } }
  @media only screen and (max-width: 56.25em) {
    div.center-small {
      width: 80%; } }
  @media only screen and (max-width: 37.5em) {
    div.center-small {
      width: 90%; } }

.u-margin-bottom-small {
  margin-bottom: 2rem; }

.u-margin-bottom-medium {
  margin-bottom: 4rem; }

.u-margin-bottom-big {
  margin-bottom: 8rem; }

.u-margin-top-small {
  margin-top: 2rem; }

.u-margin-top-medium {
  margin-top: 4rem; }

.u-margin-top-big {
  margin-top: 10rem; }

.u-margin-right {
  margin-right: 5.5rem; }
  @media only screen and (max-width: 75em) {
    .u-margin-right {
      margin-right: 2.5rem; } }

.img-responsive {
  width: 100%; }

h2.header-primary {
  border-bottom: 1px solid #b81007;
  margin-bottom: 4rem; }
  @media only screen and (max-width: 56.25em) {
    h2.header-primary {
      margin-bottom: 2rem; } }

h3.header-secondary {
  margin-bottom: 2rem; }
  h3.header-secondary span {
    color: #b81007; }

h2.header-big {
  font-size: 2.8rem; }

hr.line {
  width: 34%;
  margin: 0 auto; }

/*========================  BASE  ==========================*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 65%;
      font-weight: 300; } }

body {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  color: #666;
  box-sizing: border-box; }

.container {
  padding: 0 5rem; }
  @media only screen and (max-width: 56.25em) {
    .container {
      padding: 0 3rem; } }
  @media only screen and (max-width: 37.5em) {
    .container {
      padding: 0 1rem; } }

h1, h2, h3, h4 {
  color: #333;
  text-transform: uppercase;
  font-weight: 300;
  display: block; }

p {
  font-size: 1.5rem; }
  p:not(last-child) {
    margin-bottom: 3rem; }

ul li {
  list-style: none; }

span {
  color: #b81007; }

section {
  margin-bottom: 5rem; }

/*=================    Components     =========================*/
.btn {
  transition: all .5s; }
  .btn__secondary {
    float: right;
    padding: 1rem 4rem;
    color: #f7f7f7;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    background-image: linear-gradient(to right bottom, rgba(224, 66, 58, 0.88), rgba(224, 107, 101, 0.88)); }
    .btn__secondary:hover {
      background-image: linear-gradient(to right bottom, #c42118, rgba(224, 26, 16, 0.88)); }
  .btn__link {
    color: #b81007;
    transition: all .3s; }
    .btn__link:hover {
      color: #870c05; }

.review {
  background-color: #fff;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  padding: 3rem;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
  width: 30%;
  float: left;
  border: 1px solid #fff; }
  @media only screen and (max-width: 75em) {
    .review {
      padding: 1.5rem;
      width: 31%; } }
  @media only screen and (max-width: 56.25em) {
    .review {
      width: 100% !important; } }
  .review-header {
    margin-left: 5rem; }
  .review-text {
    margin: 1.5rem; }
  .review::before {
    content: "\201C";
    position: absolute;
    top: -.75rem;
    left: 0;
    line-height: 1;
    font-size: 13.5rem;
    color: rgba(204, 204, 204, 0.74);
    font-family: sans-serif;
    z-index: 1; }

#map {
  width: auto;
  height: 40rem; }

/*=================   Header   ===================*/
/*====================================================*/
header {
  margin: 5rem auto 5rem;
  max-width: 1170px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all .2s; }
  header .logo {
    float: left;
    width: 22rem;
    height: auto;
    margin-right: 1.5rem;
    padding-top: 2rem;
    cursor: pointer;
    display: block; }
    @media only screen and (max-width: 56.25em) {
      header .logo {
        display: none; } }
  header .logo-res img {
    display: none;
    position: absolute;
    left: 2rem;
    top: 2.5rem;
    z-index: 10;
    width: auto; }
    @media only screen and (max-width: 56.25em) {
      header .logo-res img {
        display: block; } }
    @media only screen and (max-width: 37.5em) {
      header .logo-res img {
        width: 19.5rem; } }

nav.nav {
  float: right;
  background-color: #fff; }
  nav.nav a.icon {
    display: none; }
    @media only screen and (max-width: 56.25em) {
      nav.nav a.icon {
        font-size: 5rem;
        margin-top: -2.5rem;
        float: right;
        display: block; }
        nav.nav a.icon:hover {
          border: none;
          font-size: 5rem; } }
    @media only screen and (max-width: 37.5em) {
      nav.nav a.icon {
        font-size: 4rem; }
        nav.nav a.icon:hover {
          font-size: 4rem; } }
  @media only screen and (max-width: 56.25em) {
    nav.nav.responsive {
      position: relative;
      width: 100%; } }
  nav.nav.responsive a {
    float: none;
    display: block;
    text-align: center; }
    nav.nav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0; }
  nav.nav a {
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px;
    color: #666;
    transition: all .3s;
    margin-left: 5px;
    display: inline-block; }
    nav.nav a:first-child {
      margin: 0; }
    @media only screen and (max-width: 56.25em) {
      nav.nav a {
        display: none;
        font-weight: 600;
        font-size: 1.8rem; } }
    nav.nav a:hover {
      font-size: 1.8rem;
      border-bottom: 2px solid #b81007; }
    nav.nav a.active {
      padding: .3rem;
      margin: .5rem;
      font-size: 1.8rem;
      border-bottom: 2px solid #b81007; }

/*=================   Slider  ===================*/
.slider {
  max-width: 117rem;
  margin: 0 auto;
  margin-bottom: 11rem;
  display: block; }
  @media only screen and (max-width: 37.5em) {
    .slider {
      display: none; } }
  .slider .mySlides {
    display: none; }
  .slider img {
    width: 100%;
    height: auto; }

.animate-fading {
  animation: fading 5s infinite; }

@keyframes fading {
  0% {
    opacity: .5; }
  50% {
    opacity: 1; }
  100% {
    opacity: .5; } }

/*=================  Layout   ===================*/
/*====================================================*/
.row {
  max-width: 117rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
    @media only screen and (max-width: 75em) {
      .row:not(:last-child) {
        margin-bottom: 6rem; } }
    @media only screen and (max-width: 56.25em) {
      .row:not(:last-child) {
        margin-bottom: 4rem; } }
  @media only screen and (max-width: 56.25em) {
    .row {
      /*max-width: ;*/
      padding: 0 3rem; } }

.row::after, .clearfix {
  content: "";
  clear: both;
  display: table; }

[class*="col-"] {
  float: left; }
  [class*="col-"]:not(:last-child) {
    margin-right: 6rem; }
    @media only screen and (max-width: 56.25em) {
      [class*="col-"]:not(:last-child) {
        margin-right: 0;
        margin-bottom: 3rem; } }
  @media only screen and (max-width: 56.25em) {
    [class*="col-"] {
      width: 100% !important; } }

.col-10 {
  width: 80%; }

.col-8 {
  width: 55%; }

.col-6 {
  width: 45%; }

.col-4 {
  width: 28%; }

.col-3 {
  width: 21%; }

.col-right {
  float: right; }

/*=================   Footer  ===================*/
/*====================================================*/
.footer {
  border-top: 2px solid #b81007;
  background-color: #cccccc29;
  padding: 4.5rem 0 0 0; }
  .footer-content {
    max-width: 117rem;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap; }
  .footer p {
    font-style: normal; }
  .footer-p {
    margin-top: 2.5rem;
    font-size: 1.4rem; }
  .footer-address {
    flex: 0 0 40%; }
  .footer-contact {
    flex: 0 0 40%; }
    .footer-contact a {
      color: currentColor; }
      .footer-contact a:hover {
        color: #333; }
  .footer-copyright {
    flex: 0 0 50%; }

/*=================   ABOUT Section  ===================*/
/*====================================================*/
.figure {
  float: left; }

figure .img-1 {
  width: 34rem;
  height: 24rem;
  margin-right: 4rem; }
  @media only screen and (max-width: 75em) {
    figure .img-1 {
      width: 31rem;
      height: 22rem;
      margin-right: 4rem; } }
  @media only screen and (max-width: 56.25em) {
    figure .img-1 {
      width: 28rem;
      height: 21rem;
      margin-right: 3rem; } }
  @media only screen and (max-width: 37.5em) {
    figure .img-1 {
      width: 71%;
      height: 20%; } }

figure .img-2 {
  height: 24rem;
  width: 34rem; }
  @media only screen and (max-width: 75em) {
    figure .img-2 {
      width: 31rem;
      height: 22rem; } }
  @media only screen and (max-width: 56.25em) {
    figure .img-2 {
      width: 28rem;
      height: 21rem; } }
  @media only screen and (max-width: 37.5em) {
    figure .img-2 {
      width: 71%;
      height: auto; } }

/*=================   VILLAS Section  ===================*/
/*====================================================*/
.box {
  background-color: #fff;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
  margin: 5rem; }
  @media only screen and (max-width: 37.5em) {
    .box {
      margin: 0 0 5rem 0; } }
  @media only screen and (min-width: 900px) {
    .box {
      float: left;
      margin-left: 5rem; }
      .box-1 {
        max-width: 38%; }
      .box-2 {
        max-width: 38%; }
      .box li:not(:last-child) {
        margin-right: 1rem; }
      .box li .fa-shower:before {
        font-size: 1.6rem; } }
  @media only screen and (min-width: 1200px) {
    .box {
      float: left;
      max-width: 49.5rem;
      margin-left: 0; }
      .box-1 {
        min-height: 67.4rem; }
      .box-3 {
        min-width: 90%; }
      .box:not(:last-child) {
        margin-right: 4.5rem; } }
  .box .icons ul li {
    display: inline-block;
    font-size: 1.4rem;
    margin-right: 3rem;
    cursor: pointer; }
    .box .icons ul li:hover i {
      opacity: 1;
      font-size: 2.1rem; }
    .box .icons ul li i {
      color: #b81007;
      font-size: 2rem;
      margin-right: 7px;
      cursor: pointer;
      opacity: .75; }

i.facilities-icon {
  font-size: 2rem; }

/*=================   GALLERY Section  ===================*/
/*====================================================*/
nav.gall-nav {
  float: right;
  margin-right: 7rem;
  transition: all .3s;
  overflow: hidden;
  backface-visibility: hidden; }
  nav.gall-nav ul#list_tabs li {
    display: inline-block;
    font-size: 1.75rem; }
    nav.gall-nav ul#list_tabs li:not(:last-child) {
      margin-right: 1.5rem; }
    nav.gall-nav ul#list_tabs li a {
      transition: all .2s; }
      nav.gall-nav ul#list_tabs li a:hover {
        color: #6a1a15;
        font-size: 1.85rem; }

.images-gallery {
  margin-top: -6rem; }

section.gallery img {
  width: 100%;
  float: left;
  transition: all .5s; }

section.gallery video {
  width: 47%;
  float: left;
  padding:1.5rem }

section.gallery video.video1 {
 clear:left; }

img#myImg {
  width: 24%;
  height: 20rem;
  padding: 1.5rem;
  margin-bottom: 3rem;
  transition: all .5s; }
  @media only screen and (max-width: 75em) {
    img#myImg {
      width: 31%;
      height: 21.5rem;
      margin-bottom: 2.5rem; } }
  @media only screen and (max-width: 56.25em) {
    img#myImg {
      width: 45%;
      height: 26rem;
      padding: 1rem;
      margin-bottom: 1rem; } 
section.gallery video {
  width: 90%; }}
  @media only screen and (max-width: 37.5em) {
    img#myImg {
      width: 95%;
      height: auto;
      padding: 4rem;
      margin-bottom: 0; }
section.gallery video {
  width: 90%; }}

.hide {
  display: none; }

.show {
  display: block; }

/*=================   EXTRAS Section  ===================*/
/*====================================================*/
img.extras {
  max-width: 45rem; }
  img.extras-half {
    max-width: 40rem; }

/*=================   BOOK Section  ===================*/
/*====================================================*/
.book {
  float: left;
  background-color: #fff;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
  margin: 2rem;
  width: 28%; }
  .book-1 {
    max-height: 34rem; }
    @media only screen and (max-width: 56.25em) {
      .book-1 {
        max-height: none; } }
  @media only screen and (max-width: 56.25em) {
    .book {
      width: 85%; } }
  .book .btn {
    transition: all .3s; }
    .book .btn__book {
      padding: 1rem 6rem;
      color: #f7f7f7;
      text-transform: uppercase;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      text-decoration: none;
      display: block;
      margin: 0 auto;
      width: 70%;
      text-align: center;
      background-image: linear-gradient(to right bottom, #e0423a, rgba(224, 107, 101, 0.96)); }
      .book .btn__book:hover {
        background-image: linear-gradient(to right bottom, #c42118, rgba(224, 26, 16, 0.88)); }

.table-prices {
  width: 100%;
  margin-top: 6.5rem;
  margin-bottom: 1rem;
  padding: 2.5rem;
  border-spacing: 0;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.2); }
  .table-prices thead th {
    color: #b81007;
    font-size: 1.8rem; }
    .table-prices thead th:first-child {
      border-right: 1px solid #777777; }
  .table-prices tbody th {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: left;
    padding-right: 8rem;
    border-right: 1px solid #777777; }
    @media only screen and (max-width: 75em) {
      .table-prices tbody th {
        padding-right: 2rem; } }
    @media only screen and (max-width: 56.25em) {
      .table-prices tbody th {
        padding-right: 0rem; } }
    .table-prices tbody th span {
      color: #b81007; }
  .table-prices tr.border_bottom th {
    border-bottom: 1px solid #666; }
  .table-prices td {
    padding: 1.5rem;
    padding-right: 4.5rem; }
    @media only screen and (max-width: 75em) {
      .table-prices td {
        padding-right: 1.5rem; } }
    @media only screen and (max-width: 56.25em) {
      .table-prices td {
        padding: 1rem; } }
    .table-prices td.first {
      padding-left: 5rem; }
      @media only screen and (max-width: 75em) {
        .table-prices td.first {
          padding-left: 3.5rem; } }
      @media only screen and (max-width: 56.25em) {
        .table-prices td.first {
          padding-left: 1rem; } }

/*=================   MODAL / Terms & Conditions  ===================*/
/*=============================================================*/
#modal {
  z-index: 30;
  display: none;
  padding-top: 10rem;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4); }
  @media only screen and (max-width: 37.5em) {
    #modal {
      padding: 5rem 2rem; } }

.modal-content {
  margin: auto;
  background-color: #fff;
  position: relative;
  padding: 3rem;
  outline: 0;
  max-width: 75rem; }
  @media only screen and (max-width: 37.5em) {
    .modal-content {
      padding: 1.5rem; } }
  .modal-content span {
    font-size: 2.5rem;
    position: absolute;
    cursor: pointer;
    right: .9rem;
    top: 0;
    transition: all .2s; }
    .modal-content span:hover {
      color: #b81007;
      transform: scale(1.2); }
  .modal-content h3 {
    padding-bottom: 1.5rem; }
