/* HEADING FONT */
/* athena font -- bold */
@font-face {
    font-family: "Athena Book";
    src: url("../font/Athena-Book.eot?#iefix") format("embedded-opentype"),
        url("../font/Athena-Book.svg#Athena-Bold") format("svg"),
        url("../font/Athena-Book.woff2") format("woff2"),
        url("../font/Athena-Book.woff") format("woff"),
        url("../font/Athena-Book.eot"),
        url("../font/Athena-Book.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* DISPLAY FONT */
/* modernline font */
@font-face {
    font-family: "modernline";
    src: url("../font/modernline.eot?#iefix") format("embedded-opentype"),
        url("../font/modernline.svg#modernline") format("svg"),
        url("../font/modernline.woff2") format("woff2"),
        url("../font/modernline.woff") format("woff"),
        url("../font/modernline.eot"),
        url("../font/modernline.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* BODY FONT */
/* lexend deca font -- thin */
@font-face {
    font-family: "Lexend Deca ExtraLight";
    src: url("../font/LexendDeca-ExtraLight.eot?#iefix") format("embedded-opentype"),
        url("../font/LexendDeca-ExtraLight.svg#LexendDeca-ExtraLight") format("svg"),
        url("../font/LexendDeca-ExtraLight.woff2") format("woff2"),
        url("../font/LexendDeca-ExtraLight.woff") format("woff"),
        url("../font/LexendDeca-ExtraLight.eot"),
        url("../font/LexendDeca-ExtraLight.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}


/*GENERAL*/
/* base */
body {                          overflow-x: hidden;font-family: "Lexend Deca ExtraLight", sans-serif !important;-webkit-text-size-adjust: 100%;text-rendering: optimizelegibility;}
.content{                       height: 100%;}
/* color, spacing */
.bg-primary{                    background-color: #8c9f96 !important;}
.bg-secondary{                  background-color: #e5d2b8 !important;}
.bg-light{                      background-color: #f9f5f1 !important;}
.color-primary{                 color: #8c9f96 !important;}
.color-secondary{               color: #e5d2b8 !important;}
.color-secondary--darker{       color: #9b9383 !important;}
.font-family-secondary{         font-family: "Athena Book", serif !important;}
.font-family-display{           font-family: "modernline" !important;}
/* sizing */
.font-size-heading{             font-size: 2rem;}
.font-size-subheading{          font-size: 1.6rem;}
.line-height-sm{                line-height: 1.5;}
.content > p{                   font-size: 1.1rem;}
.h1, h1 {                       font-size: 2.5rem !important;}
.h2, h2 {                       font-size: 2rem !important;}
.h3, h3 {                       font-size: 1.75rem !important;}
.h4, h4 {                       font-size: 1.5rem !important;}
.h5, h5 {                       font-size: 1.25rem !important;}
.h6, h6 {                       font-size: 1rem !important;}
/* btn primary */
.btn-primary, .btn-info, .btn-success {
    color: #F8F8F8;
    background-color: #8c9f96;
    border-color: #8c9f96;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.btn-primary::before{
    content: "";
    display: block;
    position: absolute;
    top: 2.8rem;
    right: -8px;
    width: 60%;
    height: 2px;
    background: #8c9f96;
    transition: all ease-in-out 360ms;
}
.btn-primary::after{
    content: "";
    display: block;
    position: absolute;
    top: 0.2rem;
    right: -8px;
    width: 2px;
    height: 42px;
    background: #8c9f96;
    transition: all ease-in-out 360ms;
}
.sidebar .btn-primary::before{
    content: none;
}
.sidebar .btn-primary::after{
    content: none;
}
/* btn secondary */
.btn-secondary{
    color: #1D1D1D;
    background-color: #e5d2b8;
    border-color: #e5d2b8;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.btn-secondary::before{
    content: "";
    display: block;
    position: absolute;
    top: 2.8rem;
    right: -8px;
    width: 60%;
    height: 2px;
    background: #e5d2b8;
    transition: all ease-in-out 360ms;
}
.btn-secondary::after{
    content: "";
    display: block;
    position: absolute;
    top: 0.2rem;
    right: -8px;
    width: 2px;
    height: 42px;
    background: #e5d2b8;
    transition: all ease-in-out 360ms;
}
.sidebar .btn-secondary::before{
    content: none;
}
.sidebar .btn-secondary::after{
    content: none;
}
.btn-primary:hover,
.btn-secondary:hover,
.btn-info:hover,
.btn-success:hover {
    color: #fff;
    background-color: #9b9383;
    border-color: #9b9383;
}
.btn-primary:hover::after,
.btn-secondary:hover::after {
    background: #9b9383;
    transform: scale(0.5) translateX(-2rem);
    transition: all ease-in-out 360ms;
}
.btn-primary:hover::before,
.btn-secondary:hover::before {
    background: #9b9383;
    transform: scale(0.5) translateY(-2rem);
    transition: all ease-in-out 360ms;
}
.btn {
    border-radius: 0px;
    padding: .6rem 1.8rem;
    font-family: 'Athena Book', 'Playfair Display', 'Times', serif !important;
}
.link{
    color: #8c9f96;
}
.link:hover{
    color: #dfcbb8;
}
/* a hover */
.link-underline::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    z-index: 1;
    width: 0;
    height: 2px;
    background: #8c9f96;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.link-underline:hover {
    color: #8c9f96;
}
.link-underline:hover::after {
    width: 100%;
}
.h-70 {
    height: 60%!important;
}
.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0,0,0,0);
}
.img-optimized{
    image-rendering: -moz-crisp-edges;         /* Firefox */
    image-rendering:   -o-crisp-edges;         /* Opera */
    image-rendering: -webkit-optimize-contrast;/* Webkit */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;  /* IE */
}
.icon {
    width: auto;
    height: 1.6rem;
    image-rendering: -moz-crisp-edges;         /* Firefox */
    image-rendering:   -o-crisp-edges;         /* Opera */
    image-rendering: -webkit-optimize-contrast;/* Webkit */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;  /* IE */
}


/* cookies window */
.cc-window.cc-banner {
  width: 24rem!important;
}
.cc-banner.cc-bottom {
  right: auto!important;
  left: 2%;
  bottom: 20px;
}
.cc-color-override-1247188962.cc-window {
  background-color: #2E2D2C!important;
}
#footer-cookie {
  color: #F8F9F9!important;
  max-height: 100%!important;
}
#footer-cookie h3 {
  font-size: 1rem!important;
}
#footer-cookie p {
  font-size: 12px!important;
  line-height: 1.5!important;
}
.btncookie {
  margin: 8px auto!important;
  background: transparent!important;
  color: #F8F9F9!important;
  border: 1px solid #F8F9F9!important;
  font-size: 1rem!important;
  width: 14rem!important;
  padding: .4rem .75rem!important;
}
.btncookie:hover {
  background: #F8F9F9!important;
  color: #1d1d1d!important;
  border: 1px solid #fff!important;
}
#boutoncookie {
  display: grid!important;
}
.cc-color-override-1247188962 .cc-link, .cc-color-override-1247188962 .cc-link:active, .cc-color-override-1247188962 .cc-link:visited {
  color: #F8F9F9!important;
}
a.cc-link {
  margin: auto!important;
}


/* NAV */
nav.navbar{
	display: flex;
    padding: 1rem 0;
}
nav.navbar.sticky-top.navbar-expand-lg {
    display: inline-block;
}
.header .sticky_menu.stick-me.not-sticking .index-logo-sticking {
    display: none;
}
.header .sticky_menu.stick-me.sticking .img-fluid {
    display: none;
}

.nav-item {
    padding: 0 0.8rem;
}
.nav-item.active::before{
    content: '';
    width: 62px;
    height: 62px;
    border-radius: 10rem;
    position: absolute;
    top: -70%;
    left: 50%;
    transform: translate(-50%);
    z-index: -1;
    background: rgba(222, 202, 186, .2);
}
.nav-item.active .nav-link{
    color: #9b9383 !important;
}
.dropdown-menu {
    top: 50px;
    box-shadow: rgb(0 0 0 / 20%) 0 16px 24px 0;
    width: 300px;
    border-radius: 0.8rem;
    padding: .6rem;
}
.nav-link {
    display: block;
    padding: .5rem 1rem;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
}
/* a hover */
nav.navbar ul > li > .nav-link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    z-index: 1;
    width: 0;
    height: 2px;
    background: #dfcbb8;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
nav.navbar ul > li > .nav-link:hover::after {
    width: 100%;
}
/* dropdown hover effect */
.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    color: #212529;
    text-align: inherit;
    background: 0 0;
    border: 0;
    font-weight: 600;
    transition: all ease-in-out 90ms 90ms;
}
.dropdown-item:hover {
    padding-left: 2.4rem;
    background-color: #F0F0F0;
    border-radius: .8rem;
    transition: all ease-in-out 90ms 90ms;
}
.dropdown-item:hover a{
    color: #212529 !important; /* no blue inherit color */
    transition: all ease-in-out 90ms 90ms;
}
/* navbar coordonnees */
nav.navbar .navbar-coordonnees{
    width: 25%;
    text-align: right;
    padding: 1rem;
    position: absolute;
    right: .4rem;
    top: 0;
}
nav.navbar .navbar-coordonnees .navbar-coordonnees__name p{
    font-size: .8rem;
}


/* NAV SECOND */
.navbar-second {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0 0;
}
/* hide on sticking */
.sticking .navbar-second{
    display: none;
}
.navbar-second .desktop-view {
    width: 32%;
}
.navbar-second__heading img {
    width: 100%;
}
.navbar-second__coordonnees .borderr {
    width: 42%;
    margin: 0 auto;
    color: #8c9f96;
    /* border: 1px solid #8c9f96 !important; */
    padding: 0.6rem;
    text-align: center !important;
}
html[lang='fr'] .navbar-second a > span.fr{
  display: none;
}
html[lang='en'] .navbar-second a > span.en{
  display: none;
}


/* LOGO ADJUST */
nav.menu{
	display: inline-block;
}
.header__logo img{
    width: 25%;
    padding: .8rem 1rem;
    /* margin: -14px 0; */
}


/* BACKGROUND VIDEO INSTEAD OF IMAGE */
.bgAccueil{
    background:none;
}
.cover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}
.cover video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}


/* BASELINE */
.baseline{
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    width: 46%;
    text-align: right;
    height: 6rem;
    background: rgba(222, 202, 186, .8);
    padding: 1.4rem;
}
.baseline .baseline__btn{
    text-align: center;
    margin-top: 2.4rem;
}
.baseline .baseline__btn .btn-secondary:hover::after{
    background: #fff;
    transform: scale(0.5) translateX(-2rem);
    transition: all ease-in-out 360ms;
}
.baseline .baseline__btn .btn-secondary:hover::before {
    background: #fff;
    transform: scale(0.5) translateY(-2rem);
    transition: all ease-in-out 360ms;
}


/* ROUND MOTEUR SEARCH */
/* btn type de transactions */
.index .radio_trans input.css-checkbox[type="radio"]:checked + label.css-label {
    border-bottom: none;
    background: #8c9f96;
    border-radius: .25rem;
    padding: 1rem;
    color: #FFF;
}
.radio_trans input[type=radio].css-checkbox + label.css-label {
    padding: 1rem;
}
/* no margin right + rounded corners + height background */
.search__form-item:nth-child(n+2){
    margin-right: 0;
    height: 66px;
    border-radius: .25rem 0 0 .25rem!important;
}
.search__form-item.c_type .btn-group.bootstrap-select.show-tick,
.bootstrap-select>.dropdown-toggle{
    margin-right: 0;
    height: 56px;
    border-radius: .25rem 0 0 .25rem!important;
    background: none;
}
/* no border radius input ville */
.form-group.search__form-item.c_insee {
    border-radius: 0!important;
}
/* no border input type + ville */
.index .bootstrap-select {
    border: none!important;
}
/* height button + no bg */
.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus{
    height: 66px !important;
    background: none!important;
}
.bootstrap-select>.dropdown-toggle {
    height: 66px;
    border-radius: 100px;
    vertical-align: initial;
}
/* height input -- index only */
.form-style {
    height: 66px;
    /* fix display bug on input */
    /* border: 1px solid #ffffff !important; */
    margin: 0 -1px;
}
/* border radius input prix max */
input#prixmax, .input-group-addon {
    border-radius: 0 .25rem .25rem 0;
}
body.alerte-email input#prixmax,
body.contact input#prixmax {
    border-radius: 10px;
}
/* margin btn valid */
.search__form-item.c_valid {
    margin: 0 0 0 1.2rem;
}
/* no moteur */
.moteur,
.container_search {
    background-color: rgba(0,0,0,0);
    display: none;
}


