@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: "millanovaregular";
  src:
    url("../fonts/millanova-webfont.woff2") format("woff2"),
    url("../fonts/millanova-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

:root {
  --poppins: "Poppins", sans-serif;
  --playfair: "Playfair Display", serif;
  --green: #076874;
  --green-light: #1cbf8a;
  --bianchi: #c4eef3;
  --blue: #023f59;
  --millanova: "millanovaregular";
  --olive: #b3c6b6;
  --cream: #fff3e1;
  --brown: #a7705c;
  --gray: #606060;
  --aqua: #dae6dd;
  --emerald: #dae6dd;
}

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%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
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;
}

img[data-sizes="auto"] {
  display: block;
  width: 100%;
}

header {
  position: relative;
}

.menu-box {
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
}

.active {
  color: var(--green-light) !important;
  text-shadow: 1px 1px 2px #191717a3;
}

.active:hover {
  padding-left: 0px !important;
  cursor: default;
}

.menu-box::before {
  content: "";
  width: 100%;
  height: 150%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear,
      left top, left bottom,
      from(rgba(0, 0, 0, 0.24135591736694673)),
      to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.24135591736694673) 0%,
      rgba(0, 0, 0, 0) 100%);
}

.menu-content {
  position: relative;
  z-index: 10;
}

.menu-button {
  font-family: var(--poppins);
  text-transform: uppercase;
  font-weight: 400;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}

.menu-button::after {
  position: absolute;
  content: "";
  bottom: -13px;
  left: 0px;
  width: 0%;
  height: 10px;
  background-image: url("../assets/images/layout/waves-deco.svg");
  background-position: left;
  background-size: auto 8px;
  background-repeat: repeat-x;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  border-radius: 0 20px 20px 0;
}

.menu-button:hover::after {
  width: 100%;
}

.reservation-button {
  display: inline-block;
  border-radius: 30px;
  background-color: #ff9900;
  padding-left: 15px;
  padding-right: 15px;
  font-family: var(--poppins);
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  line-height: 30px;
  text-decoration: none;
  margin-left: 10px;
  margin-right: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.reservation-button:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6) inset;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6) inset;
}

.bg-bianchi {
  background-color: var(--bianchi);
}

.bg-emerald {
  background-color: var(--emerald);
}

.bg-olive {
  background-color: var(--olive);
}

.bg-green {
  background-image: url("../assets/images/layout/green_back.svg");
  background-position: center center;
  background-size: cover;
  position: relative;
}

.bg-brown {
  background: var(--brown);
}

.bg-cream {
  background: var(--cream);
}

.bg-blue {
  background-color: #1477a9;
}

.bg-yellow {
  background-color: #e6952a;
}

.bg-green::before,
.credits::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  background: -webkit-gradient(linear,
      left top, left bottom,
      from(rgba(0, 0, 0, 0.24135591736694673)),
      to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.24135591736694673) 0%,
      rgba(0, 0, 0, 0) 100%);
  top: 0px;
  left: 0px;
}

