.barber-page {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70% center;
}
.barber-page .barber-page__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 60px;
  padding-bottom: 96px;
}
.barber-page__inner-pagination {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.barber-page__inner-pagination .barber-page__inner-bullet {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  border: 0.774px solid var(--white, #f8f5f0);
  border-radius: 50%;
  background-color: var(--white, #f8f5f0);
}
.barber-page__inner-pagination .barber-page__inner-bullet.disabled,
.barber-page__inner-pagination .barber-page__inner-bullet:disabled {
  pointer-events: none;
  background-color: transparent;
}
.barber-page__inner-pages {
  color: var(--grey, #555);
  font-size: 12px;
  font-weight: 400;
}
.barber-page__inner-pages .active {
  color: var(--white, #f8f5f0);
}
.barber-page__inner-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.barber-page__inner-name {
  font-size: 18px;
  font-weight: 700;
}
.barber-page__inner-description {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .barber-page {
    background-position: center center;
  }
  .barber-page .barber-page__inner {
    width: 50%;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 32px;
    padding-bottom: 0;
    padding-top: 140px;
  }
  .barber-page__inner-pagination {
    flex-direction: row;
  }
  .barber-page__inner-text {
    gap: 12px;
  }
  .barber-page__inner-name {
    font-size: 22px;
  }
  .barber-page__inner-description {
    font-size: 17px;
  }
}

@media screen and (min-width: 1440px) {
  .barber-page .barber-page__inner {
    width: 40%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0x;
  }
  .barber-page__inner-pagination {
    flex-direction: column;
    gap: 8px;
  }
  .barber-page__inner-pagination .barber-page__inner-bullet {
    border: 1px solid var(--white, #f8f5f0);
  }
  .barber-page__inner-pages {
    font-size: 14px;
  }
}

@media screen and (min-width: 1920px) {
  .barber-page .barber-page__inner {
    gap: 60px;
  }
  .barber-page__inner-pagination .barber-page__inner-bullet {
    width: 30px;
    height: 30px;
  }
  .barber-page__inner-text {
    gap: 16px;
  }
  .barber-page__inner-name {
    font-size: 24px;
  }
  .barber-page__inner-description {
    font-size: 18px;
  }
}
