/*******************************************************
FONTS
********************************************************/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/*******************************************************
COLOR
********************************************************/

.white {
    color: white !important;
}

.blue {
    color: #004F9F !important;
}

.orange {
    color: #EF7D00 !important;
}

.bg-blue {
    background-color: #004F9F !important;
}

.bg-light-blue {
    background-color: #E6EEF6 !important;
}

.bg-orange {
    background-color: #EF7D00 !important;
}

.bg-light-orange {
    background-color: #FEF2E6 !important;
}

.gradient-blue {
    background: linear-gradient(180deg, #004F9F 14.12%, #08396A 100%);
}

.gradient-orange {
    background: linear-gradient(180deg, #EF7D00 -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: #E84E0F;
        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: #004F9F;
}


    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: #EF7D00;
    }

.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: 800;
        color: #004F9F;
        padding-bottom: 80px;
        position: relative;
        margin: 0;
    }

        h2.title span {
            font-weight: 600;
            background: linear-gradient(180deg, #EF7D00 -5.97%, #EE7602 26.77%, #EB6208 73.53%, #E84E0F 110.95%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        h2.title:before {
            content: "";
            position: absolute;
            background: url(/docs/templates/35/title-underline.svg);
            width: 250px;
            height: 8px;
            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;
        }
}


/*******************************************************
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: 15px;
        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, #EF7D00 -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: #EF7D00 !important;
    }


.btn.btn-secondary {
    border-color: #EF7D00;
    background-color: #EF7D00;
    color: white;
}

    .btn.btn-secondary:hover,
    .btn.btn-secondary:active,
    .btn.btn-secondary:focus {
        border-color: #EF7D00;
        background-color: transparent;
        color: #EF7D00 !important;
    }

.btn.btn-secondary-alt {
    border-color: #EF7D00;
    background-color: transparent;
    color: #EF7D00;
    padding: 7px 25px 7px 8px;
}

    .btn.btn-secondary-alt:hover,
    .btn.btn-secondary-alt:active,
    .btn.btn-secondary-alt:focus {
        border-color: #EF7D00;
        background-color: #EF7D00;
        color: white !important;
    }

.btn.btn-default {
    border-color: #004F9F;
    background-color: #004F9F;
    color: white;
}

    .btn.btn-default:hover,
    .btn.btn-default:active,
    .btn.btn-default:focus {
        border-color: #004F9F;
        background-color: transparent;
        color: #004F9F !important;
    }

.btn.btn-default-alt {
    border-color: #004F9F;
    background-color: transparent;
    color: #004F9F;
}

    .btn.btn-default-alt:hover,
    .btn.btn-default-alt:active,
    .btn.btn-default-alt:focus {
        border-color: #004F9F;
        background-color: #004F9F;
        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, #004F9F 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: #004F9F !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: #EF7D00;
}

@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: #004F9F;
}


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;
    }
}

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: #EF7D00;
            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;
        }

        header .btn-secondary-gradient {
            padding: 7px 14px 4px 8px !important;
            padding: 12px 14px;
        }

        header .btn-default-alt {
            padding: 12px 13px !important;
        }


        header .btn-secondary-gradient i {
            font-size: 27px !important;
            margin-right: 7px !important;
        }
}

/*******************************************************
FOOTER
********************************************************/

footer {
    background-color: #004F9F;
    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/35/title-underline.svg);
            width: 180px;
            height: 6px;
            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: #004F9F;
        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: #EF7D00;
            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: #F1F1F1;
    border: none;
    opacity: 1;
    margin: 0 3px;
}

    .carousel .carousel-indicators li::marker {
        content: none;
        font-size:0;
    }

    .carousel .carousel-indicators li.active {
        background-color: #EF7D00 !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/35/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/35/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: #004F9F;
        }

        .presentation .title h1 {
            font-size: 60px;
            color: #004F9F;
            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: #EF7D00;
                display: inline-block;
                left: 50%;
                transform: translateX(-50%) rotate(-1.454deg);
                bottom: -60px;
                z-index: 1;
                box-shadow: 6px 3px 16px 0px rgba(0, 79, 159, 0.4);
            }

    .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: #004F9F;
            margin-bottom: 10px;
        }

        .presentation .container-horaire .horaires-day p.horaire {
            margin-left: 25px;
        }

.container-horaire a {
    position: absolute;
    top: 67px;
    left: 30px;
    color: #004F9F;
    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: #ef7d00;
        }

        .presentation .container-horaire .horaires li.closed {
            color: #EA4335;
        }


.presentation .container-horaire .info-supp {
    font-size: 18px;
    font-weight: 500;
    color: #004F9F;
    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: #EF7D00;
        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: #EF7D00;
        }

.presentation .horaires-supp-liste {
    margin-top: 10px;
    padding: 0;
    margin-bottom: 0;
}

    .presentation .horaires-supp-liste li {
        line-height: 1.5;
        color: #004F9F;
        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: #EF7D00;
        }

    .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: #004F9F;
            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: #004F9F;
            text-transform: uppercase;
            margin-top: 5px;
            text-align: center;
        }

        .info-pratique .gps a:hover i {
            box-shadow: inset 0 0 0 2px #E6EEF6;
            transition: all .3s ease;
        }

@media(max-width:767px) {
    .info-pratique {
        padding: 30px 0;
    }
}

/* UNIVERS */

.univers {
    padding: 60px 0;
}

    .univers img {
        width: 70px;
        margin-top: 40px;
    }

        .univers img + p {
            font-size: 14px;
            font-weight: 500;
            margin-top: 5px;
        }


