/*******************************************************
FONTS
********************************************************/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&display=swap');

/*******************************************************
COLOR
********************************************************/

.white {
    color: white !important;
}

.blue {
    color: #254895 !important;
}

.orange {
    color: #EA6719 !important;
}

.bg-blue {
    background-color: #254895 !important;
}


.bg-orange {
    background-color: #EA6719 !important;
}

.bg-light-orange {
    background-color: #FEF2E6 !important;
}

.gradient-blue {
    background: linear-gradient(180deg, #254895 14.12%, #08396A 100%);
}

.gradient-orange {
    background: linear-gradient(180deg, #EA6719 -5.97%, #EE7602 26.77%, #EB6208 73.53%, #E84E0F 110.95%);
}


/*******************************************************
GENERAL
********************************************************/


body {
    font-weight: 400;
    color: #3e3d40;
    font-size: 18px;
    font-family: Montserrat !important;
}

p, li, label, td {
    font-weight: 400;
    line-height: 1.2;
    font-size: 18px;
}

p {
    line-height: 27px;
}

#back-to-top {
    position: fixed;
    bottom: 7px;
    right: 7px;
    display: none;
    z-index: 200;
    text-align: center;
}

    #back-to-top .far {
        background-color: #EA6719;
        color: white;
        width: 40px;
        height: 40px;
        font-size: 18px;
        line-height: 40px;
        border-radius: 100%;
    }

.container-fluid > .row,
.container-fluid > div > .row {
    padding: 0;
}

.max-width {
    max-width: 1400px;
    margin: 0 auto;
}

.max-width-header,
.outer-max-width {
    max-width: 1580px;
    margin: 0 auto;
}

img {
    max-width: 100%;
}

footer {
    clear: both;
}

small {
    font-size: 12px;
}

strong {
    font-weight: 700;
}

a {
    text-decoration: none;
    display: inline-block;
    color: #254895;
}


    a:hover,
    a:active,
    a:focus,
    button:hover,
    button:active,
    button:focus {
        text-decoration: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    a:hover,
    a:active,
    a:focus {
        color: #EA6719;
    }

.white a:not(.btn) {
    color: white;
}

    .white a:not(.btn):hover,
    .white a:not(.btn):active,
    .white a:not(.btn):focus {
        opacity: 0.7;
    }

p {
    margin: 0;
}


.anchor {
    visibility: hidden;
    height: 255px;
    margin-top: -255px;
}

@media(max-width:991px) {
    .anchor {
        visibility: hidden;
        height: 178px;
        margin-top: -178px;
    }
}

.radius-border {
    border-radius: 5px;
}

.shadow-border {
    box-shadow: 0px 2px 7px 1px rgba(0, 0, 0, 0.30);
}

.bg-perso {
    display: none !important;
}

@media(min-width:992px) {
    .row-cols-lg-7 > * {
        flex: 0 0 auto;
        width: 14.2857142857%;
    }
}

/*******************************************************
TITLE
********************************************************/

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-top: 0;
    font-family: Montserrat;
}

    h2.title {
        font-size: 32px;
        text-transform: uppercase;
        font-weight: 700;
        color: #EA6719;
        padding-bottom: 80px;
        position: relative;
        margin: 0;
    }

        h2.title span {
            font-size: 36px;
            font-weight: 400;
            color: #254895;
            font-family: "Caveat Brush";
        }

        h2.title:before {
            content: "";
            position: absolute;
            background: url(/docs/templates/39/title-underline.svg);
            width: 204px;
            height: 5px;
            background-size: cover;
            background-repeat: no-repeat;
            bottom: 40px;
            left: 0;
        }

    h2.text-center.title:before {
        left: 50%;
        transform: translateX(-50%);
    }

@media(max-width:767px) {

    h2.title {
        font-size: 28px;
        padding-bottom: 60px;
    }

        h2.title:before {
            bottom: 30px;
            width: 199px;
            height: 7px;
        }

        h2.title span {
            display: block;
        }
}


/*******************************************************
BTN
********************************************************/

.btn {
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 18px;
    border-style: solid;
    border-width: 2px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s ease;
}

    .btn .fa-solid {
        margin-right: 10px;
        font-size: 34px;
        vertical-align: middle;
    }

    .btn:hover,
    .btn:active,
    .btn:focus {
        transition: all 0.3s ease;
    }

span.btn:hover,
span.btn:active,
span.btn:focus {
    cursor: default;
}

