/**
* Template Name: Badbaado
* Version: 1.0
* Author: Ikram Hossen
* Developed By: Codeware Ltd.
* Author URL: www.codewareltd.com
**/

/*====================================================================
root css
====================================================================*/
:root {
    --theme-body-font: "Inter", sans-serif;
    --baseColor: #02cc02;
    --whiteColor: #ffffff;
}
.nav-link.active::after {
   display: none;
}
/* Footer */
.btn-scrolls {
    background: var(--darkColor);
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    font-size: 22px;
    transition: all ease-in-out 0.3s;
    color: var(--whiteColor);
    line-height: 0;
    position: absolute;
    right: 10px;
    bottom: 55px !important;
    border-radius: 50%;
    outline: none !important;
    box-shadow: none !important;
}
.btn-scrolls:hover {
    color: var(--whiteColor);
    background-color: var(--baseColor);
}