@font-face {
  font-family: "Hel";
  src: url(../fonts/Helvetica.ttf);
  font-weight: normal;
}
@font-face {
  font-family: "Hel";
  src: url(../fonts/Helvetica-Bold.ttf);
  font-weight: bold;
}
@font-face {
  font-family: "Hel O";
  src: url(../fonts/Helvetica-Oblique.ttf);
}
@font-face {
  font-family: "ITC";
  src: url(../fonts/ITCAvantGardeStd-Bk.otf);
}
html {
  scroll-behavior: smooth;
}

button.main-btn.button.js__shoppingcart__button-add-to-cart{
  color:black;
}
h3.title-product a {
  font-family: var(--main-typo3);
  font-size: 30px;
  color: var(--main-color1);
  font-weight: 700;
}
h3.title-product a:hover {
  color: var(--main-color3);
}
#breadcrumbs a { color: var(--main-color3); font-weight: 700; }
#breadcrumbs > span:last-child { color: var(--main-color3); padding-left: 0; }

/*Composants*/
.container {
  padding: 0 90px;
  max-width: 100%;
}
body .shoppingcart-container.js__checkout__block .buttons button{
  color:black;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.main-btn, .shoppingcart-container.js__checkout__block .buttons button {
  font-family: var(--main-typo3);
  text-transform: uppercase;
  position: relative;
  display: block;
  padding: 15px 30px;
  text-align: center;
  color: var(--main-color3);
  background: none;
}
.main-btn span {
  position: relative;
  z-index: 1;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.main-btn::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  background: var(--main-color1);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.main-btn::after, .shoppingcart-container.js__checkout__block .buttons button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border: 1px solid var(--main-color3);
}
.main-btn.black::before {
  background: var(--main-color3);
}
.main-btn.white::before {
  background: var(--main-color2);
}
.main-btn.white:hover {
  color: var(--main-color1) !important;
}
.main-btn:hover {
  color: var(--main-color2) !important;
}
.main-btn:hover::before {
  top: 0;
  left: 0;
}
.main-btn:hover::after {
  border-color: var(--main-color1);
}
.section-title {
  text-transform: uppercase;
  position: relative;
  text-align: center;
  color: var(--main-color1);
  font-size: 35px;
  font-family: var(--main-typo3);
  margin-bottom: 80px;
}
.section-title .title-back {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
.section-title h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.more {
  display: block;
  margin-left: auto;
  color: var(--main-color3);
  opacity: .75;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.more img {
  margin-left: 10px; display: inline-block;
}
.more:hover {
  color: var(--main-color3);
  opacity: 1;
}
.header-content-separator {
  margin-bottom: 200px;
  height: 1px;
}
.route {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.route a {
  color: var(--main-color3);
}
.route a:hover {
  text-decoration: underline;
}
.route > * {
  margin-right: 10px;
}
/* Slices */
header {
  background: var(--main-color2);
  padding: 0 50px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding-top: 10px;
  overflow-x: hidden;
  -webkit-box-shadow: var(--main-color3)00021 0 6px 6px;
          box-shadow: var(--main-color3)00021 0 6px 6px;
  border-bottom: 1px solid var(--main-color1);
}
.internal header { -webkit-box-shadow: #00000021 0 6px 6px;  box-shadow: #00000021 0 6px 6px; }
header .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 10px 0;
}
header .top .logo {
  width: 150px;
  margin-right: 0;
  padding: 0;
}
header .top .logo img {
  width: 100%;
}
header .top .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 40%;
}
header .top .left .main-btn {
  margin-left: 0;
}
header .top .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 40%;
}
header .top .main-btn {
  color: var(--main-color2);
  font-size: 20px;
  padding: 10px 30px;
  margin-left: 28px;
}
header .top .main-btn:before { background: var(--main-color3); }
header .top .main-btn:after { border: 1px solid var(--main-color1); }
header .top .social {
  font-size: 30px;
  margin-left: 20px;
  color: var(--main-color3);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
header .top .social:hover {
  color: var(--main-color3);
}
header .bottom {
  padding: 0;
}
header .bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -25%;
  height: 1px;
  width: 150%;
  background: var(--main-color1);  
}
/* header .bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -25%;
  height: 1px;
  width: 150%;
  background: var(--main-color1);
} */
header .bottom .navbar-collapse {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .bottom .nav-item {
  padding: 4px 7px;
  text-align: center;
}
header .bottom .nav-item:last-of-type {
  margin-right: 0;
}
header .bottom .nav-link {
  color: var(--main-color3);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
header .bottom .nav-link:hover,
header .bottom .selected .nav-link {
  color: var(--main-color1);
}
header .bottom .main-btns {
  display: none;
}

.slick-arrow { left: 10px; width: 70px; height: 30px; background: url('../img/arrow-left.svg') no-repeat center rgba(0,0,0,0.88);z-index: 999; transition: all ease 400ms; }
.slick-next { left: auto; right: 10px; background: url('../img/arrow-right.svg') no-repeat center rgba(0,0,0,0.88); }
.slick-arrow:before, .slick-arrow:after { display: none; }
.slick-prev:hover, .slick-prev:focus { background: url('../img/arrow-left.svg') no-repeat 15px center rgba(0,0,0,0.88); }
.slick-next:hover, .slick-next:focus { background: url('../img/arrow-right.svg') no-repeat -15px center rgba(0,0,0,0.88); }

.internal {  }

#pagCat .modular-texte{padding-top: 10px; }

#mainCarousel {
  position: relative;
  margin-bottom: 0;
}
#mainCarousel .item {
  background: url(../img/banner_bg.png) no-repeat center;
  height: 100vh;
  background-size: cover;
  position: relative;
  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;
}
#mainCarousel .item:before { position: absolute; content: ''; left: 0; top: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.65); z-index: 1; }
#mainCarousel .caption {
  text-align: center;
  margin-top: 10%;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}
#mainCarousel .caption .title {
  font-family: var(--main-typo3);
  font-size: 60px;
  color: var(--main-color1) !important;
  max-width: 800px;
      line-height: 60px;
    margin-bottom: 30px;
    font-weight: 400;
}
#mainCarousel .caption .title b{ display: block;text-transform: uppercase;color: transparent; -webkit-text-stroke: 1px var(--main-color1);font-family: Arial, Helvetica, sans-serif;}
#mainCarousel .caption p {
  color: var(--main-color2); text-align: center;
}
#mainCarousel .slick-dots {
  position: absolute;
  bottom: 5%;
  right: 0;
  padding-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#mainCarousel .slick-dots li {
  background: var(--main-color3);
  border: 1px solid var(--main-color1);
  border-radius: 50%;
  opacity: 1;
  font-size: 0;
  width: 12px;
  height: 12px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#mainCarousel .slick-dots li button::before {
  content: none;
}
#mainCarousel .slick-dots li.slick-active {
  background-color: var(--main-color1);
  border-color: var(--main-color3);
}
#mainCarousel .toContent-arrow {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: "sliderArrowAnim" 3s infinite;
          animation: "sliderArrowAnim" 3s infinite;
}
#mainCarousel .toContent-arrow:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
#mainCarousel .toContent-arrow a {
  position: relative;
  display: block;
}
#mainCarousel .toContent-arrow a::after {
  content: "";
  position: absolute;
  left: -11px;
  bottom: -7px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--main-color2);
  border-radius: 50%;
}
.sec-actu {
  background: url(../img/bg-actu.svg) right top no-repeat fixed;
}
.sec-actu .section-title h2 { font-weight: 700; }
.sec-actu .content {
  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;
}
.sec-actu .inner {
  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;
}
.sec-actu .back {
  margin-left: 44%;
}
.sec-actu .card {
  margin-right: -65%;
  -webkit-box-shadow: -5px 3px 10px rgba(0, 0, 0, 0.26);
          box-shadow: -5px 3px 10px rgba(0, 0, 0, 0.26);
  width: 42%;
  background: var(--main-color2);
  padding: 30px 25px;
  border: none;
  font-size: 16px;
  border-radius: 0;
}
.sec-actu .card .title {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 26px;
  margin-bottom: 30px;
}
.sec-categ {
  background: url(../img/categorie-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 30px;
}
.sec-categ .categ-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sec-categ .categ-list .item {
  width: 48.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sec-categ .categ-list .item .image {
  -webkit-filter: saturate(0);
          filter: saturate(0);
  width: 50%;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.sec-categ .categ-list .item .image img {
  width: 100%;
}
.sec-categ .categ-list .item .name {
  font-family: var(--main-typo3);
  font-size: 30px;
  color: var(--main-color2);
  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: 50%;
  height: 100%;
  padding: 50px;
  text-align: center;
  background: var(--main-color3) url(../img/cat-bg.png) no-repeat center;
  background-size: 90%;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.sec-categ .categ-list .item:hover .image {
  -webkit-filter: saturate(1);
          filter: saturate(1);
}
.sec-categ .categ-list .item:hover .name {
  color: var(--main-color1);
}
.sec-categ .categ-list .item:nth-child(1), .sec-categ .categ-list .item:nth-child(2) {
  margin-bottom: 30px;
}
.texte-image {
  padding-top: 50px;
}
.texte-image .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.texte-image.image-right .content{ align-items: center; }


.texte-image .content .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 55%;
  height: 100%;
}
.texte-image .content .image .item {
  width: 48%;
  height: 70%;
  position: relative;
  display: block;
}
.texte-image .content .image .item img {
  width: 100%;
}
.texte-image .content .image .item::after {
  content: "";
  position: absolute;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 1px solid var(--main-color1);
  left: 15px;
  top: 15px;
}
.texte-image .content .image .item:last-child {
  margin-top: 20%;
}
.texte-image .content .text {
  width: 42%;
}
.texte-image .content .text p { line-height: 25px; }
p a:hover{ color: var(--main-color1);}
.texte-image .content .text .text-title {
  font-family: 'ITC';
  font-size: 35px;
  line-height: 35px;
  margin-bottom: 25px;
}
.texte-image .content .text .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.texte-image .content .text .main-btn {
  text-align: right;
  margin-top: 40px;
  margin-left: auto;
  padding: 15px 40px;
  color: var(--main-color3);
}
.texte-image.image-right .content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.texte-image.image-right .content .image .item:first-child {
  margin-top: 20%;
}
.texte-image.image-right .content .image .item:last-child {
  margin-top: 0;
}
.texte-image.image-right .content .main-btn {
  margin-left: 0;
}
.texte-image.image-right { background: #908B8B; }
.galerie-images {
  padding-top: 50px;
  background: #fafafa;
}
.galerie-images .grid {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -ms-grid-columns: auto auto auto auto;
      grid-template-columns: auto auto auto auto;
}
.galerie-images .gridy .item {
  display: inline-block;
  width: 25%;
}
.galerie-images .gridy .item:nth-child(6n+3) {
  width: 50%;
}
.galerie-images .gridy .item:nth-child(6n+5) {
  width: 50%;
}
.galerie-images .gridy .item a { display: block; margin: 15px; }
.galerie-images .gridy .item img {
  height: 285px; object-fit: cover; width: 100%;
}
.galerie-images .grid a:nth-child(3n) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3 / 5;
}
.galerie-images .grid .big2 {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2 / 4;
}
.galerie-images .gridy .item img {
  height: 285px; object-fit: cover; width: 100%;
}
.galerie-images .gridy .item a {
  position: relative;
}
.galerie-images .gridy .item a::before {
  content: "+";
  font-size: 75px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  color: var(--main-color3);
}
.galerie-images .gridy .item a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main-color1);
  z-index: 1;
  opacity: 0;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}
.galerie-images .gridy .item:hover a::before {
  opacity: 1;
}
.galerie-images .gridy .item:hover a::after {
  opacity: .6;
}
.sec-clients {
  background: url(../img/client-bg.jpg) no-repeat center;
  background-size: cover;
}
.sec-clients .item {
  margin: 0 30px;
  line-height: 22px;
}
.sec-clients .item p {
  color: var(--main-color2);
}
.sec-clients .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sec-clients #schema .stars{
 justify-content: center;
 margin-bottom: 0;
}


