/* general */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

html {
    font-family: 'roboto';
    width: 100%;
    height: 100%;
    color: var(--black);
    text-align: justify;
    scroll-behavior: smooth;
}

body {
    --black: #333333;
    --grey: #444444;
    --grey2: #777777;
    --grey3: #f6f6f6;
    
    --white: #fff;
    
    --pink: #E8435F;
    --pink2: #ff2449;
    --pink3: #ef7b8f;
    --blue: #98CAE2;
    
    min-height: 100%;
    color: var(--black);
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
}


picture {
    max-width: 100%;
    display: block;
    position: relative;
}
picture::after {
    content: '';
    display: block;
    clear: both;
}
picture img {
    float: left;;
}
img {
    max-width: 100%;
}

/* animation */
@-webkit-keyframes blincklive {
    0%{opacity: 1;}
    50%{opacity: 0;}
    100%{opacity: 1;}
}
.blinck {
    -webkit-animation: blincklive 1.5s infinite;
    animation: blincklive 1.5s infinite;
}

.mobile {
    display: none !important;
}

/* titre */
p, h1, h2,h3, h4, h5, h6 {
    margin: 0 0 30px;
}

h1, h2, h3, h4, h5, h6, li {
    text-align: left;
}

p {
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    color: var(--grey);
}
.bold {
    font-size: 13px;
    font-weight: 600;
}
.big {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.small {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: -0.5px;
}

.title0, .title, .title2, .title3, .title4, .title5, .title6 {
    font-family: 'roboto';
    text-align: left;
}
.title0  {
    font-size: 40px;
    line-height: 50px;
    margin: 50px 0;
}
.title {
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    margin: 0 0 25px;
    color: var(--pink);
}
.title1 {
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
    margin: 0 0 15px;
    color: var(--black);
}
.title2 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 20px;
}

.title3 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--black);
    text-transform: uppercase;
    margin: 0 0 15px;
}
.title4 {
    font-size: 40px;
    line-height: 55px;
    font-weight: 700;
    color: var(--grey2);
    margin: 0 0 10px;
}
.title4 span {
    display: inline-block;
    color: var(--white);
    padding: 0px 7px;
    background: var(--pink);
}
.subtitle {
    font-size: 17px;
    line-height: 20px;
    font-weight: 300;
    margin: 0;
}


/* color */
.white { color: var(--white); }
.black { color: var(--black); }
.pink { color: var(--pink) !important; }

.bggrey { background: var(--grey3); }
.bgblue { background: var(--blue); }
.bgpink { background: var(--pink3); }



/* style texte */
.maj {
    text-transform: uppercase;
}

.b {
    font-weight: 900;
}

a {
    color: var(--grey);
    font-weight: 900;
    letter-spacing: -0.3px;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: var(--grey2);
}

.nomarg {
    margin: 0 !important;
}

.marg {
    margin: 0 0 30px;
}

.margtop {
    margin-top: 80px;
}

.fullw {
    width: 100%;
}

/* alignement texte */
.tleft {
    text-align: left !important;
}
.tright {
    text-align: right !important;
}
.tcenter {
    text-align: center !important;
}

/* bouton */
.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 35px;
    line-height: 35px;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    text-align: center;
    margin: 15px auto;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background: var(--pink);
}
.btn img {
    width: 35px;
    margin: auto;
    margin-right: 10px;
}
.btn:hover {
    color: var(--white);
    background: var(--pink2);
}

.btn.dark {
    color: var(--grey);
}
.btn.blue {
    background: var(--blue);
}
.btn.blue:hover {
    background: var(--blue3);
}

.bloccall {
    text-align: center;
}

.bloccall p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}


/* colonnes */
.bcol {
    width: 100%;
    max-width: 1340px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    margin: auto;
    padding: 0 35px;
}
.bcol.full {
    max-width: inherit;
}
.bcol.nopad {
    padding: 0;
}
.bcol.nopad .col {
    margin: 0;
    padding: 0 5px;
}
.bcol.nopad .col2 {
    width: calc(50%);
}

.bcol > .bcol {
    margin: 0;
    padding: 0;
}

