.page1-carousel {
  height: 100%;
  min-width: 70px;
  width: 70px;
  background: white;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

.page1-carousel-item {
  min-height: 70px;
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(253, 162, 30);
  color: white;
  cursor: pointer;
  transition: all 0.5s;
}

.page1-content {
  flex-grow: 1;
  background-size: cover;
  background-position: center top;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.page1-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.page1-text p {
  font-size: 70px;
}

.page1-text p:first-child {
  margin-left: -57px;
}

@media only screen and (max-width: 1100px) {
  .page1-carousel {
    min-width: 50px;
    width: 50px;
  }
  
  .page1-carousel-item {
    min-height: 50px;
    height: 50px;
  }

  .page1-content {
    justify-content: center;
  }
  
  .page1-text {
    width: initial;
  }
}

@media only screen and (max-width: 750px) {
  .page1-text p {
    font-size: 50px;
  }

  .page1-text p:first-child {
    margin-left: -40px;
  }
}

@media only screen and (max-width: 550px) {
  .page1-text p {
    font-size: 40px;
  }

  .page1-text p:first-child {
    margin-left: -33px;
  }
}

@media only screen and (max-width: 400px) {
  .page1-text p {
    font-size: 30px;
  }

  .page1-text p:first-child {
    margin-left: -24px;
  }
}