/* general */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

html {
    font-family: 'roboto', sans-serif;
    width: 100%;
    height: 100%;
    color: var(--black);
    text-align: justify;
    scroll-behavior: smooth;
}

body {
    --black: #000000;
    --grey: #353535;
    --grey2: #4D4D4D;
    --grey3: #E4E4E4;
    
    --white: #fff;
    
    --red: #F45757;
    --red2: #eb1212;
    --blue: #202C42;
    --blue2: #39B5F7;
    --blue3: #1f3865;
    --yellow: #F2A905;
    
    min-height: 100%;
    color: var(--black);
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
}


picture {
    max-width: 100%;
    display: block;
}
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;
}

.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: 50px;
    line-height: 60px;
    margin: 50px 0;
}
.title {
    font-size: 45px;
    line-height: 50px;
    font-weight: 500;
    margin: 0 0 25px;
    color: var(--red);
}
.title1 {
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
    margin: 0 0 15px;
    color: var(--blue);
}
.title2 {
    position: relative;
    font-size: 35px;
    line-height: 40px;
    font-weight: 700;
    color: var(--grey2);
    margin: 0 0 20px;
}

.title3 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 500;
    color: var(--grey);
    margin: 0 0 25px;
    padding: 0 0 25px;
    border-bottom: solid 3px var(--grey);
}
.title4 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    color: var(--grey2);
    margin: 0 0 10px;
}
.title5 {
    font-size: 22px;
    line-height: 24px;
    font-weight: 900;
    color: var(--grey2);
    margin: 0 0 5px;
}
.subtitle {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin: 0;
}


/* color */
.color { color: var(--red); }
.white { color: var(--white); }

.bggris { background: var(--grey3); }
.bgred { background: var(--red); }



/* 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 {
    min-height: 80px;
    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: 40px;
    line-height: 40px;
    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(--red);
}
.btn img {
    width: 35px;
    margin: auto;
    margin-right: 10px;
}
.btn:hover {
    color: var(--white);
    background: var(--red2);
}

.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: no-repeat scroll right top / auto 100%;
    background-image: url(../img/slider.jpg);
    background-image: -webkit-image-set(url(../img/slider.webp) 1x);
}
#bandeau .bcol {
    max-width: inherit;
    padding: 0;
}
#bandeau .bcol > * {
    margin: 0;
}
#bandeau .col23 {
    width: calc(60% - 0px);
    position: relative;
    padding: 3em;
    z-index: 50;
}
#bandeau .col23:before {
    content: "";
    position: absolute;
    top:0;
    left: -50%;
    right:-10px;
    bottom:0;
    z-index: -1;
    -webkit-transform: skewX(-15deg);
    transform: skewX(-15deg);
    background: var(--blue);
}
#bandeau .blocslid {
    width: 100%;
    max-width: 620px;
    margin: auto;
}
#bandeau .logo {
    width: 100%;
    max-width: 600px;
    margin: 30px 0 20px;
}

.dispobloc {
    width: 100%;
    max-width: 450px;
}
.dispobloc * {
    color: var(--white);
    text-align: center;
    margin: 0 auto;
}
.dispobloc .big {
    font-size: 30px;
    line-height: 35px;
    font-weight: 900;
}
.dispobloc .btn {
    font-size: 50px;
    line-height: 50px;
    font-weight: 900;
    margin: 10px 0 20px;
}
.dispobloc .little {
    font-size: 25px;
    line-height: 30px;
    font-weight: 900;
}


/* avantages */
#avantages {
    padding: 30px 0 0;
}
.blocavantages .col4 * {
    text-align: center;
}
.blocavantages .col4 img {
    height: 153px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 auto 20px;
}


/* bandinter */
#bandinter .col3 {
    margin-bottom: 0;
}
#bandinter .col3:not(.colimg) {
    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;
    padding: 25px;
}
#bandinter .col3.colimg picture,
#bandinter .col3.colimg picture * {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}


/* prestations */
#prestations {
    padding: 30px 0 20px;
}
#prestations .col4 picture {
    padding: 15px;
}
#prestations .col4 img {
    -webkit-box-shadow: 10px 10px 6px #00000029;
    box-shadow: 10px 10px 6px #00000029;
}
#prestations .col4 p {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
}


