.main-container {
  width: 100vw;
  min-height: 100svh;
  display: flex;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 64px 5%;
}

.imagen-500 {
  width: 500px;
  height: 331px;
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 480px) {
  .main-container {
    flex-direction: column;
    height: auto;
  }
  .column {
    padding: 40px 5%;
  }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
  .main-container {
    flex-direction: column;
    height: auto;
  }
  .column {
    padding: 40px 5%;
  }
}
}