/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set font size so that 1 rem = 10px; */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.hamburger {
  padding: 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          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-box {
  width: 30px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -9px;
}

.hamburger-inner::after {
  bottom: -9px;
}

.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@use 'variables' as *;
body {
  background-color: #212d3b;
  overflow-x: hidden;
}

a {
  color: #bc064c;
}

p > span {
  color: #0099ad;
}

.section {
  width: 100vw;
  min-height: 100vh;
  background: #212d3b;
  border-bottom: 1px solid rgba(230, 232, 240, 0.95);
}

.section.home {
  background-color: #212d3b;
}

.section.about {
  background-color: #e5e6e6;
}

.section.solutions {
  background-color: white;
}

.section.partners {
  background-color: #e5e6e6;
}

.section.contacts {
  background-color: #e5e6e6;
}

.section h1 ~ h1 {
  margin-top: 2rem;
}

.section p {
  margin: 1.8rem 0;
  font-size: 1.8rem;
}

.section-content {
  min-height: 100vh;
  max-width: 80em;
  margin: 0 auto;
  padding: 12rem 32px;
}

@media (min-width: 600px) {
  .section-content {
    padding: 16rem 32px;
  }
}

.section-content.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0099ad;
}

.section-content.hero h1.display {
  font-size: 4rem;
  letter-spacing: 1px;
  color: #0099ad;
}

@media (min-width: 600px) {
  .section-content.hero h1.display {
    max-width: 62%;
    font-size: 8rem;
    letter-spacing: -2px;
  }
}

.section-content.hero p {
  color: #baf0f7;
  font-size: 2.4rem;
  margin-top: 2rem;
}

@media (min-width: 600px) {
  .section-content.hero p {
    max-width: 62%;
  }
}

.section-content.panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: rgba(230, 232, 240, 0.95);
}

.section-content-cols3, .section-content-cols2 {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  -webkit-column-gap: 3.2rem;
     -moz-column-gap: 3.2rem;
          column-gap: 3.2rem;
  row-gap: 1rem;
}

@media (min-width: 900px) {
  .section-content-cols3, .section-content-cols2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .section-content-cols2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer {
  background-color: #212d3b;
  padding: 6.4rem 32px 9.6rem;
  min-height: 38vh;
  color: #00e1ff;
  opacity: .75;
  font-size: 1.4rem;
}

.footer h3 {
  font-family: SFUIText, sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  border-bottom: 1px dotted rgba(0, 225, 255, 0.75);
  padding: 0 0 .4rem;
  color: #0099ad;
  margin-bottom: 1.2rem;
}

.footer .footer-content {
  margin: 0 auto;
  max-width: 80em;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 3.2rem;
}

@media (min-width: 600px) {
  .footer .footer-content {
    grid-template-columns: 2fr 1fr;
  }
}

.footer a {
  text-decoration: none;
  color: inherit;
  opacity: .8;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

.footer a:hover {
  color: white;
}

.footer address {
  font-style: normal;
  white-space: pre-line;
}

.footer p {
  margin-top: .8rem;
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 2rem 32px;
  width: 100vw;
  background-color: rgba(33, 45, 59, 0.95);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-timing-function: cubic-bezier(0.1, 0.5, 0.5, 1);
          transition-timing-function: cubic-bezier(0.1, 0.5, 0.5, 1);
}

@media (min-width: 600px) {
  .nav-bar.nav-close {
    -webkit-transform: translateY(calc(-100% + 2rem));
            transform: translateY(calc(-100% + 2rem));
  }
  .nav-bar.nav-close:hover {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

nav .brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 4rem;
}

nav ul {
  display: none;
}

@media (min-width: 900px) {
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

nav ul li {
  margin-right: 2rem;
  line-height: 1;
}

nav ul a {
  font-family: 'Acherus', -apple-system, sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  color: #00e1ff;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

nav ul a:hover {
  color: white;
}

@media (min-width: 900px) {
  nav .hamburger {
    display: none;
  }
}

.nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100vw;
  height: 100vh;
  padding: 20vh 4rem 4rem;
  background-color: #212d3b;
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.46, 0.25, 0.33, 1.26);
          transition-timing-function: cubic-bezier(0.46, 0.25, 0.33, 1.26);
  pointer-events: none;
}

.nav-panel.is-open {
  pointer-events: auto;
  opacity: 1;
}

.nav-panel.is-open li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.nav-panel ul {
  margin: 0;
  padding: 0;
}

.nav-panel li {
  -webkit-transition: opacity 600ms, -webkit-transform 300ms;
  transition: opacity 600ms, -webkit-transform 300ms;
  transition: opacity 600ms, transform 300ms;
  transition: opacity 600ms, transform 300ms, -webkit-transform 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.1, 0.5, 0.5, 1);
          transition-timing-function: cubic-bezier(0.1, 0.5, 0.5, 1);
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
}

.nav-panel li a {
  color: #00e1ff;
  text-decoration: none;
  font-size: 4.8rem;
  font-weight: 700;
}

.nav-panel li a:after {
  content: '.';
}

.banner-container {
  z-index: 1000;
  position: fixed;
  bottom: 3rem;
  left: auto;
  right: auto;
  width: calc(100% - 6rem);
  max-width: 80em;
  -webkit-box-shadow: 0 0 10px rgba(33, 45, 59, 0.5);
          box-shadow: 0 0 10px rgba(33, 45, 59, 0.5);
  border-radius: 10px;
  overflow: hidden;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 5rem;
  margin-top: 5rem;
  place-content: center;
}

.partner-cards img {
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}

.partner-cards .partner-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
}

.flex-fill {
  -webkit-box-flex: 1;
      -ms-flex: 1 auto;
          flex: 1 auto;
}

.icon-container {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #212d3b;
}

.entry {
  opacity: 0;
}

.entry.slide-up {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 1000ms ease-in, -webkit-transform 750ms cubic-bezier(0.1, 0.5, 0.5, 1);
  transition: opacity 1000ms ease-in, -webkit-transform 750ms cubic-bezier(0.1, 0.5, 0.5, 1);
  transition: opacity 1000ms ease-in, transform 750ms cubic-bezier(0.1, 0.5, 0.5, 1);
  transition: opacity 1000ms ease-in, transform 750ms cubic-bezier(0.1, 0.5, 0.5, 1), -webkit-transform 750ms cubic-bezier(0.1, 0.5, 0.5, 1);
}

.entry.slide-up.reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.entry.slide-in-left {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: opacity 750ms ease, -webkit-transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1);
  transition: opacity 750ms ease, -webkit-transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1);
  transition: opacity 750ms ease, transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1);
  transition: opacity 750ms ease, transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1), -webkit-transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1);
}

