*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
  overflow-wrap: break-word;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
}

hr {
  border: none;
  border-top: 1px solid currentColor;
  opacity: 0.2;
}

[hidden] {
  display: none !important;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: 1460px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .container {
    /* 767 */
    padding: 0 20px;
  }
}

.btn-outline {
  width: 160px;
  height: 48px;
  border: 2px solid #de480c;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease-in-out;
}
.btn-outline:hover {
  color: #fff;
  text-decoration: none;
  background-color: #de480c;
}

.btn-outline-alt {
  width: 160px;
  height: 48px;
  border: 2px solid #de480c;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease-in-out;
}
.btn-outline-alt:hover {
  color: #fff;
  text-decoration: none;
  background-color: #de480c;
}

.btn-full {
  width: 160px;
  height: 48px;
  background-color: #de480c;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease-in-out;
}
.btn-full:hover {
  background-color: #ae3a0c;
}

p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}
@media (max-width: 576px) {
  p {
    /* 576 */
    font-size: 14px;
    line-height: 22px; /* 157.143% */
  }
}

.nav {
  position: relative;
  z-index: 100;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media (max-width: 991px) {
  .nav__hamburger {
    display: flex;
  }
}
.nav__close {
  display: none;
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
}
.nav__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.nav__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 991px) {
  .nav__close {
    display: block;
  }
}
.nav .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
}
.nav .inner .logo {
  width: 260px;
}
@media (max-width: 576px) {
  .nav .inner .logo {
    /* 576 */
    width: 200px;
  }
}
.nav .inner #primary-menu {
  display: flex;
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav .inner #primary-menu li a {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
  text-decoration: none;
}
.nav .inner #primary-menu li a:hover {
  color: #000;
  text-decoration: underline;
}
.nav .inner #primary-menu li:last-child a {
  border: 2px solid #de480c;
  width: 130px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
  transition: all 0.1s ease-in-out;
}
.nav .inner #primary-menu li:last-child a:hover {
  color: #000;
  text-decoration: none;
  background-color: #de480c;
  color: #fff;
}
@media (max-width: 991px) {
  .nav .menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(12, 16, 24, 0.97);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav .menu #primary-menu {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .nav .menu #primary-menu li a {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 12px 24px;
    display: block;
  }
  .nav .menu #primary-menu li a:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
  }
  .nav .menu #primary-menu li:last-child a {
    margin-top: 16px;
    width: auto;
    height: auto;
    padding: 13px 32px;
    border-color: #de480c;
    color: #fff;
  }
  .nav .menu #primary-menu li:last-child a:hover {
    background-color: #de480c;
    color: #fff;
  }
}
.nav--open .menu {
  opacity: 1;
  visibility: visible;
}

