body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
video {
    width: 100%;
    height: 100%;
    background-color: transparent;
}
video[poster] {
    height: 100%;
    width: 100%;
    object-fit: fill;
}
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
}
.preview {
    position: absolute;
    top: 25%;
    left: 39%;
    text-align: center;
}
.preview.hide {
    visibility: hidden;
}
.logo {
    width: 200px;
}
.preview p {
    color: white;
    font-size: 1.3em;
}
.controls {
    display: flex;
    position: absolute;
    bottom: 2rem;
    width: 100%;
    flex-wrap: wrap;
    background: rgba(0,0,0,0.1);
    transform: translateY(0);
}
.controls.hide {
    visibility: hidden;
}
.controls > * {
    flex: 1;
}
.progress {
    flex: 10;
    position: relative;
    display: flex;
    flex-basis: 100%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    height: 6px;
}
.progress__filled {
    width: 50%;
    background: #c72c2c;
    flex: 0;
}
.seek-ball {
    border-radius: 50%;
    height: 35px;
    width: 35px;
    border: 3px solid #c72c2c;
    position: relative;
    bottom: 16px;
    left: -11px;
}
.seek-ball-in {
    position: absolute;
    background-color: #c72c2c;
    border-radius: 50%;
    height: 21px;
    width: 21px;
    margin: 7px;
}
video::-webkit-media-controls {
    visibility: hidden;
}
video::-webkit-media-controls-enclosure {
    visibility: visible;
}
.captions {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, rgb(0 0 0 / 100%) 20%, rgb(0 0 0 / 0%) 50%);
    transition: opacity .5s;
}
.captions.hide {
    opacity: 0;
}
.captions .images {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.captions .images img {
    display: inline-block;
    width: 10em;
}
.images, .info {
    position: absolute;
    transition: all 600ms ease;
}
.captions .images img:first-child {
    margin-right: 2.5rem;
}
.captions .info {
    color: white;
    top: calc(50% + 10em);
    left: 50%;
    transform: translate(-50%, -50%);
}
.images.final {
    top: auto;
    bottom: 9em;
    left: 2em;
    transform: none;
}

.info.final {
    top: auto;
    bottom: 3.5em;
    left: 4em;
    transform: none;
    transition-delay: 700ms;
    font-size: .7em;
}
.captions h4 {
    font-size: 1.75em;
    margin-top: 0;
    margin-bottom: 0.5rem;
}
.captions h5 {
    font-size: 1.5em;
    font-weight: 200;
    margin-top: 0;
}

.images.final img {
    width: 6em;
}
