html {
    --clr-gold: #C39541;
    --clr-gold-light: #DCBE77;
    --clr-gold-header: #E6CF8E;
    --clr-white: #ffffff;
    --clr-white-transparent: #ffffff4c;
    --clr-green: #053D29;
    --clr-green-dark: #03291E;
    --clr-grey-dark: #3B3B3B;
    --clr-grey-dark-translucent: #3B3B3B9A;

    --gradient-gold: linear-gradient(180deg, #E5CE8C 0%, #C2953F 100%);

    --padding-vertical: 4.6rem;
    --padding-horizontal: 1.6rem;
    font-family: 'atrament-semibold', sans-serif;
    background-color: #000000;
    color: var(--white-clr);
}

body {
    background: linear-gradient(191.88deg, #00331F 0%, #004F39 100.92%);
}

a {
    -webkit-tap-highlight-color: transparent;
}

a, a:hover, a:visited {
    color: var(--white-clr);
}


section {
    position: relative;
    margin: 0 0 0 0;
    padding: 0;
    width: 100%;
    text-align: center;
    z-index: 50;
}

section.inner {
    padding: var(--padding-vertical) 0;
}

section.noTopPadding {
    padding-top: 0;
}

section.noBottomPadding {
    padding-bottom: 0;
}

section.darkGradient {
    background: linear-gradient(var(--blue-clr), var(--dark-blue-clr));
}

section.lightGradient {
    background: linear-gradient(var(--dark-blue-clr), var(--blue-clr));
}

section.borderred {
    background-color: #023525;
    
}

section.borderred .sectionBorder {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.9rem;
    background-image: url('/public/images/soutez/section-border.svg?v=1');
    background-size: cover;
}

section.borderred .sectionBorder.top {
    top: -0.8rem;
}

section.borderred .sectionBorder.bottom {
    bottom: -0.8rem;
}


.h1, .h2, .h3, .h4 {
    display: block;
    margin: 0 auto 2.6rem auto;
    width: 90%;
    color: var(--clr-white);
    font-family: 'Akzidenz-Grotesk Pro', sans-serif;
    font-size: 3.2rem;
    line-height: 4.0rem;
    text-transform: uppercase;
    text-shadow: 0 0.3rem 2.3rem #00000040;
}

.h1 {
    margin-bottom: 4rem;
    font-size: 3.9rem;
    line-height: 4.9rem;
}

.h2 {
    margin-bottom: 4rem;
    font-size: 3.2rem;
    line-height: 4.0rem;
}

.h3 {
    margin-bottom: 4rem;
    font-size: 2.8rem;
    line-height: 3.5rem;
}

.h4 {
    font-size: 4.8rem;
}

.h1.noBottomMargin,
.h2.noBottomMargin,
.h3.noBottomMargin,
.h4.noBottomMargin {
    margin-bottom: 0;
}

.hDecorated {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 4rem;
    padding: 0 3.6rem;
    gap: 2.0rem;
}

.hDecorated .dash {
    width: 100%;
    min-width: 5rem;
    border: solid 0.1rem var(--clr-gold-light);
}

.hDecorated > * {
    text-wrap: nowrap;
    margin: 0;
}

.text {
    color: var(--clr-white);
    font-family: 'brandon-grotesque', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2.0rem;
}

.text.lighter {
    font-weight: 400;
}

.largerText {
    font-size: 2.8rem;
    line-height: 3rem;
}

.h1 a,
.h a,
.h3 a,
.text a,
.largerText a {
    text-decoration: underline;
}

.underline {
    text-decoration: underline;
}


.goldenGradient {
    font-size: 72px;
    background: linear-gradient(205.99deg, #E4CC8A -3.19%, #C2943E 116.97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.popup {
    position: fixed;
    margin: 0;
    padding: 0;
    top : 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1.0rem);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 100;
}






