/* General Links */
a {
 text-decoration: none;
 color: var(--blue-color);
}

.topbar > .container__wrapper {
 position: relative;
 z-index: 999;
 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;
}

.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 {
 box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.05);
 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%;
}

.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: 20px;
 font-weight: bold;
}

.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;
}

.navbar__links > li > .nav__link {
 font-size: 14px;
 font-weight: 400;
 color: #000;
 text-decoration: none;
 padding: 5px 10px;
 border-radius: 20px;
 transition: all 0.2s ease-in-out;
}

.navbar__links > li > a.nav__link:hover {
 background-color: #e6fabb;
}

.navbar__links > li > .nav__link.active {
 font-weight: 600;
 background-color: var(--green-color) !important;
 color: var(--blue-color) !important;
}

/* footer */

footer {
 background-color: var(--blue-color);
}

footer > .container__wrapper {
 position: relative;
 padding: 4rem 8%;
 display: flex;
 justify-content: space-between;
 flex-wrap: wrap;

 gap: 50px;
}
.ft_b {
 display: flex;
 justify-content: center;
 font-size: 12px;
 color: #fff;
 padding: 15px;
}
.footer__links {
 list-style: none;
 min-width: auto;
 padding: 0 !important;
 display: flex;
 flex-direction: column;
 color: #fff;
 gap: 20px;
}
.footer__links:nth-child(3) {
 min-width: 200px;
}
.footer__links:nth-child(4) {
 min-width: 200px;
}
.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;
}

.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;
}
