/* FONTS */
@font-face {
  font-family: 'Helvetica Light';
  src: url('./../fonts/Helvetica-Light.otf') format('opentype');
}
@font-face {
  font-family: 'Helvetica';
  src: url('./../fonts/Helvetica.otf') format('opentype');
}
@font-face {
  font-family: 'Helvetica Bold';
  src: url('./../fonts/Helvetica-Bold.otf') format('opentype');
}

/* COMMON */
:root {
  --font-primary:         'Helvetica Light', Arial, Helvetica, sans-serif;
  --font-primary-regular: 'Helvetica', Arial, Helvetica, sans-serif;
  --font-primary-bold:    'Helvetica Bold', Arial, Helvetica, sans-serif;
  --font-secondary:       'Helvetica', Arial, Helvetica, sans-serif;

  --color-text: #1D2948;
  --color-link: #1D2948;
  --color-link-hover: #1D2948;
  
  --form-input-color: #ffffff;
  --form-label-color: #8E94A4;
  --form-label-active-color: #8E94A4;
  --form-placeholder-color: #000000;
  --form-preguntas-question-color: #ffffff;
  --form-input-backgroud-color: transparent;
  --form-text-size: 16px;

  --color-primary: #1D2948;
  --color-primary-dark: #0f182d;
  --color-primary-light: #2a4078;

  --color-secondary: #1D2948;
  --color-secondary-dark: #0f182d;
  --color-secondary-light: #2a4078;

  --color-tertiary: #666666;
  --color-tertiary-dark: #333333;
  --color-tertiary-light: #999999;

  --color-list-bg: #ffffff;
  --color-list-bg-light: #eeeeee;

  --color-admin-area-bg: #fafafa;
  --color-admin-area-bg-dark: #333333;
  --color-admin-area-border: #dddddd;
  --color-admin-area-button-bg: #fafafa;
  --color-admin-area-button-bg-hover: #ffffff;
  --color-admin-area-ok: #1ba2c0;
  --color-admin-area-ok-hover: #0fc2ea;
  --color-admin-area-ko: #c34a4a;
  --color-admin-area-ko-hover: #e63434;

  --padding-container-x: 120px;
  --padding-container-y: 120px;

  --max-width-container: 2400px;
  --max-width-container-semi-narrow: 1600px;
  --max-width-container-narrow: 1350px;
  --max-width-container-super-narrow: 900px;
  --max-width-container-ultra-narrow: 600px;

  scroll-behavior: unset!important;
}
@media (max-width: 1500px) {
  :root {
    --padding-container-x: 60px;
  }
}
@media (max-width: 1200px) {
  :root {
    --padding-container-x: 40px;
    --padding-container-y: 80px;
  }
}
@media (max-width: 992px) {
  :root {
    --padding-container-x: 40px;
    --padding-container-y: 80px;
  }
}
@media (max-width: 420px) {
  :root {
    --padding-container-x: 30px;
    --padding-container-y: 60px;
  }
}
@media (max-width: 992px) {
  .mobile-show { display: block!important; }
  .mobile-hide { display: none!important; }
}
@media (min-width: 992px) {
  .mobile-show { display: none!important; }
  .mobile-hide { display: block!important; }
}
.hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
* {
  box-sizing: border-box;
  font-family: var(--font-primary);
  scroll-behavior: unset !important;
}
html, 
body {
  overflow-x: hidden;
}
body {
  position: relative;
}
strong, b {
  font-family: var(--font-primary-bold);
  font-weight: 600;
}
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
}
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
@media (max-width: 992px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }
}
p,
span,
a,
ul,
li {
  font-size: 20px;
}
@media (max-width: 1200px) {
  p,
  span,
  a,
  ul,
  li {
    font-size: 16px;
  }
}
p,
span,
ul,
li {
  color: var(--color-text);
}
p span,
a span,
li span,
span span,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
}
a {
  font-size: 18px;
  color: var(--color-link);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border 250ms ease-in-out;
  transition-delay: 350ms;
}
a:hover {
  color: var(--color-link-hover);
  text-decoration: none;
  border-bottom: 1px solid var(--color-link);
  transition: border 250ms ease-in-out;
}
@media (min-width: 992px) {
  .dark a {
    border-bottom: 1px solid transparent;
  }
  .dark a:hover {
    border-bottom: 1px solid white;
  }
}
figure {
  margin-bottom: 0px;
}
::selection {
  background-color: var(--color-primary-light);
  color: white;
}
img {
  width: 100%;
  height: auto;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.container {
  width: 100%;
  max-width: var(--max-width-container);
  padding: calc(var(--padding-container-y) / 2) calc(var(--padding-container-x) / 2);
  margin: 0;
  z-index: 1;
}
.container.semi-narrow {  max-width: var(--max-width-container-semi-narrow); }
.container.narrow {       max-width: var(--max-width-container-narrow); }
.container.super-narrow { max-width: var(--max-width-container-super-narrow); }
.container.ultra-narrow { max-width: var(--max-width-container-ultra-narrow); }

.button {
  display: inline-block;
  padding: 12px 100px 15px;
  font-size: 18px;
  cursor: pointer;
  border: 0;
  text-transform: uppercase;
  transition: background 250ms ease-in-out, color 250ms ease-in-out;
}
@media (max-width: 768px) {
  .button {
    padding: 12px 20px 15px;
    font-size: 16px;
  }
}
.button:hover {
  transition: background 250ms ease-in-out, color 250ms ease-in-out;
}
.button-white {
  background-color: white;
  color: var(--color-primary);
}
.button-white:hover {
  color: white;
  background-color: var(--color-primary);
}
.button-blue {
  color: white;
  background-color: var(--color-primary);
}
.button-blue:hover {
  background-color: white;
  color: var(--color-primary);
}
.section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.match-height {
  height: calc(100vh - 100px);
  min-height: 700px;
  position: relative;
}
@media (max-width: 992px) {
  .match-height {
    height: auto;
    min-height: auto;
    position: relative;
  }
}
.match-height .container {
  position: absolute;
  height: 100%;
}
@media (max-width: 992px) {
  .match-height .container {
    position: relative;
  }
}
.section .section-header {
  text-align: center;
  margin-bottom: calc(var(--padding-container-y) / 2);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.section .section-top {
  font-size: 36px;
  line-height: 1;
  display: inline-block;
  /* margin: 0 0 140px 0; */
}
.section .section-title {
  font-size: 30px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .section .section-top {
    font-size: 30px;
    margin: 0 0 80px 0;
  }
  .section .section-title {
    font-size: 30px;
  }
}
.section .section-text {
  display: inline-block;
  margin-bottom: 0px;
}
.section .section-link {
  font-size: 18px;
  text-transform: uppercase;
  display: inline-block;
}
@media (min-width: 992px) {
  .section .section-link {
    margin-top: 20px;
    font-family: var(--font-primary-bold);
  }
}
@media (max-width: 992px) {
  .section .section-link {
    text-align: center;
    font-size: 16px;
    margin-top: 40px;
    padding: 12px 20px 13px;
    transition: color 250ms ease-in-out, background 250ms ease-in-out;
  }
  .section .section-link:hover {
    transition: color 250ms ease-in-out, background 250ms ease-in-out;
  }
  .section.light .section-link {
    background-color: var(--color-primary);
    color: white;
  }
  .section.light .section-link:hover {
    background-color: var(--color-primary-light);
    color: white;
  }
  .section.dark .section-link {
    background-color: white;
    color: var(--color-primary);
  }
  .section.dark .section-link:hover {
    background-color: var(--color-primary-light);
    color: white;
  }
}

.section.dark                 { background-color: var(--color-primary); }
.section.dark .section-title  { color: white; }
.section.dark .section-text   { color: white; }
.section.dark .section-top    { color: white; }
.section.light                { background-color: white; }
.section.light .section-title { color: var(--color-primary); }
.section.light .section-top   { color: var(--color-primary); }
.section.light .section-text  { color: var(--color-text); }

.section.vertical .container .section-header {
  text-align: left;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .section.vertical .container .section-header {
    padding-top: calc(var(--padding-container-y) / 2);
  }
}
.section.vertical .container {
  display: flex;
  padding: 0;
}
.section.vertical .container > * {
  padding: var(--padding-container-y) var(--padding-container-x);
}
.section.vertical .container .section-image {
  background-position: center center;
  background-size: cover;
}
@media (min-width: 992px) {
  .section.padding-y {
    padding-top: calc(var(--padding-container-y) / 2);
    padding-bottom: calc(var(--padding-container-y) / 2);
  }
  .section.padding-y .section-header {
    padding-top: 0;
    padding-bottom: 0;
  }
  .section.vertical.flip .container {
    flex-direction: row-reverse;
  }
  .section.vertical .container > * {
    width: 50%;
  }
  .section.vertical.one-two .container > *:first-child {
    width: calc((100% / 3) * 1);
  }
  .section.vertical.one-two .container > *:nth-child(2) {
    width: calc((100% / 3) * 2);
  }
  .section.vertical.two-one .container > *:first-child {
    width: calc((100% / 3) * 2);
  }
  .section.vertical.two-one .container > *:nth-child(2) {
    width: calc((100% / 3) * 1);
  }
}
@media (max-width: 992px) {
  .section.vertical .container {
    flex-direction: column-reverse;
  }
  .section.vertical.flip .container {
    flex-direction: column;
  }
  .section.vertical .container .section-image {
    aspect-ratio: 1 / 1;
  }
}


/* SECTION VERTICAL FULL */
.section.vertical-full {
  position: relative;
}
.section.vertical-full .container > * {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
@media (min-width: 768px) {
  .section.vertical-full .container > * {
    padding: var(--padding-container-y) var(--padding-container-x);
  }
}
.section.vertical-full .container .section-header {
  z-index: 5;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
}
.section.vertical-full .container .section-image {
  position: absolute;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}
.section.vertical-full .container .section-image::before {  
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.section.vertical-full .container .section-header > * {
  width: max(50%, 500px);
  text-align: left;
}
@media (min-width: 768px) {
  .section.vertical-full.flip .container .section-header {
    align-items: flex-end;
  }
  .section.vertical-full.flip .container .section-header > * {
    text-align: right;
  }
}
@media (max-width: 786px) {
  .section.vertical-full .container .section-header > * {
    width: 100%;
    text-align: left;
  }
}

/* TOP BAR */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 100;
  text-decoration: none;
  transition: top 0.3s;
  font-size: 16px;
}
.skip-to-content:focus {
  top: 0;
}
@media (max-width: 992px) {
  .header-top-bar {
    position: absolute;
  }
}
.header-top-bar {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: white;
  border-bottom: 1px solid #eeeeee;
  position: fixed;
  display: flex;
  justify-content: center;
}
.header-top-bar .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  max-width: var(--max-width-container);
  height: 120px;
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 1200px) {
  .header-top-bar .container {
    height: 100px;
  }
}
.header-top-bar .logo a,
.header-top-bar .logo a:hover {
  border-bottom: 0;
}
.header-top-bar .logo img {
  width: 100%;
  height: auto;
  max-width: 300px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .header-top-bar .logo img {
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .header-top-bar .header-controls {
    display: flex;
    gap: 60px;
  }
  .header-top-bar .header-nav {
    display: flex;
  }
  .header-top-bar .header-nav ul li {
    display: flex;
    align-items: center;
  }
  .header-top-bar .header-lang {
    display: flex;
    align-items: center;
    gap: 5px;
  }
}
.header-top-bar .header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-top-bar .header-nav ul li a {
  color: var(--color-primary);
  font-size: 16px;
}
@media (max-width: 1200px) {
  .header-top-bar .logo img {
    max-width: 200px;
  }
  .header-top-bar .header-nav ul li a {
    font-size: 18px;
  }
}

/* NAV MOBILE */
.nav-toggler-btn,
.nav-close-btn {
  display: none;
}
.backdrop {
  position: absolute;
  height: 100%;
  width: 100%;
  display: none;
  backdrop-filter: blur(0px);
  opacity: 0;
  z-index: 5;
  transition: opacity 300ms ease-in-out;
}
@media (max-width: 1200px) {
  html.mobile .backdrop {
    display: block;
    backdrop-filter: blur(3px);
    opacity: 1;
    transition: opacity 300ms ease-in-out;
  }
  html .header-nav {
    position: fixed;
    height: 100vh;
    right: -500px;
    top: 0;
    display: block;
    background-color: var(--color-primary);
    padding: 120px 0 0 0;
    transition: right 300ms ease-in-out;
    z-index: 20;
  }
  html.mobile .header-nav {
    right: 0;
    top: 0;
    transition: right 300ms ease-in-out;
    z-index: 20;
  }
  .header-top-bar {
    height: var(--height-header-top-bar);
    padding: 0 0 0 var(--padding-x-container);
  }
  .header-top-bar .header-logo img {
    width: 140px;
  }
  .header-top-bar .header-nav ul {
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
  }
  .header-top-bar .header-nav ul li {
    display: block;
    width: 100%;
  }
  .header-top-bar .header-nav ul li a {
    display: block;
    color: white;
    padding: 24px 60px 4px 30px;
    font-size: 18px;
    background-image: none;
    font-weight: 100;
  }
  .nav-toggler-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    aspect-ratio: 1/1;
  }
  .nav-toggler-btn img {
    width: 26px;
  }
  .nav-close-btn {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
    height: 120px;
    position: absolute;
    padding: 0 var(--padding-container-x);
    top: 0;
    right: 0;
    aspect-ratio: 1/1;
    background-color: white;
  }
  .nav-close-btn img {
    width: 40px;
  }
}

/* HEADER */
.home .main-header {
  position: relative;
}
.home .main-header {
  height: max(calc(100vh - 120px ), 900px);
  margin-top: 100px;
}
@media (max-width: 1200px) {
  .home .main-header {
    height: max(calc(100vh - 120px ), 600px);
    margin-top: 120px;
  }
}
.home .main-header .bg {
  background-image: url('./../images/header.jpg');
  background-size: cover;
  background-position: center center;
  position: absolute;
  height: 100%;
  width: 100%;
}
.home .main-header .bg::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  background: linear-gradient(45deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}
.home .main-header .header-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home .main-header .header-video-bg video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.home .main-header .lang {
  position: absolute;
  display: flex;
  right: calc(450px + var(--padding-container-x) + 40px); /* Width de .form-container + content padding + margen de seguridad */
  top: var(--padding-container-y);
  gap: 8px;
  z-index: 20;
}
.home .main-header .lang a,
.home .main-header .lang span {
  font-size: 24px;
  color: var(--color-secondary);
}
.home .main-header .lang a.selected {
  font-weight: 600;
}
@media (max-width: 1200px) {
  .home .main-header .lang {
    top: 7%;
    right: 7%;
  }
}
.home .main-header .header-logo-mobile {
  position: absolute;
  left: var(--padding-container-x);
  display: none;
  top: 50px;
}
.home .main-header .header-logo-mobile img {
  width: 100%;
  max-width: 180px;
}
@media (max-width: 1200px) {
  .home .main-header .header-logo-mobile {
    display: block;
  }
}
.home .main-header .header-info {
  position: absolute;
  left: var(--padding-container-x);
  bottom: 10%;
  width: 100%;
  max-width: calc(100vw); /* 100vw - ancho formulario - márgenes */
}
.home .main-header .header-info .title {
  color: white;
  font-size: 100px;
  line-height: 1;
  margin-bottom: 200px;
}
@media (max-width: 1600px) {  
  .home .main-header .header-info .title {
    font-size: 70px;
  }
}
@media (max-width: 1200px) {
  /*
  .home .main-header {
    height: auto;
  }
    */
  .home .main-header .header-bg {
    height: 100vh;
    position: relative;
  }
  .home .main-header .header-info {
    max-width: calc(100% - (var(--padding-container-x) * 2));
  }
}
@media (max-width: 992px) {
  .home .main-header .header-bg {
    height: calc(100vh - 120px);
  }
  .home .main-header .header-info .title {
    font-size: 30px;
    margin-bottom: 60px;
  }
}
.home .main-header #modal-form .modal-header {
  border-bottom: 0;
  padding: 0;
  position: relative;
}
.home .main-header #modal-form .modal-header .form-header {
  width: 90%;
}
.home .main-header #modal-form .modal-header .btn-close {
  position: absolute;
  top: 5px;
  right: 0px;
}
.home .main-header #modal-form .modal-body {
  padding: 0;
}
.home .main-header #modal-form .modal-content {
  background-color: var(--color-primary);
  padding: 40px;
}
.home .main-header .form-container .form-content {
  background-color: white;
  padding: 0;
}

