html {
    --clr-black: #000000;
    --clr-grey: #9D9D9D;
    --clr-white: #ffffff;
    --clr-blue: #0E3FA7;
    --clr-blue-light: #3B6AC2;
    --clr-red: #E40428;
    --clr-yellow: #FFD334;

    --padding-vertical: 3.4rem;
    --padding-horizontal: 1.7rem;

    font-family: 'Foco', sans-serif;
    background-color: var(--clr-white);
    color: var(--clr-white);
}

body {
    background-color: var(--clr-blue);
    background-image: linear-gradient(180deg, #004F9F 0%, #003F7F 100%);
}

a {
    -webkit-tap-highlight-color: transparent;
}

a, a:hover, a:visited {
    color: var(--clr-black);
}


section {
    position: relative;
    margin: 0 0 0 0;
    padding: 0;
    width: 100%;
    text-align: center;
    z-index: 50;
}

section.inner {
    padding: var(--padding-vertical) var(--padding-horizontal);
}

section.noTopPadding {
    padding-top: 0;
}

section.noBottomPadding {
    padding-bottom: 0;
}

section.yellow {
    padding: 0.25rem;
    background-image: linear-gradient(180deg, #FFE06E 0%, #D3AB1D 100%);
    border-radius: 2.0rem;
}

section.yellowContainer {
    padding: 3.7rem 1.1rem 1.1rem 1.1rem;
    background-color: var(--clr-yellow);
}

section.yellowContainer .yellowContBottom {
    position: absolute;
    bottom: -4.8rem;
    left: 0;
    height: 5.0rem;
    width: 100%;
    background-image: url("/public/images/soutez/assets/yellow-cont-bottom.png");
    background-size: contain;
    background-position: top center;
}


.single {
    display: flex;
    margin: 0;
    padding: 14.0rem 3.0rem 7.0rem 3.0rem;
    width: 100%;
    min-height: 65.7rem;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background-position: top center;
    background-color: #1141AA;
}

.single .singleBackground {
    position: absolute;
    display: flex;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #0f3ea2;
    background-image: url("/public/images/soutez/assets/bg-single.svg");
    background-size: 100% auto;
    background-position: top center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.single .singleBackgroundBottom {
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    height: 5.0rem;
    width: 100%;
    background-image: url("/public/images/soutez/assets/bg-bottom-single.png");
    background-size: contain;
    background-position: bottom center;
}

.continuous {
    display: flex;
    padding: 14.0rem 3.0rem 3.0rem 3.0rem; 
    min-height: 65.7rem;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background-position: top center;
}


.h1, .h2, .h3, .h4 {
    display: block;
    margin: 0 auto 2.6rem auto;
    color: var(--clr-white);
    font-weight: 900;
    text-transform: uppercase;
}

.h1.blue, .h2.blue, .h3.blue, .h4.blue {
    color: var(--clr-blue);
}

.h1 {
    font-size: 4.0rem;
    line-height: 4.5rem;
}

.h2 {
    font-size: 3.2rem;
    line-height: 4.0rem;
}

.h3 {
    color: var(--clr-white);
    font-size: 3.2rem;
    line-height: 4.0rem;
    text-transform: none;
}

.h4 {
    font-size: 4.8rem;
}

.h1.noBottomMargin,
.h2.noBottomMargin,
.h3.noBottomMargin,
.h4.noBottomMargin {
    margin-bottom: 0;
}

.text {
    color: var(--clr-white);
    font-size: 2.2rem;
    line-height: 2.7rem;
}

.largerText {
    font-size: 2.8rem;
    line-height: 3rem;
}

.text.small {
    font-size: 1.6rem;
    line-height: 2.0rem;
    font-weight: 400;
}

.text .important {
    color: var(--clr-yellow);
}

.h1 a,
.h a,
.h3 a,
.text a,
.largerText a {
    text-decoration: underline;
}

.underline {
    text-decoration: underline;
}


