body{
    font-family: 'Poppins';
    min-height: 100vh;
    background-color: #e7e7e7;
}
*,p,span{
    font-size: 14px;
}
.text-theme{
    color: #2C7A21;
}
.text-theme-2{
    color: #00A548
}
.text-theme-3{
    color: #3AD924
}
.bg-theme{
    background: #2C7A21;
}
.bg-theme-2{
    background: #00A548
}
.bg-theme-3{
    background: #3AD924
}
.btn-theme{
    background-color: #2C7A21;
    border: 1px solid #2C7A21;
    color:white;
}
.btn-theme-2{
    background-color: #00A548;
    border: 1px solid #00A548;
    color:white;
}
.btn-theme-secondary{
    background-color: white;
    border: 1px solid #2C7A21;
    color:black;
}
.btn-theme-secondary-2{
    background-color: white;
    border: 1px solid #00A548;
    color:black;
}
.btn-theme:hover,
.btn-theme-2:hover{
    background-color: #065227;
    color:white;
}
.btn-theme-secondary:hover,
.btn-theme-secondary-2:hover{
    background-color: #000;
    color:white;
}
.menu-footer{
    padding:0.5em 0;
    .heading-footer{
        font-size: 24px;
        font-weight: 700;
        display: block;
    }
    p{
        font-size: 14px;
    }
    div>a{
        background-color: white;
        padding:1.25em;
        margin-right:0.75em;
        border-radius: 8px;
        i{
            font-size: 20px;
        }
    }
}
.nav-link {
    position: relative;
    transition: all 0.3s ease-out;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #2C7A21;
    transition: width 0.3s ease-out;
}

.nav-link:hover::after {
    width: 100%;
}