.sec-clients #schema br{ display: none!important;}
.sec-clients #schema h4 { font-size: 20px!important;}
.sec-clients #schema a{font-size: 13px!important;}


.sec-clients .stars li {
  list-style: none;
  margin-right: 5px;
  color: var(--main-color1);
  font-size: 18px;
}
.sec-clients p {
  margin-bottom: 0;
  text-align: left;
}
.sec-clients .separator {
  height: 2px;
  background: var(--main-color2);
  width: 100%;
  margin: 5px 0;
  display: block;
}
.sec-clients .author {
  font-family: var(--main-typo2);
  text-align: right;
  color: var(--main-color2);
}
.sec-clients .google_btn {
  padding: 10px 15px;
  border: 1px solid var(--main-color1);
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0 auto;
  color: var(--main-color1);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.sec-clients .google_btn img {
  margin-right: 20px;
}
.sec-clients .google_btn:hover {
  background: var(--main-color3);
  color: var(--main-color2);
  border-color: var(--main-color3);
}
.sec-partenaires {
  background-color: var(--main-color3);
}
.sec-partenaires .title-back {
  opacity: .3;
}
.sec-partenaires .section-title {
  margin-bottom: 50px;
}
.sec-partenaires .section-title h2{
  color: var(--main-color1);
}
.sec-partenaires .partenaires img:nth-child(2) {
  margin: 0 75px;
}
.sec-articles .article-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  -ms-grid-rows: auto auto auto auto;
      grid-template-rows: auto auto auto auto;
}

