:root {
    --pink: #006B45;
	--bordeaux: #910E11;
    --pinkk-light: rgba(64,122,81,0.90);
    --font-standard: 'PT Sans', Arial, Helvetica, sans-serif;
    --form-component-width: calc(100% - 180px);
}






* {
    margin: 0px;
    padding: 0px;
    font-size: 0px;
    box-sizing: border-box;
}

body {
    padding-left: 30px;
    padding-right: 30px;

}

em {
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    font-style: italic;
    font-weight: inherit;
}

.layout-application {
    display: block;
    position: relative;
    width: 100%;
    max-width: 1300px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 20px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 5px #fff;
    border-radius: 0px 0px 5px 5px;
}

.layout-top {
    position: relative;
    display: block;
    padding-top: 10px;
    z-index: 2;
}

/* ------------ .layout-logo ------------ */

.layout-logo {
    margin-bottom: 0px;
}

.layout-logo img {
    width: 100%;
}


/* ------------ .layout-slider ------------ */

.layout-slider {
    display: block;
    right: 0px;
    bottom: -20px;
    width: 25% !important;
}



.layout-slider .layout-photos {
    display: block;
    width: 100%;
    height: 100%;
}

.layout-slider .layout-photos .layout-photo {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: left center;
}

/* ------------ .layout-content ------------ */

.layout-content {
    display: block;
    position: relative;
    padding: 20px;
    padding-top: 30px;
    padding-bottom: 40px;
    margin-top: 20px;
    margin-bottom: 30px;
    font-family: var(--font-standard);
    border-radius: 5px;
    border: 0.3mm solid #ffffff;
}

.layout-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--pink);
    font-family: var(--font-standard);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.layout-content h2 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    color: #666666;
    font-family: var(--font-standard);
    margin-bottom: 15px;
}

.layout-content h3 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    color: #666666;
    font-family: var(--font-standard);
    margin-bottom: 30px;
    border-bottom-width: 0.3mm;
    border-bottom-style: solid;
}

.layout-content h6 {
    font-size: 24px;
    font-weight: 700;
    color: var(--pink);
    font-family: var(--font-standard);
    text-align: center;
}

.layout-content p {
    font-size: 16px;
    line-height: 20px;
    color: #666666;
    font-family: var(--font-standard);
    text-align: left;
    margin-bottom: 15px;
}

.layout-content p a {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}

.layout-content p strong {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    font-weight: bold;
}

.layout-content ul {
    padding-left: 20px;
    margin-bottom: 5px;
}

.layout-content ul li {
    font-size: 16px;
    line-height: 20px;
    color: #666666;
    font-family: var(--font-standard);
    list-style-type: disc;
    margin-bottom: 5px;
}

.layout-content ul li strong {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    font-weight: bold;
}

.layout-content ul li a {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}

.layout-content ol li {
    font-size: 16px;
    line-height: 20px;
    color: #666666;
    font-family: var(--font-standard);
    list-style-type: decimal;
    margin-bottom: 5px;
    list-style-position: inside;
}

.layout-content ol li strong {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    font-weight: bold;
}

.layout-content ol li a {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}


/* ------------ .layout-bottom ------------ */

.layout-bottom {
    display: block;
    position: relative;
    border-radius: 5px;
    border: 0.3mm solid #666666;
    padding: 15px 10px;
}

.layout-bottom p {
    font-family: var(--font-standard);
    font-size: 14px;
    text-align: center;
    box-sizing: border-box;
	text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.layout-bottom p a {
    font-family: var(--font-standard);
    font-size: 12px;
    border-radius: 10px;
    color: #666666;
    text-transform: uppercase;
    margin: 0px;
    padding: 0px;
}

.layout-bottom .mobile {
    display: none;
    text-align: left;
    margin-left: 30px;
}

.layout-bottom .mobile p {
    text-align: left;
}

/* ------------ .layout-form ------------ */
.layout-form {
    display: block;
    position: relative;
    width: calc(100% - 40px);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    padding: 50px 20px;
    border: 1px solid #ccc;
}

.layout-form p {
    margin-bottom: 10px;
}

.layout-form label {
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin-right: 20px;
    text-align: right;
    width: 130px;
    font-size: 16px;
    font-family: var(--font-standard);
    line-height: 38px;
}

.layout-form input[type="text"],
.layout-form input[type="email"] {
    display: inline-block;
    position: relative;
    vertical-align: top;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-size: 16px;
    font-family: var(--font-standard);
    width: var(--form-component-width);
    outline: none;
}

.layout-form textarea {
    display: inline-block;
    position: relative;
    vertical-align: top;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 16px;
    font-family: var(--font-standard);
    width: var(--form-component-width);
    height: 250px;
    outline: none;
}

.layout-form select {
    display: inline-block;
    position: relative;
    vertical-align: top;
    border: 1px solid #ccc;
    padding: 10px 10px;
    font-size: 16px;
    font-family: var(--font-standard);
    width: var(--form-component-width);
    outline: none;
}

.layout-form button {
    padding: 10px 30px;
    background-color: var(--pink);
    color: #fff;
    border: none;
    font-size: 16px;
    font-family: var(--font-standard);
    text-align: center;
    cursor: pointer;
}

/* ------------ divers ------------ */

#animGauche {
    display: block;
    -webkit-transition: all;
    -moz-transition: all;
    -ms-transition: all;
    -o-transition: all;
    transition: all;
    filter: RevealTrans(Duration=1, Transition=1);
}



