.widget-numbers__container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 150px 50px;

    @media (max-width: 767px) {
        padding: 50px 0;
    }
}

.widget-numbers__container img{
    position: absolute;
    z-index: 0;
    top: 50%;
    left: -15%;
    transform: translateY(-50%);
    width: 60%;
    max-width: 850px !important;
    height: auto;
    clip-path: circle(50% at 50% 50%);

    @media (max-width: 1280px) {
        display: none;
    }
}

.widget-numbers__title {
    width: 60%;
    margin-bottom: 80px;

    @media (max-width: 1280px) {
        width: 100%;

        p {
            text-align: center;
        }
    }
}

.widget-numbers__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3rem;
    width: 60%;
    min-width: 300px;
    position: relative;
    z-index: 1;

    @media (max-width: 1280px) {
        width: 100%;
        gap: 1rem;
    }

    @media (max-width: 767px) {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        width: 100%;
    }

    .text-content {
        display: flex;
        flex-direction: column;
        padding: 2rem;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        min-height: 200px;
        transition: all 0.3s ease-in-out;


        &:hover {
            transform: scale(1.05);
            transition: all 0.3s ease-in-out;
        }
    }
}