.bcol > .bcol > .col {
    padding: 0;
    margin: 0 6px 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.col {
    margin: 0 15px 25px;
}

.col1 { width: calc(100% - 30px); }
.col2 { width: calc(50% - 30px); }
.col3 { width: calc(33.33% - 30px); }
.col4 { width: calc(25% - 30px); }
.col13 { width: calc(36% - 30px); }
.col23 { width: calc(64% - 30px); }
.col132 { width: calc(42% - 30px); }
.col232 { width: calc(58% - 30px); }
.col34 { width: calc(75% - 30px); }


.colt3 { width: calc(40% - 30px); }
.colt2 { width: calc(35% - 30px); }
.colt1 { width: calc(25% - 30px); }


/* contenu */


#cov {
    padding: 15px 0 25px;
    background: var(--blue2);
}
#cov * {
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
}
#cov h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 5px;
}
#cov p {
    font-size: 16px;
    line-height: 20px;
}


/* bandeau */
#bandeau {
    background: var(--blue) no-repeat scroll right -25px bottom 15px / 70%;
    background-image: url(../img/slider.png);
    background-image: -webkit-image-set(url(../img/slider.webp) 1x);
}

#bandeau .col13 {
    width: calc(100% - 30px);
    max-width: 360px;
}
#bandeau .col23 {
    width: calc(100% - 360px);
}
#bandeau .logo {
    width: 100%;
    max-width: 300px;
    margin: 30px 0 60px;
}

.blocdevis {
    text-align: center;
}
.devis {
    font-size: 25px;
    line-height: 28px;
    font-weight: 900;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.devis strong {
    font-size: 60px;
    line-height: 62px;
}


/* prestations */
#prestations {
    padding: 40px 0 20px;
}
.gprestations {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.gprestations .presta {
    width: calc(25% - 30px);
    max-width: 245px;
    min-width: 170px;
    margin: 0 15px 30px;
    background: var(--white);
}
.gprestations .presta img {
    width: 100%;
}
.gprestations .presta p {
    font-size: 16px;
    line-height: 20px;
    color: var(--pink);
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    padding: 15px 5px 20px;
}


/* pourquoi */
#pourquoi {
    padding: 40px 0;
}
#pourquoi .btn {
    min-height: inherit;
    font-size: 30px;
}
#pourquoi .devis {
    font-size: 20px;
    line-height: 22px;
    text-align: left;
}
#pourquoi .devis strong {
    font-size: 50px;
    line-height: 52px;
}

.blocappel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.blocappel img {
    min-width: 30px;
    margin: 0 10px 10px 0;
}

.blocappel p {
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    color: var(--grey2);
}


/* moment */
#moment .bcol {
    max-width: inherit;
    padding: 0;
}
#moment .bcol .colimg {
    margin: 0;
}
#moment .bcol .colimg * {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
#moment .bcol .coltxt {
    margin: 0;
    padding: 25px 25px 25px 0;
}
#moment .bcol .coltxt .title4 {
    color: var(--white);
}



/* temoignages */
#temoignages {
    margin-top: 70px;
      padding: 30px 0 20px; 
}
.ctemoins {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


.temoin {
   width: calc(33% - 30px);
    min-width: 200px;
    margin: 0 15px 30px;
}
.txttemoin {
    position: relative;
    font-size: 15px;
    line-height: 17px;
    font-weight: 300;
    color: var(--grey2);
    font-style: italic;
    margin-bottom: 30px;
    padding: 15px;
    background: var(--white);
}
.txttemoin::after {
    content: '';
    width: 0px;
    height: 0px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid var(--white);
    position: absolute;
    right: 25px;
    bottom: -25px;
}
.nametemoin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px;
}
.nametemoin p {
    font-size: 15px;
    color: var(--black);
    margin: 0 10px 0 0;
}
.nametemoin picture * {
    max-width: 70px;
    border-radius: 50%;
}

