/*******************************************************
FONTS
********************************************************/

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&display=swap');


/*******************************************************
COLOR
********************************************************/

:root {
    --main-color: #983b46;
}

.white {
    color: white !important;
}

.orange {
    color: #F79434 !important;
}

.grey {
    color: #485760 !important;
}



/*******************************************************
GENERAL
********************************************************/


body {
    font-weight: 400;
    color: #333333;
    font-size: 16px;
    font-family: 'Nunito Sans' !important;
}

p, li, label, td {
    font-weight: 400;
    line-height: 1.5;
    font-size: 16px;
}

#back-to-top {
    position: fixed;
    bottom: 7px;
    right: 7px;
    display: none;
    z-index: 200;
    text-align: center;
}

    #back-to-top .far {
        background-color: var(--main-color);
        border: 2px solid white;
        color: #434947;
        width: 40px;
        height: 40px;
        font-size: 16px;
        line-height: 38px;
        border-radius: 100%;
    }

.container-fluid > .row,
.container-fluid > div > .row {
    padding: 0;
}

.max-width {
    max-width: 1400px;
    margin: 0 auto;
}

.max-width-header {
    max-width: 1780px;
    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: var(--main-color);
}


    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: #485760;
    }

.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: 20px;
}

.shadow-border {
    box-shadow: 0px 2px 7px 1px rgba(0, 0, 0, 0.30);
}

.bg-perso {
    display: none !important;
}

.fa-sr-only, .fa-sr-only-focusable:not(:focus), .sr-only, .sr-only-focusable:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/*******************************************************
TITLE
********************************************************/

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-top: 0;
    font-family: 'Nunito Sans';
}

    h1:not(.home) {
        color: var(--main-color);
        margin-top: 30px;
        margin-bottom: 20px;
    }

    h2.home {
        margin-top: 0;
    }

    h2.home, h1:not(.home) {
        font-size: 48px;
        font-family: 'Advent Pro';
        font-weight: 500;
    }

        h2.home span:not(.margin-left),
        h1:not(.home) span:not(.margin-left) {
            color: #333;
        }



/*******************************************************
BTN
********************************************************/

.btn {
    font-weight: 800;
    text-transform: uppercase;
    padding: 15px 30px 12px 30px;
    border-radius: 0;
    font-size:14px;
    transition: all .3s ease;
}

    .btn .fa-angle-right {
        margin-left: 10px;
    }


    .btn .far:not(.fa-angle-right) {
        margin-right: 10px;
    }

    .btn:hover,
    .btn:active,
    .btn:focus {
        transition: all 0.3s ease;
    }



    .btn.btn-default {
        color: #fff;
        background-color: var(--main-color);
        border: 1px solid var(--main-color);
    }

        .btn.btn-default:hover,
        .btn.btn-default:active,
        .btn.btn-default:focus {
            color: var(--main-color) !important;
            border: 1px solid var(--main-color) !important;
            background-color: transparent !important;
        }


    .btn.btn-secondary {
        color: var(--main-color);
        background-color: transparent;
        border: 1px solid var(--main-color);
    }

        .btn.btn-secondary:hover,
        .btn.btn-secondary:active,
        .btn.btn-secondary:focus {
            color: #fff !important;
            border: 1px solid var(--main-color) !important;
            background-color: var(--main-color) !important;
        }

.btn-secondary-alt {
    color: white;
    background-color: transparent;
    border: 1px solid white;
}

    .btn-secondary-alt:hover, .btn-secondary-alt:active, .btn-secondary-alt:focus {
        color: var(--main-color) !important;
        border: 1px solid var(--main-color) !important;
        background-color: white !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-top: 25px;
}*/

header .header-content {
    padding-top: 25px;
}

header .logo img {
    max-width: 270px;
    max-height: 110px;
}

@media(max-width:768px) {
    header .logo img {
        max-width: 230px;
    }
}

header .title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
}

    header .title span {
        font-size: 20px;
        display: block;
        font-weight: 300;
    }