.sec-articles .masonry { columns: 2; column-gap: 1.5em; }

.sec-articles .item {
  /* width: 97%; */
  margin-bottom: 30px;
}
.sec-articles .item .image img {
  width: 100%; border-radius: 0; /*height: 380px; */ object-fit: cover; height: auto;
}
.sec-articles .item .text {
  padding: 25px 35px;
  padding-bottom: 0;
}
.sec-articles .item .main-btn:after { border-color: var(--main-color2); }
.sec-articles .item .article-title {
  display: block;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--main-color3);
}
.sec-articles .item .more {
  margin-top: 30px;
  text-align: right;
}
.sec-articles .item.s,
.sec-articles .item:nth-child(even) {
  margin-top: 10rem;
}
.sec-articles .item.h {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1 / 4;
  margin-top: 25%;
  margin-left: auto;
}
.sec-articles .item.l { margin-top: 0 !important; }
.sec-articles .item.l .inner_item {
  
  padding: 6.4rem 0;
  /* -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
  margin-top: 25%; */
  background: var(--main-color3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
  margin-left: auto;
}
.sec-articles .item.l .article-title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--main-color2);
}
.sec-articles .item.l .main-btn {
  margin-bottom: 30px;
}
.sec-ig {
  background: #F5F2F2;
}
.sec-ig .title-back {
  color: #DDDCDC;
  font-size: 135px;
}
.sec-ig .h2-title {
  margin-bottom: 65px !important;
}
.sec-ig .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
  gap: 20px;
}
.sec-ig .grid .item img {
  width: 100%;
}

