@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;
}
.image-background:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: "";
}

/* 
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 */
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: "Josefin Sans", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: #353535;
  font-weight: 300;
  background: #f7f6f0;
}
body img {
  max-width: 100%;
  height: auto;
}
body ul li {
  list-style: none;
}
body p:not(:last-child) {
  margin-bottom: 20px;
}
body p iframe[src*=youtube], body p iframe[src*=vimeo] {
  aspect-ratio: 16/9;
  max-width: 100%;
  height: auto;
}

.hidden {
  display: none;
}

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

button {
  background-color: transparent;
}

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

h1,
.h1,
.h1 p {
  font-family: "Josefin Slab", serif;
  font-size: clamp(40px, 13.6px + 0.044 * 100vw, 60px);
  color: #002e4f;
}
h1 span,
.h1 span,
.h1 p span {
  color: #fdc215;
}
h1,
.h1,
.h1 p {
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  line-height: 1.05;
  font-weight: 700;
}

h2,
.h2,
.h2 p {
  font-family: "Josefin Slab", serif;
  font-size: clamp(30px, 16.8px + 0.022 * 100vw, 40px);
  color: #002e4f;
}
h2 span,
.h2 span,
.h2 p span {
  color: #fdc215;
}
h2,
.h2,
.h2 p {
  text-transform: uppercase;
  line-height: 1.2;
}

h3,
.h3,
.h3 p {
  font-family: "Josefin Slab", serif;
  font-size: clamp(26px, 20.6px + 0.009 * 100vw, 30px);
  color: #002e4f;
}
h3 span,
.h3 span,
.h3 p span {
  color: #fdc215;
}
h3,
.h3,
.h3 p {
  text-transform: uppercase;
  line-height: 1.2;
}

h4,
.h4,
.h4 p {
  font-family: "Josefin Slab", serif;
  font-size: clamp(18px, 18px + 0 * 100vw, 18px);
  color: #002e4f;
}
h4 span,
.h4 span,
.h4 p span {
  color: #fdc215;
}
h4,
.h4,
.h4 p {
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  line-height: 1.55;
  font-weight: 400;
}

h5,
.h5,
.h5 p {
  font-family: "Josefin Slab", serif;
  font-size: clamp(16px, 13.6px + 0.004 * 100vw, 18px);
  color: #002e4f;
}
h5 span,
.h5 span,
.h5 p span {
  color: #fdc215;
}

h6,
.h6,
.h6 p {
  font-family: "Josefin Slab", serif;
  font-size: clamp(16px, 16px + 0 * 100vw, 16px);
  color: #002e4f;
}
h6 span,
.h6 span,
.h6 p span {
  color: #fdc215;
}

a {
  color: #002e4f;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

.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: 1600px;
  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: 1px;
}
.site-content > *:not(.default_block) {
  margin-bottom: var(--blockMargin, 150px);
}
@media only screen and (max-width: 1050px) {
  .site-content > *:not(.default_block) {
    margin-bottom: var(--blockMarginTablet, 80px);
  }
}
@media only screen and (max-width: 750px) {
  .site-content > *:not(.default_block) {
    margin-bottom: var(--blockMarginMobile, 60px);
  }
}

.text_block h1,
.text_block h2,
.text_block h3,
.text_block h4,
.text_block h5,
.text_block h6 {
  color: #002e4f;
  margin-bottom: 20px;
}
.text_block h1 {
  font-family: "Josefin Slab", serif;
  font-size: clamp(40px, 13.6px + 0.044 * 100vw, 60px);
  color: #002e4f;
}
.text_block h1 span {
  color: #fdc215;
}
.text_block h1 {
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  line-height: 1.05;
  font-weight: 700;
}
.text_block h2 {
  font-family: "Josefin Slab", serif;
  font-size: clamp(30px, 16.8px + 0.022 * 100vw, 40px);
  color: #002e4f;
}
.text_block h2 span {
  color: #fdc215;
}
.text_block h2 {
  text-transform: uppercase;
  line-height: 1.2;
}
.text_block h3 {
  font-family: "Josefin Slab", serif;
  font-size: clamp(26px, 20.6px + 0.009 * 100vw, 30px);
  color: #002e4f;
}
.text_block h3 span {
  color: #fdc215;
}
.text_block h3 {
  text-transform: uppercase;
  line-height: 1.2;
}
.text_block h4 {
  font-family: "Josefin Slab", serif;
  font-size: clamp(18px, 18px + 0 * 100vw, 18px);
  color: #002e4f;
}
.text_block h4 span {
  color: #fdc215;
}
.text_block h4 {
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  line-height: 1.55;
  font-weight: 400;
}
.text_block h5 {
  font-family: "Josefin Slab", serif;
  font-size: clamp(16px, 13.6px + 0.004 * 100vw, 18px);
  color: #002e4f;
}
.text_block h5 span {
  color: #fdc215;
}
.text_block h6 {
  font-family: "Josefin Slab", serif;
  font-size: clamp(16px, 16px + 0 * 100vw, 16px);
  color: #002e4f;
}
.text_block h6 span {
  color: #fdc215;
}
.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([class]) {
  color: #002e4f;
  text-decoration: none;
}
.text_block a:not([class]):hover {
  text-decoration: underline;
}
.text_block blockquote {
  padding-left: 30px;
  border-left: 3px solid #002e4f;
}
.text_block blockquote p {
  font-family: "Josefin Slab", serif;
  font-size: clamp(18px, 18px + 0 * 100vw, 18px);
  color: #002e4f;
}
.text_block blockquote p span {
  color: #fdc215;
}
.text_block blockquote p {
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  line-height: 1.55;
  font-weight: 400;
}
.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%;
  }
}

