.example-marquee {
    position: relative;
}

.content {
    display: table;
    width: 100%;
    min-height: 100%;
    z-index: 1;
    position: relative;
}

.content .inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
}

.content .inner h1,
.content .inner h2 {
    color: white;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.content .inner h1 {
    font-size: 62px;
}

.video-background-controls {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: auto !important;
    height: 80px;
    width: 80px;
    cursor: pointer;
    border-radius: 50%;
    display: block;
    text-align: center;
}
.video-background-controls a, .video-background-controls a:link{
    color: white !important;
}
.video-background-controls button {
    position: relative;
    font-size: 32px;
    display: block;
    height: 80px;
    width: 80px;

    line-height: 80px;
    text-align: center;

    color: white;
    background: none;
    outline: none;
    border: none;
    cursor: pointer;

}

.video-background-controls:before {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: auto !important;
    content: '';
    height: 100%;
    width: 100%;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='white' stroke-width='2' stroke-dasharray='4%2c 4' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
    border-radius: 100px;
    border-radius: 100px;
    border-radius: 50%;
}

.video-background-controls:hover:before {
    animation: spin-one 10s linear infinite;
}

@keyframes spin-one {
    100% {
        transform: rotateZ(360deg);
    }
}

.video-box .video-background-controls {
    opacity: 0;         transition: opacity 500ms ease-in-out;
    transition-delay: 250ms;
}

.video-box:hover .video-background-controls {
    opacity: 1;
}

.video-background-controls button:hover {}

iframe {
    transition: opacity 500ms ease-in-out;
    transition-delay: 250ms;
}

.play-btn {
    /* position: absolute;

    height: 120px;
    width: 120px;

    border-radius: 50%;
    cursor: pointer;

    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 10; */

}
@media (max-width: 575.98px) {

    .video-background-controls {
        height: 50px;
        width: 50px;
    
        line-height: 50px;
    }

    .video-background-controls button {
     
        height: 50px;
        width: 50px;
        font-size: 20px;
        line-height: 50px;
    
    }
}