/* Frontend - Loadscreen - Splitscreen */

html {
    background: #eaeaea;
}
.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-inner {

}
.loadscreen-overlay-inner input[type="checkbox"] {
    z-index: 960;
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
}

.loadscreen-overlay-inner .top,
.loadscreen-overlay-inner .bottom {
    position: absolute;
    height: 50%;
    left: 0px;
    right: 0px;
    background: #212121;
    z-index: 200;
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.loadscreen-overlay-inner .top {
    top: 0px;
}
.loadscreen-overlay-inner .bottom {
    bottom: 0px;
}

.loadscreen-overlay-inner input[type="checkbox"]:checked ~ .top,
.loadscreen-overlay-inner input[type="checkbox"]:checked ~ .bottom {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

.loadscreen-overlay-inner input[type="checkbox"]:checked ~ .top {
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.loadscreen-overlay-inner input[type="checkbox"]:checked ~ .bottom {
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.loadscreen-inner-background {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #000000;
    z-index: 300;
    opacity: 1;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}
.loadscreen-inner-background video,
.loadscreen-inner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    z-index: 50;
}
.loadscreen-inner-content {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 100;
    padding: 120px 0px 60px 0px;
    z-index: 300;
    opacity: 1;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}
.loadscreen-inner-content h1 {
    font-size: 70px;
    color: #ffffff;
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-family: fantasy;
    margin: 0px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.loadscreen-inner-content h2 {
    font-size: 36px;
    color: #ffffff;
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-family: fantasy;
    margin: 0px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.loadscreen-overlay-inner input[type="checkbox"]:checked ~ .loadscreen-inner-background,
.loadscreen-overlay-inner input[type="checkbox"]:checked ~ .loadscreen-inner-content {
    opacity: 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}



.dummy-content {
    padding-top: 60px;
}
.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;
}