

/* -------------- Section liens contact ---------------- */

.section-image{
    display: flex;
    width: 50%;
    margin: 0 auto;
}

.section-image div {
    background-color: #E4F6E2;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 1rem;
    border-radius: 1rem;
}

.section-n-1 div {
    width: 49%;
    margin-top: 3rem;
}

.section-n-1 {
    gap: 2%;
    margin-bottom: 1rem;
}

.section-n-2 div {
    width: 24%;
}

.section-n-2 {
    gap: 2%;
}

/* -------------- Titre contact --------------------- */

h1 {
    font-size: 100px;
    font-weight: 600; 
    font-family: "Bodoni Moda", serif;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

/* -------------- Image Bas droite ---------------- */

.fixed-image {
    position: fixed;
    bottom: 0px;
    right: 0px;
}

@media (max-width: 1000px) {
    .fixed-image {
        width: auto;
        height: 50%;
        z-index: -10;
    }

    h1 {
        font-size: 50px;
    }

    .section-image{
        width: 90vw;
    }

    .section-image div img {
        scale: 0.8;
    }

    .section-image div {
        padding: 0.5rem;
        background-color: rgba(228, 246, 226, 0.8);
    }
}