@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap");
* {
    box-sizing: border-box;
    margin: 0;
    text-decoration: none;
    list-style: none;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
html,
body {
    height: 100%;
    background-color: #ebc0ac0c;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Wix Madefor Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
p,
li,
a,
span {
    font-family: "Wix Madefor Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
p {
    margin-bottom: 1rem;
}
.boldest {
    font-weight: 800;
}
.sr-only {
    clip: rect(0, 0, 0, 0);
    border-width: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
}
.overlay.active {
    width: 100%;
    height: 100%;
    opacity: 1;
}
.mobile-nav-toggle {
    display: none;
}
.navbar-container {
    width: 100%;
    z-index: 2;
    position: relative;
}
.navigation-retour {
    position: fixed;
    bottom: 3rem;
    right: 5rem;
    width: 5rem;
    height: auto;
    cursor: pointer;
    z-index: 100;
    text-decoration: none;
    --navigation-display: none;
}
.navigation-retour:hover {
    --navigation-display: block;
}
.navigation-retour img {
    width: 100%;
    height: auto;
    border-color: var(--quaternary-color);
    border-width: 1px;
    border-style: dashed;
    border-radius: 12px;
}
.navigation-retour p {
    display: var(--navigation-display);
    font-size: 1.4rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    top: 1.5rem;
    width: 115px;
    left: -3rem;
    text-decoration: none;
    transition: all 0.5s;
}
/**
* Variables
*/
:root {
    --primary-color: #c45825;
    --secondary-color: #f8f9fa;
    --tertiary-color: #833b19;
    --tertiary-color-trans: #833b1985;
    --quaternary-color: #52240f;
    --light: 300;
    --regular: 400;
    --medium: 500;
    --bold: 700;
    --extra-bold: 800;
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Open Sans", sans-serif;
}

/**
* NAVBAR
*/
.navbar-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 35px 20px;
}
.navbar-content li {
    margin-bottom: 0;
}
.navbar-content li a {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: var(--bold);
}
.navbar-content li a:hover {
    color: var(--tertiary-color);
}
.navbar-pattern {
    background-color: var(--primary-color);
    background-image: url("../images/patterns/bg-pattern-3942e7c314e72cd04d48b4891ba0a93e.webp");
    min-height: 64px;
}

/**
* Footer
*/
footer {
    background-color: var(--primary-color);
    background-image: url("../images/patterns/bg-pattern-3942e7c314e72cd04d48b4891ba0a93e.webp");
    color: var(--secondary-color);
    /* text-align: center; */
    min-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 7.5rem;
    flex-direction: column;
}
footer p:first-child {
    margin-top: 1.5rem;
}
footer p a {
    color: #ffd700;
    font-weight: 700;
}
footer p a:hover {
    color: #d3d3d3;
    font-weight: 700;
}
label.required::after {
    content: "*";
    color: red;
    margin-left: 1rem;
}
@media only screen and (max-width: 992px) {
    .mobile-nav-toggle {
        aspect-ratio: 1;
        background-color: transparent;
        display: block;
        position: fixed;
        right: 4rem;
        top: 2rem;
        width: 2rem;
        z-index: 104;
        padding: 0;
        border-radius: 0;
        color: black;
        font-size: 3.5rem;
        border: 0;
    }
    .mobile-nav-toggle svg {
        display: none;
    }
    .mobile-nav-toggle svg.active {
        display: block;
    }
    .navbar-container {
        position: fixed;
        z-index: 103;
        inset: 0 0 0 30%;
        background-color: rgba(140, 179, 219, 0.3607843137);
        backdrop-filter: blur(1rem);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        border-radius: 3rem 0 0 3rem;
        width: auto;
    }
    .navbar-container.active {
        transform: translateX(0);
    }
    .navbar-container .navbar-content {
        display: flex;
        flex-direction: column;
        width: 90%;
        height: 60%;
        margin: auto;
    }
    .navbar-content li a {
        color: black;
        margin-bottom: 2rem;
    }
}
/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 768px) {
    footer p {
        text-align: center;
        margin: 1.5rem 0;
    }
}

/* Tiny devices (phones, 460px and down) */
@media only screen and (max-width: 460px) {
    .navbar-container.active {
        width: 80%;
        transform: translateX(-12%);
    }
}
