body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  background-color: #000;
}

.hidden {
  opacity: 0;
}
.hidden h1 {
  font-size: 0.2px;
  color: transparent;
}
.hidden h2 {
  font-size: 1px;
  color: transparent;
}

.desktopMode {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.desktopMode .sectionImgDesktop {
  width: 100%;
}
@media (max-width: 600px) {
  .desktopMode {
    display: none;
  }
}

.mobileMode {
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mobileMode .sectionImgMobile {
  width: 100%;
}
@media (max-width: 600px) {
  .mobileMode {
    display: flex;
  }
}

.productWrapper {
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.productWrapper .productCont {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  width: 100%;
  padding: 0 30px;
}
@media (max-width: 1280px) {
  .productWrapper .productCont {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .productWrapper .productCont {
    gap: 30px;
  }
}
.productWrapper .productCont .productCard {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1280px) {
  .productWrapper .productCont .productCard {
    width: calc(50% - 10px);
  }
}
@media (max-width: 600px) {
  .productWrapper .productCont .productCard {
    width: 100%;
  }
}
.productWrapper .productCont .productCard .productImg {
  width: 100%;
}
.productWrapper .productCont .productCard .productLink {
  padding: 15px 30px;
  background-color: #76b900;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
}
.productWrapper .productCont .productCard .productLink:hover {
  background-color: #fff;
}/*# sourceMappingURL=style.css.map */