.home_heading::after {
    content: "";
    display: block;
    position: relative;
    background: #000;
    height: 2px;
    width: 150px;
    margin: 24px auto 24px auto;
}


/* SELECTION */
.index .item-listing {
    border: none !important;
    width: calc(33.3% - 60px) ;
    box-shadow: rgb(0, 0, 0, .2) 1px 1px 8px 0;
    transition: all ease-in-out 90ms 90ms;
    border-radius: 1rem;
}
.index .item-listing:hover {
    opacity: 1;
    box-shadow: rgb(0, 0, 0, .2) 1px 1px 16px 0;
    transition: all ease-in-out 90ms 90ms;
    border-radius: 1rem;
}
.prod_accueil {
    justify-content: center;
}
.item-listing {
    border: #111 solid 1px;
    border-radius: 1rem;
}
.carousel_nbr_photos {
    top: 20px;
    right: 20px;
    border-radius: 10rem;
}
/* display 4 items */
.prod_accueil article {
    width: calc(32% - 6px);
    margin: .2rem .2rem 1.6rem;
    border: 1px solid #fff;
    transition: all ease-in-out 120ms;
}
.prod_accueil article:hover {
    border: 1px solid #d3d3d3;
    transition: all ease-in-out 120ms;
}
.card_list li > span:after {
    content: none;
}
.article-content__btn{
    padding: 1rem;
    text-align: center;
}
.article-content__btn span {
    background: #457260;
    border-radius: 10rem;
    padding: 1rem 1.2rem;
}


