:root {
  --couleur-fond:#1D1D1D;
  --couleur-texte:#ffffff;
  --couleur-secondaire-1:#6E6E6E;
}

body {
  font-family: "degular", sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 24px;
  background-color: var(--couleur-fond);
  color: #ffffff;
  letter-spacing: 1px;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

strong, b {
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

.calltoaction {
  display: inline-block;
  padding: 14px 25px 14px 65px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none !important;
  outline: none;
  color: var(--couleur-texte);
  font-size: 16px;
  line-height: 21px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.calltoaction:before {
  content: "";
  display: block;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 50px;
  z-index: -1;
}
.calltoaction:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 50px;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg clip-rule='evenodd' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' viewBox='-7 -7 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m14.523 18.787s4.501-4.505 6.255-6.26c.146-.146.219-.338.219-.53s-.073-.383-.219-.53c-1.753-1.754-6.255-6.258-6.255-6.258-.144-.145-.334-.217-.524-.217-.193 0-.385.074-.532.221-.293.292-.295.766-.004 1.056l4.978 4.978h-14.692c-.414 0-.75.336-.75.75s.336.75.75.75h14.692l-4.979 4.979c-.289.289-.286.762.006 1.054.148.148.341.222.533.222.19 0 .378-.072.522-.215z' fill-rule='nonzero'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.calltoaction:hover {
  color: var(--couleur-fond);
}
.calltoaction:hover:after {
  -webkit-transform: translateY(-50%) rotate(0);
      -ms-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}
.calltoaction:hover:before {
  width: 100% !important;
}
.owl-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.owl-carousel .owl-dots {
  padding: 10px 0;
  text-align: center;
}
.owl-carousel .owl-dots .owl-dot {
  outline: none;
}
.owl-carousel .owl-dots .owl-dot span {
  display: block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background-color: #fff;
  border: 1px solid var(--couleur-secondaire-1);
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span {
  background-color: var(--couleur-secondaire-1);
}
.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 10px 20px !important;
  background-color: var(--bs-primary) !important;
  border: 1px solid var(--bs-primary) !important;
  color: #fff !important;
  outline: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.owl-carousel .owl-nav button:hover {
  background-color: #fff !important;
  color: var(--bs-primary) !important;
}
.owl-carousel .owl-nav button.owl-prev {
  left: -48px;
}
.owl-carousel .owl-nav button.owl-next {
  right: -48px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  margin-bottom: 15px;
}

h1 {
  font-size: 60px;
  line-height: 84px;
}

h2 {
  font-size: 58px;
  line-height: 51px;
}
h2 strong, h2 b {
  font-weight: 600;
}

h3 {
  font-size: 30px;
  line-height: 30px;
}

.sub-menu {
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

header {
  margin-bottom: 22px;
}
header .content-menu-gauche, header .content-menu-droite {
  border-bottom: 2px solid #ffffff;
}
header .navbar-brand {
  font-size: 20px;
  line-height: 26px;
  color: var(--couleur-texte);
}
header .navbar-brand span:first-child {
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
}
header .menu-general {
  margin: 0;
  padding: 0;
  list-style: none;
}
header .menu-general ul {
  margin: 0;
  padding: 0;
}
header .menu-general > li {
  display: inline-block;
}
header .menu-general a {
  color: var(--couleur-texte);
  text-transform: uppercase;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  display: block;
  padding: 13px;
  text-decoration: none;
}
header .content-menu-gauche .menu-general a {
  font-weight: bold;
}

footer {
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  padding-bottom: 0;
}
footer .content-footer {
  border-top: 2px solid #ffffff;
}
footer .logo-footer {
  padding-top: 30px;
  font-size: 32px;
  line-height: 33px;
  font-weight: 300;
  letter-spacing: -0.63px;
  text-transform: uppercase;
}
footer .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .widget ul li a {
  color: var(--couleur-texte);
  font-size: 15px;
  line-height: 23px;
  text-transform: uppercase;
}
footer .widget a {
  color: #fff;
  text-decoration: underline;
}
footer .content-widget {
  padding-top: 30px;
  padding-left: 20px;
  height: calc(100% - 10px);
}
footer .content-widget .widget:not(:last-child) {
  margin-bottom: 45px;
}
footer .widgettitle {
  font-weight: bold;
}
#accroche-home .titre-accroche {
  margin-bottom: 60px;
}
#accroche-home .texte-accroche {
  margin-bottom: 40px;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}
#accroche-home .bloc-image {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#accroche-home .bloc-image img {
  display: block;
  margin: auto;
}
#accroche-home h1 {
  font-size: 78px;
  line-height: 74px;
}
#accroche-home .bloc-para-accroche {
  padding-top: 5vw;
}
#accroche-page .bloc-para {
  background-color: rgba(0, 0, 0, 0.8);
}