.social-networks {
  background-color: #fff3e1;
  border-top-right-radius: 5vh;
  padding-top: 50px;
  padding-bottom: 50px;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.social-networks::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  top: 0px;
  left: 0px;
  background: -webkit-gradient(linear,
      left top, right top,
      from(rgba(0, 0, 0, 0.25)),
      to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 50;
}

.social-content {
  z-index: 100;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.img-full {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 50;
  display: block;
}

.img-resp {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.credits {
  background-image: url("../assets/images/layout/leaft.jpg");
  background-size: cover;
  background-position: center center;
  position: relative;
}

.logo-footer {
  max-width: 210px;
}

.credit-box {
  background-color: rgb(9 34 34 / 70%);
  border-radius: 100px 100px 0px 0px;
  padding-left: 5%;
}

.logo-footer-box {
  padding-left: 5%;
}

.lg-tittle {
  font-family: var(--playfair);
  font-size: clamp(25px, 3.6vw, 60px);
  line-height: clamp(25px, 3.6vw, 60px);
  font-weight: 300;
}

.md-tittle {
  font-family: var(--playfair);
  font-size: clamp(25px, 2.8vw, 40px);
  line-height: clamp(25px, 2.8vw, 40px);
  font-weight: 300;
}

.sm-tittle {
  font-family: var(--playfair);
  font-size: clamp(16px, 2.8vw, 24px);
  line-height: clamp(16px, 2.8vw, 24px);
  font-weight: 300;
}

.xs-tittle {
  font-family: var(--playfair);
  font-size: 19px;
  line-height: 19px;
  font-weight: 300;
}

.txt-white {
  color: #ffffff;
}

.txt-cream {
  color: var(--cream);
}

.txt-brown {
  color: var(--brown);
}

.txt-green {
  color: var(--green);
}

.txt-green-light {
  color: var(--green-light);
}

.txt-gray {
  color: var(--gray);
}

.txt-blue {
  color: var(--blue);
}

.txt-general {
  font-family: var(--poppins);
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
}

.txt-xs-general {
  font-family: var(--poppins);
  font-size: 11px;
  font-weight: 300;
  line-height: 11px;
}

.txt-sm-general {
  font-family: var(--poppins);
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
}

.txt-xxs {
  font-family: var(--poppins);
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
}

.txt-md-general {
  font-family: var(--poppins);
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
}

.txt-sm-general .link {
  color: var(--green-light);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.txt-sm-general .link:hover,
.txt-sm-general .link:active {
  color: var(--green);
}

.newsletter-email {
  height: 45px;
  border-radius: 100px;
  padding: 10px 10%;
  font-family: var(--poppins);
  color: var(--green);
  font-size: 14px;
}

.newsletter-email::-moz-placeholder {
  color: var(--green);
}

.newsletter-email::-webkit-input-placeholder {
  color: var(--green);
}

.newsletter-email:-ms-input-placeholder {
  color: var(--green);
}

.newsletter-email::-ms-input-placeholder {
  color: var(--green);
}

.newsletter-email::placeholder {
  color: var(--green);
}

.newsletter-button {
  height: 45px;
  border-radius: 100px;
  padding: 10px 30px;
  font-family: var(--poppins);
  color: #ffffff;
  font-size: 14px;
  width: 100%;
}

.newsletter-button:hover {
  background-color: var(--blue) !important;
  color: var(--green-light) !important;
}

.social-links a {
  color: var(--green);
  font-size: 22px;
  margin-right: 10px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  -webkit-transform: scale(1);
  transform: scale(1);
  display: inline-block;
}

.social-links a:hover {
  color: var(--green-light);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.resp-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  right: 20px;
  top: 20px;
  background-color: var(--green-light);
  border: 2px solid var(--green-light);
  width: 55px;
  height: 55px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  -webkit-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 350;
  color: #ffffff;
  font-size: 20px;
  border-radius: 100px;
}

.resp-open:hover,
.resp-open:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.resp-menu {
  position: fixed;
  width: 100%;
  height: 0vh;
  z-index: 300;
  background-color: rgb(35 76 80 / 85%);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  opacity: 0;
}

.open-menu {
  height: 100vh;
  opacity: 1;
}

.menu-mobil {
  display: none;
}

.mobil-open {
  position: fixed;
  border-radius: 30px;
  background-color: var(--green);
  max-width: 24rem;
  z-index: 350;
  -webkit-animation: openAnimation 1.2s ease-in-out;
  animation: openAnimation 1.2s ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 340;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes openAnimation {
  0% {
    top: 20px;
    right: 20px;
    height: 55px;
    width: 55px;
  }

  40% {
    height: 400px;
    width: 55px;
    top: 80px;
  }

  100% {
    width: calc(100% - 40px);
    height: 400px;
    top: 80px;
    right: 20px;
  }
}

@keyframes openAnimation {
  0% {
    top: 20px;
    right: 20px;
    height: 55px;
    width: 55px;
  }

  40% {
    height: 400px;
    width: 55px;
    top: 80px;
  }

  100% {
    width: calc(100% - 40px);
    height: 400px;
    top: 80px;
    right: 20px;
  }
}

.mobil-open .resp-menu-content a {
  -webkit-animation: reveallink 1s;
  animation: reveallink 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: var(--tdelay);
  animation-delay: var(--tdelay);
  display: block;
  padding-left: 0px;
  -webkit-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
}

@-webkit-keyframes reveallink {
  0% {
    opacity: 0;
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes reveallink {
  0% {
    opacity: 0;
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.mobil-open .resp-menu-content a:hover,
.mobil-open .resp-menu-content a:active {
  color: var(--green-light);
  padding-left: 10px;
}

.mobil-close {
  position: fixed;
  border-radius: 30px;
  background-color: var(--green);
  max-width: 24rem;
  z-index: 350;
  -webkit-animation: closeAnimation 0.8s ease-in-out;
  animation: closeAnimation 0.8s ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 340;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
}

.form-flield {
  font-family: var(--poppins);
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
}

.form-flield .form-control {
  color: var(--gray);
  font-weight: 400;
  font-family: var(--poppins);
  font-size: 14px;
}

.form-flield button {
  color: #ffffff !important;
  font-weight: 400;
  font-family: var(--poppins);
  font-size: 15px;
  line-height: 30px;
}

@-webkit-keyframes closeAnimation {
  0% {
    width: calc(100% - 40px);
    height: 400px;
    top: 80px;
    right: 20px;
  }

  40% {
    height: 400px;
    width: 55px;
    top: 80px;
  }

  100% {
    top: 20px;
    right: 20px;
    height: 55px;
    width: 55px;
  }
}

@keyframes closeAnimation {
  0% {
    width: calc(100% - 40px);
    height: 400px;
    top: 80px;
    right: 20px;
  }

  60% {
    height: 400px;
    width: 55px;
    top: 80px;
  }

  100% {
    top: 20px;
    right: 20px;
    height: 55px;
    width: 55px;
  }
}

.mobil-close .resp-menu-content a {
  -webkit-animation: hidelink 1s;
  animation: hidelink 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes hidelink {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes hidelink {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.resp-menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: calc(100% - 80px);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 40px;
}

.resp-menu-content a {
  display: block;
  font-family: var(--playfair);
  font-size: 30px;
  line-height: 30px;
  font-weight: 300;
  color: #ffffff;
}

.back-index {
  padding-top: 17%;
  background-image: url("../assets/images/index/header.jpg");
  background-size: cover;
  background-position: bottom right;
}

.back-contact {
  padding-top: 17%;
  background-image: url("../assets/images/contacto/header.jpg");
  background-size: cover;
  background-position: bottom right;
}

.back-rooms {
  padding-top: 17%;
  background-image: url("../assets/images/rooms/header-habitaciones.jpg");
  background-size: cover;
  background-position: 75% top;
}

.back-plane {
  padding-bottom: 40%;
  background-image: url("../assets/images/huatulco/plane.jpg");
  background-size: cover;
  background-position: center right;
}

.back-bus {
  padding-bottom: 40%;
  background-image: url("../assets/images/huatulco/bus.jpg");
  background-size: cover;
  background-position: top right;
}

.back-huatulco {
  padding-top: 17%;
  background-image: url("../assets/images/huatulco/header.jpg");
  background-size: cover;
  background-position: 75% top;
  overflow: hidden;
  position: relative;
}

.back-concept {
  padding-top: 17%;
  background-image: url("../assets/images/concept/header.jpg");
  background-size: cover;
  background-position: right bottom;
  overflow: hidden;
  position: relative;
}

.intro-index {
  padding-bottom: 70%;
  padding-top: 10%;
}

.intro-rooms {
  padding-bottom: 40%;
  padding-top: 15%;
}

.camera-icon {
  font-size: 22px;
  border-right: 1px solid #ffffff;
  padding-right: 9px;
  margin-right: 11px;
  vertical-align: middle;
}

.green-leaf-back {
  background-color: #78b7be;
  background-image: url("../assets/images/layout/green-leaf.svg");
  background-repeat: repeat-x;
  background-size: auto 400px;
  border-top: 4px solid white;
  padding-bottom: 7%;
}

.tittle-handwrite {
  font-family: var(--millanova);
  color: #ffffff;
  text-align: center;
  font-size: clamp(20px, 5vw, 50px);
  line-height: clamp(85px, 5vw, 150px);
  margin-top: 7%;
}

.round-corners {
  border-radius: 3vw;
  overflow: hidden;
}

.round-corners-md {
  border-radius: 2vw;
  overflow: hidden;
}

.experience-box {
  max-width: 380px;
}

.intro-contact {
  max-width: 380px;
}

.shadow-left,
.shadow-bottom,
.shadow-right {
  position: relative;
}

.shadow-left::before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  z-index: 100;
  -webkit-box-shadow: inset 11px -2px 12px -10px rgba(0, 0, 0, 0.63);
  box-shadow: inset 11px -2px 20px -10px rgba(0, 0, 0, 0.63);
}

.shadow-right::before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  z-index: 100;
  -webkit-box-shadow: inset -20px 0px 20px -19px rgba(0, 0, 0, 0.63);
  box-shadow: inset -20px 0px 20px -19px rgba(0, 0, 0, 0.63);
}

.shadow-bottom::before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  z-index: 100;
  -webkit-box-shadow: inset 0px -20px 20px -19px rgba(0, 0, 0, 0.63);
  box-shadow: inset 0px -20px 20px -19px rgba(0, 0, 0, 0.63);
}

.rooms-box {
  border-top: 4px solid white;
  padding-top: 5%;
  padding-bottom: 5%;
}

.room-info-box {
  position: relative;
  background-color: var(--cream);
  border-top-left-radius: 2vw;
  border-bottom-left-radius: 2vw;
}

.room-info-box::before {
  border-top-left-radius: 2vw;
  border-bottom-left-radius: 2vw;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 20;
  content: "";
  -webkit-box-shadow: 4px 9px 16px -2px rgba(0, 0, 0, 0.4);
  box-shadow: 4px 9px 16px -2px rgba(0, 0, 0, 0.4);
}

.room-pic {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-right-radius: 2vw;
  border-bottom-right-radius: 2vw;
}

.room-content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}

.btn-green {
  display: inline-block;
  background-color: var(--green);
  font-family: var(--poppins);
  font-style: italic;
  color: #fff3e1;
  font-weight: 300;
  font-size: 13px;
  padding: 5px 15px;
  border-radius: 5px;
  line-height: 25px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.btn-green:hover {
  background-color: #053f47;
}

.btn-brown {
  display: inline-block;
  background-color: #a65e19;
  font-family: var(--poppins);
  font-style: italic;
  color: #fff3e1;
  font-weight: 300;
  font-size: 13px;
  padding: 5px 15px;
  border-radius: 5px;
  line-height: 25px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.btn-brown:hover {
  background-color: #5e3610;
}

.waves-icon {
  width: 40px;
  height: auto;
}

.niru-back {
  background-image: url("../assets/images/index/niru.jpg");
  background-size: cover;
  background-position: center center;
}

.niru-tittle {
  padding-top: 15%;
  padding-bottom: 50%;
}

.niru-footer {
  background: rgb(0, 0, 0);
  background: linear-gradient(183deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.2679665616246498) 100%);
}

.light-green-leaf {
  background-image: url("../assets/images/layout/leaft-sm.svg");
  background-size: cover;
  background-position: top center;
}

.green-palms {
  background-image: url("../assets/images/layout/palms.jpg");
  background-size: cover;
  background-position: center center;
  border-radius: 2vw;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4) !important;
}

.trip-logo {
  display: block;
  background-color: #ffffff;
  width: 180px;
  height: 180px;
  padding: 30px;
  border-radius: 200px;
  position: absolute;
  right: 30px;
  top: -90px;
}

.home-slider {
  height: 100%;
  width: 100%;
  border-radius: 2vw;
  overflow: hidden;
  min-height: 400px;
  background-image: url("../assets/images/index/video-back.jpg");
  background-position: center center;
  background-size: cover;
}

.home-slider>div:first-of-type {
  height: 100%;
}

.clock-icon {
  width: 40px;
  height: auto;
}

.check-time {
  font-weight: 600;
  color: var(--brown);
}

.check-border {
  border-right: 1px solid var(--green);
}

.room-front {
  border-top-left-radius: 2vw;
  border-top-right-radius: 2vw;
}

.room-info {
  margin-top: -50px;
}

.room-name-box {
  background-color: var(--cream);
  position: relative;
  border-bottom-left-radius: 2vw;
  border-top-left-radius: 2vw;
}

.room-name-box::before {
  -webkit-box-shadow: 4px 9px 16px -2px rgba(0, 0, 0, 0.4);
  box-shadow: 4px 9px 16px -2px rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 20;
  content: "";
  border-bottom-left-radius: 2vw;
}

.gallery-box {
  height: 47px;
  background-color: rgb(50 17 5 / 68%);
  border-top-right-radius: 50px;

  padding-left: 20px;
  padding-right: 40px;
  color: #ffffff;
  font-family: var(--poppins);
  font-size: 12px;
  position: relative;
  overflow: hidden;
}

.gallery-box::before {
  content: "";
  position: absolute;
  z-index: 20;
  width: 0%;
  height: 100%;
  background-color: var(--green-light);
  top: 0px;
  left: -20px;
  -webkit-transform: skewX(20deg);
  transform: skewX(20deg);
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

.gallery-box:hover::before {
  width: 110%;
  -webkit-transform: skewX(0deg);
  transform: skewX(20deg);
}

.gallery-buttons {
  position: relative;
  z-index: 30;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  color: #ffffff;
}

.gallery-icon {
  font-size: 20px;
}

.features-box {
  height: calc(100% - 47px);
  background-color: var(--olive);
}

.max-ocupation {
  font-family: var(--poppins);
  font-size: 13px;
  font-weight: 300;
  line-height: 17px;
  font-style: italic;
  color: var(--gray);
  margin-top: 40px;
  position: relative;
  padding-top: 10px;
}

.max-ocupation::before {
  content: "";
  border-top: 1px solid var(--brown);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 70%;
}

.flow {
  position: relative;
  z-index: 100;
}

.bg-aqua-rooms {
  background-color: var(--aqua);
  position: relative;
}

.bg-aqua-rooms::before {
  content: "";
  background: #ffffff;
  width: 100%;
  height: 100px;
  top: 0px;
  bottom: 0px;
  z-index: 20;
  position: absolute;
}

.bg-purple-flower {
  background-image: url(../assets/images/layout/purple.svg);
  background-size: cover;
  background-position: center center;
}

.bg-green-flower {
  background-image: url(../assets/images/layout/green.svg);
  background-size: cover;
  background-position: center center;
  background-color: #3b685c;
}

.bg-emerald-flower {
  background-image: url(../assets/images/layout/emerald.svg);
  background-size: cover;
  background-position: center center;
}

.bg-green2-reverse-flower {
  background-image: url(../assets/images/layout/green2.svg);
  background-size: cover;
  background-position: center center;
}

.bg-brown-flower {
  background-image: url(../assets/images/layout/brown.svg);
  background-size: cover;
  background-position: center center;
}

.bg-orange-flower {
  background-image: url(../assets/images/layout/orange.svg);
  background-size: cover;
  background-position: center center;
}

.bg-blue-flower {
  background-image: url(../assets/images/layout/blue.svg);
  background-size: cover;
  background-position: center center;
}

.mini-intro {
  max-width: 250px;
}

.spa-content {
  position: absolute;
  bottom: 100px;
  left: 0px;
  width: 100%;
}

.plus-class {
  font-family: var(--millanova);
  font-size: clamp(22px, 2vw, 40px);
  line-height: clamp(22px, 2vw, 40px);
  color: #8e9da3;
}

.round-corners-full {
  border-radius: 3vw;
  overflow: hidden;
}

.eathcheck-box {
  position: absolute;
  bottom: 0px;
  right: 15%;
  background-color: #ffffff;
  width: 12%;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 2%;
  border-top-left-radius: 10vw;
  border-top-right-radius: 10vw;
  padding-bottom: 2%;
}

.two-columns {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 150px;
  -moz-column-gap: 150px;
  column-gap: 150px;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}

.two-columns::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  border-left: 1px solid #606060;
  height: 100%;
}

.pelican-back {
  background-image: url(../assets/images/huatulco/pelicano.jpg);
  background-position: bottom right;
  padding-top: 20%;
  background-size: cover;
  overflow: hidden;
  overflow: hidden;
}

.room-back {
  background-image: url(../assets/images/concept/rooms.jpg);
  background-position: bottom right;
  padding-top: 20%;
  background-size: cover;
  overflow: hidden;
  overflow: hidden;
}

.toast-back {
  background-image: url(../assets/images/concept/toast.jpg);
  background-position: top center;
  padding-top: 20%;
  background-size: cover;
  overflow: hidden;
  overflow: hidden;
}

.exprerience-box {
  margin-top: -40px;
  position: relative;
  z-index: 100;
}

.boat-back {
  background-image: url(../assets/images/huatulco/boat.jpg);
  background-position: center center;
  padding-top: 20%;
  background-size: cover;
}

.huatulco-back {
  background-image: url(../assets/images/huatulco/huatulco.jpg);
  background-position: top right;
  padding-top: 20%;
  background-size: cover;
  overflow: hidden;
}

.hux-arch {
  padding-top: 40%;
  background-color: rgb(29 9 37 / 76%);
  border-top-right-radius: 20vw;
  padding-left: 15%;
  padding-right: 15%;
  padding-bottom: 20%;
}

.hux-arch-green {
  padding-top: 40%;
  background-color: rgb(1 62 42 / 84%);
  border-top-left-radius: 20vw;
  padding-left: 15%;
  padding-right: 15%;
  padding-bottom: 20%;
  text-align: right;
}

.diving-text {
  position: absolute;
  top: 50%;
  width: 100%;
}

.hux-facts {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 20;
  -webkit-transform: translate(0px, -20%);
  transform: translate(0px, -20%);
}

.connectivity-tittle {
  background-color: #ffffff;
  margin-top: -100px;
  position: relative;
  border-top-left-radius: 2vw;
  color: #055058;
  position: relative;
}

.connectivity-tittle::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  border-top-left-radius: 2vw;
  -webkit-box-shadow: 4px 9px 16px -2px rgba(0, 0, 0, 0.4);
  box-shadow: 4px 9px 16px -2px rgba(0, 0, 0, 0.4);
}

.table> :not(caption)>*>* {
  background-color: transparent !important;
  color: #ffffff !important;
}

.border-connectivity {
  border-top: 1px solid #04a8ba;
}

.intro-aereo {
  max-width: 400px;
}

.aero-back,
.bus-back {
  position: relative;
}

.aero-back::before {
  opacity: 0.8;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(../assets/images/layout/emerald.svg);
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.bus-back::before {
  opacity: 0.8;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(../assets/images/layout/brown.svg);
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.box-hux {
  max-width: 250px;
  padding-bottom: 10%;
}

.rest-subtittle {
  min-height: 50px;
}

.pool-deco {
  padding-top: 200%;
  background-image: url(../assets/images/concept/pool-deco.jpg);
  background-position: center top;
  background-size: cover;
}

.stars-box {
  position: relative;
  margin-bottom: 122px;
}

.stars-box img {
  opacity: 0;
}

.stars-icons i {
  color: #d3bd7f;
  font-size: 20px;
}

.stars-content {
  background-color: var(--brown);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.contact-box {
  margin-top: -100px;
  position: relative;
}

.dmxLightboxOverlay {
  background: #18383ce0 !important;
  background: #18383ce0 !important;
}

.invalid-feedback {
  color: #a2eb7d !important;
}

.cookies-box {
  position: fixed;
  bottom: 0px;
  z-index: 500;
  background-color: #011016b3;
  color: #ffffff;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

.hide-cookie {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.cookies-button {
  max-width: 200px;
}

.video-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#videoniru {
  height: 100%;
}

.play-button {
  color: #ffffff;
  font-size: 66px;
  text-shadow: 2px 2px 3px #000000a6;
}

.play-button:hover {
  color: #1cbf8a;
  font-size: 66px;
  text-shadow: 2px 2px 3px #000000a6;
}

.play-button:active,
.play-button:focus {
  outline: none;
  border: none;
}

.header-terms {
  height: 200px;
}

.txt-general p {
  margin-bottom: 10px;
}

.txt-general ul li {
  list-style: disc;
  margin-bottom: 7px;
  margin-left: 25px;
}

.txt-general a {
  color: var(--green-light);
}

.txt-general a:hover {
  text-decoration: underline;
}

.lang-box {
  right: 35px;
  position: absolute;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.469);
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-top: 5px;
  z-index: 200;
}

.lang-box a {
  color: #ffffff;
  font-family: var(--poppins);
  font-weight: 300;
  font-size: 13px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin-left: 5px;
  margin-right: 5px;
}

.lang-box a:hover {
  color: #79c7c9;
}

.bookinweb_form {
  width: auto;
  background: #FFF;
  display: inline-block;
  border: none !important;
  padding: 5px 5px 30px;
  font-family: var(--poppins);
}

.bookinweb_form input[type=submit] {
  min-width: 300px;
  width: 100%;
  background-color: #1cbf8a !important;
  border: 1px solid #2bbe8b !important;
  color: #FFF;
  font-size: 18px;
  padding: 10px 0;
  cursor: pointer;
  height: 50px;
  border-radius: 50vw;
  text-transform: capitalize;
}

.bookinweb_form label {
  margin-bottom: 5px !important;
  text-transform: capitalize;
}

.bookinweb_form select,
.bookinweb_form input {
  background: #FFF;
  border: 1px solid #d4d3d3 !important;
}

.bookinweb_form .section .room .room_title {
  color: #0094aa;
  font-family: var(--poppins);
}

.offcanvas-backdrop {
  background-color: rgb(35 76 80 / 100%);
}

.virtual-tour {
  background-color: #1cbf8a;
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--poppins);
  font-weight: 300;
  font-size: 13px;
  padding-top: 5px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 5px;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
}

.virtual-tour:hover {
  background-color: var(--blue) !important;
  color: var(--green-light) !important;
}


.lang-button {
  color: #ffffff;
  font-family: var(--poppins);
  font-weight: 300;
  font-size: 13px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
  background-color: rgba(0, 0, 0, 0.469);
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
}

.lang-button:hover {
  color: #2bbe8b;
}

.head-box {
  position: absolute;
  right: 35px;
  top: 0px;
  padding-left: 10px;
  padding-right: 10px;
  z-index: 200;
}

@media (max-width: 1399.98px) {
  .pool-deco {
    padding-top: 207%;
  }
}

@media (max-width: 1199.98px) {
  .back-index {
    background-image: url(../assets/images/index/niru-1100.jpg);
  }

  .pool-deco {
    padding-top: 217%;
  }
}

@media (max-width: 991.98px) {
  .main-logo {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 40%;
  }

  .credits {
    background-image: url("../assets/images/layout/md-leaft.jpg");
  }

  .intro-index {
    padding-bottom: 60%;
    padding-top: 20%;
  }

  .round-corners {
    border-radius: 0px;
  }

  .green-leaf-back {
    padding-bottom: 0%;
  }

  .exprerience-box {
    margin-top: 0px;
    position: relative;
    z-index: 100;
  }

  .contact-box {
    margin-top: 0px;
  }

  .trip-logo {
    display: block;
    background-color: #ffffff;
    width: 180px;
    height: 180px;
    padding: 30px;
    border-radius: 200px;
    position: relative;
    right: auto;
    top: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: -90px;
  }
}

@media (max-width: 767.98px) {
  .social-networks {
    background-color: #fff3e1;
    border-top-right-radius: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .social-networks::before {
    display: none;
  }

  .back-index {
    background-image: url(../assets/images/index/niru-1100.jpg);
  }

  .back-rooms {
    padding-top: 90%;
  }

  .mini-intro {
    max-width: 100%;
    text-align: center;
  }

  .two-columns {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0px;
    -moz-column-gap: 0px;
    column-gap: 0px;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .two-columns::after {
    content: "";
    display: none;
  }

  .pelican-back,
  .huatulco-back,
  .room-back,
  .toast-back {
    background-image: none;
    background-position: bottom right;
    padding-top: 0%;
    background-size: cover;
  }

  .hux-arch {
    padding-top: 3rem;
    background-color: #ffffff;
    border-top-right-radius: 0vw;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    padding-bottom: 3rem;
  }

  .hux-arch-green {
    padding-top: 3rem;
    background-color: #ffffff;
    border-top-left-radius: 0vw;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    padding-bottom: 3rem;
    text-align: left;
  }

  .hux-arch-green .txt-white,
  .hux-arch .txt-white {
    color: var(--gray);
  }

  .hux-arch-green h2,
  .hux-arch h2 {
    color: var(--brown) !important;
  }

  .hux-facts {
    position: relative;
    top: 0%;
    width: 100%;
    z-index: 20;
    -webkit-transform: translate(0px, -0%);
    transform: translate(0px, -0%);
  }

  .connectivity-tittle {
    background-color: #ffffff;
    margin-top: -0px;
    position: relative;
    border-top-left-radius: 0vw;
    color: #055058;
    position: relative;
  }

  .back-plane,
  .back-bus,
  .boat-back {
    padding-bottom: 0%;
    background-image: none;
    padding-top: 0px;
  }

  .intro-contact {
    max-width: 100%;
  }

  .lang-box {
    right: auto;
    left: 20px;
    position: fixed;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.469);
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
    z-index: 200;
    display: block;
  }

  .img-full {
    z-index: 0;
  }

  .head-box {
    position: absolute;
    left: 35px;
    right: auto;
  }
}

@media (max-width: 575.98px) {
  .credits {
    background-image: url("../assets/images/layout/sm-leaft.jpg");
  }

  .room-info {
    margin-top: 0px;
  }

  .room-name-box::before {
    display: none;
  }

  .features-box {
    height: auto;
    background-color: var(--cream);
  }

  .room-name-box {
    border-bottom-left-radius: 0vw;
    border-top-left-radius: 0vw;
  }

  .gallery-buttons {
    position: relative;
    z-index: 30;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    background-color: var(--green-light);
    width: auto;
    float: left;
    border-radius: 2vw;
    font-family: var(--poppins);
    font-weight: 300;
    font-size: 13px;
    padding: 5px 15px;
    border-radius: 5px;
    line-height: 25px;
    height: auto;
  }

  .reserve-mobil {
    margin-top: 20px;
  }
}