.portfolio-page__pagination .pagination a {
  /* color: #007bff;
  border: 1px solid #007bff; */
  color: var(--color-base);
  border: 1px solid var(--color-base);
  padding: 5px 10px;
  border-radius: 3px;
  margin: 0 1px;
}

.portfolio-page__pagination .pagination a:hover {
  /* background-color: #007bff; */
  background-color: var(--color-base);
  color: #fff;
}

.portfolio-page__pagination .pagination .active a {
  /* background-color: #007bff; */
  background-color: var(--color-base) !important;
  color: #fff;
}

.portfolio-page__pagination .pagination .disabled a {
  color: #6c757d;
  pointer-events: none;
  cursor: not-allowed;
}

/* News Highlight Section */
.news-highlight {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  margin-left: 20px;
}

.news-title {
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  margin-right: 20px;
}

/* Header Section */
.header1 {
  background-color: #007bff;
  padding: 10px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}

/* Logo Styles */
.logo1 img {
  width: 150px;
  height: auto;
}

/* Marquee Section */
.news-marquee {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  overflow: hidden;
  width: 800px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.news-marquee marquee a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 0 10px;
}

.news-marquee marquee a:hover {
  text-decoration: underline;
}

.sticky-top1 {
  transition: 0.5s;
  background: var(--bs-white);
}

.topbar {
  padding: 10px 0;
}

.topbar .top-info {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.topbar .top-link {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.container1,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.fw-thin {
  font-weight: 100;
}

.text-uppercase {
  font-size: 14px;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.link-hover {
  transition: 0.5s;
}

.link-hover:hover {
  color: var(--bs-primary) !important;
}

.img-zoomin {
  transition: 0.5s;
}

.img-zoomin:hover {
  transform: scale(1.1);
}

/*** Topbar Start ***/
.sticky-top {
  transition: 0.5s;
  background: var(--bs-white);
}

.topbar {
  padding: 10px 0;
}

.topbar .top-info {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.topbar .top-link {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

@media (max-width: 1400px) {
  .sticky-top .top-link {
    display: none;
  }
}

.topbar .top-link a {
  font-size: medium;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
}

.topbar .top-link a small:hover {
  color: var(--bs-secondary) !important;
  transition: 0.5s;
}

.topbar .top-link a small:hover i {
  color: var(--bs-primary) !important;
}

#note {
  position: relative;
  animation: noteAnimate 50s linear infinite;
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation-play-state: running;
  overflow: hidden; /* Pastikan konten yang berjalan keluar dari area ini */
}

#note:hover {
  animation-play-state: paused;
}

@keyframes noteAnimate {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    font-weight: 400;
    font-family: "Fredoka", sans-serif;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    transition: 0.5s;
    opacity: 0;
  }
}

@media (min-width: 1200px) {
  .navbar .navbar-collapse .border-top {
    border-top: none !important;
  }
}
