/* 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: #353535;
    --grey: #f7f7f6;
    --white: #fff;
    --blue: #132439;
    --green: #41FE6D;
    --green2: #02dd35;
    --green3: #2EB14D;
    
    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;
}
img {
    max-width: 100%;
}

/* animation */
@-webkit-keyframes burst {
    0% { 
        opacity:.6
    }
    50% {
        -webkit-transform:scale(1.8);
        transform:scale(1.8);
        opacity:0
    }
    100% {
        opacity:0
    }
}
@keyframes burst {
    0% { 
        opacity:.6
    }
    50% {
        -webkit-transform:scale(1.8);
        transform:scale(1.8);
        opacity:0
    }
    100% {
        opacity:0
    }
}


@-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: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--black);
}
.bold {
    font-size: 13px;
    font-weight: 600;
}

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

.title0, .title, .title2, .title3, .title4, .title5, .title6 {
    font-family: 'roboto';
    text-align: left;
}

.title {
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 35px;
    line-height: 40px;
    font-weight: 900;
    color: var(--green);
    margin: 0 0 25px;
    padding: 10px 15px;
    background: var(--blue);
}
.title img {
    margin-right: 15px;
}
.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(--green3);
    margin: 0 0 20px;
}

.title3 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 900;
    margin: 0 0 15px;
}


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

.bggrey { background: var(--grey); }



/* 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(--blue);
    text-decoration: none;
    text-align: left;
    margin: 15px auto;
    padding: 10px 15px;
    border: none;
    border-radius: 40px 0 0 40px;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background: var(--green);
}
.btn span b {
    display: block;
    font-size: 25px;
}

.btn img {
    width: 60px;
    margin: auto;
    margin-right: 10px;
    padding: 5px;
    border-radius: 50%;
    background: var(--blue);
}
.btn:hover {
    background: var(--green2);
}

.btn2 {
    border-radius: 0;
}
.btn2 img {
    border-radius: 0;
    background: none;
}


/* 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); }


/* contenu */

/* bandeau */
#bandeau {
    background: var(--blue) url(../img/perso.svg) no-repeat scroll left bottom / auto 100%;
}

#bandeau .bcol {
    max-width: inherit;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0;
}
#bandeau .col1 {
    width: calc(100% - 450px);
    max-width: 900px;
    margin: 0;
}

#bandeau .logo {
    width: 100%;
    max-width: 300px;
    margin: 30px 0 0px;
}

.title0  {
    font-size: 75px;
    line-height: 78px;
    font-weight: 700;
    color: var(--white);
    margin: 20px 0;
}
.title0 span  {
    font-size: 78px;
    font-weight: 400;
    display: block;
}

#bandeau p {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}
#bandeau .btn {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
#bandeau .btn img {
    margin-left: 0;
}

.vignette {
    width: 250px;
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    border: solid 8px var(--blue);
    border-radius: 50%;
    position: absolute;
    bottom: 10px;
    left: 5%;
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
    background: var(--green);
}
#bandeau .vignette .titlev .a {
    font-size: 30px;
    line-height: 32px;
    font-weight: 900;
    color: var(--blue);
    text-align: center;
    margin: 0;
}
#bandeau .vignette .titlev .prix {
    display: block;
    font-size: 80px;
    line-height: 70px;
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: solid 3px var(--blue);
}
#bandeau .vignette p {
    font-size: 13px;
    line-height: 16px;
    font-weight: 700;
    color: var(--blue);
    text-align: center;
    margin: 0;
    padding: 0 15px;
}


/* icones */
#icones {
    padding: 50px 0 20px;
}
.gicones{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.icone {
    margin: 0 auto;
    padding: 0 10px;
}
.icone .img {
    width: 160px;
    height: 160px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    background: var(--green);
}
.icone .img img {
    width: calc(100% - 30px);
}
.icone p {
    max-width: 140px;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
    margin: 10px auto 20px;
}


/* rge */
#rge {
    padding: 20px 0 0;
}

#rge .col2 {
    margin: 0 40px 25px;
}
#rge .col2 picture img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}


/* prestations */
#prestations {
    padding: 60px 0 20px;
    margin-bottom: 40px;
}
.gprestations {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.gprestations .presta {
    width: calc(33% - 30px);
    max-width: 400px;
    min-width: 170px;
    margin: 0 15px 30px;
}
.gprestations .presta img {
    width: 100%;
}
.gprestations .presta p {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    padding: 15px 5px 20px;
}


/* pourquoi */
#route {
    
    padding: 0;
    background: url(../img/route.svg) no-repeat scroll center bottom / cover;
}
#route .bcol {
    min-height: 600px;
}
#route h2 {
    font-size: 30px;
}
#route .btn {
    position: absolute;
    right: 25px;
    bottom: 60px;
    font-size: 30px;
}