.btn-secondary-gradient {
    padding: 7px 25px 7px 8px;
    position: relative;
    border: none;
    background-color: transparent;
    vertical-align: middle;
    color: white;
}

    .btn-secondary-gradient:before {
        content: "";
        position: absolute;
        height: calc(100% + 4px);
        width: calc(100% + 4px);
        border-radius: 30px;
        background: linear-gradient(180deg, #EA6719 -5.97%, #EE7602 26.77%, #EB6208 73.53%, #E84E0F 110.95%);
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        z-index: -1;
    }

    .btn-secondary-gradient:hover,
    .btn-secondary-gradient:active,
    .btn-secondary-gradient:focus {
        background-color: white !important;
        color: #EA6719 !important;
    }


.btn.btn-secondary {
    border-color: #EA6719;
    background-color: #EA6719;
    color: white;
}

    .btn.btn-secondary:hover,
    .btn.btn-secondary:active,
    .btn.btn-secondary:focus {
        border-color: #EA6719;
        background-color: transparent;
        color: #EA6719 !important;
    }

.btn.btn-secondary-alt {
    border-color: #EA6719;
    background-color: transparent;
    color: #EA6719;
    padding: 7px 25px 7px 8px;
}

    .btn.btn-secondary-alt:hover,
    .btn.btn-secondary-alt:active,
    .btn.btn-secondary-alt:focus {
        border-color: #EA6719;
        background-color: #EA6719;
        color: white !important;
    }

.btn.btn-default {
    border-color: #254895;
    background-color: #254895;
    color: white;
}

    .btn.btn-default:hover,
    .btn.btn-default:active,
    .btn.btn-default:focus {
        border-color: #254895;
        background-color: transparent;
        color: #254895 !important;
    }

.btn.btn-default-alt {
    border-color: #254895;
    background-color: transparent;
    color: #254895;
}

    .btn.btn-default-alt:hover,
    .btn.btn-default-alt:active,
    .btn.btn-default-alt:focus {
        border-color: #254895;
        background-color: #254895;
        color: white !important;
    }

.btn.btn-default-gradient {
    position: relative;
    border: none;
    background-color: transparent;
    vertical-align: middle;
    color: white;
}

    .btn.btn-default-gradient:before {
        content: "";
        position: absolute;
        height: calc(100% + 4px);
        width: calc(100% + 4px);
        border-radius: 30px;
        background: linear-gradient(180deg, #254895 14.12%, #08396A 100%);
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        z-index: -1;
    }

    .btn.btn-default-gradient:hover,
    .btn.btn-default-gradient:active,
    .btn.btn-default-gradient:focus {
        background-color: white;
        color: #254895 !important;
    }

/*******************************************************
HEADER
********************************************************/

header.fixed {
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: white;
    box-shadow: 0px 2px 19.5px 0px rgba(0,0,0,0.14);
}

header {
    padding: 30px 0;
}

    header img {
        max-width: 315px;
    }

@media(max-width:768px) {
    header img {
        max-width: 265px;
    }
}

header .magasin {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: #EA6719;
}

@media(min-width:992px) {
    header .info-mag {
        padding-left: 50px;
    }
}

@media(min-width:992px) and (max-width:1280px) {
    header img {
        max-width: 225px;
    }

    header .info-mag {
        padding-left: 23px;
    }
}

header .magasin span.ville {
    color: #254895;
}


header .magasin span:not(.ville) {
    height: 27px;
    display: inline-block;
    transition: all 0.3s ease;
}


@media(max-width:991px) {

    header .info-mag {
        margin: 20px 0;
    }

    header .magasin span.ville {
        display: block;
    }

    header.fixed .magasin span:not(.ville) {
        height: 0;
        display: block;
        opacity: 0;
        transition: all 0.3s ease;
    }
}

@media(max-width:768px) {

    header .btn i {
        display: none;
    }
}

header .baseline {
    margin-top: 5px;
}

    header .baseline span {
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        position: relative;
        text-transform: uppercase;
        padding: 0 10px;
    }

        header .baseline span + span:before {
            content: "";
            position: absolute;
            width: 7px;
            height: 7px;
            border-radius: 100%;
            background-color: #EA6719;
            left: -5px;
            top: 50%;
            transform: translateY(-50%);
        }

        header .baseline span:first-child {
            padding-left: 0;
        }


@media(max-width:768px) {
    header {
        padding-bottom: 20px;
    }

        header .btn {
            font-size: 15px;
            margin-bottom: 10px;
            padding: 12px 13px !important;
        }
}

/*******************************************************
FOOTER
********************************************************/

footer {
    background-color: #254895;
    color: white;
    padding: 40px 0;
}

    footer .fiche-magasin img {
        max-width: 240px;
    }

    footer .fiche-magasin h2 {
        font-size: 20px;
        position: relative;
        padding-top: 50px;
        font-weight: 600;
    }

        footer .fiche-magasin h2:before {
            content: "";
            position: absolute;
            background: url(/docs/templates/39/title-underline.svg);
            width: 204px;
            height: 5px;
            background-size: cover;
            background-repeat: no-repeat;
            top: 25px;
        }

        footer .fiche-magasin h2 span {
            font-weight: 800;
            text-transform: uppercase;
        }

    footer .fiche-magasin p {
        margin-top: 12px;
        position: relative;
        padding-left: 25px;
    }

        footer .fiche-magasin p i {
            position: absolute;
            left: 0;
            top: 5px;
        }

        footer .fiche-magasin p a {
            color: white;
        }

    footer .reseau .fa-brands,
    footer .reseau .fab {
        font-size: 20px;
        color: #254895;
        height: 45px;
        width: 45px;
        line-height: 45px;
        text-align: center;
        background-color: white;
        border-radius: 100%;
        margin-right: 15px;
        transition: all .3s ease;
    }

    footer .reseau a:hover .fa-brands,
    footer .reseau a:hover .fab {
        color: white;
        background-color: rgb(255, 255,255, 0.2);
        transition: all .3s ease;
    }

    footer .navigation ul {
        padding: 0;
        margin: 0;
    }

        footer .navigation ul li {
            list-style: none;
        }

            footer .navigation ul li a {
                color: white;
                padding: 0 20px;
                font-size: 16px;
            }

            footer .navigation ul li:hover {
                opacity: 0.6;
            }

    footer .chalandise {
        padding-top: 30px;
    }

        footer .chalandise h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
        }

            footer .chalandise h3 + p {
                font-size: 14px;
                text-align: justify;
                line-height: 22px;
                margin-bottom: 30px;
            }

    footer .copyright-footer p {
        font-size: 14px;
    }

        footer .copyright-footer p img {
            font-size: 14px;
            margin: 0 3px 0 5px;
            transform: translateY(-3px);
        }

    footer .copyright {
        display: none;
    }

@media(min-width:768px) {
    footer .navigation ul li {
        display: inline-block;
        position: relative;
    }

        footer .navigation ul li + li:before {
            content: "";
            position: absolute;
            width: 7px;
            height: 7px;
            border-radius: 100%;
            background-color: #EA6719;
            left: 0px;
            top: 50%;
            transform: translateY(-50%);
        }
}

@media(max-width:767px) {
    footer .navigation ul li {
        margin: 5px 0;
    }


    footer .reseau .fa-brands,
    footer .reseau .fab {
        margin: 0 7px !important;
    }
}



/*******************************************************
CONTENT
********************************************************/

/* SLIDE */

.carousel .carousel-indicators li {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #254895;
    border: none;
    opacity: 1;
    margin: 0 3px;
}

    .carousel .carousel-indicators li::marker {
        content: none;
        font-size: 0;
    }

    .carousel .carousel-indicators li.active {
        background-color: #EA6719 !important;
    }

.main-carousel .carousel-control-next,
.main-carousel .carousel-control-prev {
    width: 7%;
    opacity: 1;
    font-size: 50px;
}

.main-carousel .carousel {
    max-width: 1920px;
    margin: 0 auto;
}



/* PRESENTATION MAGASIN */
.presentation {
    position: relative;
    padding-bottom: 10px;
    overflow: hidden;
}

    .presentation:before {
        content: "";
        position: absolute;
        background: url(/docs/templates/39/color-bar-1.svg);
        width: 386px;
        height: 291px;
        background-repeat: no-repeat;
        top: 56px;
        left: -2px;
        z-index: -1;
    }

    .presentation:after {
        content: "";
        position: absolute;
        background: url(/docs/templates/39/color-bar-2.svg);
        width: 308px;
        height: 276px;
        background-repeat: no-repeat;
        top: -31px;
        right: -2px;
        z-index: -1;
    }

    .presentation .title {
        padding: 80px 0 140px 0;
        text-transform: uppercase;
        text-align: center;
    }

        .presentation .title p {
            font-size: 22px;
            font-weight: 500;
            color: #254895;
        }

        .presentation .title h1 {
            font-size: 60px;
            color: #254895;
            margin: 0;
            position: relative;
            font-weight: 800;
        }

            .presentation .title h1 span {
                color: white;
                font-size: 46px;
                font-weight: 800;
                padding: 5px 15px;
                position: absolute;
                white-space: nowrap;
                background-color: #EA6719;
                border-radius: 50px;
                display: inline-block;
                left: 50%;
                transform: translateX(-50%) rotate(-1.454deg);
                bottom: -60px;
                z-index: 1;
            }

    .presentation .cta {
        padding: 50px 0;
    }

    .presentation .container-horaire {
        padding: 30px;
        border-radius: 5px;
        position: relative;
        background-color: #E6EEF6;
    }

        .presentation .container-horaire .horaires-day p:not(.horaire) {
            font-size: 18px;
            font-weight: 700;
            color: #254895;
            margin-bottom: 10px;
        }

        .presentation .container-horaire .horaires-day p.horaire {
            margin-left: 25px;
        }

.container-horaire a {
    position: absolute;
    top: 67px;
    left: 30px;
    color: #254895;
    text-decoration: none;
    transform: rotate(180deg);
    transition: all .3s ease;
}

    .container-horaire a.collapsed {
        transform: rotate(0deg);
        transition: all .3s ease;
    }


.presentation .container-horaire .card {
    background-color: transparent;
    border: none;
}

.presentation .container-horaire .horaires {
    margin: 0;
    padding-left: 23px;
    margin-top: 10px;
}

    .presentation .container-horaire .horaires li {
        list-style: none;
        line-height: 1.5;
    }

        .presentation .container-horaire .horaires li.today {
            font-weight: 600;
            color: #EA6719;
        }

        .presentation .container-horaire .horaires li.closed {
            color: #EA4335;
        }


.presentation .container-horaire .info-supp {
    font-size: 18px;
    font-weight: 500;
    color: #254895;
    margin-top: 10px;
}

    .presentation .container-horaire .info-supp i {
        margin-right: 7px;
    }

.presentation .horaires-supp {
    padding: 30px;
    border-radius: 5px;
    margin-top: 50px;
    background-color: #FEF2E6;
}

    .presentation .horaires-supp h2 {
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        position: relative;
    }

    .presentation .horaires-supp h2 {
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        position: relative;
        padding-left: 55px;
        color: #EA6719;
        margin-bottom: 30px;
    }

        .presentation .horaires-supp h2:before {
            content: "\f017";
            position: absolute;
            font-family: 'Font Awesome 6 Pro';
            font-size: 40px;
            font-weight: 300;
            left: 0;
            top: -13px;
            color: #EA6719;
        }

.presentation .horaires-supp-liste {
    margin-top: 10px;
    padding: 0;
    margin-bottom: 0;
}

    .presentation .horaires-supp-liste li {
        line-height: 1.5;
        color: #254895;
        font-weight: 600;
        list-style: none;
    }

        .presentation .horaires-supp-liste li.closed {
            color: #EA4335;
        }

.presentation .carousel {
    box-shadow: 0px 2px 7px 1px rgba(0, 0, 0, 0.30);
    border-radius: 5px;
}

    .presentation .carousel img {
        border-radius: 5px;
    }

@media(max-width:767px) {

    .presentation:before {
        width: 171px;
        height: 291px;
        top: 22px;
        left: -89px;
        background-size: 100%;
    }

    .presentation:after {
        width: 145px;
        height: 276px;
        top: -31px;
        right: -79px;
        background-size: 100%;
    }

    .presentation .title {
        padding: 80px 0 100px 0;
    }

        .presentation .title p {
            font-size: 20px;
        }

        .presentation .title h1 {
            font-size: 40px;
        }

            .presentation .title h1 span {
                font-size: 26px;
                bottom: -37px;
            }

    .presentation .cta {
        padding: 30px 0;
        display: inline-block;
    }

        .presentation .cta a + a {
            margin-top: 15px;
        }

    .presentation .container-horaire {
        padding: 16px;
    }

    .container-horaire a {
        top: 79px;
        left: 17px;
    }

    .presentation .container-horaire .horaires-day p:not(.horaire) span {
        display: block;
    }

    .presentation .horaires-supp h2:before {
        top: -5px;
    }
}


@media(min-width:768px) and (max-width:991px) {
    .presentation:before {
        width: 201px;
        background-size: 100%;
    }

    .presentation:after {
        width: 194px;
        top: -31px;
        right: -50px;
        background-size: 100%;
    }

    .presentation .title {
        padding: 80px 0 120px 0;
    }

        .presentation .title h1 {
            font-size: 50px;
        }

            .presentation .title h1 span {
                font-size: 38px;
                bottom: -48px;
            }
}


/* INFOS PRATIQUE */

.info-pratique {
    padding: 60px 0;
}

    .info-pratique h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        margin-top: 35px;
    }

    .info-pratique .adresse {
        position: relative;
        padding-left: 45px;
    }

        .info-pratique .adresse i {
            position: absolute;
            left: 0;
            top: 6px;
            font-size: 36px;
            color: #EA6719;
        }

    .info-pratique .gps {
        display: flex !important;
        margin-top: 20px;
    }

        .info-pratique .gps > .row {
            justify-content: start !important;
        }

        .info-pratique .gps a {
            transition: all .3s ease;
        }

        .info-pratique .gps i {
            font-size: 34px;
            color: #254895;
            text-align: center;
            width: 62px;
            height: 62px;
            line-height: 62px;
            border-radius: 100%;
            box-shadow: inset 0 0 0 62px #E6EEF6;
            transition: all .3s ease;
        }

        .info-pratique .gps p {
            font-size: 16px;
            font-weight: 700;
            color: #254895;
            text-transform: uppercase;
            margin-top: 5px;
            text-align: center;
        }

        .info-pratique .gps a:hover i {
            box-shadow: inset 0 0 0 4px #E6EEF6;
            transition: all .3s ease;
        }

