/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*style*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
  width: device-width;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

:root {
  --body : #020203;
  --white : white;
  --black : black;
  --light : #cbccc4;
  --colorP : #d6bb7a;
  --colorS  : #111111;
}
body {
    margin: 0;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    background-color: var(--white);
    color: var(--body);
    -webkit-font-smoothing: antialiased;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
	color: inherit;
  background-color: transparent;
  text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

a:hover {
    text-decoration: none;
    outline: 0;
    color: inherit;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}
img {
  vertical-align: middle;
  border-style: none;
  height: auto;
  max-width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}
h1, h2, h3,
.h1, .h2, .h3 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}
h1 {
    font-size: 30px;
}
h2, .h2 {
    font-size: 22px;
    font-weight: bold;
    color: #986e0a;
}
h3, .h3 {
    font-size: 18px;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.flex-block {
  display: -ms-flexbox !important;
  display: flex !important;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

#mail,
#mail2 {
	display: none;
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.col-2 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.Tablet #footer .col-4,
.Mobile .col-3,
.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.Tablet #footer .col-4:last-child,
.Mobile #footer .col-4,
.Tablet .sectionTh_ .col-6,
.Mobile .sectionTh_ .col-6,
.Tablet .blockFirst .col-6,
.Mobile .blockFirst .col-6 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.Desktop .pr-5,
.Desktop .px-5 {
  padding-right: 3rem !important;
}
.header .flex-block {
  justify-content: space-between;
  align-items: center;
}
.Mobile .flex-block .logo img {
    width: 200px;
}
.telTop {
    display: flex;
}
.telTop > div {
    margin-left: 15px;
    font-size: 26px;
}
.telTop span {
    display: block;
    font-weight: bold;
    padding: 7px 0;
    color: var(--white);
}
.rappel-top {
    position: relative;
    padding-left: 80px;
}
.Mobile .rappel-top {
    padding: 20px;
    text-align: center;
}
.rappel-top::before {
  background-image: url(../images/img/call.webp);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 100%;
  border: 1px solid var(--colorP);
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
}
.Mobile .rappel-top::before {
    position: static;
    display: block;
    transform: none;
    margin: auto;
}
.rappel-top strong {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--colorP);
    display: block;
}
.Mobile .rappel-top strong {
    color: #645739;
}
#rappel_immediat .form-group {
    display: flex;
}
.Mobile #rappel_immediat .form-group {
    justify-content: center;
}
#rappel_immediat .form-control {
    font-size: 12px;
    font-weight: bold;
    min-width: 200px;
    flex: 0 0 200px;
}
.btn.btn-submit {
    background: var(--colorP);
    border: 1px solid transparent;
    color: var(--black);
    font-size: 12px;
    padding: 7px 15px;
    border-radius: 3px;
    letter-spacing: 1px;
    font-weight: bold;
    margin-left: 2px;
}
.Mobile-tel {
    text-align: center;
}
.Mobile-tel img {
    display: inline-block;
    margin-top: -3px;
    margin-right: 2px;
}
.Mobile-tel a {
    color: var(--colorP);
    margin: 0 10px;
    font-size: 18px;
    font-weight: bold;
    padding: 11px 0;
    display: inline-block;
}
/*
Header
*/
.header {
    background: black;
    position: relative;
    z-index: 999 !important;
}
.Tablet .header,
.Mobile .header {
    position: fixed;
    width: 100%;
}
.logo {
    display: inline-block;
    padding: 15px 0;
}
.nav {
    background: var(--colorP);
}
@media (min-width: 1200px) {
    .nav-list {
        max-width: 1600px;
    }
}
.nav-list {
    display: table;
    margin: 0 auto;
    padding: 0 30px;
    list-style: none;
    width: 100%;
}
.nav-item {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    transition: all .3s ease;
}
.nav-submenu {
    display: none;
    position: absolute;
    background-color: var(--white);
    list-style: none;
    padding-left: 0;
    min-width: 280px;
    top: 100%;
    z-index: 90;
}
.nav-item:hover .nav-submenu {
    display: block
}
.nav-item > a {
    display: block;
    padding: 7px 10px;
    line-height: 130%;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all .3s ease;
}
.nav-item:hover,
.nav-item.active {
    background-color: var(--white);
}
.nav-item:hover > a,
.nav-item.active > a {
    color: var(--black);
}
.nav-submenu-item {
    padding: 4px 15px;
    transition: all .3s ease;
}
.nav-submenu-item:hover,
.nav-submenu-item.active {
    background-color: var(--black);
}
.nav-submenu-item:hover > a,
.nav-submenu-item.active > a {
    color: var(--white);
}
.nav-submenu-item > a {
    border-bottom: 1px dashed #ddd;
    display: block;
    padding-bottom: 5px;
    line-height: 130%;
    letter-spacing: 1px;
    font-size: 14px;
}
.nav-submenu-item:last-child > a {
    border-bottom: none;
}

