#home {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
}

#home .landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    height: calc(100vh - var(--navbar-height));
    width: 100%;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: darken;
}

#home .landing h1 {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    width: 90%;
    max-width: 600px;
    margin-bottom: 40px;
}

#home .landing .buttons {
    display: flex;
    gap: 50px;
}

#home .landing .buttons a {
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
}

#home .landing .buttons .btn-plein {
    background-color: var(--primary-color);
    color: var(--dark-color);
    margin-right: 10px;
}

#home .landing .buttons .btn-vide {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

@media (max-width: 800px) {
    #home .landing h1 {
        font-size: 30px;
    }
    #home .landing .buttons a {
        font-size: 15px;
    }
}

#home .home-sections {
    margin: 0;
    width: 90%;
    max-width: 1200px;
}

#home .home-sections .home-section {
    padding: 40px 0;
}

#home .home-sections .home-section h1 {
    font-weight: 600;
    margin-bottom: 40px;
}

#home .home-sections .home-section .pourquoi {
    margin: 0 10%;
}

#home .home-sections .home-section .pourquoi .parceque {
    display: flex;
    flex-direction: column;
}

#home .home-sections .home-section .pourquoi .parceque h2 {
    margin: 0;
    font-weight: bold;
}

#home .home-sections .home-section .pourquoi .parceque:nth-child(even) {
    text-align: end;
    align-items: flex-end;
}

#home .home-sections .home-section .pourquoi .yellow-hr {
    background-color: var(--primary-color);
    width: 40px;
    height: 3px;
    opacity: 1;
    margin: 9px 0;
}

#home .home-sections .home-section .benevole {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

#home .home-sections .home-section .benevole .avantage {
    width: 33%;
}

#home .home-sections .home-section .benevole .avantage img {
    width: 50px;
}

#home .home-sections .home-section .benevole .avantage h3 {
    margin: 10px 0;
    font-weight: 600;
}

@media (max-width: 700px) {
    #home .home-sections .home-section .benevole {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
}