/* assurances */
#assurances {
    padding: 35px 0 25px;
}
#assurances .col {
    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;
}
#assurances .col1,
#assurances .col23 {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#assurances .col1 img, 
#assurances .col23 img {
    min-width: 150px;
    margin-right: 30px;
}

#assurances .txtassurances p {
    font-size: 25px;
    line-height: 28px;
    color: var(--grey2);
    text-align: left;
    margin: 0;
}
#assurances .big {
    font-size: 30px;
    line-height: 32px;
}


/* clees */
#clees {
    padding: 20px 0 0;
}
#clees .col1 {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#clees .col1 > * {
    width: 12.5%;
    min-width: 130px;
}



/* dispo */
#dispo {
    background: var(--blue) scroll center right / cover;
    background-image: url(../img/slider-dispo.jpg);
    background-image: -webkit-image-set(url(../img/slider-dispo.webp) 1x);
}
#dispo .bcol {
    min-height: 550px;
    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-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#dispo .col1 {
    max-width: 600px;
}
#dispo .dispobloc .little {
    font-size: 30px;
    line-height: 35px;
}


/* temoignages */
#temoignages {
      padding: 50px 0 20px; 
}
.temoin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.temoin picture {
    margin: 0 20px 20px 0;
}
.temoin picture * {
    min-width: 150px;
    max-width: 150px;
    border-radius: 15px;
}
.temoin .contenttemoin {
    width: 100%;
    max-width: 350px;
}
.temoin .rank img {
    width: 20px;
    margin: 0 0 5px;
}
.temoin .contenttemoin p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    margin: 0 0 15px;
}
.temoin .contenttemoin h6 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}


/* partenaires */
#partenaires {
    padding: 0 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 > * {
    min-width: 100px;
    width: 14%;
    margin: 10px 1%;
}


/* footer */
footer {
    padding: 0;
    background: var(--red);
}
footer .bcol {
    max-width: inherit;
    padding: 0;
}
footer .bcol .col {
    margin: 0;
    padding: 50px;
}

footer .colblue {
    width: calc(45% - 0px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 50;
}
footer .colblue:before {
    content: "";
    position: absolute;
    top:0;
    left: -50%;
    right:-10px;
    bottom:0;
    z-index: -1;
    -webkit-transform: skewX(-15deg);
    transform: skewX(-15deg);
    background: var(--blue);
}
footer .bcol .colred  {
    width: calc(55% - 0px);
    padding-left: 70px;
    background: var(--red);
}
footer .collogo {
    margin: auto 0;
}
footer .logofooter {
    max-width: 340px;
}
.link {
    margin: 15px 0 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);
}

.telcol {
    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;
}
.telcol .title4 {
    font-size: 35px;
    line-height: 38px;
    font-weight: 800;
    margin-right: 25px;
}

.entete {
    margin-bottom: 50px;
}
.entete .bcol .col {
    padding: 20px 50px;
}
.entete .bcol .col.colblue {
    padding-bottom: 20px;
}

.fixedtel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0px;
    -webkit-box-shadow: 0 -5px  15px var(--blue);
    box-shadow: 0 -5px  15px var(--blue);
    z-index: 3000;
}
.fixedtel .btn {
    width: 100%;
    min-height: inherit;
    display: block;
    font-size: 30px;
    line-height: 30px;
    margin: 0;
    border-radius: 0;
}
.fixedtel .btn img {
    width: 25px;
}

/* déclinaison */
#blindage {
    --red: #171C57;
    --red2: #222a8a;
    --blue: #DE7239;
    --blue3: #ed5f14;
}
#blindage .title0 {
    font-size: 45px;
}
#blindage #bandeau {
    background-image: url(../img/blindage/slider.jpg);
    background-image: -webkit-image-set(url(../img/blindage/slider.webp) 1x);
}
#blindage .title3 {
    border-bottom-color: var(--blue);
}
#blindage #dispo {
    background-image: url(../img/blindage/slider-dispo.jpg);
    background-image: -webkit-image-set(url(../img/blindage/slider-dispo.webp) 1x);
}


