@charset "UTF-8";
.image-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.image-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 
Responsive between
Ej: @include responsiveB('mobile-v', 'mobile-h'){
*/
/*
tr( duracion, propiedades, delay)
*/
/*
tre( duracion, propiedades, delay)
a diferencia de tr(), tre tiene un easign aplicado que hace la animacion mas natural
*/
/*
fade( x, y, defaulttransition, delay );
Añade transformacion x e y, y opacity 0 al elemento.
Se pueden pasar valores negativos, por ejemplo, para desplazar x hacia la izquierda
Tambien se puede pasar un porcentaje
defaulttransition aplica la variable $transition-default definida en _variables.scss
delay aplica un delay multiplicando el valor por $transition-default-delay para hacer aparecer los elementos de forma escalonada
*/
.in {
  --fade-opacity: 1;
  --fade-transform: translateX(0px) translateY(0px);
  --p100: 100%;
  --p0: 0%;
  --v1: 1;
  --v0: 0;
}

/*
fadein();
Aplica transformX(0px), transformY(0px) y opacity 1 para hacer aparecer el objecto
*/
/*
Se usa igual que fade, pero crea un loop para animar los elementos de forma ordenada
*/
/*
Use:
@if editor() {
  font-size: 90px;
}
*/
/* Text Block Custom Style */
/* TYPOGRAPHY
----------------------------------------------------------------------------- */
@font-face {
  font-family: "Kings Caslon Display";
  src: url("../fonts/KingsCaslonDisplay-Regular.woff2") format("woff2"), url("../fonts/KingsCaslonDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-Bold.woff2") format("woff2"), url("../fonts/SharpSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-BoldItalic.woff2") format("woff2"), url("../fonts/SharpSans-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-Book.woff2") format("woff2"), url("../fonts/SharpSans-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-BookItalic.woff2") format("woff2"), url("../fonts/SharpSans-BookItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-Extrabold.woff2") format("woff2"), url("../fonts/SharpSans-Extrabold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-ExtraboldItalic.woff2") format("woff2"), url("../fonts/SharpSans-ExtraboldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-LightItalic.woff2") format("woff2"), url("../fonts/SharpSans-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-Light.woff2") format("woff2"), url("../fonts/SharpSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-Medium.woff2") format("woff2"), url("../fonts/SharpSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-Thin.woff2") format("woff2"), url("../fonts/SharpSans-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-MediumItalic.woff2") format("woff2"), url("../fonts/SharpSans-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-Semibold.woff2") format("woff2"), url("../fonts/SharpSans-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-ThinItalic.woff2") format("woff2"), url("../fonts/SharpSans-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-SemiboldItalic.woff2") format("woff2"), url("../fonts/SharpSans-SemiboldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: -webkit-fill-available;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Sharp Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}
body img {
  max-width: 100%;
  height: auto;
}
body p:not(:last-child) {
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

input[type=text],
input[type=email],
input[type=search],
input[type=submit],
textarea,
button {
  font-family: "Sharp Sans", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

button {
  background-color: transparent;
}

select {
  font-family: "Sharp Sans", sans-serif;
}

h1,
.h1,
.h1 p {
  font-family: "Sharp Sans", sans-serif;
  font-size: clamp(70px, 43.6px + 0.044 * 100vw, 90px);
}

h2,
.h2,
.h2 p {
  font-family: "Sharp Sans", sans-serif;
  font-size: clamp(40px, -0.2px + 0.067 * 100vw, 70px);
}

h3,
.h3,
.h3 p {
  font-family: "Sharp Sans", sans-serif;
  font-size: clamp(28px, 17.2px + 0.018 * 100vw, 36px);
}

h4,
.h4,
.h4 p {
  font-family: "Sharp Sans", sans-serif;
  font-size: clamp(24px, 21.6px + 0.004 * 100vw, 26px);
}

h5,
.h5,
.h5 p {
  font-family: "Sharp Sans", sans-serif;
  font-size: clamp(16px, 13.6px + 0.004 * 100vw, 18px);
}

h6,
.h6,
.h6 p {
  font-family: "Sharp Sans", sans-serif;
  font-size: clamp(16px, 16px + 0 * 100vw, 16px);
}

a {
  color: #10BDC4;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

b,
strong,
strong * {
  font-weight: 600;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

ul li {
  list-style: disc;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

.centerDiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.iframe-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.site-content {
  padding-bottom: 0;
}
.site-content > *:not(.default_block) {
  padding-block: var(--blockMargin, 150px);
}
@media only screen and (max-width: 1050px) {
  .site-content > *:not(.default_block) {
    padding-block: var(--blockMarginTablet, 80px);
  }
}
@media only screen and (max-width: 750px) {
  .site-content > *:not(.default_block) {
    padding-block: var(--blockMarginMobile, 60px);
  }
}

.text_block h1,
.text_block h2,
.text_block h3,
.text_block h4,
.text_block h5,
.text_block h6 {
  color: #000;
  margin-bottom: 20px;
}
.text_block h1 {
  font-family: "Sharp Sans", sans-serif;
  font-size: clamp(70px, 43.6px + 0.044 * 100vw, 90px);
}
.text_block h2 {
  font-family: "Sharp Sans", sans-serif;
  font-size: clamp(40px, -0.2px + 0.067 * 100vw, 70px);
}
.text_block h3 {
  font-family: "Sharp Sans", sans-serif;
  font-size: clamp(28px, 17.2px + 0.018 * 100vw, 36px);
}
.text_block h4 {
  font-family: "Sharp Sans", sans-serif;
  font-size: clamp(24px, 21.6px + 0.004 * 100vw, 26px);
}
.text_block h5 {
  font-family: "Sharp Sans", sans-serif;
  font-size: clamp(16px, 13.6px + 0.004 * 100vw, 18px);
}
.text_block h6 {
  font-family: "Sharp Sans", sans-serif;
  font-size: clamp(16px, 16px + 0 * 100vw, 16px);
}
.text_block ul,
.text_block ol {
  padding-left: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.text_block ul li {
  list-style: disc;
}
.text_block a:not(.button) {
  color: #10BDC4;
  text-decoration: none;
}
.text_block a:not(.button):hover {
  text-decoration: underline;
}
.text_block blockquote {
  padding-left: 30px;
  border-left: 3px solid #000;
}
.text_block blockquote p {
  font-family: "Sharp Sans", sans-serif;
  font-size: clamp(24px, 21.6px + 0.004 * 100vw, 26px);
}
.text_block img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 0 28px 0;
}
.text_block .alignleft {
  float: left;
  max-width: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 750px) {
  .text_block .alignleft {
    max-width: 100%;
  }
}
.text_block .aligncenter {
  margin: 30px auto;
  display: block;
}
.text_block .alignright {
  float: right;
  max-width: 50%;
  margin-left: 30px;
}
@media only screen and (max-width: 750px) {
  .text_block .alignright {
    max-width: 100%;
  }
}

.site {
  padding-top: 115px;
}
@media only screen and (max-width: 750px) {
  .site {
    padding-top: 74px;
  }
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  backdrop-filter: blur(10px);
  -webkit-filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.25));
}
.header.scroll-up {
  top: 0;
}
@media only screen and (max-width: 1050px) {
  .header.scroll-up {
    top: 0;
  }
}
.header.scroll-down {
  top: 0px;
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 16px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-backface-visibility: hidden;
}
@media only screen and (max-width: 750px) {
  .header__top {
    padding: 10px 0 10px 0;
  }
}
.header__top__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__top__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 1050px) {
  .header__top__right {
    position: absolute;
    background: #ffffff;
    top: 0;
    width: 100%;
    padding: 27px;
    padding-top: 90px;
    right: -100%;
    height: 100vh;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-backface-visibility: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header__top__right .button--outline--green {
    color: #10BDC4;
  }
  .header__top__right .button--outline--green:hover {
    color: #ffffff;
  }
}
.header__top__right .button {
  margin-left: 32px;
}
@media only screen and (max-width: 1050px) {
  .header__top__right .button {
    margin-left: 0;
    margin-top: 32px;
    padding: 12px;
  }
}
.header__top.js-child-open .header__top__right {
  right: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-backface-visibility: hidden;
}
@media only screen and (max-width: 1050px) {
  .header__top.js-child-open .header__top__right {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    white-space: nowrap;
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media only screen and (max-width: 750px) {
  .header__top.js-child-open .header__top__right {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.header__bottom {
  padding: 0;
}
@media only screen and (max-width: 1050px) {
  .header__bottom {
    display: block;
  }
}

.scrolled .header {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.scrolled .header__top {
  padding: 10px 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-backface-visibility: hidden;
}
.scrolled .header__top__left .site-logo {
  width: 120px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-backface-visibility: hidden;
}
.scrolled .header__top__right .menu .menu-item a {
  font-size: 11px;
}
@media only screen and (max-width: 750px) {
  .scrolled .header__top__right {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: scroll;
    white-space: nowrap;
  }
  .scrolled .header__top__right .menu .menu-item a {
    font-size: 14px;
  }
}

.error_template {
  padding: 200px 0;
}
.error_template .page-content {
  width: 50%;
  margin-top: 20px;
}
@media only screen and (max-width: 600px) {
  .error_template .page-content {
    width: 100%;
  }
}

.site-main {
  margin-top: 203px;
}
@media only screen and (max-width: 1050px) {
  .site-main {
    margin-top: 113px;
  }
}

.site-logo {
  display: block;
  width: 100%;
  max-width: 170px;
  max-height: 83px;
}
@media only screen and (max-width: 750px) {
  .site-logo {
    max-width: 105px;
  }
}
.site-logo {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-backface-visibility: hidden;
  z-index: 2;
}
.site-logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 354/158;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-backface-visibility: hidden;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
  gap: 26px;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 1050px) {
  .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
.menu > .menu-menu-principal-container {
  width: 100%;
}
.menu {
  /* =========================
     MENU ITEMS
  ========================= */
}
.menu > li.menu-item {
  list-style: none;
}
@media only screen and (max-width: 1050px) {
  .menu > li.menu-item {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #D2D4D5;
  }
}
.menu > li.menu-item a {
  color: #2A2162;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(49.5%, #2A2162), color-stop(50%, transparent));
  background: linear-gradient(to right, #2A2162 49.5%, transparent 50%);
  background-size: 205% 1px;
  background-position: bottom 0 left 100%;
  background-repeat: no-repeat;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.menu > li.menu-item a:hover {
  background-position: 0% bottom;
  background-position: bottom 0 left 0%;
}
.menu > li.menu-item.current-menu-item a {
  background-position: bottom 0 left 0%;
}
.menu {
  /* =========================
     ITEMS CON SUBMENU
  ========================= */
}
.menu li.menu-item-has-children {
  position: relative;
  /* =========================
     SUBMENU BASE
  ========================= */
}
.menu li.menu-item-has-children > .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 15px);
          transform: translate(-50%, 15px);
  padding: 20px;
  background: #ffffff;
  -webkit-filter: drop-shadow(15px 15px 20px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(15px 15px 20px rgba(0, 0, 0, 0.1));
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 10;
  margin: 0;
}
.menu li.menu-item-has-children > .sub-menu li.menu-item {
  list-style: none;
  margin-bottom: 12px;
}
.menu li.menu-item-has-children > .sub-menu li.menu-item:last-child {
  margin-bottom: 0;
}
.menu li.menu-item-has-children {
  /* =========================
     DESKTOP: HOVER
  ========================= */
}
@media only screen and (min-width: 1050px) {
  .menu li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.menu li.menu-item-has-children {
  /* =========================
     MOBILE: ABRE ABAJO
  ========================= */
}
@media only screen and (max-width: 1050px) {
  .menu li.menu-item-has-children > .sub-menu {
    position: static;
    -webkit-transform: none;
            transform: none;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-filter: none;
            filter: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: opacity 0.25s ease, max-height 0.25s ease;
    transition: opacity 0.25s ease, max-height 0.25s ease;
  }
  .menu li.menu-item-has-children > .sub-menu > li:first-child {
    margin-top: 12px;
  }
  .menu li.menu-item-has-children > .sub-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 500px;
  }
}

/* =========================
   BURGER BUTTON
========================= */
.responsive__btn {
  float: left;
  position: relative;
  z-index: 11;
  width: 28px;
  height: 22px;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 1050px) {
  .responsive__btn {
    display: block;
  }
}
.responsive__btn span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.responsive__btn span:nth-child(1) {
  top: 0;
}
.responsive__btn span:nth-child(2), .responsive__btn span:nth-child(3) {
  top: 9px;
}
.responsive__btn span:nth-child(4) {
  top: 18px;
}

.header.js-child-open .responsive__btn span:nth-child(1),
.header.js-child-open .responsive__btn span:nth-child(4) {
  width: 0;
  left: 50%;
}
.header.js-child-open .responsive__btn span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header.js-child-open .responsive__btn span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}