header .navbar {
    padding: 0;
    align-items: start;
}

    header .navbar .nav-item {
        position: relative;
    }

        header .navbar .nav-item + .nav-item:before {
            content: "";
            position: absolute;
            height: 4px;
            width: 4px;
            border-radius: 100%;
            background-color: var(--main-color);
            top: 7px;
            left: -2px;
        }

        header .navbar .nav-item:after {
            content: "";
            position: absolute;
            height: 4px;
            width: calc(100% - 30px);
            background-color: var(--main-color);
            left: 0;
            right: 0;
            margin: auto;
            bottom: 15px;
            opacity: 0;
        }

        header .navbar .nav-item:first-child:after {
            width: calc(100% - 15px);
            right: auto;
        }

        header .navbar .nav-item:hover:after {
            opacity: 1;
        }

    header .navbar .nav-link {
        color: #333;
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        padding: 0 15px 25px 15px !important;
    }

    header .navbar .nav-item:first-child .nav-link {
        padding-left: 0 !important;
    }

header .search-bar input {
    border: none;
    box-shadow: none;
    background-color: #f2f4f6;
    padding: 15px 0 15px 20px;
    height: auto;
    border-radius: 50px 0 0 50px;
}

header .search-bar .input-group-append span {
    border: none;
    box-shadow: none;
    background-color: #f2f4f6;
    padding: 20px 20px 20px 10px;
    height: auto;
    border-radius: 0 50px 50px 0;
}

header .search-bar .input-group-append .fa-light {
    color: #80868b;
}

header .btn-tel,
header .reseau {
    display: inline-block;
    vertical-align: middle;
}


header .btn-tel {
    height: 50px;
    width: 50px;
    background-color: var(--main-color);
    box-shadow: 0 0 0 0 var(--main-color);
    color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 100%;
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
}

    header .btn-tel:hover {
        cursor: pointer;
        box-shadow: 0 0 0 5px transparent;
        transition: box-shadow .8s ease;
    }

header .reseau {
    margin-bottom: 0;
    margin-right: 10px;
    padding: 0;
}

    header .reseau a {
        height: 50px;
        width: 50px;
        background-color: #80868b;
        box-shadow: 0 0 0 0 #80868b;
        color: #fff;
        text-align: center;
        line-height: 52px;
        border-radius: 100%;
        margin-left: 5px;
        display: inline-block;
        font-size: 20px;
    }

        header .reseau a:hover {
            box-shadow: 0 0 0 5px transparent;
            transition: box-shadow .8s ease;
        }

/*******************************************************
FOOTER
********************************************************/



footer .copyright {
    display: none;
}


footer {
    background-color: #222;
    color: #fff;
    padding-top: 40px;
    border-top: 10px solid var(--main-color);
}

    footer h2 {
        font-size: 24px;
        margin-top: 0;
        margin-bottom: 5px;
        font-weight: 800;
    }

        footer h2 span {
            font-size: 18px;
            display: block;
            font-weight: 300;
        }

    footer h3 {
        font-size: 22px;
        font-weight: 800;
        margin-top: 0;
    }

@media(max-width: 991px) {
    footer h3 {
        margin-top: 30px;
    }
}

footer .title, footer .reseau-sociaux {
    display: inline-block;
    vertical-align: middle;
}

footer .reseau-sociaux {
    padding: 0;
    margin-bottom: 0;
    margin-left: 20px;
}

    footer .reseau-sociaux li {
        display: inline-block;
        margin: 0 5px;
    }

        footer .reseau-sociaux li a {
            height: 40px;
            width: 40px;
            border-radius: 100%;
            background-color: #fff;
            box-shadow: 0 0 0 0 white;
            color: #222;
            line-height: 40px;
            display: inline-block;
            text-align: center;
            font-size: 18px;
        }

            footer .reseau-sociaux li a:hover {
                box-shadow: 0 0 0 5px transparent;
                transition: box-shadow .8s ease;
            }

footer .menu-footer ul {
    padding: 0;
    margin-bottom: 0;
    margin-top: 40px;
}

    footer .menu-footer ul li {
        display: inline-block;
        width: 32%;
        padding-left: 15px;
        position: relative;
        line-height: 1.2;
        margin-bottom: 10px;
        font-weight: 400;
        transition: all .3s ease;
    }

        footer .menu-footer ul li a {
            color: white;
        }

@media(min-width: 992px) {
    footer .menu-footer ul li:hover {
        transform: translateX(10px);
        transition: all .3s ease;
    }
}

@media(max-width: 991px) {
    footer .menu-footer ul li {
        width: 49%;
    }
}

footer .menu-footer ul li:before {
    content: "";
    position: absolute;
    height: 3px;
    width: 3px;
    background-color: #fff;
    border-radius: 100%;
    left: 0;
    top: 7px;
}

