@font-face {
  font-family: "Metropolis";
  src: url("./public/fonts/Metropolis-Thin.woff2") format("woff2"), url("./public/fonts/Metropolis-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis";
  src: url("./public/fonts/Metropolis-ExtraLight.woff2") format("woff2"), url("./public/fonts/Metropolis-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis";
  src: url("./public/fonts/Metropolis-Light.woff2") format("woff2"), url("./public/fonts/Metropolis-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis";
  src: url("./public/fonts/Metropolis-Regular.woff2") format("woff2"), url("./public/fonts/Metropolis-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis";
  src: url("./public/fonts/Metropolis-Medium.woff2") format("woff2"), url("./public/fonts/Metropolis-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis";
  src: url("./public/fonts/Metropolis-SemiBold.woff2") format("woff2"), url("./public/fonts/Metropolis-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis";
  src: url("./public/fonts/Metropolis-Bold.woff2") format("woff2"), url("./public/fonts/Metropolis-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis";
  src: url("./public/fonts/Metropolis-ExtraBold.woff2") format("woff2"), url("./public/fonts/Metropolis-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis";
  src: url("./public/fonts/Metropolis-Black.woff2") format("woff2"), url("./public/fonts/Metropolis-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lay Grotesk";
  src: url("./public/fonts/lay/LayGrotesk-Trial-Regular.woff2") format("woff2"), url("./public/fonts/lay/LayGrotesk-Trial-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lay Grotesk";
  src: url("./public/fonts/lay/LayGrotesk-Trial-Medium.woff2") format("woff2"), url("./public/fonts/lay/LayGrotesk-Trial-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lay Grotesk";
  src: url("./public/fonts/lay/LayGrotesk-Trial-Semibold.woff2") format("woff2"), url("./public/fonts/lay/LayGrotesk-Trial-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lay Grotesk";
  src: url("./public/fonts/lay/LayGrotesk-Trial-Bold.woff2") format("woff2"), url("./public/fonts/lay/LayGrotesk-Trial-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lay Grotesk";
  src: url("./public/fonts/lay/LayGrotesk-Trial-Black.woff2") format("woff2"), url("./public/fonts/lay/LayGrotesk-Trial-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-navy: #0d2137;
  --color-green: #25d366;
  --color-yellow: #efb52b;
  --color-text-dark: #575757;
  --color-text-muted: #949494;
  --color-bg-light: #fbfbfb;
  --font-heading: 'Metropolis', sans-serif;
  --font-body: 'Metropolis', sans-serif;
  --font-secondary: 'Lay Grotesk', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

.font-heading {
  font-family: var(--font-heading);
}

.font-body {
  font-family: var(--font-body);
}

.font-secondary {
  font-family: var(--font-secondary);
}

.section-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.section-label .label-line {
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: rgb(13, 33, 55);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.section-label .label-text {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 10px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  color: rgb(148, 148, 148);
}
@media (min-width: 1200px) {
  .section-label .label-text {
    font-size: 1.125rem;
  }
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.15;
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .section-heading {
    font-size: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .section-heading {
    font-size: 3.3125rem;
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1600px) {
  .section-heading {
    font-size: 4.25rem;
  }
}

.btn-navy {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background-color: var(--color-navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid var(--color-navy);
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-navy .arrow {
  font-size: 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (hover: hover) {
  .btn-navy:hover {
    background-color: rgb(8.125, 20.625, 34.375);
  }
  .btn-navy:hover .arrow {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
}
@media (min-width: 992px) {
  .btn-navy {
    font-size: 0.9375rem;
    padding: 14px 28px;
  }
}
@media (min-width: 1200px) {
  .btn-navy {
    font-size: 1rem;
    padding: 1.0625rem 1.5rem;
    -webkit-column-gap: 1.5625rem;
       -moz-column-gap: 1.5625rem;
            column-gap: 1.5625rem;
  }
}
@media (min-width: 1600px) {
  .btn-navy {
    font-size: 1.125rem;
  }
}

.btn-green {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background-color: var(--color-green);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid var(--color-green);
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-green .arrow {
  font-size: 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: inline-block;
}
@media (hover: hover) {
  .btn-green:hover {
    background-color: #1fb955;
  }
  .btn-green:hover .arrow {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
}
@media (min-width: 992px) {
  .btn-green {
    font-size: 0.9375rem;
    padding: 14px 28px;
  }
}
@media (min-width: 1200px) {
  .btn-green {
    font-size: 1rem;
    padding: 1.0625rem 1.5rem;
    -webkit-column-gap: 1.5625rem;
       -moz-column-gap: 1.5625rem;
            column-gap: 1.5625rem;
  }
}
@media (min-width: 1600px) {
  .btn-green {
    font-size: 1.125rem;
  }
}

.btn-yellow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background-color: var(--color-yellow);
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border: 2px solid var(--color-yellow);
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
@media (min-width: 1200px) {
  .btn-yellow {
    font-size: 1rem;
    padding: 1.0625rem 1.5rem;
    -webkit-column-gap: 1.5625rem;
       -moz-column-gap: 1.5625rem;
            column-gap: 1.5625rem;
  }
}
@media (min-width: 1600px) {
  .btn-yellow {
    font-size: 1.125rem;
  }
}
.btn-yellow .arrow {
  font-size: 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (hover: hover) {
  .btn-yellow:hover {
    background-color: rgb(224.2736842105, 162.9157894737, 16.9263157895);
  }
  .btn-yellow:hover .arrow {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(28px);
            transform: translateY(28px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(28px);
            transform: translateY(28px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.anim-fade-up {
  opacity: 0;
  -webkit-transform: translateY(28px);
          transform: translateY(28px);
}
.anim-fade-up.anim-active {
  -webkit-animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 95%;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1644px;
  }
}

.sep-line {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
}