@font-face {
  font-family: "GoogleSans";
  src: url("../fonts/GoogleSansFlexRegular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GoogleSans";
  src: url("../fonts/GoogleSansFlexSemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
* {
  font-family: "GoogleSans", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 25px;
  font-weight: 400;
}

h1, h2, h3, h4 {
  color: #0D2C54;
  margin: 24px 0 16px 0;
  font-weight: 600;
}
h1:first-child, h1:only-child, h2:first-child, h2:only-child, h3:first-child, h3:only-child, h4:first-child, h4:only-child {
  margin-top: 0;
}
h1:only-child, h2:only-child, h3:only-child, h4:only-child {
  margin-bottom: 0;
}

h1, .h1 {
  font-size: 40px;
  line-height: 48px;
}
@media (min-width: 1024px) {
  h1, .h1 {
    font-size: 48px;
    line-height: 56px;
  }
}

h2, .h2 {
  font-size: 32px;
  line-height: 36px;
}
@media (min-width: 1024px) {
  h2, .h2 {
    font-size: 36px;
    line-height: 44px;
  }
}

h3, .h3 {
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 1024px) {
  h3, .h3 {
    font-size: 28px;
    line-height: 36px;
  }
}

h4, .h4 {
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  h4, .h4 {
    font-size: 24px;
    line-height: 32px;
  }
}

p {
  font-size: 18px;
  line-height: 26px;
  color: #444444;
  margin: 0 0 16px 0;
}
p:last-child, p:only-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 16px 32px;
}
ul:only-child, ul:last-child,
ol:only-child,
ol:last-child {
  margin-bottom: 0;
}
ul li,
ol li {
  color: #0D2C54;
}

.branded-list ul, .branded-list ol {
  list-style-type: none;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.branded-list ul:only-child, .branded-list ul:last-child, .branded-list ol:only-child, .branded-list ol:last-child {
  margin-bottom: 0;
}
.branded-list ul li, .branded-list ol li {
  position: relative;
  padding-left: 28px;
}
.branded-list ul li::before, .branded-list ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("../svg/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

table {
  border-collapse: collapse;
}
table th {
  font-weight: 600;
  color: #0D2C54;
}
table td, table th {
  border: 1px solid #DDDDDD;
  padding: 8px;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 12px 12px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #0D2C54;
}

.hamburger-box {
  width: 28px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 28px;
  height: 2px;
  background-color: #0D2C54;
  border-radius: 2px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7px;
}
.hamburger-inner::after {
  bottom: -7px;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1px;
}
.hamburger--slider .hamburger-inner::before {
  top: 7px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 14px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-4px, -5px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(-90deg);
}

.hamburger {
  display: flex;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  height: 3px;
}

.primary-nav {
  display: none;
}
@media (min-width: 1024px) {
  .primary-nav {
    display: block;
  }
}
.primary-nav > .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .primary-nav > .menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.primary-nav .menu-item {
  position: relative;
  border-bottom: 1px solid #DDDDDD;
}
@media (min-width: 1024px) {
  .primary-nav .menu-item {
    border-bottom: none;
  }
}
.primary-nav .menu-item > a {
  transition: all 0.08s ease-in-out;
  display: block;
  padding: 16px;
  color: #0D2C54;
  text-decoration: none;
  font-weight: 500;
  background-color: #FFFFFF;
}
@media (min-width: 1024px) {
  .primary-nav .menu-item > a {
    padding: 8px 0;
  }
}
.primary-nav .menu-item > a:hover, .primary-nav .menu-item > a:focus-visible {
  color: #009CDF;
  background-color: #F5F5F5;
}
@media (min-width: 1024px) {
  .primary-nav .menu-item > a:hover, .primary-nav .menu-item > a:focus-visible {
    background-color: #FFFFFF;
  }
}
.primary-nav .menu-item.current-menu-item > a, .primary-nav .menu-item.current-menu-parent > a, .primary-nav .menu-item.current-menu-ancestor > a {
  color: #009CDF;
}
.primary-nav .menu-item:last-child {
  border-bottom: none;
}
@media (max-width: 1023.98px) {
  .primary-nav .menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .primary-nav .menu-item-has-children > a {
    flex: 1 1 auto;
  }
}
@media (min-width: 1024px) {
  .primary-nav .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    margin-left: 0.375rem;
    vertical-align: 0.15em;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.15s ease;
  }
}
.primary-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023.98px) {
  .primary-nav .menu-item-has-children > .sub-menu {
    display: none;
    flex-basis: 100%;
    padding-left: 0;
  }
  .primary-nav .menu-item-has-children.is-open > .sub-menu {
    display: flex;
    flex-direction: column;
    background-color: #F5F5F5;
  }
}
@media (min-width: 1024px) {
  .primary-nav .menu-item-has-children > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  }
  .primary-nav .menu-item-has-children > .sub-menu a {
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }
  .primary-nav .menu-item-has-children > .sub-menu .sub-menu {
    top: -0.5rem;
    left: 100%;
  }
  .primary-nav .menu-item-has-children:hover > .sub-menu,
  .primary-nav .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .primary-nav .menu-item-has-children:hover > a::after,
  .primary-nav .menu-item-has-children:focus-within > a::after {
    transform: rotate(180deg);
  }
}
@media (max-width: 1023.98px) {
  .primary-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 0;
    height: calc(100dvh - 90px);
    overflow-y: auto;
  }
}

