html {
    font-family: 'open-sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5rem;
    color: #575757;
}

html, body {
    margin: 0;
    padding: 0;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
    width: 100%;
}

.content-wrapper {
    margin: 0 auto;
    padding: 24px 34px;
    width: 100%;
    height: 100%;
}

.content-wrapper>div {
    margin-bottom: 12px;
}

h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
    font-family: 'ff-scala-sans-pro', sans-serif;
    font-weight: 700;
    color: #000;
    margin: 0;
    padding: 0;
}


h1, .h1 {
    font-size: 2.5rem;
    line-height: 3.5rem;
    letter-spacing: -0.024rem;
}

h2, .h2 {
    font-size: 2rem;
    line-height: 2.5rem;
    letter-spacing: -0.024rem;
}

h3, .h3 {
    font-size: 1.5rem;
    line-height: 2rem;
}

h4, .h4 {
    font-size: 1rem;
    line-height: 1.5rem;
}

.subtitle_1 {
    font-family: 'ff-scala-sans-pro', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
}

.subtitle_2 {
    font-family: 'ff-scala-sans-pro', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
}

a {
    font-family: 'open-sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #085EB4;
    text-decoration: none;
}

a:hover, a:active {
    color: #000;
    text-decoration: underline;
}

/* Component: Navigation Buttons */

.nav-buttons {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    gap: 20px;
}

.nav-buttons__button {
    margin: 0;
    padding: 12px;
    display: flex;
    justify-content: center;
    flex: 1;
    text-align: center;
    align-items: center;
    flex-direction: column;
    /* gap: 8px; */
    gap: 0px;
    border-radius: 12px;
    outline: 1px solid #E4E4E7;
    background: #FFF;
    cursor: pointer;
}

.nav-buttons__button:hover, .nav-buttons__button--selected {
    outline: 4px solid #105EDA;
}


.nav-buttons__button-text {
    font-family: 'ff-scala-sans-pro', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
    color: #000;
}

.nav-buttons__button div img {
    width: 28px;
}

/* Component: Navigation Tabs */

.nav-tabs {
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-weight: bold;
    margin: 12px 0;
}

.nav-tabs__button {
    margin: 0;
    padding: 8px;
    cursor: pointer;
}

.nav-tabs__button-text {
    font-family: 'ff-scala-sans-pro', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
    color: #000;
}

.nav-tabs__button:hover {
    border-bottom: 4px solid #105EDA;

    .nav-tabs__button-text {
        color: #105EDA;
    }
}

.nav-tabs__button--selected {
    border-bottom: 4px solid #105EDA;

    .nav-tabs__button-text {
        color: #105EDA;
    }
}


