.fsm-h1 {
    color: var(--text-color);
    font-family: Inter-Medium;
    font-size: 5rem;
    text-align: center;
    width: 100%;
    margin-bottom: 25px;
    word-break: break-word;
}

.fsm-h2 {
    color: var(--text-color);
    font-family: Inter-Medium;
    font-size: 1.5rem;
}

.fsm-h3 {
    color: var(--text-color);
    font-family: Inter-Medium;
    font-size: 1.5rem;
}

.fsm-h4 {
    color: var(--text-color);
    font-family: Inter-Medium;
    font-size: 1.5rem;
}

.fsm-h5 {
    color: var(--text-color);
    font-family: Inter-Medium;
    font-size: 1.5rem;
}

.fsm-h6 {
    color: var(--text-color);
    font-family: Inter-Medium;
    font-size: 1.5rem;
}

.fsm-default-title {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.fsm-default-title > h2 {
    font-family: Inter-Bold;
    font-size: 3rem;
    color: var(--text-color);
    margin: 0;
    padding-bottom: 12px;
    position: relative;
}

.fsm-default-title > h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 3px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 2px;
}

.fsm-default-title > img {
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;
}

.fsm-default-title > a {
    margin-left: auto;
}

/*---------- RESPONSIVE --------*/

/* Mobile */
@media (max-width: 576px) {
    #header {
        padding: 0px 10px !important;
    }
    #header-navbar {
        display: none !important;
    }

    #header-mobile-button {
        display: block !important;
    }

    #header-brand span {
        display: none !important;
    }

    #header-mobile-menu {
        width: 90% !important;
        padding: 50px 10px !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .fsm-h1 {
        font-size: 2rem !important;
    }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 768px) {
    .fsm-h1 {
        font-size: 2rem !important;
    }
}

/* Laptops */
@media (min-width: 769px) and (max-width: 992px) {
    .fsm-h1 {
        font-size: 3rem !important;
    }
}

/* Desktop */
@media (min-width: 993px) and (max-width: 1200px) {
    .fsm-h1 {
        font-size: 4rem !important;
    }
}

/* Extra Large Screens */
@media (min-width: 1201px) {

}