/* INDEX PRESENTATION ALT STYLE */
.col-bg--right::before{
    content: "";
    background: #f9f5f1;
    width: 50%;
    position: absolute;
    top: 28%;
    right: 50%;
    transform: translate(0%);
    z-index: 0;
    height: 28rem;
}
.col-bg--left::before{
    content: "";
    background: #f9f5f1;
    width: 50%;
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translate(0%);
    z-index: 0;
    height: 28rem;
}
/* bg pres */
.bg-pres{
    height: auto;
}
.bg-pres::after {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    padding: 40px 0;
    min-height: auto;
    position: absolute;
    z-index: -1;
    opacity: 0.2;
    background: url(../images/index-img__presentation.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}


/* HOME CONT CATEGORIES */
.other-product {
    height: 150px;
    transition: all 140ms 120ms ease-in-out;
    -moz-transition: all 140ms 120ms ease-in-out;
    -webkit-transition: all 140ms 120ms ease-in-out;
    -o-transition: all 140ms 120ms ease-in-out;
}
.other-product:hover{
    opacity: .8;
    transition: all 140ms 120ms ease-in-out;
    -moz-transition: all 140ms 120ms ease-in-out;
    -webkit-transition: all 140ms 120ms ease-in-out;
    -o-transition: all 140ms 120ms ease-in-out;
}
.other-product div.d-flex .item{
    font-size: 1.1rem;
    color: #0d0d0d;
    z-index: 10;
}
.other-product div.d-flex .item::before{
    content: '';
    background: rgba(248, 244, 241, .9);
    width: 212px;
    height: 50px;
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translate(-50%) scale(1);
    z-index: -10;
    transition: all ease-in-out 420ms;
}
.other-product:hover div.d-flex .item::before{
    content: '';
    background: rgba(248, 244, 241, .9);
    width: 85px;
    height: 50px;
    position: absolute;
    top: -52%;
    left: 50%;
    transform: translate(-50%) scale(3);
    transition: all ease-in-out 420ms;
}


/* HOME CONT CATEGORIES 2 */
.row-height{
    height: 24rem;
}
.row-bg::before{
    content: "";
    background: #f7f7f7;
    width: 100%;
    position: absolute;
    top: 4rem;
    left: -4rem;
    z-index: 0;
    height: 26rem;
}
.content-cat__text {
    display: block;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
}


/* HOME CONT ALERTE */
.home_cont_alertes {
    padding: 40px 10px;
    background: #1f1a17;
    text-align: center;
}


/* FOOTER */
.cont_coordonnees{
    background-color: #fff;
}
/* .cont_coordonnees .container *{
    color: #111;
} */
.cont_coordonnees .container a{
    color: #fff;
    width: auto;
}
i.icon {
    width: auto;
    font-size: 1.4rem;
}
footer{
    background: #fff;
    padding-top: 0;
}
footer .liens_left a{
    color: #000;
}
footer .liens_right a img{
    filter: invert(1);
}


body.contact .map > div#map {
    z-index: -1;
}


