/* Main Stylesheet */
:root {
  --horizontal-spacing: 24px;
  --vertical-spacing: 80px;
  --vertical-spacing-less: 48px;
  --h1-font-size: 36px;
  --h1-line-height: 48px;
  --h2-font-size: 32px;
  --h2-line-height: 44px;
  --h3-font-size: 28px;
  --h3-line-height: 40px;
  --h4-font-size: 24px;
  --h4-line-height: 36px;
  --h5-font-size: 20px;
  --h5-line-height: 28px;
  --p1-font-size: 20px;
  --p1-line-height: 28px;
  --p2-font-size: 16px;
  --p2-line-height: 24px;
  --p3-font-size: 14px;
  --p3-line-height: 24px;
  --p4-font-size: 12px;
  --p4-line-height: 14.52px;
}
@media screen and (min-width: 992px) {
  :root {
    --h1-font-size: 56px;
    --h1-line-height: 68px;
    --h2-font-size: 48px;
    --h2-line-height: 68px;
    --h3-font-size: 32px;
    --h3-line-height: 44px;
    --h4-font-size: 28px;
    --h4-line-height: 40px;
    --h5-font-size: 20px;
    --h5-line-height: 24.2px;
    --p1-font-size: 24px;
    --p1-line-height: 36px;
    --p2-font-size: 18px;
    --p2-line-height: 21.78px;
    --p3-font-size: 16px;
    --p3-line-height: 24px;
    --p4-font-size: 12px;
    --p4-line-height: 14.52px;
  }
}

.has-blue-light-color {
  color: #E3F2FD !important;
}

.has-blue-light-background {
  background-color: #E3F2FD;
}

.has-blue-color {
  color: #204168 !important;
}

.has-blue-background {
  background-color: #204168;
}

.has-grey-color {
  color: #F6F6F6 !important;
}

.has-grey-background {
  background-color: #F6F6F6;
}

.has-green-color {
  color: #028844 !important;
}

.has-green-background {
  background-color: #028844;
}

.has-red-color {
  color: #ee2222 !important;
}

.has-red-background {
  background-color: #ee2222;
}

.has-lightest-color {
  color: #fff !important;
}

.has-lightest-background {
  background-color: #fff;
}

.has-darkest-color {
  color: #000 !important;
}

.has-darkest-background {
  background-color: #000;
}

.entry-content h2.block-heading {
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -4%;
  color: #204168;
}

.block-stats {
  margin-bottom: 120px;
}
.block-stats__wrapper {
  width: calc(100% - var(--horizontal-spacing) * 2);
  max-width: 1260px;
  margin: 0 auto;
}
.block-stats__grid {
  width: 100%;
  max-width: 728px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 568px) {
  .block-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.block-stat {
  background: #f7f7f7;
  padding: 24px;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 5px;
  gap: 10px;
}
.block-stat__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.block-stat__value {
  font-weight: 600;
  color: #204168;
  font-size: 74px;
  line-height: 0.9;
  text-transform: uppercase;
  text-align: right;
  word-break: break-word;
}
@media (min-width: 568px) {
  .block-stat {
    min-height: 154px;
    padding: 20px 30px;
  }
}
@media (min-width: 768px) {
  .block-stat__value {
    font-size: 74px;
  }
}

.block-bottom-banner {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  isolation: isolate;
}
.block-bottom-banner__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.block-bottom-banner__background-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-bottom-banner__overlay {
  position: absolute;
  inset: 0;
  background: #204168;
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}
.block-bottom-banner__inner {
  position: relative;
  z-index: 2;
  width: calc(100% - var(--horizontal-spacing) * 2);
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.block-bottom-banner__title {
  font-weight: 600;
  color: #FFD500;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -4%;
  max-width: 440px;
}
.block-bottom-banner__content {
  color: #fff;
}
.block-bottom-banner__content > p {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  line-height: 29px;
}
.block-bottom-banner .block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 22.5px;
  align-items: center;
}
@media (min-width: 768px) {
  .block-bottom-banner .block-buttons {
    flex-wrap: nowrap;
  }
}
.block-bottom-banner .block-button {
  width: auto;
  min-width: 220px;
}
@media (min-width: 992px) {
  .block-bottom-banner {
    padding: 80px 0;
  }
  .block-bottom-banner__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 5px;
  }
  .block-bottom-banner__content > p {
    margin-bottom: 48px;
  }
}

