.intro-carpet {
    z-index: 99999;
    position: absolute;
    display: inline-flex;
    flex-direction: row;
    width: 100vw;
    overflow: hidden;
}

.intro-door {
    background: black;
    width: 50vw;
    height: 100vh;
    overflow: hidden;
}

.intro-door img {
    width: 50vw;
    margin: 2vh 0;
}

.intro-door .inner-door {
    overflow: hidden;
    height: 100%;
}

.intro-door img.left {
    position: absolute;
    left: 25vw;
}

.intro-door img.right {
    position: absolute;
    right: 25vw;
}


.intro-door.left {
    position: fixed;
    left:0;
    flex: 1;
}

.intro-door.right {
    position: fixed;
    left:50vw;
}

@media (max-width:1024px){
.intro-door img {
    height: 48vh
}
.intro-door img.left {
    top: 25vh;
}
.intro-door img.right {
    top: 25vh;
}
}