xhtml, html {
  box-sizing: border-box;
}

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

/* * {position: relative} */

body {
  margin: 0;
  padding: 0;
  background-color: rgba(43, 43, 43, 1);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #fff;
  /* height: calc(var(--vh, 1vh) * 100); */
  position: fixed;
  width: 100%;
}

a {
    color: currentcolor;
    text-decoration: none;
    transition: border-bottom .5s;
    border-bottom: 2px solid rgba(255, 255, 255, 0);
}

a:hover {
    border-bottom: 2px solid rgba(255, 255, 255, .3);
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

figure {
    margin: 0;
}

main {
    min-height: 100vh;
    /* min-height: calc(var(--vh, 1vh) * 100); */
    width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
}

/* Header (Menu Background) */

header {
    background-color: rgba(43, 43, 43, 0.6);
    min-height: 100vh;
    /* min-height: calc(var(--vh, 1vh) * 100); */
    width: 100vw;
    position: fixed;
    transform: translateX(100%);
    z-index: 99;
}

.logo {
    position: absolute;
    top: 2.5vh;
    left: 5vw;
    display: block;
    z-index: 9999;
    border-bottom: none;
    /* transform: translate(0px, 0px); */
}

.dingens {
    position: absolute;
    top: 0;
    height: 90px;
    width: 100%;
    z-index: 5;
    background-color: #fff;
    /* transition: all 700ms; */
}

.dingens.active {
    background-color: transparent;
}

.hidePath {
    display: none;
}

#circleSVG {
    position: absolute;
    top: -17px;
    left: -14px;
}

#circleSVG circle {
    stroke-dashoffset: 190;
    stroke-dasharray: 190;
}


#logo {
    fill: #fff;
    color: #fff;
    text-transform: uppercase;
    width: 160px;
    height: 49px;
    transition: all .2s;
    position: relative;
}

/* Navigation */

.navHandle {
    position: absolute;
    z-index: 999;
    top: 4vh;
    right: 5vw;
    color: #fff;
    transition: all .2s;
}

.hamburger {
    cursor: pointer;
}

.hamburger.isActive {
    color: #fff;
    fill: #fff;
}

.hamburgerBox {
    width: 10px;
    height: 17px;
    margin-left: 4px;
    display: inline-block;
    position: relative;
    width: 10px;
}

.hamburgerLine {
    background-color: #fff;
    width: 10px;
    height: 1px;
    position: absolute;
    transition: all .5s;
    opacity: 1;
}

.hamburgerLine.lineTop {
    top: 6px;
}

.hamburgerLine.lineMiddle {
    top: 10px;
}

.hamburgerLine.lineBottom {
    top: 14px;
}
.hamburger.isActive:hover .hamburgerLine.lineTop,
.hamburger.isActive .hamburgerLine.lineTop {
    transform: translateY(4px) rotate(45deg);
    width: 15px;
}

.hamburger.isActive .hamburgerLine.lineMiddle {
    opacity: 0;
}

.hamburger.isActive:hover .hamburgerLine.lineBottom,
.hamburger.isActive .hamburgerLine.lineBottom {
    transform: translateY(-4px) rotate(-45deg);
    width: 15px;
}

.hamburger:hover .hamburgerLine.lineTop {
    transform: translateY(-2px);
}

.hamburger:hover .hamburgerLine.lineBottom {
    transform: translateY(2px);
}


.handleText {
    display: inline;
}

.nav {
    position: absolute;
    text-align: right;
    z-index: 10;
    top: 40%;
    transform: translateY(-50%);
    right: 7vw;
    width: 300px;
}

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

.nav ul li {
    display: block;
    position: relative;
    transform: translateX(300px);
}

.nav ul li.active a {
    opacity: 1;
    pointer-events: none;
}

.nav ul li.active:after {
    position: absolute;
    top: 50%;
    height: 1px;
    background: white;
    content: '';
    right: -5vw;
    width: 3vw;
    transition: 0.25s ease-in-out;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    margin: 1rem 1rem 0 1rem;
    display: block;
    opacity: 0.5;
    font-size: 26px;
    transition: opacity 0.5s;
    border-bottom: none;
}

.nav ul li a:hover {
    opacity: 1;
}

/* Sub Navi */

.subNavi {
    width: 100%;
    position: fixed;
    /* bottom: 0; */
    right: 0;
    z-index: 10;
    background-color: #fff;
    color: rgba(43, 43, 43, 1);
    padding: 1rem 1.2rem;
    box-sizing: border-box;
    /* transform: translate(0px, -75px); */
    transform: translate(0px, 0px);
}

.subNavi.active {
    padding: 1rem 1.2rem 5.5rem;
}

