/* color */
/* font */
/* transition */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pageTitle {
  font-size: 20px;
  font-weight: 700;
  color: #386934;
  text-align: center;
  margin-bottom: 50px;
}

.insContent {
  position: relative;
}

.insContent:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/ins_product_bg.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 0;
  pointer-events: none;
}

@media (max-width: 640px) {
  .insContent:after {
    background-size: cover;
    background-repeat: repeat;
  }
}