/* NO BREADCRUMB */
.breadcrumb-cms {
    display: none;
}


/* FIXED BUTTON WIDTH SIDEBAR */
.agence .sidebar {
    width: 28%;
}
.sidebar .group_btn a {
    width: 100%;
    margin: 10px 0;
}
aside address .group_btn a {
    width: 100%;
    font-size: 15px;
    padding: 1rem;
    margin: 1rem 0;
}


/* PAGE AGENCE */
.agence .col__text {
    font-size: 1.2rem;
    letter-spacing: 0.6px;
    color: #1D1D1D;
}
/* spacing large col */
.agence .my--large{
    margin: 6rem 0 !important;
}
.content-agence__img img{
    width: auto;
    height: 200px !important;
}


/* PAGE CONTACT / ON VOUS RAPPELLE */
.c_appelhoraires{
    display: none;
}


/* PAGE LISTING */
/* no breadcrumb */
body[class*="listing-"] .breadcrumb-cms{
    display: none;
}
body[class*="listing-"] .action_bar > div.d-flex{
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
}
body[class*="listing-"] .block_info{
    padding: 2rem;
}


/* TOP PAGE */
.agence .top_page,
.prestations .top_page
{
    display: none;
}


/*PAGE DETAILS*/
.detail_taber .nav-link {
    padding: 10px;
}
.detail_taber .nav-link.active,
.detail_taber .nav-link:hover {
    background: #8c9f96 !important;
    color: #fff;
    padding: 10px;
}
.detail_taber {
    border-bottom: 1px solid #8c9f96;
}
.detail_header .titre:after {
    background: #8c9f96;
}
.detail_header .crit span:nth-child(1) {
    font-weight: 600;
}
.retour_pret {
    font-size: 25px;
    font-weight: 700;
    color: #8c9f96;
}
.retour_pret span {
    color: #8c9f96;
}
.detail .page_heading {
    font-size: 22px;
    font-weight: 500;
    border-left: 2px solid #8c9f96;
    padding-left: 10px;
}
.detail .info_titre {
    text-transform: inherit;
}
.detail .info_prix {
    padding: 0;
}
.detail .header-item {
    padding: 0;
}
.lafficheur li:hover, .lafficheur li.active {
    background-color: #8c9f96 !important;
}
.table-warning,
.table-warning>td,
.table-warning>th {
    background-color: #8c9f96 !important;
}
.detail #descdetail{
    text-align: justify;
}
/*MISE EN FORME TABLEAU DETAILS*/
.detail .attribut_label0 {
    position: relative;
    background: #fff;
}
.detail .bloc-champ{
    background: #fff;
}
.detail_header_sticky {
    height: auto;
    padding: 1rem 0;
}
.form-style {
    border-bottom: 1px solid #aaa !important;
}
.form-group.c_message .form-style {
    border: 1px solid #aaa !important;
}
body.detail .nav-link.active span{
    color: #F9F9F9;
}
.detail .btn-primary::before,
.detail .btn-primary::after{
    content: none;
}