.block-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 18px 14px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  background-color: transparent;
  border-color: #2f4a6d;
  min-width: 267px;
}
.block-button__text {
  color: #204168;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}
.block-button:hover {
  background-color: #e0b72f;
  border-color: #e0b72f;
}
.block-button:hover .block-button__text {
  color: #2f4a6d;
}
.block-button.secondary {
  background-color: #ffffff;
  border-color: transparent;
}
.block-button.secondary .block-button__text {
  color: #2f4a6d;
}
.block-button.secondary:hover {
  background-color: #e0b72f;
  border-color: #e0b72f;
}
.block-button.secondary:hover .block-button__text {
  color: #2f4a6d;
}

.block-text-content {
  margin-bottom: 120px;
}
.block-text-content__inner {
  width: calc(100% - var(--horizontal-spacing) * 2);
  max-width: 1260px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
}
.block-text-content__body {
  width: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.block-text-content__title {
  margin: 0;
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.04em;
  color: #204168;
}
.block-text-content__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}
.block-text-content__text {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0;
  max-width: 700px;
}
.block-text-content__text a {
  color: #204168;
  text-decoration: underline;
}
.block-text-content__text p {
  margin: 0 0 16px;
}
.block-text-content__text p:last-child {
  margin-bottom: 0;
}
.block-text-content__actions {
  display: flex;
  align-items: flex-start;
}
.block-text-content--variant2 .block-text-content__row {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
}
.block-text-content--variant2 .block-text-content__text {
  flex: 1 1 auto;
  max-width: 700px;
}
.block-text-content--variant2 .block-text-content__actions {
  flex: 0 0 auto;
}
.block-text-content--narrow .block-text-content__body {
  max-width: 728px;
}
@breakpoint (lg) {
  .block-text-content__title {
    font-size: 32px;
    line-height: 40px;
  }
  .block-text-content__text {
    font-size: 18px;
    line-height: 27px;
  }
  .block-text-content--variant2 .block-text-content__row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.block-grid-text-image {
  margin-bottom: 120px;
}
.block-grid-text-image__inner {
  width: calc(100% - var(--horizontal-spacing) * 2);
  max-width: 1440px;
  margin-inline: auto;
}
.block-grid-text-image__grid {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .block-grid-text-image__grid > .block-grid-text-image-item:nth-child(even) .block-grid-text-image-item__media {
    order: -1;
  }
}

.block-grid-text-image-item {
  display: grid;
  background: #f7f7f7;
}
.block-grid-text-image-item__content, .block-grid-text-image-item__media {
  box-sizing: border-box;
  min-width: 0;
}
.block-grid-text-image-item__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 28px;
  padding: 44px 24px 40px;
}
.block-grid-text-image-item__title {
  color: #204168;
  font-size: 25.22px;
  font-weight: 900;
  letter-spacing: -2%;
  line-height: 33.63px;
  margin: 0;
  padding-left: 22px;
  position: relative;
  text-transform: uppercase;
}
.block-grid-text-image-item__title::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFD500;
}
.block-grid-text-image-item__text {
  max-width: 460px;
  color: #000;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
.block-grid-text-image-item__text p {
  margin: 0 0 16px;
}
.block-grid-text-image-item__text p:last-child {
  margin-bottom: 0;
}
.block-grid-text-image-item__media {
  aspect-ratio: 716/571;
  overflow: hidden;
  background: #e7e7e7;
}
.block-grid-text-image-item__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .block-grid-text-image-item {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .block-grid-text-image-item__content {
    justify-content: space-between;
    gap: 64px;
    padding: 72px 80px 76px 100px;
  }
  .block-grid-text-image-item__title {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .block-grid-text-image-item__content {
    padding: 72px 100px 76px;
  }
}

.block-hero-v2 {
  display: block;
  margin-bottom: 70px;
  position: relative;
}
.admin-bar .block-hero-v2 {
  margin-top: 70px;
}
@media (min-width: 768px) {
  .admin-bar .block-hero-v2 {
    margin-top: 102px;
  }
}
.block-hero-v2__title {
  text-shadow: 0px 4px 17.5px rgba(0, 0, 0, 0.51);
  color: white;
  font-size: 35px;
  font-weight: 500;
  left: 50%;
  letter-spacing: -4%;
  line-height: 143.7px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .block-hero-v2__title {
    font-size: 60px;
    top: 60%;
  }
}
@media (min-width: 1200px) {
  .block-hero-v2__title {
    font-size: 85px;
  }
}
.block-hero-v2__image img {
  width: 100%;
  max-height: 365px;
  -o-object-fit: cover;
     object-fit: cover;
}

.block-image-compare {
  width: 100%;
  margin-bottom: 30px;
  display: block;
  position: relative;
}
.block-image-compare__wrapper {
  max-width: 1260px;
  width: calc(100% - var(--horizontal-spacing) * 2);
  margin-inline: auto;
  position: relative;
}
.block-image-compare__compare {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #f3f3f3;
}
.block-image-compare__base, .block-image-compare__overlay {
  position: relative;
  width: 100%;
}
.block-image-compare__base img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.block-image-compare__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--image-compare-position, 50%)) 0 0);
}
.block-image-compare__overlay img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.block-image-compare img {
  max-height: 730px;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-image-compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: ew-resize;
  z-index: 3;
}
.block-image-compare__handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.block-image-compare__handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.block-image-compare__arrow {
  position: absolute;
  top: 50%;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #204168;
  background-image: url("../../angular-assets/Existing/images/icons/icon-right-chevron-rounded.svg");
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-image-compare__arrow--left {
  right: 15px;
  transform: rotate(180deg);
}
.block-image-compare__arrow--right {
  left: 15px;
}
.block-image-compare__captions {
  bottom: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  left: 0px;
  padding-top: 16px;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.block-image-compare__caption {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  margin-left: 35px;
}
@media (max-width: 767px) {
  .block-image-compare__captions {
    grid-template-columns: 1fr;
  }
  .block-image-compare__handle-circle {
    width: 44px;
    height: 44px;
  }
}
.block-image-compare__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 24px;
}
.block-image-compare__caption--bottom {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #204168;
}

.block-image-slider {
  position: relative;
}
.block-image-slider__inner {
  width: calc(100% - var(--horizontal-spacing) * 2);
  max-width: 1260px;
  margin-inline: auto;
  position: relative;
}
.block-image-slider__track {
  width: 100%;
}
.block-image-slider .slick-list {
  overflow: hidden;
}
.block-image-slider .slick-track {
  display: flex;
}
.block-image-slider .slick-slide {
  height: auto;
}
.block-image-slider .slick-slide > div {
  height: 100%;
}
.block-image-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 68px;
  height: 68px;
  border: 0;
  padding: 0;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.block-image-slider .slick-prev {
  width: 55px;
  height: 55px;
  left: 24px;
  background-image: url("../../angular-assets/Existing/images/icons/icon-left-chevron-rounded.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17.5px;
  background-color: #204168;
  border-radius: 50%;
}
.block-image-slider .slick-next {
  width: 55px;
  height: 55px;
  right: 24px;
  background-image: url("../../angular-assets/Existing/images/icons/icon-right-chevron-rounded.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17.5px;
  background-color: #204168;
  border-radius: 50%;
}
.block-image-slider .slick-dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  list-style: none;
  bottom: 5px;
  margin: 0px;
}
@media (min-width: 576px) {
  .block-image-slider .slick-dots {
    bottom: 15px;
  }
}
.block-image-slider .slick-dots li {
  margin: 0;
  width: auto;
}
.block-image-slider .slick-dots button {
  display: block;
  width: 32px;
  height: 4px;
  padding: 0;
  border: 0;
  background: #fff;
  font-size: 0;
  cursor: pointer;
}
.block-image-slider .slick-dots .slick-active button {
  background: #FFD500;
}

.block-image-slider-item__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.block-image-slider-item__caption {
  margin: 0px;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #204168;
}
.block-image-slider-item__media {
  width: 100%;
  aspect-ratio: 900/526;
  overflow: hidden;
}
.block-image-slider-item__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.block-image {
  max-width: 1260px;
  width: calc(100% - var(--horizontal-spacing) * 2);
  margin-inline: auto;
}
.block-image.image--wide {
  max-width: 1440px;
  margin-inline: auto;
  width: 100%;
}
.block-image.image--wide img {
  width: 100%;
}
.block-image__caption {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  max-width: 1260px;
  width: calc(100% - var(--horizontal-spacing) * 2);
  margin-inline: auto;
  margin-top: 25px;
}
.block-image__source {
  margin-top: 12px;
  font-size: 16px;
}
.block-image__source span {
  margin-left: 4px;
}

.block-info-cards__wrapper {
  max-width: 1260px;
  width: calc(100% - var(--horizontal-spacing) * 2);
  margin-inline: auto;
}
.block-info-cards__intro {
  margin-bottom: 24px;
}
.block-info-cards__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.block-info-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 988px;
  margin-left: auto;
}
@media (min-width: 568px) {
  .block-info-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.block-info-card {
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 40px 25px;
}
.block-info-card__image-wrapper {
  justify-content: flex-end;
  display: flex;
  margin-bottom: 30px;
}
.block-info-card__image {
  height: auto;
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.block-info-card__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.block-info-card__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.1;
  color: #000;
}
.block-info-card__text {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  max-width: 450px;
}

.block-map {
  margin-bottom: 120px;
}
.block-map__wrapper {
  margin-inline: auto;
  max-width: 1260px;
  width: calc(100% - var(--horizontal-spacing) * 2);
}
.block-map__preview {
  width: 100%;
  height: 455px;
  background-color: #d0d0d0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  gap: 5px;
}

.block-marquee {
  overflow: hidden;
  margin-bottom: 85px;
}
.block-marquee__wrapper {
  display: grid;
  gap: 20px;
  align-items: center;
}
.block-marquee__content {
  max-width: 600px;
  margin-inline: auto;
}
.block-marquee__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgb(0, 0, 0) 3%, rgb(0, 0, 0) 97%, transparent 100%);
}
.block-marquee__list-wrap {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: 90s logo-slides infinite linear;
  will-change: transform;
}
.block-marquee__list {
  display: flex;
  align-items: center;
  gap: 45px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 0 0 auto;
  margin-right: 45px;
}
.block-marquee__list-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