/* FORM COMMON */
.form-container .form-content {
  background-color: var(--color-primary);
  padding: 50px;
  width: 500px;
}
.form-container .form-content .form-header {
  margin-bottom: 30px;
}
.form-container .form-content .form-text {
  color: #ffffff;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 30px;
}
.form-container .form-content .form-title {
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  font-family: var(--font-primary-bold);
}
@media (max-width: 992px) {
  .form-container .form-content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .form-container .form-content {
    padding: 50px var(--padding-container-x);
  }
}


/* FORM */
.form .form-fieldset {
  display: none;
}
.form .form-fieldset.active {
  display: block;
}
.form legend {
  text-align: center;
  font-size: 22px;
  color: var(--form-preguntas-question-color);
  margin-bottom: 20px;
}
.form .form-fieldset-questions input[type='radio'] {
  display: none;
}
.form .form-fieldset-questions label:not(.checkbox label) {
  background-color: #ffffff;
  color: #000000;
  border-radius: 5px;
  cursor: pointer;
  padding: 16px 10px;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}
.form .form-inputs {
  display: grid;
  grid-template-areas: 'nombre' 'apellido' 'telefono' 'email' 'pais' 'mensaje';
  gap: 20px;
  margin-bottom: 10px;
}
.form .box-nombre   { grid-area: nombre; }
.form .box-apellido { grid-area: apellido; }
.form .box-prefijo  { grid-area: prefijo; }
.form .box-telefono { grid-area: telefono; }
.form .box-email    { grid-area: email; }
.form .box-cp       { grid-area: cp; }
.form .box-pais     { grid-area: pais; }
.form .box-mensaje  { grid-area: mensaje; }

