@media (max-width: 1400px) {
  .curved .content .btn {
    flex-direction: column;
  }
}
@media (max-width: 1250px) {
  .stairs-container {
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
  }
  .title {
    width: 90vw;
  }
}
@media screen and (max-width: 1050px) {
  main section {
    width: 100%
  }
  .left-side .arrows {
    display: none;
  }
  .curved .header {
    padding: 1rem;
  }
  .curved .header .center-logo {
    position: inherit;
    padding: 1rem;
  }
  .carousel {
    grid-template-columns: 1fr;
  }
  .curved .content .btn {
    flex-direction: row;
  }
  .left-side .learn-more {
    display: none;
  }
  .curved .learn-more {
    padding-top: 0;
  }
  .curved .bottom-arrows {
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    column-gap: 1rem;
    row-gap: 2rem;
  }
}
@media screen and (max-width: 680px) {
  header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
  }
  header div:nth-child(2) {
    padding-right: unset;
  }
  header div:nth-child(2) button {
    padding: 0.6rem 0.3rem;
  }
  .stairs {
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
  }
  .stairs img {
    max-width: 200px;
    margin: auto;
  }
}