#zone-2-home {
  padding: 40px 0;
}
#zone-2-home .bloc-para {
  max-width: 1090px;
}
#zone-2-home .bloc-para .bloc-texte {
  max-width: 980px;
  margin-left: auto;
}

.bloc-cta-1 {
  padding: 40px 0;
  background-color: var(--couleur-secondaire-1);
}

.tobi-zoom__icon {
  display: none;
}

.mea-zone-2-home {
  max-width: 1600px;
  margin-left: auto;
}

.the-bloc-mea-1 {
  max-width: 400px;
}
.the-bloc-mea-1 .bloc-image {
  overflow: hidden;
  max-width: 100%;
  position: relative;
  background-color: var(--couleur-secondaire-1);
}
.the-bloc-mea-1 .bloc-image:before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  padding-top: 75%;
}
.the-bloc-mea-1 .bloc-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}
.the-bloc-mea-1 .bloc-image:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.the-bloc-mea-1 h3 {
  color: var(--couleur-texte);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.the-bloc-mea-1 h3:hover {
  color: var(--couleur-secondaire-1);
}
.the-bloc-mea-1 .more {
  position: relative;
  z-index: 1;
  color: var(--couleur-texte);
  font-size: 18px;
  line-height: 23px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  border-top: 2px solid var(--couleur-texte);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none !important;
}
.the-bloc-mea-1 .more:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -10px;
  width: 0;
  height: 100%;
  background-color: var(--couleur-texte);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}
