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

.subscription-plans-section {
    padding: 84px 0;
    overflow: hidden;

    &:after {
        content: "";
        position: absolute;
        inset: 0;
        left: -50px;
        right: -50px;
        transform: rotate(-1deg);
        background-color: var(--section-bg);
        z-index: 1;
    }

    &__floating-image {
        position: absolute;
        bottom: -104px;
        left: 0;
        width: 160px;
        height: 160px;

        img {
            max-width: 100%;
            max-height: 100%;
        }

        .rtl & {
            left: auto;
            right: 0;
        }
    }

    .subscription-plan-card {
        min-height: 504px;
        height: 504px;

    }

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

        &__floating-image {
            top: -28px;
            bottom: auto;
            width: 100px;
            height: 100px;
        }

    }
}