@media(max-width:767px) {
    .info-pratique {
        padding: 30px 0;
    }
}

/* UNIVERS */

.univers {
    padding: 60px 0;
}

    .univers .liste {
        position: relative;
    }

@media(min-width:992px) {
    .univers .liste hr {
        position: absolute;
        width: 90%;
        top: 85px;
        right: 0;
        left: 0;
        margin: 0 auto;
        z-index: -1;
        height: 6px;
        opacity: 1;
        border: none;
        background: linear-gradient(to right, #97B83F 0, #97B83F 50%, #ffffff 50%, #ffffff 100%), transparent;
        background-position: left;
        background-size: 35px 6px;
        background-repeat: repeat-x;
    }
}

.univers img {
    width: 90px;
    margin-top: 40px;
}

    .univers img + h3 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

.univers h3 + p {
    font-weight: 300;
    margin-top: 5px;
}

@media(max-width:767px) {
    .univers {
        padding: 30px 0;
    }

        .univers .cta {
            display: inline-block;
        }

            .univers .cta a + a {
                margin-top: 15px;
            }
}


/* ETAPE */

.etape-vente {
    background-color: #EFEFEE;
    padding: 60px 100px;
    position: relative;
    z-index: 0;
}

    .etape-vente:before {
        content: "";
        position: absolute;
        background: url(/docs/templates/39/fond-picto.svg);
        background-size: cover;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }

@media(max-width:991px) {
    .etape-vente {
        padding: 30px 15px;
    }
}

.etape-vente h2:not(.title) {
    text-align: center;
    color: #254895;
    text-transform: uppercase;
    display: inline-block;
    font-size: 55px;
    font-family: "Caveat Brush";
    position: relative;
}

    .etape-vente h2:not(.title) span {
        text-align: center;
        color: #3e3d40;
        text-transform: initial;
        font-weight: 700;
        display: block;
        font-size: 30px;
        font-family: Montserrat;
    }

    .etape-vente h2:not(.title) img {
        position: absolute;
        top: 50%;
    }

        .etape-vente h2:not(.title) img.right {
            right: -200px;
        }

        .etape-vente h2:not(.title) img.left {
            left: -200px;
            transform: scaleX(-1);
        }

.etape-vente .choix {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

@media(min-width:992px) {
    .etape-vente .choix .content {
        padding: 0 60px;
    }
}

@media(max-width:991px) {
    .etape-vente .choix .content {
        padding: 20px 0;
    }

    .etape-vente .choix {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}

.etape-vente .content h3 {
    color: #EA6719;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 25px;
}

    .etape-vente .content h3 span {
        color: #254895;
        font-weight: 400;
        font-family: "Caveat Brush";
        font-size: 28px;
    }

@media(min-width:1200px) {
    .etape-vente .liste {
        padding: 0 120px;
    }
}

@media(max-width:767px) {
    .etape-vente .content h3 span {
        display: block;
    }
}


.etape-vente .liste {
    position: relative;
}

@media(min-width:992px) {
    .etape-vente .liste:after {
        content: "";
        position: absolute;
        background: url(/docs/templates/39/fond-etape.svg);
        background-size: auto;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background-repeat: no-repeat;
        background-position: top center;
    }
}


.etape-vente .liste .etape {
    background-color: white;
    border: 4px solid #EAEAEA;
    border-radius: 20px;
    padding: 20px 60px;
    margin: 50px 0;
    position: relative;
}

@media(max-width:991px) {

    .etape-vente .liste .etape {
        margin: 20px 0;
        padding: 30px;
    }

        .etape-vente .liste .etape img {
            margin-bottom: 15px;
        }
}

@media(min-width:992px) {

    .etape-vente .liste .etape img {
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
    }

    .etape-vente .liste .etape {
        padding-left: 170px;
    }
}

.etape-vente .liste .etape h3 {
    font-size: 22px;
    font-weight: 600;
    color: #254895;
    margin-bottom: 15px;
}



/* AVIS CLIENT */
.avis-client {
    padding-top: 80px;
}

    .avis-client h2 {
        padding: 0;
    }

        .avis-client h2:before {
            content: none;
        }

        .avis-client h2 + p {
            font-size: 20px;
            font-weight: 500;
            text-transform: uppercase;
            color: #254895;
            margin-bottom: 45px;
        }

    .avis-client .total {
        text-align: center;
        line-height: normal;
        display: inline-block;
        padding: 15px 18px;
        color: white;
        position: relative;
    }

        .avis-client .total:before {
            content: "";
            position: absolute;
            background: url(/docs/templates/39/blob-avis.svg);
            background-size: cover;
            height: 209px;
            width: 233px;
            top: -32px;
            left: -43px;
            z-index: -1;
            background-repeat: no-repeat;
            background-position: center;
        }

.stars-inner::before {
    color: #FBBC05;
}

.stars-outer {
    color: white;
}

.avis-client .total span {
    display: block;
}

.avis-client .total .score {
    font-size: 56px;
    margin-bottom: 5px;
    font-weight: 700;
}

.avis-client .total .nb {
    font-size: 14px;
}


.avis-client .avis {
    border-radius: 5px;
    padding: 30px;
    border: 2px solid #E7E7E7;
    height: 100%;
}


    .avis-client .avis .name {
        font-weight: 700;
        display: inline-block;
        margin-right: 5px;
        position: relative;
        margin-bottom: 10px;
        padding-left: 60px;
    }

        .avis-client .avis .name img {
            position: absolute;
            left: 0;
            max-width: 50px;
        }

        .avis-client .avis .name span {
            font-weight: 300;
            display: block;
        }

    .avis-client .avis .star {
        display: inline-block;
        vertical-align: top;
        line-height: 1.4;
    }

        .avis-client .avis .star .fas {
            font-size: 13px;
            color: #ffc100;
        }

@media(max-width:767px) {
    .avis-client h2 + p {
        margin-bottom: 25px;
    }
}

/* VIDE MAISON */

.info-vide-maison {
    padding: 60px 0 20px 0;
}

    .info-vide-maison .hightlight {
        font-size: 24px;
        font-weight: 700;
    }

        .info-vide-maison .hightlight span {
            color: #EA6719;
            text-transform: uppercase;
        }

    .info-vide-maison .btn-contact {
        position: relative;
        font-size: 28px;
        color: white;
        font-family: "Caveat Brush";
        text-transform: uppercase;
        margin-top: 45px;
        padding: 15px 20px;
        text-decoration: none !important;
        transition: all .3s ease;
        -webkit-animation-name: btnBounce;
        animation-name: btnBounce;
        -webkit-animation-duration: 5s;
        animation-duration: 5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: cubic-bezier(.28,.84,.42,1);
        animation-timing-function: cubic-bezier(.28,.84,.42,1);
    }

        .info-vide-maison .btn-contact:before,
        .info-vide-maison .btn-contact:after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            transform: skewX(-10deg);
            z-index: -1;
            border-radius: 12px;
        }

        .info-vide-maison .btn-contact:before {
            transform: skewX(-10deg) rotate(353deg) translateX(-50%);
            background-color: #EA6719;
            width: 90%;
            left: 50%;
            transform-origin: left;
            transition: all .3s ease;
        }

        .info-vide-maison .btn-contact:after {
            background-color: #254895;
        }

        .info-vide-maison .btn-contact:hover,
        .info-vide-maison .btn-contact:active,
        .info-vide-maison .btn-contact:focus {
            color: #EE7602;
            transition: all .3s ease;
        }

            .info-vide-maison .btn-contact:hover:before,
            .info-vide-maison .btn-contact:active:before,
            .info-vide-maison .btn-contact:focus:before {
                transform: skewX(-10deg) rotate(360deg) translateX(-50%);
                transition: all .3s ease;
            }


@keyframes btnBounce {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }

    3% {
        -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
        transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
    }

    8% {
        -webkit-transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
        transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
    }

    15% {
        -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
        transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
    }

    25% {
        -webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em));
        transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em));
    }

    30% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }

    35% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }

    35%,100% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }
}