.footer-banner {
  background-color: #001d30;
}
.footer-banner .inner {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .footer-banner .inner {
    flex-direction: column;
    align-items: center;
    padding: 28px 0;
    gap: 12px;
  }
  .footer-banner .inner a {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

.footer {
  background-color: #000;
  padding: 100px 0 80px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer__logo {
  display: block;
  flex-shrink: 0;
}
.footer__logo img {
  height: 36px;
  width: auto;
}
.footer__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__nav a:hover {
  opacity: 0.7;
}
.footer__social {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.footer__social-link:hover {
  border-color: #fff;
  opacity: 0.8;
}
.footer__social-link svg {
  display: block;
}
.footer__divider {
  border: none;
  background: #656565;
  height: 1px;
  width: 100%;
  margin: 100px 0 80px;
  opacity: 1;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__bottom span,
.footer__bottom a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
}
.footer__bottom a:hover {
  opacity: 1;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .footer {
    padding: 72px 0 56px;
  }
  .footer__top {
    gap: 28px;
  }
  .footer__nav {
    gap: 24px;
  }
  .footer__divider {
    margin: 72px 0 56px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 56px 0 40px;
  }
  .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer__nav {
    gap: 16px 24px;
    justify-content: center;
  }
  .footer__divider {
    margin: 56px 0 40px;
  }
  .footer__bottom {
    gap: 16px 20px;
    text-align: center;
  }
}

.home-hero {
  min-height: 670px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.5;
  z-index: 1;
}
.home-hero .inner {
  position: relative;
  z-index: 2;
}
.home-hero .content {
  max-width: 840px;
}
.home-hero .inner .tag {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 25px;
}
.home-hero .inner h1 {
  color: #fff;
  font-size: 68px;
  font-style: normal;
  font-weight: 500;
  line-height: 80px; /* 117.647% */
  letter-spacing: -1.36px;
  margin-bottom: 25px;
}
.home-hero .inner p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  max-width: 600px;
  line-height: 30px; /* 166.667% */
  margin-bottom: 35px;
}
.home-hero .inner .buttons {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .home-hero {
    padding: 80px 0;
    min-height: unset;
  }
  .home-hero .content {
    max-width: 100%;
  }
  .home-hero .inner .tag {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 18px;
  }
  .home-hero .inner h1 {
    font-size: 46px;
    line-height: 56px;
    letter-spacing: -0.8px;
    margin-bottom: 18px;
  }
  .home-hero .inner p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 28px;
  }
}
@media (max-width: 480px) {
  .home-hero {
    padding: 60px 0;
  }
  .home-hero .inner .tag {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
  }
  .home-hero .inner h1 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  .home-hero .inner p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .home-hero .inner .buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .home-hero .inner .buttons a {
    width: 100%;
    text-align: center;
  }
}

.intro-block {
  padding: 70px 0;
}
.intro-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-block__label {
  display: block;
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.22px;
}
.intro-block__heading {
  color: #000;
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px; /* 121.739% */
  letter-spacing: -0.92px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .intro-block {
    padding: 56px 0;
  }
  .intro-block__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .intro-block__label {
    font-size: 18px;
    letter-spacing: -0.18px;
  }
  .intro-block__heading {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .intro-block {
    padding: 44px 0;
  }
  .intro-block__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .intro-block__label {
    font-size: 15px;
    letter-spacing: -0.15px;
  }
  .intro-block__heading {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
}

.process-steps {
  background-color: #61c2d5;
  padding: 65px 0;
}
.process-steps__title {
  color: #000;
  text-align: center;
  font-size: 38px;
  font-weight: 400;
  line-height: 56px;
  margin-bottom: 48px;
}
.process-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
}
.process-steps__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.process-steps__icon {
  width: 80px;
  height: auto;
  margin-bottom: 24px;
}
.process-steps__label {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 12px;
}
.process-steps__body {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 900px) {
  .process-steps {
    padding: 60px 0;
  }
  .process-steps__title {
    font-size: 30px;
    line-height: 44px;
    margin-bottom: 36px;
  }
  .process-steps__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 576px) {
  .process-steps {
    padding: 48px 0;
  }
  .process-steps__title {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 28px;
  }
  .process-steps__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .process-steps__icon {
    width: 64px;
  }
}

.spacing {
  height: 80px;
}
@media (max-width: 900px) {
  .spacing {
    height: 60px;
  }
}
@media (max-width: 768px) {
  .spacing {
    height: 48px;
  }
}

.content-image {
  padding: 80px 0px 0px 0px;
}
.content-image__frame {
  position: relative;
  flex: 900;
}
.content-image__frame-bg {
  display: block;
  width: 100%;
  height: auto;
}
.content-image__content {
  flex: 560;
  padding-left: 100px;
}
.content-image__content .tag {
  color: #33808e;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px; /* 311.111% */
}
.content-image__content h2 {
  color: #000;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px; /* 115.789% */
  margin-bottom: 26px;
}
.content-image__content p {
  margin-bottom: 32px;
}
.content-image__image {
  position: absolute;
  top: 4%;
  left: 1.5%;
  width: 97%;
  height: auto;
  z-index: 1;
  aspect-ratio: 730/470;
  object-fit: cover;
}
.content-image .buttons {
  display: flex;
  gap: 15px;
}
.content-image .inner {
  display: flex;
  gap: 80px;
  align-items: center;
}
.content-image--alt .inner {
  flex-direction: row-reverse;
}
.content-image--alt .content-image__content {
  padding-left: 0;
  padding-right: 100px;
}
@media (max-width: 900px) {
  .content-image {
    padding: 60px 0px 0px 0px;
  }
  .content-image .inner {
    gap: 48px;
  }
  .content-image__content {
    padding-left: 48px;
  }
  .content-image__content h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  .content-image--alt .content-image__content {
    padding-left: 0;
    padding-right: 48px;
  }
}
@media (max-width: 768px) {
  .content-image {
    padding: 30px 0px 0px 0px;
  }
  .content-image .inner {
    flex-direction: column !important;
    gap: 32px;
  }
  .content-image__frame {
    width: 100%;
    flex: unset;
  }
  .content-image__content {
    flex: unset;
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .content-image__content h2 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 16px;
  }
  .content-image__content .tag {
    font-size: 16px;
    line-height: 44px;
  }
  .content-image .buttons {
    flex-direction: column;
  }
  .content-image .buttons a {
    width: 100%;
    text-align: center;
  }
}

.dual-panel {
  padding: 80px 0px;
}
.dual-panel h2 {
  color: #000;
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px; /* 115.789% */
  margin-bottom: 40px;
}
.dual-panel .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.dual-panel .inner .panel {
  background-color: #001d30;
  padding: 80px 30px;
}
.dual-panel .inner .panel:last-of-type {
  background-color: #133855 !important;
}
.dual-panel .inner .panel svg,
.dual-panel .inner .panel img {
  display: block;
  margin: 0 auto 24px auto;
}
.dual-panel .inner .panel {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.dual-panel .inner .panel .content {
  max-width: 440px;
}
.dual-panel .inner .panel .content h3 {
  color: #fff;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px; /* 215.385% */
  letter-spacing: -0.26px;
}
.dual-panel .inner .panel .content p {
  color: #fff;
  margin-bottom: 34px;
}
.dual-panel .inner .panel .content a {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .dual-panel {
    padding: 60px 0;
  }
  .dual-panel h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 28px;
  }
  .dual-panel .inner {
    gap: 16px;
  }
  .dual-panel .inner .panel {
    padding: 56px 24px;
  }
  .dual-panel .inner .panel .content h3 {
    font-size: 22px;
    line-height: 44px;
  }
}
@media (max-width: 768px) {
  .dual-panel {
    padding: 48px 0;
  }
  .dual-panel h2 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .dual-panel .inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dual-panel .inner .panel {
    padding: 48px 24px;
  }
  .dual-panel .inner .panel .content h3 {
    font-size: 20px;
    line-height: 32px;
  }
  .dual-panel .inner .panel .content p {
    margin-bottom: 24px;
  }
}

.video-panel {
  background-color: #a3b6c3;
  padding: 80px 0;
}
.video-panel__title {
  color: #000;
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  margin-bottom: 40px;
}
.video-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #fff;
}
.video-panel__media {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.video-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-panel__media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.video-panel__media-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.video-panel__media-play svg {
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.video-panel__media-play:hover svg {
  transform: scale(1.1);
  opacity: 0.85;
}
.video-panel__quote {
  padding: 56px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-panel__quote-text {
  color: #000;
  font-size: 26px;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 28px;
}
.video-panel__quote-body {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 28px;
}
.video-panel__quote-author {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
.video-panel__modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}
.video-panel__modal.is-open {
  display: flex;
}
.video-panel__modal-inner {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
}
.video-panel__modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-panel__modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.video-panel__modal-close:hover {
  opacity: 0.7;
}
@media (max-width: 900px) {
  .video-panel {
    padding: 60px 0;
  }
  .video-panel__title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 28px;
  }
  .video-panel__quote {
    padding: 40px 36px;
  }
  .video-panel__quote-text {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .video-panel {
    padding: 48px 0;
  }
  .video-panel__title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .video-panel__inner {
    grid-template-columns: 1fr;
  }
  .video-panel__media {
    min-height: 260px;
  }
  .video-panel__quote {
    padding: 36px 28px;
  }
  .video-panel__quote-text {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 16px;
  }
  .video-panel__quote-body {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

.partner-logos {
  padding: 80px 0px;
}
.partner-logos h2 {
  color: #000;
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px; /* 115.789% */
  margin-bottom: 28px;
}
.partner-logos p {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
  margin: 0px auto 45px auto;
  max-width: 750px;
}
.partner-logos .logos {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .partner-logos {
    padding: 60px 0;
  }
  .partner-logos h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  .partner-logos p {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .partner-logos .logos {
    justify-content: center;
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .partner-logos {
    padding: 48px 0;
  }
  .partner-logos h2 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 16px;
  }
  .partner-logos p {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .partner-logos .logos {
    gap: 24px 32px;
  }
  .partner-logos .logos img,
  .partner-logos .logos svg {
    max-height: 36px;
    width: auto;
  }
}

.full-content {
  padding: 80px 0px;
}
.full-content h2 {
  color: #000;
  text-align: center;
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px; /* 121.739% */
  letter-spacing: -0.92px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.full-content p {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}
.full-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .full-content {
    padding: 60px 0;
  }
  .full-content h2 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .full-content {
    padding: 48px 0;
  }
  .full-content h2 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.56px;
    margin-bottom: 14px;
  }
  .full-content p {
    font-size: 15px;
  }
}

.benefits-table {
  background: #a3b6c3;
  padding: 80px 0;
}
.benefits-table h2 {
  text-align: center;
  font-size: 46px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -0.92px;
  margin-bottom: 60px;
  color: #000;
}
.benefits-table__rows {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.benefits-table__row {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.benefits-table__row:last-child {
  border-bottom: none;
}
.benefits-table__label {
  flex: 0 0 38%;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.56px;
  line-height: 1.3;
  color: #000;
}
.benefits-table__body {
  flex: 1;
  font-size: 15px;
  line-height: 1.7;
  color: #1a1a1a;
}
.benefits-table__body p {
  margin: 0 0 4px;
}
.benefits-table__body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .benefits-table {
    padding: 72px 0;
  }
  .benefits-table h2 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 48px;
  }
  .benefits-table__row {
    gap: 48px;
    padding: 36px 0;
  }
  .benefits-table__label {
    font-size: 22px;
  }
  .benefits-table__body {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .benefits-table {
    padding: 56px 0;
  }
  .benefits-table h2 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.56px;
    margin-bottom: 36px;
  }
  .benefits-table__row {
    flex-direction: column;
    gap: 12px;
    padding: 28px 0;
  }
  .benefits-table__label {
    flex: none;
    font-size: 20px;
  }
  .benefits-table__body {
    font-size: 14px;
  }
}

.four-column-content {
  background-color: #61c2d5;
  padding: 80px 0px;
}
.four-column-content h2 {
  color: #000;
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px; /* 147.368% */
  margin-bottom: 40px;
}
.four-column-content .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
}
.four-column-content .content .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.four-column-content .content .item h3 {
  color: #000;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 150% */
  margin-bottom: 20px;
  height: 60px;
}
@media (max-width: 900px) {
  .four-column-content {
    padding: 60px 0;
  }
  .four-column-content h2 {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 32px;
  }
  .four-column-content .content {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .four-column-content {
    padding: 48px 0;
  }
  .four-column-content h2 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 28px;
  }
  .four-column-content .content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .four-column-content .content .item h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
    height: auto;
  }
}

.our-history {
  background: #a3b6c3;
  padding: 80px 0px;
}
.our-history h2 {
  color: #000;
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px; /* 147.368% */
  margin-bottom: 40px;
}
.our-history p {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 25px;
}
.our-history .btn-full {
  margin: 0 auto;
}
@media (max-width: 900px) {
  .our-history {
    padding: 60px 0;
  }
  .our-history h2 {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .our-history {
    padding: 48px 0;
  }
  .our-history h2 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 24px;
  }
  .our-history p {
    font-size: 15px;
    line-height: 1.65;
  }
  .our-history .btn-full {
    width: 100%;
    text-align: center;
  }
}

.meet-the-team {
  background: #fff;
  padding: 100px 0;
}
.meet-the-team h2 {
  font-size: 46px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -0.92px;
  color: #000;
  margin-bottom: 60px;
}
.meet-the-team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 100px;
}
.meet-the-team__member {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.meet-the-team__photo {
  flex: 0 0 160px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.meet-the-team__info {
  flex: 1;
}
.meet-the-team__name {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  margin-bottom: 4px;
}
.meet-the-team__role {
  display: block;
  color: #444;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px; /* 162.5% */
  margin-bottom: 5px;
}
.meet-the-team__bio {
  font-size: 14px;
  line-height: 1.7;
  color: #1a1a1a;
}
@media (max-width: 900px) {
  .meet-the-team {
    padding: 72px 0;
  }
  .meet-the-team h2 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 48px;
  }
  .meet-the-team__grid {
    gap: 48px 48px;
  }
  .meet-the-team__photo {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
  }
}
@media (max-width: 768px) {
  .meet-the-team {
    padding: 56px 0;
  }
  .meet-the-team h2 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.56px;
    margin-bottom: 36px;
  }
  .meet-the-team__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .meet-the-team__photo {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
  }
  .meet-the-team__name {
    font-size: 16px;
  }
  .meet-the-team__bio {
    font-size: 14px;
  }
}

.job-listing {
  padding: 80px 0px;
}
.job-listing .title h2 {
  color: #000;
  text-align: center;
  margin-bottom: 38px;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px; /* 115.789% */
}
.job-listing .title p {
  max-width: 750px;
  margin: 0 auto 70px auto;
  text-align: center;
}
.job-listing .job-list {
  max-width: 1100px;
  margin: 0 auto;
}
.job-listing .job-list .item {
  border-bottom: 1px solid #6b6b6b;
  padding: 25px 0px 35px 0px;
}
.job-listing .job-list .item:first-child {
  border-top: 1px solid #6b6b6b;
}
.job-listing .job-list .item {
  display: flex;
  justify-content: space-between;
  gap: 180px;
  align-items: center;
}
.job-listing .job-list .item h3 {
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px; /* 254.545% */
  letter-spacing: -0.22px;
}
@media (max-width: 900px) {
  .job-listing {
    padding: 60px 0;
  }
  .job-listing .title h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 24px;
  }
  .job-listing .title p {
    margin-bottom: 48px;
  }
  .job-listing .job-list .item {
    gap: 48px;
  }
  .job-listing .job-list .item h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 768px) {
  .job-listing {
    padding: 48px 0;
  }
  .job-listing .title h2 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 16px;
  }
  .job-listing .title p {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .job-listing .job-list .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0 28px;
  }
  .job-listing .job-list .item h3 {
    font-size: 18px;
    line-height: 26px;
  }
  .job-listing .job-list .item .button {
    width: 100%;
  }
  .job-listing .job-list .item .button .btn-full {
    width: 100%;
    text-align: center;
  }
}

.contact-hero {
  min-height: 670px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-color: #001d30;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.5;
  z-index: 1;
}
.contact-hero .inner {
  position: relative;
  z-index: 2;
}
.contact-hero .content {
  max-width: 840px;
}
.contact-hero .inner .tag {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 25px;
}
.contact-hero .inner h1 {
  color: #fff;
  font-size: 68px;
  font-style: normal;
  font-weight: 500;
  line-height: 80px; /* 117.647% */
  letter-spacing: -1.36px;
  margin-bottom: 25px;
}
.contact-hero .inner p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  max-width: 600px;
  line-height: 30px; /* 166.667% */
  margin-bottom: 35px;
}
.contact-hero .inner p a {
  color: #61c2d5;
}
.contact-hero .inner .buttons {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0;
    min-height: unset;
  }
  .contact-hero .content {
    max-width: 100%;
  }
  .contact-hero .inner .tag {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 18px;
  }
  .contact-hero .inner h1 {
    font-size: 46px;
    line-height: 56px;
    letter-spacing: -0.8px;
    margin-bottom: 18px;
  }
  .contact-hero .inner p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 28px;
  }
}
@media (max-width: 480px) {
  .contact-hero {
    padding: 60px 0;
  }
  .contact-hero .inner .tag {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
  }
  .contact-hero .inner h1 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  .contact-hero .inner p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .contact-hero .inner .buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .contact-hero .inner .buttons a {
    width: 100%;
    text-align: center;
  }
}

