.slideshow {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    background-color: #008194;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.stage {
    position: relative;
    height: 100%;
    transition: all 0.5s ease-in-out;
}
.person {
    position: absolute;
    bottom: 0;
    top: 50%;
    left: 50%;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    transition: all 0.5s ease-in-out;
    filter: brightness(0.2);
    z-index: 1;
}
.person.active {
    opacity: 1;
    filter: brightness(1);
    z-index: 100;
    transform: translateX(-50%) scale(2.5);
    overflow: hidden;
}
.person img {
    width: auto;
    height: 100%;
    pointer-events: none;
}

.person .quote {
    position: absolute;
    top: 40%;
    transform: translateX(150%);
    width: 80%;
    height: auto;
    text-shadow: none;

    color: white;
    font-weight: bold;
    font-size: 0.75em;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 100;
}
.person.active .quote {
    opacity: 1;
    transform: translateX(30%);
    text-shadow: black 0 0 5px;
}

.person .quote .team {
    text-shadow: none;
    display: inline-block;
    font-size: 0.4rem;
    font-weight: bold;
    word-break: break-all;

}

#stage-bg {
    text-align: center;
    position: absolute;
    width: 100%;
    line-height: 3rem;
    color: white;
    font-weight: 900;
    font-size: 3rem;
}

#yt-modal .modal-content {
 border-radius: 0;

}

#yt-modal .modal-body {
    padding:0;

}