@media(max-width:991px) {
    .info-vide-maison .btn-contact {
        margin-bottom: 45px;
    }
}

.info-vide-maison ul {
    padding: 0;
    margin: 0;
}

    .info-vide-maison ul li {
        list-style: none;
        position: relative;
        padding-left: 45px;
    }

        .info-vide-maison ul li + li {
            margin-top: 40px;
        }

        .info-vide-maison ul li:before {
            content: "\f00c";
            position: absolute;
            font-family: 'Font Awesome 6 Pro';
            font-size: 18px;
            color: #EA6719;
            font-weight: 700;
            background-color: #FBE1D1;
            height: 30px;
            width: 30px;
            border-radius: 100%;
            line-height: 30px;
            text-align: center;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .info-vide-maison ul li span {
            font-weight: 700;
            color: #254895;
        }

/* ESTIMATION */

.estimation {
    padding: 60px 0;
}

    .estimation h3 {
        font-size: 18px;
        color: #254895;
        margin-top: 10px;
        font-weight: 700;
    }

@media(max-width:767px) {
    .estimation {
        padding: 30px 0;
    }


        .estimation .cta a + a {
            margin-top: 15px;
        }
}

/* SERVICES */

.services {
    background-color: #EAEDF5;
    padding: 20px 50px;
}

    .services .content {
        padding: 30px 0;
    }

        .services .content p {
            font-weight: 700;
            margin-top: 10px;
            line-height: 1.2;
        }

        @media(max-width:767px){
            .services {
                padding: 60px 20px;
            }
        }

/*******************************************************
MAPS
********************************************************/
@media(min-width:992px) {
    .info-pratique .mapContainer, .info-pratique #plan-acces, .info-pratique .weGmap {
        height: 100% !important;
    }
}

