main h1 {
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  position: relative;
  z-index: 1;
  padding: 0;
}

@media (min-width: 0) {
  main h1 {
    font-size: calc(0.25vw + 32px);
  }
}

@media (min-width: 1200px) {
  main h1 {
    font-size: 35px;
  }
}

main h2 {
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
  font-size: 30px;
  margin-bottom: 12px;
}

main .btn {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: white;
  padding: 8px 35px;
  display: inline-block;
  border-radius: 10px;
  background: linear-gradient(#ffa949 0%, #ffc079 100%);
  box-shadow: 0px 9px 14px rgba(250, 144, 20, 0.45);
  border: 0;
  margin-top: 10px;
  font-size: 16px;
  transition: 0.25s ease-in-out;
}

@media (min-width: 0) {
  main .btn {
    font-size: calc(0.0833333333vw + 16px);
  }
}

@media (min-width: 1200px) {
  main .btn {
    font-size: 17px;
  }
}

main .btn:hover {
  color: white;
  box-shadow: 0px 6px 8px rgba(250, 144, 20, 0.45);
}

main .btn-green {
  background: #7BD385;
  box-shadow: none;
}

main .btn-green:hover {
  color: white;
  box-shadow: none;
}

main .btn.btn-sm {
  font-size: 80%;
  padding: 8px 25px;
}

.product {
  transition: 0.25s;
  position: relative;
}

.product.show {
  opacity: 1;
}

.product .use {
  display: none;
}

.product h3 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
}

@media (min-width: 0) {
  .product h3 {
    font-size: calc(0.0833333333vw + 15px);
  }
}

@media (min-width: 1200px) {
  .product h3 {
    font-size: 16px;
  }
}

.product img {
  margin-bottom: 10px;
}

.product .brand,
.product .addtocart {
  display: none;
}

.product .label {
  background: #7BD385;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
}

.product .reduc {
  background: #7BD385;
  color: white;
  padding: 2px 5px;
  font-weight: 600;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 14px;
}

@media (min-width: 0) {
  .product .reduc {
    font-size: calc(0.1666666667vw + 14px);
  }
}

@media (min-width: 1200px) {
  .product .reduc {
    font-size: 16px;
  }
}

.product .prix {
  font-weight: 600;
  color: #7BD385;
  text-align: right;
  line-height: 1.1;
}

.product .prix span {
  position: relative;
  color: #8F8F93;
  font-size: 16px;
  margin-right: 0;
}

.product .prix span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #8F8F93;
  transform: translateY(-50%);
  display: block;
  z-index: 2;
}

.product .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .product .prix {
    display: flex;
    align-items: center;
    text-align: left;
  }

  .product .prix span {
    margin-right: 5px;
  }
}

@media (min-width: 1200px) {
  .product .use {
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 5px;
    width: 40px;
    height: 45px;
    border-radius: 0px 0px 9px 9px;
    box-shadow: 4px 4px 27px rgba(49, 49, 49, 0.1);
    margin: 0;
    background: white url(/images/icons/picto1.svg) center center no-repeat;
    background-size: 25px 25px;
  }

  .product img {
    width: 100%;
  }

  .product h3 {
    background: white;
    box-shadow: 4px 4px 29px rgba(49, 49, 49, 0.1);
    padding: 15px;
    margin: 0;
    width: 80%;
    position: relative;
    top: -20px;
    margin-bottom: -10px;
    z-index: 2;
  }

  .product .brand,
  .product .addtocart {
    display: block;
  }

  .product .brand {
    text-transform: uppercase;
    color: #8F8F93;
    font-size: 11px;
    margin: 0;
  }

  .product .addtocart {
    display: inline-block;
    position: relative;
    width: 22px;
    height: 24px;
  }

  .product .addtocart:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 24px;
    background: url("/images/icons/add-checkout-orange.svg") center center no-repeat;
    background-size: contain;
    transform: scale(0);
    opacity: 0;
    z-index: 3;
  }

  .product .addtocart:after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 24px;
    background: url("/images/icons/add-checkout.svg") center center no-repeat;
    background-size: contain;
    z-index: 2;
  }

  .product .addtocart.loading:before {
    -webkit-animation: cart 2s linear forwards;
            animation: cart 2s linear forwards;
  }

  .product .addtocart.loading:after {
    -webkit-animation: cartbis 2.5s linear forwards;
            animation: cartbis 2.5s linear forwards;
  }

@-webkit-keyframes cart {
    12.5% {
      transform: scale(0);
      opacity: 0;
    }

    25% {
      transform: scale(1.2);
      opacity: 1;
    }

    44% {
      transform: scale(1);
      opacity: 1;
    }

    90% {
      transform: scale(1);
      opacity: 1;
    }

    100% {
      transform: scale(1);
      opacity: 0;
    }
}