footer .produit-footer a {
    color: #fff;
    border: 1px solid rgba(255,255,255,.7);
    font-weight: 400;
    display: flex;
    align-items: center;
    margin: 15px 0;
    position: relative;
    height: 55px;
    justify-content: center;
    transition: all .3s ease;
}

    footer .produit-footer a:hover {
        background-color: #fff;
        color: var(--main-color);
        transition: all .3s ease;
    }

footer .produit-footer .content {
    display: flex;
    align-items: center;
}

    footer .produit-footer .content .fa-light {
        margin-right: 15px;
        font-size: 18px;
    }

    footer .produit-footer .content p {
        text-align: left;
        line-height: 1.2;
    }

@media(max-width: 991px) {
    .reseau-footer {
        text-align: center;
    }

        .reseau-footer img {
            margin: 0 auto;
            display: block;
        }

        .reseau-footer h3 {
            font-size: 18px;
            margin: 10px 0;
        }
}

.reseau-footer img, .reseau-footer .content {
    display: inline-block;
    vertical-align: middle;
}

.reseau-footer .content {
    margin-left: 20px;
}

    .reseau-footer .content ul {
        padding: 0;
        margin: 0;
    }

        .reseau-footer .content ul li {
            display: inline-block;
            position: relative;
            padding: 0 15px;
        }

@media(min-width: 992px) {
    .reseau-footer .content ul li:hover {
        opacity: .5;
    }
}

.reseau-footer .content ul li:first-child {
    padding-left: 0;
}

.reseau-footer .content ul li a {
    color: #fff;
    display: inline-block;
    font-weight:300;
}

.reseau-footer .content ul li + li:before {
    content: "";
    position: absolute;
    height: 3px;
    width: 3px;
    background-color: #fff;
    border-radius: 100%;
    left: -3px;
    top: 9px;
}

@media(max-width: 991px) {
    .newsletter-footer {
        margin: 30px 0;
        text-align: center;
    }
}

.newsletter-footer h3, .newsletter-footer a {
    display: inline-block;
    vertical-align: middle;
}

.newsletter-footer h3 {
    margin: 0;
}

    .newsletter-footer h3 .fal {
        margin-right: 15px;
    }

.newsletter-footer a {
    font-size: 24px;
    font-family: 'Advent Pro';
    font-weight: 500;
    margin-left: 25px;
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 0;
    padding: 5px 10px;
}

@media(min-width: 992px) {
    .newsletter-footer a:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0;
        background-color: var(--main-color);
        top: 0;
        left: 0;
        z-index: -1;
        transition: all .3s ease;
    }

    .newsletter-footer a:hover:before {
        width: 100%;
        transition: all .3s ease;
    }
}

@media(min-width: 992px) {
    .section {
        margin-top: 40px;
    }
}

.bottom-nav {
    padding: 15px 0;
    margin-top: 40px;
    background-color: #373737;
}

    .bottom-nav ul {
        padding: 0;
        margin: 0;
        text-align: center;
    }

        .bottom-nav ul li {
            display: inline-block;
            padding: 0 15px;
            font-weight:800;
        }

@media(max-width: 767px) {
    .bottom-nav ul li {
        padding: 7px 15px;
    }
}

.bottom-nav ul li a {
    color: #fff;
}

@media(min-width: 992px) {
    .bottom-nav ul li:hover {
        opacity: .5;
    }
}

.copyright-footer {
    display: block;
    color: #fff;
    font-weight:300;
    text-align: center;
    font-size: 14px;
    padding: 15px 0;
}

/*******************************************************
CONTENT
********************************************************/
/* home */

.presentation-home {
    padding: 70px 10%;
    background-color: #eceeee;
    position: relative;
    z-index: 0;
}

    .presentation-home:after {
        content: "";
        position: absolute;
        width: 25%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background-image: url(/docs/pages/71/fond-section-home-magasin-min.webp);
        background-size: cover;
        background-position: center;
    }

    .presentation-home .content {
        background-color: #fff;
        box-shadow: 0 0 20px 10px rgba(0,0,0,.1);
    }

    .presentation-home .presentation {
        padding: 40px 40px 30px 70px;
    }

@media(max-width: 767px) {
    .presentation-home .presentation {
        padding: 15px;
        text-align: center;
    }
}