.nav-mobile {
  display: none;
  cursor: pointer;
    background: url(../images//nav.svg) no-repeat 55px center;
    background-size: 18px;
    height: 50px;
    width: 80px;
    color: white;
    line-height: 50px;
}
.nav-click {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  border-left: 1px solid var(--colorP);
  height: 49px;
  width: 50px;
  cursor: pointer;
}

.nav-click i {
  display: block;
  height: 35px;
  width: 48px;
  background: url(../images/drop.svg) no-repeat center center;
  background-size: 20px;
}

.nav-click:hover {
  background-color: var(--colorP);
}
@media only screen and (max-width: 991px) {
  .nav-mobile {
    display: block;
  }
  .nav {
    position: absolute;
    top: 100%;
  }

  .nav-list {
    display: none;
  }

  .nav-item {
    width: 100%;
    display: block;
  }

  .nav-item > a {
    letter-spacing: 0;
  }

  .nav-click {
    display: block;
  }

  .nav-item:hover .nav-submenu {
    display: none;
  }

  .nav-submenu {
    position: static;
    width: 100%;
  }
}
.Tablet .nav {
    right: 0;
}
/*
Homeslider
*/
.slideHome,
.slideBG {
    height: 750px;
    position: relative;
}
.ImgSlider {
    background-color: var(--black);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 750px;
    width: 100%;
}
.Mobile .ImgSlider,
.Mobile .slideHome,
.Mobile .slideBG {
    height: 450px;
}
.banner,
.banner .ImgSlider {
    height: 450px;
}
.Tablet .banner, 
.Tablet .banner .ImgSlider {
    height: 550px;
}
.catpionSlider {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}
.Mobile .catpionSlider,
.Tablet .catpionSlider {
    top: 64%;
}
.catpionSlider .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.leftText {
    max-width: 600px;
    flex: 0 0 600px;
    text-align: center;
}
.Tablet .leftText {
    max-width: 400px;
    flex: 0 0 400px;
    text-align: center;
}
.Mobile .leftText {
  max-width: 90%;
  flex: 0 0 90%;
}
.titleSlider {
    background: var(--colorP);
    padding: 5px 15px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1rem;
}
p.subtitleS {
    font-size: 3.5rem;
    line-height: 130%;
    font-weight: bold;
    color: var(--white);
    text-shadow: 0 0 9px black;
}
.Tablet p.subtitleS {
    font-size: 2.7rem;
}
.Mobile p.subtitleS {
    font-size: 1.7rem;
}
.rightDevis {
    max-width: 450px;
    flex: 0 0 550px;
}
.Tablet .rightDevis {
    max-width: 380px;
    flex: 0 0 380px;
}
.item-devis {
    background: rgb(255 252 252 / 80%);
    padding: 50px;
    border-radius: 7px;
}
.Tablet .item-devis,
.Mobile .item-devis {
    padding: 20px;
}
.item-devis b.h3 {
    display: block;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}
.Tablet .inline-b,
.Desktop .inline-b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px;
}
#FormDevis .form-control {
    margin-bottom: 12px;
    padding: 10px 15px;
    height: auto;
}
#FormDevis .form-control {
    background: rgb(255 255 255 / 34%);
    margin-bottom: 5px;
    padding: 10px 15px;
    height: auto;
    color: var(--black);
    border-color: var(--colorP);
    transition: all .3s ease;
}
#FormDevis .form-control:focus {
    border-color: var(--colorS);
    box-shadow: none;
    outline: none;
}
#FormDevis textarea.form-control {
    resize: vertical;
    max-height: 150px;
}
.btn.btn-devis {
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
    padding: 10px 25px;
    border-radius: 7px;
    background: var(--colorS);
    color: var(--white);
    margin-top: 5px;
    width: 100%;
    font-weight: bold;
}
a.btn.btn-rea {
    display: inline-block;
    background: var(--colorS);
    color: var(--white);
    padding: 15px 35px;
    letter-spacing: 1px;
    font-weight: bold;
    border-radius: 7px;
    transition: all .3s ease;
}
a.btn.btn-rea:hover {
    transform: scale(1.1);
    background: var(--colorP);
    color: var(--black);
}
/*
Content
*/
.engagements {
    padding: 60px 0 0;
}
.blocEng_ {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
    text-align: center;
}
.Tablet .blocEng_ {
    grid-template-columns: repeat(3, 1fr);

}
.Mobile .blocEng_ {
    grid-template-columns: repeat(2, 1fr);

}
.blocEng_ > div {
    border: 1px solid var(--colorP);
    padding: 20px;
    border-radius: 3px;
}
.blocEng_ img {
    width: 90px;
    margin-bottom: 1rem;
}
.blocEng_ span {
    display: block;
    font-weight: bold;
    text-align: center;
    line-height: 130%;
    letter-spacing: 1px;
    color: #645739;
}
.Tablet .blocEng_ span.logo_artisan,
.Mobile .blocEng_ span.logo_artisan {
    display: flex;
    align-items: center;
    justify-content: center;
}
section figure {
    margin: 0;
    position: relative;
}
.Desktop section figure::before {
    content: "";
    padding: 50px;
    border-style: solid;
    border-width: 2px 0 0 2px;
    border-color: var(--colorP);
    position: absolute;
    top: -3rem;
    left: -3rem;
}
.Desktop section figure::after {
    content: "";
    padding: 50px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: var(--colorP);
    position: absolute;
    bottom: -3rem;
    right: 0;
}
section figure img {
    transition: all .3s ease;
}
section figure:hover img {
    transform: scale(1.1);
}
.sectionP_ {
    padding: 80px 0 0;
}
.villes_.sectionP_ {
    padding-bottom : 80px;
}
.categories {
    position: relative;
    padding: 60px 0;
}
.Mobile .categories {
    padding-bottom: 20px;
}
.categories::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    background: var(--colorS);
    height: 250px;
}
.categories .container {
    position: relative;
    z-index: 3;
}
b.titre-h2 {
    display: block;
    text-align: center;
    color: var(--colorP);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 3rem;
}
.cat_ {
    display: block;
    height: 250px;
    background: #000000;
    margin: 15px 0;
    border-radius: 7px;
    position: relative;
    transition: all .3s ease-out;
    overflow: hidden;
}
.cat_::before {
    content: "";
    background: rgb(88 62 2 / 43%);
    position: absolute;
    transition: all .3s ease-out;
    top: 0;
    width: 100%;
    height: 100%;
}
.cat_:hover::before {
    background: rgb(88 62 2 / 70%);
}
.cat_ span {
    position: absolute;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    bottom: 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    line-height: 130%;
    letter-spacing: 1px;
    z-index: 4;
    color: white;
    text-shadow: 0 0 9px BLACK;
}
.sectionS_ {
    padding: 60px 0;
    margin-bottom: 80px;
    position: relative;
}
.Mobile .sectionS_ {
    padding: 20px 0;
    margin-bottom: 0;
}
.sectionTh_ {
    padding: 0 0 40px;
}
.villes_sectionTh_ {
    padding-top: 60px;
    border-top: 2px solid var(--colorP);
    border-bottom: 2px solid var(--colorP);
}
.bgBlockS_ {
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    background-position: center;
    right: 0;
    height: 100%;
    width: 70%;
    top: 0;
}
.Mobile .bgBlockS_ {
    position: static;
    height: 250px;
    width: 92%;
    margin: auto;
}
.blockS_ {
    max-width: 60%;
    background: var(--colorP);
    padding: 40px;
    box-shadow: 0 0 20px 0px rgb(0 0 0 / 28%);
    position: relative;
    z-index: 2;
}
.Mobile .blockS_ {
    padding: 20px;
    max-width: 100%;
}
.blockS_ h2 {
    color: var(--coloS);
}
.sectionTh_ .row {
    margin-top: 5rem;
    margin-bottom: 3rem;
}
.Tablet .rev-col,
.Mobile .rev-col {
    flex-direction: column-reverse;
}
/*
Footer
*/
#footer {
    background: var(--colorS);
    padding: 60px 0;
}
.lient-footer .logo--footer {
    display: block;
    border-bottom: 1px dashed var(--colorP);
    padding-bottom: 1rem;
}
.Tablet .lient-footer .logo--footer,
.Mobile .lient-footer .logo--footer {
    display: none;
}
b.titre-h3 {
    display: block;
    color: var(--colorP);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}
