#products {
  padding-bottom: 4rem;
  background: var(--ar-white-2);
}

#products > .eg-container > .eg-wrapper {
  display: flex;
  gap: 1rem;
}

#products > .eg-container > .eg-wrapper > .left {
  width: 25%;
}

#products > .eg-container > .eg-wrapper > .right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 75%;
}

#products .right > .heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}

#products .right > .heading > small {
  color: var(--ar-grey-3);
  font-size: var(--font-18);
  font-weight: 400;
  letter-spacing: 4.5px;
}

#products .right > .heading > h1 {
  color: var(--ar-black);
  font-family: "DM Serif Display";
  font-size: var(--font-36);
  font-weight: 400;
}

@media (max-width: 1200px) {
  #products > .eg-container > .eg-wrapper > .left {
    width: 33.3333%;
  }
  #products > .eg-container > .eg-wrapper > .right {
    width: 66.6667%;
  }
}

@media (max-width: 992px) {
  #products > .eg-container > .eg-wrapper > .left,
  #products > .eg-container > .eg-wrapper > .right {
    width: 100%;
  }
  #products > .eg-container > .eg-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
}