.enquiry-form {
  padding: 80px 0px;
}
.enquiry-form h2 {
  color: #000;
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px; /* 115.789% */
  margin-bottom: 42px;
}
.enquiry-form .inner {
  max-width: 920px;
  margin: 0 auto;
}
.enquiry-form .inner .gform_fields {
  gap: 20px !important;
}
.enquiry-form .inner .gfield_label {
  color: #333;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 216.667% */
}
.enquiry-form .inner input[type=text],
.enquiry-form .inner input[type=tel],
.enquiry-form .inner input[type=email],
.enquiry-form .inner textarea {
  border: 2px solid #8b8b8b !important;
  border-radius: 0px !important;
  height: 48px;
  box-shadow: none !important;
}
.enquiry-form .inner p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}
.enquiry-form .inner .gform_validation_errors {
  display: none !important;
}
.enquiry-form .inner .gform_footer .gform_button {
  width: 160px !important;
  height: 48px !important;
  background-color: #de480c !important;
  color: #fff !important;
  text-align: center !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: normal !important;
  letter-spacing: 0.32px !important;
  box-shadow: none !important;
  border-radius: 0px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.1s ease-in-out !important;
}
.enquiry-form .inner .gform_footer .gform_button:hover {
  background-color: #ae3a0c !important;
}

