/* VARIABLES */

:root {
    --mainColor: #286b97;
    --secondaryColor: #999;
    --grayColor: #f2f2f2;
    --dividerColor: #e0e0e0;
    --mainTextColor: #000;
    --secondaryTextColor: #666;
    --lightTextColor: #fff;
    --backgroundColor: #fff;

    --grid-spacing: 16px;
    --page-margin: 24px;
    --max-content-width: 1136px;

    --radiusXl: 12px;
    --radiusLarge: 8px;
    --radiusMedium: 6px;
    --radiusSmall: 4px;

    --shadowLarge: 0 2px 54px rgba(0, 0, 0, .1);
    --shadowMedium: 0 2px 12px rgba(0, 0, 0, .15);
    --shadowSmall: 0 2px 3px rgba(0, 0, 0, .15);
}

/* LINKS */
a {
    color: var(--mainTextColor);
    text-decoration: none;
    font-size: 1em;
}

a:hover {
    text-decoration: underline;
}

/* TEXTS */
.section-title {
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    color: var(--mainTextColor);
}

.subtitle {
    font-size: 1.8em;
    color: var(--mainTextColor);
    font-weight: bold;
}

/* SECTION */
.section-width {
    margin: 0 auto;
    width: 100%;
    max-width: calc(var( --max-content-width) + (var(--page-margin) * 2));
    padding-left: var(--page-margin);
    padding-right: var(--page-margin);
}

.section-margin-top {
    margin-top: calc(var(--page-margin) * 4);
}

/* BUTTON */
.button {
    color: var(--mainTextColor);
    text-decoration: none;
    font-size: 1em;
    padding: 15px 30px;
    text-wrap: nowrap;
    border-radius: 1.4em;
    transition: background-color .2s;
    width: fit-content;
    outline: none;
    border: none;
    cursor: pointer;
}

.button.primary {
    color: var(--lightTextColor);
    background-color: var(--mainColor);
}

.button.primary:hover {
    background-color: var(--mainColor);
}

.button.white {
    background-color: var(--backgroundColor);
}

.button.white:hover {
    background-color: var(--grayColor);
}

.button:hover {
    text-decoration: none !important;
}