.lab {
  color: #8a8a8a;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 100;
}
@media screen and (min-width: 1030px) and (max-height: 800px) {
  .header {
    padding: 20px 0;
  }
}
.header {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.nav-up:not(.menu-open) .header {
  -webkit-transform: translateY(-120px);
          transform: translateY(-120px);
}
.nav-up:not(.menu-open) .header:before {
  opacity: 0;
}
.header:before {
  width: 100%;
  height: 200px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (min-width: 1030px) and (max-height: 800px) {
  .header:before {
    height: 150px;
  }
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}
@media only screen and (max-width: 1030px) {
  .header .container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 1030px) {
  .header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
.header__right__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 1030px) {
  .header__right__top {
    display: contents;
  }
}
.header__right__top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  border-right: 1px solid #ffffff;
  padding-right: 20px;
  font-size: 12px;
  line-height: 1;
}
@media only screen and (max-width: 1030px) {
  .header__right__top ul {
    display: none;
  }
}
.header__right__top ul a {
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  display: block;
  padding: 3px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__right__top ul a:hover {
  color: #fdc215;
}
.header__right__top__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.header__right__top__buttons span,
.header__right__top__buttons svg {
  display: block;
}
@media only screen and (max-width: 1030px) {
  .header__right__top__buttons {
    gap: 30px;
  }
}
@media only screen and (min-width: 1030px) {
  .header__right__top__buttons__search {
    display: none;
  }
}
.header__right__top__buttons a,
.header__right__top__buttons button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #ffffff;
}
.header__right__top__buttons a:hover,
.header__right__top__buttons button:hover {
  color: #fdc215;
}
.header__right__bottom {
  margin-top: 15px;
}
@media only screen and (min-width: 1030px) {
  .header__right .search-form {
    width: 30px;
    height: 30px;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header__right .search-form:has(input:focus) {
    width: 200px;
  }
  .header__right .search-form:has(input:focus) .after {
    opacity: 0;
  }
  .header__right .search-form:not(:has(input:focus)) input:hover {
    cursor: pointer;
  }
  .header__right .search-form .after {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0;
    top: 0;
    content: "";
    pointer-events: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #ffffff;
    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;
  }
  .header__right .search-form .after:hover {
    color: #fdc215;
  }
  .header__right .search-form:hover .after {
    color: #fdc215;
  }
  .header__right .search-form .screen-reader-text {
    display: none;
  }
  .header__right .search-form input[type=search] {
    height: 30px;
    border-radius: 30px;
    background: #ffffff;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 10px;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
  }
  .header__right .search-form input[type=search]:focus {
    outline: none;
  }
  .header__right .search-form input[type=search]:focus {
    opacity: 1;
  }
  .header__right .search-form input[type=submit] {
    position: absolute;
    width: 30px;
    height: 30px;
    pointer-events: none;
    display: none;
  }
}
@media only screen and (max-width: 1030px) {
  .header__right .search-form {
    position: absolute;
    top: 90px;
    left: 30px;
    right: 30px;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .search-open .header__right .search-form {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .header__right .search-form .screen-reader-text {
    display: none;
  }
  .header__right .search-form .after {
    display: none;
  }
  .header__right .search-form input[type=search] {
    height: 40px;
    border-radius: 30px;
    background: #ffffff;
    font-size: 16px;
    padding-left: 20px;
    opacity: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
    padding-right: 40px;
  }
  .header__right .search-form input[type=search]:focus {
    outline: none;
  }
  .header__right .search-form input[type=search]:focus {
    opacity: 1;
  }
  .header__right .search-form input[type=submit] {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
    background: url(../images/icons/search-dark.svg) no-repeat center;
    right: 0;
    top: 0;
    font-size: 0;
    color: transparent;
  }
}

.site-logo {
  display: block;
  max-width: 70px;
  position: relative;
  z-index: 100;
}
.site-logo img {
  display: block;
}

@media only screen and (min-width: 1030px) {
  .main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: relative;
  }
  .main-menu__cont {
    display: contents;
  }
  .main-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
  }
  .main-menu a {
    text-decoration: none !important;
    font-size: 20px;
    text-transform: uppercase;
    font-family: "Bebas Neue", serif;
    line-height: 1;
  }
  .main-menu .menu > li > a {
    position: relative;
    z-index: 5;
    padding: 10px 0;
  }
  .main-menu__left a {
    color: #fdc215;
  }
  .main-menu__left .menu-item-has-children > a, .main-menu__right .menu-item-has-children > a {
    position: relative;
  }
  .main-menu__left .menu-item-has-children > a:before, .main-menu__right .menu-item-has-children > a:before {
    position: absolute;
    height: 10px;
    width: 100%;
    bottom: -4px;
    left: 0;
    content: "";
    background: #fdc215;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .main-menu__left .menu-item-has-children:hover .sub-menu, .main-menu__right .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  .main-menu__left .menu-item-has-children:hover > a:before, .main-menu__right .menu-item-has-children:hover > a:before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .main-menu__left .sub-menu, .main-menu__right .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: calc(100dvw - 60px);
    width: calc(var(--rvw) - 60px);
    padding-top: 50px;
    padding-bottom: 50px;
    max-width: 1540px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    gap: 30px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .main-menu__left .sub-menu:before, .main-menu__right .sub-menu:before {
    width: 2000vw;
    height: 1px;
    content: "";
    position: absolute;
    left: -100vw;
    background-color: rgba(255, 255, 255, 0.2);
    top: 0;
    z-index: 2;
  }
  .main-menu__left .sub-menu:after, .main-menu__right .sub-menu:after {
    position: absolute;
    top: -200px;
    width: 2000vw;
    bottom: 0;
    content: "";
    position: absolute;
    left: -100vw;
    background-color: rgba(0, 46, 79, 0.8);
    pointer-events: none;
  }
  .main-menu__left .sub-menu h4, .main-menu__right .sub-menu h4 {
    font-family: "Josefin Sans", sans-serif;
    color: #fdc215;
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }
  .main-menu__left .sub-menu h4 a:hover, .main-menu__right .sub-menu h4 a:hover {
    color: rgb(195.8262711864, 146.4512711864, 1.6737288136);
  }
  .main-menu__left .sub-menu li, .main-menu__right .sub-menu li {
    width: 20%;
  }
  .main-menu__left .sub-menu li li, .main-menu__right .sub-menu li li {
    width: auto;
  }
  .main-menu__left .sub-menu .col-menu, .main-menu__right .sub-menu .col-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
    width: 100%;
  }
  .main-menu__left .sub-menu .col-menu a, .main-menu__right .sub-menu .col-menu a {
    font-size: 14px;
    font-family: "Josefin Sans", sans-serif;
    color: #ffffff;
    line-height: 1;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .main-menu__left .sub-menu .col-menu a:hover, .main-menu__right .sub-menu .col-menu a:hover {
    color: #fdc215;
  }
  .main-menu__right {
    border-left: 1px solid #ffffff;
    padding-left: 20px;
    margin-left: 20px;
  }
  .main-menu__right a {
    color: #ffffff;
  }
  .main-menu .sub-menu__back {
    display: none;
  }
}
@media only screen and (max-width: 1030px) {
  .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #002e4f;
    z-index: 10;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 120px 30px 30px;
    overflow: hidden;
  }
  .main-menu__cont {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
  }
  .menu-open .main-menu {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .main-menu .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-menu .menu-item-has-children > a:after {
    width: 20px;
    height: 20px;
    background: url(../images/icons/arrow-white.svg) no-repeat center;
    background-size: 100% auto;
    display: block;
    content: "";
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    margin-top: -3px;
  }
  .main-menu .menu-item-has-children.active .sub-menu__cont_l1 {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .main-menu .menu > li > a {
    font-size: 28px;
    color: #ffffff;
    text-transform: uppercase;
    font-family: "Bebas Neue", serif;
    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;
  }
  .main-menu .sub-menu__cont_l1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: #fdc215;
    padding: 120px 30px 30px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    z-index: 1;
  }
  .main-menu .sub-menu__cont_l1 .sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .menu-open .main-menu .sub-menu__cont_l1 {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .main-menu .sub-menu__cont_l1 a {
    color: #002e4f;
    font-weight: 400;
  }
  .main-menu .sub-menu__cont_l1 h4 {
    font-size: 28px;
    font-family: "Bebas Neue", serif;
  }
  .main-menu .sub-menu__cont_l1 .sub-menu__back {
    background: url(../images/icons/arrow_back.svg) no-repeat center;
    background-size: 22px auto;
    width: 30px;
    height: 30px;
    position: fixed;
    top: 50px;
    right: 80px;
    display: block;
    border: none;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    z-index: 10;
  }
}

.home-hero {
  height: 700px;
  position: relative;
  background: #000;
}
@media only screen and (max-width: 600px) {
  .home-hero {
    height: 100vh;
  }
}
.home-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.home-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-hero__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: "";
}
.home-hero__bg {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: var(--v1, 0);
}
.home-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 1s;
  transition: 1s;
  opacity: var(--v1, 0);
}
.home-hero__content {
  position: relative;
  height: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 50px;
}
.home-hero__content__title {
  text-align: right;
  color: #ffffff;
}
.home-hero__content__title > em {
  display: block;
  overflow: hidden;
}
.home-hero__content__title > em:nth-child(1) em {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.home-hero__content__title > em:nth-child(2) em {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.home-hero__content__title > em:nth-child(3) em {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.home-hero__content__title > em:nth-child(4) em {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.home-hero__content__title em em {
  font-style: normal;
  display: block;
  -webkit-transform: translateY(var(--p0, 105%));
          transform: translateY(var(--p0, 105%));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (max-width: 750px) {
  .home-hero__content__title {
    text-align: center;
  }
}

.page-hero {
  position: relative;
  background: #002E4A;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-hero__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: "";
}
.page-hero__bg {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: var(--v1, 0);
}
.page-hero__bg:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.page-hero .container {
  padding-top: 150px;
  min-height: 600px;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 50px;
  color: #ffffff;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 600px) {
  .page-hero .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 750px) {
  .page-hero .container {
    min-height: 75vh;
  }
}
.page-hero__date {
  font-size: 25px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  margin-bottom: 30px;
}
.page-hero__title {
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}
.page-hero__title > em {
  display: block;
  overflow: hidden;
}
.page-hero__title > em:nth-child(1) em {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.page-hero__title > em:nth-child(2) em {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.page-hero__title > em:nth-child(3) em {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.page-hero__title > em:nth-child(4) em {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.page-hero__title em em {
  font-style: normal;
  display: block;
  -webkit-transform: translateY(var(--p0, 105%));
          transform: translateY(var(--p0, 105%));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.page-hero__subtitle {
  color: #ffffff;
  font-size: clamp(18px, 8.4px + 0.016 * 100vw, 25px);
  font-weight: 400;
  line-height: 1.12;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.page-hero__subtitle + .page-hero__title {
  margin-top: 10px;
}
.page-hero__buttons {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-hero__tag {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  background: #fdc215;
  padding: 12px 20px 10px;
  color: #002e4f;
  text-transform: uppercase;
  font-size: clamp(16px, 13.6px + 0.004 * 100vw, 18px);
  font-weight: 600;
  line-height: 1;
}
.page-hero.author-hero {
  background: #002E4A;
}
.page-hero.author-hero figure {
  max-width: 150px;
  margin: 0 auto 30px;
}
.page-hero.author-hero figure img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
.page-hero.author-hero .page-hero__subtitle {
  max-width: 1000px;
  margin: 0 auto;
}
.page-hero.author-hero .page-hero__subtitle p {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(16px, 10.6px + 0.009 * 100vw, 20px);
  line-height: 1.4;
}
.page-hero.author-hero .page-hero__subtitle p a {
  color: #fdc215;
}
.page-hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -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;
}
.page-hero.guide-hero {
  overflow: visible;
}
.page-hero.guide-hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(20px, -20.2px + 0.067 * 100vw, 50px);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: left;
}
@media only screen and (max-width: 750px) {
  .page-hero.guide-hero .container {
    -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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.page-hero.guide-hero .container figure img {
  aspect-ratio: 1;
  margin-bottom: -150px;
  max-width: clamp(200px, 66.8px + 0.222 * 100vw, 300px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 750px) {
  .page-hero.guide-hero .container figure img {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 750px) {
  .page-hero.guide-hero .page-hero__bg:after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.8)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  }
}