/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: var(--text-body);
    background-color: var(--bg-body);
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    color: var(--color-celestial-blue);
    text-decoration: none;
}

a:hover {
    color: var(--color-link-hover);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

#main {
    margin-left: var(--sidebar-width);
}

.container,
.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 1199px) {
    #header {
        left: calc(-1 * var(--sidebar-width));
    }

    #main {
        margin-left: 0;
    }

    .container,
    .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background: var(--bg-section-alt);
}

.section-title {
    padding-bottom: 30px;
}

.section-title h2 {
    font-family: "Play", sans-serif;
    font-size: 2.6rem;
    font-weight: 720;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
    position: relative;
    width: fit-content;
    background: linear-gradient(to right, var(--text-heading-primary), var(--text-heading-primary-fade));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 0.2rem;
    background: linear-gradient(to right, var(--text-heading-primary), var(--text-heading-primary-fade));
    border-radius: 2px;
}

.section-title p {
    margin-bottom: 0;
}