@media(max-width:767px) {
    .univers {
        padding: 30px 0;
    }

        .univers .cta {
            display: inline-block;
        }

            .univers .cta a + a {
                margin-top: 15px;
            }
}

/* SERVICES */

.services {
    padding-bottom: 60px;
}

    .services .liste {
        margin-top: 30px;
    }

        .services .liste img {
            max-width: 100px;
            max-height: 57px;
        }

        .services .liste p {
            font-size: 20px;
            font-weight: 500;
            margin-top: 5px;
        }

@media(min-width:992px) {
    .services .liste {
        padding: 0 50px;
    }
}

@media(max-width:991px) {
    .services {
        padding-bottom: 30px;
    }

        .services .liste p {
            margin-bottom: 25px;
        }
}

/* CARTE FIDELITE */

.fidelite {
    padding: 30px 70px;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .fidelite:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(/docs/templates/35/fond-picto-univers.svg);
        background-size: cover;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .fidelite:after {
        content: "";
        position: absolute;
        width: 686px;
        height: 377px;
        background: url(/docs/pages/30/fond-carte-fidelite.avif);
        background-size: cover;
        bottom: 0;
        right: 0;
        z-index: -1;
    }

    .fidelite h2 {
        font-size: 40px;
        font-weight: 800;
        text-transform: uppercase;
        display: inline-block;
        position: relative;
        padding-bottom: 80px;
    }

        .fidelite h2 span {
            background-color: #EF7D00;
            font-size: 36px;
            padding: 3px 20px;
            display: inline-block;
            transform: rotate(353deg) translateY(-5px);
            box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.52);
        }

        .fidelite h2:before {
            content: "";
            position: absolute;
            background: url(/docs/templates/35/title-underline-blanc.svg);
            width: 250px;
            height: 8px;
            background-size: cover;
            background-repeat: no-repeat;
            bottom: 40px;
            left: 0;
        }

@media(min-width:768px) {
    .fidelite h2:after {
        content: "";
        position: absolute;
        background: url(/docs/templates/35/cash-bag.svg);
        width: 210px;
        height: 158px;
        background-size: cover;
        background-repeat: no-repeat;
        top: -4px;
        right: -240px;
    }
}

@media(min-width:768px) and (max-width:991px) {

    .fidelite h2 {
        display: block;
    }

        .fidelite h2:after {
            right: -159px;
        }
}

.fidelite p span {
    font-size: 24px;
    font-weight: 700;
}

@media(max-width:991px) {
    .fidelite {
        padding: 30px 15px;
        padding-bottom: 209px;
    }


        .fidelite:after {
            top: auto;
            bottom: 0;
            background-size: 100%;
            width: 379px;
            height: 206px;
            transform: unset;
        }

        .fidelite h2 {
            font-size: 24px;
            margin: 0;
            padding-bottom: 60px;
        }

            .fidelite h2 span {
                font-size: 23px;
                padding: 3px 10px;
            }

            .fidelite h2:before {
                bottom: 30px;
            }

            .fidelite h2:after {
            }

        .fidelite p {
            font-size: 16px;
        }

            .fidelite p span {
                font-size: 20px;
            }
}

@media(min-width:768px) and (max-width:991px) {
    .fidelite:after {
        top: auto;
        bottom: 0;
        background-size: 100%;
        width: 467px;
        height: 256px;
        transform: unset;
    }
}

/* 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: #004F9F;
            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,
        .avis-client .total:after {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            border-radius: 18px;
        }

.stars-inner::before {
    color: #ffffff;
}

.stars-outer {
    color: rgb(255,255, 255, 0.4);
}

.avis-client .total:before {
    transform: skew(345deg, 3deg);
    background-color: #EA592C;
}

.avis-client .total:after {
    transform: skew(353deg, 351deg);
    background-color: #EF7D00;
}



.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;
    }
}

/*******************************************************
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: #004F9F;
}


    .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: #004F9F;
        left: 0;
        top: 1px;
    }

    .infowindows .map-phone-number:before {
        content: "\f095";
    }

    .infowindows .map-opening-time:before {
        content: "\f017";
    }


.infowindows .map-phone-number {
    color: #EF7D00;
    font-weight: 700;
    font-size: 14px;
}

.infowindows .map-opening-time {
    color: #004F9F;
    font-weight: 600;
    font-size: 15px;
}


.infowindows .map-bt-itineraire {
    border: 1px solid #004F9F;
    color: #004F9F;
    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 #004F9F;
        color: white;
        background-color: #004F9F;
        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: #004F9F;
        color: white;
        background-color: #004F9F;
        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: #004F9F;
        text-transform: uppercase;
    }

        .form-container h2 span {
            background-color: #EF7D00;
            color: white;
            padding: 3px 20px;
            display: inline-block;
            transform: rotate(357deg) translateY(-7px);
            box-shadow: 6px 3px 16px 0px rgba(0, 79, 159, 0.4);
        }

        .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 #EF7D00;
}

.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: #EF7D00;
            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: #EF7D00;
            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/35/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/35/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: #004F9F;
    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: #EF7D00;
    }

.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: #004f9f;
        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;
            padding: 5px 15px;
            position: absolute;
            white-space: nowrap;
            background-color: #EF7D00;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%) rotate(-1.454deg);
            bottom: -60px;
            z-index: 1;
            box-shadow: 6px 3px 16px 0px rgba(0, 79, 159, 0.4);
        }

    .page-error p {
        padding: 30px;
    }

    .page-error a {
        border: 1px solid #004F9F;
        color: #004F9F;
        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: 1px solid #004F9F;
            color: white;
            background-color: #004F9F;
            transition: background-color .3s ease, color .3s ease;
        }