.implementation-plan {
  padding: 0px 0px 80px 0;
}
.implementation-plan h2 {
  text-align: center;
  font-size: 46px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -0.92px;
  margin-bottom: 60px;
  color: #000;
}
.implementation-plan__rows {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.implementation-plan__row {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.implementation-plan__label {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.implementation-plan__step {
  font-size: 28px;
  font-weight: 400;
  color: #000;
  line-height: 1.3;
}
.implementation-plan__title {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.56px;
  line-height: 1.3;
  color: #000;
}
.implementation-plan__body {
  flex: 1;
  font-size: 15px;
  line-height: 1.7;
  color: #1a1a1a;
}
.implementation-plan__body p {
  margin: 0 0 4px;
}
.implementation-plan__body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .implementation-plan {
    padding: 0px 0px 72px 0;
  }
  .implementation-plan h2 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 48px;
  }
  .implementation-plan__row {
    gap: 48px;
    padding: 36px 0;
  }
  .implementation-plan__step {
    font-size: 22px;
  }
  .implementation-plan__title {
    font-size: 22px;
  }
  .implementation-plan__body {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .implementation-plan {
    padding: 0px 0px 56px 0;
  }
  .implementation-plan h2 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.56px;
    margin-bottom: 36px;
  }
  .implementation-plan__row {
    flex-direction: column;
    gap: 8px;
    padding: 28px 0;
  }
  .implementation-plan__label {
    flex: none;
  }
  .implementation-plan__step {
    font-size: 20px;
  }
  .implementation-plan__title {
    font-size: 20px;
  }
  .implementation-plan__body {
    font-size: 14px;
  }
}

.plain-text-page {
  padding: 80px 0 100px;
}
.plain-text-page .inner {
  max-width: 860px;
}
.plain-text-page h1 {
  font-size: 68px;
  font-weight: 500;
  line-height: 80px;
  letter-spacing: -1.36px;
  color: #000;
  margin-bottom: 48px;
}
.plain-text-page__content h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.64px;
  color: #000;
  margin: 48px 0 16px;
}
.plain-text-page__content h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.44px;
  color: #000;
  margin: 36px 0 12px;
}
.plain-text-page__content h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
  margin: 28px 0 10px;
}
.plain-text-page__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #1a1a1a;
  margin: 0 0 18px;
}
.plain-text-page__content p:last-child {
  margin-bottom: 0;
}
.plain-text-page__content ul,
.plain-text-page__content ol {
  margin: 0 0 18px;
  padding-left: 24px;
}
.plain-text-page__content ul li,
.plain-text-page__content ol li {
  font-size: 16px;
  line-height: 28px;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.plain-text-page__content ul li:last-child,
.plain-text-page__content ol li:last-child {
  margin-bottom: 0;
}
.plain-text-page__content ul li {
  list-style: disc;
}
.plain-text-page__content ol li {
  list-style: decimal;
}
.plain-text-page__content a {
  color: #de480c;
  text-decoration: underline;
}
.plain-text-page__content a:hover {
  color: #ae3a0c;
}
.plain-text-page__content strong {
  font-weight: 600;
}
.plain-text-page__content hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin: 48px 0;
}
.plain-text-page__content blockquote {
  border-left: 3px solid #de480c;
  margin: 32px 0;
  padding: 8px 0 8px 24px;
}
.plain-text-page__content blockquote p {
  font-size: 18px;
  line-height: 30px;
  font-style: italic;
  color: #333;
}
@media (max-width: 900px) {
  .plain-text-page {
    padding: 64px 0 80px;
  }
  .plain-text-page h1 {
    font-size: 46px;
    line-height: 56px;
    letter-spacing: -0.8px;
    margin-bottom: 36px;
  }
  .plain-text-page__content h2 {
    font-size: 26px;
    margin: 40px 0 14px;
  }
  .plain-text-page__content h3 {
    font-size: 20px;
    margin: 28px 0 10px;
  }
}
@media (max-width: 768px) {
  .plain-text-page {
    padding: 48px 0 64px;
  }
  .plain-text-page h1 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
  }
  .plain-text-page__content h2 {
    font-size: 22px;
    margin: 32px 0 12px;
  }
  .plain-text-page__content h3 {
    font-size: 18px;
    margin: 24px 0 8px;
  }
  .plain-text-page__content h4 {
    font-size: 16px;
  }
  .plain-text-page__content p,
  .plain-text-page__content li {
    font-size: 15px;
    line-height: 26px;
  }
  .plain-text-page__content blockquote p {
    font-size: 16px;
    line-height: 26px;
  }
}

