body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  color: #808080;
  display: flex;
  flex-direction: column;
  font-kerning: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
  min-height: 100dvh;
}

main {
  flex: 1;
}

a,
button {
  color: inherit;
  text-decoration: none;
  transition: 0.2s all ease;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  margin: 0;
  padding: 0;
}

address {
  margin: 0;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  width: auto;
  height: auto;
}

img,
svg {
  width: auto;
  height: auto;
  max-width: 100%;
}

.container {
  max-width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}
@media (min-width: 576px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

.btn {
  background-color: #2A317D;
  color: #FFFFFF;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  border: 2px solid #2A317D;
  font-size: 16px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  flex-shrink: 0;
  cursor: pointer;
}
@media (min-width: 768px) {
  .btn {
    font-size: 18px;
  }
}
.btn.--sm {
  font-size: 16px !important;
}
.btn:hover {
  background-color: #7A75A9;
  border-color: #7A75A9;
}
.btn.--light {
  background-color: #BFBFBF;
  border-color: #BFBFBF;
  color: #FFFFFF;
}
.btn.--light:hover {
  background-color: #7A75A9;
  border-color: #7A75A9;
}
.btn.--light.--outline {
  color: #FFFFFF;
}
.btn.--outline {
  background-color: transparent;
  color: #2A317D;
}
.btn.--outline:hover {
  background-color: transparent;
  border-color: #7A75A9;
  color: #7A75A9;
}
.btn.--lighter, .content-columns.--half .row .content-columns__column:nth-child(even) .btn {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #2A317D;
}
.btn.--lighter:hover, .content-columns.--half .row .content-columns__column:nth-child(even) .btn:hover {
  background-color: #7A75A9;
  border-color: #7A75A9;
  color: #FFFFFF;
}
.btn.--square {
  padding: 0;
  width: 48px;
}
.btn.--transparent {
  background-color: transparent;
  border-color: transparent;
}
.btn.--thin {
  font-weight: 400;
}
.btn.--alt {
  background-color: #7A75A9;
  color: #FFFFFF;
  border-color: #7A75A9;
}
.btn.--alt:hover {
  background-color: #2A317D;
  border-color: #2A317D;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #2A317D;
  line-height: 1.2;
}
.--lighter-blue .h1, .--light-blue .h1, .--dark-blue .h1, .--dark-grey .h1, .hero .h1,
.--lighter-blue .h2,
.--light-blue .h2,
.--dark-blue .h2,
.--dark-grey .h2,
.hero .h2,
.--lighter-blue .h3,
.--light-blue .h3,
.--dark-blue .h3,
.--dark-grey .h3,
.hero .h3,
.--lighter-blue .h4,
.--light-blue .h4,
.--dark-blue .h4,
.--dark-grey .h4,
.hero .h4,
.--lighter-blue .h5,
.--light-blue .h5,
.--dark-blue .h5,
.--dark-grey .h5,
.hero .h5,
.--lighter-blue .h6,
.--light-blue .h6,
.--dark-blue .h6,
.--dark-grey .h6,
.hero .h6 {
  color: #FFFFFF;
}

.h1 {
  font-size: 34px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 768px) {
  .h1 {
    font-size: 70px;
  }
}

.h2 {
  font-size: 34px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 768px) {
  .h2 {
    font-size: 60px;
  }
}

.h3 {
  font-size: 34px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 768px) {
  .h3 {
    font-size: 45px;
  }
}

.h4 {
  font-size: 24px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 768px) {
  .h4 {
    font-size: 42px;
  }
}

.h5 {
  font-size: 24px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 768px) {
  .h5 {
    font-size: 30px;
  }
}

.h6 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.prefix {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #BFBFBF;
}
.--lighter-blue .prefix, .--light-blue .prefix, .--dark-blue .prefix, .--dark-grey .prefix {
  color: #FFFFFF;
}
.--grey .prefix {
  color: #808080;
}

p {
  margin: 0;
}

.wysiwyg * + p,
.wysiwyg * + ul,
.wysiwyg * + ol,
.wysiwyg * + .accordions {
  margin-top: 24px;
}
.wysiwyg * + .btn {
  margin-top: 40px;
}
.wysiwyg h1 + *,
.wysiwyg h2 + *,
.wysiwyg h3 + *,
.wysiwyg h4 + *,
.wysiwyg h5 + *,
.wysiwyg h6 + *,
.wysiwyg * + h1,
.wysiwyg * + h2,
.wysiwyg * + h3,
.wysiwyg * + h4,
.wysiwyg * + h5,
.wysiwyg * + h6,
.wysiwyg * + .accordions {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .wysiwyg h1 + *,
  .wysiwyg h2 + *,
  .wysiwyg h3 + *,
  .wysiwyg h4 + *,
  .wysiwyg h5 + *,
  .wysiwyg h6 + *,
  .wysiwyg * + h1,
  .wysiwyg * + h2,
  .wysiwyg * + h3,
  .wysiwyg * + h4,
  .wysiwyg * + h5,
  .wysiwyg * + h6,
  .wysiwyg * + .accordions {
    margin-top: 32px;
  }
}
.wysiwyg ul {
  list-style-type: disc;
  padding-left: 20px;
}
.wysiwyg ul li::marker {
  color: #1E2358;
}
.--dark-grey .wysiwyg ul li::marker, .--light-blue .wysiwyg ul li::marker, .--lighter-blue .wysiwyg ul li::marker, .--dark-blue .wysiwyg ul li::marker {
  color: #FFFFFF;
}
.wysiwyg ol {
  list-style-type: decimal;
  padding-left: 20px;
}

.row {
  --bs-gutter-x: 40px;
}
@media (min-width: 992px) {
  .row {
    --bs-gutter-x: 60px;
  }
}
.row.gy-lg {
  --bs-gutter-y: 60px;
}
.row.gy-md {
  --bs-gutter-y: 40px;
}
.row .gy-sm {
  --bs-gutter-y: 20px;
}
.row.gx-lg {
  --bs-gutter-x: 80px;
}
.row.gx-md {
  --bs-gutter-x: 30px;
}
.row.gx-sm {
  --bs-gutter-x: 20px;
}

.row.--no-gutters-x {
  --bs-gutter-x: 0;
}

.row.--no-gutters-y {
  --bs-gutter-y: 0;
}

.row.--no-gutters {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.form-field {
  padding: 10px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.25);
  background-color: #FFFFFF;
  color: #BFBFBF;
  display: flex;
  flex-direction: column;
  font-size: 15px;
}
@media (max-width: 768px) {
  .form-field {
    font-size: 14px;
  }
}
.form-field input,
.form-field textarea {
  border: none;
  box-shadow: none;
  outline: none;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  padding: 0;
}
@media (max-width: 768px) {
  .form-field input,
  .form-field textarea {
    font-size: 16px;
  }
}
.form-field textarea {
  resize: none;
  height: 150px;
}

.form-checkbox {
  cursor: pointer;
}
.form-checkbox input {
  display: none;
}
.form-checkbox span {
  position: relative;
  padding-left: 44px;
}
.form-checkbox span::before {
  content: "";
  position: absolute;
  transform: translateY(-2px);
  top: 0;
  left: 0;
  display: block;
  height: 28px;
  width: 28px;
  border: 1.5px solid #2A317D;
  background-color: #BFBFBF;
  cursor: pointer;
}
.form-checkbox span::after {
  content: "\f00c";
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  position: absolute;
  height: 28px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  transform: translateY(-2px);
  font-size: 18px;
  color: #FFFFFF;
  background-color: #2A317D;
  opacity: 0;
  transition: 0.2s all ease;
  pointer-events: none;
}
.form-checkbox input:checked + span::after {
  opacity: 1;
}
.form-checkbox a {
  text-decoration: underline;
}

.form-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.field-validation-error {
  display: block;
  color: #bf0000;
}

span.umbraco-forms-submitmessage {
  display: block;
  background-color: #86ae86;
  padding: 23px;
  color: #fff;
  margin-top: 30px;
}

.header {
  background-color: #2A317D;
  color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: none;
}

.header__logo {
  display: inline-block;
  width: 150px;
}
@media (min-width: 768px) {
  .header__logo {
    width: 175px;
  }
}
.header__logo svg {
  width: 100%;
  height: auto;
}

.header__toggle-tray svg:last-child {
  display: none;
}
body.--tray-open .header__toggle-tray svg:last-child {
  display: block;
}
body.--tray-open .header__toggle-tray svg:first-child {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 128px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.header__nav ul {
  display: flex;
  gap: 22px;
}
.header__nav ul a:hover {
  color: #8B86AF;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header__search {
  background-color: #808080;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: translateY(-100%);
  display: flex;
  align-items: center;
}
.header__search__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.header__search__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header__search__results {
  background-color: #FFFFFF;
  color: #EDEDED;
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: translateY(-100%);
  display: flex;
  align-items: center;
}
.header__search__results__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

h3.searchMesssage {
  color: #000000;
}

.header__search__results .h6 {
  color: #000000;
}

.searchMesssage {
  color: #000000;
  font-size: 20px;
}

.result {
  margin-bottom: 40px;
}
.result h6 {
  color: #000000;
  margin-bottom: 10px;
}
.result p {
  color: #808080;
}

.footer {
  margin-top: auto;
  background-color: #EDEDED;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 50px 16px;
  flex-wrap: wrap;
  padding: 44px 0;
}
.footer nav {
  width: 100%;
  flex: 1 1 100%;
  font-size: 14px;
}
.footer nav ul {
  display: flex;
  gap: 32px;
  color: #808080;
  flex-direction: column;
}
@media (min-width: 992px) {
  .footer nav ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 992px) {
  .footer__social {
    order: 2;
  }
  .footer__social .socials {
    width: 100%;
  }
}

.footer__copyright {
  background-color: #808080;
  color: #FFFFFF;
  font-size: 14px;
}
.footer__copyright__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 16px;
}
@media (max-width: 992px) {
  .footer__copyright__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.tray {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: #2A317D;
  z-index: 40;
  color: #FFFFFF;
  display: flex;
  opacity: 0;
  visibility: hidden;
}
.tray__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 128px 0 60px;
}
.tray nav ul {
  display: flex;
  flex-direction: column;
  gap: 50px;
  font-weight: 700;
}

.hero-spacer {
  height: 128px;
  width: 100%;
}

.hero {
  position: relative;
  padding-top: 128px;
  background-color: #1E2358;
  color: #FFFFFF;
  overflow: hidden;
  height: 870px;
}
.hero__inner {
  position: relative;
  z-index: 20;
}
.hero video,
.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
  pointer-events: none;
}
.hero .hero__inner {
  padding: 60px 0;
  max-width: 780px;
}