.entry.slide-in-left.reveal {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.entry.slide-in-right {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: opacity 750ms ease, -webkit-transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1);
  transition: opacity 750ms ease, -webkit-transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1);
  transition: opacity 750ms ease, transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1);
  transition: opacity 750ms ease, transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1), -webkit-transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1);
}

.entry.slide-in-right.reveal {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.entry.scale-up {
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1);
  transition: opacity 500ms ease, -webkit-transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1);
  transition: opacity 500ms ease, transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1);
  transition: opacity 500ms ease, transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1), -webkit-transform 500ms cubic-bezier(0.1, 0.5, 0.5, 1);
}

.entry.scale-up.reveal {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@font-face {
  font-family: 'Acherus';
  src: url("../fonts/acherusgrotesque-book-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Acherus';
  src: url("../fonts/acherusgrotesque-bookitalic-webfont.woff2") format("woff2");
  font-style: italic;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Acherus';
  src: url("../fonts/acherusgrotesque-semibold-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Acherus';
  src: url("../fonts/acherusgrotesque-bold-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'SFUIText';
  src: url("../fonts/SFUIText-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'SFUIText';
  src: url("../fonts/SFUIText-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

body {
  font-family: 'Acherus', -apple-system, sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
}

h1, h2, h4 {
  font-family: 'Acherus', -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  color: #212d3b;
}

h1 {
  font-size: 6.4rem;
}

h1.display {
  font-size: 8rem;
  line-height: 1;
  letter-spacing: -3px;
}

h2 {
  font-size: 3.2rem;
  color: #0099ad;
}

h3 {
  font-size: 2.4rem;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: scale(1) rotateZ(60deg);
            transform: scale(1) rotateZ(60deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: scale(1) rotateZ(60deg);
            transform: scale(1) rotateZ(60deg);
  }
}

.rdl-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin-top: -32px;
  margin-left: -32px;
  -webkit-animation: spin 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
          animation: spin 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}

.rdl-loader img {
  width: 100%;
}

.rdl-logo {
  max-width: 200px;
  display: block;
}

.rdl-logo .icon {
  fill: #00e1ff;
}

.rdl-logo.bg-dark .label {
  fill: white;
}

.rdl-logo.bg-light .label {
  fill: #212d3b;
}
