@keyframes moon {
  0% {
    opacity: 0;
    fill: #597DA8;
  }
  33.33% {
    opacity: 1;
    fill: #597DA8;
  }
  66.66% {
    opacity: 1;
    fill: #FFCDE3;
  }
  100% {
    opacity: 1;
    fill: #ffffff;
  }
}
html body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: 100%;
  background: #040F40;
}

.scroll-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 100vw;
  grid-template-rows: 100vh max-content max-content;
  scroll-behavior: smooth;
}
.scroll-container svg.background {
  width: 100vh;
  height: 100vh;
  position: fixed;
  top: 65vh;
  left: -60vh;
  transform-origin: center;
  transition: all 1300ms;
  pointer-events: none;
}
.scroll-container svg.background:last-of-type {
  left: calc(100vw - 40vh);
  top: 100vh;
}
.scroll-container svg.background g {
  transform-origin: center;
}
.scroll-container svg.background g circle {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-width: 1;
  transform-origin: center;
}
.scroll-container svg.background g:nth-child(1) {
  transform: rotate(60deg);
}
.scroll-container svg.background g:nth-child(1) circle {
  stroke: #DFF3EC;
  stroke-dasharray: 500 500 500 500;
}
.scroll-container svg.background g:nth-child(2) {
  transform: rotate(30deg);
}
.scroll-container svg.background g:nth-child(2) circle {
  stroke: #FFCDE3;
  imagestroke-opacity: 0.7;
  stroke-dasharray: 700 700;
}
.scroll-container svg.background g:nth-child(3) {
  transform: rotate(90deg);
}
.scroll-container svg.background g:nth-child(3) circle {
  stroke: #DFF3EC;
  stroke-dasharray: 1000 500;
}
.scroll-container svg.background g:nth-child(4) {
  transform: rotate(50deg);
}
.scroll-container svg.background g:nth-child(4) circle {
  stroke: #FFCDE3;
  imagestroke-opacity: 0.7;
  stroke-dasharray: 100 500;
}
.scroll-container svg.background g:nth-child(5) {
  transform: rotate(20deg);
}
.scroll-container svg.background g:nth-child(5) circle {
  stroke: #DFF3EC;
  stroke-dasharray: 100 200;
}
.scroll-container svg.background g:nth-child(6) {
  transform: rotate(90deg);
}
.scroll-container svg.background g:nth-child(6) circle {
  stroke: #FFCDE3;
  imagestroke-opacity: 0.7;
  stroke-dasharray: 800 800;
}
.scroll-container svg.background g:nth-child(7) {
  transform: rotate(40deg);
}
.scroll-container svg.background g:nth-child(7) circle {
  stroke: #DFF3EC;
  stroke-dasharray: 200 1000;
}
.scroll-container svg.background g:nth-child(8) {
  transform: rotate(80deg);
}
.scroll-container svg.background g:nth-child(8) circle {
  stroke: #FFCDE3;
  imagestroke-opacity: 0.7;
  stroke-dasharray: 250 250 250 250 250;
}
.scroll-container svg.background g:nth-child(9) {
  transform: rotate(60deg);
}
.scroll-container svg.background g:nth-child(9) circle {
  stroke: #DFF3EC;
  stroke-dasharray: 300 500;
}
@keyframes spin {
  from {
    transform: translateX(-60vw) rotate(0deg);
  }
  to {
    transform: translateX(-60vw) rotate(-360deg);
  }
}
@keyframes spin2 {
  from {
    transform: translateY(50vw) rotate(0deg);
  }
  to {
    transform: translateY(50vw) rotate(360deg);
  }
}
.scroll-container header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 10;
  grid-column-start: 1;
  grid-row-start: 1;
  transition: top 800ms;
  background: linear-gradient(#00177a, transparent);
}
.scroll-container header .hamburger {
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  height: 1.25rem;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: 1.5rem max-content;
  grid-column-gap: 1rem;
  align-items: center;
  z-index: 101;
}
.scroll-container header .hamburger:before,
.scroll-container header .hamburger span:not(.logo), .scroll-container header .hamburger:after {
  content: "";
  height: 1px;
  width: 1.5rem;
  background: #ffffff;
  transition: all 300ms;
  transform: rotate(0);
  opacity: 1;
  grid-column-start: 1;
}
.scroll-container header .hamburger:before {
  grid-row-start: 1;
}
.scroll-container header .hamburger span:not(.logo) {
  grid-row-start: 2;
}
.scroll-container header .hamburger:after {
  grid-row-start: 3;
}
.scroll-container header .hamburger .logo {
  grid-row-start: 1;
  grid-row-end: span 3;
  grid-column-start: 2;
}
.scroll-container header .hamburger .logo span {
  display: none;
}
.scroll-container header .hamburger .logo svg {
  width: 7rem;
}
@media (pointer: fine) {
  .scroll-container header .hamburger:hover:before,
  .scroll-container header .hamburger:hover span:not(.logo), .scroll-container header .hamburger:hover:after {
    background: #F886B8;
  }
}
.scroll-container header nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: linear-gradient(#00177a, #040F40);
  transition: transform 800ms;
  transform: translateX(-280px);
  padding: 5rem 0 3rem;
}
.scroll-container header nav menu {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.scroll-container header nav menu a {
  color: #ffffff;
}
.scroll-container header nav menu a svg {
  height: 3rem;
  width: auto;
  fill: #ffffff;
}
.scroll-container header nav a {
  color: #ffffff;
  margin: 0 1rem;
}
.scroll-container header a {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: inherit;
  text-decoration: none;
  padding: 0.5rem;
}
.scroll-container header a:active, .scroll-container header a:hover, .scroll-container header a:focus, .scroll-container header a:focus-visible {
  color: #FFCDE3;
}
@media (min-width: 900px) {
  .scroll-container header .hamburger {
    display: none;
  }
  .scroll-container header nav {
    position: static;
    transform: none !important;
    transition: none;
    background: none;
    border-right-width: 0;
    display: grid;
    grid-template-columns: 1fr max-content;
    align-items: center;
    padding: 0.5rem 0;
    margin: 0 auto;
    width: calc(100vw - 4rem);
    max-width: 1100px;
  }
  .scroll-container header nav menu {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .scroll-container header nav > * {
    margin: 0;
  }
  .scroll-container header nav > * > * {
    margin: 0;
  }
  .scroll-container header nav > * > *:first-child {
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .scroll-container header nav > * {
    margin: 0 2rem;
  }
  .scroll-container header nav menu a {
    margin-left: 2rem;
  }
  .scroll-container header nav menu a:first-child {
    margin-left: 0;
  }
}
.scroll-container .logo span {
  opacity: 0;
  height: 0;
  position: absolute;
  pointer-events: none;
}
.scroll-container .logo svg {
  fill: #ffffff;
}
.scroll-container footer {
  grid-column-start: 1;
  grid-row-start: 3;
  position: relative;
  z-index: 10;
  background: white;
}
.scroll-container footer > div {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 1rem;
  color: #00177a;
  margin: 0 auto;
  width: calc(100vw - 4rem);
  max-width: 1100px;
  border-top: 1px solid #00177a;
  padding-top: 3rem;
}
.scroll-container footer > div a {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: inherit;
  text-decoration: none;
}
.scroll-container footer > div a:active, .scroll-container footer > div a:hover, .scroll-container footer > div a:focus, .scroll-container footer > div a:focus-visible {
  color: #F886B8;
}
.scroll-container footer > div .logo {
  max-width: 24rem;
}
.scroll-container footer > div .logo svg {
  fill: #00177a;
}
.scroll-container footer > div nav {
  margin: 0;
  padding: 0;
  display: grid;
  grid-gap: 1rem;
  margin-bottom: 1rem;
  justify-content: flex-start;
}
.scroll-container footer > div nav menu {
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-gap: 1rem;
  grid-auto-flow: row;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .scroll-container footer > div nav {
    grid-template-columns: repeat(3, max-content);
    grid-gap: 1.5rem;
  }
  .scroll-container footer > div nav menu {
    margin-top: 3rem;
    grid-column-end: span 3;
    grid-gap: 1.5rem;
    grid-auto-flow: column;
  }
}
.scroll-container footer > div small {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 350;
  font-size: 90%;
  display: flex;
  flex-direction: column;
}
.scroll-container footer > div small strong {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.scroll-container footer > div small.meta * {
  margin-top: 1rem;
}
.scroll-container footer > div small.address * {
  margin-top: 0.5rem;
}
.scroll-container footer > div .accreditations {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
  margin: 3rem 0 2rem;
  padding-top: 2rem;
  border-top: 1px solid;
}
.scroll-container footer > div .accreditations img {
  width: 100%;
  min-width: 5rem;
  max-width: 11rem;
  height: auto;
}
.scroll-container footer > div .accreditations small {
  grid-column-start: 1;
  grid-column-end: span 2;
}
@media (min-width: 550px) {
  .scroll-container footer > div .accreditations {
    grid-template-columns: repeat(3, max-content);
  }
  .scroll-container footer > div .accreditations small {
    grid-column-end: span 3;
  }
}
@media (min-width: 900px) {
  .scroll-container footer > div {
    grid-template-columns: 1fr 26rem;
    grid-row-gap: 3rem;
  }
  .scroll-container footer > div .logo {
    grid-column-start: 2;
  }
  .scroll-container footer > div nav {
    grid-column-start: 1;
    grid-row-start: 1;
    grid-row-end: span 2;
    grid-template-columns: 1fr;
  }
  .scroll-container footer > div nav menu {
    grid-column-end: span 1;
    grid-auto-flow: row;
    margin-bottom: 1rem;
  }
  .scroll-container footer > div .address {
    grid-row-start: 2;
    grid-column-start: 2;
    align-self: flex-end;
  }
  .scroll-container footer > div .meta {
    grid-row-start: 3;
    grid-column-start: 1;
    grid-column-end: span 2;
    display: grid;
    grid-template-columns: 1fr 26rem;
  }
  .scroll-container footer > div .meta span {
    grid-row-start: 1;
    grid-column-start: 2;
  }
  .scroll-container footer > div .meta strong {
    grid-row-start: 1;
    grid-column-start: 1;
  }
  .scroll-container footer > div .accreditations {
    grid-column-start: 1;
    grid-column-end: span 2;
    grid-row-start: 4;
  }
}
.scroll-container main {
  grid-column-start: 1;
  grid-row-start: 1;
  grid-row-end: span 2;
  background: linear-gradient(#040F40 0, #040F40 10rem, #00177a 20rem, #ffffff calc(100% - 80vh), #ffffff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 10vh;
}
.scroll-container main section {
  position: relative;
  z-index: 1;
  margin-bottom: 10vh;
  transform-origin: bottom center;
}
.scroll-container main section .section__content {
  display: grid;
  grid-auto-flow: row;
  width: 80vw;
  max-width: 39rem;
  transition: all 800ms;
}
@media (min-width: 900px) {
  .scroll-container main section .section__content {
    transform: scale(0.9);
  }
}
.scroll-container main section .section__content * {
  color: inherit;
}
.scroll-container main section .section__content button,
.scroll-container main section .section__content .cta {
  display: inline-flex;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 650;
  margin: 2rem auto;
  position: relative;
  color: #00177a !important;
}
.scroll-container main section .section__content button span,
.scroll-container main section .section__content .cta span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.8rem;
  background: linear-gradient(#ffffff, #FFCDE3);
  padding: 0 1rem;
  border-radius: 1.4rem;
  border-left: 0px solid;
  border-right: 0px solid;
  position: relative;
  z-index: 1;
  transition: all 0.1s;
}
.scroll-container main section .section__content button:before,
.scroll-container main section .section__content .cta:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0px;
  right: 0px;
  top: 2px;
  bottom: 2px;
  background: #ffffff;
  border-radius: 1.4rem;
  transition: all 0.1s;
}
.scroll-container main section .section__content button:after,
.scroll-container main section .section__content .cta:after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -2px;
  right: -2px;
  top: 0;
  bottom: 0;
  border-left: 0 solid;
  border-right: 0 solid;
  border-radius: 1.4rem;
  transition: all 0.1s;
}
.scroll-container main section .section__content button:active, .scroll-container main section .section__content button:hover, .scroll-container main section .section__content button:focus, .scroll-container main section .section__content button:focus-visible,
.scroll-container main section .section__content .cta:active,
.scroll-container main section .section__content .cta:hover,
.scroll-container main section .section__content .cta:focus,
.scroll-container main section .section__content .cta:focus-visible {
  color: #00177a;
}
.scroll-container main section .section__content button:active span, .scroll-container main section .section__content button:hover span, .scroll-container main section .section__content button:focus span, .scroll-container main section .section__content button:focus-visible span,
.scroll-container main section .section__content .cta:active span,
.scroll-container main section .section__content .cta:hover span,
.scroll-container main section .section__content .cta:focus span,
.scroll-container main section .section__content .cta:focus-visible span {
  background-image: linear-gradient(#FFCDE3, #FFCDE3);
  border-left-width: 2px;
  border-right-width: 2px;
}
.scroll-container main section .section__content button:active:after, .scroll-container main section .section__content button:hover:after, .scroll-container main section .section__content button:focus:after, .scroll-container main section .section__content button:focus-visible:after,
.scroll-container main section .section__content .cta:active:after,
.scroll-container main section .section__content .cta:hover:after,
.scroll-container main section .section__content .cta:focus:after,
.scroll-container main section .section__content .cta:focus-visible:after {
  border-left-width: 3px;
  border-right-width: 3px;
}
.scroll-container main section .section__content button:active:before, .scroll-container main section .section__content button:hover:before, .scroll-container main section .section__content button:focus:before, .scroll-container main section .section__content button:focus-visible:before,
.scroll-container main section .section__content .cta:active:before,
.scroll-container main section .section__content .cta:hover:before,
.scroll-container main section .section__content .cta:focus:before,
.scroll-container main section .section__content .cta:focus-visible:before {
  background: #FFCDE3;
  left: -5px;
  right: -5px;
}
.scroll-container main section .section__content .dot {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background: transparent;
  border-radius: 50%;
  border: 1px solid;
  cursor: pointer;
  transition: all 300ms;
  transform-origin: center;
}
.scroll-container main section .section__content .dot:hover {
  background: #F886B8;
}
.scroll-container main section .section__content .dot.dot--active {
  pointer-events: none;
  background: #ffffff;
  border-width: 2px;
}
.scroll-container main section .section__content h3 {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0 auto 1rem;
  max-width: 39rem;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
}
.scroll-container main section .section__content h3 > span {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0.6rem;
}
.scroll-container main section .section__content h3 > strong {
  font-weight: 450;
}
.scroll-container main section .section__content h4,
.scroll-container main section .section__content a {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 650;
  margin: 0 auto 1rem;
  font-size: 1rem;
  max-width: 39rem;
}
.scroll-container main section .section__content h5 {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 350;
  margin: 0;
  font-size: 1.2rem;
}
.scroll-container main section .section__content a:active, .scroll-container main section .section__content a:hover, .scroll-container main section .section__content a:focus, .scroll-container main section .section__content a:focus-visible {
  color: #F886B8;
}
.scroll-container main section .section__content p {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
  margin: 0 auto 1rem;
  max-width: 39rem;
}
@media (min-width: 550px) {
  .scroll-container main section .section__content p {
    font-size: 1rem;
  }
}
.scroll-container main section .section__content video {
  border-radius: 2px;
  margin: 3rem auto 0;
}
.scroll-container main section .section__content video ~ p,
.scroll-container main section .section__content video ~ a {
  margin-top: 2rem;
}
.scroll-container main section .section__content .carousel {
  height: 40rem;
  width: 80vw;
  max-width: 39rem;
  margin-top: 5vh;
  display: grid;
  align-items: stretch;
  justify-content: stretch;
  grid-template-columns: 100%;
  grid-template-rows: max-content 1fr;
  grid-row-gap: 1rem;
}
.scroll-container main section .section__content .carousel figure.carousel__item {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 2rem;
  grid-column-start: 1;
  grid-row-start: 2;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: max-content max-content 1fr;
  text-align: left;
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border: 1px solid;
  position: relative;
  background: rgba(4, 15, 64, 0.4);
  transition: all 300ms;
  overflow: hidden;
}
.scroll-container main section .section__content .carousel figure.carousel__item > * {
  margin: 0 auto;
  text-align: center;
}
.scroll-container main section .section__content .carousel figure.carousel__item > .image {
  width: 100%;
  height: 100%;
  grid-row-start: 3;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .scroll-container main section .section__content .carousel figure.carousel__item {
    grid-template-columns: 2fr 3fr;
    grid-template-rows: max-content 1fr max-content;
  }
  .scroll-container main section .section__content .carousel figure.carousel__item > * {
    grid-column-start: 2;
  }
  .scroll-container main section .section__content .carousel figure.carousel__item > .image {
    grid-column-start: 1;
    grid-row-start: 1;
    grid-row-end: span 3;
  }
}
.scroll-container main section .section__content .carousel figure.carousel__item .image {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.scroll-container main section .section__content .carousel figure.carousel__item .image a {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.75rem;
  background: #00177a;
  border-radius: 0.3rem;
  border: 1px solid #00177a;
}
.scroll-container main section .section__content .carousel figure.carousel__item .image a svg {
  width: 100%;
  height: 100%;
  fill: #DFF3EC;
}
.scroll-container main section .section__content .carousel figure.carousel__item .image a:active svg, .scroll-container main section .section__content .carousel figure.carousel__item .image a:hover svg, .scroll-container main section .section__content .carousel figure.carousel__item .image a:focus svg, .scroll-container main section .section__content .carousel figure.carousel__item .image a:focus-visible svg {
  fill: #F886B8;
}
.scroll-container main section .section__content .carousel figure.carousel__item > * {
  opacity: 1;
  text-align: left;
  transition: opacity 800ms;
  transition-delay: 300ms;
}
.scroll-container main section .section__content .carousel figure.carousel__item .modal-trigger {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.scroll-container main section .section__content .carousel figure.carousel__item .modal-trigger.modal-trigger--icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  width: 1.2rem;
  height: 1.2rem;
  border-bottom-width: 0;
  transition: all 300ms;
  cursor: pointer;
}
.scroll-container main section .section__content .carousel figure.carousel__item .modal-trigger.modal-trigger--icon span {
  color: #ffffff;
  transform-origin: center;
  transform: rotate(45deg);
  height: 1px;
  background: #ffffff;
  transform: rotate(-45deg);
  transition: background 300ms;
}
.scroll-container main section .section__content .carousel figure.carousel__item .modal-trigger.modal-trigger--icon span:nth-child(1) {
  grid-column-start: 2;
  grid-row-start: 1;
  align-self: flex-start;
  transform-origin: top right;
}
.scroll-container main section .section__content .carousel figure.carousel__item .modal-trigger.modal-trigger--icon span:nth-child(1):before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  border-top: 1px solid;
  transform-origin: top right;
  transform: rotate(-45deg);
}
.scroll-container main section .section__content .carousel figure.carousel__item .modal-trigger.modal-trigger--icon span:nth-child(1):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  border-top: 1px solid;
  transform-origin: right;
  transform: rotate(45deg);
}
.scroll-container main section .section__content .carousel figure.carousel__item .modal-trigger.modal-trigger--icon span:nth-child(2) {
  grid-column-start: 1;
  grid-row-start: 2;
  align-self: flex-end;
  transform-origin: bottom left;
}
.scroll-container main section .section__content .carousel figure.carousel__item .modal-trigger.modal-trigger--icon span:nth-child(2):before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  border-top: 1px solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
}
.scroll-container main section .section__content .carousel figure.carousel__item .modal-trigger.modal-trigger--icon span:nth-child(2):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  border-top: 1px solid;
  transform-origin: left;
  transform: rotate(-45deg);
}
@media (pointer: fine) {
  .scroll-container main section .section__content .carousel figure.carousel__item .modal-trigger.modal-trigger--icon:active span, .scroll-container main section .section__content .carousel figure.carousel__item .modal-trigger.modal-trigger--icon:hover span, .scroll-container main section .section__content .carousel figure.carousel__item .modal-trigger.modal-trigger--icon:focus span, .scroll-container main section .section__content .carousel figure.carousel__item .modal-trigger.modal-trigger--icon:focus-visible span {
    color: #F886B8 !important;
    background: #F886B8 !important;
  }
}
.scroll-container main section .section__content .carousel figure.carousel__item > p,
.scroll-container main section .section__content .carousel figure.carousel__item > blockquote {
  grid-row-start: 2;
}
.scroll-container main section .section__content .carousel figure.carousel__item figcaption {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 650;
  font-size: 1.4rem;
  padding-right: 2rem;
  grid-row-start: 1;
}
.scroll-container main section .section__content .carousel figure.carousel__item blockquote {
  margin: 0 auto;
  font-size: 1rem;
  position: relative;
  grid-row-start: 1;
  grid-row-end: span 2;
  align-self: center;
}
.scroll-container main section .section__content .carousel figure.carousel__item blockquote:before, .scroll-container main section .section__content .carousel figure.carousel__item blockquote:after {
  content: '"';
}
.scroll-container main section .section__content .carousel figure.carousel__item blockquote ~ figcaption {
  grid-row-start: 3;
  padding-right: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 350;
  font-size: 90%;
}
.scroll-container main section .section__content .carousel figure.carousel__item.carousel__item--active {
  opacity: 1;
}
.scroll-container main section .section__content .carousel figure.carousel__item.carousel__item--next, .scroll-container main section .section__content .carousel figure.carousel__item.carousel__item--previous {
  pointer-events: none;
  opacity: 0;
}
.scroll-container main section .section__content .carousel .carousel__controls {
  grid-column-start: 1;
  grid-row-start: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -2rem;
}
.scroll-container main section .section__content .carousel .carousel__controls > * {
  margin: 0.25rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .scroll-container main section .section__content .carousel {
    height: 23rem;
  }
  .scroll-container main section .section__content .carousel figure.carousel__item > p {
    grid-row-end: span 2;
  }
  .scroll-container main section .section__content .carousel figure.carousel__item > .image {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
  }
}
@media (min-width: 550px) {
  .scroll-container main section .section__content .carousel figure.carousel__item > p {
    font-size: 1.2rem;
  }
}
.scroll-container main section .section__content .carousel.carousel--testimonials {
  height: 26rem;
  width: 80vw;
  max-width: 39rem;
}
.scroll-container main section .section__content .carousel.carousel--testimonials figure.carousel__item {
  color: #00177a;
  background: transparent;
  border: none;
  padding: 0;
  grid-template-rows: max-content 1fr max-content;
  grid-template-columns: 100%;
  text-align: center;
}
.scroll-container main section .section__content .carousel.carousel--testimonials figure.carousel__item > * {
  grid-column-start: 1;
  text-align: center;
  margin: 0 auto 1rem;
}
.scroll-container main section .section__content .carousel.carousel--testimonials figure.carousel__item.carousel__active {
  padding: 0;
  border: none;
}
.scroll-container main section .section__content .carousel.carousel--testimonials .carousel__controls .dot.dot--active {
  background: #00177a;
}
@media (min-width: 550px) {
  .scroll-container main section .section__content .carousel.carousel--testimonials {
    height: 26rem;
  }
}
@media (min-width: 768px) {
  .scroll-container main section .section__content .carousel.carousel--testimonials {
    height: 20rem;
  }
}
.scroll-container main section .section__content video {
  position: relative;
  width: 39rem;
  max-width: 100%;
}
@media (min-width: 768px) {
  .scroll-container main section .section__content h3 {
    font-size: 1.6rem;
  }
  .scroll-container main section .section__content h5 {
    font-size: 1.4rem;
  }
}
.scroll-container main section:first-child {
  margin-top: 20vh !important;
}
.scroll-container main section:last-child {
  margin-bottom: 0;
}
@media (min-height: 768px) {
  .scroll-container main section:not(.feature-group) {
    margin-top: 5vh;
  }
}
.scroll-container main section#hero h1,
.scroll-container main section#hero h2.page-title, .scroll-container main section#intro h1,
.scroll-container main section#intro h2.page-title {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 350;
  margin: 1rem auto 1rem;
  max-width: 39rem;
  font-size: 1.6rem;
}
.scroll-container main section#hero h1.logo-title,
.scroll-container main section#hero h2.page-title.logo-title, .scroll-container main section#intro h1.logo-title,
.scroll-container main section#intro h2.page-title.logo-title {
  margin: 0 auto 2rem;
  width: 80vw;
  max-width: 30rem;
  max-height: 80vh;
}
.scroll-container main section#hero h2:not(.logo-title), .scroll-container main section#intro h2:not(.logo-title) {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 1rem auto 1rem;
  max-width: 39rem;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .scroll-container main section#hero h1, .scroll-container main section#hero h2.page-title, .scroll-container main section#intro h1, .scroll-container main section#intro h2.page-title {
    font-size: 2.4rem;
  }
  .scroll-container main section#hero h2:not(.logo-title), .scroll-container main section#intro h2:not(.logo-title) {
    font-size: 1.4rem;
  }
}
@media (min-width: 900px) {
  .scroll-container main section#hero .section__content, .scroll-container main section#intro .section__content {
    transform: scale(1);
  }
}
.scroll-container main section#hero .section__content small, .scroll-container main section#intro .section__content small {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.scroll-container main section#body .section__content {
  color: #00177a;
}
.scroll-container main section#body .section__content .cta span {
  border: 1px solid;
}
.scroll-container main section#body .section__content .cta:active:before, .scroll-container main section#body .section__content .cta:hover:before, .scroll-container main section#body .section__content .cta:focus:before, .scroll-container main section#body .section__content .cta:focus-visible:before {
  background: #00177a;
}
.scroll-container main section#body .section__content .cta:active:after, .scroll-container main section#body .section__content .cta:hover:after, .scroll-container main section#body .section__content .cta:focus:after, .scroll-container main section#body .section__content .cta:focus-visible:after {
  border-color: #ffffff;
}
.scroll-container main section#feature .section__content, .scroll-container main section.feature-group .section__content {
  background: #ffffff;
  padding: 3rem 15vw;
  color: #00177a;
  border-radius: 2px;
}
.scroll-container main section#feature .section__content p small, .scroll-container main section.feature-group .section__content p small {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 350;
}
.scroll-container main section#feature .section__content video, .scroll-container main section.feature-group .section__content video {
  margin: 0;
}
.scroll-container main section#feature.section--title .section__content, .scroll-container main section.feature-group.section--title .section__content {
  margin-top: 6rem;
  position: relative;
}
.scroll-container main section#feature.section--title .section__content h2, .scroll-container main section.feature-group.section--title .section__content h2 {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 350;
  color: #ffffff;
  font-size: 2rem;
  position: absolute;
  top: -6rem;
  left: 0;
  right: 0;
}
.scroll-container main section#feature.feature-group.feature-group--even .section__content, .scroll-container main section.feature-group.feature-group.feature-group--even .section__content {
  background: #DFF3EC;
}
.scroll-container main section#feature.feature-group:not(.feature-group--last), .scroll-container main section.feature-group.feature-group:not(.feature-group--last) {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .scroll-container main section#feature .section__content, .scroll-container main section.feature-group .section__content {
    border: 1px solid #00177a;
    padding: 3.5rem 3rem 3rem;
    border-radius: 1rem;
  }
  .scroll-container main section#feature.feature-group:not(.feature-group--last), .scroll-container main section.feature-group.feature-group:not(.feature-group--last) {
    margin-bottom: -2.5rem;
  }
  .scroll-container main section#feature.feature-group .section__content, .scroll-container main section.feature-group.feature-group .section__content {
    padding-bottom: 5rem;
  }
  .scroll-container main section#feature.feature-group.feature-group--even, .scroll-container main section.feature-group.feature-group.feature-group--even {
    margin-left: 5vw;
  }
  .scroll-container main section#feature.feature-group.feature-group--odd, .scroll-container main section.feature-group.feature-group.feature-group--odd {
    margin-right: 5vw;
  }
  .scroll-container main section#feature.feature-group.feature-group--last .section__content, .scroll-container main section.feature-group.feature-group.feature-group--last .section__content {
    padding-bottom: 3rem;
  }
}
@media (min-width: 900px) {
  .scroll-container main section#feature.feature-group.feature-group--even, .scroll-container main section.feature-group.feature-group.feature-group--even {
    margin-left: 10rem;
  }
  .scroll-container main section#feature.feature-group.feature-group--odd, .scroll-container main section.feature-group.feature-group.feature-group--odd {
    margin-right: 10rem;
  }
}
.scroll-container main section.section--studies .section__content {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: max-content max-content 1fr;
  text-align: left;
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
}
.scroll-container main section.section--studies .section__content > * {
  margin: 0 auto;
  text-align: center;
}
.scroll-container main section.section--studies .section__content > .image {
  width: 100%;
  height: 100%;
  grid-row-start: 3;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .scroll-container main section.section--studies .section__content {
    grid-template-columns: 2fr 3fr;
    grid-template-rows: max-content 1fr max-content;
  }
  .scroll-container main section.section--studies .section__content > * {
    grid-column-start: 2;
  }
  .scroll-container main section.section--studies .section__content > .image {
    grid-column-start: 1;
    grid-row-start: 1;
    grid-row-end: span 3;
  }
}
.scroll-container main section.section--studies .section__content > * {
  grid-column-start: 1;
}
.scroll-container main section.section--studies .section__content > *.image {
  height: 70vw;
  grid-row-start: 3;
  background-position: center;
}
.scroll-container main section.section--studies .section__content > *.cta {
  grid-row-start: 3;
  align-self: flex-end;
  margin-bottom: 2rem;
}
.scroll-container main section.section--studies .section__content > *.cta span {
  border: 1px solid;
}
.scroll-container main section.section--studies .section__content > *.cta:active:before, .scroll-container main section.section--studies .section__content > *.cta:hover:before, .scroll-container main section.section--studies .section__content > *.cta:focus:before, .scroll-container main section.section--studies .section__content > *.cta:focus-visible:before {
  background: #00177a;
}
.scroll-container main section.section--studies .section__content > *.cta:active:after, .scroll-container main section.section--studies .section__content > *.cta:hover:after, .scroll-container main section.section--studies .section__content > *.cta:focus:after, .scroll-container main section.section--studies .section__content > *.cta:focus-visible:after {
  border-color: #ffffff;
}
@media (min-width: 768px) {
  .scroll-container main section.section--studies .section__content {
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-bottom: 0 !important;
  }
  .scroll-container main section.section--studies .section__content > * {
    grid-column-start: 2;
  }
  .scroll-container main section.section--studies .section__content > *:first-child {
    margin-top: 3rem;
  }
  .scroll-container main section.section--studies .section__content > *:last-child {
    margin-bottom: 6rem;
  }
  .scroll-container main section.section--studies .section__content > *.cta {
    margin-top: 2rem;
  }
  .scroll-container main section.section--studies .section__content > *.image {
    height: 100%;
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: span 3;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    background-position: center;
  }
}
.scroll-container main section .trigger {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.scroll-container .modal {
  position: fixed;
  left: 0;
  top: 100vh;
  height: calc(100 * var(--vh) - 6rem);
  overflow: hidden;
  right: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: max-content max-content 1fr;
  text-align: left;
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
  background: #ffffff;
  color: #00177a;
  border-top-left-radius: 1rem;
  transition: all 300ms;
  background: linear-gradient(#ffffff, #DFF3EC);
  grid-template-rows: max-content 1fr;
}
.scroll-container .modal > * {
  margin: 0 auto;
  text-align: center;
}
.scroll-container .modal > .image {
  width: 100%;
  height: 100%;
  grid-row-start: 3;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .scroll-container .modal {
    grid-template-columns: 2fr 3fr;
    grid-template-rows: max-content 1fr max-content;
  }
  .scroll-container .modal > * {
    grid-column-start: 2;
  }
  .scroll-container .modal > .image {
    grid-column-start: 1;
    grid-row-start: 1;
    grid-row-end: span 3;
  }
}
.scroll-container .modal > * {
  text-align: left;
}
.scroll-container .modal h5 {
  grid-row-start: 1;
  grid-column-start: 1;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 650;
  font-size: 1.4rem;
  margin: 1vh 0 0;
  padding: 2rem 5rem 0 2rem;
  max-width: 39rem;
}
@media (min-width: 1200px) and (min-height: 900px) {
  .scroll-container .modal h5 {
    padding-top: 4rem;
  }
}
.scroll-container .modal > div {
  grid-row-start: 2;
  grid-column-start: 1;
  max-height: 100%;
  overflow-y: auto;
  margin: 0;
  padding: 0 2rem;
}
.scroll-container .modal > div p {
  margin: 0 0 1rem;
  max-width: 39rem;
}
.scroll-container .modal > div h6 {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 2rem 0 1rem;
  max-width: 39rem;
}
.scroll-container .modal > div > *:last-child {
  margin-bottom: 5rem;
}
.scroll-container .modal .image {
  display: none;
}
.scroll-container .modal .image > a {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.75rem;
  background: #00177a;
  border-radius: 0.3rem;
  border: 1px solid #00177a;
  transform: scale(1.25);
  background-position: center;
  transform-origin: bottom left;
}
.scroll-container .modal .image > a svg {
  width: 100%;
  height: 100%;
  fill: #DFF3EC;
}
.scroll-container .modal .image > a:active svg, .scroll-container .modal .image > a:hover svg, .scroll-container .modal .image > a:focus svg, .scroll-container .modal .image > a:focus-visible svg {
  fill: #F886B8;
}
.scroll-container .modal .modal__collapse {
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  width: 1.2rem;
  height: 1.2rem;
  border-bottom-width: 0;
  transition: all 300ms;
  cursor: pointer;
}
.scroll-container .modal .modal__collapse span {
  color: #ffffff;
  transform-origin: center;
  transform: rotate(45deg);
  height: 1px;
  background: #ffffff;
  transform: rotate(-45deg);
  transition: background 300ms;
}
.scroll-container .modal .modal__collapse span:nth-child(1) {
  grid-column-start: 2;
  grid-row-start: 1;
  align-self: flex-start;
  transform-origin: top right;
}
.scroll-container .modal .modal__collapse span:nth-child(1):before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  border-top: 1px solid;
  transform-origin: top right;
  transform: rotate(-45deg);
}
.scroll-container .modal .modal__collapse span:nth-child(1):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  border-top: 1px solid;
  transform-origin: right;
  transform: rotate(45deg);
}
.scroll-container .modal .modal__collapse span:nth-child(2) {
  grid-column-start: 1;
  grid-row-start: 2;
  align-self: flex-end;
  transform-origin: bottom left;
}
.scroll-container .modal .modal__collapse span:nth-child(2):before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  border-top: 1px solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
}
.scroll-container .modal .modal__collapse span:nth-child(2):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  border-top: 1px solid;
  transform-origin: left;
  transform: rotate(-45deg);
}
@media (pointer: fine) {
  .scroll-container .modal .modal__collapse:active span, .scroll-container .modal .modal__collapse:hover span, .scroll-container .modal .modal__collapse:focus span, .scroll-container .modal .modal__collapse:focus-visible span {
    color: #F886B8 !important;
    background: #F886B8 !important;
  }
}
.scroll-container .modal .modal__collapse span {
  background: #00177a;
  color: #00177a;
}
.scroll-container .modal .modal__collapse span:nth-child(1):before, .scroll-container .modal .modal__collapse span:nth-child(1):after {
  top: auto;
  left: 0;
  right: auto;
  bottom: 0;
  transform-origin: bottom left;
}
.scroll-container .modal .modal__collapse span:nth-child(2):before, .scroll-container .modal .modal__collapse span:nth-child(2):after {
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
  transform-origin: top right;
}
@media (min-width: 768px) {
  .scroll-container .modal {
    grid-template-rows: max-content 1fr;
    grid-row-gap: 3rem;
  }
  .scroll-container .modal > h5,
  .scroll-container .modal > div {
    grid-column-start: 2;
    padding-left: 4rem;
  }
  .scroll-container .modal .image {
    display: flex;
    grid-row-start: 1;
    grid-row-end: span 3;
    background-position: center;
  }
  .scroll-container .modal .image a {
    align-self: flex-end;
  }
}
.scroll-container .modal.modal--active {
  z-index: 1000;
  opacity: 1;
  top: 6rem;
  pointer-events: all;
}
.scroll-container[data-active-section=hero] svg.background, .scroll-container[data-active-section=intro] svg.background {
  opacity: 0.4;
  transform: scale(1) translateY(0);
}
@media (min-width: 125vh) {
  .scroll-container[data-active-section=hero] svg.background, .scroll-container[data-active-section=intro] svg.background {
    transform: scale(1.1) translateY();
  }
}
@media (min-width: 150vh) {
  .scroll-container[data-active-section=hero] svg.background, .scroll-container[data-active-section=intro] svg.background {
    transform: scale(1.2) translateY();
  }
}
@media (min-width: 175vh) {
  .scroll-container[data-active-section=hero] svg.background, .scroll-container[data-active-section=intro] svg.background {
    transform: scale(1.3) translateY();
  }
}
.scroll-container[data-active-section=hero] main .section#hero .section__content .logo svg path {
  fill: #597DA8;
  opacity: 0;
  animation: moon 800ms forwards;
}
.scroll-container[data-active-section=hero] main .section#hero .section__content .logo svg path:nth-child(1) {
  animation-delay: 200ms;
}
.scroll-container[data-active-section=hero] main .section#hero .section__content .logo svg path:nth-child(2) {
  animation-delay: 250ms;
}
.scroll-container[data-active-section=hero] main .section#hero .section__content .logo svg path:nth-child(3) {
  animation-delay: 300ms;
}
.scroll-container[data-active-section=hero] main .section#hero .section__content .logo svg path:nth-child(4) {
  animation-delay: 350ms;
}
.scroll-container[data-active-section=hero] main .section#hero .section__content .logo svg path:nth-child(5) {
  animation-delay: 400ms;
}
.scroll-container[data-active-section=hero] main .section#hero .section__content .logo svg path:nth-child(6) {
  animation-delay: 450ms;
}
.scroll-container[data-active-section=hero] main .section#hero .section__content .logo svg path:nth-child(7) {
  animation-delay: 500ms;
}
.scroll-container[data-active-section=hero] main .section#hero .section__content .logo svg path:nth-child(8) {
  animation-delay: 550ms;
}
@media (min-width: 768px) {
  .scroll-container[data-active-section=hero] header {
    top: -7rem;
  }
}
.scroll-container[data-active-section=feature] svg.background, .scroll-container[data-active-section=feature1] svg.background, .scroll-container[data-active-section=feature2] svg.background, .scroll-container[data-active-section=feature3] svg.background, .scroll-container[data-active-section=feature4] svg.background, .scroll-container[data-active-section=feature5] svg.background, .scroll-container[data-active-section=feature6] svg.background, .scroll-container[data-active-section=feature7] svg.background, .scroll-container[data-active-section=feature8] svg.background, .scroll-container[data-active-section=feature9] svg.background {
  opacity: 0.6;
  transform: scale(1) translateY(-30vh);
}
@media (min-width: 125vh) {
  .scroll-container[data-active-section=feature] svg.background, .scroll-container[data-active-section=feature1] svg.background, .scroll-container[data-active-section=feature2] svg.background, .scroll-container[data-active-section=feature3] svg.background, .scroll-container[data-active-section=feature4] svg.background, .scroll-container[data-active-section=feature5] svg.background, .scroll-container[data-active-section=feature6] svg.background, .scroll-container[data-active-section=feature7] svg.background, .scroll-container[data-active-section=feature8] svg.background, .scroll-container[data-active-section=feature9] svg.background {
    transform: scale(1.1) translateY(-30vh);
  }
}
@media (min-width: 150vh) {
  .scroll-container[data-active-section=feature] svg.background, .scroll-container[data-active-section=feature1] svg.background, .scroll-container[data-active-section=feature2] svg.background, .scroll-container[data-active-section=feature3] svg.background, .scroll-container[data-active-section=feature4] svg.background, .scroll-container[data-active-section=feature5] svg.background, .scroll-container[data-active-section=feature6] svg.background, .scroll-container[data-active-section=feature7] svg.background, .scroll-container[data-active-section=feature8] svg.background, .scroll-container[data-active-section=feature9] svg.background {
    transform: scale(1.2) translateY(-30vh);
  }
}
@media (min-width: 175vh) {
  .scroll-container[data-active-section=feature] svg.background, .scroll-container[data-active-section=feature1] svg.background, .scroll-container[data-active-section=feature2] svg.background, .scroll-container[data-active-section=feature3] svg.background, .scroll-container[data-active-section=feature4] svg.background, .scroll-container[data-active-section=feature5] svg.background, .scroll-container[data-active-section=feature6] svg.background, .scroll-container[data-active-section=feature7] svg.background, .scroll-container[data-active-section=feature8] svg.background, .scroll-container[data-active-section=feature9] svg.background {
    transform: scale(1.3) translateY(-30vh);
  }
}
@media (min-width: 900px) {
  .scroll-container[data-active-section=feature] main .section#feature .section__content,
  .scroll-container[data-active-section=feature] main .section.feature-group .section__content, .scroll-container[data-active-section=feature1] main .section#feature .section__content,
  .scroll-container[data-active-section=feature1] main .section.feature-group .section__content, .scroll-container[data-active-section=feature2] main .section#feature .section__content,
  .scroll-container[data-active-section=feature2] main .section.feature-group .section__content, .scroll-container[data-active-section=feature3] main .section#feature .section__content,
  .scroll-container[data-active-section=feature3] main .section.feature-group .section__content, .scroll-container[data-active-section=feature4] main .section#feature .section__content,
  .scroll-container[data-active-section=feature4] main .section.feature-group .section__content, .scroll-container[data-active-section=feature5] main .section#feature .section__content,
  .scroll-container[data-active-section=feature5] main .section.feature-group .section__content, .scroll-container[data-active-section=feature6] main .section#feature .section__content,
  .scroll-container[data-active-section=feature6] main .section.feature-group .section__content, .scroll-container[data-active-section=feature7] main .section#feature .section__content,
  .scroll-container[data-active-section=feature7] main .section.feature-group .section__content, .scroll-container[data-active-section=feature8] main .section#feature .section__content,
  .scroll-container[data-active-section=feature8] main .section.feature-group .section__content, .scroll-container[data-active-section=feature9] main .section#feature .section__content,
  .scroll-container[data-active-section=feature9] main .section.feature-group .section__content {
    transform: scale(1);
  }
}
.scroll-container[data-active-section=body] svg.background {
  opacity: 0.4;
  transform: translateY(-70vh);
}
@media (min-width: 125vh) {
  .scroll-container[data-active-section=body] svg.background {
    transform: scale(1.1) translateY(-70vh);
  }
}
@media (min-width: 150vh) {
  .scroll-container[data-active-section=body] svg.background {
    transform: scale(1.2) translateY(-70vh);
  }
}
@media (min-width: 175vh) {
  .scroll-container[data-active-section=body] svg.background {
    transform: scale(1.3) translateY(-70vh);
  }
}
@media (min-width: 900px) {
  .scroll-container[data-active-section=body] main .section#body .section__content {
    transform: scale(1);
  }
}
.scroll-container.scroll-container--menu {
  overflow-y: hidden;
}
.scroll-container.scroll-container--menu header .hamburger span.logo {
  display: none;
}
.scroll-container.scroll-container--menu header .hamburger:before {
  transform: translate(-10%, 1px) rotate(-45deg);
  width: 1rem;
}
.scroll-container.scroll-container--menu header .hamburger:after {
  transform: translate(-10%, -1px) rotate(45deg);
  width: 1rem;
}
.scroll-container.scroll-container--menu header nav {
  border-right: 1px solid;
  transform: translateX(0);
}
.scroll-container.scroll-container--menu:after {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  background: rgba(4, 15, 64, 0.7);
  backdrop-filter: blur(2px);
}
@media (min-width: 768px) {
  .scroll-container.scroll-container--menu {
    overflow: visible;
  }
  .scroll-container.scroll-container--menu:after {
    content: unset;
  }
  .scroll-container.scroll-container--menu nav {
    border-right: none;
    transform: none;
  }
}
.scroll-container.scroll-container--modal {
  overflow: hidden !important;
}
.scroll-container.scroll-container--modal:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(4, 15, 64, 0.7);
  z-index: 90;
  backdrop-filter: blur(2px);
  content: "" !important;
}
.scroll-container.scroll-container--modal main .section .section__content {
  transition: none !important;
  transform: none !important;
}

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