.hero__scroll {
  z-index: 10;
  height: 54px;
  width: 54px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero.--main {
  min-height: calc(900px - 128px);
  background-color: #2A317D;
  display: flex;
  align-items: center;
  position: relative;
}
.hero.--main::before, .hero.--main::after {
  content: "";
  height: calc(50% - 32px);
  width: 100%;
  position: absolute;
  background: #2A317D;
  background: linear-gradient(180deg, rgba(42, 49, 125, 0) 0%, #2a317d 100%);
  left: 0;
  z-index: 10;
}
.hero.--main::before {
  top: 0;
  transform: scaleY(-1);
}
.hero.--main::after {
  bottom: 0;
}
.hero.--main .hero__inner {
  margin-left: auto;
  text-align: right;
}
.hero.--main .btn {
  margin-top: 50px;
}
.hero.--main .hero__scroll {
  position: relative;
  z-index: 20;
}
@media (max-width: 768px) {
  .hero.--main .hero__scroll {
    margin-left: auto;
  }
}
.hero.--main .responsive-video {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: 500%;
  margin: auto;
  overflow: hidden;
  transform: translate(-50%, -50%);
}
@media (min-width: 576px) {
  .hero.--main .responsive-video {
    width: 300%;
  }
}
@media (min-width: 768px) {
  .hero.--main .responsive-video {
    height: 130%;
    width: 200%;
  }
}
.hero.--main .responsive-video iframe {
  height: 100%;
  width: 100%;
}

.hero.--inner-lg {
  min-height: calc(668px + 128px);
  display: flex;
  align-items: center;
  background-color: #2A317D;
}
.hero.--inner-lg::before {
  content: "";
  height: calc(60% - 32px);
  width: 100%;
  position: absolute;
  background: #2A317D;
  background: linear-gradient(180deg, #1e2358 0%, rgba(0, 29, 165, 0) 100%);
  top: 0;
  left: 0;
  z-index: 10;
}
.hero.--inner-lg .hero__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 100%;
}

.hero.--inner-md {
  min-height: calc(668px + 128px);
  display: flex;
  align-items: center;
  background-color: #2A317D;
}
@media (max-width: 992px) {
  .hero.--inner-md {
    min-height: calc(390px + 128px);
  }
}
.hero.--inner-md::before {
  content: "";
  height: calc(60% - 32px);
  width: 100%;
  position: absolute;
  background: #2A317D;
  background: linear-gradient(180deg, #1e2358 0%, rgba(0, 29, 165, 0) 100%);
  top: 0;
  left: 0;
  z-index: 10;
}
.hero.--inner-md .hero__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 100%;
}
.hero.--inner-md .hero__inner--with-text {
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .hero.--inner-md .hero__inner--with-text {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
.hero.--inner-md .hero__inner--with-text .hero__inner-left {
  flex: 1;
}
.hero.--inner-md .hero__inner--with-text .hero__inner-right {
  flex: 1;
}
.hero.--inner-md .hero__body-text {
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  margin: 0;
}

.hero.--inner-sm {
  background-color: #2A317D;
  min-height: calc(276px + 128px);
  display: flex;
  align-items: center;
}
.hero.--inner-sm.--grey {
  background-color: #EDEDED;
}
.hero.--inner-sm.--grey h1,
.hero.--inner-sm.--grey h2,
.hero.--inner-sm.--grey h3,
.hero.--inner-sm.--grey h4,
.hero.--inner-sm.--grey h5,
.hero.--inner-sm.--grey h6 {
  color: #2A317D;
}

.hero.--inner-featured .hero__inner {
  gap: 8px;
}
.hero.--inner-featured .hero__meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 0 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero.--inner-featured .hero__meta {
    gap: 0 8px;
  }
}
.hero.--inner-featured .hero__meta div {
  height: 26px;
  width: 1px;
  background-color: #FFFFFF;
}
.hero.--inner-featured .hero--inner-featured__cost {
  margin-top: 16px;
  font-size: 42px;
  font-family: "Open Sans", sans-serif;
}
.hero.--inner-featured .btn {
  margin-top: 20px;
}

.hero.--inner-project {
  min-height: 538px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .hero.--inner-project {
    padding: calc(40px + 128px) 0 40px;
  }
}
.hero.--inner-project .hero__inner {
  max-width: 100%;
}
.hero.--inner-project .h6 {
  font-weight: 400;
  margin-top: 16px;
}
.hero.--inner-project .h5 {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .hero.--inner-project .h5 {
    margin-top: 20px;
  }
}

.hero-banner-with-icon {
  position: relative;
  background-color: #1E2358;
  overflow: hidden;
  height: 870px;
}
.hero-banner-with-icon__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
  pointer-events: none;
}
.hero-banner-with-icon:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background: linear-gradient(180deg, rgba(0, 29, 165, 0) 0%, rgba(255, 255, 255, 0.5) 69.23%);
  z-index: 1;
}
.hero-banner-with-icon__overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 567px;
}