.sec-ig .item { padding: 8px; }
.sec-ig .item img { object-fit: cover; height: 360px; width: 100%; }

.sec-rdv {
  background: no-repeat center;
  background-size: cover;
  padding: 100px;
  text-align: center;
}
.sec-rdv h2 {
  margin-bottom: 50px;
  color: var(--main-color2);
}
.sec-rdv .main-btn {
  display: inline-block;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
.sec-rdv .main-btn::after {
  border-color: var(--main-color2);
}
.sec-rdv .main-btn:hover::after {
  border-color: transparent;
}
.sec-team {
  background: url(../img/team-bg.png) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
.sec-team .section-title {
  color: var(--main-color3);
}
.sec-team .team-list {
  /* display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; */
}
.sec-team .team-list .item {
  width: 33.33%;
  text-align: center;
  padding: 0 15px;
  /* margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; */
}
.sec-team .team-list .item .portrait {
  border-radius: 50%;
  border: 5px solid var(--main-color1);
  margin: 0 auto;
  margin-bottom: 10px;  
  display: inline-block;
}
.sec-team .team-list .item .portrait img {
  width: 100%;
  border-radius: 50%;
  width: 251px; height: 251px;
  object-fit: cover;
}
.sec-team .team-list .item .name {
  font-weight: bold;
  margin-bottom: 10px;
}
.sec-team .team-list .item .desc { text-align: center; }

/* ---- */
.sec_photos { padding-top: 50px; }
.filtre-gal { text-align: center; padding-right: 10px; }
.filtre-gal li { display: inline-block; margin: 0 5px 10px; padding: 7px 10px; border: 1px solid transparent;  cursor: pointer;}
.filtre-gal li.is-checked { border-color: var(--main-color1); font-weight: 700; }

.list-gal .item { padding: 10px; }
.list-gal .item img {
    object-fit: cover;
    height: 300px;
    width: 100%;
}

.sec-hf {
  padding: 0;
}
.sec-hf .heading {
  margin-top: 50px;
  margin-bottom: 60px;
}
.sec-hf .heading img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-hf .section-title {
  color: var(--main-color3);
  text-align: left;
  margin-bottom: 50px;
}
.sec-hf .list-forfait {
  margin-bottom: 30px;
}
.sec-hf .list-forfait .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px;

}
.sec-hf .list-forfait .item .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
            width: 25%
}
.sec-hf .list-forfait .item .desc .price {
  font-weight: bold;
  width: 50%;
  text-align: center;
}
.sec-hf .list-forfait .item .desc .time {
  margin-left: 0;
  width: 50%;
  text-align: center
}
.sec-hf .list-forfait .item:nth-child(odd) {
  background: #E0E0E0;
}
.sec-contact {
  position: relative;
  margin-top: 30px;
  background: url(../img/bg-contact.jpg) no-repeat center fixed;
  background-size: cover;
}
.sec-contact:before { position: absolute; content: '';left: 0; top: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.55); }
.sec-contact .container { position: relative; z-index: 3; }
.sec-contact .section-title,
.sec-contact .section-title h2 {
  color: var(--main-color2) !important;
}
.sec-contact p {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}
.sec-contact form {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  /* justify-content: space-between; */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sec-contact .form-label  { display: none; }
.sec-contact input, .sec-contact textarea {
  width: 100%;
  border: 1px solid #707070;
  background: var(--main-color2);
  padding: 16px 30px;
  margin-bottom: 20px;
  font-size: 20px;
}
.sec-contact input.full, .sec-contact textarea.full {
  width: 100%;
}
.sec-contact input::-webkit-input-placeholder, .sec-contact textarea::-webkit-input-placeholder {
  color: var(--main-color3);
}
.sec-contact input:-ms-input-placeholder, .sec-contact textarea:-ms-input-placeholder {
  color: var(--main-color3);
}
.sec-contact input::-ms-input-placeholder, .sec-contact textarea::-ms-input-placeholder {
  color: var(--main-color3);
}
.sec-contact input::placeholder, .sec-contact textarea::placeholder {
  color: var(--main-color3);
}
.sec-contact input:focus, .sec-contact textarea:focus {
  outline: none;
  border: 1px solid var(--main-color3);
}
.sec-contact button {
  display: block;
  margin: 20px auto 30px auto;
  border: 0;
}
footer {
  background: url(../img/footer-bg.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
  padding-top: 30px;
  color: var(--main-color2);
}
footer p {
  color: var(--main-color2);
}
footer .logofooter {
  width: 150px;
  margin: 0 auto;
  margin-bottom: 20px;
}
footer .top {
  width: 60%;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  padding: 0 3%;
}
footer .horaire {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .horaire p {
  margin-bottom: 0;
}
footer .footer-social {
  font-size: 70px;
  color: var(--main-color1);
}
footer .footer-social:hover {
  color: var(--main-color2);
}
footer h6 {
  margin-bottom: 0;
}
footer p {
  text-align: center;
  line-height: 19px;
}
footer .button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70%;
  margin: 0 auto;
}
footer .main-btn {
  color: var(--main-color1);
  padding: 15px 0;
  width: 33%;
}
footer .main-btn::before {
  background: var(--main-color3);
}
footer .main-btn::after {
  border-color: var(--main-color1);
}
footer .main-btn:nth-child(2) {
  margin: 0 75px;
}
footer .footer-copyright {
  margin-top: 50px;
}
footer .footer-copyright .footer-link {
  font-family: var(--main-typo1);
  font-weight: normal;
  color: #908b8b;
  position: relative;
  margin-right: 10px;
}
footer .footer-copyright .footer-link:hover {
  color: var(--main-color2);
}
footer .footer-copyright .footer-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -12.5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background: #908b8b;
}
footer .footer-copyright .fab {
  font-size: 21px;
}

.navbar-brand { margin-right: 0!important;}

.apercu-avis #schema { display: none!important; }
.apercu-avis .section-title h2 { color: var(--main-color1) !important; }
.apercu-avis .review-meta { display: none; }
.apercu-avis #schema>div{ width: 180px!important; min-width: 180px;}

/* cta_mobile */
body .cta-mobile.rectBoxesBottom {
  position: fixed;
  z-index: 11111;
  background-color: var(--main-color1);
  bottom: 0;
  left: 0;
  width: 100%
}
body .cta-mobile.rectBoxesBottom .cta-bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center
}