.info-pratique .mapContainer {
    border-radius: 5px;
}

.gm-style .gm-style-iw-c {
    padding: 0;
    max-height: 290px !important;
}

.gm-style .gm-style-iw-d {
    max-height: 290px !important;
}


.gm-style .gm-style-iw-t::after {
    height: 0;
}

.gm-style-iw .infowindows {
    font-size: 16px;
    padding: 15px 15px 5px 15px;
    font-weight: 500;
    line-height: 1.3;
    font-family: Montserrat !important;
}

.infowindows [itemprop=name] {
    margin-bottom: 10px;
    font-size: 18px;
    color: #254895;
}


    .infowindows [itemprop=name] b {
        font-weight: 700 !important;
    }

.infowindows .map-phone-number,
.infowindows .map-opening-time {
    margin: 10px 0;
    position: relative;
    padding-left: 25px;
}

    .infowindows .map-phone-number:before,
    .infowindows .map-opening-time:before {
        position: absolute;
        font-family: 'Font Awesome 6 Pro';
        font-weight: 400;
        color: #254895;
        left: 0;
        top: 1px;
    }

    .infowindows .map-phone-number:before {
        content: "\f095";
    }

    .infowindows .map-opening-time:before {
        content: "\f017";
    }


.infowindows .map-phone-number {
    color: #EA6719;
    font-weight: 700;
    font-size: 14px;
}