.the-bloc-mea-1 .more svg {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.the-bloc-mea-1 .more:hover {
  color: var(--couleur-fond);
  border-top: transparent;
}
.the-bloc-mea-1 .more:hover:after {
  width: calc(100% + 20px);
}
.the-bloc-mea-1 .more:hover svg {
  fill: var(--couleur-fond);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.the-bloc-mea-3 h3 {
  color: var(--couleur-texte);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.the-bloc-mea-3 svg {
  fill: var(--couleur-texte);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.the-bloc-mea-3 a:hover h3 {
  color: var(--couleur-secondaire-1);
}
.the-bloc-mea-3 a:hover svg {
  fill: var(--couleur-secondaire-1);
}

#zone-3-home {
  margin-bottom: 60px;
  overflow: hidden;
  padding: 90px 0 0;
  height: 1540px;
  position: relative;
}
#zone-3-home .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
#zone-3-home .texte-zone-3-home {
  margin-top: 70px;
  max-width: 400px;
  width: 100%;
}
#zone-3-home .texte-zone-3-home h2 {
  font-size: 58px;
  line-height: 51px;
  font-weight: 300;
}
#zone-3-home .img-zone-3-home {
  position: absolute;
  -webkit-box-shadow: inset 0 0 5px #fff;
          box-shadow: inset 0 0 5px #fff;
}
#zone-3-home .img-zone-3-home:before {
  content: "";
  display: block;
  width: 100%;
}
#zone-3-home .img-zone-3-home a {
  top: 0;
  left: 0;
  overflow: hidden;
}
#zone-3-home .img-zone-3-home a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg clip-rule='evenodd' fill='rgb(110,110,100)' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m15.97 17.031c-1.479 1.238-3.384 1.985-5.461 1.985-4.697 0-8.509-3.812-8.509-8.508s3.812-8.508 8.509-8.508c4.695 0 8.508 3.812 8.508 8.508 0 2.078-.747 3.984-1.985 5.461l4.749 4.75c.146.146.219.338.219.531 0 .587-.537.75-.75.75-.192 0-.384-.073-.531-.22zm-5.461-13.53c-3.868 0-7.007 3.14-7.007 7.007s3.139 7.007 7.007 7.007c3.866 0 7.007-3.14 7.007-7.007s-3.141-7.007-7.007-7.007z' fill-rule='nonzero'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#zone-3-home .img-zone-3-home a:hover:before {
  top: 0;
}
#zone-3-home .img-zone-3-home img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
#zone-3-home .img-1 {
  max-width: 400px;
  width: 22vw;
  top: 83px;
  left: 10%;
  z-index: 2;
}
#zone-3-home .img-1:before {
  padding-top: 70%;
}
#zone-3-home .img-2 {
  max-width: 366px;
  width: 20vw;
  top: 230px;
  left: 23%;
  z-index: 1;
}
#zone-3-home .img-2:before {
  padding-top: 100%;
}
#zone-3-home .img-3 {
  max-width: 500px;
  width: 30vw;
  top: 0;
  right: 18%;
  z-index: 1;
}
#zone-3-home .img-3:before {
  padding-top: 70%;
}
#zone-3-home .img-4 {
  max-width: 460px;
  width: 24vw;
  top: 461px;
  right: 0;
  z-index: 1;
}
#zone-3-home .img-4:before {
  padding-top: 70%;
}
#zone-3-home .img-5 {
  width: 24vw;
  max-width: 440px;
  top: 740px;
  left: 0;
  z-index: 1;
}
#zone-3-home .img-5:before {
  padding-top: 70%;
}
#zone-3-home .img-6 {
  max-width: 500px;
  width: 27vw;
  top: 973px;
  left: 144px;
  z-index: 2;
}
#zone-3-home .img-6:before {
  padding-top: 65%;
}
#zone-3-home .img-7 {
  max-width: 480px;
  width: 26vw;
  top: 925px;
  right: 16%;
  z-index: 1;
}
#zone-3-home .img-7:before {
  padding-top: 65%;
}
#zone-3-home .img-8 {
  max-width: 270px;
  width: 15vw;
  top: 1147px;
  right: 143px;
  z-index: 1;
}
#zone-3-home .img-8:before {
  padding-top: 100%;
}

#zone-4-home {
  padding-bottom: 90px;
  padding-top: 60px;
}
#zone-4-home .content-zone-4-home {
  max-width: 1600px;
  margin-left: auto;
}
#zone-4-home .cta-zone-4-home .calltoaction {
  padding: 20px 10px 20px 100px;
  font-size: 22px;
  line-height: 30px;
}
#zone-4-home .cta-zone-4-home .calltoaction:before {
  width: 70px;
}
#zone-4-home .cta-zone-4-home .calltoaction:after {
  width: 75px;
  height: 100%;
}

