/*————————————————————————
c-title
————————————————————————*/

.c-title h2 {
    color: #44475C;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.c-title--center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.c-title--side {
    display: flex;
    align-items: center;
    gap: 10px;
}

.c-title span {
    display: flex;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    background-color: #44475C;
    display: inline-block;
}

.c-title--flip h2 {
    color: #fff;
}

.c-title--flip span {
    color: #44475C;
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    .c-title h2 {
        font-size: 40px;
    }

    .c-title--center {
        gap: 4px;
    }

    .c-title--side {
        justify-content: center;
    }
}