.presentation-home .presentation ul {
    padding: 0;
}

    .presentation-home .presentation ul li {
        list-style: none;
        position: relative;
        line-height: 1.2;
        padding-left: 15px;
        margin-bottom: 5px;
    }

        .presentation-home .presentation ul li:before {
            content: "";
            position: absolute;
            height: 5px;
            width: 5px;
            background-color: var(--main-color);
            border-radius: 100%;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }

.presentation-home .presentation h1 {
    margin-top: 0;
    font-weight: 400;
    font-size: 48px;
    margin-bottom: 50px;
}

@media(max-width: 767px) {
    .presentation-home .presentation h1 {
        font-size: 36px;
        margin-bottom: 25px;
        text-align: left;
    }
}

.presentation-home .presentation .lettrine {
    margin-bottom: 15px;
    line-height: 1.5;
}

@media(max-width: 767px) {
    .presentation-home .presentation .lettrine {
        text-align: left;
    }
}

.presentation-home .presentation .lettrine span {
    float: left;
    background-color: var(--main-color);
    height: 35px;
    display: block;
    font-weight: 800;
    width: 35px;
    line-height: 37px;
    text-align: center;
    margin-right: 10px;
    color: #fff;
    margin-top: 5px;
}

.presentation-home .presentation .btn {
    margin-right: 20px;
    margin-top: 15px;
}

.presentation-home .carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    background-image: none;
    color: #333;
    text-align: center;
    opacity: 1;
    text-shadow: none;
    width: auto;
}

    .presentation-home .carousel-control.right {
        right: 0;
    }

    .presentation-home .carousel-control.left {
        left: 0;
    }

    .presentation-home .carousel-control .far {
        position: absolute;
        top: 50%;
        z-index: 5;
        display: inline-block;
        margin-top: -10px;
        font-size: 18px;
        height: 35px;
        width: 35px;
        background-color: #fff;
        line-height: 35px;
    }

        .presentation-home .carousel-control .far.fa-long-arrow-left {
            left: 50%;
        }

        .presentation-home .carousel-control .far.fa-long-arrow-right {
            right: 50%;
            margin-right: 0;
        }

    .presentation-home .carousel-control .item {
        display: block;
    }

        .presentation-home .carousel-control .item img {
            margin: 0 auto;
        }

.presentation-home img {
    display: block;
    margin: 0 auto;
    max-height: 530px;
}

/* univers */

.home-univers {
    color: #fff;
    font-weight: 400;
    padding: 70px 0;
}

    .home-univers .row {
        row-gap: 30px;
    }

    .home-univers h2,
    .home-univers h3 {
        font-family: 'Advent Pro';
    }

    .home-univers h2 {
        font-size: 48px;
        font-weight: 500;
    }

@media(min-width: 992px) {
    .home-univers {
        background-color: #222;
    }
}


.home-univers .alt-section img {
    max-height: 295px;
}

.home-univers .alt-section .transparent:before {
    max-height: 295px;
}

.home-univers .title-alt {
    margin-bottom: 30px;
    font-size: 48px;
    font-family: 'Advent Pro';
    font-weight: 500;
    text-align: center;
    margin-top: 0;
}

@media(max-width: 991px) {
    .home-univers .title-alt {
        color: var(--main-color);
    }
}

.home-univers .no-img-container {
    position: relative;
    height: 100%;
}

@media(max-width: 991px) {
    .home-univers .no-img-container .title {
        color: var(--main-color);
        text-align: center;
    }
}

@media(min-width: 992px) {
    .home-univers .no-img-container .title {
        position: absolute;
        top: 30px;
        left: 30px;
    }

    .home-univers .no-img-container:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background-color: var(--main-color);
    }
}

.home-univers .no-img-container .logo {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: auto;
}

