@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 */
@font-face {
  font-family: "Tiempos Text";
  src: url("../webfonts/tiempos-text-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tiempos Text";
  src: url("../webfonts/tiempos-text-regular-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Tiempos Text";
  src: url("../webfonts/tiempos-text-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tiempos Text";
  src: url("../webfonts/tiempos-text-medium-italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Tiempos Text";
  src: url("../webfonts/tiempos-text-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tiempos Text";
  src: url("../webfonts/tiempos-text-semibold-italic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Tiempos Text";
  src: url("../webfonts/tiempos-text-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tiempos Text";
  src: url("../webfonts/tiempos-text-bold-italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Manuka Condensed";
  src: url("../webfonts/manuka-condensed-thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manuka Condensed";
  src: url("../webfonts/manuka-condensed-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manuka Condensed";
  src: url("../webfonts/manuka-condensed-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manuka Condensed";
  src: url("../webfonts/manuka-condensed-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manuka Condensed";
  src: url("../webfonts/manuka-condensed-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manuka Condensed";
  src: url("../webfonts/manuka-condensed-black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manuka Condensed";
  src: url("../webfonts/manuka-condensed-ultra.woff2") format("woff2");
  font-weight: 950;
  font-style: normal;
  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: "Tiempos Text", serif;
  font-size: clamp(16px, 11.8px + 0.007 * 100vw, 22px);
  line-height: 1.6;
  --headerheight: 120px;
  --bodycolor: #1c2b39;
  --bodybtn: #2d3374;
  --bodytitle: #2d3374;
  --bodygrey: #72808a;
  --buttonborder: #d8dcdb;
  color: var(--bodycolor);
}
@media screen and (max-height: 850px) {
  body {
    --headerheight: 100px;
  }
}
@media screen and (max-height: 750px) {
  body {
    --headerheight: 80px;
  }
}
@media only screen and (max-width: 750px) {
  body {
    --headerheight: 72px;
    --mobile: 1;
  }
}
body img {
  max-width: 100%;
  height: auto;
}
body ul li {
  list-style: none;
}
body p:not(:last-child) {
  margin-bottom: 20px;
}
body:has(.home-hero) {
  background: #2d3374;
  --bodycolor: #ffffff;
  --bodybtn: #ffffff;
  --bodytitle: #ffffff;
  --bodygrey: #d8dcdb;
  --buttonborder: rgba(255, 255, 255, 0.2);
}

.hidden {
  display: none;
}

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

button {
  background-color: transparent;
}

select {
  font-family: "Tiempos Text", serif;
}

h1,
.h1 {
  font-family: "Manuka Condensed", sans-serif;
  font-size: clamp(160px, 67px + 0.155 * 100vw, 290px);
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h2,
.h2 {
  font-family: "Manuka Condensed", sans-serif;
  font-size: clamp(60px, 17.4px + 0.071 * 100vw, 120px);
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}

h3,
.h3 {
  font-family: "Manuka Condensed", sans-serif;
  font-size: clamp(54px, 35.4px + 0.031 * 100vw, 80px);
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}

h4,
.h4 {
  font-family: "Manuka Condensed", sans-serif;
  font-size: clamp(42px, 34.8px + 0.012 * 100vw, 52px);
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
}

h5,
.h5 {
  font-family: "Manuka Condensed", sans-serif;
  font-size: clamp(36px, 37.2px + -0.002 * 100vw, 34px);
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h6,
.h6 {
  font-family: "Manuka Condensed", sans-serif;
  font-size: clamp(26px, 29px + -0.005 * 100vw, 22px);
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h2.is-style-alt {
  font-family: "Tiempos Text", serif;
  font-size: clamp(30px, 15.6px + 0.024 * 100vw, 50px);
  font-weight: 600;
  text-transform: none;
}

h3.is-style-alt {
  font-family: "Tiempos Text", serif;
  font-size: clamp(26px, 15.8px + 0.017 * 100vw, 40px);
  font-weight: 600;
  text-transform: none;
}

h4.is-style-alt {
  font-family: "Tiempos Text", serif;
  font-size: clamp(22px, 13.6px + 0.014 * 100vw, 34px);
  font-weight: 600;
  text-transform: none;
}

h5.is-style-alt {
  font-family: "Tiempos Text", serif;
  font-size: clamp(20px, 15.8px + 0.007 * 100vw, 26px);
  font-weight: 600;
  text-transform: none;
}

h6.is-style-alt {
  font-family: "Tiempos Text", serif;
  font-size: clamp(18px, 15px + 0.005 * 100vw, 22px);
  font-weight: 600;
  text-transform: none;
}

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

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: 1516px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

.has-text-align-left {
  text-align: left;
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-right {
  text-align: right;
}

.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;
  /*
  > *:not(.default_block) {
      margin-bottom: var(--blockMargin, 150px);

      @include responsive("tablet-h") {
          margin-bottom: var(--blockMarginTablet, 80px);
      }

      @include responsive("mobile-h") {
          margin-bottom: var(--blockMarginMobile, 60px);
      }
  }
      */
}

.text_block h1,
.text_block h2,
.text_block h3,
.text_block h4,
.text_block h5,
.text_block h6 {
  color: #2d3374;
  margin-bottom: 20px;
}
.text_block h1 {
  font-family: "Manuka Condensed", sans-serif;
  font-size: clamp(160px, 67px + 0.155 * 100vw, 290px);
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.text_block h2 {
  font-family: "Manuka Condensed", sans-serif;
  font-size: clamp(60px, 17.4px + 0.071 * 100vw, 120px);
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.text_block h3 {
  font-family: "Manuka Condensed", sans-serif;
  font-size: clamp(54px, 35.4px + 0.031 * 100vw, 80px);
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.text_block h4 {
  font-family: "Manuka Condensed", sans-serif;
  font-size: clamp(42px, 34.8px + 0.012 * 100vw, 52px);
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
}
.text_block h5 {
  font-family: "Manuka Condensed", sans-serif;
  font-size: clamp(36px, 37.2px + -0.002 * 100vw, 34px);
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.text_block h6 {
  font-family: "Manuka Condensed", sans-serif;
  font-size: clamp(26px, 29px + -0.005 * 100vw, 22px);
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.text_block ul,
.text_block ol {
  padding-left: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.text_block ul li {
  list-style: disc;
  margin-bottom: 24px;
}
.text_block li strong {
  color: #2d3374;
}
.text_block a:not(.button) {
  color: #ffd200;
  text-decoration: none;
}
.text_block a:not(.button):hover {
  text-decoration: underline;
}
.text_block blockquote .default_block {
  border-top: 4px solid #d8dcdb;
  border-bottom: 4px solid #d8dcdb;
  padding: 40px 0;
  position: relative;
  margin: 0;
}
.text_block blockquote .default_block:before {
  width: 50px;
  height: 35px;
  left: 0;
  top: -15px;
  background: #ffffff url(../images/icons/quote.svg) no-repeat left;
  position: absolute;
  content: "";
}
.text_block blockquote p {
  font-size: clamp(18px, 10.8px + 0.012 * 100vw, 28px);
  color: #2d3374;
}
.text_block blockquote.is-style-noicon .default_block:before {
  display: none;
}
body:has(.home-hero) .text_block blockquote .default_block:before {
  background: #2d3374 url(../images/icons/quotewhite.svg) no-repeat left;
}
body:has(.home-hero) .text_block blockquote p {
  color: #ffffff;
}
.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%;
  }
}

h1.big {
  font-size: clamp(140px, -46px + 0.31 * 100vw, 400px);
}

.desktop {
  display: contents;
}
@media only screen and (max-width: 900px) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: contents;
}
@media only screen and (min-width: 900px) {
  .mobile {
    display: none;
  }
}

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: #2d3374;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.skip-to-content:focus {
  top: 0;
}

.header {
  position: relative;
}
.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: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  max-width: 100%;
  padding: 0 clamp(20px, -22.6px + 0.071 * 100vw, 80px);
}
.header__right__update {
  font-size: 12px;
  color: #72808a;
}
.header__right__update strong {
  color: #2d3374;
}
body:has(.home-hero) .header .container {
  height: 130px;
}
body:has(.home-hero) .header .header__right {
  display: none;
}

.site-logo {
  display: block;
  max-width: 250px;
}
.site-logo .icon-logomenu {
  display: none;
}
body:has(.home-hero) .site-logo .icon-logo {
  display: none;
}
body:has(.home-hero) .site-logo .icon-logomenu {
  display: block;
  color: #ffffff;
  width: 140px;
}
body:has(.home-hero) .site-logo .icon-logomenu svg {
  display: block;
  height: auto;
  max-width: 100%;
}

.main-menu {
  position: fixed;
  bottom: 0%;
  left: 0;
  width: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0 -8px 20px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 -8px 20px 0 rgba(0, 0, 0, 0.12);
  border-top: 6px solid #2d3374;
  z-index: 10;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateY(calc(100% - var(--headerheight)));
          transform: translateY(calc(100% - var(--headerheight)));
  bottom: calc(var(--headerheight) * -1);
}
.main-menu.in {
  bottom: 0;
}
@media only screen and (max-width: 750px) {
  .main-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9;
    background: rgba(45, 51, 116, 0.8);
    backdrop-filter: blur(6px);
    pointer-events: none;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .menu-open .main-menu__overlay {
    opacity: 1;
    pointer-events: all;
  }
}
@media only screen and (max-width: 750px) {
  .main-menu {
    border-top-width: 4px;
  }
}
.main-menu__top {
  height: var(--headerheight);
  position: relative;
}
.main-menu__top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 750px) {
  .main-menu__top .container {
    padding: 0 12px;
    margin-top: -4px;
  }
}
.main-menu__top .menutoggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.main-menu__top:has(.menutoggle:hover) .main-menu__right__menutoggle:after {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.menu-open .main-menu {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.menu-open .main-menu .main-menu__right__menutoggle:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.menu-open .main-menu:has(.menutoggle:hover) .main-menu__right__menutoggle:after {
  -webkit-transform: rotate(180deg) translateY(-5px);
          transform: rotate(180deg) translateY(-5px);
}
.main-menu__left {
  color: #72808a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 750px) {
  .main-menu__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.main-menu__left .text {
  font-style: italic;
  letter-spacing: -0.4px;
  font-size: clamp(9px, 1.2px + 0.013 * 100vw, 20px);
}
@media only screen and (max-width: 750px) {
  .main-menu__left .text {
    line-height: 1.2;
  }
}
.main-menu__left .label {
  font-family: "Manuka Condensed", sans-serif;
  color: #2d3374;
  font-size: clamp(22px, 10.6px + 0.019 * 100vw, 38px);
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-menu__left .label:after {
  width: 1px;
  height: 22px;
  background: #c6cdd1;
  content: "";
  display: block;
}
.main-menu__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-menu__right__country {
  font-size: clamp(10px, 8.8px + 0.002 * 100vw, 12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-align: right;
  line-height: 1.3;
  color: #1c2b39;
  white-space: nowrap;
}
.main-menu__right__country:after {
  width: 1px;
  height: 22px;
  background: #c6cdd1;
  content: "";
  display: block;
}
.main-menu__right__country strong {
  display: block;
  color: #2d3374;
  text-transform: uppercase;
}
.main-menu__right__menutoggle {
  font-size: clamp(10px, 7px + 0.005 * 100vw, 14px);
  font-weight: 700;
  text-transform: uppercase;
  color: #2d3374;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  cursor: pointer;
}
.main-menu__right__menutoggle:after {
  width: 24px;
  aspect-ratio: 1;
  border-radius: 100%;
  background: url(../images/icons/menu.svg) no-repeat center;
  content: "";
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-menu__bottom {
  padding-bottom: 60px;
}
@media only screen and (max-width: 750px) {
  .main-menu__bottom {
    padding-bottom: 30px;
  }
}
.main-menu__bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media only screen and (max-width: 750px) {
  .main-menu__bottom .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 0 12px;
  }
}
.main-menu__bottom__bradncol {
  width: 248px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 750px) {
  .main-menu__bottom__bradncol {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
.main-menu__bottom__bradncol .icon-logomenu svg {
  display: block;
}
@media only screen and (max-width: 750px) {
  .main-menu__bottom__bradncol .icon-logomenu svg {
    width: 136px;
    height: auto;
  }
}
.main-menu__bottom__bradncol ul {
  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;
  font-size: 12px;
}
@media only screen and (max-width: 750px) {
  .main-menu__bottom__bradncol ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.main-menu__bottom__bradncol ul a {
  color: #2d3374;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}
@media only screen and (max-width: 750px) {
  .main-menu__bottom__bradncol ul a {
    text-align: center;
    display: block;
  }
}
.main-menu__bottom__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 27px;
}
@media only screen and (max-width: 750px) {
  .main-menu__bottom__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(114, 128, 138, 0.3);
    max-height: calc(100dvh - 315px);
    overflow-y: auto;
  }
}
@media only screen and (min-width: 750px) {
  .main-menu__bottom__menu__col {
    border-left: 1px solid rgba(114, 128, 138, 0.3);
    padding-left: 27px;
  }
}
.main-menu__bottom__menu .type--number {
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 750px) {
  .main-menu__bottom__menu .type--number {
    font-size: 14px;
    border-top: 1px solid rgba(114, 128, 138, 0.3);
    padding: 10px 0;
  }
}
@media only screen and (max-width: 750px) and (max-height: 750px) {
  .main-menu__bottom__menu .type--number {
    padding: 7px 0;
  }
}
@media only screen and (max-width: 750px) and (max-height: 700px) {
  .main-menu__bottom__menu .type--number {
    padding: 5px 0;
  }
}
.main-menu__bottom__menu .type--number a {
  color: #2d3374;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.main-menu__bottom__menu .type--number a .n {
  font-size: 52px;
  color: #d8dcdb;
  font-family: "Manuka Condensed", sans-serif;
  font-weight: 850;
  display: block;
  text-decoration: none !important;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  .main-menu__bottom__menu .type--number a .n {
    font-size: 42px;
  }
}
.main-menu__bottom__menu .type--number a .t {
  text-decoration: underline;
  text-decoration-color: #d8dcdb;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.main-menu__bottom__menu .type--subitem a {
  display: block;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #d8dcdb;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  color: #2d3374;
  font-size: 18px;
  padding: 2px 0;
}
@media only screen and (max-width: 750px) {
  .main-menu__bottom__menu .type--subitem a {
    font-size: 14px;
    max-height: 0;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    pointer-events: none;
    padding: 0;
  }
}
@media only screen and (min-width: 750px) {
  .main-menu__bottom__menu ul:has(.type--subitem) .type--number .t {
    text-decoration: none;
  }
}
@media only screen and (max-width: 750px) {
  .main-menu__bottom__menu ul:has(.type--subitem) .type--number a:after {
    width: 24px;
    height: 24px;
    content: "";
    margin-left: auto;
    background: url(../images/icons/menumobile.svg) no-repeat center;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .main-menu__bottom__menu ul.open .type--number a:after {
    background: url(../images/icons/menumobileopen.svg) no-repeat center;
  }
  .main-menu__bottom__menu ul.open .type--subitem a {
    max-height: 30px;
    opacity: 1;
    pointer-events: all;
    padding: 2px 0;
  }
  .main-menu__bottom__menu ul.open .type--subitem a:last-child {
    margin-bottom: 5px;
  }
}
/*# sourceMappingURL=main-above.css.map */