.main {
display: flex;
}
.mainLeft {
    background: #fff;
    height: 100vh;
    padding-left: 0;
}
.mainRight {
    position: relative;
    height: calc(100% - 55px);
    padding: 0;
       left: 0;
}


/* The Loader */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  overflow: hidden;
}
.no-js #loader-wrapper {
  display: none;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
 /* border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #c0a360;*/
  -webkit-animation: spin 1.7s linear infinite;
          animation: spin 1.7s linear infinite;
  z-index: 11;
}
/*#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #5451a2;
  -webkit-animation: spin-reverse .6s linear infinite;
          animation: spin-reverse .6s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #8aa9d8;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
*/
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #fff;
  z-index: 10;
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}
@media screen and (min-width: 1400px) {
.container {
    width: 1283px;
   padding-left:0;
  padding-right:0;
}
}
@media screen and (max-width: 1200px) {
.bg-color {
height: 90px;
}
}

@media screen and (max-width: 993px) {
.main {
display: block;
}
.social, .social-quality { 
display: none !important;
}
.mainLeft {
    height: 140px;
    width: 100%;
    float: none;
}
.mainRight {
    width: 100%;
    height: 100%;
   left: 0;
}
}


@media screen and (max-width: 991px) {
.bg-color {
height: 295px;
}
}



.product .bloc-list-produit {
overflow: hidden;
 position: relative;
}
.product .bloc-list-produit>div>div:after {
    content: "";
    width: 100%;
    height: 81%;
    position: absolute;
    right: 0px;
    top: 0px;
    background: #c0a360;
    z-index: 999;
    transition: 0.7s transform cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transform: translateX(-112%);
    border-radius: 50%;
}

.product.activesection  .bloc-list-produit>div>div:after{
    -webkit-animation: translatesection  1.3s 0.6s cubic-bezier(0.46, 0.03, 0.52, 0.96) forwards;
    animation: translatesection 1.3s 0.6s cubic-bezier(0.46, 0.03, 0.52, 0.96) forwards;
}
.product .prod {opacity:0;transform: translateX(-100%); overflow: hidden;}
.product.activesection .prod{    -webkit-animation: opacity 1s 0.9s cubic-bezier(0.46, 0.03, 0.52, 0.96) forwards;
    animation: opacity 1s 0.9s cubic-bezier(0.46, 0.03, 0.52, 0.96) forwards;}
@keyframes translatesection{
    0% {
       transform: translateX(-112%);
        animation-timing-function:  cubic-bezier(0.46, 0.03, 0.52, 0.96);
    }
     
    50% {
transform: translateX(0%);
             animation-timing-function:  cubic-bezier(0.46, 0.03, 0.52, 0.96);
    }
     
    100% {
       transform: translateX(112%);
    animation-timing-function:  cubic-bezier(0.46, 0.03, 0.52, 0.96);
    }
}



@keyframes opacity{
    0% {
   opacity:0;transform: translateX(-100%);
        animation-timing-function:  cubic-bezier(0.46, 0.03, 0.52, 0.96);
    }
     
     
    100% {
   opacity:1;transform: translateX(0%);
    animation-timing-function:  cubic-bezier(0.46, 0.03, 0.52, 0.96);
    }
}



@keyframes translateSectionX{
    0% {
  transform: translateX(-100%);
        animation-timing-function:  cubic-bezier(0.46, 0.03, 0.52, 0.96);
    }
     
     
    100% {
  transform: translateX(0%);
    animation-timing-function:  cubic-bezier(0.46, 0.03, 0.52, 0.96);
    }
}