/* RESPONSIVE */
@media screen
    and (min-width: 992px){
    .bgAccueil {
        background-position-y: 10rem !important;
    }
    .header .not-sticking {
        background: rgba(255, 255, 255, 1);
        /* border-bottom: #8c9f96 8px solid; */
    }
    /* harmonic space nav>li */
    .not-sticking .navbar-nav{
        top: 1.4rem;
    }
    .navbar-nav{
        justify-content: space-evenly;
        width: 100%;
    }
    nav.menu ul li {
        display: inline-block;
        margin: 0 .6rem;
    }
    .menu ul > li > a {
        padding: 12px 10px;
        line-height: 1.2;
        color: #000;
    }
    .index .not-sticking .menu ul > li > a {
        color: #000;
    }
    .header__logo {
        /* display: block; */
        height: 100px;
        padding: 20px;
    }
    /* coordonnees */
    .navbar-second__coordonnees.mobile-view{
        display: none;
    }
    .navbar-second__coordonnees.desktop-view{
        display: block;
    }
    .navbar-second__coordonnees .navbar-coordonnees__name p,
    .navbar-second__coordonnees .navbar-coordonnees__tel a
    {
        font-size: 1.2rem;
    }
    /* NAVBAR */
    /* not-sticking */
    .not-sticking .navbar {
        display: flex;
        padding: 0;
        /* flex-direction: column; */
        justify-content: center;
    }
    .navbar-brand{
        width: 50%;
    }
    .not-sticking .navbar-brand img{
        width: 100%;
    }
    /* sticking */
    .sticking .navbar{
        padding: 0;
        flex-direction: row;
        background: #decaba;
    }
    .sticking .navbar-brand img{
        width: 16%;
        margin: auto;
        display: block;
        height: 100%;
    }
    .sticking .navbar .navbar-collapse{
        margin-top: 0 !important;
    }
    .sticking .navbar .navbar-collapse .navbar-nav{
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        align-items: center !important;
    }
    /* nav-link color */
    .sticking .navbar .nav-item .nav-link{
        color: #F9F9F9 !important;
    }
    .sticking .navbar .nav-item.active .nav-link{
        color: #9b9383 !important;
    }
    /* show coordonnees */
    .sticking .navbar-second__coordonnees.mobile-view {
        display: block;
    }
    /* overwrite color */
    .sticking .navbar-second__coordonnees .border {
        width: 100%;
        color: #F9F9F9 !important;
        border: 1px solid #F9F9F9 !important;
    }
    .sticking .navbar-second__coordonnees .border .navbar-coordonnees__tel a{
        color: #F9F9F9 !important;
    }

}


