@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary-color: $blue; /* Example primary color */
  --secondary-color: $lightblue; /* Example secondary color */
}

.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 */
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: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5625;
  color: #212529;
  background: #ffffff;
}
body img {
  max-width: 100%;
  height: auto;
}
body ul li {
  list-style: none;
}
body p {
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
body p:last-child {
  margin-bottom: 0;
}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.is-style-gris {
  background-color: #f9f9f9;
}
section.is-style-blanco {
  background-color: white;
}
section.is-style-celeste {
  background-color: #F5FAFF;
}
section.is-style-azul {
  background-color: #062F3A;
}
section.is-style-degrade, section.is-style-degrade-celeste {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 108, 255, 0.15)), color-stop(49%, #ffffff), to(#ffffff));
  background: linear-gradient(to right, rgba(0, 108, 255, 0.15) 0%, #ffffff 49%, #ffffff 100%);
}
section.is-style-degrade-azul {
  background: -webkit-gradient(linear, left top, right top, from(#254099), to(#3D6BFF));
  background: linear-gradient(to right, #254099 0%, #3D6BFF 100%);
}

.text-lightblue {
  color: #062F3A;
}

.hidden {
  display: none;
}

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

button {
  background-color: transparent;
}

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

h1,
.h1 {
  font-size: clamp(40px, 34px + 0.01 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}

h2,
.h2 {
  font-size: clamp(28px, 22px + 0.01 * 100vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}

h3,
.h3 {
  font-size: clamp(26px, 21.8px + 0.007 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}

h4,
.h4 {
  font-size: clamp(24px, 19.8px + 0.007 * 100vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 400;
}

h5,
.h5 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}

h6,
.h6 {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
}

.h2--small {
  font-size: clamp(26px, 15.8px + 0.017 * 100vw, 40px);
}

a {
  color: #212529;
  -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;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}
@media only screen and (max-width: 1050px) {
  .container {
    padding: 0 30px;
  }
}

.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;
  padding-top: 56.25%;
  position: relative;
}
.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.site-content {
  background-color: #ffffff;
  padding-bottom: 1px;
  /*
  >section:not(.cta):not(.home-hero):not(.hero):not(.servicios){
  	padding: 60px 0;
  }*/
}
.site-content .home-hero + .image-text {
  padding-top: 40px;
}
.site-content > .default_block {
  max-width: 950px;
  padding-top: 20px;
  font-family: "Poppins", sans-serif;
}
.site-content > .default_block h1,
.site-content > .default_block h2,
.site-content > .default_block h3,
.site-content > .default_block h4,
.site-content > .default_block h5,
.site-content > .default_block h6 {
  position: relative;
  color: #123842;
}
.site-content > .default_block h1, .site-content > .default_block .h1 {
  font-size: clamp(40px, 34px + 0.01 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.site-content > .default_block h2 {
  font-size: clamp(28px, 22px + 0.01 * 100vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.site-content > .default_block h3 {
  font-size: clamp(26px, 21.8px + 0.007 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.site-content > .default_block h4 {
  font-size: clamp(24px, 19.8px + 0.007 * 100vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 400;
}
.site-content > .default_block h5 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}
.site-content > .default_block h6 {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
}
.site-content > .default_block p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1em;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.site-content > .default_block p:last-child {
  margin-bottom: 0;
}
.site-content > .default_block p strong, .site-content > .default_block p b {
  font-weight: 800;
}
.site-content > .default_block p a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #062F3A)), to(var(--lineColor, #062F3A)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #062F3A) 50%, var(--lineColor, #062F3A) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.site-content > .default_block p a:hover {
  background-position: 100% 100%;
}
.site-content > .default_block p a {
  text-decoration: none;
}
.site-content > .default_block ul,
.site-content > .default_block ol {
  padding-left: 20px;
  margin-bottom: 28px;
  line-height: 1.6;
  letter-spacing: 0.48px;
}
.site-content > .default_block ul li {
  list-style: disc;
  margin-bottom: 5px;
}
.site-content > .default_block ul li:last-child {
  margin-bottom: 0;
}
.site-content > .default_block a:not(.link):not(.btn) {
  color: #123842;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #062F3A)), to(var(--lineColor, #062F3A)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #062F3A) 50%, var(--lineColor, #062F3A) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.site-content > .default_block a:not(.link):not(.btn):hover {
  background-position: 100% 100%;
}
.site-content > .default_block a:not(.link):not(.btn) {
  text-decoration: none;
  padding-bottom: 4px;
  font-weight: 500;
}
.site-content > .default_block a:not(.link):not(.btn):hover {
  text-decoration: none;
}
.site-content > .default_block iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.site-content > .default_block blockquote {
  position: relative;
}
.site-content > .default_block blockquote p {
  font-size: clamp(24px, 19.8px + 0.007 * 100vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 400;
}
.site-content > .default_block img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 0 28px 0;
}
.site-content > .default_block .alignleft {
  float: left;
  max-width: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 750px) {
  .site-content > .default_block .alignleft {
    max-width: 100%;
  }
}
.site-content > .default_block .aligncenter {
  margin: 30px auto;
  display: block;
}
.site-content > .default_block .alignright {
  float: right;
  max-width: 50%;
  margin-left: 30px;
}
@media only screen and (max-width: 750px) {
  .site-content > .default_block .alignright {
    max-width: 100%;
  }
}
.site-content > .default_block del {
  text-decoration: line-through;
}
.site-content > .default_block {
  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);
}
.site-content > .default_block .wp-block-embed iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.site-content > .default_block .wp-block-embed.wp-embed-aspect-4-3 iframe {
  aspect-ratio: 4/3;
}
.site-content > .default_block.heading .wp-block-heading {
  margin-bottom: 0;
}
.site-content > .default_block.heading + .embed,
.site-content > .default_block.heading + .video {
  margin-top: -rv(20px, 30px);
}
.site-content > .default_block.paragraph {
  font-family: "Poppins", sans-serif;
}
.site-content > .default_block.paragraph h1,
.site-content > .default_block.paragraph h2,
.site-content > .default_block.paragraph h3,
.site-content > .default_block.paragraph h4,
.site-content > .default_block.paragraph h5,
.site-content > .default_block.paragraph h6 {
  position: relative;
  color: #123842;
}
.site-content > .default_block.paragraph h1, .site-content > .default_block.paragraph .h1 {
  font-size: clamp(40px, 34px + 0.01 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.site-content > .default_block.paragraph h2 {
  font-size: clamp(28px, 22px + 0.01 * 100vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.site-content > .default_block.paragraph h3 {
  font-size: clamp(26px, 21.8px + 0.007 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.site-content > .default_block.paragraph h4 {
  font-size: clamp(24px, 19.8px + 0.007 * 100vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 400;
}
.site-content > .default_block.paragraph h5 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}
.site-content > .default_block.paragraph h6 {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
}
.site-content > .default_block.paragraph p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1em;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.site-content > .default_block.paragraph p:last-child {
  margin-bottom: 0;
}
.site-content > .default_block.paragraph p strong, .site-content > .default_block.paragraph p b {
  font-weight: 800;
}
.site-content > .default_block.paragraph p a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #062F3A)), to(var(--lineColor, #062F3A)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #062F3A) 50%, var(--lineColor, #062F3A) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.site-content > .default_block.paragraph p a:hover {
  background-position: 100% 100%;
}
.site-content > .default_block.paragraph p a {
  text-decoration: none;
}
.site-content > .default_block.paragraph ul,
.site-content > .default_block.paragraph ol {
  padding-left: 20px;
  margin-bottom: 28px;
  line-height: 1.6;
  letter-spacing: 0.48px;
}
.site-content > .default_block.paragraph ul li {
  list-style: disc;
  margin-bottom: 5px;
}
.site-content > .default_block.paragraph ul li:last-child {
  margin-bottom: 0;
}
.site-content > .default_block.paragraph a:not(.link):not(.btn) {
  color: #123842;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #062F3A)), to(var(--lineColor, #062F3A)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #062F3A) 50%, var(--lineColor, #062F3A) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.site-content > .default_block.paragraph a:not(.link):not(.btn):hover {
  background-position: 100% 100%;
}
.site-content > .default_block.paragraph a:not(.link):not(.btn) {
  text-decoration: none;
  padding-bottom: 4px;
  font-weight: 500;
}
.site-content > .default_block.paragraph a:not(.link):not(.btn):hover {
  text-decoration: none;
}
.site-content > .default_block.paragraph iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.site-content > .default_block.paragraph blockquote {
  position: relative;
}
.site-content > .default_block.paragraph blockquote p {
  font-size: clamp(24px, 19.8px + 0.007 * 100vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 400;
}
.site-content > .default_block.paragraph img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 0 28px 0;
}
.site-content > .default_block.paragraph .alignleft {
  float: left;
  max-width: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 750px) {
  .site-content > .default_block.paragraph .alignleft {
    max-width: 100%;
  }
}
.site-content > .default_block.paragraph .aligncenter {
  margin: 30px auto;
  display: block;
}
.site-content > .default_block.paragraph .alignright {
  float: right;
  max-width: 50%;
  margin-left: 30px;
}
@media only screen and (max-width: 750px) {
  .site-content > .default_block.paragraph .alignright {
    max-width: 100%;
  }
}
.site-content > .default_block.paragraph del {
  text-decoration: line-through;
}
.site-content > .default_block.paragraph {
  letter-spacing: 0.03em;
}
.site-content > .default_block:first-of-type {
  margin-top: 40px;
}
.site-content > .default_block:last-of-type {
  margin-bottom: 50px;
}
.site-content .image-block {
  margin-top: 20px;
}
.site-content ::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background: white;
}
.site-content ::-webkit-scrollbar-thumb:hover {
  background: #212529;
}
.site-content ::-webkit-scrollbar-thumb {
  background: #EDF5FF;
}

.maps .twocolumns__title {
  margin-bottom: 50px;
}

.acf-map {
  position: relative;
  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.2s;
          transition-delay: 0.2s;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/1;
}

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

/* Bracket Assistant Chat */
body.bracket-assistant--open .home-hero .playwithaudio,
body.bracket-assistant--open .home-hero .playpause,
body.bracket-assistant--open .home-hero .scroll-next {
  bottom: 120px;
}

.bracket-assistant__message__content h5 {
  font-family: "Poppins", sans-serif;
}
.bracket-assistant__message__content a {
  text-decoration: none;
  font-weight: 600;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #062F3A)), to(var(--lineColor, #062F3A)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #062F3A) 50%, var(--lineColor, #062F3A) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.bracket-assistant__message__content a:hover {
  background-position: 100% 100%;
}
.bracket-assistant__message__content a:hover {
  text-decoration: none;
}
.bracket-assistant__message__content ol, .bracket-assistant__message__content ul {
  padding-left: 20px;
}

.white {
  color: #ffffff;
}

.post-item {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(10px, -4.4px + 0.024 * 100vw, 30px);
  padding-bottom: clamp(10px, -4.4px + 0.024 * 100vw, 30px);
  border-bottom: 1px solid #123842;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.post-item__image {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-item__image img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-item__title {
  margin-bottom: 8px;
  text-transform: none;
  color: #123842;
  font-weight: 300;
  font-size: clamp(18px, 16.8px + 0.002 * 100vw, 20px);
}
.post-item__title a {
  text-decoration: none;
  color: #123842;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #062F3A)), to(var(--lineColor, #062F3A)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #062F3A) 50%, var(--lineColor, #062F3A) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.post-item__title a:hover {
  background-position: 100% 100%;
}

.deco {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 44px;
  background-size: contain;
}
.deco.deco-yellow {
  background: #FFB701 url(../images/chevron.svg) left bottom repeat-x;
}
.deco.deco-yellow.transp {
  background: transparent url(../images/chevron-yellow.svg) left bottom repeat-x;
}
.deco.deco-yellow-black {
  background: #FFB701 url(../images/chevron-black.svg) left bottom repeat-x;
}
.deco.deco-red {
  background: url(../images/chevron-red.svg);
}
.deco.deco-blue {
  background: url(../images/chevron-blue.svg);
}

.tagline {
  font-size: 16px;
  font-weight: 400;
  color: #EC3137;
}

.sitelogo {
  position: relative;
  height: 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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(150px, 114px + 0.06 * 100vw, 200px);
          flex: 0 0 clamp(150px, 114px + 0.06 * 100vw, 200px);
}
.sitelogo img, .sitelogo svg {
  height: auto;
  display: block;
  width: 100%;
}

.site-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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-duration: 0.5s;
          transition-duration: 0.5s;
  width: 100%;
  gap: 20px;
  position: relative;
}
@media only screen and (max-width: 900px) {
  .site-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: absolute;
    top: 100px;
    left: -100vw;
    height: 100dvh;
    background-color: #123842;
    padding: 40px 30px 40px;
  }
  .menuopen .site-menu {
    left: 0;
  }
}
.site-menu .menu {
  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;
  gap: 20px;
  width: 100%;
  padding-left: 40px;
}
@media only screen and (min-width: 900px) {
  .site-menu .menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
  }
}
.site-menu .menu li {
  position: relative;
}
.site-menu .menu li.menu-item-has-children > a:not(.btn--small) {
  padding-right: 18px;
}
.site-menu .menu li.menu-item-has-children > a:not(.btn--small)::after {
  display: block;
}
.site-menu .menu li.menu-item-has-children.js-opened > a:not(.btn--small) {
  color: var(--headerLinkHover);
}
@media only screen and (max-width: 900px) {
  .site-menu .menu li.menu-item-has-children.js-opened > a:not(.btn--small) {
    color: white;
  }
}
.site-menu .menu li.menu-item-has-children.js-opened > a:not(.btn--small)::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.site-menu .menu li.menu-item-has-children.js-opened > a:not(.btn--small)::after {
  border-color: #062F3A;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}
.site-menu .menu li a:not(.btn--small) {
  color: var(--headerLink);
  font-size: 18px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media only screen and (max-width: 900px) {
  .site-menu .menu li a:not(.btn--small) {
    text-align: left;
    color: white;
  }
}
.site-menu .menu li a:not(.btn--small):before {
  height: 2px;
  width: 100%;
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: var(--headerLinkHover);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.site-menu .menu li a:not(.btn--small):after {
  position: absolute;
  top: 10px;
  right: 0px;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #123842;
  border-right: 2px solid #123842;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  display: block;
  display: none;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media only screen and (max-width: 600px) {
  .site-menu .menu li a:not(.btn--small):after {
    left: 75vw;
  }
}
body.home .site-menu .menu li a:not(.btn--small):after {
  border-color: #ffffff;
}
.header.dark .site-menu .menu li a:not(.btn--small):after {
  border-color: white;
}
.site-menu .menu li a:not(.btn--small):hover {
  color: var(--headerLinkHover);
}
@media only screen and (max-width: 900px) {
  .site-menu .menu li a:not(.btn--small):hover {
    color: white;
  }
}
.site-menu .menu li a:not(.btn--small):hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.site-menu .menu li a:not(.btn--small):hover::after {
  border-color: #062F3A;
}
.site-menu .menu li.current-menu-item a:not(.btn-small), .site-menu .menu li.current_page_item a:not(.btn-small) {
  color: var(--headerLinkHover);
}
.site-menu .menu li .sub-menu {
  display: none;
  padding: 20px;
  position: absolute;
  left: 0;
  top: 100%;
  width: auto;
  min-width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  background-color: #123842;
}
@media only screen and (max-width: 900px) {
  .site-menu .menu li .sub-menu {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    left: 10px;
    background: transparent;
    top: auto;
    padding: 4px 0;
  }
}
.site-menu .menu li .sub-menu li {
  position: relative;
}
.site-menu .menu li .sub-menu a {
  font-size: 16px;
  padding-bottom: 2px;
  display: inline-block;
  position: relative;
  color: #ffffff;
  width: auto;
}
@media only screen and (max-width: 900px) {
  .site-menu .menu li .sub-menu a {
    color: #ffffff;
    font-size: 18px;
  }
}
.site-menu .menu li .sub-menu a {
  /*&:after {
  	display: none;
  	@include responsive('tablet-v'){
  		display: block;
  		position: absolute;
  		right: 100%;
  		top: 0;
  		width: 12px;
  		height: 100%;
  		transform: none;
  		border: none;
  		content: "-";
  	}
  }*/
}
.site-menu .menu li .sub-menu a:before {
  height: 1px;
  width: 100%;
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #ffffff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 900px) {
  .site-menu .menu li .sub-menu a:before {
    background: #123842;
  }
}
.site-menu .menu li .sub-menu a:hover {
  opacity: 1;
  color: #ffffff;
}
@media only screen and (max-width: 900px) {
  .site-menu .menu li .sub-menu a:hover {
    color: #FFB701;
  }
}
@media only screen and (max-width: 900px) {
  .site-menu .menu li .sub-menu a:hover::after {
    -webkit-transform: none;
            transform: none;
  }
}
.site-menu .menu li .sub-menu a:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.site-menu .menu li.social-nav a {
  width: 24px;
  height: 24px;
}
.site-menu .menu li.social-nav a svg, .site-menu .menu li.social-nav a img {
  width: 24px;
  height: 24px;
}
.site-menu .menu li.social-nav a svg path, .site-menu .menu li.social-nav a img path {
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.site-menu .menu li.social-nav a::before {
  display: none;
}
.site-menu .menu li.social-nav a:hover svg path {
  fill: #ffffff;
}

.header-buttons {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.header-buttons .lng {
  gap: 10px;
  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;
}
.header-buttons .lng a {
  text-decoration: none;
}
.header-buttons .lng a .trp-ls-language-name {
  text-decoration: none;
}
header.dark .header-buttons .lng a {
  color: white;
}
.header-buttons .lng .trp-flag-image {
  display: none !important;
}

.site-search {
  position: relative;
  width: 100%;
}
.site-search .wc-block-product-search .wc-block-product-search__fields {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.site-search form label {
  display: none;
}
.site-search form input[type=search] {
  width: calc(100% - 25px);
  height: 25px;
  line-height: 25px;
  padding: 0 8px;
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
  color: #123842;
}
.site-search form input[type=search]::-webkit-input-placeholder {
  color: #123842;
}
.site-search form input[type=search]::-moz-placeholder {
  color: #123842;
}
.site-search form input[type=search]:-ms-input-placeholder {
  color: #123842;
}
.site-search form input[type=search]::-ms-input-placeholder {
  color: #123842;
}
.site-search form input[type=search]::placeholder {
  color: #123842;
}
.site-search form button {
  width: 25px;
  height: 25px;
  background: none;
  text-indent: 500px;
  overflow: hidden;
  cursor: pointer;
  background-image: url(images/search.svg);
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0;
}
.site-search form button svg {
  display: none;
}
.site-search img {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: -1;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media only screen and (max-width: 600px) {
  .socials {
    display: none;
  }
}
.socials a {
  display: block;
  height: 15px;
  width: auto;
}
.socials a:hover {
  opacity: 0.5;
}

.post-cont .post-thumbnail {
  width: 100%;
  padding-top: 67.25%;
  position: relative;
  margin-bottom: 19px;
}
.post-cont .post-thumbnail a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.post-cont .post-thumbnail a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-cont .post-thumbnail a img {
  width: 100%;
  height: 100%;
}
.post-cont__date {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
  color: #EDF5FF;
  margin-bottom: 10px;
}
.post-cont__title {
  display: block;
  width: 100%;
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
  color: #123842;
  margin-bottom: 10px;
}
.post-cont__title:hover {
  color: #212529;
}
.post-cont__link {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
  color: #123842;
  text-decoration: underline;
}
.post-cont__link:hover {
  color: #212529;
}

.archive-cont__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 50px;
}
@media only screen and (max-width: 1050px) {
  .archive-cont__list {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 900px) {
  .archive-cont__list {
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .archive-cont__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}

.single-header__title {
  margin: 0 auto;
  width: 985px;
  max-width: 100%;
  font-size: clamp(28px, 22px + 0.01 * 100vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
.single-header__introduction {
  margin: 0 auto;
  width: 773px;
  max-width: 100%;
  font-size: clamp(24px, 19.8px + 0.007 * 100vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 400;
  line-height: 1.2;
  color: #EDF5FF;
  text-align: center;
  margin-top: 30px;
}
.single-header__date {
  margin: 0 auto;
  width: 773px;
  max-width: 100%;
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
  color: #EDF5FF;
  text-align: center;
  margin-top: 30px;
}
.single-header .post-thumbnail {
  margin-top: 70px;
  width: 100%;
}
.single-header .post-thumbnail img {
  width: 100%;
  height: auto;
}

.single-content {
  padding: 80px 0 168px 0;
}
.single-content__cont {
  margin: 0 auto;
  width: 620px;
  max-width: 100%;
  font-family: "Poppins", sans-serif;
}
.single-content__cont h1,
.single-content__cont h2,
.single-content__cont h3,
.single-content__cont h4,
.single-content__cont h5,
.single-content__cont h6 {
  position: relative;
  color: #123842;
}
.single-content__cont h1, .single-content__cont .h1 {
  font-size: clamp(40px, 34px + 0.01 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.single-content__cont h2 {
  font-size: clamp(28px, 22px + 0.01 * 100vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.single-content__cont h3 {
  font-size: clamp(26px, 21.8px + 0.007 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.single-content__cont h4 {
  font-size: clamp(24px, 19.8px + 0.007 * 100vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 400;
}
.single-content__cont h5 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}
.single-content__cont h6 {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
}
.single-content__cont p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1em;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.single-content__cont p:last-child {
  margin-bottom: 0;
}
.single-content__cont p strong, .single-content__cont p b {
  font-weight: 800;
}
.single-content__cont p a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #062F3A)), to(var(--lineColor, #062F3A)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #062F3A) 50%, var(--lineColor, #062F3A) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.single-content__cont p a:hover {
  background-position: 100% 100%;
}
.single-content__cont p a {
  text-decoration: none;
}
.single-content__cont ul,
.single-content__cont ol {
  padding-left: 20px;
  margin-bottom: 28px;
  line-height: 1.6;
  letter-spacing: 0.48px;
}
.single-content__cont ul li {
  list-style: disc;
  margin-bottom: 5px;
}
.single-content__cont ul li:last-child {
  margin-bottom: 0;
}
.single-content__cont a:not(.link):not(.btn) {
  color: #123842;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #062F3A)), to(var(--lineColor, #062F3A)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #062F3A) 50%, var(--lineColor, #062F3A) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.single-content__cont a:not(.link):not(.btn):hover {
  background-position: 100% 100%;
}
.single-content__cont a:not(.link):not(.btn) {
  text-decoration: none;
  padding-bottom: 4px;
  font-weight: 500;
}
.single-content__cont a:not(.link):not(.btn):hover {
  text-decoration: none;
}
.single-content__cont iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.single-content__cont blockquote {
  position: relative;
}
.single-content__cont blockquote p {
  font-size: clamp(24px, 19.8px + 0.007 * 100vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 400;
}
.single-content__cont img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 0 28px 0;
}
.single-content__cont .alignleft {
  float: left;
  max-width: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 750px) {
  .single-content__cont .alignleft {
    max-width: 100%;
  }
}
.single-content__cont .aligncenter {
  margin: 30px auto;
  display: block;
}
.single-content__cont .alignright {
  float: right;
  max-width: 50%;
  margin-left: 30px;
}
@media only screen and (max-width: 750px) {
  .single-content__cont .alignright {
    max-width: 100%;
  }
}
.single-content__cont del {
  text-decoration: line-through;
}

@media only screen and (max-width: 1050px) {
  .latest_news {
    padding: 0 0 0 33px;
  }
}
.latest_news__cont {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 50px;
}
@media only screen and (max-width: 600px) {
  .latest_news__cont {
    width: 100%;
    padding-right: 27%;
  }
}
.latest_news__cont .slick-list {
  overflow: visible;
}
.latest_news__cont .slick-slide {
  margin-right: 40px;
}
.latest_news__cont .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 7px 0 23.5px;
  width: 100vw;
  padding: 0 30px;
  margin-left: -30px;
  margin-top: 48px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.latest_news__cont .slick-dots li {
  margin: 0 23.5px;
  position: relative;
}
.latest_news__cont .slick-dots li * {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
}
.latest_news__cont .slick-dots li:before {
  position: absolute;
  left: -17px;
  top: 4px;
  width: 12px;
  height: 12px;
  border: 1px solid #123842;
  content: "";
  cursor: pointer;
}
.latest_news__cont .slick-dots li.slick-active:before {
  border: 1px solid #212529;
  background: #212529;
}
.latest_news .posts_grid__cont {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
.latest_news .post-cont .post-thumbnail {
  width: 100%;
  padding-top: 67.25%;
  position: relative;
  margin-bottom: 19px;
}
.latest_news .post-cont .post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-post .simple-hero {
  max-height: none;
  height: auto;
  min-height: 200px;
}
.single-post .simple-hero__cont {
  min-height: 200px;
  padding: 20px 0;
}
.single-post .simple-hero h1 {
  font-size: clamp(26px, 21.8px + 0.007 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
  text-transform: none;
}

.pagination {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.pagination .page-numbers {
  padding: 10px 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #123842;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
}
.pagination .page-numbers.current {
  background: #123842;
  color: #ffffff;
}
.pagination a.page-numbers {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination a.page-numbers:hover {
  border: 1px solid #212529;
}

.rrhhform {
  position: relative;
  margin-top: -50px;
  z-index: 2;
  padding-top: 0 !important;
}

.form-custom {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 950px;
  border-radius: 20px;
  background: white;
  margin: 0 auto;
  padding: 70px 30px 30px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
}
.form-custom div {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form-custom div p {
  width: 100%;
}
.form-custom div input:not([type=submit]), .form-custom div select, .form-custom div textarea {
  width: 100%;
  padding: 8px 12px;
  background: white;
  color: #212529;
  font-size: 16px;
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid #D7D7DA;
}
.form-custom div:has(input[type=submit]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.form-custom div:has(input[type=submit]) p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}
.form-custom div .wpcf7-spinner {
  background-color: #123842;
  opacity: 0.75;
  width: 48px;
  height: 48px;
  margin: 0px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.form-custom div label.file {
  display: block !important;
  position: relative;
}
.form-custom div.field-8 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.btn {
  --button-bg: #123842;
  --button-color: #ffffff;
  --button-border: #123842;
  --buttonHover-bg: #444;
  --buttonHover-color: #ffffff;
  --buttonHover-border: #444;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  background: var(--button-bg);
  color: var(--button-color);
  padding: 10px clamp(10px, 2.8px + 0.012 * 100vw, 20px);
  border: none;
  border-radius: 40px;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  font-weight: 500;
}
.btn span {
  position: relative;
  color: var(--color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn svg {
  width: 14px;
  height: 14px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.btn svg path {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  stroke: var(--button-color);
}
.btn:before {
  width: calc(100% + 2px);
  height: 100%;
  position: absolute;
  background: var(--buttonHover-bg);
  content: "";
  left: 0;
  top: 0;
  -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-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover:before {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    z-index: 0;
  }
  .btn:hover {
    color: var(--buttonHover-color);
    border-color: var(--buttonHover-border);
  }
  .btn:hover span {
    color: var(--buttonHover-color);
  }
  .btn:hover svg path {
    stroke: var(--buttonHover-color);
  }
}

.btn--red {
  --button-bg: #EC3137;
  --button-color: #ffffff;
  --buttonHover-bg: #FFB701;
  --buttonHover-color: #212529;
  border: none;
}

.btn--yellow {
  --button-bg: #FFB701;
  --button-color: #212529;
  --buttonHover-bg: #FFB701;
  --buttonHover-color: #ffffff;
  border: none;
}

.btn--white {
  --button-bg: #ffffff;
  --button-color: #123842;
  --button-border: #123842;
  --buttonHover-bg: #062F3A;
  --buttonHover-color: #ffffff;
  --buttonHover-border: #062F3A;
}

.btn--grey {
  --button-bg: #dddddd;
  --button-color: #ffffff;
  --button-border: #dddddd;
  --buttonHover-bg: #444;
  --buttonHover-color: #ffffff;
  --buttonHover-border: #444;
}

/*
.btn--transparent {
	--bg: transparent;
	--color: #ffffff;
	--colorHover: #ffffff;
	--colorHoverBg: #123842;
	border-color: $white;

	&:hover {
		border-color: $blue;
	}
}

.btn--small {
	color: $blue;
	font-weight: 700;
	font-size: 14px;
	font-family: $default-font;
}

.btn--small-outline {
	background: $white;
	--color: #123842;
	--colorHover: #ffffff;
	--colorHoverBg: #123842;
	font-weight: 700;
	font-size: 14px;
	font-family: $default-font;
}
*/
.link {
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none !important;
  position: relative;
  letter-spacing: 0.1em;
  color: #123842;
  font-weight: 400;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #062F3A)), to(var(--lineColor, #062F3A)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #062F3A) 50%, var(--lineColor, #062F3A) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.link:hover {
  background-position: 100% 100%;
}
.link:hover {
  opacity: 1;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: #123842;
}
.home-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.home-hero__bg img, .home-hero__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(0px));
          transform: var(--fade-transform, translateX(0px) translateY(0px));
  -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;
}
.home-hero__caption {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 90vh;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(18, 56, 66, 0.2);
}
.wp-singular .home-hero__caption, .single-post .home-hero__caption {
  min-height: 40vh;
  height: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 40px;
}
.home .home-hero__caption {
  min-height: 70vh;
}
.home-hero__caption__box {
  position: relative;
  gap: 20px;
  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%;
  max-width: 580px;
  background: #212529;
  padding: 30px 40px 60px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-300px) translateY(0px));
          transform: var(--fade-transform, translateX(-300px) translateY(0px));
  -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.2s;
          transition-delay: 0.2s;
}
.home-hero__caption__box::before {
  position: absolute;
  width: 64px;
  height: 64px;
  top: -64px;
  left: 0;
  background-color: #FFB701;
  background: #FFB701 url(../images/flecha-black.svg) center center no-repeat;
  background-size: contain;
  content: "";
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.home-hero__caption__box h1, .home-hero__caption__box h2 {
  font-weight: 700;
  color: white;
  font-style: italic;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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.6s;
          transition-delay: 0.6s;
}
.home-hero__caption__box .home-hero__sub {
  color: white;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.home-hero__caption__box .btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.home-hero__caption__mini {
  position: relative;
  gap: 20px;
  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%;
  max-width: 800px;
  padding: 30px 40px 60px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-300px) translateY(0px));
          transform: var(--fade-transform, translateX(-300px) translateY(0px));
  -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.2s;
          transition-delay: 0.2s;
}
.home-hero__caption__mini::before {
  position: absolute;
  width: 64px;
  height: 64px;
  top: -64px;
  left: 0;
  background-color: #FFB701;
  background: #EC3137 url(../images/flecha.svg) center center no-repeat;
  background-size: contain;
  content: "";
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.home-hero__caption__mini h1, .home-hero__caption__mini h2 {
  font-weight: 700;
  color: white;
  font-style: italic;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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.6s;
          transition-delay: 0.6s;
}
.home-hero__caption__mini .home-hero__sub {
  color: white;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.home-hero__caption__mini .btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.home-hero__caption.blog {
  height: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 250px 0 40px;
}
.home-hero__caption.blog h1 {
  text-transform: uppercase;
}
.home-hero__slider {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.home-hero__slider .swiper-slide {
  height: 100%;
}
.home-hero__sub {
  font-size: 20px;
}
.home-hero .row {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 900px) {
  .home-hero .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 30px;
  }
}
.home-hero__image {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 900px) {
  .home-hero__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
.home-hero--controls {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 20px);
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.home-hero--prev, .home-hero--next {
  cursor: pointer;
}
.home-hero--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.home-hero--pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1px;
  z-index: 2;
}
.home-hero--pagination .swiper-pagination-bullet {
  background: white;
  opacity: 1;
  margin: 0 0;
  padding: 0;
  border-radius: 8px;
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.home-hero--pagination .swiper-pagination-bullet-active {
  background: #062F3A;
  width: 32px;
}

.column {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.column-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  position: relative;
}

.column-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
}
.column-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.simple-hero {
  position: relative;
  text-align: center;
  height: auto;
  overflow: hidden;
  margin-bottom: 0 !important;
  padding: 80px 0 0px !important;
  background-color: #123842;
}
@media only screen and (max-width: 900px) {
  .simple-hero {
    margin-top: 10px;
  }
}
.simple-hero.full-height {
  height: 100vh;
}
.simple-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.simple-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.simple-hero__caption {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 90vh;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(18, 56, 66, 0.2);
}
.simple-hero__caption__box {
  position: relative;
  gap: 20px;
  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%;
  max-width: 580px;
  background: #212529;
  padding: 30px 40px 60px;
}
.simple-hero__caption__box::before {
  position: absolute;
  width: 64px;
  height: 64px;
  top: -64px;
  left: 0;
  background-color: #FFB701;
  background: #FFB701 url(../images/flecha-black.svg) center center no-repeat;
  background-size: contain;
  content: "";
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.simple-hero__caption__box h1, .simple-hero__caption__box h2 {
  font-weight: 700;
  color: white;
  font-style: italic;
}
.simple-hero__caption__box .home-hero__sub {
  color: white;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.simple-hero__caption__box .btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.simple-hero__caption__mini {
  position: relative;
  gap: 20px;
  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%;
  max-width: 800px;
  padding: 30px 40px 60px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-300px) translateY(0px));
          transform: var(--fade-transform, translateX(-300px) translateY(0px));
  -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.2s;
          transition-delay: 0.2s;
}
.simple-hero__caption__mini::before {
  position: absolute;
  width: 64px;
  height: 64px;
  top: -64px;
  left: 0;
  background-color: #FFB701;
  background: #EC3137 url(../images/flecha.svg) center center no-repeat;
  background-size: contain;
  content: "";
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.simple-hero__caption__mini h1, .simple-hero__caption__mini h2 {
  font-weight: 700;
  color: white;
  font-style: italic;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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.6s;
          transition-delay: 0.6s;
}
.simple-hero__caption__mini .home-hero__sub {
  color: white;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.simple-hero__caption__mini .btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.simple-hero__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 1;
  background-color: rgba(18, 56, 66, 0.5);
  padding: 20px 0;
}
.simple-hero h1, .simple-hero h2, .simple-hero h3 {
  text-transform: none;
  color: #ffffff;
  text-align: left;
}
.simple-hero p {
  color: #ffffff;
  margin-top: 50px;
}
.simple-hero .scroll-next {
  position: absolute;
  left: 50%;
  bottom: 30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 35px;
  z-index: 99;
  cursor: pointer;
}
.simple-hero .scroll-next span {
  display: none;
}
.simple-hero .scroll-next:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -15px;
}

.header {
  --headerBackground: rgba(18, 56, 66, 0.73);
  --headerLink: #ffffff;
  --headerLinkHover: #EC3137;
  background: var(--headerBackground);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 900px) {
  .header {
    padding: 10px 0;
  }
}
body.home .header {
  --headerBackground: transparent;
  --headerLink: #ffffff;
  --headerLinkHover: #EC3137;
}
body.home .header.dark {
  --headerBackground: #123842;
  --headerLink: #ffffff;
  --headerLinkHover: #EC3137;
}
.scrolled .header {
  --headerBackground: #123842;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 900px) {
  .scrolled .header {
    --headerBackground: #123842;
  }
}
.header.dark {
  --headerLink: #ffffff;
  --headerLinkHover: #EC3137;
  --headerBackground: #123842;
}
.header.dark .sitelogo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(120px, 134.4px + -0.024 * 100vw, 100px);
          flex: 0 0 clamp(120px, 134.4px + -0.024 * 100vw, 100px);
}
.header.dark .sitelogo img, .header.dark .sitelogo svg {
  width: clamp(120px, 98.4px + 0.036 * 100vw, 150px);
  height: auto;
}
@media only screen and (max-width: 900px) {
  .header {
    --headerBackground: #123842;
  }
}
.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;
  position: relative;
  gap: 20px;
}
.header .responsive__btn {
  width: 30px;
  height: 30px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  position: relative;
  margin-left: 0px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}
@media only screen and (max-width: 900px) {
  .header .responsive__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header .responsive__btn span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 24px;
  height: 3px;
  border-radius: 10px;
  background: #123842;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
body.scrolled .header .responsive__btn span, body:not(.home) .header .responsive__btn span {
  background: #ffffff;
}
body.menuopen .header .responsive__btn span {
  background-color: #062F3A;
}
.menuopen .header .responsive__btn span {
  -ms-flex-item-align: start;
      align-self: flex-start;
  background: #062F3A;
}
.header .responsive__btn span:nth-child(2) {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.header .responsive__btn span:nth-child(3) {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.menuopen .header .responsive__btn span:nth-child(3) {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.site-footer {
  --footerBackground: #123842;
  --footerLink: #ffffff;
  --footerLinkHover: #FFB701;
  padding: 30px 0 0;
  background: var(--footerBackground);
  color: var(--footerLink);
}
@media only screen and (min-width: 900px) {
  .site-footer {
    padding: 50px 0 0;
  }
}
.site-footer .footer__row {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 900px) {
  .site-footer .footer__row {
    gap: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.site-footer .footer__column {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
}
@media only screen and (min-width: 900px) {
  .site-footer .footer__column {
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .site-footer .footer__column:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(75% - 30px);
            flex: 0 1 calc(75% - 30px);
  }
}
.site-footer address .address__col {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
}
@media only screen and (min-width: 900px) {
  .site-footer address .address__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 10px);
            flex: 0 0 calc(50% - 10px);
  }
  .site-footer address .address__col:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 10px);
            flex: 0 0 calc(50% - 10px);
  }
}
.site-footer .sitelogo {
  width: 100%;
  max-width: 180px;
  min-height: 0px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media only screen and (min-width: 900px) {
  .site-footer .sitelogo {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.site-footer .footer__horario {
  width: 100%;
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
  color: #EC3137;
  font-weight: 500;
  letter-spacing: normal;
  text-align: center;
}
@media only screen and (min-width: 900px) {
  .site-footer .footer__horario {
    text-align: left;
  }
}
.site-footer .address--item {
  width: 100%;
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 10px;
  font-style: normal;
  color: white;
  text-decoration: none;
}
@media only screen and (min-width: 900px) {
  .site-footer .address--item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
}
.site-footer .address--item span.icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 20px;
  height: 20px;
  margin-top: 6px;
  background-size: contain;
}
.site-footer .address--item .marker {
  background: url(../images/icons/iconubicacion.svg) center center no-repeat;
}
.site-footer .address--item .phone {
  background: url(../images/icons/icontel.svg) center center no-repeat;
}
.site-footer .address--item .plane {
  background: url(../images/icons/iconemail.svg) center center no-repeat;
}
.site-footer a.address--item:hover {
  color: var(--footerLinkHover);
}
.site-footer .menu {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}
.site-footer .menu li a {
  text-decoration: none;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, #FFB701), to(#FFB701));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, #FFB701 50%, #FFB701 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.site-footer .menu li a:hover {
  background-position: 100% 100%;
}
.site-footer .menu li a {
  color: var(--footerLink);
}
.site-footer .menu li a:hover {
  color: var(--footerLinkHover);
}
.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-footer__social .links {
  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;
  gap: 10px;
}
.site-footer__social .links a {
  width: 24px;
  height: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.site-footer__social .links a svg {
  width: 20px;
  height: 20px;
}
.site-footer__social .links a svg path {
  fill: #EC3137;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.site-footer__social .links a:hover path {
  fill: white;
}
.site-footer .copyright {
  width: 100%;
  background-color: #EC3137;
  margin-top: 20px;
  padding: 10px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--footerLink);
  font-size: 14px;
  line-height: 1.5625;
}
.site-footer .copyright .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
@media only screen and (min-width: 900px) {
  .site-footer .copyright .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }
}
.site-footer .copyright .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 900px) {
  .site-footer .copyright .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 20px);
            flex: 0 0 calc(50% - 20px);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .site-footer .copyright .col:nth-child(2) {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.site-footer .copyright .col a {
  color: var(--footerLink);
  text-decoration: none;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, #FFB701), to(#FFB701));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, #FFB701 50%, #FFB701 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.site-footer .copyright .col a:hover {
  background-position: 100% 100%;
}
.site-footer .copyright .col a:hover {
  color: var(--footerLinkHover);
}

.error-404 {
  padding: 200px 0 100px;
  color: #ffffff;
  margin-bottom: 0;
}

/*!
 * Font Awesome Pro 6.4.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2023 Fonticons, Inc.
 */
:root,
:host {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype");
}
.fab,
.fa-brands {
  font-weight: 400;
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-aws:before {
  content: "\f375";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-modx:before {
  content: "\f285";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-square-js:before {
  content: "\f3b9";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-unity:before {
  content: "\e049";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-vk:before {
  content: "\f189";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-square-reddit:before {
  content: "\f1a2";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-square-font-awesome:before {
  content: "\e5ad";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-square-instagram:before {
  content: "\e055";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-square-hacker-news:before {
  content: "\f3af";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-edge:before {
  content: "\f282";
}

.fa-threads:before {
  content: "\e618";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-square-snapchat:before {
  content: "\f2ad";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-safari:before {
  content: "\f267";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-square-font-awesome-stroke:before {
  content: "\f35c";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-square-viadeo:before {
  content: "\f2aa";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-centos:before {
  content: "\f789";
}

.fa-adn:before {
  content: "\f170";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-square-dribbble:before {
  content: "\f397";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-node:before {
  content: "\f419";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-debian:before {
  content: "\e60b";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-square-twitter:before {
  content: "\f081";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-golang:before {
  content: "\e40f";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-square-youtube:before {
  content: "\f431";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-rendact:before {
  content: "\f3e4";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-nfc-directional:before {
  content: "\e530";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-meta:before {
  content: "\e49b";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-hips:before {
  content: "\f452";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-discord:before {
  content: "\f392";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-shoelace:before {
  content: "\e60c";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-square-steam:before {
  content: "\f1b7";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-square-vimeo:before {
  content: "\f194";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-flag:before {
  content: "\f2b4";
}

.fa-font-awesome-logo-full:before {
  content: "\f2b4";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-apple:before {
  content: "\f179";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-padlet:before {
  content: "\e4a0";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-square-github:before {
  content: "\f092";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-neos:before {
  content: "\f612";
}

.fa-square-threads:before {
  content: "\e619";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-angular:before {
  content: "\f420";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envira:before {
  content: "\f299";
}

.fa-square-gitlab:before {
  content: "\e5ae";
}

.fa-gitlab-square:before {
  content: "\e5ae";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-square-odnoklassniki:before {
  content: "\f264";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-sith:before {
  content: "\f512";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-hashnode:before {
  content: "\e499";
}

.fa-react:before {
  content: "\f41b";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-gg:before {
  content: "\f260";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-square-pinterest:before {
  content: "\f0d3";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-xing:before {
  content: "\f168";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-less:before {
  content: "\f41d";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-nfc-symbol:before {
  content: "\e531";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-square-google-plus:before {
  content: "\f0d4";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-square-xing:before {
  content: "\f169";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-fly:before {
  content: "\f417";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-viber:before {
  content: "\f409";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-audible:before {
  content: "\f373";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-bilibili:before {
  content: "\e3d9";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-42-group:before {
  content: "\e080";
}

.fa-innosoft:before {
  content: "\e080";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-square-pied-piper:before {
  content: "\e01e";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-square-facebook:before {
  content: "\f082";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-square-lastfm:before {
  content: "\f203";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-figma:before {
  content: "\f799";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-cmplid:before {
  content: "\e360";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-docker:before {
  content: "\f395";
}

.fa-screenpal:before {
  content: "\e570";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-wirsindhandwerk:before {
  content: "\e2d0";
}

.fa-wsh:before {
  content: "\e2d0";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-apper:before {
  content: "\f371";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ab";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-square-behance:before {
  content: "\f1b5";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-space-awesome:before {
  content: "\e5ac";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-square-git:before {
  content: "\f1d2";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-square-tumblr:before {
  content: "\f174";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-trello:before {
  content: "\f181";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-android:before {
  content: "\f17b";
}

.fa-bots:before {
  content: "\e340";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-uber:before {
  content: "\f402";
}

.fa-github:before {
  content: "\f09b";
}

.fa-php:before {
  content: "\f457";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-stubber:before {
  content: "\e5c7";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f2c6";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-odysee:before {
  content: "\e5c6";
}

.fa-square-whatsapp:before {
  content: "\f40c";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f198";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-usb:before {
  content: "\f287";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f23a";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-sitrox:before {
  content: "\e44a";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-strava:before {
  content: "\f428";
}

.fa-ember:before {
  content: "\f423";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-zhihu:before {
  content: "\f63f";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-pix:before {
  content: "\e43a";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

:root {
  --f-spinner-width:36px;
  --f-spinner-height:36px;
  --f-spinner-color-1:rgba(0, 0, 0, 0.1);
  --f-spinner-color-2:rgba(17, 24, 28, 0.8);
  --f-spinner-stroke:2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}
.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -webkit-animation: f-spinner-rotate 2s linear infinite;
          animation: f-spinner-rotate 2s linear infinite;
}
.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}
.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}
.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  -webkit-animation: f-spinner-dash 2s ease-in-out infinite;
          animation: f-spinner-dash 2s ease-in-out infinite;
}

@-webkit-keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
          animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
          animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@-webkit-keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
            transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}

@keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
            transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@-webkit-keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
            transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
            transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
          animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
          animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@-webkit-keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
          animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
          animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
          animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  -webkit-animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
          animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@-webkit-keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
          animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
          animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
          animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  -webkit-animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
          animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@-webkit-keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}
.f-slideIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}
.f-slideOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@-webkit-keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}
.f-classicIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}
.f-classicOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@-webkit-keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
}
@-webkit-keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width:40px;
  --f-button-height:40px;
  --f-button-border:0;
  --f-button-border-radius:0;
  --f-button-color:#374151;
  --f-button-bg:#f8f8f8;
  --f-button-hover-bg:#e0e0e0;
  --f-button-active-bg:#d0d0d0;
  --f-button-shadow:none;
  --f-button-transition:all 0.15s ease;
  --f-button-transform:none;
  --f-button-svg-width:20px;
  --f-button-svg-height:20px;
  --f-button-svg-stroke-width:1.5;
  --f-button-svg-fill:none;
  --f-button-svg-filter:none;
  --f-button-svg-disabled-opacity:0.65;
}

.f-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  -webkit-box-shadow: var(--f-button-shadow);
          box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  -webkit-transition: var(--f-button-transition);
  transition: var(--f-button-transition);
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}
.f-button:focus:not(:focus-visible) {
  outline: none;
}
.f-button:focus-visible {
  outline: none;
  -webkit-box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
          box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}
.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  -webkit-transform: var(--f-button-transform);
          transform: var(--f-button-transform);
  -webkit-filter: var(--f-button-svg-filter);
          filter: var(--f-button-svg-filter);
  pointer-events: none;
}
.f-button[disabled] {
  cursor: default;
}
.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}
.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}
.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}
.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next {
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}
.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}
.is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled, .fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}
html.with-fancybox body {
  -ms-touch-action: none;
      touch-action: none;
}
html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color:#dbdbdb;
  --fancybox-hover-color:#fff;
  --fancybox-bg:rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap:10px;
  --f-spinner-width:50px;
  --f-spinner-height:50px;
  --f-spinner-color-1:rgba(255, 255, 255, 0.1);
  --f-spinner-color-2:#bbb;
  --f-spinner-stroke:3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  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-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}
.fancybox__container * {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.fancybox__container *::before, .fancybox__container *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.fancybox__container::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0);
}
.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}
.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video {
  overflow: hidden;
}
.fancybox__slide.has-image {
  overflow: hidden;
}
.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
  overflow: visible;
}
.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__content [data-selectable], .fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content, .is-zooming-out .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__caption {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  max-width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width:2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width:34px;
  --f-button-height:34px;
  --f-button-border-radius:4px;
  --f-button-color:var(--fancybox-color, #fff);
  --f-button-hover-color:var(--fancybox-color, #fff);
  --f-button-bg:transparent;
  --f-button-hover-bg:transparent;
  --f-button-active-bg:transparent;
  --f-button-svg-width:22px;
  --f-button-svg-height:22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn, .is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}
.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}
.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}
.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius:50%;
  --f-button-color:#fff;
  --f-button-hover-color:#fff;
  --f-button-outline-color:#000;
  --f-button-bg:rgba(0, 0, 0, 0.6);
  --f-button-active-bg:rgba(0, 0, 0, 0.6);
  --f-button-hover-bg:rgba(0, 0, 0, 0.6);
  --f-button-svg-width:18px;
  --f-button-svg-height:18px;
  --f-button-svg-filter:none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width:50px;
  --f-button-height:50px;
  --f-button-border:0;
  --f-button-border-radius:50%;
  --f-button-color:var(--fancybox-color);
  --f-button-hover-color:var(--fancybox-hover-color);
  --f-button-bg:transparent;
  --f-button-hover-bg:rgba(24, 24, 27, 0.3);
  --f-button-active-bg:rgba(24, 24, 27, 0.5);
  --f-button-shadow:none;
  --f-button-transition:all 0.15s ease;
  --f-button-transform:none;
  --f-button-svg-width:26px;
  --f-button-svg-height:26px;
  --f-button-svg-stroke-width:2.5;
  --f-button-svg-fill:none;
  --f-button-svg-filter:drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity:0.65;
  --f-button-next-pos:1rem;
  --f-button-prev-pos:1rem;
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}
.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}
.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
          animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
          animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}
.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
          animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}
.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
          animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  max-width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width:96px;
  --f-thumb-height:72px;
  --f-thumb-outline:0;
  --f-thumb-outline-color:#5eb0ef;
  --f-thumb-opacity:1;
  --f-thumb-hover-opacity:1;
  --f-thumb-selected-opacity:1;
  --f-thumb-border-radius:2px;
  --f-thumb-offset:0px;
  --f-button-next-pos:0;
  --f-button-prev-pos:0;
}
.f-carousel__thumbs.is-classic {
  --f-thumb-gap:8px;
  --f-thumb-opacity:0.5;
  --f-thumb-hover-opacity:1;
  --f-thumb-selected-opacity:1;
}
.f-carousel__thumbs.is-modern {
  --f-thumb-gap:4px;
  --f-thumb-extra-gap:16px;
  --f-thumb-clip-width:46px;
}

.f-thumbs {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebeff2), to(#e2e8f0));
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}
.f-thumbs .f-spinner svg {
  display: none;
}
.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  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;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}
.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}
.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
          transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  -webkit-transition: none;
  transition: none;
  pointer-events: none;
}
.is-modern.is-resting .f-thumbs__slide {
  -webkit-transition: -webkit-transform 0.33s ease;
  transition: -webkit-transform 0.33s ease;
  transition: transform 0.33s ease;
  transition: transform 0.33s ease, -webkit-transform 0.33s ease;
}
.is-modern.is-resting .f-thumbs__slide__button {
  -webkit-transition: clip-path 0.33s ease;
  transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  -webkit-filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
          filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}
.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}
.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path:inset(0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0));
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}
.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  -webkit-animation: f-fadeIn 0.2s ease-out;
          animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}
.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}
.f-thumbs.is-vertical .f-thumbs__track {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 8px;
}
.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width:96px;
  --f-thumb-height:72px;
  --f-thumb-border-radius:2px;
  --f-thumb-outline:2px;
  --f-thumb-outline-color:#ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.fancybox__thumbs.is-classic {
  --f-thumb-gap:8px;
  --f-thumb-opacity:0.5;
  --f-thumb-hover-opacity:1;
}
.fancybox__thumbs.is-classic .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}
.fancybox__thumbs.is-modern {
  --f-thumb-gap:4px;
  --f-thumb-extra-gap:16px;
  --f-thumb-clip-width:46px;
  --f-thumb-opacity:1;
  --f-thumb-hover-opacity:1;
}
.fancybox__thumbs.is-modern .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}
.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}
.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width:64px;
  --f-thumb-clip-width:32px;
  --f-thumb-height:48px;
  --f-thumb-extra-gap:10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  -webkit-transition: none !important;
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color:var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width:46px;
  --f-button-height:46px;
  --f-button-color:var(--fancybox-color);
  --f-button-hover-color:var(--fancybox-hover-color);
  --f-button-bg:rgba(24, 24, 27, 0.65);
  --f-button-hover-bg:rgba(70, 70, 73, 0.65);
  --f-button-active-bg:rgba(90, 90, 93, 0.65);
  --f-button-border-radius:0;
  --f-button-svg-width:24px;
  --f-button-svg-height:24px;
  --f-button-svg-stroke-width:1.5;
  --f-button-svg-filter:drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill:none;
  --f-button-svg-disabled-opacity:0.65;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}
.fancybox__toolbar :focus-visible {
  z-index: 1;
}
.fancybox__toolbar.is-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
.fancybox__toolbar__column.is-left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}
.fancybox__toolbar__column.is-right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.fancybox__infobar span {
  padding: 0 5px;
}
.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}
[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}
[data-fancybox-toggle-slideshow] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}
.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}
:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: flex;
}
:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}
:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

/**
 * Swiper 11.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 27, 2024
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  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;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
      touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
      touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.servicios {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: white;
}
.servicios .container-fluid {
  position: relative;
}
.servicios__grid {
  display: -ms-grid;
  display: grid;
  gap: 1px;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 600px) {
  .servicios__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 900px) {
  .servicios__grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.servicios__grid--item {
  background-color: #123842;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
  padding: 40px;
  overflow: hidden;
  text-decoration: none;
  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.2s;
          transition-delay: 0.2s;
  aspect-ratio: 26/9;
}
@media only screen and (min-width: 600px) {
  .servicios__grid--item {
    aspect-ratio: 16/9;
  }
}
@media only screen and (min-width: 900px) {
  .servicios__grid--item {
    aspect-ratio: 16/9;
  }
}
.servicios__grid--item--title {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
  font-weight: 600;
  color: white;
}
.servicios__grid--item--title.destacar {
  font-size: clamp(24px, 19.8px + 0.007 * 100vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 400;
  font-weight: 700;
  font-style: italic;
}
.servicios__grid--item--title:nth-child(1) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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.6s;
          transition-delay: 0.6s;
}
.servicios__grid--item--title:nth-child(2) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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;
}
.servicios__grid--item--title:nth-child(3) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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;
}
.servicios__grid--item--title:nth-child(4) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 1.2s;
          transition-delay: 1.2s;
}
.servicios__grid--item--title:nth-child(5) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 1.4s;
          transition-delay: 1.4s;
}
.servicios__grid--item--title:nth-child(6) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 1.6s;
          transition-delay: 1.6s;
}
.servicios__grid--item--title:nth-child(7) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 1.8s;
          transition-delay: 1.8s;
}
.servicios__grid--item--title:nth-child(8) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 2s;
          transition-delay: 2s;
}
.servicios__grid--item--title:nth-child(9) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 2.2s;
          transition-delay: 2.2s;
}
.servicios__grid--item--title:nth-child(10) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 2.4s;
          transition-delay: 2.4s;
}
.servicios__grid--item--title:nth-child(11) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 2.6s;
          transition-delay: 2.6s;
}
.servicios__grid--item--title:nth-child(12) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 2.8s;
          transition-delay: 2.8s;
}
.servicios__grid--item--title:nth-child(13) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 3s;
          transition-delay: 3s;
}
.servicios__grid--item--title:nth-child(14) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 3.2s;
          transition-delay: 3.2s;
}
.servicios__grid--item--title:nth-child(15) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 3.4s;
          transition-delay: 3.4s;
}
.servicios__grid--item--title:nth-child(16) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 3.6s;
          transition-delay: 3.6s;
}
.servicios__grid--item--title:nth-child(17) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 3.8s;
          transition-delay: 3.8s;
}
.servicios__grid--item--title:nth-child(18) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 4s;
          transition-delay: 4s;
}
.servicios__grid--item--title:nth-child(19) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 4.2s;
          transition-delay: 4.2s;
}
.servicios__grid--item--title:nth-child(20) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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: 4.4s;
          transition-delay: 4.4s;
}
.servicios__grid--item:hover {
  background-color: #EC3137;
}

.image-text {
  overflow: hidden;
  padding: 40px 0;
  color: #123842;
  position: relative;
}
.image-text .container {
  position: relative;
  z-index: 2;
}
.image-text .content {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media only screen and (min-width: 900px) {
  .image-text .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .image-text--right .image-text .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .image-text .content figure {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(50% - 60px);
            flex: 1 0 calc(50% - 60px);
  }
  .image-text .content .text {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(50% - 60px);
            flex: 1 0 calc(50% - 60px);
  }
}
@media only screen and (min-width: 1050px) {
  .image-text .content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.image-text figure {
  -webkit-transition: 4s all ease;
  transition: 4s all ease;
  opacity: var(--v1, 0);
  position: relative;
  border-radius: 0px;
}
.image-text figure::before {
  position: absolute;
  width: 64px;
  height: 64px;
  top: 0px;
  left: 0;
  z-index: 2;
  background-color: #FFB701;
  background: #EC3137 url(../images/flecha.svg) center center no-repeat;
  background-size: contain;
  content: "";
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.image-text figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
}
.image-text figure .filigrana {
  position: absolute;
  bottom: 40px;
  right: 0;
  z-index: 2;
  background: #EC3137;
  color: white;
  padding: 20px;
  font-size: clamp(18px, 13.8px + 0.007 * 100vw, 24px);
  width: 50%;
}
.image-text figure .filigrana strong, .image-text figure .filigrana b {
  font-size: clamp(20px, 15.8px + 0.007 * 100vw, 26px);
  font-weight: 900;
  font-style: italic;
}
@media only screen and (min-width: 1200px) {
  .image-text figure .filigrana {
    right: -64px;
  }
}
.image-text figure .deco.deco-red {
  left: auto;
  right: 0;
}
@media only screen and (min-width: 1200px) {
  .image-text figure .deco.deco-red {
    right: -64px;
  }
}
.image-text .text {
  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;
  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.6s;
          transition-delay: 0.6s;
}
.image-text__title {
  overflow: hidden;
  -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-transform: translateY(var(--p0, 100%));
          transform: translateY(var(--p0, 100%));
  display: block;
  font-size: clamp(26px, 21.8px + 0.007 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  font-weight: 500;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.image-text__text {
  color: #444;
}
.image-text .btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.image-text--right.is-style-degrade-celeste {
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 108, 255, 0.15)), color-stop(49%, #ffffff), to(#ffffff));
  background: linear-gradient(to left, rgba(0, 108, 255, 0.15) 0%, #ffffff 49%, #ffffff 100%);
}
@media only screen and (min-width: 900px) {
  .image-text--right .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.cta {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: left;
}
.cta__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.cta__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #123842;
  mix-blend-mode: multiply;
  opacity: 0.55;
}
.cta.no-image {
  background-color: #212529;
}
.cta.no-image.blue {
  background-color: #123842;
}
.cta.no-image.blue .btn--blue {
  border: 1px solid white;
}
.cta.no-image.red {
  background-color: #EC3137;
}
.cta.no-image.red .cta__sub {
  color: white;
}
.cta.no-image.red .btn--red {
  border: 1px solid white;
}
.cta .container {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 900px) {
  .cta .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.cta__column {
  position: absolute;
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  width: 50%;
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (min-width: 900px) {
  .cta__column {
    width: 40vw;
  }
}
@media only screen and (min-width: 1050px) {
  .cta__column {
    width: 30vw;
  }
}
.cta__column img {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(300px) translateY(0px));
          transform: var(--fade-transform, translateX(300px) translateY(0px));
  -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.2s;
          transition-delay: 0.2s;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 900px) {
  .cta__column img {
    width: 100%;
  }
}
.cta__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  padding: 80px 0;
}
@media only screen and (min-width: 900px) {
  .cta__content {
    max-width: 66%;
    padding: 100px 0;
  }
}
@media only screen and (min-width: 1050px) {
  .cta__content {
    max-width: 55%;
    padding: 150px 0;
  }
}
.cta__title {
  font-size: clamp(26px, 21.8px + 0.007 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal !important;
  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;
}
.cta__sub {
  font-size: clamp(40px, 34px + 0.01 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
  color: #EC3137;
  font-style: italic;
  letter-spacing: 0.01em !important;
  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.6s;
          transition-delay: 0.6s;
}
.cta__text {
  font-size: clamp(28px, 22px + 0.01 * 100vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
  font-weight: 400;
  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;
}
.cta__buttons {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  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;
}

.posts-grid {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 11.2px + 0.048 * 100vw, 80px) 0;
}
.posts-grid__title {
  font-size: clamp(40px, 34px + 0.01 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
  font-weight: 700;
  font-style: italic;
  position: relative;
  color: #123842;
  text-align: center;
  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.2s;
          transition-delay: 0.2s;
}
.posts-grid__title span.red {
  color: #EC3137;
}
.posts-grid__sub {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
  font-weight: 500;
  font-style: italic;
  position: relative;
  color: #123842;
  text-align: center;
  margin-top: 20px;
  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;
}
.posts-grid__wrapper {
  width: 100%;
  margin: 30px auto;
  text-align: center;
  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;
}
.posts-grid__wrapper .btn {
  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.6s;
          transition-delay: 0.6s;
}
.posts-grid .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  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.2s;
          transition-delay: 0.2s;
}
.posts-grid .filters h4 {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  background: transparent;
  font-size: 18px;
  border: none;
  padding: 0 0 10px 0;
  letter-spacing: 0.1em;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #062F3A)), to(var(--lineColor, #062F3A)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #062F3A) 50%, var(--lineColor, #062F3A) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.posts-grid .filters h4:hover {
  background-position: 100% 100%;
}
.posts-grid .filters h4 {
  white-space: nowrap;
}
.posts-grid .filters select {
  background-color: #ffffff;
  border: 1px solid #062F3A;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
}
.posts-grid .filters button,
.posts-grid .filters label {
  /*font-family: $default-font;
  text-transform: uppercase;
  background: transparent;
  font-size: 18px;
  border: none;
  padding: 0 0 10px 0;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: 0.3s;
  @include linkLine;
  white-space: nowrap;
  font-weight: 800;

  &:hover {
  	opacity: 1;
  }
  	*/
}
@media only screen and (max-width: 750px) {
  .posts-grid .filters button,
  .posts-grid .filters label {
    padding: 10px 15px;
  }
}
.posts-grid .filters button.active,
.posts-grid .filters label.active {
  opacity: 1;
  background-position: 100% 100%;
}
@media only screen and (max-width: 750px) {
  .posts-grid .filters button.active,
  .posts-grid .filters label.active {
    opacity: 1;
    background: #353f1f;
    color: #fff;
  }
}
.posts-grid .filters label input {
  display: none;
}
.posts-grid .filters label:has(input:checked) {
  opacity: 1;
  background-position: 100% 100%;
}
@media only screen and (max-width: 750px) {
  .posts-grid .filters label:has(input:checked) {
    opacity: 1;
    background: #353f1f;
    color: #fff;
  }
}
.posts-grid .js-results {
  display: contents;
}
.posts-grid .js-load-more__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  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.2s;
          transition-delay: 0.2s;
}
.posts-grid__grid {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  margin-top: 20px;
}
@media only screen and (max-width: 900px) {
  .posts-grid__grid {
    margin-top: 40px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .posts-grid__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.posts-grid__grid .loading {
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.posts-grid__grid .loading svg {
  width: 50px;
  height: 50px;
}
.posts-grid__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  background: white;
  -webkit-box-shadow: 0 15px 10px 0 rgba(33, 37, 41, 0.35);
          box-shadow: 0 15px 10px 0 rgba(33, 37, 41, 0.35);
}
@media only screen and (min-width: 600px) {
  .posts-grid__item {
    height: 100%;
  }
}
.posts-grid__item {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(200px));
          transform: var(--fade-transform, translateX(0) translateY(200px));
  -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.2s;
          transition-delay: 0.2s;
}
.posts-grid__item:nth-child(1) {
  -webkit-transition-delay: 0.0666666667s;
          transition-delay: 0.0666666667s;
}
.posts-grid__item:nth-child(2) {
  -webkit-transition-delay: 0.1333333333s;
          transition-delay: 0.1333333333s;
}
.posts-grid__item:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.posts-grid__item:nth-child(4) {
  -webkit-transition-delay: 0.2666666667s;
          transition-delay: 0.2666666667s;
}
.posts-grid__item:nth-child(5) {
  -webkit-transition-delay: 0.3333333333s;
          transition-delay: 0.3333333333s;
}
.posts-grid__item:nth-child(6) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.posts-grid__item:nth-child(7) {
  -webkit-transition-delay: 0.4666666667s;
          transition-delay: 0.4666666667s;
}
.posts-grid__item:nth-child(8) {
  -webkit-transition-delay: 0.5333333333s;
          transition-delay: 0.5333333333s;
}
.posts-grid__item:nth-child(9) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.posts-grid__item:nth-child(10) {
  -webkit-transition-delay: 0.6666666667s;
          transition-delay: 0.6666666667s;
}
.posts-grid__item:nth-child(11) {
  -webkit-transition-delay: 0.7333333333s;
          transition-delay: 0.7333333333s;
}
.posts-grid__item:nth-child(12) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.posts-grid__item--image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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;
}
.posts-grid__item--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.posts-grid__item--image::before {
  position: absolute;
  width: 64px;
  height: 64px;
  top: 0px;
  left: 0;
  z-index: 2;
  background-color: #FFB701;
  background: #FFB701 url(../images/flecha-black.svg) center center no-repeat;
  background-size: contain;
  content: "";
}
.posts-grid__item--image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.posts-grid__item--cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  gap: 15px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 60px;
}
.posts-grid__item--title {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
  color: #123842;
  text-align: center;
  font-weight: 700;
  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.2s;
          transition-delay: 0.2s;
  text-decoration: none;
  font-style: italic;
}
.posts-grid__item--title a {
  text-decoration: none;
  color: #123842;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #062F3A)), to(var(--lineColor, #062F3A)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #062F3A) 50%, var(--lineColor, #062F3A) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.posts-grid__item--title a:hover {
  background-position: 100% 100%;
}
.posts-grid__item--title a:hover {
  color: #062F3A;
}
.posts-grid__item--text {
  font-size: 15px;
  line-height: 1.2;
  color: #444;
}
.posts-grid__item .btn {
  position: absolute;
  right: 20px;
  bottom: -20px;
  z-index: 2;
}
.posts-grid__item {
  /*
  &--meta {
  	display: flex;
  	flex-direction: column;
  	align-items: flex-end;
  	position: absolute;
  	top: 8px;
  	right: 8px;
  	gap: 8px;
  	@include fade(0, 100px, true, 1);
  	a{
  		display: inline-block;
  		border-radius: 10px;
  		padding: 4px 8px;
  		color: $white;
  		font-size: 14px;
  		font-weight: 600;
  		text-decoration: none;
  		&:hover{
  		}
  	}
  }
  */
}
.posts-grid .js-loading {
  min-height: 100px;
}
.posts-grid .js-loading > * {
  opacity: 0.2;
}
.posts-grid .js-loading:before {
  width: 50px;
  aspect-ratio: 1;
  content: "";
  background: url(../images/icons/loading.svg) no-repeat center;
  background-size: 100% auto;
  /*animation: loading 3s infinite;
  animation-timing-function: linear;
  */
  display: block;
  position: absolute;
  top: 50px;
  left: 50%;
  margin-left: -25px;
}
.posts-grid .js-loading-item {
  display: none;
}
.posts-grid .ender {
  position: absolute;
}
.posts-grid-pagination {
  padding-top: 60px;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.related-stories {
  position: relative;
  padding: 40px 0;
}
.related-stories__title {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
  color: #123842;
  text-align: left;
  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.2s;
          transition-delay: 0.2s;
}
.related-stories__subtitle {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
  color: #123842;
  text-align: left;
  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.2s;
          transition-delay: 0.2s;
}
.related-stories .posts-grid__grid,
.related-stories .posts-columns {
  margin-top: 30px;
}
.related-stories .posts-columns {
  position: relative;
}
.related-stories .posts-columns li {
  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.2s;
          transition-delay: 0.2s;
}
.related-stories .posts-columns li a {
  text-decoration: none;
  opacity: 0.7;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #062F3A)), to(var(--lineColor, #062F3A)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #062F3A) 50%, var(--lineColor, #062F3A) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.related-stories .posts-columns li a:hover {
  background-position: 100% 100%;
}
.related-stories .posts-columns li a {
  padding-bottom: 4px;
  margin-bottom: 5px;
}
.related-stories .posts-columns li a:hover {
  opacity: 1;
}

.members {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.members .tagline {
  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.2s;
          transition-delay: 0.2s;
}
.members__title {
  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;
  color: #123842;
  margin-top: 20px;
}
.members__text {
  margin-top: 20px;
  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.6s;
          transition-delay: 0.6s;
}
.members__grid {
  display: -ms-grid;
  display: grid;
  margin-top: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
@media only screen and (min-width: 600px) {
  .members__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 900px) {
  .members__grid {
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .members__grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.members__grid__item {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #dddddd;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(200px));
          transform: var(--fade-transform, translateX(0) translateY(200px));
  -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;
}
.members__grid__item:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.members__grid__item:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.members__grid__item:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.members__grid__item:nth-child(4) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.members__grid__item:nth-child(5) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.members__grid__item:nth-child(6) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.members__grid__item:nth-child(7) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.members__grid__item:nth-child(8) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.members__grid__item:nth-child(9) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.members__grid__item--image {
  background-color: #EC3137;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: auto;
  cursor: pointer;
}
.members__grid__item--image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.members__grid__item__data {
  position: relative;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  padding: 20px;
}
.members__grid__item__data .member--name {
  font-size: clamp(18px, 16.8px + 0.002 * 100vw, 20px);
  color: #212529;
  font-weight: 500;
}
.members__grid__item__data .member--position {
  font-size: clamp(18px, 16.8px + 0.002 * 100vw, 20px);
  color: #EC3137;
  margin-bottom: 0;
}
.members .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%;
  gap: 20px;
  margin-top: 30px;
}
@media only screen and (min-width: 900px) {
  .members .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
}
.members .column {
  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%;
  gap: 10px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  background-color: #dddddd;
}
@media only screen and (min-width: 900px) {
  .members .column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 15px);
            flex: 0 0 calc(50% - 15px);
  }
}
.members__list {
  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%;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 30px 20px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}
.members__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}
.members__list__item .cargo {
  font-weight: 700;
  color: #EC3137;
  margin-right: 10px;
  margin-bottom: 0;
}
.members__list__item .nombre {
  color: #444;
  font-size: clamp(16px, 14.8px + 0.002 * 100vw, 18px);
  font-weight: 400;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100vw;
  height: 100vh;
  background-color: white;
  -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;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.modal.js-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-close {
  position: absolute;
  right: 50px;
  top: 50px;
  z-index: 5;
}
.modal-close svg path {
  stroke: black;
}
.modal-close:hover path {
  stroke: red;
}
.modal .container {
  z-index: 2;
  text-align: left;
}

.member-modal__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%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(40px, 11.2px + 0.048 * 100vw, 80px);
}
.member-modal__heading {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(30px, -6px + 0.06 * 100vw, 80px);
}
.member-modal__heading img {
  width: 100%;
  height: auto;
  max-width: 290px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50rem;
}
.member-modal__heading--data {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
.member-modal__title {
  font-size: clamp(24px, 18px + 0.01 * 100vw, 32px);
  color: #212529;
}
.member-modal__position {
  font-size: clamp(22px, 17.8px + 0.007 * 100vw, 28px);
  color: #212529;
  font-weight: 400;
}

.member--icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.member--icons a {
  position: relative;
  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;
  background-color: #212529;
  width: 25px;
  height: 25px;
  border-radius: 50rem;
  overflow: hidden;
}
.member--icons a svg {
  width: 15px;
  height: auto;
}
.member--icons a svg path {
  fill: white;
}
.member--icons a:hover {
  background: #062F3A;
}

.banner {
  position: relative;
  overflow: hidden;
}
.banner-institucional {
  position: relative;
  overflow: hidden;
}
.banner-institucional__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.banner-institucional__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-institucional__caption {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 45vh;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(18, 56, 66, 0.2);
  padding: 120px 0 0;
}
@media only screen and (min-width: 1200px) {
  .banner-institucional__caption {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.banner-institucional__caption .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media only screen and (min-width: 1050px) {
  .banner-institucional__caption .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.banner-institucional__caption__box {
  position: relative;
  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%;
  background: #212529;
  gap: 20px;
  padding: 20px 20px 60px;
}
@media only screen and (min-width: 1050px) {
  .banner-institucional__caption__box {
    padding: 30px 40px 60px;
    max-width: 580px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-institucional__caption__box {
    margin-bottom: 80px;
  }
}
.banner-institucional__caption__box {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-300px) translateY(0px));
          transform: var(--fade-transform, translateX(-300px) translateY(0px));
  -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.2s;
          transition-delay: 0.2s;
}
.banner-institucional__caption__box::before {
  position: absolute;
  width: 64px;
  height: 64px;
  top: -64px;
  left: 0;
  background-color: #FFB701;
  background: #FFB701 url(../images/flecha-black.svg) center center no-repeat;
  background-size: contain;
  content: "";
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.banner-institucional__caption__box h2, .banner-institucional__caption__box h3 {
  font-weight: 400;
  color: white;
  font-style: italic;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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.6s;
          transition-delay: 0.6s;
}
.banner-institucional__caption__box h2 strong, .banner-institucional__caption__box h3 strong {
  font-weight: 700;
}
.banner-institucional__caption__box .home-hero__sub {
  color: white;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.banner-institucional__caption__box .btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-400px) translateY(0px));
          transform: var(--fade-transform, translateX(-400px) translateY(0px));
  -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;
}
.banner-institucional__caption__image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  width: 100%;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(300px) translateY(0px));
          transform: var(--fade-transform, translateX(300px) translateY(0px));
  -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.2s;
          transition-delay: 0.2s;
}
@media only screen and (min-width: 1050px) {
  .banner-institucional__caption__image {
    max-width: 500px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-institucional__caption__image {
    position: relative;
  }
}
.banner-institucional__caption__image img {
  width: 100%;
  height: auto;
  position: relative;
}
.banner-institucional__caption__image .flotante {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 45%;
  -ms-flex-item-align: end;
      align-self: flex-end;
  gap: 20px;
}
.banner-institucional__caption__image--title {
  color: #FFB701;
  font-weight: 700;
  font-size: clamp(17px, 6.2px + 0.018 * 100vw, 32px);
  line-height: 1.1;
}
.banner-institucional__caption__image--value {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  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;
  background-color: #EC3137;
  border-radius: 50rem;
  color: #FFB701;
  text-align: center;
  line-height: 1.1;
  max-width: 170px;
}
.banner-institucional__caption__image--value strong {
  font-size: clamp(36px, 16.2px + 0.033 * 100vw, 64px);
  font-style: italic;
  font-weight: 700;
}
.banner-institucional__caption {
  /*
  h1,.home-hero__sub{
  	color: $blue;
  	text-align: left;


  }
  h1{
  	max-width: 720px;
  }
  .home-hero__sub{
  	max-width: 720px;
  	margin-top: 24px;
  	font-size: rv(20px,24px);
  }
  .btn{
  	margin-top: 20px;
  }*/
}
.banner-servicios {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background-color: #123842;
}
.banner-servicios .container {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.banner-servicios__title {
  font-size: clamp(40px, 34px + 0.01 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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.2s;
          transition-delay: 0.2s;
  color: white;
}
.banner-servicios__title .red {
  color: #EC3137;
}
.banner-servicios__subtitle {
  font-size: clamp(26px, 21.8px + 0.007 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  color: white;
}
.banner-servicios .row {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  margin-top: 40px;
}
@media only screen and (min-width: 750px) {
  .banner-servicios .row {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1050px) {
  .banner-servicios .row {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.banner-servicios .row::before {
  display: none;
}
@media only screen and (min-width: 1050px) {
  .banner-servicios .row::before {
    display: block;
    position: absolute;
    left: 50%;
    top: 10px;
    width: calc(100% - 180px);
    max-width: 1070px;
    height: 44px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: url(../images/chevron-yellow.svg);
    content: "";
  }
}
.banner-servicios__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  padding-left: 70px;
  max-width: 300px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(100px));
          transform: var(--fade-transform, translateX(0px) 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;
}
.banner-servicios__card:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.banner-servicios__card:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.banner-servicios__card:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.banner-servicios__card:nth-child(4) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
@media only screen and (min-width: 750px) {
  .banner-servicios__card {
    padding-left: 0px;
    padding-top: 70px;
  }
}
.banner-servicios__card .number {
  position: absolute;
  z-index: 2;
  width: 80px;
  height: 80px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #EC3137;
  outline: 8px solid rgba(236, 49, 55, 0.5);
  aspect-ratio: 1;
  font-size: 48px;
  color: white;
  text-align: center;
  border-radius: 50rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-animation: pulse 0.8s infinite;
          animation: pulse 0.8s infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
@media only screen and (min-width: 750px) {
  .banner-servicios__card .number {
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media only screen and (min-width: 1050px) {
  .banner-servicios__card .number {
    width: 90px;
    height: 90px;
  }
}
.banner-servicios__card--item {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FFB701;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  text-align: center;
  color: #123842;
  font-size: clamp(18px, 16.8px + 0.002 * 100vw, 20px);
  font-weight: 700;
  padding-bottom: 70px;
}
.banner-servicios__card--item::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: url(../images/barra.png) bottom left no-repeat;
  background-size: 100%;
  content: "";
}

@-webkit-keyframes pulse {
  0% {
    outline: 8px solid rgba(236, 49, 55, 0.5);
  }
  50% {
    outline: 12px solid rgba(236, 49, 55, 0.5);
  }
  100% {
    outline: 8px solid rgba(236, 49, 55, 0.5);
  }
}

@keyframes pulse {
  0% {
    outline: 8px solid rgba(236, 49, 55, 0.5);
  }
  50% {
    outline: 12px solid rgba(236, 49, 55, 0.5);
  }
  100% {
    outline: 8px solid rgba(236, 49, 55, 0.5);
  }
}
.contacto {
  position: relative;
  overflow: hidden;
  background: #123842;
  color: white;
}
.contacto .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contacto__column {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin: 0 0 0 auto;
  text-align: left;
}
@media only screen and (min-width: 900px) {
  .contacto__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 80px);
            flex: 0 1 calc(50% - 80px);
  }
}
.contacto__items {
  position: relative;
  margin-top: 20px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(300px));
          transform: var(--fade-transform, translateX(0) translateY(300px));
  -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;
}
.contacto__data {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #062F3A)), to(var(--lineColor, #062F3A)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #062F3A) 50%, var(--lineColor, #062F3A) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.contacto__data:hover {
  background-position: 100% 100%;
}
.contacto__data {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  color: #ffffff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}
.contacto__data path {
  fill: white;
}

/*
@import "../modules/blocks/testimonios/_block";
@import "../modules/blocks/clientes/_block";



@import "../modules/blocks/timeline/_block";


@import "../modules/blocks/two-columns-text/_block";
@import "../modules/blocks/slider/_block";
@import "../modules/blocks/faqs/_block";
@import "../modules/blocks/steps/_block";
*/
/*# sourceMappingURL=main.css.map */