@media screen and (max-width: 991px) {
  body .cta-mobile.rectBoxesBottom .cta-bottom {
    display: table;
    width: 100%
  }
}

body .cta-mobile.rectBoxesBottom .cta-bottom>a {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  text-align: center;
  color: white;
  padding: 15px;
  border: 1px solid white;
  font-size: 20px;
  border-left: none;
  border-bottom: none
}
body .cta-mobile.roundBoxesRight .cta-bottom >a {

  background-color: var(--main-color1);
  color: white;
  border-radius: 50%;
}

body .cta-mobile.roundBoxesRight .cta-bottom >a:hover {

  background-color: var(--main-color3);
  color: white;
}

body .cta-mobile.rectBoxesBottom .cta-bottom>a span {
  display: block
}
body .cta-mobile.roundBoxesRight .cta-bottom a span {
  display: none;
}
body .cta-mobile.roundBoxesRight .cta-bottom a.cta-mob-contact {
  font-size:35px;
  position: absolute;
  top: -65px;
  padding: 5px 10px;
}
body .cta-mobile.roundBoxesRight .cta-bottom a.cta-mob-phone {
  font-size:40px;
  padding:5px;
  margin-top:30px;
  padding-left: 15px;
  padding-right: 15px;
}
body .cta-mobile.rectBoxesBottom .cta-bottom>a span.name {
  font-size: 0.74em
}

body .cta-mobile.rectBoxesBottom .cta-bottom>a:last-child {
  border-right: none
}

@media (max-width: 767px) {
  body .cta-mobile.rectBoxesBottom .cta-bottom>a {
    padding: 10px 5px;
    font-size: 18px;
    display: block;
    margin-right: 0
  }
}