.sections > section {
  padding: 80px 0;
  margin-top: -1px;
}
@media (min-width: 768px) {
  .sections > section {
    padding: 140px 0;
  }
}
.sections > section.--no-padding {
  padding: 0;
}
.sections > section.--padding-sm {
  padding: 50px 0;
}
.sections > section.--grey {
  background-color: #EDEDED;
}
.sections > section.--dark-grey {
  background-color: #808080;
  color: #FFFFFF;
}
.sections > section.--lighter-blue {
  background-color: #8B86AF;
  color: #FFFFFF;
}
.sections > section.--light-blue {
  background-color: #2A317D;
  color: #FFFFFF;
}
.sections > section.--dark-blue {
  background-color: #1E2358;
  color: #FFFFFF;
}
.sections > section.--light-blue + .--light-blue, .sections > section.--dark-blue + .--dark-blue, .sections > section.--lighter-blue + .--lighter-blue, .sections > section.--grey + .--grey, .sections > section.--white + .--white, .sections > section.--dark-grey + .--dark-grey {
  padding-top: 0;
}

.search-form {
  width: 100%;
  max-width: 730px;
}
.search-form input {
  width: 100%;
  height: 64px;
  border: none;
  border-bottom: 1px solid #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
  font-size: 16px;
  box-shadow: none;
  outline: none;
  font-weight: 400;
}
.search-form input::-webkit-input-placeholder {
  color: #FFFFFF;
}
.search-form input:-moz-placeholder {
  color: #FFFFFF;
}
.search-form input::-moz-placeholder {
  color: #FFFFFF;
}
.search-form input:-ms-input-placeholder {
  color: #FFFFFF;
}
@media (min-width: 576px) {
  .search-form input {
    font-size: 24px;
  }
}

