* {
  /* padding: 0; */
  margin: 0;
  box-sizing: border-box;
  font-size: 100%;
  font-family: "Comfortaa", serif;
  scroll-behavior: smooth;
  font-weight: 100;
}

/* LARGE SCREEN */
.isContainer {
  padding-top: 100px;
}
body {
  line-height: 1.5;
  color: black;
}

h1 {
  font-size: 40px;
  font-weight: 400;
}

h2 {
  font-size: 40px;
  font-weight: 400;
}

h5 {
  font-size: 1.5rem;
}

p {
  font-size: 14px;
  text-align: justify;
}
p span.bold {
  font-weight: 400;
}
p span.bold a {
  font-weight: 400;
}
p span.redBold {
  color: #c28788;
}

ul li {
  font-size: 14px;
}

.largeButton {
  min-width: 180px;
}

.buttonBase {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #F3EEE4;
  border-radius: 5px;
  border: 0px;
  cursor: pointer;
  font-size: 15px;
  padding: 20px 30px !important;
  text-decoration: none;
  height: 65px;
  max-width: 250px;
}

.buttonGreyBlue {
  background-color: #768698;
}
.buttonGreyBlue:hover {
  background-color: #616161;
}

.buttonRed {
  background-color: #c28788;
}
.buttonRed:hover {
  background-color: #616161;
}

.buttonWhite {
  background-color: white;
  color: #c28788 !important;
}
.buttonWhite:hover {
  color: white !important;
  background-color: #616161;
}

.buttonPurple {
  background-color: #4A4453;
  color: white !important;
}
.buttonPurple:hover {
  color: white !important;
  background-color: #616161;
}

.buttonBlue {
  background-color: #768698;
  color: white !important;
}
.buttonBlue:hover {
  color: white !important;
  background-color: #616161;
}

.buttonBeige {
  background-color: #F3EEE4;
  color: black !important;
}
.buttonBeige:hover {
  color: black !important;
  background-color: #616161;
}

.vibrating {
  border: solid 2px red !important;
  /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: shake 0.5s;
  /* When the animation is finished, start again */
  animation-iteration-count: 2s;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.searchBar {
  margin: 5%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid black;
}
.searchBar input {
  width: 285px;
  padding: 10px;
  border: 0px;
}
.searchBar input:focus {
  outline: none;
}
.searchBar input::placeholder {
  color: black;
}

.noArticle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  display: none;
}
.noArticle p {
  font-size: 2rem;
  padding: 15%;
  text-align: center;
}

.navhead {
  grid-area: navhead;
  position: fixed;
  /* Set the navbar to fixed position */
  top: 0;
  /* Position the navbar at the top of the page */
  width: 100%;
  /* Full width */
  z-index: 100;
}

.pageNotFound {
  padding: 200px 0px;
}