.submenu-toggle {
  display: none;
}
@media (max-width: 1023.98px) {
  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: #0D2C54;
    flex: 0 0 auto;
  }
}
.submenu-toggle__icon {
  display: block;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}
.submenu-toggle[aria-expanded=true] .submenu-toggle__icon {
  transform: rotate(45deg);
}

@media (max-width: 1023.98px) {
  body.mobile-nav-open {
    overflow: hidden;
  }
}
.hamburger.is-active:hover,
.hamburger:hover {
  opacity: 1;
}

.hamburger {
  padding: 0;
}

.hero p a {
  text-decoration: underline;
  color: #0D2C54;
}

footer .logomark {
  position: absolute;
  width: 750px;
  opacity: 0.05;
  bottom: -100px;
  right: -50px;
}
@media (min-width: 768px) {
  footer .logomark {
    width: 500px;
  }
}
@media (min-width: 1024px) {
  footer .logomark {
    width: 750px;
    bottom: 50%;
    transform: translateY(50%);
  }
}
footer .menu {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 768px) {
  footer .menu {
    column-gap: 40px;
  }
}
footer .menu li a {
  color: #FFFFFF;
}
footer .menu li a:hover {
  text-decoration: underline;
}

body input[type=text], body input[type=email], body input[type=url], body input[type=password], body input[type=search], body input[type=number], body input[type=tel], body input[type=range], body input[type=date], body input[type=month], body input[type=week], body input[type=time], body input[type=datetime], body input[type=datetime-local], body input[type=color], body textarea {
  transition: all 0.08s ease-in-out;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  color: #444444;
  border-radius: 8px;
  padding: 12px;
}
body input[type=text]:hover, body input[type=email]:hover, body input[type=url]:hover, body input[type=password]:hover, body input[type=search]:hover, body input[type=number]:hover, body input[type=tel]:hover, body input[type=range]:hover, body input[type=date]:hover, body input[type=month]:hover, body input[type=week]:hover, body input[type=time]:hover, body input[type=datetime]:hover, body input[type=datetime-local]:hover, body input[type=color]:hover, body textarea:hover {
  background-color: #F5F5F5;
}
body input[type=text]:focus, body input[type=email]:focus, body input[type=url]:focus, body input[type=password]:focus, body input[type=search]:focus, body input[type=number]:focus, body input[type=tel]:focus, body input[type=range]:focus, body input[type=date]:focus, body input[type=month]:focus, body input[type=week]:focus, body input[type=time]:focus, body input[type=datetime]:focus, body input[type=datetime-local]:focus, body input[type=color]:focus, body textarea:focus {
  background-color: #FFFFFF;
}
body button[type=submit],
body input[type=submit] {
  font-family: "GoogleSans", arial, sans-serif;
  transition: all 0.08s ease-in-out;
  background-color: #009CDF;
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 1000px;
  padding: 16px 24px;
  border: none;
  cursor: pointer;
}
body button[type=submit]:hover,
body input[type=submit]:hover {
  background-color: #0D2C54;
}

.usp-card p:first-child, .usp-card p:first-of-type {
  color: #0D2C54;
  margin-bottom: 8px !important;
}

.card h3 {
  font-size: 24px;
  line-height: 32px;
}

.reviews-slider__viewport {
  overflow: hidden;
  width: 100%;
}
.reviews-slider__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}
.reviews-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
}
.reviews-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.reviews-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background-color: #FFFFFF;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.15s ease, opacity 0.15s ease;
  border: none;
}
.reviews-slider__arrow img {
  width: 24px;
  height: 24px;
  display: block;
}
.reviews-slider__arrow:hover {
  background-color: #F5F5F5;
}
.reviews-slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #DDDDDD;
  border: 0;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.reviews-slider__dot:hover, .reviews-slider__dot:focus-visible {
  background: #0D2C54;
}
.reviews-slider__dot.is-active {
  background: #009CDF;
  transform: scale(1.2);
}

* {
  scroll-behavior: smooth;
}

body {
  padding-top: 80px;
}

table {
  max-width: 100%;
  overflow-x: scroll;
  width: 100%;
}

/*# sourceMappingURL=main.css.map */
