@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..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: "Inter", 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;
}
body:not(.home) {
  padding-top: clamp(100px, 78.4px + 0.036 * 100vw, 130px);
}

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: #006CFF;
}
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: #006CFF;
}

.hidden {
  display: none;
}

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

button {
  background-color: transparent;
}

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

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

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

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

h4,
.h4 {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  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;
}
.site-content > section:not(.cta):not(.home-hero):not(.hero):not(.perfiles) {
  padding: 60px 0;
}
.site-content .home-hero + .image-text {
  padding-top: 40px;
}
.site-content > .default_block {
  max-width: 950px;
  padding-top: 20px;
  font-family: "Inter", 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: #0B1B48;
}
.site-content > .default_block h1, .site-content > .default_block .h1 {
  font-size: clamp(48px, 36.6px + 0.019 * 100vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.site-content > .default_block h2 {
  font-size: clamp(34px, 23.8px + 0.017 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.site-content > .default_block h3 {
  font-size: clamp(24px, 18px + 0.01 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.site-content > .default_block h4 {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 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: #0B1B48;
  -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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 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(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  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: "Inter", 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: #0B1B48;
}
.site-content > .default_block.paragraph h1, .site-content > .default_block.paragraph .h1 {
  font-size: clamp(48px, 36.6px + 0.019 * 100vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.site-content > .default_block.paragraph h2 {
  font-size: clamp(34px, 23.8px + 0.017 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.site-content > .default_block.paragraph h3 {
  font-size: clamp(24px, 18px + 0.01 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.site-content > .default_block.paragraph h4 {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 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: #0B1B48;
  -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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 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(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  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: "Inter", 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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 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 #0B1B48;
  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: #0B1B48;
  font-weight: 300;
  font-size: clamp(18px, 16.8px + 0.002 * 100vw, 20px);
}
.post-item__title a {
  text-decoration: none;
  color: #0B1B48;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.post-item__title a:hover {
  background-position: 100% 100%;
}

.deco {
  display: none !important;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scaleX(1);
          transform: translate(-50%, -50%) scaleX(1);
  z-index: 1;
}
.image-text--left .deco {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.deco svg {
  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: 0.6s;
          transition-delay: 0.6s;
}

.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(100px, 57.4px + 0.071 * 100vw, 160px);
          flex: 0 0 clamp(100px, 57.4px + 0.071 * 100vw, 160px);
}
.sitelogo img, .sitelogo svg {
  height: auto;
  display: block;
}

.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: #0B1B48;
    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: #006CFF;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}
.site-menu .menu li a:not(.btn--small) {
  color: var(--headerLink);
  font-size: 20px;
  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;
}
@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 #0B1B48;
  border-right: 2px solid #0B1B48;
  -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: #006CFF;
}
.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: #0B1B48;
}
@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: #0B1B48;
  }
}
.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: #EED702;
  }
}
@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);
}

.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: #0B1B48;
}
.site-search form input[type=search]::-webkit-input-placeholder {
  color: #0B1B48;
}
.site-search form input[type=search]::-moz-placeholder {
  color: #0B1B48;
}
.site-search form input[type=search]:-ms-input-placeholder {
  color: #0B1B48;
}
.site-search form input[type=search]::-ms-input-placeholder {
  color: #0B1B48;
}
.site-search form input[type=search]::placeholder {
  color: #0B1B48;
}
.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: #0B1B48;
  margin-bottom: 10px;
}
.post-cont__title:hover {
  color: #212529;
}
.post-cont__link {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
  color: #0B1B48;
  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(34px, 23.8px + 0.017 * 100vw, 48px);
  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(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  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: "Inter", 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: #0B1B48;
}
.single-content__cont h1, .single-content__cont .h1 {
  font-size: clamp(48px, 36.6px + 0.019 * 100vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.single-content__cont h2 {
  font-size: clamp(34px, 23.8px + 0.017 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.single-content__cont h3 {
  font-size: clamp(24px, 18px + 0.01 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.single-content__cont h4 {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 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: #0B1B48;
  -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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 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(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  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 #0B1B48;
  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(24px, 18px + 0.01 * 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: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #0B1B48;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
}
.pagination .page-numbers.current {
  background: #0B1B48;
  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);
}
@media only screen and (max-width: 1050px) {
  .form-custom {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 750px) {
  .form-custom {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.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: #0B1B48;
  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;
}
@media only screen and (min-width: 1050px) {
  .form-custom div.field-8 {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}

.rrhhcontent .container {
  font-family: "Inter", sans-serif;
}
.rrhhcontent .container h1,
.rrhhcontent .container h2,
.rrhhcontent .container h3,
.rrhhcontent .container h4,
.rrhhcontent .container h5,
.rrhhcontent .container h6 {
  position: relative;
  color: #0B1B48;
}
.rrhhcontent .container h1, .rrhhcontent .container .h1 {
  font-size: clamp(48px, 36.6px + 0.019 * 100vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.rrhhcontent .container h2 {
  font-size: clamp(34px, 23.8px + 0.017 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.rrhhcontent .container h3 {
  font-size: clamp(24px, 18px + 0.01 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.rrhhcontent .container h4 {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  font-weight: 400;
}
.rrhhcontent .container h5 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}
.rrhhcontent .container h6 {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
}
.rrhhcontent .container p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1em;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.rrhhcontent .container p:last-child {
  margin-bottom: 0;
}
.rrhhcontent .container p strong, .rrhhcontent .container p b {
  font-weight: 800;
}
.rrhhcontent .container 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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.rrhhcontent .container p a:hover {
  background-position: 100% 100%;
}
.rrhhcontent .container p a {
  text-decoration: none;
}
.rrhhcontent .container ul,
.rrhhcontent .container ol {
  padding-left: 20px;
  margin-bottom: 28px;
  line-height: 1.6;
  letter-spacing: 0.48px;
}
.rrhhcontent .container ul li {
  list-style: disc;
  margin-bottom: 5px;
}
.rrhhcontent .container ul li:last-child {
  margin-bottom: 0;
}
.rrhhcontent .container a:not(.link):not(.btn) {
  color: #0B1B48;
  -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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.rrhhcontent .container a:not(.link):not(.btn):hover {
  background-position: 100% 100%;
}
.rrhhcontent .container a:not(.link):not(.btn) {
  text-decoration: none;
  padding-bottom: 4px;
  font-weight: 500;
}
.rrhhcontent .container a:not(.link):not(.btn):hover {
  text-decoration: none;
}
.rrhhcontent .container iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.rrhhcontent .container blockquote {
  position: relative;
}
.rrhhcontent .container blockquote p {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  font-weight: 400;
}
.rrhhcontent .container img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 0 28px 0;
}
.rrhhcontent .container .alignleft {
  float: left;
  max-width: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 750px) {
  .rrhhcontent .container .alignleft {
    max-width: 100%;
  }
}
.rrhhcontent .container .aligncenter {
  margin: 30px auto;
  display: block;
}
.rrhhcontent .container .alignright {
  float: right;
  max-width: 50%;
  margin-left: 30px;
}
@media only screen and (max-width: 750px) {
  .rrhhcontent .container .alignright {
    max-width: 100%;
  }
}
.rrhhcontent .container del {
  text-decoration: line-through;
}

.btn {
  --button-bg: #0B1B48;
  --button-color: #ffffff;
  --button-border: #0B1B48;
  --buttonHover-bg: #006CFF;
  --buttonHover-color: #ffffff;
  --buttonHover-border: #0B1B48;
  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: 18px;
  background: var(--button-bg);
  color: var(--button-color);
  padding: 10px clamp(15px, 7.8px + 0.012 * 100vw, 25px);
  border: none;
  border-radius: 40px;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media only screen and (max-width: 600px) {
  .btn {
    font-size: 16px;
  }
}
.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 {
  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%);
  }
  .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--light {
  --button-bg: #006CFF;
  --button-color: #ffffff;
  --buttonHover-bg: #0B1B48;
  --buttonHover-color: #ffffff;
}

.btn--invert {
  --button-bg: #006CFF;
  --button-color: #ffffff;
  --buttonHover-bg: #ffffff;
  --buttonHover-color: #0B1B48;
  border: none;
}

.btn--white {
  --button-bg: #ffffff;
  --button-color: #0B1B48;
  --button-border: #0B1B48;
  --buttonHover-bg: #006CFF;
  --buttonHover-color: #ffffff;
  --buttonHover-border: #006CFF;
}

/*
.btn--transparent {
	--bg: transparent;
	--color: #ffffff;
	--colorHover: #ffffff;
	--colorHoverBg: #0B1B48;
	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: #0B1B48;
	--colorHover: #ffffff;
	--colorHoverBg: #0B1B48;
	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: #0B1B48;
  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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 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;
  padding-top: 80px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 900px) {
  .home-hero {
    padding-top: 180px;
  }
}
.home-hero__slider {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.home-hero__slider .swiper-slide {
  height: 100%;
}
.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__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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 900px) {
  .home-hero__caption {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.home-hero__caption h1, .home-hero__caption .home-hero__sub {
  color: #0B1B48;
  text-align: left;
  font-size: clamp(34px, 23.8px + 0.017 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
@media only screen and (min-width: 900px) {
  .home-hero__caption h1, .home-hero__caption .home-hero__sub {
    font-size: clamp(48px, 36.6px + 0.019 * 100vw, 64px);
    letter-spacing: -0.03em;
    line-height: 1.2;
    font-weight: 700;
  }
}
.home-hero__caption h1 {
  max-width: 720px;
}
.home-hero__caption .home-hero__sub {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}
.home-hero__caption .btn {
  margin-top: 20px;
}
.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: #006CFF;
  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: 260px;
  overflow: hidden;
  margin-bottom: 0 !important;
  padding: 0 0 !important;
  background-color: #0B1B48;
}
.simple-hero.full-height {
  height: 100vh;
}
.simple-hero .deco {
  display: none !important;
}
.simple-hero .deco svg path {
  fill: #ffffff;
}
.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__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(11, 27, 72, 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: transparent;
  --headerLink: #0B1B48;
  --headerLinkHover: #006CFF;
  background: var(--headerBackground);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0px 0;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 900px) {
  .header {
    padding: 0px 0;
  }
}
.home .header {
  --headerBackground: transparent;
  --headerLink: #0B1B48;
  --headerLinkHover: #006CFF;
}
.home .header.dark {
  --headerBackground: #0B1B48;
  --headerLink: #ffffff;
  --headerLinkHover: #006CFF;
}
.scrolled .header {
  --headerBackground: #ffffff;
  -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: #ffffff;
  }
}
.header.dark {
  --headerLink: #ffffff;
  --headerLinkHover: #006CFF;
  --headerBackground: #0B1B48;
}
.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(100px, 100px + 0 * 100vw, 100px);
}
.header.dark .responsive__btn span {
  background: white;
}
@media only screen and (max-width: 900px) {
  .header {
    --headerBackground: #0B1B48;
  }
}
.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: #0B1B48;
  -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: #006CFF;
}
.menuopen .header .responsive__btn span {
  -ms-flex-item-align: start;
      align-self: flex-start;
  background: #006CFF;
}
.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: #0B1B48;
  --headerLink: #ffffff;
  --headerLinkHover: #006CFF;
  padding: 30px 0 0;
  background: var(--footerBackground);
}
@media only screen and (min-width: 900px) {
  .site-footer {
    padding: 50px 0 0;
  }
}
@media only screen and (max-width: 900px) {
  .site-footer .sitelogo {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 120px;
    margin-bottom: 30px;
  }
}
.site-footer .footer__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: 0px;
}
@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-menu {
  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;
  gap: 0px;
}
@media only screen and (min-width: 750px) {
  .site-footer .footer-menu {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.site-footer .footer-menu__col {
  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;
  color: white;
  gap: 10px;
}
@media only screen and (max-width: 750px) {
  .site-footer .footer-menu__col {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.site-footer .footer-menu__col h5 {
  font-size: 18px;
}
.site-footer .footer-menu__col h4 {
  font-weight: 700;
}
.site-footer .footer-menu__col ul {
  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;
  color: white;
  gap: 10px;
}
@media only screen and (max-width: 750px) {
  .site-footer .footer-menu__col ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.site-footer .footer-menu__col ul li a {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, #006CFF), to(#006CFF));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, #006CFF 50%, #006CFF 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.site-footer .footer-menu__col ul li a:hover {
  background-position: 100% 100%;
}
.site-footer .footer-menu__col ul li a {
  padding-bottom: 4px;
  color: white;
  text-decoration: none;
}
.site-footer .footer-menu__col ul li a:hover {
  color: #006CFF;
}
.site-footer .menu-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: clamp(30px, 15.6px + 0.024 * 100vw, 50px);
}
@media only screen and (max-width: 750px) {
  .site-footer .menu-bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.site-footer .menu-bottom li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.site-footer .menu-bottom li a {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, #006CFF), to(#006CFF));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, #006CFF 50%, #006CFF 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.site-footer .menu-bottom li a:hover {
  background-position: 100% 100%;
}
.site-footer .menu-bottom li a {
  padding-bottom: 4px;
  font-size: 15px;
  font-weight: 300;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}
.site-footer .menu-bottom li a:hover {
  color: #006CFF;
}
.site-footer .menu-bottom li .trp-language-switcher {
  padding: 0;
  line-height: 1;
  overflow: auto;
}
.site-footer .menu-bottom li .trp-language-item {
  padding: 0;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.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: white;
}
.site-footer__social .links a:hover path {
  fill: #006CFF;
}
.site-footer__copy {
  width: 100%;
  background-color: #212529;
  margin-top: 20px;
  padding: 10px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5625;
  text-align: center;
}
.site-footer__copy a {
  color: white;
  text-decoration: none;
}
.site-footer__copy a:hover {
  color: #006CFF;
}

.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;
}

.image-text {
  overflow: hidden;
  color: #0B1B48;
  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: 20px;
  overflow: hidden;
}
.image-text figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.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;
  font-family: "Inter", sans-serif;
}
.image-text .text h1,
.image-text .text h2,
.image-text .text h3,
.image-text .text h4,
.image-text .text h5,
.image-text .text h6 {
  position: relative;
  color: #0B1B48;
}
.image-text .text h1, .image-text .text .h1 {
  font-size: clamp(48px, 36.6px + 0.019 * 100vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.image-text .text h2 {
  font-size: clamp(34px, 23.8px + 0.017 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.image-text .text h3 {
  font-size: clamp(24px, 18px + 0.01 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.image-text .text h4 {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  font-weight: 400;
}
.image-text .text h5 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}
.image-text .text h6 {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
}
.image-text .text p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1em;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.image-text .text p:last-child {
  margin-bottom: 0;
}
.image-text .text p strong, .image-text .text p b {
  font-weight: 800;
}
.image-text .text 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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.image-text .text p a:hover {
  background-position: 100% 100%;
}
.image-text .text p a {
  text-decoration: none;
}
.image-text .text ul,
.image-text .text ol {
  padding-left: 20px;
  margin-bottom: 28px;
  line-height: 1.6;
  letter-spacing: 0.48px;
}
.image-text .text ul li {
  list-style: disc;
  margin-bottom: 5px;
}
.image-text .text ul li:last-child {
  margin-bottom: 0;
}
.image-text .text a:not(.link):not(.btn) {
  color: #0B1B48;
  -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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.image-text .text a:not(.link):not(.btn):hover {
  background-position: 100% 100%;
}
.image-text .text a:not(.link):not(.btn) {
  text-decoration: none;
  padding-bottom: 4px;
  font-weight: 500;
}
.image-text .text a:not(.link):not(.btn):hover {
  text-decoration: none;
}
.image-text .text iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.image-text .text blockquote {
  position: relative;
}
.image-text .text blockquote p {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  font-weight: 400;
}
.image-text .text img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 0 28px 0;
}
.image-text .text .alignleft {
  float: left;
  max-width: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 750px) {
  .image-text .text .alignleft {
    max-width: 100%;
  }
}
.image-text .text .aligncenter {
  margin: 30px auto;
  display: block;
}
.image-text .text .alignright {
  float: right;
  max-width: 50%;
  margin-left: 30px;
}
@media only screen and (max-width: 750px) {
  .image-text .text .alignright {
    max-width: 100%;
  }
}
.image-text .text del {
  text-decoration: line-through;
}
.image-text .text {
  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 .text .image-text__title {
  font-size: clamp(24px, 18px + 0.01 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.image-text .text h4 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}
.image-text .text .btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.image-text .text ul, .image-text .text ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.image-text .text ul li, .image-text .text ol li {
  list-style: none;
  padding-left: 20px;
  position: relative;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-500px) translateY(0px));
          transform: var(--fade-transform, translateX(-500px) 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 .text ul li:nth-child(1), .image-text .text ol li:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.image-text .text ul li:nth-child(2), .image-text .text ol li:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.image-text .text ul li:nth-child(3), .image-text .text ol li:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.image-text .text ul li:nth-child(4), .image-text .text ol li:nth-child(4) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.image-text .text ul li:nth-child(5), .image-text .text ol li:nth-child(5) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.image-text .text ul li:nth-child(6), .image-text .text ol li:nth-child(6) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.image-text .text ul li:nth-child(7), .image-text .text ol li:nth-child(7) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.image-text .text ul li:nth-child(8), .image-text .text ol li:nth-child(8) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.image-text .text ul li:nth-child(9), .image-text .text ol li:nth-child(9) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.image-text .text ul li:nth-child(10), .image-text .text ol li:nth-child(10) {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.image-text .text ul li:nth-child(11), .image-text .text ol li:nth-child(11) {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
.image-text .text ul li:nth-child(12), .image-text .text ol li:nth-child(12) {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
.image-text .text ul li:nth-child(13), .image-text .text ol li:nth-child(13) {
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}
.image-text .text ul li:nth-child(14), .image-text .text ol li:nth-child(14) {
  -webkit-transition-delay: 2.8s;
          transition-delay: 2.8s;
}
.image-text .text ul li:nth-child(15), .image-text .text ol li:nth-child(15) {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}
.image-text .text ul li:nth-child(16), .image-text .text ol li:nth-child(16) {
  -webkit-transition-delay: 3.2s;
          transition-delay: 3.2s;
}
.image-text .text ul li:nth-child(17), .image-text .text ol li:nth-child(17) {
  -webkit-transition-delay: 3.4s;
          transition-delay: 3.4s;
}
.image-text .text ul li:nth-child(18), .image-text .text ol li:nth-child(18) {
  -webkit-transition-delay: 3.6s;
          transition-delay: 3.6s;
}
.image-text .text ul li:nth-child(19), .image-text .text ol li:nth-child(19) {
  -webkit-transition-delay: 3.8s;
          transition-delay: 3.8s;
}
.image-text .text ul li:nth-child(20), .image-text .text ol li:nth-child(20) {
  -webkit-transition-delay: 4s;
          transition-delay: 4s;
}
.image-text .text ul li::before, .image-text .text ol li::before {
  width: 12px;
  height: 12px;
  border-radius: 50rem;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #006CFF;
  content: "";
}
@media only screen and (min-width: 900px) {
  .image-text .text ul, .image-text .text ol {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.image-text__title {
  position: relative;
  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-weight: 700;
  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--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;
  }
}
.image-text.is-style-degrade-azul {
  color: white;
}
.image-text.is-style-degrade-azul h2, .image-text.is-style-degrade-azul h3, .image-text.is-style-degrade-azul h4, .image-text.is-style-degrade-azul h5, .image-text.is-style-degrade-azul h6, .image-text.is-style-degrade-azul p, .image-text.is-style-degrade-azul ul, .image-text.is-style-degrade-azul ol {
  color: white;
}
.image-text.is-style-degrade-azul .text ul li::before {
  background-color: white;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  color: #ffffff;
  text-align: left;
}
@media only screen and (min-width: 900px) {
  .cta {
    padding: 80px 0;
  }
}
.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: #0B1B48;
  mix-blend-mode: multiply;
  opacity: 0.55;
}
.cta--deco {
  position: absolute;
  left: -5%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 633px;
  height: 633px;
  z-index: 1;
}
.cta--deco svg {
  width: 100%;
  height: auto;
  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;
}
.cta .container {
  position: relative;
  z-index: 2;
}
.cta blockquote {
  font-size: clamp(24px, 18px + 0.01 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  max-width: 900px;
  color: inherit;
}
@media only screen and (min-width: 900px) {
  .cta blockquote {
    font-size: clamp(48px, 36.6px + 0.019 * 100vw, 64px);
    letter-spacing: -0.03em;
    line-height: 1.2;
    font-weight: 700;
  }
}
.cta h2 {
  position: relative;
  display: 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);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.cta--text {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
  font-style: normal;
  letter-spacing: 0.1em;
  max-width: 950px;
  margin: 24px 0 0;
  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 .btn {
  margin-top: 50px;
  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.is-style-azul {
  background-color: #006CFF;
  color: white;
}
.cta.is-style-celeste {
  color: #0B1B48;
}
.cta.is-style-blanco {
  color: #0B1B48;
}
.cta.is-style-gris {
  color: #212529;
}
.cta .row {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (min-width: 900px) {
  .cta .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
@media only screen and (min-width: 900px) {
  .cta .row .column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

.testimonios {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: white;
  color: #0B1B48;
  text-align: center;
}
.testimonios h3 {
  font-size: clamp(34px, 23.8px + 0.017 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #0B1B48;
}
.testimonios__text {
  font-family: "Inter", sans-serif;
}
.testimonios__text h1,
.testimonios__text h2,
.testimonios__text h3,
.testimonios__text h4,
.testimonios__text h5,
.testimonios__text h6 {
  position: relative;
  color: #0B1B48;
}
.testimonios__text h1, .testimonios__text .h1 {
  font-size: clamp(48px, 36.6px + 0.019 * 100vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.testimonios__text h2 {
  font-size: clamp(34px, 23.8px + 0.017 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.testimonios__text h3 {
  font-size: clamp(24px, 18px + 0.01 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.testimonios__text h4 {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  font-weight: 400;
}
.testimonios__text h5 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}
.testimonios__text h6 {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
}
.testimonios__text p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1em;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.testimonios__text p:last-child {
  margin-bottom: 0;
}
.testimonios__text p strong, .testimonios__text p b {
  font-weight: 800;
}
.testimonios__text 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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.testimonios__text p a:hover {
  background-position: 100% 100%;
}
.testimonios__text p a {
  text-decoration: none;
}
.testimonios__text ul,
.testimonios__text ol {
  padding-left: 20px;
  margin-bottom: 28px;
  line-height: 1.6;
  letter-spacing: 0.48px;
}
.testimonios__text ul li {
  list-style: disc;
  margin-bottom: 5px;
}
.testimonios__text ul li:last-child {
  margin-bottom: 0;
}
.testimonios__text a:not(.link):not(.btn) {
  color: #0B1B48;
  -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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.testimonios__text a:not(.link):not(.btn):hover {
  background-position: 100% 100%;
}
.testimonios__text a:not(.link):not(.btn) {
  text-decoration: none;
  padding-bottom: 4px;
  font-weight: 500;
}
.testimonios__text a:not(.link):not(.btn):hover {
  text-decoration: none;
}
.testimonios__text iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.testimonios__text blockquote {
  position: relative;
}
.testimonios__text blockquote p {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  font-weight: 400;
}
.testimonios__text img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 0 28px 0;
}
.testimonios__text .alignleft {
  float: left;
  max-width: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 750px) {
  .testimonios__text .alignleft {
    max-width: 100%;
  }
}
.testimonios__text .aligncenter {
  margin: 30px auto;
  display: block;
}
.testimonios__text .alignright {
  float: right;
  max-width: 50%;
  margin-left: 30px;
}
@media only screen and (max-width: 750px) {
  .testimonios__text .alignright {
    max-width: 100%;
  }
}
.testimonios__text del {
  text-decoration: line-through;
}
.testimonios__text {
  margin-top: 24px;
}
.testimonios .slider-testimonios {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}
.testimonios .slider-testimonios--pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #EDF5FF;
  opacity: 1;
}
.testimonios .slider-testimonios--pagination .swiper-pagination-bullet:hover {
  background-color: #006CFF;
}
.testimonios .slider-testimonios--pagination .swiper-pagination-bullet-active {
  background-color: #006CFF;
}
.testimonios .slider-testimonios .swiper-slide {
  height: auto !important;
  padding: 4px;
  padding-bottom: 20px;
}
.testimonios .slider-testimonios .swiper-slide-active .testimonio {
  background-color: white;
}
.testimonios .slider-testimonios .swiper-slide-active .testimonio__cont blockquote {
  color: #0B1B48;
}
.testimonios .slider-testimonios .swiper-slide-active .testimonio__cont blockquote::before {
  color: #0B1B48;
}
.testimonios .slider-testimonios .swiper-slide-active .testimonio__author {
  color: #212529 !important;
}
.testimonios .slider-testimonios .swiper-slide-active .testimonio__author--name, .testimonios .slider-testimonios .swiper-slide-active .testimonio__author--cargo {
  color: #212529;
}
.testimonios .slider-testimonios .swiper-slide-active .testimonio__author--img img {
  border: 1px solid #006CFF;
}
.testimonios .testimonio {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 40px 24px;
  gap: 50px;
  position: relative;
  overflow: hidden;
  background: #8fbaff;
  -webkit-box-shadow: 10px 15px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 10px 15px 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.testimonios .testimonio:nth-child(1) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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.6s;
          transition-delay: 0.6s;
}
.testimonios .testimonio:nth-child(2) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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.8s;
          transition-delay: 0.8s;
}
.testimonios .testimonio:nth-child(3) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 1s;
          transition-delay: 1s;
}
.testimonios .testimonio:nth-child(4) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 1.2s;
          transition-delay: 1.2s;
}
.testimonios .testimonio:nth-child(5) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 1.4s;
          transition-delay: 1.4s;
}
.testimonios .testimonio:nth-child(6) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 1.6s;
          transition-delay: 1.6s;
}
.testimonios .testimonio:nth-child(7) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 1.8s;
          transition-delay: 1.8s;
}
.testimonios .testimonio:nth-child(8) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 2s;
          transition-delay: 2s;
}
.testimonios .testimonio:nth-child(9) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 2.2s;
          transition-delay: 2.2s;
}
.testimonios .testimonio:nth-child(10) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 2.4s;
          transition-delay: 2.4s;
}
.testimonios .testimonio:nth-child(11) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 2.6s;
          transition-delay: 2.6s;
}
.testimonios .testimonio:nth-child(12) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 2.8s;
          transition-delay: 2.8s;
}
.testimonios .testimonio:nth-child(13) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 3s;
          transition-delay: 3s;
}
.testimonios .testimonio:nth-child(14) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 3.2s;
          transition-delay: 3.2s;
}
.testimonios .testimonio:nth-child(15) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 3.4s;
          transition-delay: 3.4s;
}
.testimonios .testimonio:nth-child(16) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 3.6s;
          transition-delay: 3.6s;
}
.testimonios .testimonio:nth-child(17) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 3.8s;
          transition-delay: 3.8s;
}
.testimonios .testimonio:nth-child(18) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 4s;
          transition-delay: 4s;
}
.testimonios .testimonio:nth-child(19) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 4.2s;
          transition-delay: 4.2s;
}
.testimonios .testimonio:nth-child(20) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0px) translateY(200px));
          transform: var(--fade-transform, translateX(0px) 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: 4.4s;
          transition-delay: 4.4s;
}
@media only screen and (max-width: 900px) {
  .testimonios .testimonio {
    gap: 30px;
  }
}
.testimonios .testimonio__cont {
  text-align: left;
  position: relative;
  line-height: 1.35;
  letter-spacing: -2%;
}
.testimonios .testimonio__cont blockquote {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  letter-spacing: 0.035em;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.testimonios .testimonio__cont blockquote::before {
  content: "“";
  font-size: 150px;
  font-weight: 900;
  position: relative;
  top: 0;
  left: 0;
  color: #ffffff;
  height: 100px;
  line-height: 0.9;
}
.testimonios .testimonio__author {
  width: 100%;
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.testimonios .testimonio__author::before {
  position: absolute;
  top: -20px;
  width: 100%;
  height: 1px;
  background: #212529;
  content: "";
}
.testimonios .testimonio__author--img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 95px;
          flex: 0 0 95px;
  width: 95px;
  height: 95px;
  background: #fff;
  border-radius: 50rem;
}
.testimonios .testimonio__author--img img {
  aspect-ratio: 1;
  border-radius: 50rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ffffff;
}
.testimonios .testimonio__author--data {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}
.testimonios .testimonio__author--name {
  font-size: clamp(18px, 15px + 0.005 * 100vw, 22px);
  line-height: 1;
  font-weight: 600;
}
.testimonios .testimonio__author--cargo {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.3;
}
.testimonios.is-style-azul {
  color: white;
  background-color: #0B1B48;
}
.testimonios.is-style-azul h3 {
  color: white;
}
.testimonios.is-style-azul .testimonio__cont, .testimonios.is-style-azul .testimonio__author--name, .testimonios.is-style-azul .testimonio__author--cargo {
  color: #0B1B48;
}
.testimonios.is-style-azul .slider-testimonios--pagination .swiper-pagination-bullet-active {
  background-color: #006CFF;
}

.clientes {
  position: relative;
}
@media only screen and (min-width: 900px) {
  .clientes {
    padding: 30px 0;
  }
}
.clientes h2,
.clientes h3 {
  color: #0B1B48;
  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.8s;
          transition-delay: 0.8s;
}
.clientes.is-style-azul h2, .clientes.is-style-azul h3 {
  color: white;
}
.clientes.is-style-gris h2, .clientes.is-style-gris h3 {
  color: #212529;
}
.clientes .slider-clientes {
  margin-top: 50px;
  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;
  margin-top: clamp(20px, -1.6px + 0.036 * 100vw, 50px);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.clientes .slider-clientes .swiper-slide {
  height: auto !important;
}
.clientes .slider-clientes .swiper-slide img {
  width: 90%;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.clientes .grid-clientes {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  justify-items: 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;
  gap: 10px;
}
@media only screen and (min-width: 900px) {
  .clientes .grid-clientes {
    gap: 30px;
  }
}
.clientes .grid-clientes__item {
  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;
  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;
}
.clientes .grid-clientes__item:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.clientes .grid-clientes__item:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.clientes .grid-clientes__item:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.clientes .grid-clientes__item:nth-child(4) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.clientes .grid-clientes__item:nth-child(5) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.clientes .grid-clientes__item:nth-child(6) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.clientes .grid-clientes__item:nth-child(7) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.clientes .grid-clientes__item:nth-child(8) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.clientes .grid-clientes__item:nth-child(9) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.clientes .grid-clientes__item:nth-child(10) {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.clientes .grid-clientes__item:nth-child(11) {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
.clientes .grid-clientes__item:nth-child(12) {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
.clientes .grid-clientes__item:nth-child(13) {
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}
.clientes .grid-clientes__item:nth-child(14) {
  -webkit-transition-delay: 2.8s;
          transition-delay: 2.8s;
}
.clientes .grid-clientes__item:nth-child(15) {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}
.clientes .grid-clientes__item:nth-child(16) {
  -webkit-transition-delay: 3.2s;
          transition-delay: 3.2s;
}
.clientes .grid-clientes__item:nth-child(17) {
  -webkit-transition-delay: 3.4s;
          transition-delay: 3.4s;
}
.clientes .grid-clientes__item:nth-child(18) {
  -webkit-transition-delay: 3.6s;
          transition-delay: 3.6s;
}
.clientes .grid-clientes__item:nth-child(19) {
  -webkit-transition-delay: 3.8s;
          transition-delay: 3.8s;
}
.clientes .grid-clientes__item:nth-child(20) {
  -webkit-transition-delay: 4s;
          transition-delay: 4s;
}
.clientes .grid-clientes__item img {
  width: 100%;
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -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;
}
@media only screen and (max-width: 600px) {
  .clientes .grid-clientes__item img {
    max-width: 120px;
  }
}
.clientes .grid-clientes__item:hover img {
  -webkit-filter: none;
          filter: none;
}

.posts-grid {
  position: relative;
}
.posts-grid__title {
  position: relative;
  color: #0B1B48;
  text-align: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  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::after {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0%;
  width: 45px;
  height: 20px;
  background: url(../images/separador-red.svg) center center no-repeat;
  content: "";
}
.posts-grid__title.red {
  color: #F80836;
}
.posts-grid__text {
  margin: 0px auto;
  text-align: center;
  margin-bottom: 40px;
  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 {
  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: "Inter", 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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 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 #006CFF;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
}
.posts-grid .filters button,
.posts-grid .filters label {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  background: transparent;
  font-size: 18px;
  border: none;
  padding: 0 0 10px 0;
  opacity: 0.4;
  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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.posts-grid .filters button:hover,
.posts-grid .filters label:hover {
  background-position: 100% 100%;
}
.posts-grid .filters button,
.posts-grid .filters label {
  white-space: nowrap;
  font-weight: 800;
}
.posts-grid .filters button:hover,
.posts-grid .filters label: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;
}
@media only screen and (max-width: 900px) {
  .posts-grid__grid {
    -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;
  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;
}
.posts-grid__item:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.posts-grid__item:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.posts-grid__item:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.posts-grid__item:nth-child(4) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.posts-grid__item:nth-child(5) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.posts-grid__item:nth-child(6) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.posts-grid__item:nth-child(7) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.posts-grid__item:nth-child(8) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.posts-grid__item:nth-child(9) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.posts-grid__item:nth-child(10) {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.posts-grid__item:nth-child(11) {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
.posts-grid__item:nth-child(12) {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
.posts-grid__item:nth-child(13) {
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}
.posts-grid__item:nth-child(14) {
  -webkit-transition-delay: 2.8s;
          transition-delay: 2.8s;
}
.posts-grid__item:nth-child(15) {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}
.posts-grid__item:nth-child(16) {
  -webkit-transition-delay: 3.2s;
          transition-delay: 3.2s;
}
.posts-grid__item:nth-child(17) {
  -webkit-transition-delay: 3.4s;
          transition-delay: 3.4s;
}
.posts-grid__item:nth-child(18) {
  -webkit-transition-delay: 3.6s;
          transition-delay: 3.6s;
}
.posts-grid__item:nth-child(19) {
  -webkit-transition-delay: 3.8s;
          transition-delay: 3.8s;
}
.posts-grid__item:nth-child(20) {
  -webkit-transition-delay: 4s;
          transition-delay: 4s;
}
.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;
  gap: 15px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
}
.posts-grid__item--image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  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__item--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 47/38;
  border-radius: 10px;
}
.prestadores .posts-grid__item--image img {
  aspect-ratio: 4/3;
}
.posts-grid__item--title {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
  color: #0B1B48;
  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;
  text-decoration: none;
}
.posts-grid__item--title a {
  text-decoration: none;
  color: #0B1B48;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 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: #006CFF;
}
.posts-grid__item--meta {
  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;
  position: absolute;
  top: 8px;
  right: 8px;
  gap: 8px;
  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__item--meta a {
  display: inline-block;
  border-radius: 10px;
  padding: 4px 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.posts-grid__item .link {
  margin-top: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.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;
}

@-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: #0B1B48;
  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: #0B1B48;
  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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 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;
}

.perfiles {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.perfiles--header {
  padding: 80px 0 100px;
  position: relative;
  background: #0B1B48;
  overflow: hidden;
}
.perfiles__title, .perfiles__text {
  color: white;
  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.8s;
          transition-delay: 0.8s;
}
.perfiles .container {
  position: relative;
  z-index: 2;
}
.perfiles--cont {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  z-index: 2;
  margin-top: -50px;
  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;
  gap: 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);
  margin-bottom: 10px;
}
.perfiles .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 100%;
  -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: 0.2s;
          transition-delay: 0.2s;
}
@media only screen and (max-width: 750px) {
  .perfiles .filters .mobile-hidden {
    display: none;
  }
}
@media only screen and (max-width: 750px) {
  .perfiles .filters .filter__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
  }
}
.perfiles .filters label {
  text-transform: none;
  color: #212529;
  font-size: 18px;
  letter-spacing: normal;
  font-weight: 400;
  cursor: default;
  background: none;
  opacity: 1;
}
@media only screen and (max-width: 750px) {
  .perfiles .filters label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }
}
.perfiles .filters select {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #006CFF;
  font-weight: 600;
  font-size: 16px;
}
@media only screen and (max-width: 750px) {
  .perfiles .filters select {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(100% - 160px);
            flex: 1 0 calc(100% - 160px);
  }
}
.perfiles .posts-grid__grid.ofertas {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
}
.perfiles .posts-grid__grid.ofertas .posts-grid__item.oferta {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.perfiles .posts-grid__grid.ofertas .posts-grid__item.oferta .oferta--cont {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media only screen and (min-width: 600px) {
  .perfiles .posts-grid__grid.ofertas .posts-grid__item.oferta .oferta--cont {
    max-width: calc(100% - 150px);
  }
}
.perfiles .posts-grid__grid.ofertas .posts-grid__item.oferta .oferta--cont .titulo-oferta a {
  text-decoration: none;
  color: #0B1B48;
}
.perfiles .posts-grid__grid.ofertas .posts-grid__item.oferta .oferta--cont .excerpt-oferta {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.perfiles .posts-grid__grid.ofertas .posts-grid__item.oferta .btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  max-width: 130px;
}
.perfiles .posts-grid__grid.ofertas .posts-grid__item.oferta::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #212529;
  opacity: 0.08;
  content: "";
}

.cards {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cards .container {
  position: relative;
  z-index: 2;
}
.cards__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.2s;
          transition-delay: 0.2s;
  color: #0B1B48;
}
.cards__subtitle {
  max-width: 900px;
  margin: 30px auto 0 auto;
  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;
}
.cards__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 50px auto 0 auto;
  gap: 30px;
}
@media only screen and (max-width: 600px) {
  .cards__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cards__grid .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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
  padding-bottom: 80px;
  border-radius: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  text-align: left;
  overflow: hidden;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card: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;
}
.cards__grid .card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media only screen and (min-width: 750px) {
  .cards__grid .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 30px);
            flex: 0 0 calc(50% - 30px);
  }
}
@media only screen and (min-width: 900px) {
  .cards__grid .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(33% - 20px);
            flex: 1 1 calc(33% - 20px);
  }
  .cards__grid .card.column-4 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(25% - 30px);
            flex: 1 1 calc(25% - 30px);
  }
}
.cards__grid .card img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cards__grid .card--data {
  padding: 10px 20px;
  padding-right: 30px;
}
.cards__grid .card--title {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
  font-weight: 600;
}
.cards__grid .card--text {
  line-clamp: 3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-top: 15px;
}
.cards__grid .card.card-con-headers-azules {
  background-color: white;
  border: 1px solid #9C9C9C;
  color: #0B1B48;
  margin-top: 40px;
}
.cards__grid .card.card-con-headers-azules .icon {
  width: 100%;
  height: auto;
  background: #8fbaff;
  overflow: hidden;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cards__grid .card.card-con-headers-azules .icon img {
  -webkit-filter: brightness(100) grayscale(100);
          filter: brightness(100) grayscale(100);
}
.cards__grid .card.card-con-headers-azules:nth-child(2) .icon {
  background-color: #3D6BFF;
}
.cards__grid .card.card-con-headers-azules:nth-child(3) .icon {
  background-color: #006CFF;
}
.cards__grid .card.card-con-headers-azules:nth-child(4) .icon {
  background-color: #0B1B48;
}
.cards__grid .card.card-sin-headers {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: #ffffff;
  border: 1px solid #0B1B48;
  color: #212529;
}
.cards__grid .card.card-sin-headers .icon {
  position: relative;
  left: 20px;
  top: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50rem;
  padding: 10px;
  background: #0B1B48;
  border: 1px solid #9C9C9C;
}
.cards__grid .card.card-sin-headers .icon img {
  width: 40px;
  height: 40px;
  -webkit-filter: brightness(100) grayscale(100);
          filter: brightness(100) grayscale(100);
}
.cards__grid .card.card-sin-headers .icon.colored {
  border: none;
}
.cards__grid .card.card-sin-headers .icon.colored img {
  -webkit-filter: brightness(100) grayscale(100);
          filter: brightness(100) grayscale(100);
}
.cards__grid .card.card-sin-headers .card--title {
  text-align: left;
}
.cards__grid .card.card-sin-headers .card--text {
  text-align: left;
}
.cards__grid .card.card-sin-headers .btn {
  -webkit-transform: none;
          transform: none;
}
.cards__grid .card .btn {
  letter-spacing: normal;
  position: absolute;
  bottom: 20px;
  left: 20px;
  white-space: nowrap;
}
@media only screen and (max-width: 450px) {
  .cards__grid .card .btn {
    overflow: hidden;
    left: 10px;
    font-size: 16px;
    text-overflow: ellipsis;
    max-width: calc(100% - 20px);
    min-height: 0;
    word-break: break-word;
  }
}
.cards.is-style-degrade {
  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%);
}
.cards {
  /*
  &--item{
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
  	width: 250px;
  	height: 250px;
  	aspect-ratio: 1;
  	flex: 0 0 250px;
  	padding: 20px;
  	border-radius: 50rem;
  	border: 4px solid $red;
  	@include fade(0, 200px, true, 1);
  	h3{
  		@include fontsizes(h1);
  		color: $red;
  		text-align: center;
  		position: relative;
  		&::before{
  			content: "+";
  		}
  	}
  }*/
}

.timeline {
  position: relative;
  overflow: hidden;
}
.timeline .deco {
  display: none !important;
  top: 20%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.timeline .container {
  position: relative;
  z-index: 2;
  text-align: left;
}
@media only screen and (min-width: 900px) {
  .timeline .container {
    text-align: center;
  }
}
.timeline__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.2s;
          transition-delay: 0.2s;
  color: #0B1B48;
}
.timeline__subtitle {
  max-width: 900px;
  margin: 30px auto 0 auto;
  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;
}
.timeline .tree {
  position: relative;
  margin-top: 40px;
  padding: 64px 0;
  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.2s;
          transition-delay: 0.2s;
}
@media only screen and (min-width: 1050px) {
  .timeline .tree {
    gap: 0px;
    padding: 80px 0;
  }
}
.timeline .tree::before {
  position: absolute;
  left: 30px;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50rem;
  background: #4175DF;
  content: "";
}
@media only screen and (min-width: 900px) {
  .timeline .tree::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.timeline .tree::after {
  position: absolute;
  left: 30px;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-radius: 50rem;
  background: #4175DF;
  content: "";
}
@media only screen and (min-width: 900px) {
  .timeline .tree::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.timeline .tree .line {
  position: absolute;
  left: 55px;
  top: 0px;
  width: 1px;
  height: 100%;
  background: #4175DF;
  z-index: 0;
}
@media only screen and (min-width: 900px) {
  .timeline .tree .line {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.timeline .tree--item {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.timeline .tree--item:nth-child(1) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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;
}
.timeline .tree--item:nth-child(2) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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;
}
.timeline .tree--item:nth-child(3) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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;
}
.timeline .tree--item:nth-child(4) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 1.2s;
          transition-delay: 1.2s;
}
.timeline .tree--item:nth-child(5) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 1.4s;
          transition-delay: 1.4s;
}
.timeline .tree--item:nth-child(6) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 1.6s;
          transition-delay: 1.6s;
}
.timeline .tree--item:nth-child(7) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 1.8s;
          transition-delay: 1.8s;
}
.timeline .tree--item:nth-child(8) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 2s;
          transition-delay: 2s;
}
.timeline .tree--item:nth-child(9) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 2.2s;
          transition-delay: 2.2s;
}
.timeline .tree--item:nth-child(10) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 2.4s;
          transition-delay: 2.4s;
}
.timeline .tree--item:nth-child(11) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 2.6s;
          transition-delay: 2.6s;
}
.timeline .tree--item:nth-child(12) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 2.8s;
          transition-delay: 2.8s;
}
.timeline .tree--item:nth-child(13) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 3s;
          transition-delay: 3s;
}
.timeline .tree--item:nth-child(14) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 3.2s;
          transition-delay: 3.2s;
}
.timeline .tree--item:nth-child(15) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 3.4s;
          transition-delay: 3.4s;
}
.timeline .tree--item:nth-child(16) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 3.6s;
          transition-delay: 3.6s;
}
.timeline .tree--item:nth-child(17) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 3.8s;
          transition-delay: 3.8s;
}
.timeline .tree--item:nth-child(18) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 4s;
          transition-delay: 4s;
}
.timeline .tree--item:nth-child(19) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 4.2s;
          transition-delay: 4.2s;
}
.timeline .tree--item:nth-child(20) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0px));
          transform: var(--fade-transform, translateX(-100px) 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: 4.4s;
          transition-delay: 4.4s;
}
@media only screen and (min-width: 900px) {
  .timeline .tree--item {
    max-width: 50%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .timeline .tree--item:nth-child(2n+1) {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(1) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(2) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(3) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(4) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 1.2s;
            transition-delay: 1.2s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(5) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 1.4s;
            transition-delay: 1.4s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(6) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 1.6s;
            transition-delay: 1.6s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(7) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 1.8s;
            transition-delay: 1.8s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(8) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 2s;
            transition-delay: 2s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(9) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 2.2s;
            transition-delay: 2.2s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(10) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 2.4s;
            transition-delay: 2.4s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(11) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 2.6s;
            transition-delay: 2.6s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(12) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 2.8s;
            transition-delay: 2.8s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(13) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 3s;
            transition-delay: 3s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(14) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 3.2s;
            transition-delay: 3.2s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(15) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 3.4s;
            transition-delay: 3.4s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(16) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 3.6s;
            transition-delay: 3.6s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(17) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 3.8s;
            transition-delay: 3.8s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(18) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 4s;
            transition-delay: 4s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(19) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 4.2s;
            transition-delay: 4.2s;
  }
  .timeline .tree--item:nth-child(2n+1):nth-child(20) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(100px) translateY(0px));
            transform: var(--fade-transform, translateX(100px) 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: 4.4s;
            transition-delay: 4.4s;
  }
  .timeline .tree--item:nth-child(2n+1) .tree--item--cont::after {
    right: auto;
    left: 0px;
  }
}
.timeline .tree--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: 15px;
  border-radius: 15px;
  color: white;
  background: #006CFF;
  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;
  z-index: 1;
}
@media only screen and (min-width: 900px) {
  .timeline .tree--item--cont {
    max-width: 480px;
  }
}
@media only screen and (min-width: 900px) {
  .timeline .tree--item--cont::after {
    position: absolute;
    width: 100%;
    height: 1px;
    right: 0px;
    top: 50%;
    background: inherit;
    content: "";
  }
}
.timeline .tree--item:nth-child(3n+1) .tree--item--cont {
  background: #0B1B48;
}
.timeline .tree--item:nth-child(3n+0) .tree--item--cont {
  background: #4175DF;
}
.timeline .text {
  font-family: "Inter", sans-serif;
}
.timeline .text h1,
.timeline .text h2,
.timeline .text h3,
.timeline .text h4,
.timeline .text h5,
.timeline .text h6 {
  position: relative;
  color: #0B1B48;
}
.timeline .text h1, .timeline .text .h1 {
  font-size: clamp(48px, 36.6px + 0.019 * 100vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.timeline .text h2 {
  font-size: clamp(34px, 23.8px + 0.017 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.timeline .text h3 {
  font-size: clamp(24px, 18px + 0.01 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.timeline .text h4 {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  font-weight: 400;
}
.timeline .text h5 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}
.timeline .text h6 {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
}
.timeline .text p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1em;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.timeline .text p:last-child {
  margin-bottom: 0;
}
.timeline .text p strong, .timeline .text p b {
  font-weight: 800;
}
.timeline .text 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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.timeline .text p a:hover {
  background-position: 100% 100%;
}
.timeline .text p a {
  text-decoration: none;
}
.timeline .text ul,
.timeline .text ol {
  padding-left: 20px;
  margin-bottom: 28px;
  line-height: 1.6;
  letter-spacing: 0.48px;
}
.timeline .text ul li {
  list-style: disc;
  margin-bottom: 5px;
}
.timeline .text ul li:last-child {
  margin-bottom: 0;
}
.timeline .text a:not(.link):not(.btn) {
  color: #0B1B48;
  -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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.timeline .text a:not(.link):not(.btn):hover {
  background-position: 100% 100%;
}
.timeline .text a:not(.link):not(.btn) {
  text-decoration: none;
  padding-bottom: 4px;
  font-weight: 500;
}
.timeline .text a:not(.link):not(.btn):hover {
  text-decoration: none;
}
.timeline .text iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.timeline .text blockquote {
  position: relative;
}
.timeline .text blockquote p {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  font-weight: 400;
}
.timeline .text img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 0 28px 0;
}
.timeline .text .alignleft {
  float: left;
  max-width: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 750px) {
  .timeline .text .alignleft {
    max-width: 100%;
  }
}
.timeline .text .aligncenter {
  margin: 30px auto;
  display: block;
}
.timeline .text .alignright {
  float: right;
  max-width: 50%;
  margin-left: 30px;
}
@media only screen and (max-width: 750px) {
  .timeline .text .alignright {
    max-width: 100%;
  }
}
.timeline .text del {
  text-decoration: line-through;
}
.timeline .text {
  text-align: center;
  max-width: 965px;
  margin: 40px auto 0;
  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;
}
.timeline .text ul, .timeline .text ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin: 0px auto;
}
.timeline .text ul li, .timeline .text ol li {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.timeline .text.lista-bullets {
  position: relative;
  text-align: left;
}
.timeline .text.lista-bullets ul {
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
}
.timeline .text.lista-bullets ul li {
  width: 100%;
  list-style: none;
  position: relative;
  text-align: left;
  font-size: 18px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.timeline .text.lista-bullets ul li::before {
  width: 20px;
  height: 20px;
  margin: 5px 10px 0 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: url(../images/icons/bullet.svg) center center no-repeat;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  content: "";
}
.timeline .link_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  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 {
  position: relative;
  overflow: hidden;
}
.members .deco {
  display: none !important;
  top: 200px;
}
.members .container {
  z-index: 2;
  text-align: left;
}
@media only screen and (min-width: 900px) {
  .members .container {
    text-align: center;
  }
}
.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.2s;
          transition-delay: 0.2s;
  color: #0B1B48;
}
.members__subtitle {
  max-width: 900px;
  margin: 30px auto 0 auto;
  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 .posts-grid__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)[1];
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 600px) {
  .members .posts-grid__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 750px) {
  .members .posts-grid__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 900px) {
  .members .posts-grid__grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 1440px) {
  .members .posts-grid__grid {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
.members .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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  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 .posts-grid__item:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.members .posts-grid__item:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.members .posts-grid__item:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.members .posts-grid__item:nth-child(4) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.members .posts-grid__item:nth-child(5) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.members .posts-grid__item:nth-child(6) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.members .posts-grid__item:nth-child(7) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.members .posts-grid__item:nth-child(8) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.members .posts-grid__item:nth-child(9) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.members .posts-grid__item:nth-child(10) {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.members .posts-grid__item:nth-child(11) {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
.members .posts-grid__item:nth-child(12) {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
.members .posts-grid__item:nth-child(13) {
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}
.members .posts-grid__item:nth-child(14) {
  -webkit-transition-delay: 2.8s;
          transition-delay: 2.8s;
}
.members .posts-grid__item:nth-child(15) {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}
.members .posts-grid__item:nth-child(16) {
  -webkit-transition-delay: 3.2s;
          transition-delay: 3.2s;
}
.members .posts-grid__item:nth-child(17) {
  -webkit-transition-delay: 3.4s;
          transition-delay: 3.4s;
}
.members .posts-grid__item:nth-child(18) {
  -webkit-transition-delay: 3.6s;
          transition-delay: 3.6s;
}
.members .posts-grid__item:nth-child(19) {
  -webkit-transition-delay: 3.8s;
          transition-delay: 3.8s;
}
.members .posts-grid__item:nth-child(20) {
  -webkit-transition-delay: 4s;
          transition-delay: 4s;
}
.members .posts-grid__item__image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 50rem;
  cursor: pointer;
  max-width: 220px;
}
.members .posts-grid__item__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.members .posts-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%;
}
.members .posts-grid__item__data .member--name {
  font-size: clamp(18px, 16.8px + 0.002 * 100vw, 20px);
  color: #212529;
}
.members .posts-grid__item__data .member--position {
  font-size: clamp(18px, 16.8px + 0.002 * 100vw, 20px);
  color: #212529;
  margin-bottom: 0;
}

.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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow: scroll;
  -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;
}
@media only screen and (max-width: 900px) {
  .modal {
    padding-top: 40px;
    overflow: scroll;
  }
}
.modal.js-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal .deco {
  display: none !important;
}
.modal .deco svg {
  opacity: 1;
}
.modal-close {
  position: absolute;
  right: 50px;
  top: 50px;
  z-index: 5;
}
@media only screen and (max-width: 900px) {
  .modal-close {
    top: 5px;
    right: 5px;
    position: fixed;
  }
}
.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);
}
@media only screen and (max-width: 600px) {
  .member-modal__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.member-modal__heading img {
  width: 100%;
  height: auto;
  max-width: 290px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50rem;
}
@media only screen and (max-width: 600px) {
  .member-modal__heading img {
    max-width: 240px;
  }
}
.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: #006CFF;
}

.contacto {
  position: relative;
  overflow: hidden;
  background: #0B1B48;
  color: white;
  text-align: center;
}
.contacto__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.contacto__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.contacto__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #0B1B48;
  mix-blend-mode: multiply;
  opacity: 0.15;
}
.contacto .container {
  position: relative;
  z-index: 1;
}
.contacto__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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
@media only screen and (min-width: 900px) {
  .contacto__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: 80px;
  }
}
.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 h2 {
  position: relative;
  display: 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);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.contacto h5 {
  position: relative;
  display: block;
  font-size: clamp(16px, 14.8px + 0.002 * 100vw, 18px);
  font-weight: 400;
  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.8s;
          transition-delay: 0.8s;
  margin-top: 20px;
}
.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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 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;
}
.contacto .wpcf7 {
  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.8s;
          transition-delay: 0.8s;
}
.contacto .wpcf7 label {
  display: none;
}
.contacto .wpcf7 .form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  color: black;
  border-radius: 10px;
  padding: 8px;
  min-height: 40px;
  font-size: 16px;
  margin-top: 20px;
  font-family: "Inter", sans-serif;
}
.contacto .wpcf7 .form-control:focus, .contacto .wpcf7 .form-control:focus-visible {
  outline: 1px solid #0B1B48;
  background: rgb(255, 255, 255);
}
.contacto .wpcf7 .form-control:focus::-webkit-input-placeholder, .contacto .wpcf7 .form-control:focus-visible::-webkit-input-placeholder {
  color: black;
  opacity: 1;
}
.contacto .wpcf7 .form-control:focus::-moz-placeholder, .contacto .wpcf7 .form-control:focus-visible::-moz-placeholder {
  color: black;
  opacity: 1;
}
.contacto .wpcf7 .form-control:focus:-ms-input-placeholder, .contacto .wpcf7 .form-control:focus-visible:-ms-input-placeholder {
  color: black;
  opacity: 1;
}
.contacto .wpcf7 .form-control:focus::-ms-input-placeholder, .contacto .wpcf7 .form-control:focus-visible::-ms-input-placeholder {
  color: black;
  opacity: 1;
}
.contacto .wpcf7 .form-control:focus::placeholder, .contacto .wpcf7 .form-control:focus-visible::placeholder {
  color: black;
  opacity: 1;
}
.contacto .wpcf7 textarea {
  height: 180px;
}
.contacto .wpcf7 .btn {
  margin-top: 20px;
}
.contacto .wpcf7 .btn:hover {
  background-color: white;
}

.twocolumns {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  color: #0B1B48;
}
.twocolumns .container {
  position: relative;
  z-index: 2;
}
.twocolumns .subtitle {
  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;
}
.twocolumns__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;
  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.2s;
          transition-delay: 0.2s;
  color: #0B1B48;
  text-align: center;
}
.twocolumns__subtitle {
  text-align: center;
  margin-top: 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;
}
.twocolumns .row {
  margin-top: 40px;
  gap: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 900px) {
  .twocolumns .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.twocolumns .row .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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;
}
@media only screen and (min-width: 900px) {
  .twocolumns .row .column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
.twocolumns .row .column {
  font-family: "Inter", sans-serif;
}
.twocolumns .row .column h1,
.twocolumns .row .column h2,
.twocolumns .row .column h3,
.twocolumns .row .column h4,
.twocolumns .row .column h5,
.twocolumns .row .column h6 {
  position: relative;
  color: #0B1B48;
}
.twocolumns .row .column h1, .twocolumns .row .column .h1 {
  font-size: clamp(48px, 36.6px + 0.019 * 100vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.twocolumns .row .column h2 {
  font-size: clamp(34px, 23.8px + 0.017 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.twocolumns .row .column h3 {
  font-size: clamp(24px, 18px + 0.01 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.twocolumns .row .column h4 {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  font-weight: 400;
}
.twocolumns .row .column h5 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}
.twocolumns .row .column h6 {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
}
.twocolumns .row .column p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1em;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.twocolumns .row .column p:last-child {
  margin-bottom: 0;
}
.twocolumns .row .column p strong, .twocolumns .row .column p b {
  font-weight: 800;
}
.twocolumns .row .column 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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.twocolumns .row .column p a:hover {
  background-position: 100% 100%;
}
.twocolumns .row .column p a {
  text-decoration: none;
}
.twocolumns .row .column ul,
.twocolumns .row .column ol {
  padding-left: 20px;
  margin-bottom: 28px;
  line-height: 1.6;
  letter-spacing: 0.48px;
}
.twocolumns .row .column ul li {
  list-style: disc;
  margin-bottom: 5px;
}
.twocolumns .row .column ul li:last-child {
  margin-bottom: 0;
}
.twocolumns .row .column a:not(.link):not(.btn) {
  color: #0B1B48;
  -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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.twocolumns .row .column a:not(.link):not(.btn):hover {
  background-position: 100% 100%;
}
.twocolumns .row .column a:not(.link):not(.btn) {
  text-decoration: none;
  padding-bottom: 4px;
  font-weight: 500;
}
.twocolumns .row .column a:not(.link):not(.btn):hover {
  text-decoration: none;
}
.twocolumns .row .column iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.twocolumns .row .column blockquote {
  position: relative;
}
.twocolumns .row .column blockquote p {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  font-weight: 400;
}
.twocolumns .row .column img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 0 28px 0;
}
.twocolumns .row .column .alignleft {
  float: left;
  max-width: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 750px) {
  .twocolumns .row .column .alignleft {
    max-width: 100%;
  }
}
.twocolumns .row .column .aligncenter {
  margin: 30px auto;
  display: block;
}
.twocolumns .row .column .alignright {
  float: right;
  max-width: 50%;
  margin-left: 30px;
}
@media only screen and (max-width: 750px) {
  .twocolumns .row .column .alignright {
    max-width: 100%;
  }
}
.twocolumns .row .column del {
  text-decoration: line-through;
}
.is-style-celeste .twocolumns .row .column {
  color: white;
}
.twocolumns .row .column ul {
  margin-top: 20px;
}
.twocolumns .row .column p {
  font-family: "Inter", sans-serif;
}
.twocolumns .row .column p img {
  width: 100%;
}
.twocolumns .row .column p + h3 {
  margin-top: clamp(24px, 12.6px + 0.019 * 100vw, 40px);
}
.twocolumns .row .column p a:not(.link):not(.btn) {
  text-decoration: none;
  --lineColor: #0B1B48;
  letter-spacing: 0.035em;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.twocolumns .row .column p a:not(.link):not(.btn):hover {
  background-position: 100% 100%;
}
.twocolumns .row .column p a:not(.link):not(.btn):hover {
  text-decoration: none;
}
.twocolumns .row .column__text:first-child {
  margin-bottom: 40px;
}
.twocolumns .posts-columns {
  width: 100%;
  margin-top: 30px;
  display: 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);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media only screen and (min-width: 900px) {
  .twocolumns .posts-columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
.twocolumns .posts-columns li {
  margin-bottom: 10px;
}
.twocolumns .posts-columns a {
  text-decoration: none;
  letter-spacing: 0.03em;
  color: #000000;
  opacity: 0.4;
  line-height: 1.75;
  font-weight: 400;
  text-transform: none;
  position: relative;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(49.9%, transparent), color-stop(50%, var(--lineColor, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.twocolumns .posts-columns a:hover {
  background-position: 100% 100%;
}
.twocolumns .posts-columns a.active, .twocolumns .posts-columns a:hover {
  opacity: 1;
  color: #212529;
}
.twocolumns.maps .row .column p {
  font-size: 16px;
}
.twocolumns.is-style-celeste {
  color: #0B1B48;
}
.twocolumns.is-style-gris {
  color: #212529;
}

.slider-block .swiper {
  position: relative;
  margin: 0 0px;
  padding-bottom: 30px;
  overflow: hidden;
}
.slider-block .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 900px) {
  .slider-block .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.slider-block .swiper-slide img,
.slider-block .swiper-slide video {
  aspect-ratio: 16/9;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 20px;
}
.slider-block .swiper .video {
  position: relative;
}
.slider-block .swiper .video button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 37, 41, 0) url(../images/videoplay.png) no-repeat center center;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slider-block .swiper .video button:hover {
  background: rgba(33, 37, 41, 0.2) url(../images/videoplay.png) no-repeat center center;
}
.slider-block .swiper .video.playing button {
  opacity: 0;
  visibility: hidden;
}
.slider-block .swiper-pagination {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3px;
  overflow: hidden;
}
.slider-block .swiper-pagination-bullet {
  width: 60px;
  height: 1px;
  opacity: 0.5;
  margin: 0;
  padding: 0;
  border-radius: 0;
  margin: 0 0 !important;
}
.slider-block .swiper-pagination-bullet-active {
  opacity: 1;
  height: 3px;
  margin-top: -1px;
}
.slider-block .swiper .slider-button-prev,
.slider-block .swiper .slider-button-next {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  width: 32px;
  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;
}
.slider-block .swiper .slider-button-prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  right: auto;
  left: 0;
}
.slider-block .slider__text {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  right: 0;
  padding: 30px;
  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;
  width: 100%;
  border-radius: 20px 0 20px 0;
  max-width: 480px;
  background: white;
  text-align: left;
}
@media only screen and (max-width: 900px) {
  .slider-block .slider__text {
    position: relative;
    bottom: auto;
    right: auto;
    margin: -30px auto 10px auto;
    max-width: 90%;
    border-radius: 20px 20px;
    -webkit-box-shadow: 0 0 10px 0 rgba(33, 37, 41, 0.2);
            box-shadow: 0 0 10px 0 rgba(33, 37, 41, 0.2);
  }
}
.slider-block.is-style-celeste .slider__text {
  background-color: #F5FAFF;
}
.slider-block.is-style-gris .slider_text {
  background-color: #f9f9f9;
}
.slider-block.is-style-degrade .slider__text {
  background-color: white;
}

.faqs {
  position: relative;
  overflow: hidden;
}
.faqs .container {
  position: relative;
  z-index: 2;
}
.faqs__title {
  position: relative;
  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-weight: 700;
  color: #0B1B48;
  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;
}
.faqs__text {
  font-family: "Inter", sans-serif;
}
.faqs__text h1,
.faqs__text h2,
.faqs__text h3,
.faqs__text h4,
.faqs__text h5,
.faqs__text h6 {
  position: relative;
  color: #0B1B48;
}
.faqs__text h1, .faqs__text .h1 {
  font-size: clamp(48px, 36.6px + 0.019 * 100vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.faqs__text h2 {
  font-size: clamp(34px, 23.8px + 0.017 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.faqs__text h3 {
  font-size: clamp(24px, 18px + 0.01 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.faqs__text h4 {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  font-weight: 400;
}
.faqs__text h5 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}
.faqs__text h6 {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
}
.faqs__text p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1em;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.faqs__text p:last-child {
  margin-bottom: 0;
}
.faqs__text p strong, .faqs__text p b {
  font-weight: 800;
}
.faqs__text 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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.faqs__text p a:hover {
  background-position: 100% 100%;
}
.faqs__text p a {
  text-decoration: none;
}
.faqs__text ul,
.faqs__text ol {
  padding-left: 20px;
  margin-bottom: 28px;
  line-height: 1.6;
  letter-spacing: 0.48px;
}
.faqs__text ul li {
  list-style: disc;
  margin-bottom: 5px;
}
.faqs__text ul li:last-child {
  margin-bottom: 0;
}
.faqs__text a:not(.link):not(.btn) {
  color: #0B1B48;
  -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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.faqs__text a:not(.link):not(.btn):hover {
  background-position: 100% 100%;
}
.faqs__text a:not(.link):not(.btn) {
  text-decoration: none;
  padding-bottom: 4px;
  font-weight: 500;
}
.faqs__text a:not(.link):not(.btn):hover {
  text-decoration: none;
}
.faqs__text iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.faqs__text blockquote {
  position: relative;
}
.faqs__text blockquote p {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  font-weight: 400;
}
.faqs__text img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 0 28px 0;
}
.faqs__text .alignleft {
  float: left;
  max-width: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 750px) {
  .faqs__text .alignleft {
    max-width: 100%;
  }
}
.faqs__text .aligncenter {
  margin: 30px auto;
  display: block;
}
.faqs__text .alignright {
  float: right;
  max-width: 50%;
  margin-left: 30px;
}
@media only screen and (max-width: 750px) {
  .faqs__text .alignright {
    max-width: 100%;
  }
}
.faqs__text del {
  text-decoration: line-through;
}
.faqs__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;
}
.faqs__text h4 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}
.faqs__accordion {
  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.6s;
          transition-delay: 0.6s;
}
.faqs__accordion__item {
  position: relative;
}
.faqs__accordion__item--heading {
  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;
  color: #0B1B48;
  padding: 15px;
  border: 1px solid #006CFF;
  position: relative;
  width: 100%;
  border-radius: 10px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  background-color: white;
  -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;
}
.js-open .faqs__accordion__item--heading {
  background-color: #006CFF;
  color: white;
}
.js-open .faqs__accordion__item--heading svg {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.js-open .faqs__accordion__item--heading svg path {
  fill: white;
}
.faqs__accordion__item--heading svg {
  -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;
}
.faqs__accordion__item--heading svg path {
  fill: #0B1B48;
}
.faqs__accordion__item:hover {
  border-color: #0B1B48;
}
.faqs__accordion__item--body {
  display: none;
  padding: 20px;
  margin-top: 0px;
  background: white;
  border: 1px solid #8fbaff;
  width: calc(100% - 40px);
  margin-left: 20px;
  border-radius: 0 0 20px 20px;
  border-top: none;
}

.steps {
  position: relative;
  overflow: hidden;
}
.steps .container {
  position: relative;
  z-index: 2;
}
.steps .row {
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (min-width: 900px) {
  .steps .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
.steps .row .column {
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (min-width: 900px) {
  .steps .row .column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
.steps__title {
  position: relative;
  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-weight: 700;
  color: #0B1B48;
  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;
}
.steps__text {
  font-family: "Inter", sans-serif;
}
.steps__text h1,
.steps__text h2,
.steps__text h3,
.steps__text h4,
.steps__text h5,
.steps__text h6 {
  position: relative;
  color: #0B1B48;
}
.steps__text h1, .steps__text .h1 {
  font-size: clamp(48px, 36.6px + 0.019 * 100vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.steps__text h2 {
  font-size: clamp(34px, 23.8px + 0.017 * 100vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.steps__text h3 {
  font-size: clamp(24px, 18px + 0.01 * 100vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 700;
}
.steps__text h4 {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  font-weight: 400;
}
.steps__text h5 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}
.steps__text h6 {
  font-size: clamp(19px, 16px + 0.005 * 100vw, 23px);
}
.steps__text p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1em;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.steps__text p:last-child {
  margin-bottom: 0;
}
.steps__text p strong, .steps__text p b {
  font-weight: 800;
}
.steps__text 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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.steps__text p a:hover {
  background-position: 100% 100%;
}
.steps__text p a {
  text-decoration: none;
}
.steps__text ul,
.steps__text ol {
  padding-left: 20px;
  margin-bottom: 28px;
  line-height: 1.6;
  letter-spacing: 0.48px;
}
.steps__text ul li {
  list-style: disc;
  margin-bottom: 5px;
}
.steps__text ul li:last-child {
  margin-bottom: 0;
}
.steps__text a:not(.link):not(.btn) {
  color: #0B1B48;
  -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, #006CFF)), to(var(--lineColor, #006CFF)));
  background: linear-gradient(to right, transparent 0%, transparent 49.9%, var(--lineColor, #006CFF) 50%, var(--lineColor, #006CFF) 100%);
  background-size: 200% 2px;
  background-position: 200% 100%;
  background-repeat: no-repeat;
}
.steps__text a:not(.link):not(.btn):hover {
  background-position: 100% 100%;
}
.steps__text a:not(.link):not(.btn) {
  text-decoration: none;
  padding-bottom: 4px;
  font-weight: 500;
}
.steps__text a:not(.link):not(.btn):hover {
  text-decoration: none;
}
.steps__text iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.steps__text blockquote {
  position: relative;
}
.steps__text blockquote p {
  font-size: clamp(22px, 16px + 0.01 * 100vw, 30px);
  letter-spacing: 0.03em;
  line-height: 1.375;
  font-weight: 400;
}
.steps__text img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 0 28px 0;
}
.steps__text .alignleft {
  float: left;
  max-width: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 750px) {
  .steps__text .alignleft {
    max-width: 100%;
  }
}
.steps__text .aligncenter {
  margin: 30px auto;
  display: block;
}
.steps__text .alignright {
  float: right;
  max-width: 50%;
  margin-left: 30px;
}
@media only screen and (max-width: 750px) {
  .steps__text .alignright {
    max-width: 100%;
  }
}
.steps__text del {
  text-decoration: line-through;
}
.steps__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;
}
.steps__text h4 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
}
.steps .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  background-color: white;
  border: 1px solid #006CFF;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
}
@media only screen and (max-width: 450px) {
  .steps .step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.steps .step--image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(60% - 20px);
          flex: 0 0 calc(60% - 20px);
}
.steps .step--image img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.steps .step--data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 40%;
          flex: 1 0 40%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.steps .step--data h4 {
  font-size: clamp(20px, 17px + 0.005 * 100vw, 24px);
  font-weight: 700;
  color: #0B1B48;
}
.steps .step--data .btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.steps {
  /*
  &.is-style-degrade-celeste{
  	background: linear-gradient(to left,  rgba(0, 108, 255,.15) 0%,#ffffff 49%,#ffffff 100%);
  }
  */
}
/*# sourceMappingURL=main.css.map */