/* HOME PAGE */
.main-home {
  height: 100%;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
}

.main-home > img,
.main-home .text-section {
  display: none;
}

.banner-section {
  width: 100%;
  height: 100%;
}

.banner-section img {
  width: 100%;
  height: auto;
  border: 1px solid #000;
  border-color: #000 transparent;
}


@media (min-width: 1024px) {
  .main-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(10, 187.5px);
  }

  .banner-section {
    display: none;
  }

  .main-home > img {
    width: 100%;
    height: 100%;

    display: flex;
    grid-row: span 3;
    object-fit: cover;
    border: 1px solid #000;
  }

  .main-home .text-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid #000;

    width: 100%;
    height: 100%;

    grid-row: span 2;
  }

  .main-home .text-section > div:first-child {
    padding: 1em 0 0 1.5rem;
  }

  .main-home {
    grid-template-rows: repeat(10, 230px);
  }
}