@keyframes logo-slides {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.block-marquee-item {
  width: 232px;
  height: 151px;
  background-color: #F7F7F7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-marquee-item__image {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 45px;
}

.block-narrow-cards {
  margin-bottom: 270px;
}
.block-narrow-cards__wrapper {
  margin-inline: auto;
  max-width: 1260px;
  width: calc(100% - var(--horizontal-spacing) * 2);
}
.block-narrow-cards__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: stretch;
  width: 100%;
  overflow-x: auto;
}

.block-narrow-card {
  position: relative;
  flex: 0 0 160px;
  width: 160px;
  min-width: 160px;
  max-width: 160px;
  min-height: 554px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  background: #3a3a3a;
  transition: width 0.35s ease, min-width 0.35s ease, max-width 0.35s ease, flex-basis 0.35s ease;
}
.block-narrow-card__media, .block-narrow-card__image, .block-narrow-card__overlay {
  position: absolute;
  inset: 0;
}
.block-narrow-card__media {
  background: #3a3a3a;
}
.block-narrow-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-narrow-card__overlay {
  z-index: 1;
  background: #204168;
  opacity: 0.7;
  transition: opacity 0.35s ease, background 0.35s ease;
  mix-blend-mode: multiply;
}
.block-narrow-card__closed, .block-narrow-card__open, .block-narrow-card__icon {
  position: absolute;
  z-index: 2;
}
.block-narrow-card__closed {
  align-items: start;
  bottom: 72px;
  display: grid;
  justify-items: end;
  left: auto;
  right: 50%;
  top: 50px;
  transform: translateX(50%);
  width: auto;
}
.block-narrow-card__closed-title {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  text-align: right;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: block;
  height: 310px;
  max-height: 310px;
  white-space: normal;
}
.block-narrow-card__open {
  left: 32px;
  right: 32px;
  bottom: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}