.Mobile b.titre-h3 {
    letter-spacing: 1px;
    margin-bottom: 0rem;
    border-top: 1px dashed;
    padding-top: 1rem;
}
.link-foot {
    list-style: none;
    padding-left: 0;
    margin: 0;
    color: var(--white);
}
.link-foot li {
    padding-bottom: 5px;
}
.link-foot a {
  display: block;
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--white);
  transition: all .3s ease;
}
.Mobile .link-foot a {
    padding-top: 11px;
    padding-bottom: 11px;
}
.link-foot li:hover a {
  color: var(--colorP)
}
.link-foot a::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 8px solid var(--colorP);
    border-bottom: 5px solid transparent;
    position: absolute;
    left: 0;
    top: 9px;
}
.Mobile .link-foot a::before {
    top: 20px;
}
.text-couvreur {
    color: #c1c1c1;
    border-top: 1px dashed var(--colorP);
    border-bottom: 1px dashed var(--colorP);
    margin-top: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 14px;
    line-height: 130%;
}
.lient-footer > div {
    margin-bottom: 1.5rem;
}
.Tel a,
.Tel span,
.adr,
.Mail a {
    display: flex;
    align-items: center;
    color: var(--white);
    line-height: 130%;
}
.Tel span,
.Tel a {
    display: block;
    margin: 18px 0;
    font-size: 21px;
}
.Tel a img,
.Tel span img,
.adr img,
.Mail img {
    margin-right: 7px;
}
.copyright {
    color: var(--white);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 2rem;
}
.copyright a {
    color: var(--colorP);
    text-decoration: underline;
}
/*
Avis
*/
#temoignages {
    padding: 100px 0;
}
b.titreAvis {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--colorS);
}
.block-avis {
    max-width: 500px;
    margin: 0 0 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 7px;
    text-align: center;
}
.btn.btn-temoin {
    border: 1px solid transparent;
    background: var(--colorS);
    padding: 7px 15px;
    display: inline-block;
    margin-top: 5px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 7px;
    font-weight: bold;
    transition: all .3s ease;
}
.btn.btn-temoin:hover {
    background: var(--colorP);
}

