.custom-navbar {
  position: fixed;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  top: 0;
  padding: 10px;
  z-index: 999;
  display: flex;
  justify-content: center;
  height: 80px;
  width: 100%;
  background: url("../../assets/img/navbar.png") left / cover no-repeat, rgba(255, 255, 255, 0.8);
}

.navbar-inner-container {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
}

.navbar-image {
  height: 60px;
  width: auto;
}

.navbar-toggle-button {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  display: flex;
  font-size: 16px;
  background: var(--bs-primary);
  color: #fff;
  animation: navbar-trigger-animation 1.3s infinite;
  transition: 300ms;
  border: 3px solid var(--bs-primary);
}

.navbar-toggle-button:hover {
  background: #fff;
  transition: 300ms;
  border: 3px solid var(--bs-primary);
  color: #28904b;
  animation: normal;
}

.btn-icon {
  margin: 0;
  padding: 0;
}

::selection {
  background: #28904a;
  color: white;
}

::-webkit-scrollbar {
  width: 12px;
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-color: #28904a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #31b15b;
}

.sidebar {
  height: calc(100vh - 80px);
  width: 350px;
  position: fixed;
  right: 0;
  top: 80px;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.84);
  padding: 30px;
  transform: translateX(100%);
  transition: 300ms;
}

.sidebar-show {
  transform: translateX(0%);
  transition: 300ms;
}

.sidebar .list-group {
  border: none;
  border-radius: 0px;
  gap: 10px;
}

.sidebar .list-group .list-group-item {
  border: none;
  border-radius: 0px;
  background: transparent;
  border: 3px solid transparent;
  color: var(--bs-primary);
  font-family: Roboto, sans-serif;
  font-weight: 500;
  transition: 300ms;
  font-size: 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.sidebar .list-group .list-group-item:hover {
  border: 3px solid var(--bs-primary);
  background-color: #ffffff77;
}

.sidebar-list-icon {
  margin-right: 10px;
  font-size: 24px;
}

@media (max-width: 540px) {
  .sidebar {
    width: 100vw;
  }
}

.navbar-top-spacer {
  height: 80px;
  width: 100%;
}

/* ----- FOOTER ---- */

.footer-divider {
  height: 3px;
  width: 100%;
  background: var(--bs-primary);
  border-radius: 10px;
}

table.table tbody tr td {
  border: none !important;
  border-bottom: none !important;
  border-bottom-width: 0px !important;
}

.bottom-footer-text {
  color: var(--bs-primary);
}

footer .footer-col-heading {
  font-family: Roboto, sans-serif;
  font-size: 24px !important;
  color: var(--bs-primary);
}

.footer-content-text {
  color: var(--bs-primary) !important;
}

.bottom-footer-text .list-group {
  border: none;
}

.bottom-footer-text .list-group .list-group-item {
  border: none;
  background: transparent;
  color: var(--bs-primary);
  font-family: Roboto, sans-serif;
  font-weight: 500;
  transition: 300ms;
  font-size: 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.footer-linkedin {
  color: var(--bs-primary);
  font-size: 16px;
  cursor: pointer;
}

footer .list-unstyled li a {
  font-size: 16px;
  text-decoration: none;
  color: var(--bs-primary) !important;
  cursor: pointer;
  transition: 300ms;
}

footer .list-unstyled li a:hover {
  transition: 300ms;
  color: var(--bs-primary) !important;
  font-weight: 600;
}

/* --------- END OF STANDARD CODE ----------- */

