section {
  padding: 10px;
  width: 100%;
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;
  margin: 20px auto;
  box-sizing: border-box;
}
section ul {
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-block;
  margin: 20px 0 30px;
  width: 100%;
  padding-left: 0px;
  max-height: 42px;
}
section ul li {
  display: inline-block;
  color: black;
  font-size: 14px;
  padding: 6px 23px;
  padding-top: 10px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  margin: 0;
  list-style: none;
  letter-spacing: 1px;
}
.select {
  color: #fff;
  background: #252525;
}
.products {
  display: flex;
  justify-content: center;
  overflow: hidden;
  flex-wrap: wrap;
  height: 610px;
  min-height: 320px;
  transition: all 0.5s ease-in-out;
}
.item_box {
  position: relative;
  float: left;
  height: 290px;
  width: 340px;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px;
  cursor: pointer;
  text-align: center;
}
.shuffle-item {
  padding: 10px !important;
  margin: 5px;
}

.img_wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.img_wrapper > h3 {
  position: absolute;
  z-index: 1;
  color: white;
  padding: 20px;
  justify-content: center;
  transition: 0.5s;
  top: 50px;
  left: 20px;
  opacity: 0;
  width: 300px;
  font-size: 20px;
}
.img_wrapper::after {
  opacity: 0;
  position: absolute;
  content: "";
  top: 0;
  right: auto;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.2s ease-in-out;
}
.img_wrapper:hover::after {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.img_wrapper:hover {
  transform: scale(1.2);
}
.img_wrapper:hover > h3 {
  top: 100px;
  opacity: 1;
}
.img_wrapper > p {
  position: absolute;
  font-size: 15px;
  font-weight: 700;
  color: white;
  z-index: 2;
  justify-content: center;
  transition: 0.5s;
  top: 50px;
  left: 50px;
  opacity: 1;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  border-bottom: solid #252525 5px;
  overflow-x: hidden;
}
.img_wrapper:hover > p {
  opacity: 0;
}
.img_wrapper > h3::after{
  content: '';
  position: absolute;
  height: 5px;
  width: 0%;
  background: #fff;
  left: 50px;
    bottom: 10px;
  transition: all 0.5s ease;
}
.img_wrapper > h3:hover::after{
  width: 200px;
}
@media (max-width:575px) {
  .img_wrapper > h3::after{
    left: 30px;
  }
  .img_wrapper > h3:hover::after{
    width: 138px;
  }
}
.all_btn {
  position: relative;
  height: 100px;
  background-color: #ffb600;
}
@media (max-width: 786px) {
  .products {
    margin-top: 60px;
  }
}
@media (max-width: 487px) {
  section ul {
    border: none;
    text-align: center;
    margin-bottom: 50px;
  }
  .products {
    height: 100%;
    margin-top: 40px;
  }
  .img_wrapper > h3 {
    font-size: 15px;
    width: 200px;
  }
  section ul li {
    font-size: 12px;
    padding: 4px;
  }
}
.pro_details{
  width: 100%;
  padding: 40px;
  display: flex;
  min-height: 100vh;
  height: 500px;
  overflow: hidden;
}
.pro_img{
  height: 300px;
  width: 300px;
}
.pro_img img{
  width: 300px;
  height: 100%;
}
.proj{
  margin: 0px;
}
.pro_cont1{
  padding-left: 20px;
  display: block;
}
.pro_cont1 > h2{
  color: #747474;
  font-size: 16px;
  line-height: 20px;
}
.pro_cont1 > p{
  font-size: 25px;
  color: #252525;
  text-transform: none;
  line-height: 20px;
  letter-spacing: 0px;
}
.pro_cont2 > h2{
  color: #747474;
  font-size: 16px;
  line-height: 20px;
}
.pro_cont2 > p{
  font-size: 14px;
  color: #252525;
  text-transform: none;
}
@media screen and (max-width:991px) {
  .pro_details{
    display: block;
    margin: 10px;
    height: 100%;
  }
  .pro_img{
    height: 300px;
    width: 100%;
  }
  .pro_img img{
    width: 100%;
  }
  .proj{
    padding-top: 20px;
  }
}
.banner-cont{
  background: transparent !important;
}

.pro-img{
  object-fit: cover !important;
  height: 100% !important;
  width: 100% !important;
}