.temoin {
    background: #e7e7e7;
    color: var(--black);
    padding: 80px 0;
}
.Mobile .temoin {
    padding-top: 8rem;
}
.Desktop .temoin .grid-row {
    display: grid;
    grid-template-columns: 60% auto;
    grid-gap: 20px;
}
.col-right {
    border: 3px solid #0f4f62;
    padding: 20px;
}
.Desktop .col-right {
    margin-left: 1rem;
}
.temoin .item-tem {
    border-bottom: 1px solid rgb(98 98 98 / 20%);
    padding-bottom: 15px;
    margin-bottom: 1rem;
}
h1.Titrecontenu {
    font-size: 36px;
    margin-bottom: 2rem;
}
.Mobile h1.Titrecontenu {
    font-size: 22px;
}
h2.Titrecontenu {
    color: var(--colorS);
}
#avis_form {
    margin-top: 15px;
}

#avis_form label {
  display: block;
  margin-bottom: 8px
}

#avis_form .form-control {
  margin: 0 0 15px 0;
  width: 100%
}
#MonAvis span {
  font-size: 18px;
  color: v#1faed8;
  display: block;
}
.item-tem .avis {
  display:inline-block;
  vertical-align: top;
}

.avis a {
  width:10%;
  float:left;
  height:100%;

}
.avis > i {
  background: url('../images/img/rating-sprit.webp') no-repeat;
  display: inline-block;
  height: 23px;
  width: 120px;
  margin-right: 15px;
}
.avis-0 {
  background-position: 0 0 !important;
}
.avis-1 {
  background-position: 0 -25px !important;
}
.avis-2 {
  background-position: 0 -50px !important;
}
.avis-3 {
  background-position: 0 -75px !important;
}
.avis-4 {
  background-position: 0 -100px !important;
}
.avis-5 {
  background-position: 0 -125px !important;
}
.avis-6 {
  background-position: 0 -150px !important;
}
.avis-7 {
  background-position: 0 -175px !important;
}
.avis-8 {
  background-position: 0 -200px !important;
}
.avis-9 {
  background-position: 0 -225px !important;
}
.avis-10 {
  background-position: 0 -250px !important;
}