/* Mobile sm + md */
@media only screen
    and (max-width : 768px) {
    /* .header__logo img{
        width: 30%;
        margin: 0;
    } */

    .index .bgAccueil {
        background: none !important;
    }
    .btn{
        white-space: inherit !important;
    }
    .sticking .navbar-nav{
        background: #decaba;
        margin-bottom: 0!important;
    }
    /* center logo mobile */
    .header__logo{
        width: calc(100% - 50px);
        display: block;
    }
    /* logo size header */
    .navbar-brand img{
        width: 50%!important;
        margin: 4px 0;
    }
    /* logo size others pages */
    .header__logo .img-fluid {
        width: 24%!important;
        margin: 4px 0;
    }
    .not-sticking .site-pusher {
        background-color: transparent!important;
        padding: 0;
    }
    /* navbar responsive */
    nav.navbar {
        display: block;
        /* padding: 1rem 0; */

    }
    /* sticking */
    .sticking .navbar{
        /* padding: 0; ///// comment to display navbar on mobile */
        flex-direction: row;
        background: #decaba;
    }
    .sticking .navbar-brand img {
        width: 28%!important;
    }
    .collapse.show {
        display: block;
        /* background-color: #fff; */
        height: auto;
        top: 12px;
    }
    /* padding li */
    li.nav-item.dropdown {
        padding: 0.8rem 0;
    }
    li.nav-item {
        padding: 0.4rem 0.8rem;
    }
    .nav-item.active::before {
        content: none;
    }
    /* reorder dropdown */
    nav.navbar {
        display: block;
        padding: 4rem 0;
    }
    .container-fluid a.navbar-brand {
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        top: -.5rem;
    }
    .container-fluid > div.navbar-left > .navbar-nav > li.nav-item:first-child {
        margin-top: 4rem;
    }
    /* background when open li */
    ul.dropdown-menu {
        background: #e0e0e0;
        box-shadow: none!important;
    }
    /* btn position fix */
    button.navbar-toggler{
        left: 10px;
        position: absolute;
        top: 10px;
        z-index: 9999;
    }
    /* coordonnees */
    .navbar-second__coordonnees.mobile-view{
        display: block !important;
        width: 100% !important;
        margin: 2rem 0 0 !important;
        text-align: center !important;
        padding: 1rem !important;
        position: initial !important;
        right: 0 !important;
        top: 0 !important;
    }
    .navbar-second__coordonnees.desktop-view{
        display: none;
    }
    .navbar-second{
        display: none;
    }

    /* baseline */
    .baseline {
        height: 5rem;
        width: 90%;
    }
    .baseline .baseline__head p{
        font-size: 1.5rem !important;
    }

    .moteur{
        top:30%;
    }
    .prod_accueil article {
        border: none;
        width: calc(100% - 20px) !important;
        margin: 10px;
        background: #fff;
        color: #111;
    }
    .home_cont_presentation .container {
        height: auto;
    }
    .prez-bg {
        background: rgba(255,255,255,1);
        padding: 50px;
        color: #2062ae;
        top: 160px;
    }

    .btn-primary::before,
    .btn-primary::after{
        content: none;
    }

    /* pres */
    .index-presentation .col-sm-12.col-md-7{
        padding: 2rem !important;
    }
    .col-bg--right::before,
    .col-bg--left::before{
        content: none;
    }


    /* HOME CONT CATEGORIES */
    .other-product {
        height: 180px;
    }


    /* PAGE AGENCE */
    .agence .push-to-right{
        width: 100%;
    }

    /* PAGE EXPERTISE */
    /* fix width input */
    .form-group.c_cp,
    .form-group.c_ville {
        width: 100%;
    }


    /* PAGE PRESTATIONS */
    .prestations > .container-fluid,
    .agence > .container-fluid{
        margin-top: 8rem;
    }
}