@keyframes cart {
    12.5% {
      transform: scale(0);
      opacity: 0;
    }

    25% {
      transform: scale(1.2);
      opacity: 1;
    }

    44% {
      transform: scale(1);
      opacity: 1;
    }

    90% {
      transform: scale(1);
      opacity: 1;
    }

    100% {
      transform: scale(1);
      opacity: 0;
    }
}

@-webkit-keyframes cartbis {
    12.5% {
      transform: scale(1);
      opacity: 1;
    }

    25% {
      transform: scale(0);
      opacity: 0;
    }

    60% {
      transform: scale(1);
      opacity: 0;
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
}

@keyframes cartbis {
    12.5% {
      transform: scale(1);
      opacity: 1;
    }

    25% {
      transform: scale(0);
      opacity: 0;
    }

    60% {
      transform: scale(1);
      opacity: 0;
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
}

  .product .prix {
    margin: 0 0 5px 0;
  }

  .product .info > div:nth-child(2) {
    text-align: right;
    position: relative;
    top: -5px;
  }
}

@media (min-width: 1400px) {
  .product {
    margin-bottom: 30px;
  }

  .product h3 {
    width: 70%;
  }
}

section.products {
  margin-bottom: 50px;
  padding-top: 60px;
}

@media (min-width: 992px) {
  section.products {
    margin-bottom: 80px;
  }
}

@media (max-width: 1199.98px) {
  section.intro {
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  section.products {
    padding-top: 0;
  }

  section.intro {
    padding: 0;
    margin: 0 0 100px 0;
    box-shadow: 4px 4px 30px rgba(49, 49, 49, 0.1);
  }
}

section .wrap {
  position: relative;
  text-align: center;
  margin: 0 -12px 45px -12px;
  background: url("/images/content/bg-partenaire.jpg") center center no-repeat;
  background-size: cover;
  padding: 35px 15px;
}

section .wrap img {
  position: relative;
  top: 70px;
  border-radius: 10px;
}

section .wrap p.them {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #C1D287;
  color: white;
  box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.07);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

@media (min-width: 768px) {
  section .wrap {
    margin: 0 0 45px 0;
  }
}

@media (min-width: 992px) {
  section .wrap {
    padding: 55px 15px 35px 15px;
    background: url("/images/content/bg-partenaire-lg.jpg") center center no-repeat;
    background-size: cover;
  }
}

section .caption h1 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
}

@media (min-width: 0) {
  section .caption h1 {
    font-size: calc(0vw + 28px);
  }
}

@media (min-width: 1200px) {
  section .caption h1 {
    font-size: 28px;
  }
}

section .caption p {
  font-size: 16px;
  color: #5C7677;
}

@media (min-width: 0) {
  section .caption p {
    font-size: calc(-0.1666666667vw + 16px);
  }
}

@media (min-width: 1200px) {
  section .caption p {
    font-size: 14px;
  }
}

section .caption a {
  background: 0;
  box-shadow: none;
  color: #FFA949;
  display: block;
  text-align: right;
  margin-top: 25px;
}

section .caption a span {
  display: inline-block;
  vertical-align: middle;
}

section .caption a:after {
  content: "";
  width: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
  background: url("/images/icons/arrow-white.svg") center center no-repeat, linear-gradient(#ffa949 0%, #ffc079 100%);
  box-shadow: 0px 9px 14px rgba(250, 144, 20, 0.45);
  border-radius: 10px;
  margin-left: 10px;
}

@media (min-width: 1200px) {
  section .caption {
    padding: 0 25px 25px 25px;
  }

  section .caption h1 {
    color: #7B7B7B;
    font-size: 17px;
    margin-bottom: 30px;
  }

  section .caption > div {
    text-align: right;
  }

  section .caption p {
    font-size: 15px;
  }

  section .caption a {
    margin-top: 45px;
    display: inline-block;
    position: relative;
    right: -70px;
  }

  section .caption a:after {
    width: 65px;
    height: 65px;
  }
}

@media (min-width: 1400px) {
  section .caption {
    padding: 0 40px 25px 40px;
  }
}

section.products h2 {
  font-size: 28px;
  text-align: center;
}

@media (min-width: 1200px) {
  section.products {
    padding-left: 30px;
  }

  section.products h2 {
    text-align: left;
    margin-bottom: 25px;
  }

  section.products .col-xl-6 {
    padding-left: 40px;
  }
}

@media (min-width: 1400px) {
  section.products {
    padding-left: 60px;
  }

  section.products .col-xl-6 {
    padding-left: 60px;
  }

  section.products .product {
    margin-bottom: 30px;
  }

  section.products .product h3 {
    width: 75%;
  }
}