.error-404 {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.error-404__inner {
  max-width: 640px;
}
.error-404__code {
  display: block;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -4px;
  color: #de480c;
  margin-bottom: 24px;
}
.error-404 h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 20px;
}
.error-404 p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #444;
  margin-bottom: 40px;
}
.error-404__actions {
  display: flex;
  gap: 16px;
}
@media (max-width: 900px) {
  .error-404 {
    padding: 80px 0;
  }
  .error-404__code {
    font-size: 96px;
    letter-spacing: -3px;
    margin-bottom: 20px;
  }
  .error-404 h1 {
    font-size: 38px;
  }
  .error-404 p {
    font-size: 17px;
    line-height: 28px;
  }
}
@media (max-width: 768px) {
  .error-404 {
    padding: 64px 0;
    min-height: unset;
  }
  .error-404__code {
    font-size: 72px;
    letter-spacing: -2px;
    margin-bottom: 16px;
  }
  .error-404 h1 {
    font-size: 30px;
    letter-spacing: -0.6px;
    margin-bottom: 16px;
  }
  .error-404 p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 32px;
  }
  .error-404 p br {
    display: none;
  }
  .error-404__actions {
    flex-direction: column;
  }
  .error-404__actions .btn-full,
  .error-404__actions .btn-outline-alt {
    width: 100%;
  }
}
/*# sourceMappingURL=style.min.css.map */
