/* style  */

*{
    margin: 0;
    padding: 0;
}

body {
    box-sizing: border-box;
    color: #525252;
    font-size: 16px;
    font-family: 'Work Sans', sans-serif;
	font-weight: 400;
}

/******************************************************* colonne */

.colonne-centre {
    width: 100%;
    max-width: 1200px;
    position: relative;
    display: block;
    background: #fff;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
}



.colonne {
    display: block;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.doubleColonnes, .tripleColonnes, .quadriColonnes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

/******************************************************* content */

h1, h2, h3, h4, h5 {
    padding-bottom: 15px;
    margin-bottom: 15px;
    text-align: justify;
	color: #2E1B1B;
}

h1, .intro p {
    text-align: center;
}

img {
    max-width: 100%;
}

ul li {
    list-style: none!important;
}

.col_texte {
    padding: 15px;
}

.col_texte p{
    text-align: justify;
    padding-bottom: 15px;
}

.sous-titre {
    display: block;
    font-size: 1rem;
    color: rgb(233, 120, 14);
    font-weight: 400;
}

.center p, .center h1, .center h2, .center h3, .center h4, .center h5 {
	text-align: center!important;
}

.no-padding {
	padding: 0!important;
}

.no-margin {
	margin: 0!important;
}

/***************************************************** parralax */

.parralax {
    background-size: cover;
    height: 250px;
    background-attachment: fixed;
}

.parralax .colonne-centre {
    height: 100%;
    background: none!important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parralax .colonne-centre h2 {
    display: block;
    padding: 20px;
    background: #fff;
    font-size: 100%;
}

/***************************************************** liens */

a {
    text-decoration: none;
}

a.lien_full {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 100;
}

.bouton-action {
    text-align: center!important;
    margin-top: 20px;
}

.bouton-action a {
    padding: 12px 20px;
    background: rgb(207, 207, 207);
    font-weight: 600;
    font-size: 0.9rem;
    color: rgb(73, 70, 70);
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    display: inline-block;
}


/******************************************************* prestations */

.prestations {
    background: #333;
    display: block;
}

.prestations h2 {
    text-align: center;
}

.prestations .encart {
    position: relative;
    display: block;
    background-size: cover;
    height: 250px;
    margin-bottom: 15px;
}

.prestations .colonne-centre {
    background: rgb(223, 221, 221);
    padding: 30px 0 0;
}

.prestations h3, .prestations .decouvrir {
    color: #fff;
    text-align: center;
    display: block;
    position: absolute;
    z-index: 10;
}

.prestations h3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: 1;
    transition: all .3s ease-in-out;
}

.prestations .decouvrir {
    background: #fff;
    color: rgb(238, 12, 12);
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 20px;
    top: 65%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 0.8rem;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.prestations .encart:hover h3 {
    top: 35%;
    opacity: 0;
}

.prestations .encart:hover .decouvrir {
    opacity: 1;
    top: 50%;
}

.prestations .encart:after {
    content: '';
    background: red;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.prestations .encart:hover:after {
    opacity: 0.3;
}

/******************************************************* prestations 3 encarts full width */

.presta {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
    background: #fff;
}

.presta_encart {
    display: block;
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
}

.presta_encart:nth-child(1) {

}
.presta_encart:nth-child(2) {
}
.presta_encart:nth-child(3) {
}

.seconde_ligne .presta_encart:nth-child(1) {
}

.seconde_ligne .presta_encart:nth-child(2) {
}

.seconde_ligne .presta_encart:nth-child(3) {
}

.presta_encart h3, .presta_encart p {
    position: absolute;
    top: 50%;
    right: 40px;
    color: #fff;
    font-weight: 600;
    font-size: 1.7rem;
    z-index: 5;
}

.presta_encart:after {
    content: '';
    background: rgba(255, 0, 0, 0);
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    bottom:0;
    left: 0;
    right:0;
    transition: all .3s ease-in-out;
}

.presta_encart p {
    top: 75%;
    font-weight: 400;
    font-size: 1rem;
    transition:  all .3s ease-in-out;
    opacity: 0;
}

.presta_encart:hover p {
    opacity: 1;
    top: 60%;
}

.presta_encart:hover:after {
    background: rgba(255, 0, 0, 0.473);
}

.slogan {
    text-align: center;
    font-weight: 400;
    font-size: 2rem;
    color: red;
    font-style: italic;
}

/******************************************************* parralax content */

.parralax_content {
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
    padding: 0;
}

.parralax_content .colonne-centre {
    background: none;
    padding: 0;
}

.parralax_content .col_texte {
    margin: 0 auto 200px auto;
    padding: 30px;
    width: 100%;
    max-width: 750px;
    background: #fff;
}


/******************************************************* points forts */

.points_forts h2{
    text-align: center;
}

.points_forts .colonne-centre {
    padding-top: 30px;
}

.points_forts .encart {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    margin: auto;
} 

.points_forts .encart h3 {
    text-align: center;
}

.points_forts .encart img {
    width: 150px;
    height: auto;
    padding-bottom: 15px;
}

/******************************************************* footer */

.footer {
    background: #efefef;
}

.footer .colonne-centre {
    background: none;
}

.footer .colonne {
    padding: 20px 0;
}

.footer p, .footer ul li {
    text-align: center;
}

.footer_liens ul li a {
    color: rgb(255, 81, 0);
}

.footer_logo .logo {
    display: flex;
    max-width: 270px;
    align-items: center;
    margin: 0 auto;
}

/******************************************************* media queries */

@media only screen and (min-width: 600px){

    .doubleColonnes {
        display: flex;
        flex-wrap: wrap;
    }
    .doubleColonnes .colonne, .quadriColonnes .colonne {
        width: 50%;
    }

    .col_texte p {
        text-align: justify;
    }

    .colonne img {
        width: 100%;
        object-fit: cover;
        position: relative;
        height: 100%;
        max-height: 450px;
    }

    h1, h2, h3, h4, h5, p {
        text-align: left;
    }

    .bouton-action {
        text-align: right!important;
    }

    .parralax .colonne-centre h2 {
        font-size: 1.5rem;
    }
    
}

@media only screen and (min-width: 710px){
    .tripleColonnes {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .tripleColonnes .colonne {
        width: 33.33%;
    }

    .footer .colonne-centre {
        padding: 0;
    }

    .footer ul li {
        text-align: right;
        padding-right: 15px;
    }

    .footer_liens, .footer_infos {
        padding: 15px;
    }

    .footer_logo .logo {
        padding-left: 15px;
    }

    .presta {
        flex-wrap: nowrap;
    }

    .parralax_content {
        padding: 10px 0;
    }
    
    .parralax_content .col_texte {
        margin: 40px auto;
    }

}

@media only screen and (min-width: 810px){
    .colonne img {
        height: 100%;
    }

    .col_texte p {
        padding-right: 35px;
    }

    .parralax_content .col_texte p {
        padding-right: 0;
    }

    .prestations .encart {
        height: 550px;
    }

    .secondaire .col_texte p, .secondaire h2 {
        padding-right: 0;
        padding-left: 35px;
    }
}

@media only screen and (min-width: 900px){
    .quadriColonnes .colonne {
        width: 24%;
    }
}

@media only screen and (min-width: 1024px){
    .parralax_content .col_texte {
        margin: 40px 0 40px 30px;
    }
}

@media only screen and (min-width: 1024px){

    .footer .tripleColonnes .colonne {
        width: auto;
    }
}

@media only screen and (min-width: 1200px){
}