/* Infos & Maps */

.contact-container {
    display: flex;
    flex-direction: row;
    margin-bottom: 60px;
}

i {
    color: var(--main-orange);
    margin-right: 20px;
    font-size: 20px;
}

.contact-container-infos {
    background-color: #000;
    display: flex;
    align-items: center;
    padding: 40px;
}

.contact-container-infos-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.contact-container-infos h2,
.contact-container-infos p {
    color: #fff;
    margin: 0;
}

.contact-item a {
    color: var(--main-orange);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-container-map iframe {
    width: 100%;
    height: 100%;
}

.contact-item {
    flex: 1 1 0;
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-container-map iframe {
        width: 100%;
        height: 300px;
    }
}


/* Ninja Forms */

.nf-form-title {
    display: none;
}

.nf-form-content {
    margin: 0;
    margin-top: 10px;
    max-width: 100%;
}

.nf-field-label label,
.nf-form-fields-required,
.nf-error-msg {
    font-weight: normal;
    font-size: var(--paragraph-section);
}

#nf-field-4_1-container {
    display: none;
}


/* Bouton pour envoyer */

.link-section-contact {
    margin-top: 10px;
    text-align: left;
}

.link-section-contact a {
    font-weight: normal;
    font-size: var(--link-section);
    color: var(--main-text-black);
    text-transform: uppercase;
    padding-right: 50px;
    cursor: pointer;
}

.arrow-icon-contact {
    margin-left: 20px;
    height: 25px;
    display: inline-block;
    transition: margin-left 0.3s ease-out;
}

.link-section-contact-content:hover .arrow-icon-contact {
    margin-left: 30px;
}