#zone-5-home {
  margin-bottom: 20px;
}
#zone-5-home .content-zone-5-home {
  background-color: var(--couleur-secondaire-1);
  padding: 90px;
}
#zone-5-home .bloc-titre {
  border-bottom: 1px solid var(--couleur-texte);
  padding-bottom: 20px;
}
#zone-5-home .bloc-titre h1, #zone-5-home .bloc-titre h2, #zone-5-home .bloc-titre h3, #zone-5-home .bloc-titre h4, #zone-5-home .bloc-titre h5, #zone-5-home .bloc-titre h6 {
  font-size: 40px;
  line-height: 40px;
}
#zone-5-home .bloc-content-carousel {
  max-width: 1085px;
  width: 100%;
  padding-top: 50px;
  padding-left: 20px;
}
#zone-5-home .bloc-texte {
  width: 100%;
  max-width: 1000px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
  margin-bottom: 40px;
}
#zone-5-home .auteur {
  border-top: 1px solid var(--couleur-texte);
  padding-top: 15px;
}
#zone-5-home .auteur span {
  display: block;
}
#zone-5-home .auteur span.nom {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2.4px;
}
#zone-5-home .auteur span.ville {
  font-size: 15px;
  font-weight: 100;
}
#zone-5-home .content-carousel-zone-5-home .owl-nav button {
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-size: 121% !important;
  background-position: center;
  top: 40px;
}
#zone-5-home .content-carousel-zone-5-home .owl-nav button:hover {
  background-color: transparent !important;
}
#zone-5-home .content-carousel-zone-5-home .owl-nav .owl-prev {
  background-image: url("data:image/svg+xml,%3Csvg clip-rule='evenodd' fill='rgb(150,150,150)' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m9.474 5.209s-4.501 4.505-6.254 6.259c-.147.146-.22.338-.22.53s.073.384.22.53c1.752 1.754 6.252 6.257 6.252 6.257.145.145.336.217.527.217.191-.001.383-.074.53-.221.293-.293.294-.766.004-1.057l-4.976-4.976h14.692c.414 0 .75-.336.75-.75s-.336-.75-.75-.75h-14.692l4.978-4.979c.289-.289.287-.761-.006-1.054-.147-.147-.339-.221-.53-.221-.191-.001-.38.071-.525.215z' fill-rule='nonzero'/%3E%3C/svg%3E");
  left: auto;
  right: 70px;
}
#zone-5-home .content-carousel-zone-5-home .owl-nav .owl-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg clip-rule='evenodd' fill='rgb(255,255,255)' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m9.474 5.209s-4.501 4.505-6.254 6.259c-.147.146-.22.338-.22.53s.073.384.22.53c1.752 1.754 6.252 6.257 6.252 6.257.145.145.336.217.527.217.191-.001.383-.074.53-.221.293-.293.294-.766.004-1.057l-4.976-4.976h14.692c.414 0 .75-.336.75-.75s-.336-.75-.75-.75h-14.692l4.978-4.979c.289-.289.287-.761-.006-1.054-.147-.147-.339-.221-.53-.221-.191-.001-.38.071-.525.215z' fill-rule='nonzero'/%3E%3C/svg%3E");
}
#zone-5-home .content-carousel-zone-5-home .owl-nav .owl-next {
  left: auto;
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg clip-rule='evenodd' fill='rgb(150,150,150)' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m14.523 18.787s4.501-4.505 6.255-6.26c.146-.146.219-.338.219-.53s-.073-.383-.219-.53c-1.753-1.754-6.255-6.258-6.255-6.258-.144-.145-.334-.217-.524-.217-.193 0-.385.074-.532.221-.293.292-.295.766-.004 1.056l4.978 4.978h-14.692c-.414 0-.75.336-.75.75s.336.75.75.75h14.692l-4.979 4.979c-.289.289-.286.762.006 1.054.148.148.341.222.533.222.19 0 .378-.072.522-.215z' fill-rule='nonzero'/%3E%3C/svg%3E");
}
#zone-5-home .content-carousel-zone-5-home .owl-nav .owl-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg clip-rule='evenodd' fill='rgb(255,255,255)' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m14.523 18.787s4.501-4.505 6.255-6.26c.146-.146.219-.338.219-.53s-.073-.383-.219-.53c-1.753-1.754-6.255-6.258-6.255-6.258-.144-.145-.334-.217-.524-.217-.193 0-.385.074-.532.221-.293.292-.295.766-.004 1.056l4.978 4.978h-14.692c-.414 0-.75.336-.75.75s.336.75.75.75h14.692l-4.979 4.979c-.289.289-.286.762.006 1.054.148.148.341.222.533.222.19 0 .378-.072.522-.215z' fill-rule='nonzero'/%3E%3C/svg%3E");
}
#zone-5-home .content-carousel-zone-5-home .owl-dot.active span {
  background-color: var(--couleur-fond);
}
.bloc-galerie .image-galerie {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.bloc-galerie .image-galerie:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 75%;
}
.bloc-galerie .image-galerie a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.bloc-galerie .image-galerie a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg clip-rule='evenodd' fill='rgb(110,110,100)' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m15.97 17.031c-1.479 1.238-3.384 1.985-5.461 1.985-4.697 0-8.509-3.812-8.509-8.508s3.812-8.508 8.509-8.508c4.695 0 8.508 3.812 8.508 8.508 0 2.078-.747 3.984-1.985 5.461l4.749 4.75c.146.146.219.338.219.531 0 .587-.537.75-.75.75-.192 0-.384-.073-.531-.22zm-5.461-13.53c-3.868 0-7.007 3.14-7.007 7.007s3.139 7.007 7.007 7.007c3.866 0 7.007-3.14 7.007-7.007s-3.141-7.007-7.007-7.007z' fill-rule='nonzero'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.bloc-galerie .image-galerie a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bloc-galerie .image-galerie a:hover:before {
  top: 0;
}
.bloc-carousel .owl-item > div {
  width: 100%;
  max-width: 510px;
  margin: auto;
  position: relative;
  overflow: hidden;
}
.bloc-carousel .owl-item > div:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
  position: relative;
  top: 0;
  left: 0;
}
.bloc-carousel .owl-item > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bloc-temoignage .identite {
  font-weight: bold;
}
.bloc-temoignage .image {
  max-width: 180px;
}
.categorie-realisation ul, .liste-categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.categorie-realisation a, .liste-categories a {
  display: inline-block;
  margin: 10px !important;
  padding: 15px 25px !important;
  text-align: center;
  border: 1px solid var(--couleur-secondaire-1) !important;
  color: var(--couleur-texte) !important;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}