/* ------------ mobiles ------------ */

@media screen and (max-width:1120px) {

    body {
        padding-left: 0px;
        padding-right: 0px;
    }

    .layout-application {
        box-shadow: none;
    }

 

    .layout-content p {
        text-align: left;
    }
}

@media screen and (max-width:650px) {

 

    .layout-logo img {
        display: block;
        width: 100%;
        min-width: initial;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
    }

  

    .layout-bottom .desktop {
        display: none;
    }

    .layout-bottom .mobile {
        display: block;
    }

    .layout-form label {
        display: block;        
        margin-right: 0px;
        text-align: left;
        width: 100%;
        margin-bottom: 0px;        
    }
    
    .layout-form input[type="text"],
    .layout-form input[type="email"] {
        display: block;        
        width: 100%;        
    }
    
    .layout-form textarea {
        display: block;        
        width: 100%;        
    }
    
    .layout-form select {
        display: block;        
        width: 100%;        
    }
    
    .layout-form button {
        display: block;        
        width: 150px;
        text-align: center;
    }

}






.colonnes {
    display: flex;   
    flex-wrap: wrap; 
}

.colonnes.marge10 {
    column-gap: 10px;
}
.colonnes.marge20 {
    column-gap: 20px;
}
.colonnes.marge30 {
    column-gap: 30px;
}
.colonnes.marge40 {
    column-gap: 40px;
}
.colonnes.marge50 {
    column-gap: 50px;
}

.colonnes.nombre2.marge10 .colonne {    
    width: calc((100% - (1 * 10px)) / 2);
}
.colonnes.nombre2.marge20 .colonne {
    width: calc((100% - (1 * 20px)) / 2);
}
.colonnes.nombre2.marge30 .colonne {
    width: calc((100% - (1 * 30px)) / 2);
}
.colonnes.nombre2.marge40 .colonne {
    width: calc((100% - (1 * 40px)) / 2);
}
.colonnes.nombre2.marge50 .colonne {
    width: calc((100% - (1 * 50px)) / 2);
}

.colonnes.nombre3.marge10 .colonne {
    width: calc((100% - (2 * 10px)) / 3);
}
.colonnes.nombre3.marge20 .colonne {
    width: calc((100% - (2 * 20px)) / 3);
}
.colonnes.nombre3.marge30 .colonne {
    width: calc((100% - (2 * 30px)) / 3);
}
.colonnes.nombre3.marge40 .colonne {
    width: calc((100% - (2 * 40px)) / 3);
}
.colonnes.nombre3.marge50 .colonne {
    width: calc((100% - (2 * 50px)) / 3);
}

.colonnes.nombre4.marge10 .colonne {
    width: calc((100% - (3 * 10px)) / 4);
}
.colonnes.nombre4.marge20 .colonne {
    width: calc((100% - (3 * 20px)) / 4);
}
.colonnes.nombre4.marge30 .colonne {
    width: calc((100% - (3 * 30px)) / 4);
}
.colonnes.nombre4.marge40 .colonne {
    width: calc((100% - (3 * 40px)) / 4);
}
.colonnes.nombre4.marge50 .colonne {
    width: calc((100% - (3 * 50px)) / 4);
}


.colonne img {
    max-width: 100% !important;
}

.colonne table {
    max-width: 100% !important;
}


@media screen and (max-width:1024px) { 

    .colonnes.nombre3.marge10 .colonne {
        width: calc((100% - (1 * 10px)) / 2);
    }
    .colonnes.nombre3.marge20 .colonne {
        width: calc((100% - (1 * 20px)) / 2);
    }
    .colonnes.nombre3.marge30 .colonne {
        width: calc((100% - (1 * 30px)) / 2);
    }
    .colonnes.nombre3.marge40 .colonne {
        width: calc((100% - (1 * 40px)) / 2);
    }
    .colonnes.nombre3.marge50 .colonne {
        width: calc((100% - (1 * 50px)) / 2);
    }
    
    .colonnes.nombre4.marge10 .colonne {
        width: calc((100% - (2 * 10px)) / 3);
    }
    .colonnes.nombre4.marge20 .colonne {
        width: calc((100% - (2 * 20px)) / 3);
    }
    .colonnes.nombre4.marge30 .colonne {
        width: calc((100% - (2 * 30px)) / 3);
    }
    .colonnes.nombre4.marge40 .colonne {
        width: calc((100% - (2 * 40px)) / 3);
    }
    .colonnes.nombre4.marge50 .colonne {
        width: calc((100% - (2 * 50px)) / 3);
    }
    

}

@media screen and (max-width:758px) {

    .colonnes {
        flex-direction: column;
    }
    .colonnes .colonne {
        width: 100% !important;
    }
    
}
