.bg-light-blue-gradient {
    background: linear-gradient(to bottom,  #f7fbff 0%,#e5f1ff 100%);
}

.video-text__intro-content {
    margin-bottom: 30px;
}

.video-text__video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 330 / 225 auto;
}

.video-text__btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(20,36,95,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-text__btn svg {
    transition: all .3s;
    width: 58px;
    height: auto;
}

@media (min-width: 768px) {
    .video-text__video {
        aspect-ratio: 665 / 350 auto;
    }
    
    .video-text__btn svg {
        width: 92px;
    }
}

@media (min-width: 1200px) {
    .video-text__video {
        aspect-ratio: 1048 / 600 auto;
    }
    
    .video-text__btn:hover {
        background: rgba(20,36,95,0.55);
    }
    
    .video-text__btn:hover svg {
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }
}