.home-univers .no-img-container .icones {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

    .home-univers .no-img-container .icones .fa-light {
        font-size: 34px;
        margin: 0 7px;
    }

.home-univers .univers {
    position: relative;
    display: block;
    color: #fff;
}

    .home-univers .univers:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        opacity: .4;
        background: linear-gradient(180deg,#000,rgba(0,0,0,0));
    }

    .home-univers .univers:after {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        box-shadow: inset 0 0 0 10px var(--main-color);
        opacity: 0;
    }

    .home-univers .univers img {
        width: 100%;
    }

    .home-univers .univers .info {
        position: absolute;
        top: 30px;
        width: 100%;
        padding: 0 30px;
    }

@media(max-width: 767px) {
    .home-univers .univers .info {
        top: 15px;
        left: 15px;
    }
}

.home-univers .univers .info h3 {
    font-size: 36px;
    margin-top: 0;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 10px;
}

@media(min-width: 768px) and (max-width:991px) {
    .home-univers .univers .info h3 {
        font-size: 30px;
    }
}

@media(max-width: 767px) {
    .home-univers .univers .info h3 {
        font-size: 24px;
    }
}

.home-univers .univers .info span {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    display: inline-flex;
    align-items: center;
    opacity: 0;
}

    .home-univers .univers .info span .fa-light {
        margin-left: 10px;
    }

.home-univers .univers > .fa-light {
    font-size: 36px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    opacity: 0;
}

@media(min-width: 992px) {
    .home-univers .univers:hover .info span,
    .home-univers .univers:hover > .fa-light,
    .home-univers .univers:hover:after {
        opacity: 1;
    }

    .home-univers .univers:hover:before {
        opacity: .6;
        background: linear-gradient(180deg,#000,#000);
        transition: opacity .3s ease;
    }
}

/* catalogue */

@media(min-width: 992px) {
    .home-catalogue-inspi {
        background: #efefef url('/docs/pages/71/fond-catalogue-inspi-min.webp');
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 50%;
    }
}

@media(min-width: 768px) and (max-width:991px) {
    .home-catalogue-inspi {
        text-align: center;
    }
}

.home-catalogue-inspi .catalogue,
.home-catalogue-inspi .inspiration {
    padding: 50px;
}

    .home-catalogue-inspi .catalogue h2,
    .home-catalogue-inspi .inspiration h2 {
        margin-bottom: 40px;
    }

.home-catalogue-inspi .catalogue {
    background-color: #80868b;
}

@media(max-width: 767px) {
    .home-catalogue-inspi .catalogue {
        text-align: center;
    }
}

.home-catalogue-inspi .catalogue h2 {
    color: #fff;
}

@media(max-width: 767px) {
    .home-catalogue-inspi .catalogue h2 {
        text-align: left;
    }
}

.home-catalogue-inspi .catalogue a.img {
    position: relative;
}

@media(max-width: 991px) {
    .home-catalogue-inspi .catalogue a.img:not(.btn) {
        display: block;
    }
}

.home-catalogue-inspi .catalogue a.img p {
    display: none;
}

@media(min-width: 992px) {
    .home-catalogue-inspi .catalogue a.img:after {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        box-shadow: inset 0 0 0 10px var(--main-color);
        opacity: 0;
    }

    .home-catalogue-inspi .catalogue a.img:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background-color: #000;
        opacity: 0;
    }

    .home-catalogue-inspi .catalogue a.img:hover:before {
        opacity: .6;
        transition: opacity .3s ease;
    }

    .home-catalogue-inspi .catalogue a.img:hover:after {
        opacity: 1;
        transition: opacity .3s ease;
    }

    .home-catalogue-inspi .catalogue a.img p {
        display: block;
        margin: 0;
        font-weight: 900;
        text-transform: uppercase;
        position: absolute;
        text-align: center;
        font-size: 22px;
        color: #fff;
        width: 100%;
        z-index: 2;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
    }

    .home-catalogue-inspi .catalogue a.img:hover p {
        opacity: 1;
        transition: opacity .3s ease;
    }
}

.home-catalogue-inspi .catalogue .btn {
    margin-top: 30px;
    white-space: pre-wrap;
}

.home-catalogue-inspi .inspiration {
    background-color: #efefef;
}

    .home-catalogue-inspi .inspiration p {
        font-weight: 300;
    }

    .home-catalogue-inspi .inspiration a {
        color: #fff;
        display: inline-block;
        background-color: var(--main-color);
        border-radius: 5px;
        padding: 30px;
        margin-top: 50px;
        position: relative;
        overflow: hidden;
        text-align: left;
        z-index: 1;
        transition: all .3s ease;
    }

        .home-catalogue-inspi .inspiration a:before {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            background: linear-gradient(135deg,rgba(0,0,0,0.1),rgba(0,0,0,0.4),#000000);
            top: 0;
            left: 0;
            border-radius: 5px;
            z-index: -1;
            opacity: 0;
        }

        .home-catalogue-inspi .inspiration a:hover:before {
            opacity: 0.3;
            transition: all .3s ease;
        }

        .home-catalogue-inspi .inspiration a .fab {
            font-size: 36px;
            margin-bottom: 30px;
        }

            .home-catalogue-inspi .inspiration a .fab:nth-child(2) {
                position: absolute;
                margin: 0;
                opacity: 0;
                left: 30px;
                top: 30px;
            }

        .home-catalogue-inspi .inspiration a:hover .fab:nth-child(2) {
            opacity: .4;
            top: -9px;
            left: -7px;
            font-size: 70px;
            transform: rotate(15deg);
            transition: all .3s ease;
        }

        .home-catalogue-inspi .inspiration a p {
            font-size: 20px;
            font-family: 'Advent Pro';
            font-weight: 700;
            line-height: 1.2;
        }

            .home-catalogue-inspi .inspiration a p span {
                display: block;
                font-family: 'Advent Pro';
                font-weight: 400;
            }

/* infos pratiques*/

.home-coordonnee {
    background-color: var(--main-color);
    color: #fff;
    padding: 70px 0;
}

@media(min-width: 992px) {
    .home-coordonnee {
        padding-bottom: 180px;
    }
}

@media(max-width: 991px) {
    .home-coordonnee {
        padding: 30px 0;
    }
}

@media(min-width: 992px) {
    .home-coordonnee .coordonnee-content {
        display: inline-block;
        vertical-align: middle;
        width: 37%;
    }

        .home-coordonnee .coordonnee-content:first-child {
            width: 25%;
        }
}

.home-coordonnee .coordonnee-content {
    padding: 0 15px;
}

@media(max-width: 991px) {
    .home-coordonnee .coordonnee-content {
        padding: 15px;
    }
}

.home-coordonnee .content {
    padding-left: 65px;
    position: relative;
}

    .home-coordonnee .content:before {
        position: absolute;
        font-family: 'Font Awesome 7 Pro';
        font-size: 48px;
        font-weight: 300;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .home-coordonnee .content h2 {
        font-size: 24px;
        font-family: 'Advent Pro';
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .home-coordonnee .content p {
        font-size: 18px;
        margin: 0;
        line-height: 1.5;
        font-weight: 300;
    }

.home-coordonnee .adresse .content:before {
    content: "\f3c5";
}

.home-coordonnee .horaire .content:before {
    content: "\f017";
}

.home-coordonnee .bouton {
    text-align: right;
}

@media(max-width: 767px) {
    .home-coordonnee .bouton {
        text-align: center;
    }

        .home-coordonnee .bouton a {
            margin-top: 10px;
        }
}

.home-coordonnee .horaires-supp {
    background-color: #fff;
    color: #000;
    padding: 20px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 0 20px 6px rgba(0,0,0,0.3);
}

    .home-coordonnee .horaires-supp h2 {
        font-size: 24px;
        font-family: 'Advent Pro';
        font-weight: 500;
        margin-bottom: 10px;
        margin-top: 0;
        color: var(--main-color);
    }

    .home-coordonnee .horaires-supp p {
        margin: 0;
    }

    .home-coordonnee .horaires-supp .horaires-supp-liste {
        padding: 0;
        list-style: none;
    }


/*******************************************************
MAPS
********************************************************/

@media(min-width: 992px) {
    .home-map {
        margin-top: -110px;
        padding-bottom: 50px;
    }
}

.home-map .weGmap {
    border: 5px solid #fff;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
}

.gm-ui-hover-effect {
    position: absolute !important;
    right: 0;
}

.gm-style .gm-style-iw {
    font-weight: 400;
}

.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: 400;
    line-height: 1.3;
    font-family: 'Nunito Sans' !important;
}

.infowindows [itemprop=name] {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--main-color);
}


    .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 7 Pro';
        font-weight: 500;
        color: var(--main-color);
        left: 0;
        top: 1px;
    }

    .infowindows .map-phone-number:before {
        content: "\f095";
    }

    .infowindows .map-opening-time:before {
        content: "\f017";
    }


.infowindows .map-phone-number {
    font-weight: 700;
    font-size: 14px;
}

.infowindows .map-opening-time {
    font-weight: 600;
    font-size: 15px;
}


.infowindows .map-bt-itineraire {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 16px;
    margin-top: 7px;
    background-color: white;
    display: inline-block;
    padding: 6px 20px;
    font-weight: 500;
    transition: background-color .3s ease, color .3s ease;
}

    .infowindows .map-bt-itineraire:hover,
    .infowindows .map-bt-itineraire:active,
    .infowindows .map-bt-itineraire:focus {
        border: 2px solid var(--main-color);
        color: white;
        background-color: var(--main-color);
        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: var(--main-color);
        color: var(--main-color);
        background-color: transparent;
        outline: none;
        box-shadow: none;
    }

/*******************************************************
FORM
********************************************************/

.contact {
    padding: 20px 0 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 {
        padding-bottom: 0;
    }

        .form-container h2:before {
            content: none;
        }


        .form-container h2 + p {
            margin: 40px 0;
        }

.contact .form-group label {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
}

.form-control {
    border-radius: 32px;
    background: #E6E6E6;
    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 var(--main-color);
}

.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;
}

form .form-control[type="checkbox"] {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    appearance: none;
    padding: 0;
    border-radius: 3px;
}

    form .form-control[type="checkbox"]:before {
        content: "\f14a";
        font-family: 'Font Awesome 7 Pro';
        font-weight: 900;
        color: var(--main-color);
        font-size: 21px;
        position: absolute;
        top: -6px;
        left: 0px;
        opacity: 0;
    }

    form .form-control[type="checkbox"]:checked:before {
        opacity: 1;
    }

    form .form-control[type="checkbox"]:checked {
        border-color: transparent;
    }

form .rgpd label {
    font-size: 16px;
}


.grecaptcha-badge {
    margin: 0 auto;
}

@media(max-width:991px) {

    .contact {
        padding: 50px 0;
    }


    .form-container {
        padding: 40px 25px;
    }
}



/*******************************************************
MODAL
********************************************************/

.modal .modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #F79434;
    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 .btn.btn-success {
            background-color: #AABF6D;
        }

        .modal#cookiesModal .btn.btn-danger {
            background-color: #BF6D6D;
        }

    .modal#cookiesModal .notActive {
        background-color: #E6E6E6 !important;
    }


    .modal#cookiesModal h2,
    .modal#cookiesModal h3 {
        font-size: 24px;
        margin-top: 20px;
        color: #434947;
    }