.giftCard {
  display: flex;
  flex-wrap: wrap;
}
.giftCard h2,
.giftCard .red {
  color: #c28788;
}
.giftCard a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.giftCard .left,
.giftCard .right {
  display: flex;
  justify-content: center;
}
.giftCard .right {
  position: relative;
  flex: 1 1 auto;
}
.giftCard .right img {
  max-width: 100%;
}
.giftCard .right img.card {
  position: absolute;
  top: 50%;
  right: 50%;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0px 0px 20px 0px #000000;
}
.giftCard .left {
  flex-direction: row;
  align-items: stretch;
  flex: 2 1 500px;
}
.giftCard .left .text {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.giftCard .left .text .order {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}
.giftCard .left .text .order .divForm {
  display: none;
  flex-direction: column;
  align-items: flex-start;
}
.giftCard .left .text .order .divForm .divFormInputs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.giftCard .left .text .order .divForm .divFormInputs button {
  width: 118px;
}
.giftCard .left .text .order .divForm .divFormInfo {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.giftCard .left .text .order .divForm .divFormInfo .divFormInfoSelectPrice {
  display: flex;
  align-items: center;
}
.giftCard .left .text .order .divForm .divFormInfo .divFormInfoSelectPrice p {
  padding: 5%;
}
.giftCard .left .text .order .divForm .divFormInfo #buttonOffrir {
  display: none;
}
.giftCard .left .text .order #finalSubmit {
  display: none;
}
.giftCard .left .text h2,
.giftCard .left .text p,
.giftCard .left .text a {
  padding: 15px 0;
}
.giftCard .left .text a {
  max-width: 250px;
}
/* SMALL SCREEN */
@media only screen and (max-width: 600px) {
  .giftCard {
    margin: 30% 0;
  }
  .giftCard .left {
    order: 2;
  }
  .giftCard .left .text .order {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .giftCard .left .text .order .divForm .divFormInputs {
    justify-content: center;
  }
  .giftCard .left .text .order .divForm .divFormInfo .divFormInfoSelectPrice {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10%;
  }
  .giftCard .right {
    order: 1;
  }
}
.newsletterContainer {
  display: flex;
  flex-direction: column;
  background-image: url(../img/home/newsletterBackground.png);
  background-repeat: round;
  align-items: center;
  min-height: 30vh;
  justify-content: space-around;
  color: white;
  position: relative;
}
.newsletterContainer img {
  position: absolute;
  bottom: -15%;
  left: 5%;
}
.newsletterContainer h2 {
  font-size: 3rem;
}
.newsletterContainer p {
  text-align: center;
}
.newsletterContainer .inputsNewsletter {
  padding-bottom: 1%;
  display: flex;
}
.newsletterContainer .inputsNewsletter input,
.newsletterContainer .inputsNewsletter button {
  color: #F3EEE4;
  border-radius: 42px;
  border: 0px;
  display: inline-block;
  cursor: pointer;
  font-size: 17px;
  padding: 20px 30px;
  text-decoration: none;
  margin: 2%;
}
.newsletterContainer .inputsNewsletter input {
  background-color: #9f7070;
  border: 1px solid white;
}
.newsletterContainer .inputsNewsletter input::placeholder {
  color: white;
  text-align: center;
}
.newsletterContainer .inputsNewsletter button {
  background-color: #fff;
  color: #c28788;
}
.newsletterContainer .inputsNewsletter button:hover {
  background-color: #768698;
  color: white;
}

.leadmagnet {
  background-image: url("../img/global/leadMagnetFull.webp");
  min-height: 70vh;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 5% 0;
  display: flex;
  justify-content: flex-end;
}
.leadmagnet .imgLead {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leadmagnet .imgLead img {
  width: 100%;
}
.leadmagnet .textLeadMagnet {
  max-width: 850px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2%;
}
.leadmagnet .textLeadMagnet h3 {
  font-size: 30px;
  color: #c28788;
}
.leadmagnet .textLeadMagnet ul li {
  padding: 5px 0;
}
.leadmagnet .textLeadMagnet p {
  padding: 5px;
}
.leadmagnet .textLeadMagnet a {
  max-width: 220px;
}
.leadmagnet form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15%;
}
.leadmagnet input {
  min-width: 100%;
  padding: 5px;
}
.leadmagnet input.form-control {
  color: #616161;
  border-radius: 5px;
  border: 0px;
  display: inline-block;
  cursor: pointer;
  font-size: 17px;
  padding: 20px 30px;
  text-decoration: none;
  margin: 2%;
  width: 50%;
  border: 1px solid white;
}
.leadmagnet input.form-control::placeholder {
  color: #616161;
  text-align: center;
}
.leadmagnet .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

@media screen and (min-width: 1420px) {
  .textLeadMagnet p {
    padding: 15px !important;
  }
}
@media screen and (max-width: 1320px) and (min-width: 600px) {
  .leadmagnet {
    background-size: auto;
  }
}
@media only screen and (max-width: 600px) {
  .leadmagnet {
    background-image: url(../img/global/leadMagnet.webp);
    min-height: 100vh;
    background-position: top;
    width: 90%;
    margin-top: 25% !important;
    margin: 0 auto;
  }
  .leadmagnet .textLeadMagnet {
    align-items: center;
    padding-top: 80%;
    width: 100%;
  }
  .leadmagnet .textLeadMagnet h3 {
    text-align: center;
  }
  .leadmagnet .textLeadMagnet form {
    gap: 15px;
  }
  .leadmagnet .textLeadMagnet form input {
    border: 1px solid #c28788;
  }
}
/* MEDIUM SCREEN */
@media screen and (min-width: 601px) and (max-width: 64em) {
  .footer {
    padding-top: 5%;
  }
  .footer .centerFooter iframe {
    width: 85%;
  }
}
/* SMALL SCREEN */
@media only screen and (max-width: 600px) {
  h2 {
    font-size: 30px;
  }

  .isContainer {
    padding-top: 60px;
    overflow: hidden;
  }

  .btn-downloadfiches {
    margin-inline: auto !important;
  }

  .buttonMPN {
    font-size: 15px;
    padding: 15px 30px;
  }

  .newsletterContainer {
    padding: 2%;
  }
  .newsletterContainer h2 {
    font-size: 2rem;
  }
  .newsletterContainer img {
    display: none;
  }
  .newsletterContainer .inputsNewsletter {
    max-width: 100%;
  }

  .avisContainer {
    position: relative;
  }
  .avisContainer .mySlides {
    flex-direction: column;
    align-items: center;
    margin: 0px 10%;
  }
  .avisContainer .mySlides .subSlide {
    width: 85%;
    display: flex;
    justify-content: center;
    height: 45vh;
  }
  .avisContainer .prev,
.avisContainer .next {
    top: 45%;
  }
}
* {
  box-sizing: border-box;
}

.avisContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 5% 0;
}
.avisContainer .backgroundAvis {
  position: absolute;
  width: 80%;
  top: 0%;
  right: 10%;
  height: 100%;
  z-index: -1;
}
.avisContainer .avisContainerContent {
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 90%;
}
.avisContainer .avisContainerContent .titleAvis {
  justify-self: center;
  align-self: center;
}
.avisContainer .avisContainerContent .slideshow-container {
  justify-self: center;
  align-self: center;
  width: 100%;
}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

