:root {
  --vh: 1vh;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Avenir";
  font-weight: 300;
  background: var(--color-background);

  transition: all 0.5s linear;
}

* {
  transition: all 0.3s ease-in-out, color 0s ease-in-out 0s;
}

main {
  position: relative;
}

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

p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

figure {
  margin: 0;
}

button {
  outline: none;
  border: none;
  background: none;
}

/* Image Container */
.image-container {
  overflow: hidden;
}
.image-container *:not(.contextual) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.image-container img,
.image-container video {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.image-container .media,
.image-container .field-media-image,
.image-container .field-media-image-content {
  width: 100%;
  height: 100%;
}

/* Sitemap */
.sitemap {
  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 100vh;
}

/* !extra! */
.simpleParallax {
  width: 100%;
  height: 100%;
}

.visually-hidden-block {
  position: absolute;
  top: 0;
  opacity: 0;
  pointer-events: none;
}

.block {
  width: 100%;
}
.block-container {
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}

@media screen and (min-width: 651px) {
  .mobile {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .desktop {
    display: none;
  }
}

/* BODY */
body.is--preloading {
  overflow: hidden !important;
}

body.background--secondary-background {
  /* color: white; */
}

/* Preloader */
.preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--color-secondary-background);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 10000;
}
body.is--preloading .preloader {
  opacity: 1;
  pointer-events: all;
}

.social-icons a{
  display: inline-block;
  padding: 5px;
  font-size: 18px;
}
