.homeContainer {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
}

.homeBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url("../../../../public/resources/bardoloungo.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(5px) saturate(30%) opacity(0.5) hue-rotate(300deg);
}

.homeSidebar {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 30%;
    padding: 0 20px;
    height: 100%;
    background-color: var(--primary-color-darker);
}

@media only screen and (max-width: 768px) {
    .homeSidebar {
        width: 100%;
        background-color: transparent;
    }
}

/* Cas particulier du form sur la home */
.homeSidebar .formArea {
    box-shadow: none;
}