* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

.product-info {
  position: relative;
  width: 100%;
  background: url(/assets/img/all-images/back2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 6rem;
  z-index: 1;
}

.product-info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.ins-product-info {
  background: #020e1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem;
  border-radius: 1rem;
}

.left-product {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-product img {
  width: 80%;
  object-fit: cover;
  border-radius: 1rem;
}

.right-product {
  width: 60%;
}

.right-product h2 {
  font-size: 40px;
  font-weight: 800;
  color: #f2f2f2;
  margin-bottom: 1rem;
}

.right-product p {
  font-size: 18px;
  color: #f2f2f2;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  text-align: justify;
}

@media (max-width: 1200px) {
  .product-info {
    padding: 4.5rem 4rem;
  }
  .right-product h2 {
    font-size: 37px;
  }
  .right-product p {
    font-size: 17px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 1100px) {
  .product-info {
    padding: 4rem 2rem;
  }
  .right-product h2 {
    font-size: 35px;
    margin-bottom: 5px;
  }
  .right-product p {
    font-size: 16px;
    line-height: 1.4;
  }
}

@media (max-width: 900px) {
  .product-info {
    padding: 4rem 1rem;
  }
  .right-product h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .ins-product-info {
    flex-direction: column;
    gap: 3rem;
  }
  .left-product {
    width: 70%;
  }
  .left-product img {
    width: 100%;
  }
  .right-product {
    width: 90%;
  }
}

@media (max-width: 425px) {
  .product-info {
    padding: 2rem 1rem;
  }
  .ins-product-info {
    padding: 1rem;
  }
  .left-product {
    width: 90%;
  }
  .right-product p {
    margin-bottom: 1rem;
  }
}

@media (max-width: 310px) {
  .ins-product-info {
    padding: 10px;
    gap: 2rem;
  }
  .right-product h2 {
    font-size: 28px;
  }
}