@media screen and (max-width: 991px) {
  body .cta-mobile.rectBoxesBottom .cta-bottom>a {
    display: table-cell; width: 50%;
  }
}

@media (max-width: 400px) {
  body .cta-mobile.rectBoxesBottom .cta-bottom>a {
    font-size: 16px;
    padding: 15px 5px
  }
}

body .cta-mobile.rectBoxesBottom .cta-bottom>a i {
  margin-right: 7px;
  font-size: 0.9em
}



/* RESPONSIVES */
@media (max-width: 1200px) {
  .container {
    padding: 0 50px;
  }
  header .top .main-btn {
    font-size: 15px;
  }
  header .bottom .nav-link {
    font-size: 14px;
  }
  .sec-actu .card {
    width: 50%;
    margin-right: -80%;
  }
  .sec-categ {
    padding-left: 0;
    padding-right: 0;
  }
  .sec-categ .categ-list .item .name {
    font-size: 25px;
  }
  .texte-image .content .image {
    width: 48%;
  }
  .texte-image .content .text {
    width: 48%;
  }
}
@media (max-width: 992px) {
	div#picto-cart-icon {
	 cursor: pointer;
    position: fixed;
    top: 13px;
    right: 2px;
    z-index: 99;

}
.cart-container {
    top: 64px!important;
}
header .top .right{
	width:0%!important;
}
  header {
    overflow: visible;
  }
  header .top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 50px;
    position: relative;
  }
  header .top .left,
  header .top .right a{
    display: none;
  }
  header .top .logo {
    padding: 10px;
    width: 100px;
  }
  header .bottom {
    position: fixed;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100vh;
    background: var(--main-color2);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  header .bottom::before {
    content: none;
  }
  header .bottom .navbar-collapse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    background: var(--main-color2);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    display: block !important;
    padding: 60px 20px 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    overflow: scroll;
  }
  header .bottom .navbar-collapse::after {
    content: none;
  }
  header .bottom .navbar-collapse.show {
    left: 0;
  }
  header .bottom .navbar-collapse.collapsing {
    -webkit-transition: height 0s ease;
    transition: height 0s ease;
  }
  header .bottom .nav-link {
    text-align: right;
    font-size: 22px;
  }
  header .bottom .inner {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
      
  }
  header .bottom .main-btns {
    display: block;
    padding-bottom: 20px;
  }
  header .bottom .main-btn {
    margin-top: 30px;
  }
  header .bottom .navbar-toggler.collapsed ~ .navbar-collapse {
    -webkit-transition: left 500ms ease-in-out;
    transition: left 500ms ease-in-out;
  }
  header .bottom .navbar-toggler {
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    width: 60px;
    padding: 5px;
    background: var(--main-color2);
    border-radius: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 12;
  }
  header .bottom .navbar-toggler:focus { box-shadow: none !important; border: none !important; outline: none; }
  header .bottom .navbar-toggler .lines {
    padding: 5px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .bottom .navbar-toggler .lines .line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--main-color3);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  header .bottom .navbar-toggler .lines .line.m {
    margin: 8px 0;
  }
  header .bottom .navbar-toggler .text::after {
    content: 'menu';
    font-family: var(--main-typo1);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
  }
  header .bottom .navbar-toggler[aria-expanded="true"] .lines .line.m {
    width: 0;
  }
  header .bottom .navbar-toggler[aria-expanded="true"] .lines .line.t {
    -webkit-transform-origin: 10px 5px;
            transform-origin: 10px 5px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .bottom .navbar-toggler[aria-expanded="true"] .lines .line.b {
    -webkit-transform-origin: 4px -5px;
            transform-origin: 4px -5px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header .bottom .navbar-toggler[aria-expanded="true"] .text::after {
    content: 'Fermer';
  }
  .header-content-separator {
    margin-bottom: 80px;
  }
  #mainCarousel .title {
    font-size: 50px;
    line-height: 70px;
  }
  .sec-actu .content .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
  }
  .sec-actu .content .card {
    width: 100%;
    margin-right: 0;
  }
  .sec-actu .content .card .title {
    margin-bottom: 20px;
  }
  .sec-actu .content .back {
    width: 100%;
    margin-left: 0;
  }
  .sec-actu .content .back img {
    width: 100%;
  }
  .sec-categ .categ-list .item .name {
    padding: 10px;
    font-size: 20px;
  }
  .texte-image .content .image {
    width: 100%;
    margin-bottom: 30px;
  }
  .texte-image .content .image .item {
    margin-top: 0 !important;
  }
  .texte-image .content .text {
    width: 100%;
  }
  .texte-image .content .text .main-btn {
    margin-left: 0;
  }
  .galerie-images .grid {
    gap: 20px;
  }
  .sec-partenaires .partenaires img:nth-child(2) {
    margin: 0 50px;
  }
  .sec-articles .article-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sec-articles .article-list .item {
    width: 100%;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .sec-articles .article-list .item.l {
    width: 70%;
    margin: 0 auto;
    padding: 50px 0;
  }
  .sec-team .team-list {
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    gap: 30px;
  }
  .sec-contact form {
    width: 100%;
  }
  footer .top {
    width: 90%;
  }
  footer .button-container {
    width: 100%;
  }

}
@media all and (max-width: 768px) {
  section {
    padding: 75px 0 50px 0;
  }
  .section-title {
    margin-bottom: 65px;
  }
  .section-title .title-back {
    width: 120px;
  }
  .section-title .title-back img {
    width: 100%;
  }
  .section-title h2 {
    font-size: 30px;
  }
  header .bottom .nav-link {
    font-size: 18px;
  }
  #mainCarousel .caption .title {
    margin-bottom: 30px;
  }
  .sec-categ .categ-list .item {
    width: 48.5%;
  }
  .sec-categ .categ-list .item .name {
    font-size: 25px;
  }
  .galerie-images .grid {
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
  }
  .galerie-images .grid .big1, .galerie-images .grid .big2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
  .sec-clients .item {
    margin: 0 10px;
  }
  .sec-partenaires .partenaires img {
    width: 25%;
  }
  .sec-articles .article-list .item.l {
    width: 100%;
  }
  .sec-ig .grid {
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
  }
  .sec-hf .list-forfait .item .desc .time {
    margin-left: 30px;
  }
  .galerie-images .gridy .item,
  .galerie-images .gridy .item:nth-child(6n+3),
  .galerie-images .gridy .item:nth-child(6n+5) { width: 50%; }

  .sec-articles .item { width: 100%; max-width: 100%; flex: none; }
  .sec-articles .item.s, .sec-articles .item:nth-child(even) { margin-top: 0; }

  footer .top {
    width: 100%;
  }
  footer .top .footer-social {
    font-size: 50px;
  }
  footer .button-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .button-container .main-btn {
    width: 60%;
    margin-bottom: 30px;
  }
  footer .footer-copyright ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sec-articles .item{ margin-bottom: 60px;}
  header .bottom .main-btns .text-white{ display: none!important;}
  header .bottom .navbar-collapse{ padding-top: 20px;padding-bottom: 80px;min-height: 100%;height: auto!important;}
  .nav-link {
    padding: 0.1rem 1rem;
  }
}
@media all and (max-width: 576px) {
  section {
    padding: 50px 0 30px 0;
  }
  .container {
    padding: 0 20px;
  }
  .section-title {
    margin-bottom: 50px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  header .bottom {
    left: calc(-100% + 60px);
    width: calc(100% - 60px);
  }
  header .bottom .nav-link {
    font-size: 16px;
  }
  #mainCarousel .caption .title {
    font-size: 30px;
    line-height: 35px;
  }
  .sec-categ {
    padding: 30px 0;
  }
  .sec-categ .categ-list .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
  .sec-categ .categ-list .item .image {
    width: 100%;
  }
  .sec-categ .categ-list .item .name {
    width: 100%;
    padding: 20px;
    background: var(--main-color3);
    font-size: 20px;
  }
  .sec-categ .categ-list .item:last-child {
    margin-bottom: 0;
  }
  .texte-image .content .image {
    margin-bottom: 20px;
  }
  .texte-image .content .text .text-title {
    font-size: 25px;
    margin-bottom: 16px;
  }
  .texte-image .content .text .main-btn {
    margin-top: 20px;
  }
  .sec-partenaires .section-title {
    margin-bottom: 20px;
  }
  .sec-partenaires .partenaires {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sec-partenaires .partenaires img {
    width: 70%;
  }
  .galerie-images {
    padding-top: 30px;
  }
  .sec-articles .article-list .item .text {
    padding-left: 0;
    padding-right: 0;
  }
  .sec-articles .article-list .item .article-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .sec-articles .article-list .item .more {
    margin-top: 20px;
  }
  .sec-articles .article-list .item.l .article-title {
    margin-bottom: 40px;
  }
  .sec-ig .title-back {
    font-size: 100px;
  }
  .sec-rdv {
    padding: 30px;
  }
  .sec-rdv .main-btn {
    padding: 15px 30px;
  }
  .sec-team .team-list {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    gap: 30px;
  }
  .sec-hf .list-forfait .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px;
  }
  .sec-hf .list-forfait .desc {
    margin-top: 20px;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sec-hf .list-forfait .time {
    margin-left: 30px;
  }
  .sec-contact form input, .sec-contact form textarea {
    width: 100%;
    font-size: 16px;
    padding: 10px 14px;
  }
  .galerie-images .gridy .item img { height: 180px; }
  footer .top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .top .footer-social {
    font-size: 40px;
    margin: 0 20px;
  }
  footer .top .horaire {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 15px;
  }
  footer .button-container .main-btn {
    width: 90%;
  }
  footer .footer-copyright ul {
    justify-content: center;
  }
  footer .footer-copyright ul li {
    margin-bottom: 10px;
  }
 
  .sec-articles .item.l .inner_item{ padding-left: 20px;padding-right: 20px;}
  .sec-articles .item .text{ padding: 25px 20px;}
  .sec-articles .item.l{ margin-bottom: 0!important;}
  h1, .h1 {font-size: 2.5rem!important;}
  .wrapperInter{ margin-top: 100px;}
  .apercu-avis #schema { display: none!important; }
  #pagCat .modular-texte{padding-top: 10px;padding-bottom: 0; }
  .wrapperInter{ margin-top: 80px;}
}

@media (max-width: 480px) {
  .galerie-images .gridy .item,
  .galerie-images .gridy .item:nth-child(6n+3),
  .galerie-images .gridy .item:nth-child(6n+5) { width: 100%; }
  .shoppingcart-product-container .txtProd {
  height: initial!important;}
.shoppingcart-item.shoppingcart-product-container.block {
    min-height: initial!important;
}
}

@-webkit-keyframes sliderArrowAnim {
  0% {
    bottom: 5%;
  }
  50% {
    bottom: 8%;
  }
}
@keyframes sliderArrowAnim {
  0% {
    bottom: 5%;
  }
  50% {
    bottom: 8%;
  }
}

.homepage .texte-image:not(.image-right) .content .image{ height: auto; }
.homepage .texte-image:not(.image-right) .content .image .item img{ height: 100%;object-fit: cover;min-height: 250px;}


.shoppingcart-product-container .cntImgProd img{
	width: auto;
    height: 200px!important;
	min-height: 200px!important;
    object-fit: contain;
}
.shoppingcart-product-container .txtProd {
    height: 198px;
    line-height: 21px;
    overflow: hidden;
}

.shoppingcart-product-container .cntbtn {
    margin-top: 23px;
}
.shoppingcart-item.shoppingcart-product-container.block {
    min-height: 538px;
}


@media (max-width: 992px) {
  .homepage  .texte-image:not(.image-right) .content .image .item{ height: 100%;}
  
}
@media (max-width: 763px) {
	.js__shoppingcart-cart.has-products {
    max-width: 90vw;
    overflow-x: scroll;
}
  .shoppingcart-details{
	  text-align:center!important;
	  padding-left: 0px!important;
  }
  .shoppingcart-details p{
	  text-align:center!important;
  }  .shoppingcart-details button{
	  display:block;
	  margin:auto!important;
  }
  .product-wrapper  , .wrapperInter{
    margin-top: 80px!important;
}
.shoppingcart-product-container {
    padding-top: 0px!important;
}
}@media (min-width: 763px) {
  .shoppingcart-info .galerie-images .gridy .item img {
    height: 150px!important;
    object-fit: cover;
    width: 100%;
	
	}
}


@media (max-width: 767px) { 
  .sec-hf .list-forfait .item {
    flex-direction: column;
   
  }
  .sec-hf .list-forfait .item .desc {
    width: 100%;
     margin-top: 20px
  }
  .sec-hf .list-forfait .item .desc .price {
    text-align: left;
  }
  .sec-hf .list-forfait .item .desc .time {
    width: auto;
  }

}


.shoppingcart-info .galerie-images .gridy .item img {
 box-shadow: 0px 0px 16px -3px;
	
	}
   

.shoppingcart-info img.card-img-top.img-fluid{
    height: 273px;
    width: auto;
}
.shoppingcart-info .galerie-images {
    padding-top: 0px!important;
    background: #fff;
}


.cart-container{
    width: 423px;
    text-align: center;
    position: fixed;
top: 93px;
    right: 7px;
    z-index: 99;
    background: #fff;
    box-shadow: 2px 2px 2px 2px;
    border-radius: 7px;
    height: 200px;
    overflow-y: scroll;
	 -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
div#picto-cart-icon {
	 cursor: pointer;
   /* font-size: 26px;
    position: fixed;
    top: 4px;
    right: 2px;
    z-index: 99;
    color: #e3c456;
    border: 1px solid #000;
    padding: 2px 7px;
    border-radius: 10px;
    box-shadow: 1px 1px 1px 1px;
   */
}
/*# sourceMappingURL=custom.css.m





