.download-section {
  background-color: #ffffff;
  display: block;
}

.download-row {
  display: flex;
  background-color: #FEEFD4;
  flex-wrap: wrap;
  border-radius: 2.25rem;
  overflow: hidden;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.download-section-mobile {
  background-color: #FFFFFF;
  display: none;
}


.download-title-text {
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 2.25rem;
}


.download-content-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
}

.download-image {
  height: 27.813rem;
  overflow: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
}


@media screen and (max-width: 1024px) {
  .download-section {
    display: none;
  }

  .download-section-mobile {
    display: block;
  }

  .download-column {
    display: flex;
    background-color: #FEEFD4;
    flex-wrap: wrap;
    border-radius: 1rem;
    overflow: hidden;
    flex-direction: column;
    align-content: center;
  }

  .download-title-text {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .download-content-text {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}