/*==================================
Theme Color All Codes Variable
==================================*/

:root {
    --theme-general-color: #6d7175;
    /* theme gray color */
}

:root {
    --theme-primary-color: #044031;
    /* theme primary color */
}

:root {
    --theme-secondary-color: #3e5083;
    /* theme secondary color */
}

:root {
    --theme-white-color: #fff!important;
    /* theme white font color */
}

:root {
    --theme-light-color: #f2f4d8;
    /* theme light gray color */
}

:root {
    --theme-gray-color: #f7f9fc;
    /* theme gray color */
}

:root {
    --theme-dark-color: #12171f;
    /* theme dark color ok*/
}

:root {
    --theme-extra-color: #1d2a40;
    /* theme extra color */
}

:root {
    --theme-footer-color: #12171f;
    /* theme dark color ok*/
}

:root {
    --theme-primary-opacity-color: rgba(219, 230, 29, .8);
    /* theme secondary color */
}

:root {
    --theme-secondary-opacity-color: rgba(62, 80, 131, .8);
    /* theme secondary color */
}

:root {
    --theme-dark-opacity-color: rgba(24, 26, 29, .8);
    /* theme dark opacity color */
}

:root {
    --theme-white-opacity-color: rgba(255, 255, 255, 0.5);
    /* theme light color */
}

:root {
    --text-light-color: #8a99b3;
    /* text light color */
}

:root {
    --text-gray-color: #c3c3c3;
    /* theme text gray color */
}

:root {
    --theme-primary-color-rgba: 83, 177, 65;
    /* theme secondary color */
}


/*==================================
Font Variable
==================================*/

:root {
    --theme-general-font: "Poppins", sans-serif;;
    /* Font use for normal text and general text */
}

:root {
    --theme-hiperlink-font: "Merriweather", serif;;
    /* Font use for normal text and general text */
}

:root {
    --theme-highlight-font: "Merriweather", serif;;
    /* Font used in title or special area */
}


/* Added alpha seperately */

.select-custom li input[type="radio"]:checked+label {
    background-color: rgba(var(--theme-primary-color-rgba), 0.1)
}

.sub-title {
    font-size: 17px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-family: var(--theme-hiperlink-font);
    font-weight: 400;
    font-size: 16px;
    position: relative;
}

.footer-widget li a:hover {
    color: var(--theme-secondary-color);
    text-decoration: underline;
}