/* iPad */
@media only screen
  and (min-device-width: 768px)
  and (max-device-width: 992px) {
    /* .header__logo img{
        width: 30%;
        margin: 0;
    } */

    .index .bgAccueil {
        background: none !important;
    }
    .btn{
        white-space: inherit !important;
    }
    .sticking .navbar-nav{
        background: #decaba;
        margin-bottom: 0!important;
    }
    /* center logo mobile */
    .header__logo{
        width: calc(100% - 50px);
        display: block;
    }
    /* logo size header */
    .navbar-brand img{
        width: 50%!important;
        margin: 4px 0;
    }
    /* logo size others pages */
    .header__logo .img-fluid {
        width: 24%!important;
        margin: 4px 0;
    }
    .not-sticking .site-pusher {
        background-color: transparent!important;
        padding: 0;
    }
    /* navbar responsive */
    nav.navbar {
        display: block;
        /* padding: 1rem 0; */

    }
    /* sticking */
    .sticking .navbar{
        /* padding: 0; ///// comment to display navbar on mobile */
        flex-direction: row;
        background: #decaba;
    }
    .sticking .navbar-brand img {
        width: 28%!important;
    }
    .collapse.show {
        display: block;
        /* background-color: #fff; */
        height: auto;
        top: 12px;
    }
    /* padding li */
    li.nav-item.dropdown {
        padding: 0.8rem 0;
    }
    li.nav-item {
        padding: 0.4rem 0.8rem;
    }
    .nav-item.active::before {
        content: none;
    }
    /* reorder dropdown */
    nav.navbar {
        display: block;
        padding: 4rem 0;
    }
    .container-fluid a.navbar-brand {
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        top: -.5rem;
    }
    .container-fluid > div.navbar-left > .navbar-nav > li.nav-item:first-child {
        margin-top: 4rem;
    }
    /* background when open li */
    ul.dropdown-menu {
        background: #e0e0e0;
        box-shadow: none!important;
    }
    /* btn position fix */
    button.navbar-toggler{
        left: 10px;
        position: absolute;
        top: 10px;
        z-index: 9999;
    }
    /* coordonnees */
    .navbar-second__coordonnees.mobile-view{
        display: block !important;
        width: 100% !important;
        margin: 2rem 0 0 !important;
        text-align: center !important;
        padding: 1rem !important;
        position: initial !important;
        right: 0 !important;
        top: 0 !important;
    }
    .navbar-second__coordonnees.desktop-view{
        display: none;
    }
    .navbar-second{
        display: none;
    }

    /* baseline */
    .baseline {
        height: 5rem;
        width: 90%;
    }
    .baseline .baseline__head p{
        font-size: 1.5rem !important;
    }

    .moteur{
        top:30%;
    }
    .prod_accueil article {
        border: none;
        width: calc(100% - 20px) !important;
        margin: 10px;
        background: #fff;
        color: #111;
    }
    .home_cont_presentation .container {
        height: auto;
    }
    .prez-bg {
        background: rgba(255,255,255,1);
        padding: 50px;
        color: #2062ae;
        top: 160px;
    }

    /* pres */
    .index-presentation .col-sm-12.col-md-7{
        padding: 2rem !important;
    }
    .col-bg--right::before,
    .col-bg--left::before{
        content: none;
    }


    /* HOME CONT CATEGORIES */
    .other-product {
        height: 180px;
    }


    /* PAGE AGENCE */
    .agence .push-to-right{
        width: 100%;
    }

    /* PAGE EXPERTISE */
    /* fix width input */
    .form-group.c_cp,
    .form-group.c_ville {
        width: 100%;
    }


    /* PAGE PRESTATIONS */
    .prestations > .container-fluid,
    .agence > .container-fluid{
        margin-top: 8rem;
    }

}


