@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/open-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "FontAwesome";
  src: url("assets/fonts/fontawesome-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: normal;
  font-display: block;
}

:root {
  --blue: #2191cb;
  --heading-blue: #0778b2;
  --cta-blue: #3a95c3;
  --body-gray: #8b8b8b;
  --light-gray: #f5f5f5;
  --footer-gray: #a3a8bc;
}

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

site-header,
site-footer {
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: #212529;
  background: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}

.fa {
  display: inline-block;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 122px;
  padding-top: 6px;
  border-bottom: 1px solid rgb(185 186 190 / 29%);
  background: transparent;
}

.navbar {
  position: relative;
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
}

.brand {
  position: relative;
  display: block;
  width: 155px;
  height: 90px;
  flex: 0 0 155px;
  padding: 0;
  margin: 0;
}

.brand-image {
  position: absolute;
  inset: 0;
  width: 155px;
  height: 90px;
}

.brand-image--blue {
  opacity: 0;
}

.nav-panel {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 18px 8px 39px;
  margin: 29px 10px 10px;
  border: 0;
  border-bottom: 4px solid transparent;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 300;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover,
.nav-item details[open] > .nav-link {
  border-bottom-color: rgb(201 200 200 / 71%);
}

.nav-item details > summary {
  list-style: none;
}

.nav-item details > summary::-webkit-details-marker {
  display: none;
}

.nav-item--dropdown .nav-link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 7px;
  vertical-align: 3px;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropdown-menu {
  position: absolute;
  top: 100px;
  left: 19px;
  z-index: 4;
  display: none;
  width: 225px;
  padding: 8px 0;
  border: 1px solid rgb(0 0 0 / 15%);
  border-radius: 4px;
  background: #d5d5d5;
}

.dropdown-menu a {
  display: block;
  padding: 8px 24px;
  color: var(--heading-blue);
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
}

.dropdown-menu a + a {
  border-top: 1px solid #bdbdbd;
}

.dropdown-menu a:hover {
  background: #c9c9c9;
}

.nav-item details[open] .dropdown-menu,
.nav-item--dropdown:hover .dropdown-menu {
  display: block;
}

.button {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease;
}

.button:hover {
  background: #0071a1;
}

.button--header {
  margin-top: 39px;
}

.nav-toggle,
.nav-toggle-button,
.nav-backdrop,
.nav-panel-brand {
  display: none;
}

@supports (animation-timeline: scroll()) {
  .site-header {
    position: fixed;
    animation: header-scroll linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 560px;
  }

  .brand-image--white {
    animation: logo-white linear both;
    animation-timeline: scroll(root block);
    animation-range: 500px 540px;
  }

  .brand-image--blue {
    animation: logo-blue linear both;
    animation-timeline: scroll(root block);
    animation-range: 500px 540px;
  }

  .nav-link {
    animation: nav-color linear both;
    animation-timeline: scroll(root block);
    animation-range: 500px 540px;
  }

  @keyframes header-scroll {
    0% {
      transform: translateY(0);
      padding-top: 6px;
      border-bottom-color: rgb(185 186 190 / 29%);
      background: transparent;
    }

    21.8%,
    98% {
      transform: translateY(-100%);
      padding-top: 6px;
      border-bottom-color: rgb(185 186 190 / 29%);
      background: transparent;
    }

    98.1%,
    100% {
      transform: translateY(0);
      padding-top: 0;
      border-bottom-color: transparent;
      background: #ededee;
    }
  }

  @keyframes logo-white {
    to {
      opacity: 0;
    }
  }

  @keyframes logo-blue {
    to {
      opacity: 1;
    }
  }

  @keyframes nav-color {
    to {
      color: var(--heading-blue);
      font-weight: 700;
    }
  }
}

.hero {
  position: relative;
  height: 940px;
  overflow: hidden;
  background: #233640;
}

.hero-track {
  display: flex;
  width: 300%;
  height: 100%;
  animation: hero-carousel 14.6s ease-in-out infinite;
  will-change: transform;
}

.hero:hover .hero-track {
  animation-play-state: paused;
}

.hero-slide {
  position: relative;
  width: 33.333333%;
  height: 940px;
  flex: 0 0 33.333333%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide--one {
  background-image: url("assets/images/hero-1.png");
}

.hero-slide--two {
  background-image: url("assets/images/hero-2.png");
}

.hero-copy {
  width: 66.666667%;
  margin-left: 16.666667%;
  padding: 565px 15px 135px;
  color: #fff;
}

.hero-copy h1 {
  margin: 0 0 -16px;
  color: #fff;
  font-size: 60px;
  font-weight: 300;
  line-height: 1.2;
}

.hero-copy h1 span {
  font-size: 36px;
}

.hero-copy strong {
  font-weight: 900;
}

.hero-copy p {
  margin: 0 0 16px;
  color: #fff;
  font-weight: 300;
}

@keyframes hero-carousel {
  0%,
  41.1% {
    transform: translateX(0);
  }

  50%,
  91.1% {
    transform: translateX(-33.333333%);
  }

  100% {
    transform: translateX(-66.666667%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-track {
    animation: none;
  }
}

.features {
  background: #fff url("assets/images/features-background.png") center / cover
    no-repeat;
}

.section-heading {
  padding: 60px 0 90px;
  margin: 0;
  color: var(--heading-blue);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 30px;
}

.feature-card {
  max-width: 100%;
  margin-bottom: 100px;
  color: var(--body-gray);
  font-weight: 300;
}

.feature-card-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  width: 330px;
  max-width: 100%;
  height: 82px;
  align-items: center;
  align-content: start;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #bababa;
}

.feature-card-header img {
  width: auto;
  height: 74px;
  flex: 0 0 auto;
  margin-right: 15px;
}

.feature-card h3 {
  margin: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.feature-card p {
  margin: 0 0 16px;
}

.operators {
  position: relative;
  padding: 70px 0;
  background: var(--light-gray);
  text-align: center;
}

.operators::before {
  content: "";
  position: absolute;
  top: 86px;
  right: 0;
  left: 0;
  height: 1px;
  background: #c4c7d3;
}

.operators-heading {
  position: relative;
  z-index: 1;
  margin: -2px 0 0;
  color: var(--heading-blue);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.operators-heading span {
  display: inline-block;
  padding: 0 25px;
  background: var(--light-gray);
}

.operator-logos {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.operator-logo {
  display: flex;
  width: 201px;
  height: 102px;
  flex: 0 0 201px;
  align-items: center;
  justify-content: center;
}

.operator-logo img {
  width: 166px;
  height: 76px;
  margin: 15px;
}

.call-to-action {
  padding: 50px 15px;
  background: var(--cta-blue);
  color: #fff;
  text-align: center;
}

.call-to-action a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.call-to-action span {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.call-to-action img {
  width: 35px;
  height: 25px;
  margin-left: 20px;
  object-fit: fill;
}

.solutions {
  max-height: 64vh;
  overflow: hidden;
  color: var(--body-gray);
  background: #fff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: calc(100% + 30px);
  min-height: 0;
  padding-top: 145px;
  padding-bottom: 120px;
  margin-right: -15px;
  margin-left: -15px;
}

.solution-card {
  position: relative;
  padding-inline: 15px;
}

.solution-card h2 {
  margin: 0 0 30px;
  color: var(--body-gray);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.solution-card ul {
  padding-left: 17px;
  margin: 0 0 16px;
}

.solution-card li {
  margin: 15px 0;
  font-weight: 300;
}

.solution-button {
  margin-top: 32px;
  text-align: center;
}

.hand-illustration {
  position: relative;
  z-index: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  padding-right: 15px;
  padding-left: 15px;
  margin: 5vh 0 5vh -45px;
}

.hand-illustration img {
  width: 381px;
  max-width: 100%;
  height: auto;
}

.site-footer {
  background: var(--light-gray);
  color: var(--footer-gray);
  font-family: "Open Sans", sans-serif;
}

.footer-top,
.footer-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-contact {
  padding-right: 15px;
}

.footer-email {
  margin: 0 0 10px;
  padding-top: 16px;
  font-size: 16px;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.address-grid address {
  padding-right: 15px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.address-grid strong {
  font-weight: 600;
}

.social {
  padding-left: 15px;
  margin-top: 35px;
  text-align: center;
}

.social > p {
  margin: 0 20px 20px 0;
  text-align: right;
}

.social-links {
  text-align: right;
}

.social-links a {
  display: inline-block;
  margin: 5px;
  color: var(--cta-blue);
  font-size: 20px;
  text-decoration: none;
}

.social-circle {
  position: relative;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cta-blue);
  color: #fff;
}

.social-circle .fa {
  font-size: 20px;
}

.footer-bottom {
  align-items: center;
  font-size: 16px;
}

.footer-bottom p {
  margin: 0;
  padding-right: 15px;
}

.footer-bottom a {
  color: var(--footer-gray);
}

.certifications {
  padding-left: 15px;
  text-align: right;
}

.certifications img {
  width: auto;
  margin-left: 10px;
}

.cookie-toggle {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 16px 28.8px;
  background: #2191cb;
  color: #fff;
  font-family: Helvetica, Calibri, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  flex: 1 1 auto;
  margin: 0 24px 0 0;
}

.cookie-banner button {
  display: inline-block;
  min-width: 140px;
  flex: 0 0 auto;
  padding: 5.76px 11.52px;
  border: 2px solid rgb(0 0 0 / 86%);
  border-radius: 5px;
  background: rgb(0 0 0 / 86%);
  color: #fff;
  font-size: 14.4px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-toggle:checked + .cookie-banner {
  display: none;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 1199.98px) {
  .site-header {
    height: 122px;
  }

  .navbar {
    align-items: flex-start;
  }

  .nav-toggle-button {
    position: relative;
    z-index: 32;
    display: flex;
    width: 44px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 28px;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 4px;
    cursor: pointer;
  }

  .nav-toggle-button span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgb(0 0 0 / 50%);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .nav-panel {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 31;
    width: 80vw;
    height: 100vh;
    padding: 18px 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    background: #fff;
    transition: transform 240ms ease;
  }

  .nav-panel-brand {
    display: block;
    margin-bottom: 20px;
  }

  .nav-panel-brand img {
    width: 155px;
    height: 90px;
  }

  .nav-list {
    display: block;
  }

  .nav-link {
    padding: 12px 0;
    margin: 0 0 10px;
    color: var(--heading-blue);
  }

  .nav-item--button {
    margin-top: 8px;
  }

  .button--header {
    margin-top: 0;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 0;
    margin: -4px 0 10px;
    border: 0;
    background: #eee;
  }

  .dropdown-menu a {
    padding: 10px 14px;
    font-size: 14px;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 30;
    background: rgb(0 0 0 / 55%);
  }

  .nav-toggle:checked ~ .nav-backdrop {
    display: block;
  }

  .nav-toggle:checked ~ .nav-panel {
    transform: translateX(0);
  }

  .nav-toggle:checked + .nav-toggle-button {
    position: fixed;
    top: 0;
    right: 14px;
    border-color: transparent;
  }

  .nav-toggle:checked + .nav-toggle-button span {
    background: var(--heading-blue);
  }

  .nav-toggle:checked + .nav-toggle-button span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-button span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 1024px) {
  .hero,
  .hero-slide {
    height: 460px;
  }

  .hero-copy {
    width: 66.666667%;
    margin-left: 16.666667%;
    padding-top: 480px;
  }

  .hero-copy h1 {
    font-size: 60px;
    margin-bottom: -16px;
  }

  .hero-copy h1 span {
    font-size: 19px;
  }

  .hero-copy p {
    font-size: 12.8px;
  }

  .feature-card-header {
    width: auto;
    height: auto;
    min-height: 82px;
  }

  .solutions-grid {
    min-height: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hand-illustration {
    margin-left: -45px;
  }

  .hand-illustration img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .solutions {
    max-height: none;
  }

  .hero-copy {
    width: 100%;
    margin-left: 0;
    padding-right: 15px;
    padding-left: 15px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    margin-bottom: 100px;
  }

  .solutions-grid {
    display: flex;
    flex-direction: column;
  }

  .solution-card {
    order: 1;
  }

  .hand-illustration {
    order: 2;
    margin: 5vh 0 5vh -45px;
  }

  .solution-card--right {
    order: 3;
  }

  .hand-illustration img {
    width: min(381px, 85vw);
    max-width: 85vw;
    height: auto;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .social {
    padding-left: 0;
  }

  .social-links {
    text-align: center;
  }

  .certifications {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .brand {
    margin-bottom: 30px;
  }

  .call-to-action {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .call-to-action a {
    flex-direction: column;
  }

  .call-to-action img {
    margin-top: 12px;
    margin-left: 0;
  }

  .hero-copy h1 {
    font-size: 45px;
  }

  .hero-copy {
    padding-top: 215px;
  }

  .social > p {
    margin-right: 0;
    text-align: center;
  }
}

@media (max-width: 414px), (max-width: 736px) and (orientation: landscape) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner p {
    margin: 0 0 16px;
  }

  .cookie-banner button {
    width: 100%;
  }
}
