.home {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.home-hero-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(100vh - 100px);
  background-image: var(--home-hero-background-image);

	
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #E3E4E9;
  position: relative;
  max-height: 933px;
  min-height: 700px;

  @media (max-width: 1400px) {
    max-height: 700px;
  }

  @media (max-width: 800px) {
    height: calc(100vh - 112px);
    min-height: 750px;
    background-image: var(--home-hero-background-image-mobile);
	
    background-size: contain;
    background-position: center bottom;
  }
}

.home-hero-description {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 70px 120px;
  align-items: start;
  justify-content: center;

  @media (max-width: 1400px) {
    padding: 70px 60px;
  }

  @media (max-width: 800px) {
    align-items: center;
    justify-content: flex-start;
  }

  @media (max-width: 800px) {
    padding: 50px 60px;
  }

  @media (max-width: 600px) {
    padding: 50px 20px;
  }
}

.home-hero-description p, .home-hero-description ul {
  padding: 0;
  margin: 0;
  color: #000;
  font-family: Neue Montreal;
  font-size: 16px;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.32px;
  margin: 8px 0;
}

.home-hero-description > div > *:first-child {
  margin-top: 0;
}

.home-hero-description > div > *:last-child {
  margin-bottom: 0;
}

.home-hero-description ul li::before {
  content: "";
  display: inline-block;
  width: 10px;
  min-width: 10px;
  height: 21px;
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="21" viewBox="0 0 10 21" xmlns="http://www.w3.org/2000/svg"><path d="M0 11C2.76109 11 5 8.76109 5 6C5 8.76109 7.23891 11 10 11C7.23891 11 5 13.2389 5 16C5 13.2389 2.76109 11 0 11Z" fill="%23171616"/></svg>');
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-size: contain;
  vertical-align: middle;
  margin-right: 12px;
  margin-top: 1px;
}

.home-hero-description h1 {
  font-family: Neue Montreal;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.2;

  @media(max-width: 1400px) {
    font-size: 40px;
  }

  @media (max-width: 800px) {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 46px;
  }
}

.home-hero-content {
  @media (max-width: 800px) {
    text-align: center;
  }
}

.home-hero-set-badge-wrapper {
  position: absolute;
  bottom: 23px;
  right: 64px;

  @media (max-width: 1400px) {
    right: 20px;
    bottom: 20px;
  }
}

.home-hero-cta-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 32px;

  @media (max-width: 800px) {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
}

.hero-reviews .review-stars-wrapper {
  @media (max-width: 800px) {
    justify-content: center;
  }
}

.hero-reviews-text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.32px;
}

.hero-reviews-text {
  @media(max-width: 800px) {
    text-align: center;
  }
}

.info-bar {
  display: flex;
  flex-direction: row;
  background-color: rgb(255, 253, 248);
  height: 100px;
  padding: 0 120px;
  border-bottom: 1px solid var(--gray-light);

  @media (max-width: 1400px) {
    padding: 0px 60px;
  }

  @media(max-width: 1024px) {
    padding: 0;
    flex-wrap: wrap;
    height: auto;
  }
}

.info-bar > :not(h2) {
  border-left: 1px solid var(--gray-light);
  justify-content: center;
}

.info-bar > :not(h2) p {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.32px;
}

.info-bar > :not(h2) strong {
  font-family: Recoleta;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.32px;

  @media(max-width: 1400px) {
    font-size: 16px;
  }
}

.info-bar > h2 {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.32px;

  @media(max-width: 1400px) {
    font-size: 18px;
  }

  @media(max-width: 1024px) {
    width: 100%;
    border-bottom: 1px solid var(--gray-light);
    text-align: center;
    justify-content: center;
    font-size: 14px;
    padding: 12px 0;
  }
}

.info-bar > * {
  flex: 1 1 0px;
  padding: 23px 0;
  display: flex;
  align-items: center;

  @media(max-width: 1024px) {
    flex: 1 1 auto;
    padding: 10px 0;
  }
}

