/* === PRODUCT SECTION === */
.product {
  margin: 45px auto;
  width: 90%;
  max-width: 1760px;
  -o-transition: 1.1s .4s;
  -moz-transition: 1.1s .4s;
  transition: 1.1s .4s;
}

/* === EACH SECTION === */
.biz-show-one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6f6f6;
  border-radius: 16px;
  overflow: hidden;
}

/* === IMAGE === */
.bs-one-img-cntr {
  flex: 1;
  min-width: 50%;
  position: relative;
}

.bs-one-img-cntr img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* === TEXT === */
.bs-one-desc {
  flex: 1;
  padding: 2%;
  box-sizing: border-box;
}

.bs-one-desc h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 24px;
  position: relative;
}

.bs-one-desc h3::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 36px;
  height: 3px;
  background: #9E4493;
}

.desc {
  margin-bottom: 20px;
}

.desc h4 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.desc h5 {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* === REVERSED ORDER FOR SECOND ITEM === */
.biz-show-one-2 {
  flex-direction: row-reverse;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .biz-show-one {
    flex-direction: column;
  }

  .bs-one-desc {
    margin: auto;
  }

  .bs-one-img-cntr {
    min-width: 100%;
  }

  .bs-one-desc h3 {
    font-size: 24px;
  }

  .desc h4 {
    font-size: 16px;
  }

}

@media (max-width: 600px) {
  .bs-one-desc {
    padding: 30px 15px;
  }

  .bs-one-desc h3 {
    font-size: 20px;
  }

  .desc h5 {
    font-size: 14px;
  }
}
