/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap");
body {
  font-family: "Poppins", sans-serif;
}
.title {
  font-family: "Maven Pro", sans-serif;
  font-style: italic;
  font-weight: 600;
}
.banner img {
  width: 100%;
  height: 650px;
}
.banner-wrap {
  position: relative;
}
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99999;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.banner-text-inner {
  width: 50%;
}
.banner-btn a {
  text-decoration: none;
  color: #fff;
  background-color: hotpink;
  display: inline-block;
  padding: 7px 15px;
  transition: 0.3s;
}
.banner-btn a:hover {
  background-color: rgb(228, 73, 151);
}
/* Product */
.product-inner {
  background-color: rgb(99, 188, 223);
  color: #fff;
}
.title-span {
  color: #40a1c7;
}
.product-title {
  text-transform: uppercase;
}
.product-title::after {
  content: "";
}
.product-img img {
  width: 100%;
  height: 300px;
}
.size {
  font-size: 16px;
}
.p-title {
  font-weight: 500;
}
.product-btn a {
  text-decoration: none;
  display: inline-block;
  padding: 6px 20px;
  background-color: rgb(228, 73, 151);
  color: #fff;
  border-radius: 3px;
  transition: 0.3s;
}
.product-btn a:hover {
  background-color: rgb(194, 54, 124);
}

/* Responsive */
@media (max-width: 576px) {
  .banner-text-inner {
    width: 100%;
  }
  .title {
    font-size: 29px;
  }
  .sub-title {
    font-size: 17px;
  }
  .product-title {
    font-size: 28px;
  }
}
