.video_wrapper {
    background-size: cover;
    position: relative;
    box-shadow: 0 3px 5px #333;
    height: auto;
    width: 100%;
}

.video_wrapper .video_trigger {
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.video_wrapper .video_trigger a{
    color: #007bc0;
}

.video_wrapper .video_trigger:before {
    content: '\f04b';
    position: absolute;
    z-index: -1;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.2);
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
}

.video_wrapper .video_layer {
    position: relative;
    /*display: none;*/
    height: inherit;
    width: inherit;
    margin: auto;
}

.video_wrapper .video_layer iframe {
    border: 0 none transparent;
    height: inherit;
    width: inherit;
    vertical-align: middle;
}

.video_wrapper .btn {
    cursor: pointer;
    display: inline-block;
    transition: color 0.5s, background-color 0.5s, border 0.5s;
    padding: 8px 16px;
    font-size: 16px;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.video_wrapper .btn:hover {
    background-color: transparent;
    color: #ffffff;
}

