.Shop_By_Material {
  margin: 60px 0;
}

.Shop_By_Material .need_row {
  margin-bottom: 80px;
}

.Shop_By_Material .image_div {
  overflow: hidden;
  border-radius: 20px;
}

.Shop_By_Material .image_div img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s ease;
}

.Shop_By_Material .image_div:hover img {
  transform: scale(1.05);
}

.Shop_By_Material .content_div {
  padding: 40px;
}

.Shop_By_Material .content_div h3 {
  font-size: 36px;
  font-weight: 700;
  color: #6b4085;
  margin-bottom: 20px;
}

.Shop_By_Material .content_div p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.Shop_By_Material .shop_btn {
  background: #6b4085;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.Shop_By_Material .shop_btn:hover {
  background: #58326f;
}

.Shop_By_Material .view_all_holder {
  margin-top: 30px;
}

.Shop_By_Material .view_all_holder h4 {
  margin-left: auto;
  font-size: 20px;
  color: #6b4085;
  text-decoration: underline;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}

.Shop_By_Material .view_all_holder h4::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #6b4085;
}

/* ---------- Mobile ---------- */

@media (min-width:0px) and (max-width: 767px) {
  .Shop_By_Material {
    margin: 40px 0;
  }

  .Shop_By_Material .need_row {
    margin-bottom: 50px;
  }

  .Shop_By_Material .image_div img {
    height: 250px;
  }

  .Shop_By_Material .content_div {
    padding: 20px 0;
    text-align: center;
  }

  .Shop_By_Material .content_div h3 {
    font-size: 20px;
  }

  .Shop_By_Material .content_div p {
    font-size: 14px;
  }

  .Shop_By_Material .view_all_holder h4 {
    font-size: 14px;
  }
}

/* ---------- Tablet ---------- */

@media (min-width: 768px) and (max-width: 991px) {
  .Shop_By_Material .image_div img {
    height: 320px;
  }

  .Shop_By_Material .content_div {
    padding: 20px;
  }

  .Shop_By_Material .content_div h3 {
    font-size: 28px;
  }
}

/* ---------- Small Laptop ---------- */

@media (min-width: 992px) and (max-width: 1199px) {
  .Shop_By_Material .image_div img {
    height: 380px;
  }

  .Shop_By_Material .content_div {
    padding: 30px;
  }
}