.video-div, .video-div-content-width {
    margin-top: -31px;
}

.video-div-container {
    /*margin-top: -15vh;*/
    transform: translateY(-50%);
    pointer-events: none;
    overflow: hidden;
}


.video-div {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.video-div-a {
    position: absolute;
    left: calc( 1.0216 * (100vw) - 100px);
    transform: translateY(90px);
    z-index: 10000;
}

.video-div-inner {
    width: 100vw;
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: 380px;
    object-fit: cover;
    cursor: pointer;
}

.video-div-inner-content-width {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

.video-div-wrapper {
    position: relative;
}

.video-btn {
    z-index: 100000;
    position: absolute;
    right: 0;
    bottom: 0;
    color: #FFFFFF;
    padding: 0 30px 33px 0;
    cursor: pointer;
    filter: drop-shadow(2px 2px 5px black);
}

.video-btn .material-icons {
    font-size: 48px;
}


/*
https://www.sitepoint.com/community/t/how-to-fit-video-into-entire-div-that-works-on-ie-too/283224/3
*/

.video-div-inner {height:auto}
@supports (object-fit: cover){
    .video-div-inner {height:380px}
}
/* ie edge only gets the following rule */
@supports (object-fit: cover) and (-ms-ime-align:auto) {
    .video-div-inner {height:auto}
}

.video-div-text {
    z-index: 100000;
    position: relative;
    color: #000000;
    font-size: 34px;
    line-height: 46px;
    padding: 20px;

}

.video-div-still-image img {
    width:100%;
    height: 320px;
    object-fit: cover;
    overflow: hidden;
}

.video-div-still-image img {height:auto}
@supports (object-fit: cover){
    .video-div-still-image img {height:320px}
}
/* ie edge only gets the following rule */
@supports (object-fit: cover) and (-ms-ime-align:auto) {
    .video-div-still-image img {height:auto}
}

.video-div-text-2 {
    margin-left: 10px;
    position: absolute;
    top: 0px;
    left: -750%;
    height: 100%;
    width: 850%;
    z-index: -100000;
    background: white;
}

@media (max-width: 767px) {
    .video-div {
        /*margin-top: -86px;*/
    }

    .video-div-container {
        transform: translateY(-80%);
        margin-right: 20vw;
        margin-bottom:-60px;
    }

    .video-div-text {
        font-weight: bold;
        font-size: 15px;
        line-height: 24px;
    }
}

/* Desktop HD */
@media (min-width:1400px) {
    .video-div-inner {
        height: auto;
    }

    @supports (object-fit: cover){
        .video-div-inner {height:600px}
    }
    /* ie edge only gets the following rule */
    @supports (object-fit: cover) and (-ms-ime-align:auto) {
        .video-div-inner {height:auto}
    }
    .video-div-text-1 {
        font-size: 32px;
    }
}

/* Desktop / Tablet */
@media (min-width: 980px) and (max-width: 1399px) {
    .video-div-inner {
        height: auto;
    }

    @supports (object-fit: cover){
        .video-div-inner {height:420px}
    }
    /* ie edge only gets the following rule */
    @supports (object-fit: cover) and (-ms-ime-align:auto) {
        .video-div-inner {height:auto}
    }
    .video-div-text-1 {
        font-size: 32px;
    }
}

/* Large desktop */
@media (min-width: 980px) and (min-width: 1200px) {
    .video-div-text-1 {
        padding-left: 20px;
    }
}

/* Portrait tablet to landscape and desktop */
@media (min-width: 767px) and (max-width: 979px) {
    .video-div-text-1 {
        padding-left: 20px;
        font-size: 21px;
        line-height: 32px;
    }
}

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {  }

/* Landscape phones and down */
@media (max-width: 480px) {
    /*.video-div {*/
    /*    margin-bottom: -60px;*/
    /*}*/
}
