.row1 {
  display: flex;
  height: 500px;
  background-color: #883e24;
  padding-top: 60px;
  align-items: center;
}

.row-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  margin: 15px;

  /* border: 1px solid blue; */
  height: 300px;
}

@media (max-width: 1024px) {
  .row1 {
    flex-direction: column;
    height: 800px;
  }
  .row-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
