/* Frontend - Loadscreen - Splitscreen */

html {
    background: #212121;
}
.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
}



.loadscreen-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9000;
    opacity: 1;
    visibility: visible;
}

.loadscreen-overlay .overlay-image-wrapper {
    width: 100vw;
    height: 100vh;
    position: absolute;
}
.loadscreen-overlay .overlay-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    z-index: 50;
    transform: scale(1.065);
    transition: all 7s;
}

.loadscreen-overlay .top,
.loadscreen-overlay .bottom {
    position: absolute;
    left: 0px;
    right: 0px;
    height: 50vh;
    overflow: hidden;
}

.loadscreen-overlay .top {
    top: 0px;
}
.loadscreen-overlay .bottom {
    bottom: 0px;
}
.loadscreen-overlay .top .overlay-image-wrapper {
    top: 0px;
    -ms-transform: translate(-35%, 55%);
    -webkit-transform: translate(-35%, 55%);
    transform: translate(-35%, 55%);
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
}
.loadscreen-overlay .bottom .overlay-image-wrapper {
    bottom: 0px;
    -ms-transform: translate(35%, -55%);
    -webkit-transform: translate(35%, -55%);
    transform: translate(35%, -55%);
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
}
.loadscreen-overlay.load-in .top .overlay-image-wrapper,
.loadscreen-overlay.load-in .bottom .overlay-image-wrapper {
    -ms-transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
}
.loadscreen-overlay.load-in .overlay-image-wrapper img {
    transition: all 7s;
    transform: scale(1);
}




.dummy-content {
    padding-top: 60px;
    opacity: 0;
    visibility: hidden;
}
.dummy-content.load-in {
    opacity: 1;
    visibility: visible;
}
.dummy-content .dummy-text-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 100px;
    margin-bottom: 120px;
}
.dummy-content .dummy-text-image .dummy-text {

}
.dummy-content .dummy-text-image .dummy-text .dummy-text-headline {
    background: #dadada;
    height: 30px;
    margin-bottom: 15px;
}
.dummy-content .dummy-text-image .dummy-text .dummy-text-text {
    background: #dadada;
    height: 16px;
    margin-bottom: 5px;
}
.dummy-content .dummy-text-image .dummy-text .dummy-text-text:nth-child(3) {
    width: 82%;
}
.dummy-content .dummy-text-image .dummy-text .dummy-text-text:nth-child(4) {
    width: 80%;
}
.dummy-content .dummy-text-image .dummy-text .dummy-text-text:nth-child(5) {
    width: 60%;
}
.dummy-content .dummy-text-image .dummy-text .dummy-text-text:nth-child(6) {
    width: 78%;
}
.dummy-content .dummy-text-image .dummy-text .dummy-text-text:nth-child(7) {
    width: 66%;
}
.dummy-content .dummy-text-image .dummy-image {
    background: #dadada;
    width: 100%;
    height: 200px;
}