.block-narrow-card__title {
  margin-bottom: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 22px;
  text-transform: uppercase;
  max-width: 260px;
}
.block-narrow-card__text {
  max-width: 280px;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}
.block-narrow-card__icon {
  left: 50%;
  bottom: 24px;
  width: 32px;
  height: 32px;
  transform: translateX(-50%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.block-narrow-card__icon-line {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.block-narrow-card__icon-line--horizontal {
  width: 32px;
  height: 3px;
}
.block-narrow-card__icon-line--vertical {
  width: 3px;
  height: 32px;
}
.block-narrow-card.is-active {
  flex: 0 0 360px;
  width: 360px;
  min-width: 360px;
  max-width: 360px;
}
.block-narrow-card.is-active .block-narrow-card__overlay {
  opacity: 1;
  background: linear-gradient(360deg, #204168 31.24%, rgba(32, 65, 104, 0.31) 51.55%);
  background-blend-mode: multiply;
}
.block-narrow-card.is-active .block-narrow-card__closed, .block-narrow-card.is-active .block-narrow-card__icon {
  opacity: 0;
  visibility: hidden;
}
.block-narrow-card.is-active .block-narrow-card__open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.block-reveal-cards {
  margin-bottom: 85px;
}
.block-reveal-cards__wrapper {
  max-width: 1260px;
  width: calc(100% - var(--horizontal-spacing) * 2);
  margin-inline: auto;
}
.block-reveal-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  max-width: 980px;
  margin-left: auto;
}
@media (min-width: 768px) {
  .block-reveal-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.block-reveal-card {
  position: relative;
  height: 431px;
  border-radius: 12px;
  overflow: hidden;
  background: #d9d9d9;
  transition: background 0.3s ease;
}
.block-reveal-card__media, .block-reveal-card__image, .block-reveal-card__overlay {
  position: absolute;
  inset: 0;
}
.block-reveal-card__media {
  background: #d9d9d9;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.block-reveal-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.block-reveal-card__overlay {
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.72) 100%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.block-reveal-card__content, .block-reveal-card__closed {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.block-reveal-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.block-reveal-card__content-inner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.block-reveal-card__content-inner {
  max-width: 520px;
}
.block-reveal-card__title {
  margin-bottom: 20px;
  color: #244a7c;
  font-size: 28px;
  line-height: 1.2;
}
.block-reveal-card__text {
  max-width: 520px;
  color: #111111;
  font-size: 18px;
  line-height: 1.35;
}
.block-reveal-card__closed {
  display: flex;
  align-items: flex-end;
  padding: 32px;
  z-index: 3;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.block-reveal-card__closed-title {
  max-width: 320px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
}
.block-reveal-card__icon {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 35px;
  height: 35px;
  z-index: 4;
}
.block-reveal-card__icon-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 5px;
  border-radius: 0px;
  background: #ffffff;
  transform-origin: center;
  transition: transform 0.3s ease;
}
.block-reveal-card__icon-line--horizontal {
  transform: translate(-50%, -50%) rotate(0deg);
}
.block-reveal-card__icon-line--vertical {
  transform: translate(-50%, -50%) rotate(90deg);
}
.block-reveal-card:hover {
  background: #f7f7f7;
}
.block-reveal-card:hover .block-reveal-card__media,
.block-reveal-card:hover .block-reveal-card__overlay,
.block-reveal-card:hover .block-reveal-card__closed {
  opacity: 0;
  visibility: hidden;
}
.block-reveal-card:hover .block-reveal-card__content-inner {
  opacity: 1;
  visibility: visible;
}
.block-reveal-card:hover .block-reveal-card__icon-line {
  background: #e3c12f;
}
.block-reveal-card:hover .block-reveal-card__icon-line--horizontal {
  transform: translate(-50%, -50%) rotate(45deg);
}
.block-reveal-card:hover .block-reveal-card__icon-line--vertical {
  transform: translate(-50%, -50%) rotate(135deg);
}
@media (min-width: 768px) {
  .block-reveal-card__content, .block-reveal-card__closed {
    padding: 40px;
  }
  .block-reveal-card__icon {
    right: 40px;
    bottom: 40px;
  }
}

.block-section {
  position: relative;
}
.block-section--has-bg {
  padding-top: 85px;
  padding-bottom: 160px;
}
.block-section--has-bg .block-text-content__title,
.block-section--has-bg .block-text-content__text {
  color: #fff;
}
.block-section--has-bg .block-stat {
  background: transparent;
  border: 1px solid #fff;
}
.block-section--has-bg .block-stat__subtitle,
.block-section--has-bg .block-stat__value {
  color: #fff;
}
.block-section--has-bg .block-text-content__text a {
  color: #FFD500;
}
.block-section__inner {
  position: relative;
}
.block-section__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.block-section__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.block-section__sticky-wrapper {
  margin-inline: auto;
  max-width: 1260px;
  width: calc(100% - var(--horizontal-spacing) * 2);
  position: relative;
}
.block-section__sticky {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  pointer-events: none;
}
.block-section__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 40px;
  border: 1px solid transparent;
  white-space: nowrap;
  width: auto;
  max-width: none;
  text-transform: uppercase;
}
.block-section__dot {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #FFD500;
}
.block-section__label {
  display: block;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #204168;
}
.block-section__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.block-section.is-style-transparent .block-section__pill {
  background-color: transparent;
  border-color: #fff;
}
.block-section.is-style-transparent .block-section__label {
  color: #fff;
}

.block-tabs-gallery {
  text-align: center;
}
.block-tabs-gallery__wrapper {
  margin-inline: auto;
  max-width: 1260px;
  width: calc(100% - var(--horizontal-spacing) * 2);
}
.block-tabs-gallery__heading {
  margin-bottom: 50px;
  text-align: center;
  max-width: 750px;
  margin-inline: auto;
}
.block-tabs-gallery__title {
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -4%;
  color: #204168;
  cursor: default;
  margin-bottom: 40px;
}
.block-tabs-gallery__subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0%;
  text-align: center;
  color: #000;
}
.block-tabs-gallery__tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 60px;
  background: #F7F7F7;
  padding: 10px;
  border-radius: 4px;
}
.block-tabs-gallery__tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 4px;
  color: #204168;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  min-width: 180px;
  padding: 16px 28px;
  transition: 0.2s ease;
  border: none;
}
.block-tabs-gallery__tab.is-active {
  background: #204168;
  color: #fff;
}
.block-tabs-gallery__tab:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}
.block-tabs-gallery__tab--add {
  min-width: 64px;
  font-size: 26px;
  font-weight: 600;
  padding: 12px 20px;
}
.block-tabs-gallery__content {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
}
.block-tabs-gallery .block-tabs-gallery-item {
  display: none;
}
.block-tabs-gallery .block-tabs-gallery-item.is-active {
  display: block;
}

