@import url("./root.4963a2834073.css");
@import url("./typography.7e634a48b4f7.css");
@import url("./btn.6959a509544b.css");
@import url("./icons.81f29513a982.css");
@import url("./alerts.a4b83dc2b3b5.css");

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  color: var(--gray-900);
  background: var(--gray-100);
  overflow-x: hidden;
  min-height: 100vh;
}
body:not(.is-loaded) {
  overflow: hidden;
}
hr {
  border: 0;
  width: 100%;
  border-top: 1px solid var(--gray-500);
  margin: 0;
}
.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contain-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Top Header Navigation */
.top-navigationbar {
  color: white;
  background: var(--gray-800);
}
.side-navigationbar-toggler {
  width: 20px;
  height: 14px;
  position: relative;
  display: inline-block;
}
.side-navigationbar-toggler.open {
  transform: rotate(-90deg);
}
.side-navigationbar-toggler .line {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  border-radius: 2px;
  background-color: white;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.side-navigationbar-toggler .line.line1 {
  top: 0;
  width: 80%;
}
.side-navigationbar-toggler:hover:not(.open) .line1 {
  top: -1px;
}
.side-navigationbar-toggler .line.line2 {
  top: 6px;
}
.side-navigationbar-toggler .line.line3 {
  bottom: 0;
  width: 60%;
}
.side-navigationbar-toggler:hover:not(.open) .line3 {
  bottom: -1px;
}
.side-navigationbar-toggler.open .line1 {
  left: 1px;
  top: 5px;
  width: 20px;
  transform: rotate(90deg);
  transition-delay: 150ms;
}
.side-navigationbar-toggler.open .line2 {
  left: 3px;
  top: 13px;
  width: 10px;
  transform: rotate(45deg);
  transition-delay: 50ms;
}
.side-navigationbar-toggler.open .line3 {
  left: 9px;
  top: 13px;
  width: 10px;
  transform: rotate(-45deg);
  transition-delay: 0.1s;
}

/* Sidebar Navigation */
.side-navigationbar {
  position: sticky;
  top: 66px;
  width: 100%;
  max-width: 256px;
  height: calc(100vh - 66px);
  padding: 24px 16px;
  overflow: auto;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: nowrap;
  background: var(--gray-900);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1020;
}
@media (min-width: 768px) {
  .side-navigationbar.collapsed {
    max-width: 80px;
  }
  .side-navigationbar.collapsed .menu {
    align-items: center;
  }
  .side-navigationbar.collapsed .nav-link .text {
    display: none;
  }
}
.menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu .title {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-300);
  text-transform: uppercase;
}
.menu .navbar-nav {
  gap: 4px;
}
.menu .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--gray-300);
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s;
}
.menu .nav-link:hover,
.menu .nav-link.active {
  color: var(--gray-900);
  background-color: var(--yellow);
}
@media (max-width: 767px) {
  .side-navigationbar {
    position: fixed;
    transform: translateX(0);
  }
  .side-navigationbar.collapsed {
    transform: translateX(-100%);
  }
}

/* Footer Styles */
footer .footer-top {
  padding-block: 50px;
  color: white;
  background: var(--gray-800);
}
footer .footer-bottom {
  background: var(--gray-900);
}
footer p {
  color: var(--gray-400);
}
footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-900);
}
footer #id_newsletter_form input {
  height: 50px;
  background: white;
  border: none;
  outline: none;
  appearance: none;
  padding: 10px 16px;
  color: var(--gray-900);
  font-weight: 500;
  flex-grow: 1;
}
footer #id_newsletter_form button {
  height: 50px;
  width: 50px;
  border: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  font-size: 20px;
  color: white;
}

#id_to_top {
  position: fixed;
  bottom: -70px;
  right: 15px;
  opacity: 0;
}
#id_to_top.show {
  opacity: 1;
  bottom: 15px;
  animation: bounce 2s infinite ease-in-out;
}
@keyframes bounce {
  0%,
  100% {
    bottom: 15px;
  }
  50% {
    bottom: 30px;
  }
}
