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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  padding: 0;
  font: 600 12pt "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #fff;
    color: rgba(0,0,0,0.4);
  --bar-height: clamp(56px, 8vh, 84px);
  --header-offset: calc(var(--bar-height));
  --view-height: calc(100vh - 2 * var(--header-offset));
  padding-top: var(--header-offset);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, .05);
}
 
a:hover {
  color:#000;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  min-height: var(--bar-height);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: stretch;
  background: #fff;
  padding: 1em 1em
}

#logo {
  height: 1.5em;
}

.locale-switcher {
  flex-grow: 1;
}

.locale-list {
  display: flex;
  flex-flow: row-reverse wrap;
  gap: 0rem 0.75rem;
  justify-content: flex-start;
}

.locale-link {
  color: #222;
  opacity: 0.5;
}

.locale-link[aria-current="true"] {
  opacity: 1;
}


.page-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: var(--view-height);
  padding: 0 1em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: stretch;
  background: #eee;
}


.page-content p {
  margin: 0;
  padding-bottom: 0.75em;
}

h1,
h2 {
  font-size: 120%;
  text-transform: uppercase;
  font-weight: 600;
  min-height: var(--bar-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  line-height: 1;
  color: #000;
}

:where([id]) {
  scroll-margin-top: calc(var(--header-offset) - 1px);
}

h1 > a,
h2 > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  width: 100%;
  align-self: stretch;
  overflow: clip;
}

.site-footer {
  position: relative;
  z-index: 2;
  /*min-height: 100vh;*/
  display: flex;
  flex-flow: row wrap;
  gap: 1em;
  padding: 1em;
  padding-top: 0;
}

.site-footer h2>a {
  justify-content: flex-start;
}

.footer-nav {
  display: flex;
  flex-flow: row wrap;
  gap: 2em;
}

.footer-nav>section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav .footer-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  overflow: hidden;
  padding-bottom: 2em;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
  font-style: normal;
}
.footer-contact h2>a {
  justify-content: flex-end;
}

.footer-contact-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75em;
}

.footer-contact-content > * {
  margin: 0;
}

.footer-contact-content p {
  white-space: normal;
}

.footer-contact-content :is(ul, ol) {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5em;
  margin: 0;
  padding-left: 0;
  list-style-position: inside;
}

.footer-link--current {
  color: #000;
}

.footer-link {
  display: inline-block;
}