/* iPad Pro */
@media only screen
  and (min-device-width: 1024px)
  and (max-device-width: 1366px){
    .index .bgAccueil {
        background: none !important;
    }
    /* .header__logo img{
        width: 30%;
        margin: 0;
    } */

    /* center logo mobile */
    .header__logo{
        width: calc(100% - 50px);
        display: block;
    }
    /* logo size header */
    .navbar-brand img{
        width: 36%!important;
        margin: 4px 0;
    }
    .sticking .navbar-brand img{
        width: 14%!important;
        margin: auto;
    }
    /* logo size others pages */
    .header__logo .img-fluid {
        width: 24%!important;
        margin: 4px 0;
    }
    .not-sticking .site-pusher {
        background-color: transparent!important;
        padding: 0;
    }
    /* reorder dropdown */
    .navbar {
        display: block !important;
        padding: 4rem 0 !important;
    }
    .navbar > .container-fluid{
        justify-content: center;
    }
    .container-fluid a.navbar-brand {
        position: absolute;
        left: 50%;
        transform: translate(-50%, -70%);
        top: 0px;
    }
    .container-fluid > div.navbar-left.show > .navbar-nav > li.nav-item:first-child {
        margin-top: 4rem;
    }
    .navbar-second{
        display: flex;
    }
    .navbar-second .navbar-second__coordonnees .borderr {
        width: 50%;
    }
    /* .sticking .navbar-nav{
        background: #decaba;
    } */
    .collapse.show {
        display: block;
        background-color: #fff;
    }
    .navbar-left .navbar-nav{
        margin-right: auto !important;
        margin-left: 0 !important;
    }
    .navbar-right .navbar-nav{
        margin-right: 0 !important;
        margin-left: auto !important;
    }
    /* padding li */
    li.nav-item.dropdown {
        padding: 0.8rem 0;
    }
    /* background when open li */
    ul.dropdown-menu {
        background: #e0e0e0;
        box-shadow: none!important;
    }
    .nav-item.active::before {
        content: none;
    }
    /* btn position fix */
    button.navbar-toggler{
        left: 10px;
        position: absolute;
        top: -10px;
        z-index: 99;
    }
    /* end navbar responsive */


    .moteur{
        top:30%;
    }


    .prod_accueil article {
        border: none;
        width: calc(50% - 20px) !important;
        margin: 10px;
        background: #fff;
        color: #111;
    }


    .home_cont_presentation .container {
        height: auto;
    }
    .prez-bg {
        background: rgba(255,255,255,1);
        padding: 50px;
        color: #2062ae;
        top: 160px;
    }
    /* pres */
    .index-presentation .col-sm-12.col-md-7{
        padding: 2rem !important;
    }

    /* PAGE EXPERTISE */
    /* fix width input */
    .form-group.c_cp,
    .form-group.c_ville {
        width: 100%;
    }

}


/* ------------------------------------------------------------------------------------------------------------------------------- */
/*                                                               REF BY LoLo                                                       */
/* ------------------------------------------------------------------------------------------------------------------------------- */
#referencement .home_heading {
    line-height: 2.8rem;
}
.listeliens ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.listeliens ul li{
    width: calc(100% / 3);
    /* si 3 colonnes */
}

.listeliens a {
  color:#5E7F71;
}

.listeliens a:hover {
text-decoration: underline;
}

.ref p, .page2ref p {
text-align:justify;
}

.ref h2, .page2ref h2 {
font-size:24px;
padding:10px 0px 15px 0px;
}

.vente-maison-aix-en-provence .top_page {
background-image: url(../images/top_page/image_top.jpg);
}

.vente-appartement-aix-en-provence .top_page {
    background-image: url(../images/top_page/image_top.jpg);
    }

    .estimation-aix-en-provence .top_page {
        background-image: url(../images/top_page/image_top.jpg);
        }

.ensavoirplus {
color:black;
}

.ensavoirplus:hover{
color:grey;
}

.page2ref .liste-seo3 li {
    font-size:12px;
    }


/*  PAGE LISTING */

.page-item.active .page-link {
    color: #8c9f96;
    background-color: transparent;
    border: 1px solid #8c9f96;
}
.page-link {

    color: #8c9f96;
    background-color: transparent;
}

.page-item.active .page-laulau {
    color: #8c9f96;
    background-color: transparent;
    border: 1px solid #8c9f96;
}

.page-laulau {

    color: #8c9f96;
    background-color: transparent;
}
.page-item.disabled .page-link {
  color: #868e96;
  pointer-events: none;
  background-color: transparent;
  border-color: transparent;
}

.page-item a {
    display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  }
