.hero-product {
  position: relative;
  width: 100%;
  padding: 48px 0;
  background: linear-gradient(114.95deg, #dff1ff 18.25%, #fde6e8 81.75%);
  overflow: hidden;
}

.hero-product .title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  z-index: 10;
  position: relative;
}

.hero-product .title h1 {
  font-family: "1FTV VIP Classico URW Bold";
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  text-align: center;
  text-transform: uppercase;
  color: #005e9a;
}

.hero-product .title p {
  font-family: "1FTV VIP Classico URW";
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #005e9a;
}

.frame-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 144px;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.category__product .product {
  padding: 56px 0;
  background: linear-gradient(165.52deg, #f5f6f9 10.25%, #ffffff 89.75%);
  position: relative;
  overflow: hidden;
}
.frame-overlayy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 144px;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 100;
}

.category__product .product .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  position: relative;
  z-index: 101;
  align-items: center;
}

.category__product .product .container .content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.category__product .product .container .image {
  width: 526px;
  height: 575px;
  position: relative;
  overflow: hidden;
}

.category__product .product .container .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 526px;
  max-height: 575px;
  width: auto;
  height: auto;
}
.category__product .product .container .content .title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.category__product .product .container .content .title .name {
  font-family: "1FTV VIP Classico URW Bold";
  font-weight: 500;
  font-size: 48px;
  line-height: 130%;
  text-transform: uppercase;
  background: linear-gradient(90deg, #6282b0 0%, #ca2c85 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category__product .product .container .content .title .tagline {
  color: #0a9fed;
  font-family: "1FTV VIP Classico URW";
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  text-transform: uppercase;
}
.category__product .product .container .content .des {
  color: #0a4670;
  font-family: "1FTV VIP Classico URW";
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 3%;
}

.category__product .product .container .content a {
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid transparent;
  color: #055587;
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-transform: uppercase;
  transition: background-position 0.3s ease, color 0.3s ease;
  background-size: 200% auto;
  text-decoration: none;
  background: linear-gradient(rgb(251, 253, 255), rgb(252, 254, 255))
      padding-box,
    linear-gradient(to right, #6282b0, #ca2c85) border-box;
  border-radius: 4px;
  border: 1px solid transparent;
  align-self: start;
}
.category__product .product .container .content a:hover {
  background: linear-gradient(90deg, #5983b4 0%, #e070a6 100%);
  color: #ffffff;
}
@media screen and (max-width: 1200px) {
  .category__product .product .container {
    gap: 50px;
  }
}

@media screen and (max-width: 960px) {
  .category__product .product .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .category__product .product .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .category__product .product .container .image {
    width: 326px;
    height: 390px;
    position: relative;
    overflow: hidden;
  }
  .category__product .product .container .image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .category__product .product {
    padding: 30px 0;
  }
  .hero-product .title h1 {
    font-size: 32px;
  }
  .category__product .product .container .content {
    gap: 20px;
  }
  .category__product .product .container .content .title .name {
    font-size: 28px;
  }
  .category__product .product .container .content .title .tagline {
    font-size: 16px;
  }
  .category__product .product .container .content .des {
    font-size: 14px;
    text-align: justify;
  }
}

@media screen and (max-width: 460px) {
  .hero-product .title h1 {
    font-size: 22px;
  }
}
