.full-width-video-heading {
    padding-bottom: 45px;
}

.full-width-video-image__wrap {
    height: 210px;
    position: relative;
    z-index: 1;
}

.full-width-video-image__wrap::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(6, 18, 10, 0.08) 0%,
        rgba(6, 18, 10, 1) 100%
    );
}

.full-width-video-btn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border: none;
}

.full-width-video-btn img {
    width: 64px;
    height: auto;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .full-width-video-image__wrap {
        height: 359px;
    }

    .full-width-video-btn img {
        width: 99px;
    }
}

@media (min-width: 1200px) {
    .full-width-video-heading {
        padding-bottom: 30px;
    }

    .full-width-video-image__wrap {
        height: 540px;
    }

    .full-width-video-btn img {
        width: 124px;
    }

    .full-width-video-btn:hover img {
        transform: scale(1.1);
    }
}