/* ***********************************************************************
* FUENTES
* ************************************************************************/
@font-face {
  font-family: 'Roboto-Bold';
  src: url('./../cookies/fonts/Roboto-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-Regular';
  src: url('./../cookies/fonts/Roboto-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-Medium';
  src: url('./../cookies/fonts/Roboto-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Merriweather-Light';
  src: url('./../fonts/Merriweather-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Merriweather-Bold';
  src: url('./../fonts/Merriweather-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Merriweather-Regular';
  src: url('./../fonts/Merriweather-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Merriweather-LightItalic';
  src: url('./../fonts/Merriweather-LightItalic.ttf') format('truetype');
}
/* ***********************************************************************
* BASE
* ************************************************************************/
:root {
  --black: rgb(0 0 0);
  --container: 1440px;
  --primary-color: rgb(255 255 255);
  --secondary-color: rgb(56 57 54);
  --white: rgb(255 255 255);
}
.mobile-hide {
  display: initial;
}
.mobile-show {
  display: none;
}
@media (max-width:1350px) {
  .mobile-show {
    display: initial;
  }
  .mobile-hide {
    display: none;
  }
}
html,
body {
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
h1 {
  color: #efe8cb;
  font-family: 'Merriweather-Light';
  font-size: clamp(18px, 4vw - 1rem, 24px);
  font-weight: 300;
  letter-spacing: 1.2px;
  line-height: 36px;
  text-align: center;
}
h2 {
  color: #efe8cb;
  font-family: 'Merriweather-Bold';
  font-size: clamp(36px, 4vw - 1rem, 48px);
  font-weight: 700;
  text-align: center;
}
h3 {
  color: #0a6a60;
  font-family: 'Merriweather-Regular';
  font-size: clamp(36px, 4vw - 1rem, 60px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
h4 {
  color: #0a6a60;
  font-family: 'Merriweather-Light';
  font-size: clamp(22px, 4vw - 1rem, 30px);
  font-weight: 300;
  line-height: normal;
}
h5 {
  color: #f5f5f5;
  font-family: 'Merriweather-LightItalic';
  font-size: clamp(24px, 4vw - 1rem, 60px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: normal;
  text-align: center;
}
h6 {
  color: #efe8cb;
  text-align: center;
  font-family: 'Merriweather-Bold';
  font-size: clamp(24px, 4vw - 1rem, 42px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}
p {
  color: #353434;
  font-family: 'Merriweather-Light';
  font-size: clamp(18px, 4vw - 1rem, 22px);
  font-style: normal;
  font-weight: 300;
  line-height: 34px;
}
p > strong {
  font-family: 'Merriweather-Bold';
  font-weight: 700;
}
::selection {
  background-color: #0a6a60;
  color: #ffffff;
}
img {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.container {
  max-width: var(--container);
}
.paragraph {
  margin: 0 auto;
  width: 870px;
}
@media (width <= 1200px) {
  .paragraph {
    width: 100%;
  }
}
.picture img {
  min-height: 500px;
  object-fit: cover;
  width: 100%;
}
.button button {
  padding-block: 8px;
  transition: background-color 300ms ease;
  width: 222px;
}
.button button:hover {
  background-color: transparent;
}
@media (width <= 992px) {
  .button button {
    width: 100%;
  }
}
/* ***********************************************************************
* HEADER
* ************************************************************************/
#header {
  background-color: #0a6a60;
  position: relative;
}
.logo-mobile {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#header .header-destacado {
  position: absolute;
  left: 0;
  bottom: 100px;
  color: #efe8cb;
  background-color: #0a6a60;
  padding: 20px 40px;
  font-weight: 600;
  font-size: 30px;
  font-family: 'Merriweather-Bold';
}
#header .header-info {
  position: relative;
}
@media (max-width:1350px) {
  #header .header-destacado {
    top: unset;
    bottom: 290px;
    padding: 20px 40px 20px 100px;
    font-size: 30px;
  }
  #header .header-info {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #header .header-destacado {
    top: unset;
    bottom: 150px;
    padding: 10px 20px;
    font-size: 18px;
    max-width: 250px;
  }
}
#header .header-info-text {
  text-shadow: 0 0 10px black;
  position: absolute;
  bottom: 100px;
  left: 100px;
}
#header .header-info-text * {
  color: white;
  text-align: left;
}
#header .header-info-text .title {
  font-size: 32px;
  font-family: 'Merriweather-Bold';
}
#header .header-info-text .subtitle {
  font-size: 26px;
  font-family: 'Merriweather-Light';
}
#header .header-info-text .location {
  font-size: 20px;
  font-family: 'Merriweather-Bold';
}
@media (max-width:768px) {
  #header .header-info-text {
    bottom: 20px;
    left: 20px;
  }
  #header .header-info-text .title {
    font-size: 20px;
    line-height: 1.2;
  }
  #header .header-info-text .subtitle {
    font-size: 18px;
    margin-bottom: 5px;
  }
  #header .header-info-text .location {
    font-size: 18px;
  }
}
#header .header-logo {
  position: absolute;
  right: 120px;
  top: 50px;
  max-width: 160px;
}
#header .header-form {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#header .header-form-text {
  margin-bottom: 40px;
}
#header .header-form-text .title {
    color: #efe8cb;
    font-family: 'Merriweather-Bold';
    font-size: clamp(24px, 4vw - 1rem, 32px);
    letter-spacing: 1.2px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 10px;
}
#header .header-form-text .title-form {
    color: #efe8cb;
    font-family: 'Merriweather-Bold';
    font-size: clamp(24px, 3vw - 1rem, 22px);
    letter-spacing: 1.2px;
    line-height: 36px;
    text-align: center;
}
@media (max-width:1350px) {
  #header .header-form-text .title-form {
    margin-bottom: 40px;
    margin-top: 20px;
  }
}
#header .header-form-text .subtitle {
    color: #efe8cb;
    font-family: 'Merriweather-Light';
    font-size: clamp(18px, 3vw - 1rem, 26px);
    text-align: center;
    margin-bottom: 10px;
}
#header .header-form-text .location {
    color: #efe8cb;
    font-family: 'Merriweather-Bold';
    font-size: clamp(18px, 3vw - 1rem, 24px);
    text-align: center;
    margin-bottom: 80px;
}
@media (max-width: 768px) {
  #header .header-logo {
    position: absolute;
    right: 20px;
    top: 20px;
    max-width: 80px;
  }
}
.logo-mobile img {
  width: 120px;
}
@media (width <= 1200px) {
  /*
  #header::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 20%);
    position: absolute;
  }
    */
}
/* #header .logo {
        left: 5%;
        position: absolute;
        top: 5%;
      }
#header .title {
        bottom: 8%;
        left: 5%;
        position: absolute;
        width: 500px;
      } */
