.custom-scrollbar {
  overflow: auto;
}

@supports (-moz-appearance:none) {
  .custom-scrollbar {
    scrollbar-color: #004068 transparent;
    scrollbar-width: thin;
  }
}

.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  padding-right: 2px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: unset;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #004068;
  border-radius: 10px;
  width: 5px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #003f69;
}

.pagination .nav-links {
  gap: 8px;
}

.pagination .nav-links .page-numbers {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #063b6d;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid #063b6d;
  border-radius: 0.375rem;
  background-color: transparent;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.pagination .nav-links .page-numbers:hover,
.pagination .nav-links .page-numbers.current {
  color: #fff;
  background-color: #335485;
  border-color: #335485;
}

.main-btn {
  color: white;
  background-color: #063b6d;
  border-color: #063b6d;
}
.main-btn:hover {
  color: white;
  background-color: #335485;
  border-color: #335485;
}

.main-title {
  color: #063b6d;
}

.main-bg {
  background-color: #063b6d;
}

.main-bg .main-title {
  color: white;
}