.ccm-background-video {
    position: relative;
}
.ccm-background-video::before{
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.ccm-background-video video {
    display: block;
    object-fit: cover;
    width: 100%;
    max-width: 100%;
}
.ccm-background-video video::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, #eaee44, #33d0ff);
    opacity: .7;
}

.ccm-background-video video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 1 !important;
}

.ccm-background-video__text-wrapper {
    left: 50%;
    padding: 20px;
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 70%;
}

.ccm-background-video__text-wrapper .ccm-background-video__text-wrapper__title {
    color: #fff;
    font-size: 2.5em;
    font-weight: 200;
    margin-bottom: 2%;
    text-align: center;
}

.ccm-background-video__text-wrapper .ccm-background-video__text-wrapper__description p {
    color: #fff;
    font-weight: 400;
    font-size: x-large;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
    width: 80%;
}

@media screen and (max-width: 992px) {
    .ccm-background-video__text-wrapper .ccm-background-video__text-wrapper__title {
        font-size: 2em;
    }

    .ccm-background-video__text-wrapper .ccm-background-video__text-wrapper__description p {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 768px) {
    .ccm-background-video__text-wrapper {
        background-color: #000;
        left: unset;
        position: relative;
        transform: unset;
        top: unset;
        width: 100%;
    }

    .ccm-background-video__text-wrapper .ccm-background-video__text-wrapper__title {
        font-size: 1.5em;
    }

    .ccm-background-video__text-wrapper .ccm-background-video__text-wrapper__description p {
        font-size: 1em;
    }
}