/* Home Flash */

.frame-circle {
    background-color: var(--primary);
    border: 5px solid var(--white);
    color: white;
    height: 159px;
    padding: 0.5rem 1rem 0;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 100;
    box-shadow: 5px 10px 10px rgb(0 0 0 / 50%);
}

.frame-circle h2 {
    margin: 0 auto;
    font-size: 30px;
    font-weight: 500;
    color: var(--white);
}

.frame-circle p {
    padding: 8px 0 0;
    font-size: large;
    line-height: 1.2;
}

.frame-circle h2::before,
.frame-circle h2::after {
    content: '\2015';
    flex: 1 1 auto;
}

@media (min-width: 576px) {
    .frame-circle p {
        padding: 7px 0 0;
        font-size: x-large;
    }
}

@media (min-width: 768px) {
    .frame-circle {
        border-radius: 100%;
        height: 234px;
        padding: 40px 0;
        position: absolute;
        right: 4rem;
        top: 21rem;
        width: 234px;
    }

    .frame-circle h2 {
        padding-top: 18px;
    }

    .frame-circle p {
        padding: 18px 0 0;
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .frame-circle {
        top: 19rem;
    }
}

@media (min-width: 1600px) {
    .frame-circle {
        right: 7rem;
        top: 24rem;
    }
}