.jumbotron {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 30vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.jumbotron::after {
  content: "";
  background-color: rgba(0, 51, 21, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 30vw;
}

.jumbotron .title-font-size {
  position: relative;
  color: white;
  font-size: 3rem;
  z-index: 50;
  font-weight: 600;
  padding: 5px;
  text-shadow: 0 0 6px black;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}

.container .left-category {
  width: 25%;
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container .left-category .header {
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.5);
}

.container .left-category hr {
  width: 50%;
}

.container .left-category .detail {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.container .left-category .detail:hover > a {
  color: green;
}

.container .left-category .active > a {
  color: green;
  font-weight: bold;
}

.container .main-content {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.container .main-content .rec-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  width: 30%;
  min-width: 250px;
  margin: 1.5%;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: white;
  border-radius: 8px;
  padding: 20px 0px;
  cursor: pointer;
  text-decoration: none;
  color: black;
}

.container .main-content .rec-item .image-div {
  width: 100%;
  height: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-y: hidden;
}

.container .main-content .rec-item .image-div img {
  height: 90%;
  max-width: 230px;
}

.container .main-content .rec-item .rec-item-title {
  min-height: 50px;
  font-size: 16px;
  margin-top: 10px;
  text-align: center;
  margin-bottom: 10px;
  padding: 0px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .main-content .rec-item .rec-item-price {
  font-size: 16px;
  color: #686868;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container .left-category {
    padding: 0 10px 0 10px;
    width: 100%;
  }
  .container .left-category hr {
    width: 100%;
  }
  .container .left-category .detail,
  .container .left-category .header {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .container .main-content {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*# sourceMappingURL=product.css.map */