html {
  scroll-behavior: initial;
}

.spl-products {
  display: flex;
  align-items: center;
  padding: 3rem;
}
.spl-products img {
  margin-right: 20rem;
}

.product-card:hover img {
  transform: scale(1.1);
}
.product-card:hover h2 {
  color: #D8E1A5;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2274509804);
}

.menu-cta {
  cursor: pointer;
}

.menu-cta,
.fixed-header {
  opacity: 0;
  transform: translateY(-200%);
  position: fixed !important;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  z-index: 1000;
}

.menu-cta .show {
  opacity: 1;
  transform: translateY(0);
}

.fixed-header .show {
  opacity: 1;
  transform: translateY(0);
}

.bde-wp-menu-42-109 .breakdance-menu .breakdance-menu-link {
  padding-left: 0px !important;
}

.bde-wp-menu-42-109 .breakdance-menu .breakdance-menu-item {
  max-width: max-content;
}

@media screen and (max-width: 1023px) {
  .spl-products {
    padding: 2rem;
  }
  .spl-products img {
    margin-right: 9rem;
  }
}
@media screen and (max-width: 767px) {
  .spl-products {
    padding: 1rem;
  }
  .spl-products img {
    margin-right: 4rem;
    width: 90px;
  }
}
@media screen and (max-width: 479px) {
  .spl-products {
    padding: 1rem 0;
  }
  .spl-products img {
    margin-right: 2rem;
    width: 70px;
  }
}