.form .input-box {
  display: flex;
  flex-direction: column-reverse;
}
.form .input-box label {
  color: var(--form-label-color);
}
.form .input-box input,
.form .input-box textarea {
  background-color: var(--form-input-backgroud-color);
  color: var(--form-input-color);
  font-size: var(--form-text-size);
  border: 0;
  border-bottom: 1px solid white;
  padding: 10px 0px;
  width: 100%;
}
.form .input-box textarea {
  resize: none;
}
.form .input-box input::placeholder,
.form .input-box textarea::placeholder {
  font-size: var(--form-text-size);
  color: var(--form-placeholder-color);
}
.form .checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.form .checkbox input[type='checkbox'] {
  appearance: none;
  background-color: transparent;
  border: 1px solid white;
  height: 1em;
  width: 1em;
  cursor: pointer;
  place-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}
.form .checkbox input[type='checkbox']::before {
  content: '';
  display: block;
  height: 8px;
  width: 8px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: white;
}
.form .checkbox input[type='checkbox']:checked::before {
  transform: scale(1);
}
.form .checkbox * {
  color: #ffffff;
  font-size: 14px;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--form-input-color) !important;
  color: var(--form-input-color) !important;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 0px 0px transparent;
}
.form .submits fieldset {
  margin-bottom: 20px;
}
.form .submits .submit-btn {
  width: 100%;
  text-transform: uppercase;
  font-family: var(--font-primary-bold);
}
.form .submits .submit-btn:hover {
  background-color: var(--color-primary-light);
}

