.fandival-blocks {
    position: relative;

    margin: 50px auto;
    padding: 35px;

    border: 1px solid #c9a75c;
    border-radius: 14px;

    background: rgba(255, 250, 235, 0.18);
}

.fandival-blocks__content {
    position: relative;
}

.fandival-blocks__ornament {
    position: absolute;
    top: -17px;
    left: 50%;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 54px;
    height: 34px;

    padding: 0 12px;

    transform: translateX(-50%);

    background: #f8f1df;

    color: #a67c24;

    white-space: nowrap;
}

.fandival-blocks__ornament::before,
.fandival-blocks__ornament::after {
    content: "";

    position: absolute;
    top: 16px;

    width: 80px;
    height: 1px;

    background: #c9a75c;
}

.fandival-blocks__ornament::before {
    right: 100%;
}

.fandival-blocks__ornament::after {
    left: 100%;
}

.fandival-blocks__ornament i {
    font-size: 20px;
    line-height: 1;
}

.fandival-blocks__ornament span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1;
}

/* Mobile */

@media (max-width: 767px) {
    .fandival-blocks {
        margin: 40px 15px;
        padding: 25px 20px;
    }

    .fandival-blocks__ornament::before,
    .fandival-blocks__ornament::after {
        width: 40px;
    }
}