.first_section {
  width: 100%;
  height: var(--first-section-height);
  position: relative;
}
.bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--first-section-height);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.first_section_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  color: var(--color-gold);
  text-transform: uppercase;
  font-family: var(--medium-font);
  font-size: var(--title-font-size-big);
  font-weight: var(--font-weight-medium);
  line-height: 122.336%; /* 182.467px */
  letter-spacing: 11.932px;
}
.second_section {
  padding: var(--page-padding);
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.scroll_down_box {
  position: absolute;
  bottom: 30px;
  right: 66px;

  color: var(--color-gold);
  font-family: var(--light-font);
  font-size: var(--text-font-size-extrabig);
  font-weight: var(--font-weight-thin);
  line-height: 122.336%; /* 30.584px */
  letter-spacing: 2px;
}
.page_navigation {
  width: 100%;
  margin-top: 76px;
  margin-bottom: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination {
  display: flex;
  gap: 10px;
}
.page_item {
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--color-blue);
  text-align: center;
  font-family: var(--bold-font);
  font-size: var(--text-font-size-big);
  font-weight: var(--font-weight-large);
  line-height: normal;
}

.page_item.active {
  padding: 6px 12px;
  font-size: var(--text-font-size-extrabig);
  border-radius: 4px;
  background: var(--color-gold);
}
