/**
* Block Name: text_circle
*/


section.text_circle svg {
    z-index: 0;
    bottom: -2px;
    width: 100%;
    height: auto;
}

section.text_circle .circle {
    background: var(--red-1);
    display: flex;
    padding: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    position: relative;
    z-index: 2;
    width: min(100%, 400px);
    transform: translateX(-30px) translateY(30px);
}

section.text_circle .circle h2 {
    color: var(--white-1) !important;
    margin-bottom: 0;
    width: 90%;
}

@media (max-width: 767px) {

    section.text_circle svg {
        transform: scale(2.3);
    }

    section.text_circle .circle {
        transform: translate(0);
        margin: 0 auto;
    }
}