/*!
Theme Name: ecommerce
*/

.hww {
    flex-direction: column;
}

.hww_dist {
    margin-top: 100px;
}

.hww_blocks {
    width: 100%;
    margin-top: -100px;
}

.hww_block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 1em;
  color: var(--text_color1);
  gap: 1em;
}

.hww_wrap {
  display: flex;
  height: 30vh;
  border-radius: 50px;
  background-color: var(--elem_color1);
}

.hww_htext {
  font-size: var(--h3);
  font-weight: 500;
}

.hww_text {
  font-size: var(--h4);
}

.hww_wrap_left {
  flex-direction: row;
}

.hww_wrap_right {
  flex-direction: row-reverse;
}

.hww_bg {
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  width: 50%;
}

.hww_bg_left {
  border-radius: 50px 0 0 50px;
}

.hww_bg_right {
  border-radius: 0 50px 50px 0;    
}

@media (max-width: 960px) {

  .hww_htext {
    font-size: var(--h4);
  }

  .hww_text {
    font-size: var(--h5);
  }

  }

  @media (max-width: 600px) {

  .hww_htext {
    font-size: var(--h5);
  }

  .hww_text {
    font-size: var(--h6);
  }

}