/* Layout */

h1,
h2,
h3,
h4 {
    text-transform: capitalize;
}

main,
footer {
    margin: auto;
    width: 100%;
    max-width: 1800px;
}

@media (min-width: 992px) {

    main,
    footer {
        width: 90%;
    }
}

main {
    padding: 0;
    overflow: hidden;
    background: var(--basecol-5);
}

main .container {
    margin: 0;
    max-width: none;
}

main .container .row {
    height: 100%;
}

main .container .row .col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;

    padding: calc(min(5rem, 10vw));
}

section {
    min-height: 600px;
}

hr {
    border: none;
    height: 3px;
    color: var(--brand-color-2);
    background-color: var(--brand-color-2);
    width: 80%;
    margin: 10px auto 20px;
    opacity: 100%;
}

h2 {
    font: bold 2.5rem/1.4em var(--ff);
    letter-spacing: 5px;
}

h3 {
    font: bold 1.5rem/1.4em var(--ff);
    letter-spacing: 3px;
}

p {
    margin-bottom: 30px;
    font: 1.15rem/1.4em var(--ff);
}

li {
    font: 1.05rem/1.4em var(--ff);
}

.news-cont {
    padding-bottom: 1.5rem;
}

.news-col-title {
    font: bold 1.25rem/1.4em var(--ff);
    letter-spacing: 2.5px;
}

#welcome-content h1 {
    font: bold 2.5rem/1.4em var(--ff);
    letter-spacing: 7.5px;
}

.hero-subtitle {
    font: bold 1.25rem/1.4em var(--ff);
    letter-spacing: 2.5px;
}

.launch-note {
    font-style: italic;
    font-weight: 700;
}

.section-dark {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;

    background: var(--basecol-5);
    opacity: .85;
    z-index: -1;
}

#welcome {
    position: relative;
    padding: 0;

    background: url(/res/backgrounds/sunset-ball-mobile.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    z-index: 2;
}

#cta-1 {
    position: relative;
    z-index: 2;

    background: url(/res/backgrounds/match-night.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
}

#cta-2 {
    position: relative;
    z-index: 2;

    background: url(/res/backgrounds/brazil-ball.webp);
    background-size: cover;
    background-position: 95% 50%;
    background-repeat: no-repeat;

    color: white;
}

#news-upcoming {
    position: relative;
    z-index: 2;

    background: url(/res/backgrounds/boot-grass-mobile.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
}

@media screen and (min-width: 992px) {
    #welcome {
        background: url(/res/backgrounds/sunset-ball.webp);
        background-size: cover;
        background-position: right;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    #cta-1 {
        background-size: cover;
        background-position: 50% 70%;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    #cta-2 {
        background-size: cover;
        background-position: right;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    #news-upcoming {
        background: url(/res/backgrounds/boot-grass.webp);
        background-size: cover;
        background-position: 20%;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
}

.sect-marg-top {
    margin-top: 30px;
}

#news-upcoming li {
    list-style: none;
    margin: 0.5rem auto;
    padding: 0;

    list-style-type: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: start;
}

#news-upcoming li::before {
    font-family: "Font Awesome 7 Free";
    padding: 0 0.65rem 0 0;
    font-size: 0.8rem;
}

#news-upcoming ul.news li::before {
    content: "\f058";
    color: var(--success-color);
}

#news-upcoming ul.upcoming li::before {
    content: "\f252";
    color: var(--warning-color);
}