.animated-cards-banner-content {
    position: relative;
    width: 50%;
}

.animated-cards-parent {
    padding-top: 160px;
    padding-bottom: 126px;
    gap: 32px;
}

.animated-cards-banner {
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 982px;
    height: 982px;
}

.animated-cards-banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated-cards-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(7, 8, 13, 0.64) 0%,
        rgba(7, 8, 13, 0.48) 27.38%,
        rgba(7, 8, 13, 0) 100%
    );
    pointer-events: none;
}

.animated-cards-banner-title {
    font-weight: 800;
}

.animated-cards-banner-desc {
    font-size: 16px;
    line-height: 24px;
}

.animated-cards-stack {
    position: relative;
    flex: 0 0 50%;
}

.animated-card {
    position: absolute;
    max-width: 572px;
}

.animated-card.card1 {
    top: 0;
    left: 0;
    z-index: 4;
}

.animated-card.card2 {
    top: 20px;
    left: 0;
    z-index: 3;
}

.animated-card.card3 {
    top: 40px;
    left: 0;
    z-index: 2;
}

.animated-card.card4 {
    top: 60px;
    left: 0;
    z-index: 1;
}

.animated-card-content {
    padding: 32px;
}

.animated-card-icon {
    margin-bottom: 16px;
}

.animated-card-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 32px;
    margin-bottom: 16px;
}

.animated-card-desc p {
    margin-bottom: 0;
}

.animated-card-desc ul {
    margin-left: 0;
    margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
    .animated-card-title {
        font-size: 24px;
        line-height: 28px;
    }

    .animated-card-desc {
        font-size: 14px;
        line-height: 20px;
    }

    .animated-card {
        height: 600px;
        position: absolute;
    }
}

@media screen and (max-width: 992px) {
    .animated-cards-stack {
        display: none;
    }

    .animated-cards-banner {
        min-height: fit-content;
        height: auto;
    }

    .animated-cards-parent {
        padding-top: 80px;
        padding-bottom: 18px;
    }

    .animated-cards-banner-content {
        width: 100%;
    }

    .animated-cards-banner-desc {
        font-size: 14px;
        line-height: 20px;
    }

    .animated-cards-banner-title {
        font-size: 22px;
        line-height: 24px;
    }

    .animated-cards-banner-bc {
        display: none;
    }
}