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

@keyframes hybrid-information-section-full-width-overlay-image-animation {
    0%, 100% {
        transform: translateY(8px);
    }
    50% {
        transform: translateY(-24px);
    }
}


.hybrid-information-section-full-width-section {
    width: 100%;
    height: 740px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--section-bg);
    padding-top: 80px;
    padding-bottom: 120px;

    &__main-image {
        width: 100%;
        height: 540px;
        overflow: hidden;

        img {
            transition: all 0.45s ease;
        }

        &:hover img {
            transform: scale(1.1);
        }
    }

    &__overlay-image {
        position: absolute;
        bottom: -80px;
        right: 32px;
        width: 200px;
        height: 200px;
        z-index: 2;
        animation: hybrid-information-section-full-width-overlay-image-animation 4s ease-in-out infinite;

        .rtl & {
            right: auto;
            left: 32px;
        }
    }

    &__statistic-item {

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

    @media (max-width: $screen-sm-max) {
        height: auto;
        padding-top: 40px;
        padding-bottom: 80px;

        &__main-image {
            height: 360px;
        }

        &__overlay-image {
            bottom: -50px;
            right: 24px;
            width: 100px;
            height: 100px;

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

}

