.top-page-container {
    background: #E7EDF1;
    padding: 50px 0;
}

.top-page-subtitle {
    width: 1100px;
    margin: 15px auto;
    font-size: 28px;
    color: #616160;
    text-align: center;
}

.top-page-bottom-decoration {
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 25'%3E%3Cpath d='M 0 0 L 800 0 C 750 12 600 25 400 25 C 200 25 50 12 0 0 ' fill='%23E7EDF1' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    transform: translateY(-1px);
}

.page-content-width {
    width: 800px;
    margin: auto;
}

/*
/////////////////////////////////////////////////////////////
///////////////    CONTACT TEXT    /////////////////////////
/////////////////////////////////////////////////////////////
*/

.contact-text {
    text-align: center;
}

.contact-title {
    font-size: 60px;
    color: #064872;
    margin-bottom: 20px;
}

.contact-subtitle {
    width: 700px;
    margin: auto;
    font-size: 25px;
    color: #616160;
}

.contact-info-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.contact-info-section {
    display: inline;
    padding: 20px 60px;
}

.contact-info-section:first-child {
    border-right: 3px solid #064872;
}

.contact-info-section-prefix {
    text-transform: uppercase;
    color: #616160;
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-info-section-data {
    color:#064872;
    font-size: 26px;
    font-weight: bold;
}

/*
/////////////////////////////////////////////////////////////
///////////////    CONTACT FORM    /////////////////////////
/////////////////////////////////////////////////////////////
*/

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 50px) 1fr;
    grid-template-areas: 
        "lastname firstname"
        "phone subject"
        "mail mail"
        "message message"
        "submit submit";
    grid-gap: 30px;
    border-top: #064872 5px solid;
    background: #E7EDF1;
    padding: 25px 10px;
    margin-bottom: 80px;
}

.contact-field-title {
    margin-bottom: 5px;
}

.contact-form-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 5px;
    font-size: 16px;
    background: white;
}

.contact-form-select {
    width: 100%;
    border: none;
    outline: none;
    padding: 5px;
    font-size: 16px;
    background: url('../media/imgs/fleche_bleu.png');
    background-color: white;
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) calc(50% - 2px);
    background-size: 20px;
    appearance: none;
    position: relative;
}

.contact-form-textarea {
    border: none;
    outline:none;
    background: white;
    resize: none;
    width: 100%;
    height: 150px;
    font-size: 16px;
    padding: 5px;
}

.contact-field.mandatory .contact-field-title::after {
    content: '*';
    color: red;
}

.contact-field.last-name {
    grid-area: lastname;
}

.contact-field.first-name {
    grid-area: firstname;
}

.contact-field.phone {
    grid-area: phone;
}

.contact-field.subject {
    grid-area: subject;
}

.contact-field.mail {
    grid-area: mail;
}

.contact-field.message {
    grid-area: message;
}

.contact-mandatory-field-info {
    margin-top: 5px;
    font-size: 13px;
}

.contact-mandatory-field-info::before {
    content: '*';
    color: red;
}

.contact-form-submit {
    grid-area: submit;
    border: none;
    border-radius: 15px;
    outline: none;
    margin: auto;
    background: #F3944D;
    color: white;
    font-weight: 600;
    font-size: 20px;
    padding: 10px 35px;
}