/* General Links */
a {
 text-decoration: none;
}
.nav-link:focus,
.nav-link:hover {
 color: #fff;
}
.topbar a {
 color: #fff;
 text-decoration: none;
 transition: all 0.2s ease-in-out;
}

.topbar a:hover {
 color: #fff !important;
 text-decoration: underline;
}
.topbar a:active {
 color: #fff !important;
}
/* Topbar */
.topbar {
 z-index: 1000;
 position: relative;
 background-color: var(--green-color);
}

.topbar > .container__wrapper {
 position: relative;
 z-index: 1000;
 padding: 0.5rem 8%;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.logo-top {
 display: flex;
 align-items: center;
 gap: 5px;
}

.logo-top img {
 object-fit: contain;
 aspect-ratio: 2/3;
 cursor: pointer;
}

.logo-top__text {
 display: flex;
 flex-direction: column;
 line-height: 15px;
 font-size: 12px;
 font-weight: 600;
}

.logo-top__text span {
 font-weight: 300 !important;
}

.logo-top:hover {
 text-decoration: none !important;
}

.topbar__actions {
 display: flex;
 list-style: none !important;
 gap: 25px;
 align-items: center;
 margin: 0 !important;
 padding: 0 !important;
}

.topbar__actions > li {
 color: #fff;
}

.topbar__link {
 display: flex;
 gap: 10px;
 align-items: center;
 font-size: 14px;
}

/* Navbar */
nav {
 position: sticky;
 top: 0;
 z-index: 999;
 background-color: #fff;
}
nav .container__wrapper {
 display: flex;
 align-items: center;
 gap: 20px;
 justify-content: space-between;
 padding: 10px 8%;
 transition: all 0.2s ease-in-out;
}

#scroll-progress {
 position: fixed;
 top: 0;
 left: 0;
 height: 6px;
 background: var(--green-color);
 width: 0%;
 z-index: 9999;
 transition: width 0.1s ease-out;
}

/* Navbar base */
nav {
 position: sticky;
 top: 0;
 z-index: 999;

 transition: all 0.3s ease;
}

/* Sticky style */
nav.sticky {
 box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

nav.sticky .container__wrapper {
 padding: 5px 8%;
}

.navbar__brand {
 display: flex;
 align-items: center;
 gap: 5px;
}

.logo-main {
 display: flex;
 align-items: center;
 gap: 5px;
 color: #000;
}

.logo-main:hover {
 color: #000;
 text-decoration: none;
}

.logo-main__text span {
 font-size: 19px;
 font-weight: 700;
}

.logo-main__text .small {
 font-size: 14px;
 font-weight: 400;
 white-space: nowrap;
 line-height: 13px;
 text-align: right;
 font-style: italic;
}

/* Navbar Links */
.navbar__links {
 display: flex;
 list-style: none !important;
 gap: 15px;
 align-items: center;
 margin: 0 !important;
 flex-wrap: nowrap;
}

.navbar__links > li > .nav__link {
 position: relative;
 font-size: 14px;
 font-weight: 400;
 color: #000;
 text-decoration: none;
 transition: all 0.1s ease-in-out;
 background: #eef4f0;
 padding: 7px 15px;
 border-radius: 20px;
}

.navbar__links > li > .nav__link:hover {
 color: var(--green-color);
}

.navbar__links > li > .nav__link.active {
 font-weight: 600;
 background-color: var(--green-color);
 color: #fff;
}

/* .navbar__links > li > .nav__link.active:after {
 content: "";
 display: block;
 width: calc(100% + 10px);
 left: -5px;
 position: relative;
 height: 3px;
 border-radius: 2px;
 background-color: var(--green-color);
} */

/* footer */

footer {
 background-color: var(--blue-dark-color);
}

footer > .container__wrapper {
 position: relative;
 padding: 4rem 8%;

 display: flex;
 justify-content: space-between;

 gap: 50px;
}
.ft_b {
 display: flex;
 justify-content: center;
 font-size: 12px;
 color: #fff;
 padding: 15px;
}
.footer__links {
 list-style: none;
 width: 100%;
 padding: 0 !important;
 display: flex;
 flex-direction: column;
 color: #fff;
 gap: 20px;
}
.imgs a:hover {
 transform: translateY(-3px);
}

.footer__links > li > a {
 color: #fff;
 font-size: 16px;
}
.footer__links > li > a:hover {
 text-decoration: underline;
}

.ft__row {
 display: flex;
 flex-direction: column;
 gap: 50px;
 width: 100%;
}

.wrp {
 display: flex;
 flex-direction: column;
 gap: 15px;
}

.ft__title {
 display: flex;
 flex-direction: column;
 gap: 5px;
 position: relative;
 color: #fff;
}
.ft__title::after {
 content: "";
 display: block;
 height: 2px;
 width: 130px;
}

.lz {
 display: flex;
 flex-direction: column;
}

.lz a {
 display: flex;
 align-items: center;
 gap: 10px;
}

.ft__title {
 font-size: 18px !important;
}

footer a {
 color: #fff !important;
}
footer a:hover {
 font-weight: 400 !important;
}

@media only screen and (max-width: 1127px) {
 .wb {
  display: none;
 }
 .mb {
  display: block;
 }

 .offcanvas-header {
  background-color: var(--color-light);
 }
 .offcanvas-body {
  padding: 0 !important;
 }
 .menu {
  display: flex;
  flex-direction: column;

  padding: 0 !important;
  list-style: none;
 }
 .menu li {
  padding: 15px 20px;
  border-bottom: 1px solid #dcead2;
 }
 .menu a {
  color: var(--color-dark);
 }
 .menu a.active {
  color: var(--color-1st);
  font-weight: 600;
 }
 .menu a:hover {
  color: var(--color-1st);
 }

 .dark {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  flex-direction: column;
  gap: 10px;
  background-color: var(--color-dark);
  margin-top: auto;
 }
}

@media only screen and (min-width: 1127px) {
 .mb {
  display: none;
 }
 .wb {
  display: flex;
 }
}

@media only screen and (max-width: 1227px) {
 .navbar__links {
  gap: 5px;
 }
 .navbar__links > li > .nav__link {
  padding: 5px 10px;
  white-space: nowrap;
 }
 .offcanvas {
  max-height: 100vh;
 }
 .offcanvas-header {
  flex-direction: column;
  padding: 0px;
  width: 100%;
  background: var(--gray-card-light-color);
  padding-bottom: 10px;
 }

 .btn-close {
  background-color: #fff;
  color: var(--red-color);
  padding: 5px;
  z-index: 2;
  border-radius: 30px;
 }
 .offcanvas-header > .topbar {
  width: 100%;
 }
 .offcanvas-footer {
  width: 100%;
  display: flex;
  padding: 10px 20px;
  background-color: var(--green-color);
  margin-top: auto;
 }
}
@media only screen and (max-width: 727px) {
 footer .container__wrapper {
  flex-wrap: wrap;
 }
}