.info-bar-item {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.info-bar-item .icon {
  @media(max-width: 1024px) {
    display: none;
  }
}

.home-results-wrapper {
  width: 100%;
  padding: 60px 120px 120px;
  box-sizing: border-box;
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;

  @media(max-width: 1440px) {
    max-width: 100vw;
  }


  @media (max-width: 1400px) {
    padding: 60px 60px 120px;
  }

  @media (max-width: 1200px) {
    flex-direction: column;
    align-items: center !important;
  }

  @media (max-width: 600px) {
    padding: 60px 20px 105px;
  }
}

.home-results-description-wrapper {
  width: 50%;
  padding-right: 122px;
  box-sizing: border-box;

  @media(max-width: 1400px) {
    padding-right: 60px;
  }

  @media (max-width: 1200px) {
    margin-bottom: 60px;
    width: 100%;
    padding-right: 0;
  }
}

.home-results-description-wrapper h2 {
  font-size: 34px;
  line-height: 120%;
  letter-spacing: 0.68px;
  margin-bottom: 40px;

  @media (max-width: 1200px) {
    text-align: center;
  }

  @media (max-width: 600px) {
    text-align: left;
  }
}

.home-results-description-wrapper,
.home-results-description-wrapper p {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.36px;

  @media (max-width: 1200px) {
    text-align: center;
  }

  @media (max-width: 600px) {
    text-align: left;
  }
}

.home-results-description-wrapper p {
  margin-bottom: 20px;
}

.home-results-slider-wrapper {
  width: 50%;
  min-width: 590px;

  @media(max-width: 750px) {
    min-width: unset;
    width: 100%;
  }
}

.home-results-buttons-wrapper {
  display: flex;
  flex-direction: row;
  margin-bottom: 27px;
}

.results-button {
  width: 33%;
  margin-right: 21px;
  height: 50px;
  background-color: transparent;
  border-bottom: 1px solid var(--dark-font-hover-color);
  font-family: PP Neue Montreal;
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: var(--dark-font-hover-color);
  box-sizing: border-box;
  transition: var(--base-transition);
}

.results-button:hover {
  color: var(--dark-font-color);
  border-bottom: 1px solid var(--dark-font-color);
}

.home-results-buttons-wrapper button:last-child {
  margin-right: 0;
}

.results-product-image-wrapper {
  height: 100%;
  width: 190px;
  position: relative;

  @media(max-width: 750px) {
    min-height: 300px;
    width: 100%;
    margin-top: 20px;
  }
}

.results-product-image-wrapper .one-bootle-picture {
  max-height: 377px;
  max-width: 223px;
  object-fit: contain;
  padding-right: 20px;

  @media (max-width: 750px) {
    max-width: unset;
  }

  @media (max-width: 600px) {
    max-height: 120%;
    max-width: unset;
  }
}

.results-product-details-wrapper {
  max-width: calc(100% - 180px);

  @media (max-width: 750px) {
    max-width: 100%;
  }
}

.slider-label-wrapper {
  position: absolute;
  top: calc(24px - 40px);
  right: 29px;
  max-width: 150px;

  @media(max-width: 750px) {
    right: calc(29px - 40px);
  }

  @media(max-width: 600px) {
    top: calc(24px - 20px);
    right: calc(29px - 20px);
  }
}

.results-slide-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100%;

  @media (max-width: 750px) {
    flex-direction: column;
  }
}

.results-product-image-wrapper img {
  position: absolute;
  top: 15px;
  right: -25px;
  z-index: 999;
  width: 252px;
  height: 427px;
  margin-top: 10px;

  @media(max-width: 750px) {
    width: 100%;
    object-fit: contain;
    left: 0;
  }
}

.results-show-product-button {
  max-width: 146px;
  padding: 14px 30px !important;
  width: 175px;
  box-sizing: border-box;

  @media(max-width: 750px) {
    width: calc(50% - 5px);
    max-width: unset;
    box-sizing: border-box;
  }

  @media(max-width: 550px) {
    width: 100%;
  }
}

.add-to-cart-button.results-show-product-button {
  max-width: 216px;

  @media(max-width: 750px) {
    max-width: unset;
  }
}

.add-to-cart-button.results-show-product-button div {
  @media(max-width: 750px) {
    width: auto;
  }
}

.results-show-product-button:hover,
.adding-in-progress.results-show-product-button,
.adding-success.results-show-product-button {
  padding: 14px 16px !important;
}

.luxy-el img {
  width: 100%;
  min-height: 120%;
  object-fit: cover;
  object-position: center center;

  @media(max-width: 1000px) {
    min-height: 100%;
  }

}

