:root {
    --orange: #DB5A49;
    --marron: #97291A;
}

/*.container {*/
/*    display: inline-flex;*/
/*    flex-wrap: wrap;*/
/*    width: 100%;*/
/*}*/

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}

.white-text {
    color: white;
}

.marron-text {
    color: var(--marron);
}

.orange-text {
    color: var(--orange);
}

.uppercase {
    text-transform: uppercase;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

p {
    font-size: 18px;
}

.font-size-40 {
    font-size: 40px;
}

.font-size-30 {
    font-size: 30px;
}


.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.line-height-25 {
    line-height: 25px;
}

.intro-section {
    height: 85vh;
}

.intro-section-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.white-box {
    background-color: white;
    padding: 40px;
    height: 40px;
}

.intro-section-left-content h2 {
    color: var(--orange);
    font-size: 50px;
    margin-bottom: 20px;
}

.intro-section-left-content h1 {
    color: var(--marron);
    font-size: 35px;
    margin-bottom: 20px;
}

.intro-section-left-content p {
    color: var(--marron);
    font-size: 25px;
    margin-bottom: 30px;
}

.intro-section-left-content a {
    border: 1px solid var(--orange);
    background-color: var(--orange);
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
    font-size: 25px;
}

.intro-section-right {
    justify-content: center;
    align-items: center;
    display: flex;
}

.intro-section-right img {
    max-width: 100%;
}

.quandconsulter-section {
    justify-content: center;
}

.orange-background {
    background-color: var(--orange);
}

.padding-sides-10 {
    padding: 0 10%;
}

.margin-sides-10 {
    margin: 0 10%;
}

.gap-30 {
    gap: 30px;
}

.nav-ul-mobile {
    display: none;
}

.background-tree {
    position: absolute;
    opacity: 0.1;
    z-index: 10;
}

.vague_1 {
    width: 100%;
}

.demarche-columns-text-container {
    padding: 30px 20px;
}

@media screen and (max-width: 1100px) {
    .intro-section-left {
        flex: 100%;
        margin: 50px 0;
    }
    .intro-section-right {
        flex: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .nav-ul-desktop {
        display: none;
    }

    .nav-ul-mobile {
        display: block;
    }
}