.categorie-realisation a:hover, .categorie-realisation a.current, .liste-categories a:hover, .liste-categories a.current {
  background-color: #fff !important;
  color: var(--couleur-fond) !important;
}
.categorie-realisation .liste, .liste-categories .liste {
  display: none;
}
.zone-widget-partage-rs h3 {
  font-size: 50px;
  font-weight: 600;
  line-height: 55px;
}

.liste-pagination {
  width: 100%;
}
.liste-pagination .pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination .page-item .page-link {
  color: var(--couleur-secondaire-1);
}

.pagination .page-item.active .page-link {
  background-color: var(--couleur-secondaire-1);
  border-color: var(--couleur-secondaire-1);
  color: #fff;
}
.bloc-mea-2 h3:hover {
  color: var(--couleur-secondaire-1);
}
.bloc-mea-2 a {
  color: var(--texte);
}

#breadcrumbs {
  padding: 20px 0;
}
#breadcrumbs a {
  color: var(--couleur-texte);
}

.tobi__slider__slide__content > figure > figcaption {
  display: none !important;
}

/* WordPress Core*/
/*-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/***********
RESPONSIVE 
************/
@media only screen and (max-width: 992px) {
  .sub-menu {
    position: relative;
    top: 0;
    opacity: 1;
    visibility: visible;
  }
  #zone-3-home {
    padding: 0 0 30px;
    height: auto;
  }
  #zone-3-home .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
  #zone-3-home .img-zone-3-home {
    position: relative;
    width: 100%;
    display: block;
    margin: 10px auto;
    top: 0;
    left: 0;
    right: 0;
  }
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 38px;
    line-height: 40px;
  }
  #accroche-home h1 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 576px) {
  h1 {
    font-size: 34px;
    line-height: 40px;
  }
  h2 {
    font-size: 30px;
    line-height: 32px;
  }
  #zone-3-home .texte-zone-3-home {
    margin-bottom: 30px;
  }
  #zone-3-home .texte-zone-3-home h2 {
    font-size: 30px;
    line-height: 32px;
  }
  #zone-5-home {
  }
  #zone-5-home .bloc-titre {
  }
  #zone-5-home .bloc-titre h1, #zone-5-home .bloc-titre h2, #zone-5-home .bloc-titre h3, #zone-5-home .bloc-titre h4, #zone-5-home .bloc-titre h5, #zone-5-home .bloc-titre h6 {
    font-size: 32px;
    line-height: 35px;
  }
  .img-4, .img-5, .img-6, .img-7, .img-8 {
    display: none !important;
  }
  .content-zone-5-home {
    padding: 15px !important;
  }
  .the-bloc-mea-1, .the-bloc-mea-2 {
  }
  .the-bloc-mea-1 h3, .the-bloc-mea-2 h3 {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (min-width: 768px) {
  footer {
  }
  footer .content-widget {
    border-left: 2px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .bloc-para-accroche {
    max-width: 590px;
  }
  .content-texte-accroche {
    max-width: 370px;
  }
  .texte-accroche {
    max-width: 470px;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1730px;
  }
}