body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    
}
.header {
    display: flex;
    justify-content: center;
    height: 110px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.144);
    margin-bottom: 20px;
}
.head {
    display: grid;
    grid-template-columns: 20% 60% 20%;
}
.head .logo {
    margin-top: 10px;
    margin-left: 0px;
    height: 90px;
}
.navbar {
    display: flex;
    justify-content: center;
}
.navbar nav {
    display: flex;
    justify-content: center;
    height: inherit;
    width: 100%;
    padding-top: 40px;
}
.navbar ul {
    display: flex;
    justify-content: center;
    height: min-content;
    padding-left: 0px;
}
.navbar li {
    display: inline-block;
    justify-content: center;
}
.navbar li a {
    font-family: initial;
    font-size: 22px;
    color: #333;
    text-decoration: none;
    margin-left: 20px;
    margin-right: 20px;
    border-top-width: 0px;
    border-left-width: 0px;
    border-right: 0px;
    border-bottom-width: 0px;
    border-style: solid;
}
.navbar li .active {
    color: #388b1f;
    border-bottom-color: #144e00;
    border-top-width: 0px;
    border-left-width: 0px;
    border-right: 0px;
    padding-bottom: 5px;
    border-bottom-width: 2px;
    border-style: solid;
}
.navbar li a:hover {
    color: #388b1f;
    border-bottom-color: #b5cd4b;
    border-top-width: 0px;
    border-left-width: 0px;
    border-right: 0px;
    padding-bottom: 10px;
    border-bottom-width: 2px;
    border-style: solid;
    transition: all 0.2s ease;
}
.head .configuration {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-family: Arial, sans-serif;
    padding-top: 28px;
    padding-right: 30px;
}
.head .configuration a {
    all: unset;
}
.head .configuration .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #164607;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    width: 80px;
}
.head .configuration .nav-item i {
    font-size: 24px;
    margin-bottom: 5px;
}
.head .configuration .nav-item span {
    text-align: center;
    font-weight: bold;
}
.head .configuration .nav-item .badge {
    position: absolute;
    top: 0;
    right: 10px;
    background: rgb(172, 0, 0);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.content {
    display: flex;
    justify-content: center;
}
.footer {
    display: flex;
    justify-content: center;
}
@media (min-width: 768px) {
    .mobile-nav-card {
        display: none;
    }
    .menu-btn {
        display: none;
    }
    .mobile-nav-overlay {
        display: none;
    }
}