.section-contact {
    background-color: #131C43;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.section-contact .container-contact .info-general h2 {
    font-size: 2.5rem;
}

.container-contact {
    max-width: 1300px;
    width: 100%;
    display: flex;
    gap: 5rem;
    align-items: center;
    justify-content: center;
}

.info-general,
.formulaire {
    color: #fff;
    flex-basis: 50%;
}

.fa-phone,
.fa-envelope {
    color: #fff;
    font-size: 2.5rem;
}

.tel,
.email {
    background-color: #3599D1;
    padding: 15px;
    margin-top: 15px;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.tel a,
.email a {
    text-decoration: none;
}

.tel .fa-phone,
.tel h3,
.tel a,
.email .fa-envelope,
.email h3,
.email a {
    color: #fff;
    margin: 10px;
    font-weight: bold;
}

.formulaire h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 10px;
}

.formulaire input,
textarea,
label {
    width: 100%;
    margin: 10px;
}

.formulaire input,
textarea {
    padding: 10px;
    font-size: 1rem;
    background: none;
    color: #fff;
    border: #fff solid 1px;
    border-radius: 8px;
    transition: 0.5s ease;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.formulaire input:focus,
textarea:focus {
    outline: none;
    background: #0000373e;
}

#send {
    border: none;
    background: #3599D1;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.5s ease;
}

#send:hover {
    background-color: #4fd0ff;
    border: none;
}

/* Responsive */
@media screen and (max-width:768px) {
    .section-contact {
        padding: 2.5rem;
    }

    .container-contact {
        display: block;
        margin: auto;
    }

    .section-contact .container-contact .info-general h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .tel .fa-phone,
    .tel h3,
    .tel a,
    .email .fa-envelope,
    .email h3,
    .email a,
    .formulaire input,
    textarea,
    label {
        margin: 1rem 0;
    }

    .info-general {
        margin: 0 0 1rem 0;
    }

    .formulaire h3 {
        font-size: 1;
        margin: 0;
    }
}

/* Très petit écran */
@media screen and (max-width:320px) {
    .section-contact {
        padding: 1.5rem;
    }
}