.mySlides {
  display: flex;
  margin: 0px 5%;
  justify-content: center;
}
.mySlides .subSlide {
  display: flex;
  background-color: #fff;
  gap: 15px;
  padding: 2%;
  /* border-radius: 50px; */
  width: 50%;
  margin: 5% 1%;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 22px -15px hwb(0deg 0% 100%);
}
.mySlides .ticks img {
  width: 25px;
}
.mySlides .subContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.mySlides .subContent p {
  margin: 5%;
}
.mySlides .contentFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mySlides .contentFooter .nbStars {
  display: flex;
}
.mySlides img.separator {
  max-width: 20px;
}
.mySlides img.google {
  max-width: 100px;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #768698;
  font-weight: bold;
  font-size: 35px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.prev:hover,
.next:hover {
  color: #c88388;
}

/* Position the "next button" to the right */
.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(227, 227, 227, 0.8);
}

/* Caption text */
.textSlide {
  padding: 8px 12px;
  text-align: justify;
  /* position: absolute; */
  bottom: 8px;
  width: 100%;
}

/* The dots/bullets/indicators */
.dots {
  text-align: center;
  margin: 1%;
}

.dot {
  cursor: pointer;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin: 0 2px;
  background-color: #bbb;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.dot:hover {
  background-color: #c28788;
}

.dot.active {
  background-color: #c28788;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* SMALL SCREEN */
@media only screen and (max-width: 600px) {
  .prev {
    left: 0;
  }

  .slideshow-container {
    height: 45vh;
  }

  .backgroundAvis {
    top: 25% !important;
    top: 0;
    height: 50% !important;
    border-radius: 5px;
  }

  .mySlides {
    height: 100%;
  }
  .mySlides .subSlide {
    height: 100%;
    border-radius: 5px;
    gap: 0;
  }

  .subContent {
    justify-content: space-evenly !important;
  }
  .subContent p {
    font-size: 10px;
  }
}
.fade-in {
  opacity: 1 !important;
  transition: opacity 1s ease-in-out;
}

.fade-in-slow2s {
  opacity: 1 !important;
  transition: opacity 2s ease-in-out;
}

.fade-in-slow3s {
  opacity: 1 !important;
  transition: opacity 3s ease-in-out;
}

.fade-in-slow4s {
  opacity: 1 !important;
  transition: opacity 4s ease-in-out;
}

.move-from-left {
  margin-left: 0 !important;
  transition: margin-left 2s ease-in-out;
}

.move-from-right {
  margin-right: 0 !important;
  transition: margin-right 2s ease-out;
}

.move-from-top {
  margin-top: 0 !important;
  transition: margin-top 2s ease-out;
}

.move-from-bottom {
  margin-bottom: 0 !important;
  transition: margin-bottom 2s ease-out;
}

.reduceSize {
  height: 40vh !important;
  transition: height 2s ease-out;
}

.absoluteToLeft {
  transform: translateX(-150%);
  opacity: 1 !important;
  transition: transform 3s ease-out, opacity 1s ease-out;
}

.absoluteToRight {
  transform: translateX(150%);
  opacity: 1 !important;
  transition: transform 3s ease-out, opacity 1s ease-out;
}

/*# sourceMappingURL=global.css.map */