/* ESTILOS PARA LABEL FLOTANTES */
.form-container.floating-labels .form .input-box {
  flex-direction: column;
  position: relative;
  padding-top: 10px;
}
.form-container.floating-labels .form .input-box label {
  position: absolute;
  left: 0px;
  top: 20px;
  transition: font-size 250ms ease-in-out, top 250ms ease-in-out, left 250ms ease-in-out, color 250ms ease-in-out;;
}
.form-container.floating-labels .form .input-box:focus-within label,
.form-container.floating-labels .form .input-box:focus-within textarea {
  top: -6px;
  left: 0px;
  font-size: 12px;
  color: var(--form-label-active-color);
  transition: font-size 250ms ease-in-out, top 250ms ease-in-out, left 250ms ease-in-out, color 250ms ease-in-out;
}
.form-container.floating-labels .form .input-box input:not(:placeholder-shown)+label,
.form-container.floating-labels .form .input-box textarea:not(:placeholder-shown)+label {
  top: -6px;
  font-size: 12px;
  color: var(--form-label-active-color);
}

/* CAROUSEL */
.owl-carousel {
  position: relative;
}
.owl-carousel .owl-item {
  aspect-ratio: 16 / 9;
}
.owl-carousel .owl-item img {
  object-fit: cover;
}
.owl-carousel .owl-nav {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.owl-carousel .owl-nav .owl-next {
  transform: rotate(180deg);
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  pointer-events: all;
  opacity: .5;
  transition: opacity 300ms ease-in-out;
}
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
  opacity: .8;
  transition: opacity 300ms ease-in-out;
}
.owl-carousel .owl-dots {
  position: absolute;
  bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.owl-carousel .owl-dots .owl-dot {
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgba(255,255,255,.5);
  transition: background 300ms ease-in-out;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: rgba(255,255,255,.8);
  transition: background 300ms ease-in-out;
}
.owl-carousel .owl-dots .owl-dot:hover {
  background-color: rgba(255,255,255,1);
  transition: background 300ms ease-in-out;
}

/* PROJECT */
.project {
  position: relative;
}
.project.section .container {
  display: grid;
  position: relative;
}
.project.section .container::before {
  content: '';
  position: absolute;
  display: block;
  background-color: var(--color-primary);
  top: 0;
  right: 0;
  height: 120%;
  width: 60%;
  transform: translateY(-8%);
  z-index: -1;
}
.project .section-header { grid-area: project-header; }
.project .section-image { grid-area: project-image; }
.project .section-top { grid-area: project-top; }

@media (min-width: 992px) {
  .project {
    margin: var(--padding-container-y) 0;
  }
  .project.section .container {
    grid-template-columns: 1fr 2fr;
    grid-template-areas: 'project-header project-image';
  }
  .project.section .container > * {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .project {
    display: block;
  }
  .project.vertical.section .section-image {
    margin: var(--padding-container-x) var(--padding-container-x) 0;
    aspect-ratio: 1 / 1.2;
  }
  .project.section .container {
    grid-template-columns: 1fr;
    grid-template-areas: 'project-top' 'project-image' 'project-header';
  }
  .project .section-top {
    display: none;
  }
  .project .section-top.mobile-show {
    padding: var(--padding-container-x) var(--padding-container-x);
    margin-bottom: 0;
  }
  .project.section .container::before {
    content: '';
    position: absolute;
    display: block;
    background-color: var(--color-primary);
    top: 0;
    right: 0;
    height: 50%;
    width: 100%;
    aspect-ratio: 1 / 1;
    transform: translateY(0%);
    z-index: -1;
  }
}
@media (max-width: 420px) {
  .project.section .container::before {
    height: 40%;
  }
}

/* RESIDENCES */
.residences {
  position: relative;
}
.residences.section .container {
  display: grid;
  position: relative;
}
@media (min-width: 992px) {
  .residences.section .container {
    grid-template-columns: 2fr 1fr;
    grid-template-areas: 'residence-image residence-header';
  }
  .residences {
    margin: var(--padding-container-y) 0;
  }
  .residences.section .container > * {
    width: 100%;
  }
}
.residences .section-top-mobile { grid-area: residence-mobile-top; }
.residences .section-header { grid-area: residence-header; }
.residences .section-image { grid-area: residence-image; }

@media (max-width: 992px) {
  .residences.vertical.section .section-image {
    margin: calc(var(--padding-container-y) / 2) 0 0;
    aspect-ratio: 1 / 1.2;
  }
  .residences.section .container {
    grid-template-columns: 1fr;
    grid-template-areas: 'residence-mobile-top' 'residence-image' 'residence-header';
  }
  .residences.section .container .section-top {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .residences.section .container .section-text {
    text-align: justify;
  }
}

/* LIFESTYLE */
.lifestyle {
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.5fr;
  justify-content: unset;
  align-items: unset;
}
.lifestyle .container {
  max-width: unset;
}
.lifestyle .lifestyle-slide {
  background-color: var(--color-primary);
}
.lifestyle .container .section-header {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .lifestyle .blue-arrow {
    display: none;
  }
}
.lifestyle .blue-arrow {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.lifestyle .blue-arrow img {
  width: 100%;
  max-width: 100px;
  height: auto;
}
.lifestyle-intro {
  width: 100vw;
  background-size: cover;
  background-position: center center;
}
.lifestyle-community {
  width: calc((100vw / 3) + 100vw);
}
.lifestyle-community .container {
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 4fr;
  width: 100%;
  max-width: 100%;
  position: relative;
  /*height: 100%;*/
}
.lifestyle-community .container .section-header {
  text-align: left;
}
.lifestyle-community .container .section-header * {
  margin-bottom: 0;
}
.lifestyle-community .container .section-header .section-top {
  margin-bottom: 40px;
}
.lifestyle-community .container .section-header .section-text {
  margin-bottom: 40px;
}
.lifestyle-community .container .section-image {
  position: relative;
  width: 100%;
  background-position: center center;
  background-size: cover;
}
@media (min-width: 992px) {
  .lifestyle-community .container .section-image .title-watermark {
    display: none;
  }
}
.lifestyle-community .container .section-image .title-watermark {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 30px;
  color: white;
  line-height: 1;
}
.lifestyle-discover {
  width: calc((100vw / 3) * 2);
  width: 50vw;
}
.lifestyle-discover .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  padding-left: 0;
  height: 100%;
  position: relative;
}
.lifestyle-discover .container .section-header {
  text-align: left;
  display: grid;
  grid-template-rows: 6fr 1fr;
  padding-right: 40px;
}
.lifestyle-discover .container .section-header .section-text {
  display: flex;
  align-items: center;
}
.lifestyle-discover .container .section-header .section-text ul {
  padding-left: 16px;
}
.lifestyle-discover .container .section-header .section-text ul li {
  font-family: var(--font-primary-regular);
  color: white;
  font-size: 14px;
}
.lifestyle-discover .container .section-header .section-title {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 0;
}
.lifestyle-discover .container .section-header .section-title span {
  font-size: 40px;
}
.lifestyle-discover .container .section-image {
  width: 100%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
}
@media (max-width: 1200px) {
  .lifestyle-discover .container .section-header .section-title {
    font-size: 22px;
  }
  .lifestyle-discover .container .section-header .section-title span {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .lifestyle {
    height: 500px;
    overflow-x: scroll;
    grid-template-columns: 1fr 4fr 2fr;
  }
  .lifestyle .lifestyle-slide {
    height: 500px;
  }
  .lifestyle .lifestyle-community {
    width: 2000px;
  }
  .lifestyle .lifestyle-discover {
    width: 1000px;
  }
  .lifestyle-slide .container {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: calc(var(--padding-container-x));
    padding-right: calc(var(--padding-container-x));
  }
  .lifestyle-discover .container .section-header .section-title {
    display: none;
  }
  .lifestyle-discover .container .section-header {
    display: flex;
    align-items: center;
  }
  .lifestyle-discover .container .section-header .section-text .section-text-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
  }
  .lifestyle-discover .container .section-header .section-text .section-text-content ul {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    margin-bottom: 0;
  }
}

/* CONVERSATION */
.conversation .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: var(--padding-container-y);
}
.conversation .section-header {
  margin-bottom: 0;
  display: block;
}
.conversation .section-image {
  height: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 40px;
  background-position: center center;
  background-size: cover;
}
.conversation .section-header .section-title {
  width: 100%;
  margin-bottom: 10px;
  font-family: var(--font-primary-regular);
}
@media (min-width: 992px) {
  .conversation .section-header .section-title {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .conversation {
    position: relative;
  }
  .conversation .section-header .section-title {
    font-size: 20px;
  }
  .conversation .section-image {
    height: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 40px;
    background-position: center center;
    background-size: cover;
  }
}
.conversation .section-link {
  margin-top: 20px;
}

/* DG */
.dg {
  position: relative;
  background-color: var(--color-link);
}
.dg.section .container {
  display: grid;
}
.dg.section .container > * {
  width: 100%;
}
.dg.section .section-top {
  grid-area: dg-top;
}
.dg.section .section-header {
  grid-area: dg-header;
}
.dg.section .container .section-header .section-title {
  margin-bottom: 140px;
}
.dg.section .section-media {
  grid-area: dg-media;
  position: relative;
  height: 100%;
  padding: 0;
  line-height: 0;
}
.dg.section .container .section-media .section-image {
  aspect-ratio: 7 / 12;
}
/* EVITA QUE SE PUEDA HACER CLICK EN EL VÍDEO */
.dg.section .section-media .video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 15;
}
.dg.section .section-media .video-overlay.pointless {
  pointer-events: none;
}
.dg.section .container .section-media video,
.dg.section .container .section-media video * {
  pointer-events: none;
}
/* FIN EVITA QUE SE PUEDA HACER CLICK EN EL VÍDEO */
.dg.section .container .section-media .media-video {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .dg.section .container .section-media .media-video {
    height: 100%;
  }
  .dg.section .container .section-media .media-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
  }
  .dg.section .container {
    grid-template-columns: 1.5fr 1fr;
    grid-template-areas: 'dg-header dg-media';
  }
  .dg.section .section-top {
    padding-bottom: 0;
  }
  .dg.section .section-header {
    max-width: 666px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .dg.section .container .section-media .section-image {
    position: absolute;
    width: auto;
    height: 90%;
    bottom: 0;
    left: -300px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .dg.section .section-header {
    max-width: 450px;
  }
}
@media (min-width: 992px) and (max-width: 1550px) {
  .dg.section .container .section-media .section-image {
    height: 80%;
    bottom: 10%;
    left: -100px;
  }
}
@media (max-width: 992px) {
  .dg.section .container {
    position: relative;
    grid-template-columns: 1fr;
    grid-template-areas: 'dg-top' 'dg-media' 'dg-header';
    display: grid;
  }
  .dg.section .container .section-top {
    margin-bottom: 0;
    padding-top: calc(var(--padding-container-y) / 2);
    padding-bottom: calc(var(--padding-container-y) / 2);
  }
  .dg.section .container .section-media .section-image {
    margin: 0px var(--padding-container-x) var(--padding-container-x);
  }
  .dg.section .container .section-header {
    padding-top: 40px;
  }
  .dg.section .container .section-media video {
    object-fit: cover;
    height: auto;
    width: 100%;
    aspect-ratio: 9 / 16;
  }
}

/* TEAM */
.team.section {
  background-color: white;
  scroll-margin-top: -100px;
}
.team.section .container {
  display: grid;
  padding-top: var(--padding-container-y);
  padding-bottom: var(--padding-container-y);
}
@media (min-width: 992px) {
  .team.section .container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "team-media-left team-header team-media-right";
  }
}
.team.section .container > * {
  width: 100%;
}
.team.section .container .media-left {
  grid-area: team-media-left;
}
@media (max-width: 992px) {
  .team.section .container {
    position: relative;
  }
  .team.section .container .media-left {
    aspect-ratio: 3 / 4;
    margin: 20px 20px 0 20px;
    width: calc(100% - 40px);
  }
}
.team.section .container .section-top {
  background-color: white;
  grid-area: team-top;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .team.section .container .section-top {
    padding-top: calc(var(--padding-container-y) / 2);
    padding-bottom: calc(var(--padding-container-y) / 2);
  }
}
.team.section .container .section-header {
  background-color: white;
  grid-area: team-header;
  height: 100%;
  padding: calc(var(--padding-container-y) / 2) calc(var(--padding-container-x) / 2);
  justify-content: space-between;
}
@media (min-width: 992px) {
  .team.section .container .section-header {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.team.section .container .section-header .section-link {
  display: inline-block;
  margin-bottom: 40px;
}
.team.section .container .section-header .team-logo {
  display: block;
  max-width: 200px;
}
.team.section .container .media-right {
  grid-area: team-media-right;
}
@media (max-width: 992px) {
  .team.section .container {
    grid-template-columns: 1fr;
    grid-template-areas: "team-media-left" "team-top" "team-media-right" "team-header" ;
  }
  .team.section .container .section-image {
    aspect-ratio: 3 / 4;
  }
  .team.section .container .section-header {
    padding-top: var(--padding-container-y);
  }
  .team.section .container .section-header .section-title {
    margin-bottom: 30px;
  }
  .team.section .container .section-header .section-link {
    margin: 30px 0;
  }
}

/* CONTACT */
.contact {
  position: relative;
  min-height: 850px!important;
}
.contact-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.contact-bg::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.contact .container {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-end;
}
.contact .section-header {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  height: 100%;
  padding: var(--padding-container-y) var(--padding-container-x);
}
.contact .section-header .section-title {
  font-size: 80px;
  line-height: 1;
  color: white;
}
.contact .section-header .section-logo {
  max-width: 400px;
}
@media (min-width: 992px) and (max-width: 1500px) {
  .contact .section-header .section-title {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .contact .section-header .section-title .br {
    display: inline-block;
    width: 10px;
  }
  .contact .section-header .section-title .br br {
    display: none;
  }
}
@media (max-width: 992px) {
  .contact {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  .contact .container {
    position: relative;
    padding: 0;
  }
  .contact-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center;
  }
  .contact-bg::before {
    background-color: rgba(0, 0, 0, 0);
  }
  .contact .container .section-header {
    position: absolute;
  }
  .contact .section-header .section-title {
    font-size: 30px;
  }
  .contact .section-header .section-logo {
    max-width: 200px;
  }
}

/* FOOTER */
@media (min-width: 992px) {
  .footer {
    background-color: var(--color-primary);
  }
}
@media (max-width: 992px) {
  .footer {
    background-color: var(--color-primary-dark);
  }
}
.footer .footer-button-link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.footer,
.footer * {
  font-size: 16px;
  color: white;
}
.footer a {
  cursor: pointer;
  display: inline-block;
  color: white;
  border-bottom: 1px solid transparent;
}
.footer a:hover {
  color: white;
  border-bottom: 1px solid white;
}
.footer .container {
  display: block;
}
.footer .footer-row:first-child {
  padding: 0px 0 60px;
}
.footer .footer-row {
  border-bottom: 1px solid white;
  padding: 60px 0;
}
.footer .footer-row:last-of-type {
  border-bottom: 0px solid white;
}
.footer .footer-top {
  display: flex;
}
.footer .footer-top .footer-top-logo {
  max-width: 160px;
}
@media (min-width: 992px) {
  .footer .footer-top {
    justify-content: space-between;
  }
  .footer .footer-mid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .footer .footer-top {
    flex-direction: column;
    gap: 40px;
  }
}
.footer .footer-mid h2 {
  font-family: var(--font-primary-bold);
  margin-bottom: 30px;
}
.footer .footer-mid ul,
.footer .footer-mid ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-mid .col-list > li {
  display: block;
  margin-bottom: 10px;
}
.footer .footer-mid .footer-col-txt {
  display: inline-block;
  margin-bottom: 20px;
}
.footer .footer-mid .col-list.ico-list {
  flex-direction: row;
  align-items: center;
}
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
}
.footer .footer-bottom .footer-bottom-legal {
  display: flex;
  gap: 40px;
}
.footer .form-subscribe .form-content {
  width: auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 0;
}
.footer .form-subscribe .form-content > span {
  margin-top: 20px;
}
.footer .form-subscribe .subscription-form .form-inputs {
  display: flex;
  align-items: center;
}
.footer .form-subscribe .subscription-form .submit-btn {
  background-color: transparent;
  width: auto;
  padding: 16px 20px;
}
.footer .form-subscribe .subscription-form .input-box input {
  border-bottom: 0;
}
.footer .form-subscribe .subscription-form .input-box label {
  top: 15px;
}
.footer .footer-social ul {
  display: flex;
  gap: 10px;
}
.footer .footer-social ul li a {
  border-bottom: 0;
}
@media (max-width: 992px) {
  .footer .form-subscribe .form-content {
    background-color: var(--color-primary-dark);
  }
  .footer .footer-col {
    border-bottom: 1px solid white;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  .footer .footer-col:last-of-type {
    border-bottom: 0px solid white;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer .form-subscribe .form-content {
    flex-direction: column;
  }
  .footer .form-subscribe .subscription-form .form-inputs {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .form-subscribe .subscription-form .submit-btn {
    background-color: var(--color-primary);
    margin-bottom: 10px;
  }
}


/* LOGIN */
.login-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-form {
  width: 100%;
  max-width: 500px;
  padding: 35px;
  border-radius: 10px;
  border: 1px solid #dddddd;
}
.login-form .form-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.login-form fieldset {
  margin-bottom: 14px;
}
.login-form .error {
  text-align: center;
  border-radius: 2px;
  padding: 4px;
  margin-bottom: 10px;
  border: 1px solid #fdcbcb;
  background-color: #ffe0e0;
  color: #bd4c4c;
}
.login-form .input-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 16px;
  color: #666666;
  margin-bottom: 10px;
}
.login-form .input-box input {
  padding: 6px 10px;
  border-radius: 5px;
  border: 1px solid #bbbbbb;
}
.login-form .submit-button {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 5px;
  font-size: 18px;
  background-color: var(--color-primary);
  color: white;
  transition: background 250ms ease-in-out, color 250ms ease-in-out;
}
.login-form .submit-button:hover {
  background-color: var(--color-primary-light);
  transition: background 250ms ease-in-out, color 250ms ease-in-out;
}

/* ADMIN PANEL */
.admin-panel {
  background-color: var(--color-admin-area-bg);
}
.admin-panel * {
  font-family: Arial, Helvetica, sans-serif!important;
}
.admin-panel p,
.admin-panel span,
.admin-panel a {
  font-size: 16px;
}
.admin-panel .admin-panel-header {
  background-color: white;
}
.admin-panel .admin-panel-header .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.admin-panel .container {
  padding: 20px;
}
.admin-panel .admin-panel-button {
  display: inline-block;
  border: 1px solid var(--color-admin-area-border);
  background-color: var(--color-admin-area-button-bg);
  text-align: center;
  border-radius: 5px;
  padding: 4px 12px;
  transition: background 250ms ease-in-out;
}
.admin-panel .admin-panel-button:hover {
  background-color: var(--color-admin-area-button-bg-hover);
  transition: background 250ms ease-in-out;
}
.admin-panel .button-ko {
  color: white;
  border-color: var(--color-admin-area-ko);
  background-color: var(--color-admin-area-ko);
  transition: background 250ms ease-in-out;
}
.admin-panel .button-ko:hover {
  color: white;
  border-color: var(--color-admin-area-ko);
  background-color: var(--color-admin-area-ko-hover);
  transition: background 250ms ease-in-out;
}
.admin-panel .button-ok {
  color: white;
  border-color: var(--color-admin-area-ok);
  background-color: var(--color-admin-area-ok);
}
.admin-panel .button-ok:hover {
  color: white;
  border-color: var(--color-admin-area-ok);
  background-color: var(--color-admin-area-ok-hover);
}
.admin-panel .admin-panel-header h1 {
  padding: 10px;
  font-size: 16px;
  text-align: center;
  background-color: var(--color-admin-area-bg-dark);
  color: var(--color-admin-area-border);
}
.admin-panel .admin-name {
  font-size: 18px;
}
.admin-panel .admin-nav {
  padding: 20px;
  display: flex;
  gap: 20px;
  background-color: white;
  border: 1px solid var(--color-admin-area-border);
}
.admin-panel .admin-panel-message {
  margin-bottom: 20px;
}
.admin-panel .admin-panel-message.message-ok {
  color: var(--color-admin-area-ok);
}
.admin-panel .admin-panel-message.message-ko {
  color: var(--color-admin-area-ko);
}
.admin-panel .admin-card {
  border: 1px solid var(--color-admin-area-border);
  padding: 40px;
  border-radius: 20px;
  background-color: white;
}
.admin-panel .admin-card h2 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}
.admin-panel .admin-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.admin-panel .user-table-head,
.admin-panel .user-item {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
  margin-bottom: 10px;
  align-items: center;
}
@media (min-width: 768px) {
  .admin-panel .user-table .user-data-title-mobile {
    display: none;
  }
}
.form-row + .form-row {
  margin-top: 40px;
}
.admin-panel .form-inputs {
  margin-bottom: 10px;
}
.admin-panel .form-inputs .input-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.admin-panel .form-inputs .input-box label {
  margin: 0 0 5px 0;
}
.admin-panel .form-inputs .input-box input,
.admin-panel .form-inputs .input-box textarea,
.admin-panel .form-inputs .input-box select {
  border: 1px solid var(--color-admin-area-border);
  background-color: var(--color-admin-area-button-bg);
  padding: 6px 10px;
  border-radius: 5px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 10px;
}
.admin-panel .form-inputs .input-box textarea {
  field-sizing: content;
}
.admin-panel .form-add-new {
  padding: 40px;
  border-top: 3px solid var(--color-admin-area-border);
  background-color: var(--color-admin-area-bg);
  margin: 40px 0 0 0;
}
@media (max-width: 768px) {
  .admin-panel .admin-card {
    padding: 25px 20px;
  }
  .admin-panel .user-table-head {
    display: none;
  }
  .admin-panel .user-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-admin-area-border);
    margin-bottom: 20px;
  }
  .admin-panel .user-item:last-of-type {
    padding-bottom: 0px;
    border-bottom: 0;
    margin-bottom: 0px;
  }
  .admin-panel .form-add-new {
    padding: 25px 20px;
  }
}

/* PÁGINA COMPROBANTE */
.comprobante {
  text-align: center;
  padding-top: 100px;
}
.comprobante .section-header,
.comprobante .section-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.comprobante main img {
  width: 150px;
  margin-bottom: 20px;
}
.comprobante main h1 {
  color: black;
  text-align: center;
  margin-bottom: 20px;
}
.comprobante main p {
  color: black;
  font-size: 20px;
  text-align: center;
}
.comprobante main a {
  color: var(--color-link);
  text-decoration: none;
}

/* PÁGINA POLÍTICA DE PRIVACIDAD */
.page.politica-privacidad section,
.page.politica-privacidad section .section-header {
  text-align: left;
}

/* MODALES */
.modal {
  z-index: 999;
}
.modal-backdrop {
  z-index: 998;
}

/* MODALES TEXTOS LEGALES */
#informacion,
#PoliticaCookies {
  z-index: 999;
}
#informacion .modal-body *,
#PoliticaCookies .modal-body * {
  font-family: Arial, Helvetica, sans-serif!important;
  font-size: 16px!important;
  line-height: 1.4!important;
  color: #000000!important;
  text-align: left!important;
  border-bottom: 0!important;
}
#informacion .modal-body a,
#PoliticaCookies .modal-body a {
  color: #3185c9;
}
#informacion .modal-title,
#PoliticaCookies .modal-title {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}
#informacion .modal-body table,
#PoliticaCookies .modal-body table {
  border-collapse: collapse;
  width: 100%;
}
#informacion .modal-body table th,
#informacion .modal-body table td,
#PoliticaCookies .modal-body table th,
#PoliticaCookies .modal-body table td {
  border: 1px solid #000!important;
  padding: 12px;
}
#informacion .modal-body table th,
#PoliticaCookies .modal-body table th {
  background-color: #f0f0f0;
}