/*
Page 404
*/
/**
404
*/
.blog_pageIntrouvable {
    background: var(--light);
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 200000 !important;
    text-align: center;
    top: 0;
}
.blog_pageIntrouvable .d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.blog_pageIntrouvable span {
  color: var(--colorS);
}

.blog_pageIntrouvable > div {
  height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: var(--black);
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: var(--black);
}
.blog_pageIntrouvable a {
    color: var(--colorS);
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
@media(max-width: 767px) {
  .blog_pageIntrouvable {
    font-size: 14px;
  }
  .blog_pageIntrouvable a {
      display: block;
  }
  .blog_pageIntrouvable p {
      font-size: 17px;
      letter-spacing: 5px;
      margin-top: -10px;
  }
  .blog_pageIntrouvable h1 {
    font-size: 100px;
  }
}
.swipebox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    overflow: hidden;
    margin: 15px 0;
    border: 1px solid #ddd;
}
.Mobile .swipebox {
    height: inherit;
}

.Mobile #swipebox-close {
    right: 35%;
    width: 30px;
    height: 30px;
    background-position: 5px 2px;
    transform: translateX(-50%);
}
.page-realisation,
#mentionsL {
    padding: 60px 0;
}
.Tablet .page-realisation,
.Tablet #mentionsL {
    padding-top: 15rem;
}
.Mobile .page-realisation,
.Mobile #mentionsL {
    padding-top: 9rem;
}
.Tablet .page-realisation .col-3 {
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}
.Mobile .page-realisation .col-3 {
    -ms-flex: 0 0 100;
    flex: 0 0 100;
    max-width: 100;
}

b.titre-album {
    display: block;    
    color: #000;    
    font-size: 1.5rem;    
    margin-bottom: 1.5rem;
}
#Messages {
    background: var(--colorS);
    text-align: center;
    position: relative;
    z-index: 99;
}
#Messages p {
    color: var(--white);
    font-weight: bold;
    margin: 0;
    padding: 25px 0;
}


section.MapsGrand {
    width:1200px;
    margin:auto;
  }

  section.MapsPetit {
    margin-top:25px;
  }

  .Mobile section.MapsGrand {
    width:100%;
  }
  .Mobile section.MapsGrand iframe {
    width:100%;
  }
  div.GoogleBagde {
    position:fixed;
    bottom:10px;
    left:10px;
    border-radius:10px;
    box-shadow: 0px 0px 5px #333;
    z-index: 999999999;
  }

.jknrpz{
    background-color: #313131!important;
}
.gvzmKd{
    color: #fff!important;
}