#large-home-layer {
    width: 100%;
    height: 700px;

    position: relative;

    background: url('../media/imgs/page_accueil.jpg');
    background-size: cover;
    background-position: center 10%;
    background-attachment: fixed;
}

#anchored-layer-text {
    position: absolute;
    width: 900px;
    padding: 20px 30px;
    bottom: 20%;
    left: 50%;
    color: white;
    font-size: 5em;
    font-weight: bold;
    text-align: left;
    transform: translateX(-50%) translateX(-400px);
}

#anchored-layer-text::before {
    content: '';
    position: absolute;
    height: 110%;
    width: 5px;
    background: linear-gradient(to bottom, #F3944D, #E28871);
    bottom: 0;
    right: 0;
}

#anchored-layer-text::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 5px;
    background: linear-gradient(to left, #E28871, #E7EDF1, #E7EDF100);
    bottom: 0;
    right: 0;
}

#sub-home-layer-quote {
    font-size: 1.5em;
    padding: 60px;
}

/*
/////////////////////////////////////////////////////////////
///////////////////////    AXES    //////////////////////////
/////////////////////////////////////////////////////////////
*/

#axes {
    padding: 100px 0;
    background: #E7EDF1;
}

#axes .section-title {
    margin-bottom: 60px;
}

.axes-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.axe-section {
    display: block;
    position: relative;
    font-size: 18px;
    background: white;
    color: black;
    text-decoration: none;
}

.axe-image {
    position: relative;
} 

.axe-image::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='50 50 500 49'%3E%3Cpath d='M 50 80 Q 150 100 250 100 C 400 100 450 75 550 50 V 100 H 50 Z' fill='white' /%3E%3C/svg%3E");
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
}

.axe-image > img {
    width: 100%;
}

.axe-description {
    padding: 30px 30px 50px 30px;
}

.axe-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.axe-text {
    color: #616160;
}

/*
/////////////////////////////////////////////////////////////
///////////////////////    BIO    ///////////////////////////
/////////////////////////////////////////////////////////////
*/

#bio {
    /*padding: 150px 0 0 0;*/
    background: url("../media/imgs/presentation_valerie.jpg");
    background-size: cover;
}

.bio.content-width {
    width: 1200px;
}

.bio-container {
    background: rgba(6,72,114, 0.45);
    color: white;
    padding: 20px 20px 40px 20px;
}

.bio-content {
    text-align: justify;
}

.bio-title {
    font-size: 2.5em;
    text-transform: uppercase;
}

.bio-title::first-letter  {
    font-size: 1.4em;
}

.bio-text {
    padding: 40px;
    font-size: 18px;
}

.bio-floating-img {
    float: right;
    margin: 0 0 20px 80px; 
}

.bio-signature {
    margin: auto;
    width: 80%;
    display: flex;
    justify-content: flex-end;
}

.bio-signature > img {
    height: 120px;
}

/*
/////////////////////////////////////////////////////////////
//////////////////    TEMOIGNAGES    ////////////////////////
/////////////////////////////////////////////////////////////
*/   

#temoignages {
    padding: 150px 0;
}

#temoignages .content-width {
    width: 1800px;
}

.temoignages-container {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    justify-content: center;
}

.temoignage-section {
    position: relative;
    border: 3px solid #0a4974;
    padding: 30px;
    text-align: justify;
}

.temoignage-section::before {
    content: '';
    width:  60px;
    height: 60px;
    background-image: url('../media/imgs/guillemet_1.png');
    background-color: white;
    background-size: 30px auto;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}



.temoignage-section::after {
    content: '';
    width:  60px;
    height: 60px;
    background-image: url('../media/imgs/guillemet_2.png');
    background-color: white;
    background-size: 30px auto;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}

.temoignage-author {
    font-size: 20px;
}

.temoignage-job {
    font-size: 16px;
    font-weight: 600;
    color: #0a4974;
}

.temoignage-text {
    font-size: 14px;
    margin-top: 25px;
}

/*
/////////////////////////////////////////////////////////////
///////////////////    ACTUALITES    ////////////////////////
/////////////////////////////////////////////////////////////
*/

#actualites {
    padding: 50px 0;
    background: #E7EDF1;
    position: relative;
}

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

.actualites-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    width: 1200px;
    margin: 50px auto auto auto;
}

.actualites-section {
    display: grid;
    grid-template-columns: 1fr 500px;
    grid-template-rows: 100px 100px 50px;
    grid-template-areas: 
        "title image"
        "text image"
        "date image";
    grid-gap: 15px;
    background: white;
    padding: 15px 15px 15px 25px;
    border-radius: 20px;
}

.actualites-section-title {
    grid-area: title;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 30px;
    font-weight: 600;
}

.actualites-section-text {
    grid-area: text;
    font-size: 19px;
    padding-left: 50px;
}

.actualites-section-date {
    grid-area: date;
}

.actualites-section-date-element {
    display: inline-block;
    text-transform: uppercase;
    color: #616160;
    font-size: 18px;
    margin-top: 10px;
    padding-left: 120px;
    padding-top: 3px;
    position: relative;
}

.actualites-section-date-element::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #064872;
}

.actualites-section-image {
    grid-area: image;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.actualites-section-image::after {
    content: '';
    width: 400px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M 100 0 Q 10 10 0 100 Q 10 190 100 200 L 0 200 L 0 0 L 100 0 ' fill='white' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
}

.actualites-section-image > img {
    width: 100%;
    position: absolute;
    top: -40%;
    left: 0;
}

.actualites-section-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    padding: 7px 15px;
    background: #F3944D;
    color: white;
    border-radius: 10px;
    text-transform: uppercase;
}

.actualites-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;
}

/*
/////////////////////////////////////////////////////////////
/////////////////////    CONTACT    /////////////////////////
/////////////////////////////////////////////////////////////
*/

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    width: 1500px;
    margin: auto;
}

.contact-left {
    display: flex;
    flex-direction: column;

}

.contact-title {
    font-size: 60px;
    margin-bottom: 80px;
}

.contact-description {
    font-size: 18px;
}

.contact-info {
    margin-top: 80px;
    color: #064872;
    font-weight: 600;
    font-size: 30px;
}

.contact-info-spacer {
    display: inline-block;
    color: #F3944D;
}

.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;
}

.contact-field {
}

.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;
}