.sup-title {
    font-size: 15px;
    line-height: 1.2;
    display: block;
    width: max-content;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--main-red);
}

.f-block-title-wrap {
    position: relative;
    z-index: 1;
}

.f-block-title {
    font-size: 40px;
    line-height: 1.2;
    display: block;
    width: max-content;
    font-weight: 700;
    z-index: 5;
    padding-right: 15px;
    background: #fff;
    position: relative;
}

.fw-bg-grey .f-block-title {
    background: var(--main-grey);
}

.f-block-title-wrap::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    width: 100vw;
    transform: translateY(-50%);
    height: 1px;
    background: var(--main-black);
}

.sub-title {
    display: block;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.sub-title strong {
    color: var(--main-red);
}

.sub-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 1px;
    background: var(--main-black);
}

.analogio-header-wrapper.title-center .f-block-title {
    margin: 0 auto;
    padding-left: 15px;
}

.analogio-header-wrapper.title-center .sup-title {
    margin: 0 auto;
}

.analogio-header-wrapper.title-right .f-block-title {
    margin: 0 0 0 auto;
    padding-left: 15px;
    padding-right: 0;
}

.analogio-header-wrapper.title-right .sup-title {
    margin: 0 0 0 auto;
}

@media (max-width: 768px) {
    .f-block-title {
        font-size: 30px;
    }
}
@media (max-width: 550px) {
    .f-block-title {
        font-size: 24px;
    }
}
@media (max-width: 425px) {
    .sup-title {
        font-size: 12px;
    }
}