.product {
  padding: 12rem 0;
}

.product-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.product-img-wrapper {
  position: relative;
  padding-left: 6rem;
  padding-bottom: 7.4rem;
}

.product-card {
  opacity: 0.6;
  position: absolute;
  left: 0;
  bottom: 0rem;
}

.product-img {
  border-radius: 18px;
}

.product-content {
  max-width: 58.4rem;
}
.product-content-heading {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 157%;
  color: #424242;

  margin-bottom: 1rem;
}
.product-content-subtitle {
  font-family: "Georgia";
  font-weight: 700;
  font-size: 5rem;
  line-height: 157%;
  color: #000;

  margin-bottom: 2rem;
}

.product-content-text {
  max-width: 53rem;

  font-weight: 600;
  font-size: 2.5rem;
  line-height: 157%;
  color: #000;

  margin-bottom: 4rem;
}

/*---------------------media--------------------*/

@media (max-width: 760px) {
  .product {
    padding: 4rem 0;
  }

  .product-card {
    bottom: -10rem;
  }

  .product-content-subtitle {
    font-size: 3rem;
    line-height: 137%;

    margin-bottom: 1.5rem;
  }
}

@media (max-width: 630px) {
  .product-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
  }

  .product-card {
    display: block;
    bottom: -3rem;
  }

  .product-content-heading {
    margin-bottom: 3rem;
    line-height: 110%;
    font-size: 3rem;
  }
}