.infowindows .map-opening-time {
    color: #254895;
    font-weight: 600;
    font-size: 15px;
}


.infowindows .map-bt-itineraire {
    border: 1px solid #254895;
    color: #254895;
    font-size: 16px;
    margin-top: 7px;
    background-color: transparent;
    display: inline-block;
    padding: 6px 20px;
    font-weight: 500;
    border-radius: 25px;
    transition: background-color .3s ease, color .3s ease;
}

    .infowindows .map-bt-itineraire:hover,
    .infowindows .map-bt-itineraire:active,
    .infowindows .map-bt-itineraire:focus {
        border: 1px solid #254895;
        color: white;
        background-color: #254895;
        transition: background-color .3s ease, color .3s ease;
    }

    .infowindows .map-bt-itineraire:not(:disabled):not(.disabled).active:focus,
    .infowindows .map-bt-itineraire:not(:disabled):not(.disabled):active:focus {
        outline: none;
        box-shadow: none;
    }

    .infowindows .map-bt-itineraire:not(:disabled):not(.disabled).active,
    .infowindows .map-bt-itineraire:not(:disabled):not(.disabled):active {
        border-color: #254895;
        color: white;
        background-color: #254895;
        outline: none;
        box-shadow: none;
    }

/*******************************************************
FORM
********************************************************/

