.full-width-video {
    position: relative;
    z-index: 1;
    padding: 70px 0;
}

.full-width-video::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 295px;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom,  #ffffff 0%,#d0f1ff 100%);
    z-index: -1;
}

.full-width-video h4:before {
    left: 50%;
    transform: translateX(-50%);
}

.full-width-video__wrap {
    height: 231px;
    position: relative;
}

.full-width-video__wrap a {
    display: block;
    height: 100%;
    border: none;
}

.full-width-video__wrap img {
    border-radius: 0 60px;
}

.play-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon svg {
    width: 82px;
    height: auto;
}

@media (min-width: 768px) {
    .full-width-video {
        padding: 100px 0;
    }
    
    .full-width-video::before {
        height: 465px;
    }
    
    .full-width-video__wrap {
        height: 480px;
    }
    
    .play-icon svg {
        width: 104px;
    }
}

@media (min-width: 1200px) {
    
    .full-width-video::before {
        height: 250px;
    }
    
    .full-width-video__wrap {
        
        height: 611px;
        width: 872px;
        margin: 0 auto;
    }
    
    .play-icon svg {
        width: 136px;
        transition: all 0.3s ease-in-out;
    }
    .video-image:hover .play-icon svg {
        transform: scale(1.2);
    }   
}