/* ***********************************************************************
* FORM
* ************************************************************************/
.form {
  margin: 0 auto;
  width: 450px;
}
#footer-form {
  background-color: #0a6a60;
  position: relative;
  overflow-y: hidden;
}
#pattern {
  overflow-y: hidden;
}
#pattern .pattern {
  overflow-y: hidden;
}
#footer-form .pattern {
  top: 0;
  position: absolute;
  right: 0;
}
.slogan {
  position: absolute;
  bottom: -4%;
  right: 5%;
}
.slogan span {
  color: #736a53;
  font-family: 'Merriweather-Regular';
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form.footer-form {
  width: 75%;
}
@media (width <= 1300px) {
  .form {
    padding: 18px;
    width: 100%;
  }
  .form.footer-form {
    width: 100%;
  }
}
.form.footer-form p {
  color: #efe8cb;
  text-align: center;
  font-family: 'Merriweather-Light';
  font-size: clamp(18px, 4vw - 1rem, 26px);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.3px;
  width: 80%;
  margin: 0 auto;
}
@media (width <= 1200px) {
  .form.footer-form p {
    width: 95%;
  }
}
.input-flex {
  display: flex;
  justify-content: space-between;
}

.form.footer-form form .input-style.sm {
  width: 30%;
}
.form.footer-form form .input-style.md {
  width: 100%;
}
@media (width <= 1200px) {
  .form.footer-form .input-flex {
    flex-wrap: wrap;
  }
  .form.footer-form form .input-style.sm {
    width: 100%;
  }
  .form.footer-form form .input-style.md {
    width: 100%;
  }
}
.form form .input-style.xs {
  width: 35%;
}
.form form .input-style {
  margin-bottom: 18px;
}
.form.footer-form form .input-style {
  margin-top: 24px;
}
.form form .input-style input {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #efe8cb;
  caret-color: var(--black);
  color: #efe8cb;
  font-family: 'Merriweather-Regular';
  font-size: 16px;
  padding-block: 8px;
  position: relative;
  transition: 350ms ease-in;
  width: 100%;
}
.form form .input-style input::placeholder {
  color: #efe8cb;
  font-family: 'Merriweather-Regular';
  font-size: 16px;
}
.form form .input-style input:focus {
  border: 0;
  outline: 2px solid var(--black);
}
.form form .checkbox {
  align-items: end;
  display: flex;
  margin-bottom: 8px;
}
.form form .checkbox:first-of-type {
  margin-top: 24px;
}
.form form .checkbox input[type='checkbox'] {
  appearance: none;
  background-color: none;
  border: 1px solid var(--primary-color);
  border-radius: 0.05em;
  cursor: pointer;
  display: grid;
  height: 1em;
  margin: 0;
  place-content: center;
  transform: translateY(-0.075em);
  width: 1em;
}
.form form .checkbox input[type='checkbox']::before {
  box-shadow: inset 1em 1em var(--primary-color);
  content: '';
  height: 8px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  width: 8px;
}
.form form .checkbox input[type='checkbox']:checked::before {
  transform: scale(1);
}
.form form .checkbox span {
  color: #efe8cb;
  font-family: 'Merriweather-Regular';
  font-size: 11px;
  margin-left: 6px;
}
.form .submit {
  margin-top: 24px;
}
.form .submit input {
  background-color: #efe8cb;
  border: 0;
  border-radius: 6px;
  color: #736a53;
  font-family: 'Merriweather-Bold';
  font-size: clamp(18px, 4vw - 1rem, 24px);
  letter-spacing: 0.2rem;
  padding-block: 6px;
  transition: opacity 300ms ease-in;
  width: 60%;
}
.form.footer-form .submit input {
  margin-top: 24px;
  width: 15%;
}
@media (width <= 1200px) {
  .form.footer-form .submit input {
    margin-top: 8px;
    width: 70%;
  }
}
.form .submit input:hover {
  opacity: 0.8;
}
/* ***********************************************************************
* CAROUSEL + RENDERS
* ************************************************************************/
#renders .owl-carousel .owl-nav {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  display: none;
  justify-content: space-between;
  left: 50%;
  padding: 0 40px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
#renders .owl-carousel .owl-nav button {
  border: none;
  outline: none;
  pointer-events: all;
  width: 60px;
}
#renders .owl-carousel .owl-nav button img {
  width: 100%;
}
#renders .owl-carousel .owl-nav button:nth-child(2) {
  transform: rotate(180deg);
}
#renders .owl-carousel .item {
  height: 44vw;
  min-height: 300px;
  opacity: 0.4;
  position: relative;
  transition: 0.8s;
}
#renders .owl-carousel .item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
#renders .owl-carousel .owl-stage-outer .owl-stage .owl-item.active {
  opacity: 1;
}
#renders .owl-carousel .owl-stage-outer .owl-stage .owl-item.active .item {
  opacity: 1;
  transition: 0.4s;
}
#renders .owl-dots {
  bottom: 8%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: max-content;
}
#renders .owl-dots .owl-dot {
  border: 2px solid rgb(255, 255, 255);
  border-radius: 15px;
  height: 15px;
  margin: 5px 10px;
  width: 15px;
}
#renders .owl-dots .owl-dot.active {
  background: rgb(255, 255, 255);
}
#renders .owl-dots .owl-dot :focus {
  outline: none;
}
/* .custom-nav button {
        background-color: #ffffff;
        border: none;
        margin: 0 8px;
        outline: none;
        pointer-events: all;
        width: 60px;
      }
.custom-nav button img {
        width: 100%;
      }
.custom-nav button:nth-child(2) {
        transform: rotate(180deg);
      } */