.modal-footer {
    border: none;
}

.weCookieBar .btn {
    padding: 10px 13px !important;
    font-size: 15px;
    margin-top: 5px;
}

.weCookieBar .btn-link {
    color: #F79434;
}

.weCookieBar .btn:hover {
    color: white !important;
}

/*******************************************************
404
********************************************************/
.page-error {
    text-align: center;
    margin-bottom: 80px;
}

    .page-error h1 {
        text-align: center;
        font-size: 116px;
        color: #F79434;
        position: relative;
        font-weight: 600;
        line-height: 1;
        margin-top: 60px;
        margin-bottom: 70px;
    }

        .page-error h1 span {
            color: #364148;
            font-size: 46px;
            font-weight: 800;
            padding: 5px 15px;
            position: absolute;
            text-transform: uppercase;
            white-space: nowrap;
            background-color: #F79434;
            border-radius: 40px;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%) rotate(-1.454deg);
            bottom: -38px;
            z-index: 1;
        }

    .page-error p {
        padding: 20px 0 30px;
    }

    .page-error a {
        border-color: #F79434 !important;
        background-color: white;
        color: #485760;
        padding: 16px 25px;
        border-radius: 30px;
        border-style: solid;
        position: relative;
        border-width: 2px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        transition: background-color .3s ease, color .3s ease;
    }

        .page-error a:hover,
        .page-error a:active,
        .page-error a:focus {
            background-color: transparent;
            color: #434947 !important;
            transition: background-color .3s ease, color .3s ease;
        }

/*******************************************************
MENTIONS LEGALES
********************************************************/

.mentions-legales {
    padding: 40px 0;
}

    .mentions-legales h1 {
        font-weight: 700;
        color: #F79434;
        margin-bottom: 50px;
    }

    .mentions-legales h2 {
        margin-top: 45px;
    }

    .mentions-legales h3 {
        margin-top: 20px;
        font-weight: 400;
        font-size: 24px;
    }

    .mentions-legales dt {
        float: left;
    }

    .mentions-legales li {
        line-height: 27px;
    }
