section#s1 {
  padding: var(--padSide);
  margin-top: var(--mergPad);

  display: grid;
  grid-auto-columns: minmax(min-content, max-content);
  justify-content: center;
  justify-items: center;
  gap: var(--mergPad);
}

/***** Products *****/
section#s1 > div#title {
  display: grid;
  grid-auto-rows: max-content;
  text-align: center;
  gap: var(--titleGap);
}
section#s1 > #products {
  text-align: center;
  display: grid;
  grid-auto-rows: min-content;
  gap: var(--mergPad);
  justify-content: center;
}
section#s1 > #products > div:first-of-type {
  display: grid;
  grid-auto-rows: auto;
  gap: var(--titleGap);
}section#s1 > #products > div:last-of-type{
  display: grid;
  grid-auto-rows: min-content;
  gap: var(--mergPad);
  justify-content: center;

}
section#s1 > #products > div:last-of-type > div{
  display: grid;
  grid-auto-rows: min-content;
  gap: var(--titleGap);
  padding: var(--titleGap);
  width: min-content;
}

section#s1 > #products img {
  padding: var(--titleGap);
  object-fit:cover;
  justify-self: center;
}

/***** Info *****/
section#s1 > div#info {
  display: grid;
  grid-auto-rows: min-content;
  grid-auto-columns: minmax(min-content, max-content);
  justify-items: center;
  gap: 50px;
  z-index: 2;
  margin-top: var(--mergPad);
}
section#s1  #hex {
  width: 100%;
  display: none;
}
section#s1  #hex_mobile {
  width: 100%;
}
section#s1 > div#info > div#title{
  display: grid;
  grid-auto-rows: min-content;
  gap: var(--titleGap);
  text-align: center;
  max-width: 600px;
}
section#s1 > div#info > :last-child {
  padding: 20px;
  max-width: 370px;
  text-align: left;
  display: grid;
  grid-auto-rows: min-content;
  gap: 20px;
  background-color: #817f87;
  color: white;
  border-radius: 45px;
}
section#s1 > div#info > :last-child p:first-child {
  line-height: 40px;
}
section#s1 > div#info > :last-child p:last-child {
  line-height: 25px;
  font-size: var(--text_2);
}

/****** For Laptop *****/
@media screen and (min-width: 960px) {
  /* Products */
  section#s1 > #products {
    grid-auto-rows: max-content;
    justify-content: center;
    justify-items: initial;
  }
  section#s1 > #products > div:last-of-type{
    grid-auto-flow: column;
    max-width: 1100px;
    width: 100%;
    justify-content: space-between;
  }
  /* Info */
  section#s1  #hex_mobile {
    display: none;
  }
  section#s1  #hex {
    display: initial;
  }

  section#s1 > div#info > div:first-of-type {
    grid-column: 1/3;
  }
}
