.overlay-video {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.9;
    transition: .3s ease;
    background-color: transparent;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.overlay-video:hover {
    opacity: 0.5;
}

.play-icon-wrapper {
    background: #202020;
    width: 72px;
    height: 62px;
    border-radius: 15px;
    position: absolute;
    color: black;
    font-size: 0rem;
    cursor: pointer;
    left: 40%;
    bottom: 55%;
}

.play-icon {
    position: absolute;
    background: transparent;
    box-sizing: border-box;
    width: 0;
    height: 37px;
    border-color: transparent transparent transparent #e2e2e2;
    transition: 100ms all ease;
    cursor: pointer;
    border-style: solid;
    border-width: 20px 0 17px 30px;
    margin-left: 24px;
    margin-top: 12px;
}


