/* global definitions */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

body.loaded #page {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}

#alphawrapper {
  overflow: hidden;
}

body.blog #alphawrapper {
  overflow: visible;
}

.accessHelper {
  display: none;
}

.cover-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

video,
img {
  width: 100%;
  height: auto;
  display: block;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.overflow-hidden {
  overflow: hidden;
}

a {
  text-decoration: none;
}
a.underline {
  text-decoration: underline;
}
a.underline:hover {
  text-decoration: none;
}

.height--50 {
  height: 50vh;
}
.height--intro {
  height: 100vh;
}
.height--100 {
  height: 100vh;
}
@media (max-width: 999px) {
  .height--100 {
    height: 55vh !important;
  }
}
.height--intro {
  min-height: 900px;
}

@media (max-width: 999px) {
  body.home .height--100 {
    height: 100vh !important;
    min-height: 500px;
  }
}

@media (max-width: 1180px) {
  .height--intro {
    min-height: 600px;
  }
}
@media (max-width: 999px) {
  .height--intro {
    min-height: 400px;
  }
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}
.absolute--trbl {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hidden {
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: black;
}
.video-wrapper--video video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

/* fix 27-10-23 */
.post-item--video .video-wrapper--video video {
  position: relative;
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
}

.mobile {
  display: none;
}
@media (max-width: 999px) {
  .mobile {
    display: block;
  }
}

.no-mobile {
  display: block;
}
@media (max-width: 999px) {
  .no-mobile {
    display: none;
  }
}

#meta-box {
  position: absolute;
  right: 0;
}
@media (max-width: 999px) {
  #meta-box {
    top: 570px !important;
  }
}
#meta-box .socials {
  position: relative;
  z-index: 999;
  margin-right: 150px;
}
#meta-box.no-jobs {
  top: 90vh;
}
@media (max-width: 999px) {
  #meta-box .hidden-teaser {
    display: none;
  }
}

.job-teaser {
  display: block;
  padding: 25px;
  margin-bottom: 33px;
}
@media (max-width: 999px) {
  .job-teaser {
    max-width: 195px;
    float: right;
    margin-bottom: 0;
    display: none;
  }
}

@media (max-width: 999px) {
  body.home .job-teaser {
    display: block;
  }
}

.socials {
  font-size: 0;
}
.socials a {
  overflow: hidden;
  font-size: 0;
  margin: 0 0 0 20px;
}
.socials a svg {
  width: auto;
  height: 22px;
}
@media (max-width: 999px) {
  .socials.is-white {
    display: flex;
    width: 100%;
    margin-top: 20px;
  }
}/*# sourceMappingURL=globals.css.map */