.luxy-el {
  z-index: -1;
  height: 810px;

  @media(max-width: 1000px) {
    height: 600px;
  }

  @media(max-width: 600px) {
    height: 400px;
  }

  @media(max-width: 400px) {
    height: 203px;
  }
}


.home-gray-section {
  border-top: 1px solid var(--dark-font-color);
  border-bottom: 1px solid var(--dark-font-color);
  background-color: var(--gray-blue-background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.home-opinions-section-wrapper {
  padding: 120px;
  width: 100%;
  max-width: 1440px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  @media(max-width: 1500px) {
    padding: 120px 60px;
  }

  @media(max-width: 1000px) {
    padding: 60px;
  }

  @media(max-width: 920px) {
    padding: 60px 0;
  }
}

.home-opinions-section-wrapper .swiper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  margin: 40px 0 40px;

  @media(max-width:1350px) {
    max-width: 794px;
  }

  @media(max-width:920px) {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  @media(max-width:800px) {
    max-width: 100%;
    padding: 0 0 0 20px;
    box-sizing: border-box;
  }
}

.home-opinions-section-wrapper .swiper-slide {
  /* width: 100%; */
  width: auto;
}

.home-opinions-section-wrapper h2 {
  font-size: 34px;
  line-height: 120%;
  letter-spacing: 0.68px;
  max-width: 630px;
  text-align: center;

  @media(max-width: 920px) {
    padding: 0 20px;
  }
}

.home-one-opinion-box {
  padding: 40px 40px 30px;
  background-color: var(--main-background-color);
  border-radius: 40px;
  border: 1px solid var(--dark-font-color);
  display: flex;
  flex-direction: column;
  width: 387px;
  box-sizing: border-box;
  justify-content: space-between;

  @media(max-width: 920px) {
    width: 100%;
  }

  @media(max-width: 600px) {
    border-radius: 20px;
    padding: 25px;
  }
}

.home-one-opinion-first-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
}

.home-one-opinion-first-section span {
  display: flex;
}

.home-one-opinion-first-section img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 48px;
  object-position: center center;
  margin-right: 20px;
}

.home-one-opinion-author h3 {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.32px;
}

.home-one-opinion-author p {
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.24px;
  color: var(--dark-font-hover-color);
}

.home-opinions-stars-box {
  display: flex;
  align-items: center;
}

.home-opinions-stars-box svg {
  margin-right: 4px;
}

.home-opinions-stars-box svg:last-child {
  margin-right: 0;
}

