@import "../../bootstrap/variables";

@keyframes hybrid-information-section-2-images-text-section__overlay-image-animation {
    0%, 100% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(24px);
    }
}



.hybrid-information-section-2-images-text-section {
    width: 100%;
    padding-bottom: 32px;

    &__main-image {
        width: 100%;
        height: 576px;

    }

    &__overlay-image {
        position: absolute;
        bottom: 48px;
        right: -48px;
        width: 346px;
        height: 214px;
        z-index: 2;
        animation: hybrid-information-section-2-images-text-section__overlay-image-animation 3s ease-in-out infinite;

        .rtl & {
            right: auto;
            left: -48px;
        }
    }

    &__statistic-item {

        .line {
            width: 2px;
            height: 20px;
            background-color: var(--primary);
        }
    }

    @media (max-width: $screen-sm-max) {
        padding: 0;

        &__overlay-image {
            width: 173px;
            height: 107px;
            right: -24px;

            .rtl & {
                right: auto;
                left: -24px;
            }
        }
    }
}