/* MODAL CONFIGURACIÓN COOKIES */
#PopCookies * {
  font-family: var(--font-primary);
  font-size: 14px;
  color: black;
}
#PopCookies .modal-content {
  background-color: white;
  padding: 30px;
}
#PopCookies .modal-header {
  border-bottom: none;
  padding: 0;
  margin-bottom: 20px;
}
#PopCookies .modal-title {
  color: #000000;
  font-size: 20px;
}
#PopCookies .modal-body {
  padding: 0;
}
#PopCookies .modal-body span {
  color: var(--color-primary);
  font-family: var(--font-primary);
  cursor: pointer;
}
#PopCookies #textoPopCookiesShow h5 {
  display: none;
}
#PopCookies #textoPopCookiesShow label {
  display: flex;
  align-items: center;
}
#PopCookies #textoPopCookiesShow label strong {
  font-size: 16px;
}
#PopCookies #textoPopCookiesShow label input {
  accent-color: var(--color-primary);
  cursor: pointer;
  height: 16px;
  width: 16px;
  margin-right: 8px;
}
#PopCookies #textoPopCookiesShow small {
  color: #666666;
  display: block;
  font-family: var(--font-primary);
  font-size: 14px;
  margin-left: 26px;
  margin-bottom: 10px;
}
#PopCookies #textoPopCookiesShow .modal-footer {
  margin-top: 30px;
}
#PopCookies .modal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-top: none;
  padding: 0;
}
#PopCookies .modal-footer .btn {
  width: 100%;
  background-color: #F0F0F0;
  border: 0;
  margin: 0;
  border-radius: 4px;
  font-size: 16px;
  padding: 10px;
}
#PopCookies .modal-dialog .modal-content .modal-footer .btn:last-of-type {
  background-color: var(--color-primary);
  color: white
}

/* ANIMACIONES */
@keyframes title__fade {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title__fade {
  animation: title__fade 500ms ease-out;
  animation-delay: 600ms;
  animation-fill-mode: forwards;
  opacity: 0;
}