.home-one-opinion-second-section {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.32px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.home-one-opinion-third-section p {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.28px;
  color: var(--dark-font-hover-color);
  margin-bottom: 10px;
}

.home-one-opinion-third-section .commented-products {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;

  @media(max-width: 500px) {
    /* gap: 5px; */
  }
}

.home-one-opinion-third-section .commented-products a {
  padding: 8px 20px 10px 20px;
  background: rgba(23, 22, 22, 0.05);
  border-radius: 30px;
  text-align: center;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.28px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;

  @media(max-width: 500px) {
    font-size: 12px;
    padding: 8px 15px 10px 15px;
  }
}

.home-one-opinion-third-section .commented-products a:hover {
  color: var(--white);
  background: var(--dark-font-color);
}

.home-set-badge {
  height: 210px;
  width: 210px;
  object-fit: contain;

  @media (max-width: 1200px) {
    height: 120px;
    width: 120px;
  }

  @media (max-width: 800px) {
    max-height: 100px;
    max-width: 100px;
  }
}

.home-guarantee-section {
  background-color: var(--gray-blue-background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 120px 120px;
  box-sizing: border-box;

  @media(max-width: 1000px) {
    padding: 0 60px 120px;
  }

  @media(max-width: 600px) {
    padding: 0 20px 60px;
  }
}

.home-quarantee-button {
  @media(max-width: 1000px) {
    width: 260px;
  }
}

.home-guarantee-image-wrapper {
  position: relative;
  margin-bottom: 120px;

  @media(max-width: 600px) {
    margin-bottom: 180px;
  }
}

.home-quarante-image {
  width: 100%;
  max-width: 1200px;
  max-height: 800px;
  border-radius: 40px;
  border: 1px solid var(--dark-font-color);

  @media(max-width: 1000px) {
    min-height: 320px;
    object-fit: cover;
  }

  @media(max-width: 600px) {
    border-radius: 20px;
  }
}

.home-guarantee-badge {
  position: absolute;
  bottom: -114.5px;
  left: calc(50% - 114.5px);
  height: 229px;
  width: 229px;
  display: flex;
  justify-content: center;
  align-items: center;

  @media(max-width: 600px) {
    bottom: -150px;
  }
}

.home-quarante-header {
  font-family: PP Neue Montreal;
  font-size: 50px;
  font-weight: 500;
  max-width: 1000px;
  text-align: center;
  margin-bottom: 40px;

  @media(max-width: 600px) {
    font-size: 34px;
    letter-spacing: 0.68px;
    font-weight: 400;
  }
}

.home-quarante-description {
  max-width: 600px;
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.36px;
}

.home-quarante-description p {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.36px;
  margin-bottom: 20px;
}

.home-questions-section {
  background-color: var(--light-yellow-background-color);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-questions-section-wrapper {
  width: 100%;
  padding: 120px;
  max-width: 1440px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;

  @media(max-width: 1200px) {
    padding: 120px 60px;
  }

  @media(max-width: 1000px) {
    flex-direction: column;
  }

  @media(max-width: 600px) {
    padding: 70px 20px;
  }
}

.home-questions-image-wrapper {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 284px;

  @media(max-width: 1000px) {
    width: 100%;
    margin-bottom: 22px;
    max-height: unset;
  }
}

.home-questions-content-wrapper {
  width: 50%;

  @media(max-width: 1000px) {
    width: 100%;
  }
}

.home-questions-title {
  font-size: 34px;
  letter-spacing: 0.68px;
  margin-bottom: 40px;
}

.home-questions-content-wrapper ul li {
  border-top: 1px solid var(--black);
  width: 100%;
  display: flex;
}

.home-questions-content-wrapper ul li:last-child {
  border-bottom: 1px solid var(--black);
}

.home-questions-content-wrapper ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-right: 20px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.36px;
  padding: 20px 20px 20px 0;
  box-sizing: border-box;
}

.home-questions-content-wrapper ul li a span {
  transition: 0.5s;
}

.home-questions-content-wrapper ul li a:hover span {
  transform: translateX(10px);
  transition: 0.5s;
}

.add-to-cart-button-text-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  max-height: 19px;
  justify-content: center
}


.adding-in-progress .add-to-cart-text,
.adding-success .add-to-cart-text {
  opacity: 0;
  transition: 1s;
  display: none;
}

.add-to-cart-button .adding-in-progress-text,
.add-to-cart-button .adding-success-text {
  opacity: 0;
  transition: 1s;
  display: none;
}


.add-to-cart-button-init .add-to-cart-text,
.adding-in-progress .adding-in-progress-text,
.adding-success .adding-success-text {
  opacity: 1;
  color: var(--white);
  width: 100%;
  height: 100%;
  transition: 1s;
  z-index: 2;
  color: white !important;
  display: block;
  animation: disableOpacity;
  animation-duration: 1s;
}

.add-to-cart-button-init .loader,
.adding-success .loader {
  display: none;
  opacity: 0;
  transition: 1s;
  margin-left: 0 !important;
}

.adding-in-progress .loader {
  display: flex;
  opacity: 1;
  min-width: 20px !important;
  min-height: 20px !important;
  transition: 0.5s;
  margin-left: 10px !important;
}

.adding-in-progress .arrow,
.adding-success .arrow {
  width: 0;
  display: none !important;
  opacity: 0;
  transition: 1s;
  margin-left: 0;
}

.products-set-buttons-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;

  @media (max-width: 550px) {
    flex-direction: column;
  }
}

.products-set-buttons-wrapper button,
.products-set-buttons-wrapper a {
  @media (max-width: 750px) {
    width: calc(50% - 5px);
  }

  @media (max-width: 550px) {
    width: 100%;
  }
}


@keyframes disableOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#home-page .woocommerce-notices-wrapper {
  display: none;
}

.home-questions-image-wrapper .lottie svg{
    @media (max-width: 1000px) {
      height: auto !important;
      padding: 40px 0 !important;
  }
}
