.section-contact-container {
    display: flex;
    align-items: center;
    gap: 2rem;

    width: 90%;
    margin: auto;
    padding: 40px 0;
}

.section-shortcode-contact {
    width: 80%;
    margin: auto;
    position: relative;
}

#contact .section-contact-container .section-shortcode-contact .wpcf7 {
    background: var(--color-background-secondary);
    padding: 3em 3em 0 3em;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-contact {
    display: flex;
    flex-direction: column;
}

.form-container-nom-prenom {
    display: flex;
    gap: 4rem;
}

.form-container-nom-prenom .form-group {
    width: 100%;
}

.section-contact {
    width: 80%;
    height: -webkit-fill-available;
    position: relative;


    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 8px;
    background: var(--color-background-secondary);

}

.content-container-1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 200px;
    margin: auto;
    padding: 14px 0;
}

.content-container-2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 200px;
    margin: auto;
    padding: 14px 0;
}

.item-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-image img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.item-container-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.item-container-2 .item-jour p {
	width: max-content;
}

.item-container-2 .item-horaire p {
	width: max-content;
}


@media screen and (max-width: 768px) {
    .section-contact-container {
        flex-direction: column-reverse;
    }

    .section-contact {
        width: 100%;
    }

    .section-shortcode-contact {
        width: 100%;
    }
}