:root {
  --light-grey: #f4f4f4;
  --light-greyer: #cecece;
  --grey: #7f7f7f;
  --dark-grey: #1f1f1f;
  --greyer: #333333;
  --black: #000;
}

@font-face {
  font-family: H;
  src: url("./../../../../assets/fonts/HelveticaNeueLTStd-Roman.otf") format("opentype");
  font-weight: 400;
}
:root {
  --almost-black: #111;
}

.nav {
  color: var(--black);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--grey);
  display: flex;
  height: 50px;
  line-height: normal;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  transition: top 0.2s ease;
  z-index: 100;
}
@media screen and (min-width: 400px) {
  .nav {
    font-size: 0.925rem;
  }
}
.nav.is-light {
  top: -38px;
}
.nav:hover {
  top: 0 !important;
}
@media screen and (min-width: 800px) {
  .nav {
    height: 55px;
    top: 0;
  }
  .nav.is-light {
    top: -43px;
  }
}
.nav a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  padding-top: 0.4em;
  width: 100%;
}
.nav img {
  display: inline-block;
  margin-right: 0.5em;
  margin-top: -0.4em;
  max-height: 1.25em;
  max-width: 1.25em;
  transition: all 0.3s ease;
}
.nav .nav-item,
.nav .nav-menu {
  background-color: #fff;
  flex: 1;
  text-align: center;
  transition: 0.4s ease background-color, 0.4s ease color;
}
.nav .nav-item:not(.is-logo),
.nav .nav-menu:not(.is-logo) {
  border-left: 1px solid var(--grey);
}
.nav .nav-item.is-open img, .nav .nav-item:hover img {
  filter: invert(1);
}
.nav .nav-item.language {
  flex: auto;
  max-width: 4em;
}
.nav .nav-item.is-open,
.nav .nav-item:hover,
.nav .nav-menu:hover {
  background-color: var(--black);
  color: #fff;
}
.nav .only-mobile {
  display: flex;
}
@media screen and (min-width: 800px) {
  .nav .only-mobile {
    display: none;
  }
}
.nav .only-desktop {
  display: none;
}
@media screen and (min-width: 800px) {
  .nav .only-desktop {
    display: flex;
  }
}

.nav-mobile {
  color: var(--black);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-left: 1px solid var(--grey);
  height: auto;
  opacity: 1;
  position: fixed;
  right: 0;
  top: 50px;
  transition: top 0.2s ease, opacity 0.2s ease;
  width: calc(50% + 0.5px);
  z-index: 100;
}
@media screen and (min-width: 400px) {
  .nav-mobile {
    font-size: 0.925rem;
  }
}
.nav-mobile.is-light {
  opacity: 0;
  top: 15px;
}
@media screen and (min-width: 800px) {
  .nav-mobile {
    display: none;
  }
}
.nav-mobile .nav-item-mobile {
  background-color: #fff;
  border-bottom: 1px solid var(--grey);
  height: 50px;
  transition: 0.4s ease background-color, 0.4s ease color;
}
.nav-mobile .nav-item-mobile a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  padding-top: 0.4em;
  width: 100%;
}
.nav-mobile .nav-item-mobile:hover, .nav-mobile .nav-item-mobile.is-open {
  background-color: var(--black);
  color: #fff;
}
.nav-mobile .nav-item-mobile.language-mobile {
  display: flex;
}
.nav-mobile .nav-item-mobile.language-mobile:hover, .nav-mobile .nav-item-mobile.language-mobile.is-open {
  background-color: #fff;
  color: unset;
}
.nav-mobile .nav-item-mobile.language-mobile a:first-child {
  border-right: 1px solid var(--grey);
}
.nav-mobile .nav-item-mobile.language-mobile a:hover, .nav-mobile .nav-item-mobile.language-mobile a.is-open {
  background-color: var(--black);
  color: #fff;
}