.subNavi .subHeader {
    border: 2px solid rgba(43, 43, 43, 1);
    padding: 18px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.subNavi .subHeader i {
    display: block;
    color: rgba(43, 43, 43, 1);
    position: absolute;
    right: 1rem;
    top: 19px;
}

.subNavi .subHeader p {
    margin: 0;
}

.subNavi .navRenderer {
    display: none;
    border-right: 2px solid rgba(43, 43, 43, 1);
    border-left: 2px solid rgba(43, 43, 43, 1);
    border-bottom: 2px solid rgba(43, 43, 43, 1);
    top: -1px;
    position: relative;
    height: 47vh;

    align-items: stretch;
    grid-auto-flow: row;
    grid-template-rows: 47vh 3vh;
}

.subNavi .navRenderer .scrollContainer {
    height: 100%;
    overflow: -moz-scrollbars-none;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none
}

  .subNavi .navRenderer .scrollContainer::-webkit-scrollbar {
    display: none;
}

.subNavi .navRenderer .navIndicator {
    display: none;
    background-color: rgba(43, 43, 43, 1);
    color: #fff;
    /* position: fixed;
    bottom: 2vh; */
    width: auto;
    /* margin: 0 1.2rem; */
    margin: 0px -2px;
    height: 3vh;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(43, 43, 43, 1);
}

.subNavi .navRenderer.active {
    display: grid;
}

.subNavi .navRenderer.active .navIndicator {
    display: flex;
}
.subNavi .navRenderer .navIndicator.hidden,
.subNavi .navRenderer.active .navIndicator.hidden {
    display: none;
}

.subNavi ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, .8);
    position: relative;
}

.subNavi ul li a {
    box-sizing: border-box;
    padding: 18px;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid rgb(229, 231, 235);
    font-size: 12px;
    font-weight: 300;
    transition: all 0.25s ease-in-out;
    letter-spacing: 2px;
    display: grid;
    align-items: center;
    text-transform: uppercase;
    font-size: 9px;
}

.subNavi ul li.active a {
    background-color: #dedfe4;
}

/* Slides */

.slides {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.swiper-container {
    width: 100vw;
    height: 100%;
    overflow: hidden;
}

/* .swiper-wrapper {
    height: 100vh;
} */

.slides .slide {
    position: absolute;
    object-fit: cover;
    width: 100%;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}


.slides .slide img {
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    object-fit: cover;
}

.progressBar {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 999;
}

.progressBar .progress {
    background-color: orange;
    height: 3px;
    width: 0;
}

/* Content Slider */

.sliderWrapper {
    width: 100%;
}

.sliderWrapper .swiper-container {
    width: 100%;
    overflow: hidden;
}

.sliderWrapper .swiper-container .neos-contentcollection {
    padding-top: 0;
    width: 100%;
    padding-right: 0;
}

.sliderWrapper .swiper-pagination {
    position: relative;
}

.sliderWrapper .swiper-pagination .swiper-pagination-bullet {
    margin: 0 .15rem;
}

.sliderWrapper .swiper-button-prev,
.sliderWrapper .swiper-button-next {
    display: none;
}

/* INFO in Menu */

.infoWrapper {
    display: none;
    justify-content: left;
    align-items: center;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    padding-left: 7vw;
}

.address,
.phone,
.fax,
.email {
    opacity: .5;
    transition: opacity .5s;
}

.infoWrapper .info .address:hover,
.infoWrapper .info .phone:hover,
.infoWrapper .info .fax:hover,
.infoWrapper .info .email:hover {
    opacity: 1;
}

.address {
    padding-bottom: 1rem;
}
.phone {
    margin-bottom: .2rem;
}
.fax {
    margin-bottom: .5rem;
}

.phone strong,
.fax strong {
    font-weight: bold;
    margin-right: .5rem;
}

.social {
    padding: 1rem 0;
    display: flex;
    position: absolute;
    width: 100%;
    align-items: center;
    justify-content: center;
    bottom: 18%;
}

.twitter,
.facebook,
.instagram {
    background-color: transparent;
    opacity: .5;
    transition: opacity .5s;
    display: flex;
    margin: .5rem;
}

.twitter:hover,
.facebook:hover,
.instagram:hover {
    opacity: 1;
}

.twitter i,
.facebook i,
.instagram i {
    font-size: 16px;
}

/* Head Content (head) */

.head {
    height: calc(100vh - 90px);
    min-height: calc(100vh - 90px);
    position: relative;
    z-index: 1;
    top: 90px;
    overflow: hidden;
    overflow-y: scroll;
    display: grid;
    align-items: center;
}

.head > .neos-contentcollection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 100%; */
    margin-right: 0;
    margin-left: 0;
    padding-bottom: 8rem;
}

.head > .neos-contentcollection > .neos-nodetypes-text,
.head > .neos-contentcollection > .neos-nodetypes-headline {
    margin: 0 5vw;
    flex-basis: 50%;
    display: flex;
    align-self: flex-start;
    font-size: 16px;
    opacity: .75;
}

.head > .neos-contentcollection > .neos-nodetypes-text *,
.head > .neos-contentcollection > .neos-nodetypes-headline * {
    align-self: flex-end;
}

