.products-highlight {
    display: flex;
    flex-direction: column;
    gap: 150px;
  .item {
    display: flex;
    align-items: center;
    padding: 0 8vw;
    box-sizing: border-box;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 50px;
    .content {
      h1 {
        margin: 10px 0;
        font-size: clamp(2.1rem, 4vw, 3rem);
        text-transform: capitalize;
        font-weight: 500;
      }
      p {
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        width: 100%;
        max-width: 600px;
        margin-right: 40px;
        width: auto;
      }
    }
    .image {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      img {
        width: 70vw;
        aspect-ratio: 1/1;
        object-fit: contain;
        max-width: 500px;
      }
      img:hover{
        transform: scale(1.05) translateY(-20px);
      }
    }
    .image::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background: #fbe9de;
      z-index: -1;
    }
  }
  .odd{
    flex-direction: row;
  }
  .even{
    flex-direction: row-reverse;
    flex-wrap: wrap;
  }
}
