@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  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;
}

/* 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]) {
  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 {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-size: 18px;
  line-height: 1.2em;
  font-family: "rubik", sans-serif;
  text-rendering: optimizeLegibility;
  padding: 0 1em 0 1em;
  color: #009FE3;
  margin: 0 auto;
}
body.is-waiting {
  cursor: wait !important;
}
body.is-waiting .grid__container {
  cursor: wait !important;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

p em {
  font-style: italic;
}

p strong {
  font-weight: 500;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 200ms;
}

.grid__image .lazyload,
.grid__image .lazyloading {
  opacity: 0;
  transition: opacity 200ms;
}

.grid__image img.lazyloaded {
  opacity: 1;
}

.header {
  width: 100%;
}
.header__logo {
  width: 80%;
  max-width: 200px;
  margin: 1em auto 1em auto;
}
.header__baseline {
  text-align: center;
  display: block;
}
.header__baseline span.fs-s {
  font-size: 14px;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: bold;
}
.header__menu {
  width: 100%;
  margin: 1em 0 0 0;
  border-top: 2px solid #009FE3;
  border-bottom: 2px solid #009FE3;
  padding: 1em 0 1em 0;
}
.header__menu nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 2em;
}
.header__languages {
  display: flex;
}
.header__languages div:after {
  content: " – ";
  white-space: pre;
}
.header__languages div:last-child:after {
  content: none;
}

.fs-s {
  display: block;
  font-size: 15px;
  line-height: 1.2em;
}

.fs-l {
  font-size: 72px;
  line-height: 1em;
  font-weight: bold;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 500px) {
  .fs-l {
    font-size: 48px;
  }
}

.overlay {
  display: none;
}

.grid {
  margin: 2em 0 2em 0;
}
.grid__label {
  margin-bottom: 1em;
}
.grid__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1em 1em;
  width: 100%;
}
.grid__item {
  min-width: 0;
}
.grid__container {
  cursor: pointer;
}
.grid__image {
  padding-bottom: 66.69%;
  position: relative;
  overflow: hidden;
  background-color: #001875;
}
.grid__image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  mix-blend-mode: screen;
}
.grid__title {
  text-align: center;
  margin: 0.5em auto 0 auto;
}
@media screen and (max-width: 1000px) {
  .grid__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .grid__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid__container:hover .grid__image img {
  filter: brightness(1.15);
}

.article {
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 2px dashed #009FE3;
}
.article__title {
  margin: 2em auto 2em auto;
  width: 100%;
  max-width: 600px;
  text-align: center;
}
.article__video {
  margin: 0 auto 2em auto;
  max-width: 600px;
}
.article__video-wraper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.article__video-wraper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.article__video-caption {
  margin-top: 0.2em;
  text-align: center;
  width: 100%;
}
.article__images {
  margin: 0 auto 2em auto;
  max-width: 600px;
}
.article__images figure {
  margin-bottom: 2em;
}
.article__images figure figcaption {
  margin-top: 0.2em;
  text-align: center;
}
.article__images figure:last-child {
  margin-bottom: 0;
}
.article__images .vertical {
  width: 60%;
  margin: 0 auto 2em auto;
}
.article__text {
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.4em;
}
.article__text p {
  margin-bottom: calc(1.4em / 2);
}
.article__text p:last-child {
  margin-bottom: 0;
}
.article__link {
  display: none;
  margin: 2em auto 0 auto;
  max-width: 600px;
}
.article__link .button {
  cursor: pointer;
  border: 2px solid #009FE3;
  color: #009FE3;
  background-color: white;
  padding: 1em 2em 1em 2em;
  font-size: 16px;
  line-height: 1.4em;
  text-transform: uppercase;
}
@media screen and (max-width: 500px) {
  .article__link .button {
    font-size: 16px;
    line-height: 1.4em;
  }
}

.about {
  margin-bottom: 2em;
  margin-top: 2em;
}
.about__text {
  margin: 0 auto 2em auto;
  max-width: 600px;
  line-height: 1.4em;
}
.about__text p {
  margin-bottom: calc(1.4em / 2);
}
.about__text p:last-child {
  margin-bottom: 0;
}
.about__text p a {
  background-image: linear-gradient(to right, #009FE3 100%, transparent 100%);
  background-position: 0 22px;
  background-repeat: repeat-x;
  background-size: 8px 2px;
}

.footer {
  padding-top: 4em;
  border-top: 2px solid #009FE3;
  margin: 0 0 4em 0;
  text-align: center;
}

.overlay {
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #009FE3;
  z-index: 2;
}
.overlay__container {
  margin: 2em auto 2em auto;
  max-width: 600px;
}

nav a:hover,
p a,
.grid__item:hover .grid__title span,
.active {
  background-image: linear-gradient(to right, #009FE3 100%, transparent 100%);
  background-position: 0 20px;
  background-repeat: repeat-x;
  background-size: 8px 2px;
  font-style: italic;
}

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