/* page bg */

.pageBg {
  position: relative;
  width: 100%;
  height: 205px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.bgImage {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bgText {
  font-family: poppinSemiBold;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  color: #186eb7;
}

/* product list */

.productCard {
  display: flex;
  column-gap: 40px;
  border-bottom: 1px solid #cacaca8a;
  padding-top: 30px;
  padding-bottom: 30px;
}

.productCardImage {
  width: 200px;
  height: 200px;
}

.productCardTitle {
  font-family: poppinMedium;
  font-size: 30px;
  font-weight: 500;
  line-height: 45px;
  margin-bottom: 20px;
}

.productCardDesc {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #707070;
}

@media only screen and (max-width: 992px) {
  .productCardTitle {
    margin-bottom: 10px;
  }

  .productList {
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .pageBg {
    height: 155px;
  }

  .productCardImage {
    width: 150px;
    height: 150px;
  }

  .productCardTitle {
    font-size: 25px;
  }
}

@media only screen and (max-width: 576px) {
  .pageBg {
    height: 135px;
  }

  .productCardImage {
    width: 130px;
    height: 130px;
  }

  .productCardTitle {
    font-size: 25px;
  }
}