#vitre {
    --red: #171C57;
    --red2: #222a8a;
    --blue: #C9C448;
    --blue3: #b1ab19;
}
#vitre .title0 {
    font-size: 45px;
}
#vitre #bandeau {
    background-image: url(../img/vitre/slider.jpg);
    background-image: -webkit-image-set(url(../img/vitre/slider.webp) 1x);
}
#vitre .title3 {
    border-bottom-color: var(--blue);
}
#vitre #dispo {
    background-image: url(../img/vitre/slider-dispo.jpg);
    background-image: -webkit-image-set(url(../img/vitre/slider-dispo.webp) 1x);
}


#ouverture {
    --red: #24BCA7;
    --red2: #02b098;
    --blue: #5D5D5D;
    --blue3: #787878;
}
#ouverture .title0 {
    font-size: 45px;
}
#ouverture #bandeau {
    background-image: url(../img/ouverture/slider.jpg);
    background-image: -webkit-image-set(url(../img/ouverture/slider.webp) 1x);
}
#ouverture .title3 {
    border-bottom-color: var(--blue);
}
#ouverture #dispo {
    background-image: url(../img/ouverture/slider-dispo.jpg);
    background-image: -webkit-image-set(url(../img/ouverture/slider-dispo.webp) 1x);
}


#rideaux {
    --red: #8D1233;
    --red2: #bb1a46;
    --blue: #ABAAAA;
    --blue3: #8e8e8e;
}
#rideaux .title0 {
    font-size: 45px;
}
#rideaux .title {
    color: var(--blue);
}
#rideaux #bandeau .col23::before {
    background: var(--red);
}
#rideaux #bandeau {
    background-image: url(../img/rideaux/slider.jpg);
    background-image: -webkit-image-set(url(../img/rideaux/slider.webp) 1x);
}
#rideaux .title3 {
    border-bottom-color: var(--red);
}
#rideaux #dispo {
    background-image: url(../img/rideaux/slider-dispo.jpg);
    background-image: -webkit-image-set(url(../img/rideaux/slider-dispo.webp) 1x);
}
#rideaux footer .colblue::before,
#rideaux #footer .colblue::before {
     background: var(--red);
}
#rideaux footer .bcol .colred {
     background: var(--blue);
}
@media screen and (max-width: 780px) {
    #rideaux #bandeau .col.col23 {
        background: var(--red);
    }
}


#porte {
    --red: #55385A;
    --red2: #412246;
    --blue: #BF7EB8;
    --blue3: #ae66a6;
}
#porte .title0 {
    font-size: 45px;
}
#porte .title {
    color: var(--blue);
}
#porte #bandeau .col23::before {
    background: var(--red);
}
#porte #bandeau {
    background-image: url(../img/porte/slider.jpg);
    background-image: -webkit-image-set(url(../img/porte/slider.webp) 1x);
}
#porte .title3 {
    border-bottom-color: var(--red);
}
#porte #dispo {
    background-image: url(../img/porte/slider-dispo.jpg);
    background-image: -webkit-image-set(url(../img/porte/slider-dispo.webp) 1x);
}
#porte footer .colblue::before,
#porte #footer .colblue::before {
     background: var(--red);
}
#porte footer .bcol .colred {
     background: var(--blue);
}
@media screen and (max-width: 780px) {
    #porte #bandeau .col.col23 {
        background: var(--red);
    }
}



#changement {
    --red: #006684;
    --red2: #065c75;
    --blue: #2499BC;
    --blue3: #03a5d5;
}
#changement .title0 {
    font-size: 45px;
}
#changement .title {
    color: var(--blue);
}
#changement #bandeau .col23::before {
    background: var(--red);
}
#changement #bandeau {
    background-image: url(../img/changement/slider.jpg);
    background-image: -webkit-image-set(url(../img/changement/slider.webp) 1x);
}
#changement .title3 {
    border-bottom-color: var(--red);
}
#changement #dispo {
    background-image: url(../img/changement/slider-dispo.jpg);
    background-image: -webkit-image-set(url(../img/changement/slider-dispo.webp) 1x);
}
#changement footer .colblue::before,
#changement #footer .colblue::before {
     background: var(--red);
}
#changement footer .bcol .colred {
     background: var(--blue);
}
@media screen and (max-width: 780px) {
    #changement #bandeau .col.col23 {
        background: var(--red);
    }
}