:root {
  --light-grey: #f4f4f4;
  --light-greyer: #cecece;
  --grey: #7f7f7f;
  --dark-grey: #1f1f1f;
  --greyer: #333333;
  --black: #000;
}

.footer {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.75rem;
  padding-left: 15px;
  padding-right: 15px;
  background-color: var(--light-grey);
  font-size: 0.75em;
  padding-bottom: 2em;
  padding-top: 2em;
}
@media screen and (min-width: 400px) {
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer .footer-logo {
  align-self: flex-start;
  display: flex;
  grid-column: span 2;
}
.footer .footer-logo img {
  max-width: 3em;
}
.footer .footer-content {
  grid-column: span 12;
}
@media screen and (min-width: 440px) {
  .footer .footer-content {
    grid-column: span 5;
  }
}
@media screen and (min-width: 640px) {
  .footer .footer-content {
    grid-column: span 4;
  }
}
.footer .block {
  margin-bottom: 0.6em;
}

* {
  box-sizing: border-box;
  margin: 0;
}

*:focus {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  touch-action: manipulation;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: var(--light-grey);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #000;
}

html {
  scrollbar-color: #000 var(--light-grey);
  scrollbar-width: thin;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  font-family: "H", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  min-height: 100%;
  vertical-align: middle;
  overflow-x: hidden;
}
@media screen and (min-width: 360px) {
  body {
    font-size: 17px;
  }
}
@media screen and (min-width: 480px) {
  body {
    font-size: 18px;
  }
}
@media screen and (min-width: 800px) {
  body {
    font-size: 19px;
  }
}
@media screen and (min-width: 960px) {
  body {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 21px;
  }
}
@media screen and (min-width: 1400px) {
  body {
    font-size: 22px;
  }
}

h1,
h2,
h3,
.big-text {
  font-weight: 400;
  font-size: 1.6em;
  line-height: 1.3;
}
@media screen and (min-width: 400px) {
  h1,
h2,
h3,
.big-text {
    font-size: 1.8em;
  }
}
@media screen and (min-width: 640px) {
  h1,
h2,
h3,
.big-text {
    font-size: 2em;
  }
}
@media screen and (min-width: 800px) {
  h1,
h2,
h3,
.big-text {
    font-size: 2.25em;
  }
}
@media screen and (min-width: 1400px) {
  h1,
h2,
h3,
.big-text {
    font-size: 2.5em;
  }
}

img {
  display: block;
  height: 100%;
  width: 100%;
}

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

a.is-underlined {
  border-bottom: calc(0.03em + 1px) solid;
}

a.button {
  color: var(--black);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background-color: var(--black);
  border-radius: 3em;
  color: #fff;
  display: inline-block;
  line-height: 1;
  margin: 0.25em 0;
  padding: 1.1em 2em 0.7em 2em;
  transition: 0.3s ease background-color;
  white-space: nowrap;
}
@media screen and (min-width: 400px) {
  a.button {
    font-size: 0.925rem;
  }
}
a.button:hover {
  background-color: var(--greyer);
}

a.inverted-button {
  color: var(--black);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 3em;
  color: var(--black);
  display: inline-block;
  line-height: 1;
  margin: 0.25em 0;
  padding: 1.1em 2em 0.7em 2em;
  transition: 0.3s ease background-color;
}
@media screen and (min-width: 400px) {
  a.inverted-button {
    font-size: 0.925rem;
  }
}
a.inverted-button:hover {
  background-color: var(--light-greyer);
}

.smart-br br {
  display: none;
}
@media screen and (min-width: 920px) {
  .smart-br br {
    display: block;
  }
}

.text-outline {
  -webkit-text-stroke-width: 0.75px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-fill-color: var(--black);
  -moz-text-stroke-width: 0.75px;
  -moz-text-stroke-color: #fff;
  -moz-text-fill-color: var(--black);
}

.is-hidden {
  height: 0px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  visibility: hidden;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
}