/* ----------------------------------------- Title CSS ----------------------------------------- */
.section-title .title {
    margin-bottom: 0;
    margin-top: -10px;
}
.section-title .title span {
    color: var(--color-primary);
}
.section-title .subtitle {
    font-size: var(--font-lg);
    font-weight: var(--font-medium);
    display: inline-block;
    margin-bottom: 5px;
}
.section-title.title-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.section-title.title-inline .title {
    margin-top: 0;
}
.section-title.title-center {
    text-align: center;
}
.section-title.title-center .subtitle {
    padding-inline-start: 0;
}
.section-title.title-center .subtitle::before {
    content: none;
}
.section-title.title-center .title {
    max-width: 540px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section-title.title-center p {
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 0;
}
.content-title .title {
    margin-bottom: 10px;
    margin-top: -10px;
}
.content-title .title span {
    color: var(--color-primary);
}
.content-title .subtitle {
    font-size: var(--font-lg);
    font-weight: var(--font-medium);
    display: inline-block;
    margin-bottom: 5px;
    margin-top: -3px;
}
.content-title p:last-child {
    margin-bottom: 0;
}
.title-md {
    font-size: 32px;
}