div.switch {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-left: 1px solid var(--light-grey);
  border-right: 1px solid var(--light-grey);
  margin-bottom: 3rem;
}
div.switch div.images {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}
div.switch div.images div.image {
  border: 1px solid var(--light-grey);
  align-self: center;
}
div.switch div.images div.image img {
  width: 100%;
  display: block;
  height: auto;
  max-height: 250px;
}
div.switch p {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  padding: 0.5rem 1rem;
}
@media all and (max-width: 1024px) {
  div.switch {
    width: 100%;
  }
}

@media all and (max-width: 580px) {
  div.switch p {
    font-size: 1rem;
    font-weight: 500;
  }
  div.switch div.images {
    flex-direction: column;
    justify-content: flex-start;
  }
}
