.main-header {
  border-top: 4px solid var(--default);
  position: absolute;
  width: 100%;
  height: 80px;
  z-index: 99;
  display: flex;
  align-items: center;
  overflow: hidden;
  top: 0;
  background-color: var(--header-bg);
}

.main-header.is-sticky {
  backdrop-filter: blur(10px);
  animation: 0.55s ease-in-out slideDown;
  box-shadow: 0px 25px 20px -20px rgba(233, 233, 233, 0.45);
  position: fixed;
  top: 0;
  padding: 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-left .logo-nav {
  display: block;
  height: 100%;
  width: 100%;
}

.header-left .logo-nav img {
  max-width: 200px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-right button {
  color: var(--default);
  background:transparent;
  cursor:pointer;
}
.navbar-list {
  display: none;
  align-items: center;
  margin-right:20px;
}

.navbar-list li {
  line-height: 80px;
  color: var(--default);
}

.navbar-list li a {
  padding: 0 15px;
  width: 100%;
  height: 100%;
  display: block;
  color: currentColor;
  font-size: 14px;
  font-weight: bold;
}

.navbar-list li.active-item {
  background-color: var(--default);
  color: var(--white);
}

.hamburger-side {
  padding-left: 20px;
}

.hamburger-side button {
  color: var(--default);
  font-size: 20px;
  background-color: transparent;
  border: none;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* mobile */
.mobile-navbar {
  position: fixed;
  z-index: 101;
  right: 0;
  padding: 20px;
  height: 100vh;
  background: var(--mobile-menu);
  max-width: 100%;
  width: 100%;
  transform: translateX(100%);
  transition: 0.3s ease-in;
  overflow: hidden;
  visibility: hidden;
}
.mobile-navbar.active-menu {
  transform: translateX(0);
  transition: 0.3s ease-out;
  overflow: visible;
  visibility: visible;
  opacity: 1;
}
.overlay {
  position: fixed;
  height: 100vh;
  inset: 0;
  z-index: 100;
  background: var(--overlay);
  opacity: 0;
  transform: translateX(-100%);
  transition: 0.3s ease-in;
  visibility: hidden;
}

.overlay.active-lay {
  visibility: visible;
  opacity: 1;
  transition: 0.3s ease-out;
  transform: translateX(0);
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.mobile-logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.mobile-logo a img {
  max-width: 180px;
  width: 100%;
  height: auto;
}

.mobile-close button {
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--white);
}

.mobile-body {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  max-height: 400px;
  overflow-y: auto;
}

.mobile-body .mobile-list {
  width: 100%;
  margin-bottom: 20px;
}

.mobile-list li:not(:last-child) {
  margin-bottom: 20px;
}

.mobile-body::-webkit-scrollbar {
  width: 2px;
}

.mobile-body::-webkit-scrollbar-track {
  background: var(--scrollbar);
}

.mobile-body::-webkit-scrollbar-thumb {
  background: var(--white);
}

.mobile-list li a {
  color: var(--white);
  font-weight: bold;
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .mobile-body {
    justify-content: space-between;
  }
  .mobile-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .mobile-body .mobile-list {
    width: 47%;
    margin-bottom: 30px;
  }
  .mobile-navbar {
    max-width: 600px;
  }
  .mobile-navbar {
    padding: 20px 50px;
  }

  .mobile-logo a img {
    max-width: 200px;
  }

  .mobile-list li:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 992px) {
  .navbar-list {
    display: flex;
  }
}

@media screen and (min-width: 1200px) {
  .navbar-list li a {
    font-size: 16px;
  }
}




/*footer*/
.footer {
    display: flex;
    align-items: center;
    padding: 10px;
    min-height: 70px;
    background-color: var(--default);
}
.footer-other{
    background-color:var(--footer-bg);
}
.footer-other .footer-social-list li{
    color:var(--whitesmoke) !important;
    background:var(--default) !important;
}
.footer-social-list {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content:center;
        flex-wrap: wrap;
}

.footer-social-list li {
    border-radius: 50%;
    background: var(--btn);
    flex-shrink: 0;
    color: var(--default);
    width: 36px;
    height: 36px;
    transition: .3s ease-in-out;
}

.footer-social-list li:hover {
    background-color: var(--green);
    color: var(--white);
}

.footer-social-list li a {
    color: currentColor;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer-social-list li a i {
    font-size: 18px;
}

@media screen and (min-width:992px){
    .footer-social-list{
        justify-content: flex-end;
        gap: 10px;
    }
}