/* temoignages */
#temoignages {
    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: 240px;
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: 0 15px 30px;
}
.temoin picture {
    width: calc(40% - 20px);
    margin-right: 20px;
}
.txttemoin {
    width: 60%;
}
.rank {
    margin-bottom: 15px;
}
.rank img {
    width: 20px;
}
.txttemoin p {
    max-width: 150px;
    font-size: 15px;
    line-height: 17px;
    font-weight: 300;
    text-align: left;
    margin: 0 0 10px;
}
.txttemoin h6 {
    max-width: 150px;
    font-size: 15px;
    line-height: 17px;
    font-weight: 900;
    font-style: italic;
    text-align: left;
    margin-bottom: 10px;
}

#temoignages .title3 {
    margin-top: 30px;
}



/* footer */
footer {
    margin-top: 40px;
    padding: 0;
	background: var(--blue);
}
footer .col1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
footer .col1 .btn {
    margin: 0 auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.logofooter {
    max-width: 230px;
}

footer p {
    font-size: 12px;
    line-height: 14px;
    font-weight: 300;
    margin: 40px auto 0;
}
footer p a {
    color: var(--white);
    font-weight: 300;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
footer p a:hover {
    opacity: 0.6;
}



.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 {
        background: var(--blue);   
    }
    
    #bandeau .col {
        width: calc(100% - 30px);
        max-width: inherit;
        text-align: center;
        margin: 0 auto;
    }
    .title0 {
        text-align: center;
    }
    .vignette {
        width: 170px;
        height: 170px;
        top: 15px;
        left: 15px;
        bottom: inherit;
    }
    #bandeau .vignette .titlev .a {
        font-size: 18px;
        line-height: 22px;
    }
    #bandeau .vignette .titlev .prix {
        font-size: 40px;
        line-height: 25px;
    }
    #bandeau .vignette p {
        font-size: 11px;
        line-height: 14px;
        padding: 0 5px;
    }
    #bandeau .btn {
        border-radius: 40px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    
    #rge .col2 {
        width: calc(100% - 30px);
        margin: 0 auto 25px;
    }
    #rge .col2 * {
        text-align: center;
    }
    #rge .btn {
        margin: 0 auto;
    }
    
    #route .bcol {
        min-height: 400px;
    }
    
}


@media screen and (max-width: 700px) {
    
    .vignette {
        position: relative;
        margin: -5px auto 25px;
    }
    
}

@media screen and (max-width: 630px) {
    
    p, h1, h2, h3, h4, h5, h6 {
        margin: 0 0 10px;
    }
    .title {
        font-size: 30px;
        line-height: 35px;
    }
    .title2 {
        font-size: 25px;
        line-height: 30px;
    }
    .title3 {
        font-size: 20px;
        line-height: 25px;
    }
    
    #route {
        background-position: center top 60px;
        background-size: auto 85%;
    }
    
    
}

@media screen and (max-width: 570px) {
    
    .title0 {
        font-size: 50px;
        line-height: 58px;
    }
    .title0 span {
        font-size: 58px;
    }
    
    #route {
        background-size: auto 65%;
    }
    #route h2 {
        font-size: 23px;
        line-height: 26px;
    }
    #route .btn {
        bottom: 0px;
        margin: 0;
    }
    
    
    .gprestations .presta {
        width: calc(50% - 30px);
        min-width: 130px;
    }
    
    .icone .img {
        width: 130px;
        height: 130px;
    }
    
    .temoin {
        width: calc(100% - 30px);
    }
    .temoin picture {
        width: calc(120px - 30px);
        max-height: 150px;
    }
    .temoin picture * {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .txttemoin {
        width: 100%;   
    }
    .txttemoin p {
        max-width: inherit;
    }
    
    .btn {
        font-size: 30px;
    }
    
    .mobile {
        display: block !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2000;
        -webkit-box-shadow: 0 -5px 8px rgba(255, 255, 255, 0.7);
        box-shadow: 0 -5px 8px rgba(255, 255, 255, 0.7);
        background: var(--blue);
    }
    .mobile .col {
        width: 100%;
        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;
        margin: 0;
        padding: 5px;
    }
    
    .mobile .col .logofooter {
        max-width: 160px;
        margin: auto;
    }
    .mobile .btn {
        padding: 10px;
        border-radius: 50%;
        position: relative;
        z-index: 10;
    }
    .mobile .col > * {
        margin: 5px auto;
    }
    .mobile .btn::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 50%;
        z-index: -1;
        background: var(--green);
        -webkit-animation:burst 2s infinite linear;
        animation:burst 2s infinite linear;
    }
    .mobile .btn img {
        width: 40px;
        margin: auto;
    }
    
}
