.home-innovation .row {
    display: flex;
    align-items: stretch;
}

.home-innovation .image-row .col-md-6 {
    display: flex;
}

.home-innovation .image-row .col-md-6>div {
    width: 100%;
    height: 100%;
}

.home-innovation .innovation-head {
    font-size: 60px;
    font-weight: 700;
    font-family: var(--font-primary);
    text-transform: uppercase;
    background: linear-gradient(to right, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-innovation p {
    color: var(--para);
    margin-bottom: 20px;
}

.home-innovation img {
    border-radius: 20px;
    height: 200px;
    object-fit: cover;
}

.home-innovation .images-innovation {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

/* VIDEO */
.home-innovation .bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* IMAGE SLIDER */
.innovation-images {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    /* same visual height as video */
    overflow: hidden;
    border-radius: 20px;
}

.innovation-images img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.innovation-images img.active {
    opacity: 1;
}

/* TEXT SLIDER */
.home-innovation .text-slider {
    position: relative;
    overflow: hidden;
    height: 110px;
}

.home-innovation .slide-track span {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;

    font-size: 80px;
    font-weight: 700;
    font-family: var(--font-primary);
    text-transform: uppercase;

    background: linear-gradient(to right, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.home-innovation .slide-track span.active {
    opacity: 1;
    transform: translateY(0);
}

/* 1200px */
@media (max-width: 1200px) {
    .home-innovation .text-slider {
        height: 90px;
    }

    .home-innovation .slide-track span {
        font-size: 64px;
    }

    .home-innovation .innovation-head {
        font-size: 50px;
    }

    .innovation-images {
        min-height: 450px;
    }
}

/* 991px */
@media (max-width: 991px) {

    .home-innovation .innovation-head {
        font-size: 40px;
    }

    .home-innovation .row {
        display: block;
    }

    .home-innovation .image-row .col-md-6 {
        display: block;
        width: 100%;
    }

    .home-innovation .image-row .col-md-6:last-child {
        margin-top: 30px;
    }

    .home-innovation .text-slider {
        height: 70px;
    }

    .home-innovation .slide-track span {
        font-size: 52px;
    }

    .innovation-images,
    .home-innovation .bg-video {
        min-height: 350px;
        height: 350px;
    }
}

/* 767px */
@media (max-width: 767px) {

    .home-innovation .innovation-head {
        font-size: 30px;
    }

    .home-innovation .text-slider {
        height: 50px;
    }

    .home-innovation .slide-track span {
        font-size: 38px;
    }

    .innovation-images,
    .home-innovation .bg-video {
        min-height: 280px;
        height: 280px;
    }
}

/* 575px */
@media (max-width: 575px) {

    .home-innovation .text-slider {
        height: 42px;
    }

    .home-innovation .slide-track span {
        font-size: 30px;
    }

    .innovation-images,
    .home-innovation .bg-video {
        min-height: 220px;
        height: 220px;
    }
}