@charset "UTF-8";
@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/gilroy/gilroy-light.woff2") format("woff2"), url("/assets/fonts/gilroy/gilroy-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/gilroy/gilroy-extra-bold.woff2") format("woff2"), url("/assets/fonts/gilroy/gilroy-extra-bold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dmsans/dmsans-regular.woff2") format("woff2"), url("/assets/fonts/dmsans/dmsans-regular.woff") format("woff");
  font-weight: 400l;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dmsans/dmsans-bold.woff2") format("woff2"), url("/assets/fonts/dmsans/dmsans-bold.woff") format("woff");
  font-weight: bold;
  font-style: 600;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dmsans/dmsans-medium.woff2") format("woff2"), url("/assets/fonts/dmsans/dmsans-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
#navigation {
  z-index: 2;
  font-family: "Gilroy", "Arial", sans-serif;
  font-weight: 500;
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  container-type: size;
}
#navigation .logo {
  padding: 8px;
}
#navigation .logo img {
  width: 46px;
}
@container (width < 400px) {
  #navigation .logo {
    display: none;
  }
}
#navigation .spacer {
  flex-grow: 1;
}
#navigation nav {
  display: flex;
}
#navigation nav .nav-item {
  color: #ffffff;
  text-decoration: none;
  padding: 12px;
}
#navigation nav .nav-item:visited {
  color: #ffffff;
}
#navigation nav .nav-item.active:before {
  content: "•";
  margin-right: 8px;
}
#navigation.floating {
  background-color: #ffffff;
}
#navigation.floating nav {
  display: flex;
}
#navigation.floating nav .nav-item {
  color: #224660;
}

@supports (-webkit-touch-callout: none) {
  header section class {
    background-attachment: scroll;
  }
}
header {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
header:after {
  content: "";
  position: fixed;
  top: 0;
  height: 100vh;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
header .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}
header .bottom .logo {
  text-align: center;
}
header .bottom .logo img {
  width: 300px;
}
header .bottom .title {
  text-align: center;
  color: #ffffff;
  font-size: 42px;
  line-height: 34px;
  font-weight: 500;
  font-family: "Gilroy";
}
header.compact {
  height: 300px;
}
header.compact .bottom .logo img {
  width: 80px;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/gilroy/gilroy-light.woff2") format("woff2"), url("/assets/fonts/gilroy/gilroy-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/gilroy/gilroy-extra-bold.woff2") format("woff2"), url("/assets/fonts/gilroy/gilroy-extra-bold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dmsans/dmsans-regular.woff2") format("woff2"), url("/assets/fonts/dmsans/dmsans-regular.woff") format("woff");
  font-weight: 400l;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dmsans/dmsans-bold.woff2") format("woff2"), url("/assets/fonts/dmsans/dmsans-bold.woff") format("woff");
  font-weight: bold;
  font-style: 600;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dmsans/dmsans-medium.woff2") format("woff2"), url("/assets/fonts/dmsans/dmsans-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
footer {
  display: flex;
  background: #224660;
  color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  position: relative;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  row-gap: 24px;
}
footer .title {
  position: absolute;
  left: 6px;
  top: auto;
  font-family: "Gilroy";
  font-weight: bold;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  rotate: 180deg;
  font-size: 28px;
}
footer .location, footer .contact {
  width: fit-content;
  text-align: center;
  font-size: 18px;
}
footer .location .icon, footer .contact .icon {
  margin-bottom: 4px;
}
footer .location .text, footer .contact .text {
  margin-top: 4px;
  display: block;
  color: #ffffff;
}

body {
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 300;
  height: 100vh;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}
body .content {
  padding: 24px;
}