.socials {
  display: flex;
  gap: 16px;
}
.socials .btn {
  border-width: 2.5px;
}

.card {
  display: block;
  background-color: #FFFFFF;
  height: 100%;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.25);
}
.card__content {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card .btn {
  margin-top: 10px;
  align-self: flex-start;
}

.card__image {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.--card-sm .card__image {
  aspect-ratio: 550/300;
}

.--card-dark .card h1,
.--card-dark .card h2,
.--card-dark .card h3,
.--card-dark .card h4,
.--card-dark .card h5,
.--card-dark .card h6 {
  color: #1E2358;
}
.--card-dark .card {
  color: #808080;
}

.jobs .accordions .accordion:first-child {
  margin-top: -20px;
}

.accordion {
  border-top: 1px dashed #808080;
}
.--dark-grey .accordion, .--light-blue .accordion, .--lighter-blue .accordion, .--dark-blue .accordion {
  border-color: #FFFFFF;
}
.accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  gap: 20px;
  text-align: left;
}
.accordion__heading {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
}
.accordion__icon {
  height: 30px;
  width: 30px;
  background-color: #2A317D;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .accordion__icon {
    height: 40px;
    width: 40px;
  }
}
.accordion__icon::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.42 13.272H13.482V21.42H7.938V13.272H0V8.148H7.938V0H13.482V8.148H21.42V13.272Z' fill='white'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 16px;
  width: 16px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .accordion__icon::after {
    height: 22px;
    width: 22px;
  }
}
.accordion.--open .accordion__icon::after {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='6' viewBox='0 0 22 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.42 5.27195H13.482H7.938H0V0.147949H7.938L13.482 0.148L21.42 0.147949V5.27195Z' fill='white'/%3E%3C/svg%3E%0A");
}
.accordion__inner {
  overflow: hidden;
  height: 0;
}
.accordion__content {
  padding-bottom: 20px;
}

.accordions.--chevron .accordion .accordion__icon {
  background-color: transparent;
  width: auto;
}
.accordions.--chevron .accordion .accordion__icon::after {
  content: "\f078";
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  font-size: 18px;
  color: inherit;
  background: none;
  transform-origin: center;
}
@media (min-width: 768px) {
  .accordions.--chevron .accordion .accordion__icon::after {
    font-size: 22px;
  }
}
.accordions.--chevron .accordion.--open .accordion__icon::after {
  transform: scaleY(-1) translateY(-50%);
}

.swiper-button-next svg,
.swiper-button-prev svg {
  display: none;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  font-size: 28px;
  color: #FFFFFF;
  transition: 0.2s all ease;
}
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: #8B86AF;
}

.swiper-button-next::after {
  content: "\f054";
}

.swiper-button-prev::after {
  content: "\f053";
}

.swiper-controls {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
}
.swiper-controls > * {
  pointer-events: all;
}

.swiper-pagination {
  --swiper-pagination-bullet-size: 12px;
  --swiper-pagination-bullet-horizontal-gap: 6px;
  --swiper-theme-color: #FFFFFF;
  --swiper-pagination-bullet-inactive-color: #FFFFFF;
  --swiper-pagination-bullet-inactive-opacity: 0.5;
}
.swiper-pagination.--dark {
  --swiper-theme-color: #2A317D;
  --swiper-pagination-bullet-inactive-color: #BFBFBF;
  --swiper-pagination-bullet-inactive-opacity: 1;
}

.swiper .swiper-scrollbar {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  bottom: auto !important;
  right: auto !important;
  margin: 20px auto 0 !important;
  background-color: rgba(217, 217, 217, 0.2) !important;
  height: 16px !important;
}
.swiper .swiper-scrollbar-drag {
  background-color: #D9D9D9 !important;
}

.stats__items > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  color: #FFFFFF;
  min-height: 194px;
}
.stats__items > div h2 {
  line-height: 1;
  color: #FFFFFF;
}
.stats__items > div:nth-child(1) {
  background-color: #414386;
}
.stats__items > div:nth-child(2) {
  background-color: #7A75A9;
}
.stats__items > div:nth-child(3) {
  background-color: #8B86AF;
}

.content-half__heading {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .content-half__heading {
    margin-bottom: 60px;
  }
}

.services__content {
  margin-bottom: 60px;
}

