@font-face {
  font-family: 'Averta-Bold';
  src: url("/fonts/Averta-Bold.woff2?28032022") format("woff2");
  src: url("/fonts/Averta-Bold.woff?28032022") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Averta-Black';
  src: url("/fonts/Averta-Black.woff2?28032022") format("woff2");
  src: url("/fonts/Averta-Black.woff?28032022") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-space-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

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

.text-center {
  text-align: center;
  width: 100%;
}

.container {
  max-width: 980px;
  margin: auto;
  margin-top: 2rem;
}

.container-small {
  max-width: 500px;
  margin: auto;
}

.margin-top0 {
  margin-top: 0;
}

.margin-top1 {
  margin-top: 1rem;
}

.margin-top2 {
  margin-top: 2rem;
}

.margin-top3 {
  margin-top: 3rem;
}

.padding-1 {
  padding: 1rem;
}

.gap-1 {
  gap: 1rem;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.underline {
  text-decoration: none;
  background-image: url(/images/landingpage/underline.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-flex;
}

h1 .underline {
  text-decoration: none;
  background-position: 50% 54px;
  height: 72px;
}

h2 .underline {
  text-decoration: none;
  background-position: 50% 46px;
  height: 60px;
}


.box {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 24px -6px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  border-radius: 2rem;
}

.video.box {
  padding: 0;
}

.video.box>div,
.video.box>div video,
.video.box>div img {
  border-radius: 2rem;
}

.video img {
  margin: auto;
}

.wrapper-shadow {
  box-shadow: 0 0 24px -6px rgba(0, 0, 0, 0.25);
}

.hide-mobile {
  display: none;
}

/*  Element styling  */

body {
  font-family: Helvetica, sans-serif;
  height: 100%;
  padding-bottom: 2rem;
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Averta-Black', Helvetica, sans-serif;
  /*  letter-spacing: 0.05rem;*/
  color: #273152;
}


h1 {
  font-size: 42px;
  line-height: 1.3;
  color: #273152;
}

h2 {
  font-size: 36px;
  color: #273152;
  line-height: 1.3;
}

ul {
  margin-block-start: 1.5rem;
  padding-inline-start: 1rem;
}

li {
  line-height: 1.5;
  margin-bottom: 1rem;
  list-style-type: disc;
}

.subtitle {
  font-family: Helvetica, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
  color: #707070;
}

.header {
  padding: 1rem;
  margin-top: -1rem;
}

.cta-wrapper {
  width: 220px;
}

.cta-wrapper.sticky {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.cta {
  background-color: #273152;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  width: 100%;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 9999px;
  align-items: center;
  justify-content: space-between;
  transition: background-color .3s, color .3s;
  cursor: pointer;
}

.cta:hover {
  background-color: #3bc7d6;
}

i.arrow-right {
  background: url(/images/landingpage/arrow-right.svg);
  display: block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
}

.cta-wrapper p {
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #959595;
  width: 100%;
  text-align: center;
  line-height: 2.3;
}

.footer-menu {
  margin-top: 6rem;
}

.footer-menu a {
  color: #999999;
  text-decoration: none;
  font-size: 16px;
}

/*  Desktop Overrides  */
@media (min-width: 768px) {

  .hide-mobile {
    display: block;
  }

  .wrap-mobile {
    flex-wrap: wrap;
  }

}

/*  Mobile Overrides  */
@media (max-width: 767px) {

  .logo img {
    margin: auto;
  }

  .logo {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

  .break-mobile {
    flex-flow: column;
    gap: 2rem;
  }

}


/* Lightbox */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.lightbox-content {
  background: white;
  padding: 20px;
  border-radius: 2rem;
  width: 80%;
  max-width: 800px;
  max-height: 90vh;
  position: relative;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  bottom: -50px;
  left: 50%;
  cursor: pointer;
  font-size: 32px;
  color: #ffffff;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-iframe {
  width: 100%;
  height: 70vh;
  border: none;
  opacity: 0;
  transition: opacity 0.3s ease 0.2s;
}

.lightbox.active .lightbox-iframe {
  opacity: 1;
}

.hero h1 {
  max-width: 400px;
}

.hero .subtitle {
  max-width: 216px;
}