/* partenaires */
#partenaires {
    padding: 50px 0 25px;
}
.partenaires {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.partenaires {
    margin-top: 30px;
}
.partenaires picture {
    width: calc(20% - 30px);
    max-width: 200px;
    min-width: 120px;
    margin: 0 15px 30px;
    border: solid 3px var(--grey3);
    background: var(--white);
}


/* footer */
footer {
    padding: 0;
	background: var(--blue);
}
footer .bcol {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px;
    background: var(--blue) no-repeat scroll right bottom / auto;
	background-image: url(../img/footer.png);
	background-image: -webkit-image-set(url(../img/footer.webp) 1x);
}

footer .bcol .col13 {
    max-width: 150px;
}
footer .bcol .col23 {
    max-width: 320px;
}
footer .bcol .col23 .pink {
    margin: 0;
}

footer .logofooter {
    max-height: 200px;
}
.link {
    margin: 0;
}
.link a {
    color: var(--white);
    font-weight: 400;
    padding: 5px 15px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.link a:hover {
    opacity: 0.6;
}

footer .bloccall {
    width: calc(80% - 240px);
}


.hlogo {
    padding: 25px 0;
}
.hlogo img {
    max-height: 200px;
}


/* responsive */
@media screen and (max-width: 890px) {
    
    .bcol {
        padding: 0 5px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    
    #bandeau .bcol {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        background: rgba(152,202,226,0.5);
    }
    #bandeau .col {
        width: calc(100% - 30px);
        max-width: inherit;
        text-align: center;
    }
    #bandeau .logo {
        max-width: 100px;
        margin: 15px auto 0;
    }
    #bandeau .title0  {
        text-align: center;
        margin: 0;
        text-shadow: 0 0 12px rgba(0,0,0,0.3);
    }
    
    #pourquoi {
        padding-bottom: 0;
    }
    .colpourquoi {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .colpourquoi > .col {
        width: calc(100% - 30px);
    }
    .colpourquoi > .col23 {
        margin-bottom: 0;
    }
    .colpourquoi > .col23 .title2 {
        text-align: center;
    }
    .colpourquoi > .col13 {
        text-align: center;
    }
    .colpourquoi > .col13 img {
        max-width: 200px;
    }
    
    
    #moment .colimg {
        display: none;
    }
    #moment .bcol .coltxt {
        width: 100%;
        margin: 0;
        padding: 15px 15px 0;
    }
    #moment .bcol .coltxt .title4, 
    #moment .bcol .coltxt .blocdevis,
    #moment .bcol .coltxt .devis {
        text-align: center !important;
    }
    #moment .bcol .coltxt .title4 br {
        display: none;
    }
    
    footer .bcol {
        background: var(--blue) no-repeat scroll right bottom / auto 30%;
        background-image: url(../img/footer.png);
        background-image: -webkit-image-set(url(../img/footer.webp) 1x);
    }
    
}


@media screen and (max-width: 630px) {
    
    p, h1, h2, h3, h4, h5, h6 {
        margin: 0 0 10px;
    }
    .title0 {
        font-size: 25px;
        line-height: 30px;
        margin: 20px 0;
    }
    .title {
        font-size: 30px;
        line-height: 35px;
        margin: 0 0 10px;
    }
    .title2 {
        font-size: 22px;
        line-height: 26px;
    }
    .title3 {
        font-size: 20px;
        line-height: 25px;
        margin: 0 0 15px;
        padding: 0 0 10px;
    }
    .title4 {
        font-size: 18px;
        line-height: 22px;
    }
    .subtitle {
        font-size: 16px;
        line-height: 20px;
    }
    p {
        font-size: 13px;
        line-height: 16px;
    }
    
    .btn {
        font-size: 35px;
    }
    
    #prestations .tcenter br {
        display: none;
    }
    
    #pourquoi .bcol, .blocappel {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #pourquoi .bcol .col {
        width: calc(100% - 30px);
    }
    #pourquoi * {
        text-align: center !important;
    }
    .blocappel img {
        margin: 0 auto 10px;
    }
    
    #temoignages {
        margin-top: 20px;
    }
    
    .partenaires picture {
        width: calc(50% - 30px);
    }
    
}

@media screen and (max-width: 570px) {
    
    #bandeau {
        background-size: 100%;
    }
    
    .gprestations .presta {
        width: calc(50% - 30px);
        min-width: 130px;
    }
    
    .temoin {
        width: calc(100% - 30px);
    }
    
    .btn {
        font-size: 30px;
    }
    .btn img {
        width: 20px;
        margin: auto 5px auto 0;
    }
    
    footer .bcol .col {
        margin: 0 5px 10px;
    }
    footer .bcol .col13 {
        max-width: 40px;
    }
    footer .bcol .col23 {
        width: calc(100% - 60px);
    }
    footer .btn {
        font-size: 28px;
    }
    
}