.contact {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


.form-container {
    padding: 60px 110px;
    border-radius: 5px;
    box-shadow: 0px 2px 7px 1px rgba(0, 0, 0, 0.30);
    background-color: white;
    position: relative;
}

    .form-container h2 {
        font-size: 32px;
        font-weight: 800;
        color: #254895;
        text-transform: uppercase;
    }

        .form-container h2 span {
            background-color: #EA6719;
            color: white;
            padding: 3px 20px;
            display: inline-block;
            transform: rotate(357deg) translateY(-7px);
            border-radius: 50px;
        }

        .form-container h2 + p {
            margin: 40px 0;
        }

.contact .form-group label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-control {
    border-radius: 32px;
    background: #F1F1F1;
    border: none;
    padding: 10px 15px;
}

textarea.form-control {
    border-radius: 15px !important;
    min-height: 180px;
}

.form-control:focus,
.form-control:active {
    background: #F1F1F1;
    box-shadow: inset 0 0 0 2px #EA6719;
}

.input-validation-error {
    background: #FFDCDF;
    box-shadow: inset 0 0 0 2px #DB737D;
}


.form-control:-webkit-autofill {
    box-shadow: inset 0px 4px 0 0px #F1F1F1, inset 0 0px 0 40px #F1F1F1 !important;
    transition: none;
}

.contact .form-control[type="checkbox"] {
    display: none;
}

    .contact .form-control[type="checkbox"] + label {
        font-weight: 400;
        position: relative;
        padding-left: 30px;
        font-size: 18px;
        line-height: 1.2;
        margin: 10px 0 20px 0;
    }

        .contact .form-control[type="checkbox"] + label:before {
            content: "\f0c8";
            position: absolute;
            font-family: 'Font Awesome 6 Pro';
            font-weight: 500;
            left: 0;
            color: #EA6719;
            font-size: 19px;
            top: -1px;
        }

        .contact .form-control[type="checkbox"] + label::after {
            content: "\f14a";
            position: absolute;
            font-family: 'Font Awesome 6 Pro';
            font-weight: 500;
            left: 0px;
            font-size: 19px;
            top: -1px;
            color: #EA6719;
            opacity: 0;
        }

    .contact .form-control[type="checkbox"]:checked + label:after {
        opacity: 1;
    }

    .contact .form-control[type="checkbox"]:checked + label:before {
        opacity: 0;
    }

.grecaptcha-badge {
    margin: 0 auto;
}

@media(max-width:991px) {

    .contact {
        padding: 50px 0;
    }


    .form-container {
        padding: 40px 25px;
    }
}

@media(min-width:992px) {
    .form-container:before {
        content: "";
        position: absolute;
        background: url(/docs/templates/39/color-bar-3.svg);
        width: 497px;
        height: 422px;
        background-repeat: no-repeat;
        top: 137px;
        left: -344px;
        z-index: -1;
    }

    .form-container:after {
        content: "";
        position: absolute;
        background: url(/docs/templates/39/color-bar-4.svg);
        width: 497px;
        height: 1084px;
        background-repeat: no-repeat;
        bottom: 45px;
        right: -294px;
        z-index: -1;
    }
}

/*******************************************************
MODAL
********************************************************/

.modal .modal-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: #254895;
    line-height: 1.2;
}