.editor-styles-wrapper .block-tabs-gallery__title, .editor-styles-wrapper .block-tabs-gallery__subtitle {
  outline: none;
}
.editor-styles-wrapper .block-tabs-gallery__tab {
  box-shadow: none !important;
}

.block-tabs-gallery-item img {
  width: 100%;
}
.block-tabs-gallery-item__image img {
  display: block;
  width: 100%;
  height: auto;
}

.block-team {
  padding: 80px 0;
  overflow: hidden;
}
.block-team__inner {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.block-team__content {
  width: calc(100% - var(--horizontal-spacing) * 2);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.block-team__title, .block-team__text {
  margin: 0;
}
.block-team__title {
  color: #204168;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: -4%;
  line-height: 50px;
  margin-bottom: 60px;
}
.block-team__text {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  margin-bottom: 35px;
  max-width: 460px;
  text-align: center;
}
.block-team__marquee {
  width: 100%;
  overflow: hidden;
}
.block-team__track {
  display: flex;
  align-items: stretch;
  width: -moz-max-content;
  width: max-content;
  gap: 16px;
  animation: block-team-marquee 28s linear infinite;
  will-change: transform;
}
.block-team .block-button {
  width: 100%;
  max-width: 267px;
}
@keyframes block-team-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}
.block-team-item {
  width: 320px;
  flex: 0 0 320px;
}
.block-team-item__inner {
  height: 100%;
}
.block-team-item__media {
  width: 100%;
  aspect-ratio: 320/400;
  overflow: hidden;
}
.block-team-item__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.block-text-images {
  background: #F7F7F7;
  padding-top: 100px;
  padding-bottom: 100px;
}
.block-text-images__inner {
  max-width: 1260px;
  width: calc(100% - var(--horizontal-spacing) * 2);
  margin-inline: auto;
}
.block-text-images__title {
  margin: 0 0 32px;
  text-align: center;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 400;
  color: #234a7c;
}
.block-text-images__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .block-text-images__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.block-text-image {
  display: flex;
  flex-direction: column;
}
.block-text-image__media {
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}
.block-text-image__image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 610/585;
}
.block-text-image__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.block-text-image__title {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  margin: 0px;
}
.block-text-image__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
@media (min-width: 768px) {
  .block-text-image__title {
    font-size: 28px;
  }
  .block-text-image__text {
    font-size: 19px;
  }
}
/*# sourceMappingURL=frontend.build.css.map */
