.home {
  width: 100%;
  background: #F7F7F7;
}
.home .banner {
  background: white;
  position: relative;
}
.home .banner p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  font-weight: bolder;
  text-transform: uppercase;
}
.home .banner img {
  width: 100%;
  display: block;
}
.home .main .types {
  width: 90%;
  display: flex;
  justify-content: center;
  padding: 0 5%;
  border-bottom: 1px solid #EDEDED;
  background: white;
}
.home .main .types a {
  display: block;
  margin: 0 20px;
  position: relative;
  padding: 30px 0;
  color: #333333;
  transition: all 600ms;
}
.home .main .types a::after {
  content: "";
  background: #3B7925;
  width: 24px;
  height: 4px;
  margin: 0 auto;
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3px;
}
.home .main .types a:hover {
  color: #3B7925;
}
.home .main .types a:hover::after {
  display: block;
}
.home .main .types .active {
  color: #3B7925;
}
.home .main .types .active::after {
  display: block;
}
.home .main .pros {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  margin: 30px auto 0 auto;
}
.home .main .pros a {
  width: 23%;
  margin-bottom: 20px;
  margin-left: 2%;
}
.home .main .pros a .info .pic {
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  overflow: hidden;
}
.home .main .pros a .info .pic img {
  max-width: 100%;
  max-height: 90%;
  object-fit: contain;
  display: block;
  transition: all 600ms;
}
.home .main .pros a .info .name {
  text-align: center;
  color: #454545;
  font-size: 18px;
  margin: 20px 0;
}
.home .main .pros a .info:hover .pic img {
  transform: scale(1.05);
}
.home .main .pager {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.home .main .pager a {
  display: block;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  border: 1px solid black;
  margin: 0 2px;
  transition: all 600ms;
  font-size: 14px;
  color: black;
}
.home .main .pager a:hover {
  background: black;
  color: white;
}
.home .main .pager .active {
  background: black;
  color: white;
}
@media screen and (max-width: 1400px) {
  .home .main .pros a .info .pic {
    height: 300px;
  }
}
@media screen and (max-width: 1200px) {
  .home .main .types {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home .main .types a {
    padding: 10px 0;
    width: 48%;
    margin: 0;
    margin-bottom: 15px;
    text-align: center;
  }
  .home .main .pros {
    margin: 20px auto;
  }
  .home .main .pros a {
    width: 100%;
  }
}

/*# sourceMappingURL=products.css.map */