/* responsive */
@media screen and (max-width: 1000px) {
    
    #bandeau .col23 {
        padding: 2em;
    }
    .title0 {
        font-size: 40px;
        line-height: 50px;
    }
    .dispobloc .btn {
        font-size: 35px;
        line-height: 40px;
    }
    
}


.desk {
        display: none !important;
    }
    .mobile {
        display: block !important;
    }
    .fixedtel {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
footer .bcol .col {
    padding: 50px 50px 70px;
}

@media screen and (max-width: 780px) {
    
    .bcol {
        padding: 0 5px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .col4 {
        width: calc(50% - 30px);
    }
    
    #bandeau .bcol {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #bandeau .col {
        width: calc(100% - 30px);
    }
    #bandeau .col.col23 {
        width: 100%;
        background: var(--blue);
    }
    #bandeau .col.col23::before {
        content: inherit;
        display: none;
    }
    #bandeau .title0  {
        text-align: center;
    }
    .dispobloc {
        margin: auto;
    }
    
    #bandinter .col3.colimg {
        display: none;
    }
    #bandinter .col3 {
        width: calc(50% - 30px);
        padding: 15px 0 !important;
    }
    
    #assurances .col {
        width: calc(100% - 30px);
    }
    
    #dispo .bcol {
        min-height: 350px;
    }
    #dispo .col1 {
        margin: auto;
    }
    
    .temoin {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .temoin .contenttemoin * {
        text-align: center;
    }
    
    footer .bcol .col {
        width: calc(100% - 30px);
    }
    footer .bcol .col.colblue {
        width: 100%;
        background: var(--blue);
        text-align: center;
        padding-bottom: 90px;
    }
    footer .bcol .col.colblue::before {
        content: inherit;
        display: none;
    }
    footer .collogo {
        margin: auto;
    }
    
    footer .bcol .col.colred {
        display: none;
    }
    
}

@media screen and (max-width: 680px) {
    
    #bandinter .col3 {
        width: calc(100% - 30px);
    }
    #bandinter .col3 * {
        text-align: center;
    }
    
}


@media screen and (max-width: 570px) {
    
    #cov {
        padding: 5px 0 10px;
    }
    #cov h3 {
        font-size: 15px;
        line-height: 17px;
        margin-bottom: 3px;
    }
    #cov p {
        font-size: 12px;
        line-height: 14px;
    }
    
    #bandeau .col23 {
        padding: 15px 15px 35px;
    }
    
    .col2 {
        width: calc(100% - 30px);
    }
    
    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: 25px;
        line-height: 30px;
    }
    .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;
    }
    
    .dispobloc .big {
        font-size: 20px;
        line-height: 25px;
    }
    .dispobloc .btn {
        min-height: inherit;
    }
    .dispobloc .little {
        font-size: 18px;
        line-height: 20px;
    }
    
    #avantages, #prestations, #temoignages {
        padding: 20px 0;
    }
    
    #prestations .col4 p {
        font-size: 20px;
        line-height: 22px;
    }
    
    #assurances {
        padding: 15px 0 0;
    }
    #assurances .col23 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }#assurances .col23 * {
        text-align: center !important;
    }
    #assurances .col23 img {
        max-width: 70px;
        min-width: inherit;
        margin: 0 0 15px;
    }
    #assurances .txtassurances p {
        font-size: 18px;
        line-height: 22px;
    }
    
    #clees {
        padding: 15px 0 0;
    }
    #clees .col1 > * {
        min-width: 80px;
    }
    
    .blocavantages .col4 img {
        height: 110px;
    }
    
    #dispo .bcol {
        min-height: 250px;
    }
    #dispo .dispobloc .little {
        font-size: 20px;
        line-height: 25px;
    }
    
    .temoin .contenttemoin p {
        font-size: 16px;
        line-height: 20px;
        margin: 0 0 5px;
    }
    
}

@media screen and (max-width: 480px) {
    
    #prestations .col4 picture {
        max-width: 200px;
        margin: auto;
    }
    
    .fixedtel {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .fixedtel .title4 {
        text-align: center;
        margin: 0 0 10px;
    }
    .fixedtel .title4 br {
        display: none;
    }
    .fixedtel .btn img {
        margin: auto 5px !important;  
    }
    footer .bcol .col.colblue {
        padding: 30px 15px 130px;
    }
    
}