@media (width <= 992px) {
  #renders .owl-carousel .owl-nav {
    padding: 0;
  }
  #renders .owl-carousel .owl-nav button img {
    width: 70%;
  }
}
/* ***********************************************************************
* SECTIONS
* ************************************************************************/
@media (max-width:1200px) {
  #section1 .section1-pic {
    display: none;
  }
}
#section2 img {
  min-width: 700px;
}
#pattern {
  position: relative;
  overflow: hidden;
}
#pattern .pattern {
  left: -15%;
  position: absolute;
  top: 0;
}
.icons-container {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  /* display: flex;
  justify-content: flex-end; */
}
.icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  justify-content: center;
  width: 80%;
}
.box-icon {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.box-icon img {
  height: 60px;
  width: auto;
}
@media (max-width: 1200px) {
  .icons {
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .box-icon p {
    font-size: 16px!important;
  }
}
.icons p {
  color: #0a6a60;
  font-family: 'Merriweather-Regular';
  font-size: 24.674px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1.234px;
  line-height: normal;
  margin-top: 24px;
  text-align: center;
}
#banner {
  align-items: center;
  background: url(./../images/banner.jpg) 50% 50% / cover;
  display: flex;
  height: 900px;
  justify-content: center;
}
@media (width <= 1200px) {
  #banner {
    height: 400px;
  }
}
#banner h5 {
  width: 80%;
}
#section3 ul {
  padding-left: 0;
}
#section3 ul li {
  list-style: none;
  font-family: 'Merriweather-Bold';
  font-size: clamp(18px, 4vw - 1rem, 22px);
}
/* ***********************************************************************
* MAP
* ************************************************************************/
@media (max-width:1492px) {
  .mapa {
  width: 100%;
}
}
/* ***********************************************************************
* FOOTER
* ************************************************************************/
footer {
  background-color: #736a53;
  padding-top: 18px;
}
footer p {
  color: var(--white);
  font-size: 0.8rem;
}
footer a {
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-family: 'Roboto-Medium', sans-serif;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
footer a:after {
  background: var(--white);
  bottom: 0;
  content: '';
  height: 2px;
  left: -100%;
  position: absolute;
  transition: left 600ms ease;
  width: 100%;
}
footer a:hover:after {
  left: 0;
}
/* ***********************************************************************
* PÁGINA DE COMPROBANTE
* ************************************************************************/
#comprobante {
  align-items: center;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
}
#comprobante img {
  height: 148px;
}
#comprobante h1 {
  color: var(--black);
  padding: 24px 0;
  text-align: center;
  width: 470px;
}
#comprobante p {
  color: #1c1b1a;
  font-size: 20px;
  text-align: center;
  width: 520px;
}
#comprobante h4 {
  border-bottom: 2px solid rgb(28, 27, 26);
  color: rgb(28, 27, 26);
  font-family: 'Roboto-Regular', sans-serif;
  font-size: 16px;
  padding-bottom: 8px;
  padding-top: 24px;
  text-decoration-color: transparent;
}
#comprobante a {
  color: rgb(34, 34, 34);
  text-decoration: none;
}
#footer p {
  font-size: 0.8rem;
}
#footer a {
  font-family: 'Roboto-Medium';
}
@media (width <= 992px) {
  #comprobante h1,
  #comprobante p {
    width: 100%;
  }
}
/* ***********************************************************************
* MODAL DE POLÍTICA DE PRIVACIDAD
* ************************************************************************/
#informacion .modal-header h5 {
  color: #333333;
  font-family: 'Roboto-Bold';
  font-size: 1rem;
  letter-spacing: 0.02rem;
  text-transform: capitalize;
}
#informacion .modal-content {
  -moz-box-shadow: 0px 17px 19px -8px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 0px 17px 19px -8px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 17px 19px -8px rgba(0, 0, 0, 0.6);
}
#informacion .modal-body p,
#informacion ul li {
  color: #222222;
  font-family: 'Roboto-Regular';
  font-size: 0.9rem;
  line-height: normal;
  text-align: left;
  width: 100%;
}
/* ***********************************************************************
* ANIMATIONS
* ************************************************************************/
/*? Animación para que las imágenes aparezcan progresivamente en móvil */
@keyframes animated__picture {
  from {
    opacity: 0;
    scale: 25%;
  }
  to {
    opacity: 1;
    scale: 100%;
  }
}
@media (width <= 768px) {
  .animated__picture img {
    animation-fill-mode: both;
    animation-name: animated__picture;
    animation-range: entry 10% cover 30%;
    animation-timeline: --image;
    height: auto;
    view-timeline-axis: block;
    view-timeline-name: --image;
    width: 100%;
  }
}