.head > .neos-contentcollection .neos-nodetypes-text h1,
.head > .neos-contentcollection .neos-nodetypes-text h2,
.head > .neos-contentcollection .neos-nodetypes-text h3 {
    margin-bottom: -.5rem;
    margin-top: 1.5rem;
}


.content .head {
    height: calc(100vh - 180px);
    min-height: calc(100vh - 180px);
}

.contentCollection {
    margin: 0 5vw;
}

/* Header Teaser */

.teaserGrid {
    position: relative;
    align-items: stretch;
    flex-flow: column nowrap;
    flex-grow: 1;
    flex-basis: 100%;
}

.teaserCollection {
    display: flex;
    flex-basis: 50%;
    align-self: stretch;
    /* height: 100vh; */
    flex-direction: row;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.teaser {
    display: flex;
    align-self: stretch;
    flex-basis: 50%;
    flex-direction: row;
    transition: all .3s;
    cursor: pointer;
    background-color: transparent;

    border-left: none;
    border-right: none;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: .5rem 5vw;
}

.teaser.noLinkTeaser {
    cursor: initial;
    color: rgba(255, 255, 255, .75);
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    display: block;
}

.teaser.noLinkTeaser .socialIcons {
    display: grid;
    grid-gap: 1rem;
    grid-auto-flow: column;
    margin-top: .5rem;
    justify-content: flex-start;
}

.teaser.noLinkTeaser .socialIcons .socialLink {
    padding: .3rem 0;
}

.teaser.noLinkTeaser a {
    color: rgba(255, 255, 255, 1)
}

.teaser.noLinkTeaser:hover {
    background-color: transparent;
}

.teaser:hover {
    background-color: rgba(19, 41, 75, 0.5);
}

/* Site Name */

.siteName {
    display: none;
}

/* Main Contanet (Default) */

.initContainer {
    position: absolute;
    top: 0;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    background-color: rgba(43, 43, 43, 1);

    z-index: 1;
}

.neos-backend .initContainer {
    position: relative;
}

.content {
    height: 100%;
}

.mainContainer {
    position: relative;
    z-index: 2;
    padding: 8rem 5vw;
    background-color: rgba(230, 231, 235, 1);
    color: #000;
    opacity: 1;
    overflow-y: scroll;
    height: 100%;
}

.mainContainer::-webkit-scrollbar {
    display: none;
}

.mainContainer > .neos-contentcollection {
    padding-bottom: 8rem;
}

/* Main content (Content Page) */

.videoElement {
    width: 100%;
}

.videoElement .video {
    width: 100%;
}

.videoElement iframe {
    width: 100%;
    min-height: 160px;
}


/* changes for logo and navHandle */

.blue #logo,
.navHandle.blue  {
    fill: rgba(43, 43, 43, 1);
    color: rgba(43, 43, 43, 1);
}

.isActive.blue #logo {
    fill: #fff;
    color: #fff;
}

.navHandle.blue .isActive {
    fill: #fff;
    color: #fff;
}

.blue .hamburgerLine {
    background-color: rgba(43, 43, 43, 1);
}

.blue .isActive .hamburgerLine {
    background-color: #fff;
}


/* Text Teaser */

.textTeaser {
    margin-bottom: 2vw;
}

.textTeaser h3 {
    line-height: 1.4em;
    padding: 2vw 0 0 0;
    font-size: 22px;
    border-top: 1px solid rgba(19, 41, 75, 0.25);
    margin-top: 45px;
}

.textTeaser:first-child h3 {
    margin-top: 35px;
}

.textTeaser .lineBefore {
    font-size: 1rem;
    padding-left: 8vw;
    position: relative;
    opacity: 0.75;
    color: rgba(43, 43, 43, 1);
    letter-spacing: 0.5px;
    line-height: 1.25em;
}

.textTeaser .lineBefore li {
    margin-bottom: 5px;
}

.textTeaser .lineBefore:before {
    display: block;
    content: '';
    background: rgba(19, 41, 75, 0.5);
    width: 4vw;
    height: 1px;
    top: 14px;
    left: 0;
    position: absolute;
}

.textTeaser .teaserDownload {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    padding-left: 1rem;
    margin: 0 0 0 8vw;
    transition: all .5s;
    opacity: 0.95;
    color: rgba(43, 43, 43, 1);
}

.textTeaser .teaserDownload i {
    font-size: 8px;
    opacity: .85;
    line-height: 100%;
    vertical-align: middle;
    position: absolute;
    top: 3px;
    left: 0;
}

.textTeaser .teaserDownload div {
    display: inline;
}

.textTeaser .teaserDownload:hover {
    padding-left: 1.5rem;
}

.contentPage h1 {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
    color: rgba(19, 41, 75, 0.5);
    padding-bottom: 2vw;
}

.socialTeaser {
    flex-basis: 100%;
    padding-bottom: 2rem;
    height: calc(100vh - 90px);
    min-height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.socialTeaser .socialIcons a {
    margin: .5rem;
}

.socialTeaser .socialIcons a:hover {
    text-decoration: none;
}