.service__item {
  --overlay-color: #1E2358;
  height: 350px;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1E2358;
  background: linear-gradient(180deg, rgba(30, 35, 88, 0) 0%, #1e2358 78%);
  opacity: 0.7;
  transition: 0.2s all ease;
  z-index: 10;
}
.--light-blue .service__item::before {
  background: linear-gradient(180deg, rgba(65, 67, 134, 0) 0%, #414386 78%);
}
.service__item__inner {
  position: relative;
  z-index: 20;
}
.service__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__item .h6 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.logos {
  overflow: hidden;
}

.logos__ticker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}
@media (min-width: 768px) {
  .logos__ticker {
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .logos__ticker > div {
    width: 33.3333333333%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .logos__ticker > div {
    width: 50%;
  }
  .logos__ticker > div:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 20px;
  }
  .logos__ticker > div:nth-child(even) {
    justify-content: flex-end;
    padding-left: 20px;
  }
}
.logos__ticker img {
  max-height: 80px;
  max-width: 100px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 576px) {
  .logos__ticker img {
    max-height: 100px;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .logos__ticker img {
    margin-right: 60px;
    max-width: 150px;
  }
}

.projects-slider__slide {
  height: 600px;
  position: relative;
  background-color: #1E2358;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.projects-slider__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
}
.projects-slider__slide__content {
  position: relative;
  z-index: 10;
  padding-bottom: 60px;
}
@media (max-width: 576px) {
  .projects-slider__slide__content {
    padding: 0 20px;
  }
}
.projects-slider__slide__heading {
  margin-bottom: 24px;
}
.projects-slider__slide__cost {
  font-weight: 400;
  margin: 24px 0;
}
@media (min-width: 768px) {
  .projects-slider__slide__cost {
    margin: 44px 0;
  }
}
.projects-slider__slide__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 16px;
}
@media (max-width: 768px) {
  .projects-slider__slide__meta {
    flex-direction: column;
  }
}
.projects-slider__slide__meta div {
  height: 26px;
  width: 1px;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .projects-slider__slide__meta div {
    display: none;
  }
}

.projects-slider .swiper-pagination {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .projects-slider .swiper-pagination {
    margin-bottom: 60px;
  }
}

.cta {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta.--sm {
  padding: 50px 0;
  min-height: auto;
}
@media (max-width: 576px) {
  .cta .btn {
    width: 100%;
  }
}

.cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px 164px;
}
@media (min-width: 992px) {
  .--reverse .cta__inner {
    flex-direction: row-reverse;
  }
}
@media (max-width: 992px) {
  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 992px) {
  .--reverse .cta__content {
    text-align: right;
  }
}
.cta__content p {
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cta__content br {
    display: none;
  }
}

.values {
  position: relative;
}

.values__content {
  padding: 60px 0;
  min-height: 600px;
}
@media (min-width: 992px) {
  .values__content {
    padding: 116px 0;
  }
}

.values__image {
  width: 100%;
  height: auto;
  aspect-ratio: 390/300;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .values__image {
    width: calc(50% - 60px);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    aspect-ratio: none;
  }
}

.values__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .values__items {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .values__items .h6 {
    margin-bottom: 14px;
  }
}
.values__items img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .values__items img {
    max-width: 112px;
    margin-bottom: 30px;
  }
}

.values__item {
  --bs-gutter-x: 30px;
}

.team-slider {
  overflow: hidden;
}
.team-slider .container {
  position: relative;
}
.team-slider .container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(calc(-100% + 60px));
  width: 100%;
  height: 100%;
  background: #8B86AF;
  z-index: 10;
  background: #1E2358;
  background: linear-gradient(270deg, rgba(237, 237, 237, 0) 0%, #ededed 10%);
}
@media (max-width: 992px) {
  .team-slider .container::after {
    display: none;
  }
}
.--light-blue .team-slider .container::after {
  background: linear-gradient(270deg, rgba(42, 49, 125, 0) 0%, #2a317d 10%);
}
.--dark-blue .team-slider .container::after {
  background: linear-gradient(270deg, rgba(30, 35, 88, 0) 0%, #1e2358 10%);
}
.--white .team-slider .container::after {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, white 10%);
}
.team-slider .swiper {
  overflow: visible !important;
}

.team-slider__item__image {
  aspect-ratio: 1/1;
  width: 100%;
  margin-bottom: 20px;
}
.team-slider__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-slider__item__content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .team-slider__item__content {
    gap: 8px;
  }
}

.content-image {
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .content-image {
    padding-bottom: 0 !important;
    display: flex;
    flex-direction: column-reverse;
  }
}
.content-image__img {
  width: 100%;
  aspect-ratio: 400/392;
}
@media (min-width: 992px) {
  .content-image__img {
    width: 60%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    aspect-ratio: none;
  }
}
.content-image__img img {
  --pos: 270deg;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .content-image__img img {
    --pos: 0deg;
  }
}
.content-image__img img {
  -webkit-mask-image: linear-gradient(var(--pos), #000000 21.09%, rgba(0, 0, 0, 0) 84.87%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  mask-image: linear-gradient(var(--pos), #000000 21.09%, rgba(0, 0, 0, 0) 84.87%);
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: center;
}
@media (max-width: 768px) {
  .content-image .btn {
    width: 100%;
  }
}
.content-image .container {
  position: relative;
  z-index: 10;
}

@media (min-width: 992px) {
  .content-image.--reverse .row {
    flex-direction: row-reverse;
  }
}
.content-image.--reverse .content-image__img {
  left: 0;
  right: auto;
}
@media (min-width: 992px) {
  .content-image.--reverse .content-image__img img {
    --pos: 90deg;
  }
}

.content-tabs__nav {
  display: flex;
}

@media (max-width: 992px) {
  .content-tabs__contents {
    margin-left: -50px;
    width: calc(100% + 100px);
  }
}

.content-tabs__nav > button,
.content-tabs__contents > button {
  flex: 1;
  width: 100%;
  padding: 20px 0;
  background-color: #414386;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .content-tabs__nav > button,
  .content-tabs__contents > button {
    padding: 20px 50px;
    justify-content: space-between;
  }
}
.content-tabs__nav > button::after,
.content-tabs__contents > button::after {
  content: "\f078";
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
}
@media (min-width: 992px) {
  .content-tabs__nav > button::after,
  .content-tabs__contents > button::after {
    display: none;
  }
}
@media (min-width: 992px) {
  .content-tabs__nav > button.--active,
  .content-tabs__contents > button.--active {
    background-color: #FFFFFF;
    color: #1E2358;
  }
}
.content-tabs__nav > button.--active::after,
.content-tabs__contents > button.--active::after {
  transform: rotate(180deg);
}

.content-tabs__content {
  padding: 50px;
  background-color: #FFFFFF;
}
@media (min-width: 992px) {
  .content-tabs__content {
    padding: 50px 40px;
  }
}
.content-tabs__content .h1,
.content-tabs__content .h2,
.content-tabs__content .h3,
.content-tabs__content .h4,
.content-tabs__content .h5,
.content-tabs__content .h6 {
  color: #1E2358;
}
.content-tabs__content p {
  color: #808080;
}
.content-tabs__content img {
  min-height: 260px;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.quote__meta {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .quote__meta {
    margin-top: 50px;
  }
}
.quote__meta__name {
  font-size: 24px;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .quote__meta__name {
    margin-bottom: 16px;
  }
}

.quote.--dark-blue .quote__icon,
.quote.--light-blue .quote__icon {
  color: #8B86AF;
}

.benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 768px) {
  .benefits__item {
    max-width: 200px;
    margin: 0 auto;
  }
}
.benefits__item img {
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
}
.benefits__item p {
  max-width: 200px;
  margin: 8px auto 0;
}

.sections > section:first-child.projects {
  padding: 50px 0;
}

.projects {
  overflow: hidden;
}

.projects-filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.projects-filters p {
  color: #1E2358;
}
.projects-filters__items {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media (max-width: 992px) {
  .projects-filters__items {
    width: 100vw;
  }
}

.projects .swiper {
  overflow: visible;
}

.projects__load-more {
  display: flex;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .projects__load-more {
    display: none;
  }
}

@media (min-width: 992px) {
  .projects .content-half__heading {
    margin-bottom: 80px;
  }
}

.content-columns-grid img {
  min-height: 190px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .content-columns-grid img {
    margin-bottom: 30px;
    min-height: 0;
    aspect-ratio: 290/150;
  }
}
@media (min-width: 992px) {
  .content-columns-grid .wysiwyg {
    padding-left: 40px;
  }
}

.image-slider {
  overflow: hidden;
}
@media (max-width: 992px) {
  .image-slider {
    padding: 0 !important;
  }
  .image-slider .container {
    max-width: 100% !important;
    padding: 0 !important;
  }
}
.image-slider .swiper {
  overflow: visible;
}
.image-slider .swiper-slide {
  padding: 0 100px;
  width: 100%;
  opacity: 0.3;
  transition: 0.25s opacity ease;
}
.image-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.image-slider img {
  aspect-ratio: 920/636;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .image-slider img {
    aspect-ratio: 390/400;
  }
}
.image-slider .swiper-button-prev,
.image-slider .swiper-button-next {
  background-color: #2A317D;
  border-radius: 50%;
}
.image-slider .swiper-pagination {
  position: relative;
  padding: 100px 0 0;
}

.meta__inner {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 20px;
  flex-wrap: wrap;
}

.meta__item {
  max-width: 200px;
  margin: 0 auto;
}
.meta__item .h6 {
  margin-bottom: 8px;
}

.content-columns__item .h6 {
  color: #808080;
}
.--lighter-blue .content-columns__item .h6, .--light-blue .content-columns__item .h6, .--dark-blue .content-columns__item .h6, .--dark-grey .content-columns__item .h6 {
  color: #FFFFFF;
}

@media (min-width: 992px) {
  .content-columns.--lg-columns .row {
    --bs-gutter-x: 120px;
  }
}

.content-columns.--half {
  position: relative;
  overflow: hidden;
}
.content-columns.--half .content-columns__item {
  position: relative;
  z-index: 20;
}
.content-columns.--half .row {
  --bs-gutter-y: 0;
  --bs-gutter-x: 100px;
}
.content-columns.--half .row .content-columns__column {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .content-columns.--half .row .content-columns__column {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.content-columns.--half .row .content-columns__column:nth-child(even) {
  background-color: #2A317D;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .content-columns.--half .row .content-columns__column:nth-child(even) {
    position: relative;
  }
}
.content-columns.--half .row .content-columns__column:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #2A317D;
  z-index: 10;
}
@media (max-width: 992px) {
  .content-columns.--half .row .content-columns__column:nth-child(even)::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 200%;
  }
}
.content-columns.--half .row .content-columns__column:nth-child(even) h1,
.content-columns.--half .row .content-columns__column:nth-child(even) h2,
.content-columns.--half .row .content-columns__column:nth-child(even) h3,
.content-columns.--half .row .content-columns__column:nth-child(even) h4,
.content-columns.--half .row .content-columns__column:nth-child(even) h5,
.content-columns.--half .row .content-columns__column:nth-child(even) h6 {
  color: #FFFFFF;
}
.full-media {
  aspect-ratio: 1512/722;
}
.full-media img,
.full-media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-sizing: border-box;
  vertical-align: middle;
}

.jobs__heading {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #2A317D;
  display: flex;
  align-items: center;
  gap: 8px 20px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .jobs__heading {
    font-size: 30px;
  }
}
.jobs__heading span {
  font-weight: 300;
  color: #808080;
}

.jobs .accordion__toggle {
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .jobs .accordion__content {
    padding-bottom: 60px;
  }
}

.contact form {
  margin-top: 40px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact__cta {
  font-size: 18px;
  color: #2A317D;
}
@media (min-width: 768px) {
  .contact__cta {
    font-size: 20px;
  }
}

.js-map {
  height: 100%;
  width: 100%;
}

.map {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 698px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .map {
    flex-direction: column;
  }
}

.map__left {
  display: flex;
  width: 588px;
  height: 698px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .map__left {
    width: 100%;
    height: auto;
  }
}

.map__heading {
  display: flex;
  padding: 50px 50px 50px 190px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  background-color: #1E2358;
}
.map__heading h2 {
  color: #FFFFFF;
  margin: 0;
}

.map__locations {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex: 1;
}

.map__location {
  align-self: stretch;
  flex: 0 1 0;
  padding: 33px 50px 33px 190px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.map__location:nth-child(5n+1) {
  background-color: #2A317D;
}
.map__location:nth-child(5n+2) {
  background-color: #7A75A9;
}
.map__location:nth-child(5n+3) {
  background-color: #1E2358;
}
.map__location:nth-child(5n+4) {
  background-color: #A5A1C6;
}
.map__location:nth-child(5n+5) {
  background-color: #414386;
}
.map__location:hover {
  filter: brightness(1.15);
}
.map__location.--active {
  filter: brightness(1.25);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 992px) {
  .map__location {
    padding: 20px 30px 20px 30px;
  }
}

.map__location-header {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.map__location-title {
  color: #FFFFFF;
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 36px;
}
@media (max-width: 992px) {
  .map__location-title {
    font-size: 22px;
    line-height: 28px;
  }
}

.map__location-address {
  display: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.5;
  font-style: normal;
  margin-top: 6px;
  align-self: stretch;
}
.--active .map__location-address {
  display: block;
}

.map__map {
  flex: 1;
  height: 698px;
}
@media (max-width: 992px) {
  .map__map {
    height: 400px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .content-accordions.--reverse .row {
    flex-direction: row-reverse;
  }
}

@media (max-width: 768px) {
  .content-accordions .btn {
    width: 100%;
  }
}

.content-accordions img {
  width: 100%;
  height: auto;
  aspect-ratio: 290/200;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .content-accordions img {
    aspect-ratio: none;
    height: 100%;
  }
}

.content-scroll__button {
  z-index: 10;
  height: 54px;
  width: 54px;
  border: 2px solid #2A317D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A317D;
}

.sections > section.service-block.--dark-blue {
  padding: 0px 0px 30px 0px;
}
@media (min-width: 768px) {
  .sections > section.service-block.--dark-blue {
    padding: 0px 0px 60px 0px;
  }
}
.sections > section.service-block.--dark-blue:first-child {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .sections > section.service-block.--dark-blue:first-child {
    padding-top: 100px;
  }
}
.sections > section.service-block.--dark-blue:last-child {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .sections > section.service-block.--dark-blue:last-child {
    padding-bottom: 100px;
  }
}
.sections > section.service-block.--dark-blue .service-block__img {
  margin: 0 0 40px 0;
}
@media (min-width: 768px) {
  .sections > section.service-block.--dark-blue .service-block__img {
    margin: 0px;
  }
}
@media (max-width: 768px) {
  .sections > section.service-block.--dark-blue .service-block__img {
    width: 112px;
    height: 112px;
  }
}
.sections > section.service-block.--dark-blue .service-block__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sections > section.service-block.--white, .sections > section.service-block.--grey {
  padding: 50px 0px 30px 0px;
}
@media (min-width: 768px) {
  .sections > section.service-block.--white, .sections > section.service-block.--grey {
    padding: 50px 0px 50px 0px;
  }
}
.sections > section.service-block.--white .service-block__img, .sections > section.service-block.--grey .service-block__img {
  margin: 0 0 60px 0;
}
@media (min-width: 768px) {
  .sections > section.service-block.--white .service-block__img, .sections > section.service-block.--grey .service-block__img {
    margin: 0px;
  }
}
@media (max-width: 768px) {
  .sections > section.service-block.--white .service-block__img, .sections > section.service-block.--grey .service-block__img {
    width: 100%;
    height: 150px;
  }
}
.sections > section.service-block.--white .service-block__img img, .sections > section.service-block.--grey .service-block__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sections > section.service-block.--white h3, .sections > section.service-block.--grey h3 {
  color: #2A317D;
}
.sections > section.service-block .wysiwyg {
  font-size: 16px;
}
@media (min-width: 768px) {
  .sections > section.service-block .wysiwyg {
    font-size: 22px;
  }
}
.sections > section.service-block .wysiwyg h3 {
  font-weight: 600;
  font-size: 18px;
}
@media (min-width: 768px) {
  .sections > section.service-block .wysiwyg h3 {
    font-size: 42px;
  }
}

.board-of-directors {
  padding: 60px 0px;
  background-color: #EDEDED;
}
@media (min-width: 768px) {
  .board-of-directors {
    padding: 100px 0px;
  }
}
@media (min-width: 768px) {
  .board-of-directors__top {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .board-of-directors__top .wysiwyg {
    margin-top: 60px;
  }
}
.board-of-directors__bottom {
  padding: 60px 0px 0px 0px;
}
.board-of-directors .team-member {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 135px;
}
@media (min-width: 768px) {
  .board-of-directors .team-member {
    margin-bottom: 20px;
    margin-bottom: 50px;
    max-width: 197px;
    gap: 20px;
  }
}
.board-of-directors .team-member__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .board-of-directors .team-member__wrapper {
    row-gap: 0px;
    -moz-column-gap: 125px;
         column-gap: 125px;
  }
}
.board-of-directors .team-member__name {
  color: #2A317D;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 19.8px */
  letter-spacing: 0.54px;
  margin: 0px;
}

.title-img-grid {
  padding: 60px 0px 100px 0px;
}
@media (min-width: 768px) {
  .title-img-grid {
    padding: 100px 0px;
  }
}
.title-img-grid h3 {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .title-img-grid h3 {
    margin-bottom: 46px;
  }
}
.title-img-grid__images {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .title-img-grid__images {
    padding: 30px 0px;
  }
}
.title-img-grid__images .image {
  height: 230px;
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .title-img-grid__images .image {
    flex: 0 1 calc(50% - 15px);
  }
}
.title-img-grid__images .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sections > section.pdf-download-block .pdf-download-block__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: #8B86AF;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  width: 345px;
  transition: background-color 0.2s ease;
}
@media (max-width: 992px) {
  .sections > section.pdf-download-block .pdf-download-block__btn {
    width: 100%;
  }
}
.sections > section.pdf-download-block .pdf-download-block__btn:hover {
  background-color: #7A75A9;
  color: #FFFFFF;
}

.sections > section.two-side-feature {
  padding: 0px 0px;
  overflow: hidden;
}
.sections > section.two-side-feature .l-col {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
.sections > section.two-side-feature .l-col:before {
  content: "";
  position: absolute;
  right: -20%;
  top: 0px;
  width: 110vw;
  height: 100%;
  z-index: -1;
}
@media (min-width: 768px) {
  .sections > section.two-side-feature .l-col:before {
    right: 100%;
  }
}
.sections > section.two-side-feature .l-col.--dark-grey {
  background-color: #808080;
  color: #FFFFFF;
}
.sections > section.two-side-feature .l-col.--dark-grey:before {
  background-color: #808080;
}
.sections > section.two-side-feature .l-col.--dark-blue {
  color: #FFFFFF;
  background-color: #1E2358;
}
.sections > section.two-side-feature .l-col.--dark-blue:before {
  background-color: #1E2358;
}
@media (min-width: 768px) {
  .sections > section.two-side-feature .l-col {
    padding: 100px 0px;
    display: flex;
  }
}
.sections > section.two-side-feature .r-col {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
.sections > section.two-side-feature .r-col:after {
  content: "";
  position: absolute;
  left: -20%;
  top: 0px;
  width: 110vw;
  height: 100%;
  z-index: -1;
}
@media (min-width: 768px) {
  .sections > section.two-side-feature .r-col:after {
    left: 100%;
  }
}
@media (min-width: 768px) {
  .sections > section.two-side-feature .r-col {
    padding: 100px 0px;
    display: flex;
  }
}
.sections > section.two-side-feature .r-col.--dark-grey {
  background-color: #808080;
  color: #FFFFFF;
}
.sections > section.two-side-feature .r-col.--dark-grey:after {
  background-color: #808080;
}
.sections > section.two-side-feature .r-col.--dark-blue {
  color: #FFFFFF;
  background-color: #1E2358;
}
.sections > section.two-side-feature .r-col.--dark-blue:after {
  background-color: #1E2358;
}
@media (min-width: 768px) {
  .sections > section .two-side-feature__left {
    padding-right: 50px;
    margin: auto 0;
  }
}
@media (min-width: 768px) {
  .sections > section .two-side-feature__right {
    padding-left: 50px;
    margin: auto 0;
  }
}

.news-banner {
  position: relative;
  background-color: #2A317D;
  overflow: hidden;
  min-height: 683px;
  display: flex;
  align-items: center;
  padding-top: 128px;
}
.news-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}
.news-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 418px;
  background: linear-gradient(180deg, #1E2358 0%, rgba(0, 29, 165, 0) 100%);
  z-index: 1;
}
.news-banner .container {
  position: relative;
  z-index: 2;
}
.news-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 80px 0;
}
.news-banner__label {
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 36px;
}
.news-banner__content {
  display: flex;
  flex-direction: column;
}
.news-banner__title {
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 48.3px;
  margin: 0;
}
.news-banner__meta {
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  margin-top: 16px;
}

.news {
  padding: 100px 0px 25px 0px;
}
.news-article {
  padding: 50px 0px;
}
@media (min-width: 768px) {
  .news-article {
    padding: 74px 0px;
  }
}
.news__prev-next-btns {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0px 25px 0px;
}
@media (min-width: 768px) {
  .news__prev-next-btns {
    padding: 25px 0px 74px 0px;
    flex-direction: row;
  }
}
.news__prev-btn, .news__next-btn {
  display: flex;
  align-items: center;
  color: #2A317D;
  font-weight: 700;
  gap: 30px;
}
@media (max-width: 768px) {
  .news__prev-btn, .news__next-btn {
    justify-content: space-between;
  }
}
.news__load-more {
  padding: 50px 0px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.25);
}
.news-card__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.news-card__img {
  height: 365px;
}
.news-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card__title {
  color: #000000;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
}
.news-card__date {
  color: #808080;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
}
.news-card__content {
  color: #808080;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.news-card:hover .btn {
  background-color: #7A75A9;
  border-color: #7A75A9;
  color: #FFFFFF;
  transition: all 0.3s linear;
}
.news-card:hover .btn:hover {
  background-color: #7A75A9;
  border-color: #7A75A9;
  color: #FFFFFF;
}
