@charset "UTF-8";
:root {
  --elevated: #FFFFFF;
}

[data-theme=dark] {
  --elevated: #202020;
  --on-elevated: #000000;
  --text-color: #000000;
  --background: #FFFFFF;
  --primary: #2F4092;
  --on-primary: #FFFFFF;
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

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

[lang] {
  display: none;
}

[lang=en] {
  display: unset;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  background-color: var(--background);
  line-height: 1.3;
  overflow-x: hidden;
  text-align: center;
}
body.noscroll {
  overflow: hidden;
}

a, a:visited {
  color: black;
}

a:hover {
  color: #3b4d75;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

h1 {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 0rem;
}
@media (max-width: 49.9375em) {
  h1 {
    font-size: 1.8rem;
  }
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 49.9375em) {
  h2 {
    font-size: 1.4rem;
  }
}

strong {
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 49.9375em) {
  h3 {
    font-size: 1.2rem;
  }
}

h4 {
  font-size: 1.125rem;
  font-weight: 400;
}
@media (min-width: 74em) {
  h4 {
    font-size: 1.5rem;
  }
}

.container {
  padding: 2rem;
}
@media (min-width: 50em) {
  .container {
    padding: 3.75rem;
  }
}

.button-primary {
  background-color: #4044EE;
  color: #FFF;
  padding: 1rem 1.5rem 1rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.75rem;
  font-family: "Montserrat";
  font-weight: 700;
  border: none;
  transition: 0.3s ease-in-out;
}
.button-primary:hover {
  background-color: #6567ee;
  scale: 102%;
}

.button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFF;
  padding: 1rem 1.5rem 1rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.75rem;
  font-family: "Montserrat";
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s ease-in-out;
}
.button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  scale: 102%;
}

.cta-icon {
  padding-right: 0.625rem;
  max-height: 1.5rem;
}

.cta-icon-big {
  padding-right: 0.625rem;
  max-height: 1.8125rem;
}

.hero-icon {
  position: relative;
  top: 0.375rem;
}

.padding {
  padding: 2rem;
}

section {
  padding-left: max((100vw - 100rem) / 2, 2rem);
  padding-right: max((100vw - 100rem) / 2, 2rem);
}

.hero-gradient {
  background: radial-gradient(46.27% 59.94% at 41.2% 36.57%, #1A1B2D 0%, #151624 50%, #0C0C12 100%);
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

select {
  border-radius: 0.75rem;
  background-color: rgba(41, 43, 71, 0.7);
  color: #FFF;
  padding: 0.5rem 1.9rem 0.5rem 1rem;
  font-size: 0.8rem;
  font-family: "Montserrat";
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s ease-in-out;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "▼";
  font-size: 0.6rem;
  top: 12px;
  right: 10px;
  position: absolute;
  margin-right: 0.2rem;
  pointer-events: none;
}

.header {
  padding: 1rem 4.125rem 1rem 4.125rem;
  margin: 0 auto 0 auto;
  color: #175157;
  background-color: #175157;
}
@media (max-width: 49.9375em) {
  .header {
    padding: 1rem;
    display: flex;
    align-items: center;
  }
}
.header a {
  color: #FFFFFF;
  transition: 200ms ease-in-out;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header__logo {
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 3rem;
}
@media (max-width: 73.9375em) {
  .header__logo {
    font-size: 1.25rem;
  }
}
@media (max-width: 49.9375em) {
  .header__logo {
    margin-right: 0;
  }
}
.header__logo img {
  width: 3rem;
  height: auto;
  margin-right: 1rem;
}
@media (max-width: 73.9375em) {
  .header__logo img {
    width: 2rem;
    height: auto;
  }
}
.header__links {
  display: flex;
  width: 100%;
}
.header__links a {
  padding-left: 1rem;
  padding-right: 2rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 170%;
  white-space: nowrap;
}
@media (max-width: 73.9375em) {
  .header__links a {
    font-size: 0.8rem;
  }
}
@media (max-width: 49.9375em) {
  .header__links {
    display: none;
  }
}
.header__toggle {
  margin-top: auto;
  margin-bottom: auto;
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--on-elevated);
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  justify-content: end;
}
@media (max-width: 49.9375em) {
  .header__cta {
    display: none;
  }
}
.header nav {
  margin: 0 auto;
  max-width: 100rem;
}

.footer__copyright {
  padding: 1rem;
  color: black;
}
.footer__copyright a {
  margin-top: 1rem;
  font-weight: 600;
  color: black;
}
@media (max-width: 49.9375em) {
  .footer__copyright {
    font-size: 0.8rem;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 88vh;
}
.hero h2 {
  margin: 0.5rem 0;
}
.hero #info-heading {
  margin-top: 3rem;
}
@media (max-width: 49.9375em) {
  .hero {
    margin: 0 1.2rem;
    height: 80vh;
  }
}/*# sourceMappingURL=style.css.map */