html {
  scroll-behavior: smooth;
}

.button_navigator {
  cursor: pointer;
  width: 48px;
  height: 48px;
  position: fixed;
  top: 120px;
  right: 56px;
  border: none;
  background-image: url(./icon-navigator-white-v2.svg);
  background-size: 20px;
  background-color: rgba(30, 140, 170, 0.6);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  z-index: 22;
}

.button_navigator:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1023px) {
  .button_navigator {
    top: 80px;
    right: 10px;
    position: fixed;
  }
}

.area_navigator {
  visibility: hidden;
  width: 20%;
  height: 0%;
  position: fixed;
  top: 180px;
  right: 58px;
  z-index: 9;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(245, 245, 245, 0.7);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px lightgray;
  border-radius: 25px;
}

.area_navigator {
  transition: all 0.5s;
}

.act_area_navigator {
  visibility: visible;
  height: 100%;
  padding: 20px 5px 20px 5px; /* top, right, bottom, left */
}

@media screen and (max-width: 1023px) {
  .area_navigator {
    width: 40%;
    top: 140px;
    right: 10px;
  }
}

.item_navigator {
  text-align: left;
  text-decoration: none;
  text-overflow: ellipsis;
  padding: 5px 5px 5px 5px; /* top, left, bottom, right */
  color: rgb(13, 90, 112);
  white-space: nowrap;
  overflow: hidden !important;
  display: block;
}

#item_navigator_H1 {
  margin-top: 10px;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 900;
}

#item_navigator_H2 {
  margin-top: 5px;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 900;
}

#item_navigator_H3 {
  padding-left: 30px;
  font-size: 14px;
}

#item_navigator_H4 {
  padding-left: 40px;
  font-size: 12px;
}

@media screen and (max-width: 1023px) {
  #item_navigator_H1 {
    padding-left: 15px;
    font-size: 16px;
  }

  #item_navigator_H2 {
    padding-left: 20px;
    font-size: 14px;
  }
  icon- #item_navigator_H3 {
    padding-left: 30px;
    font-size: 12px;
  }

  #item_navigator_H4 {
    padding-left: 40px;
    font-size: 10px;
  }
}