.modal button.close {
    background-color: transparent;
    float: right;
    line-height: 1;
}

    .modal button.close span {
        font-size: 29px;
    }

.modal .modal-body p {
    padding-top: 25px;
}


.modal#cookiesModal {
    font-size: 16px;
}


    .modal#cookiesModal .form-group + .form-group {
        margin-top: 15px;
    }

    .modal#cookiesModal .btn {
        padding: 12px 13px !important;
        font-size: 15px;
        border: 1px solid white;
    }

    .modal#cookiesModal .notActive {
        background-color: #efefef;
    }


    .modal#cookiesModal h2,
    .modal#cookiesModal h3 {
        font-size: 24px;
        margin-top: 20px;
        color: #EA6719;
    }

.modal-footer {
    border: none;
}

.weCookieBar .btn {
    padding: 12px 13px !important;
    font-size: 15px;
    margin-top: 5px;
}

    .weCookieBar .btn:not(#weCookieButton1):hover {
        border-color: white;
        color: white !important;
    }

/*******************************************************
404
********************************************************/
.page-error {
    text-align: center;
}

    .page-error h1 {
        text-align: center;
        font-size: 116px;
        color: #254895;
        position: relative;
        font-weight: 600;
        line-height: 1;
        margin-top: 60px;
        margin-bottom: 80px;
    }

        .page-error h1 span {
            color: white;
            font-size: 60px;
            font-weight: 700;
            border-radius: 50px;
            padding: 5px 15px;
            position: absolute;
            white-space: nowrap;
            background-color: #EA6719;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%) rotate(-1.454deg);
            bottom: -60px;
            z-index: 1;
        }

    .page-error p {
        padding: 30px;
    }

    .page-error a {
        border: 2px solid #254895;
        color: #254895;
        font-size: 18px;
        margin-top: 7px;
        background-color: transparent;
        display: inline-block;
        padding: 15px 25px;
        font-weight: 500;
        line-height: 1;
        margin-bottom: 70px;
        border-radius: 25px;
        transition: background-color .3s ease, color .3s ease;
    }

        .page-error a:hover,
        .page-error a:active,
        .page-error a:focus {
            border: 2px solid #254895;
            color: white;
            background-color: #254895;
            transition: background-color .3s ease, color .3s ease;
        }



/*******************************************************
MENTIONS LEGALES
********************************************************/

.mentions-legales h1 {
    font-size: 40px;
    color: #254895;
    margin-top: 0;
    position: relative;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 20px;
}

.mentions-legales h2 {
    font-size: 30px;
    font-weight: 600;
    color: #ea6719;
}
