﻿

:root {
    --fontawesome: "Font Awesome 6 Pro";
    --body-bg: #fff;
    --color-white: #fff;
    --color-primary: #0774FF;
    --color-secondary: #2D3C58;
    --color-third: #FFC107;
    --btc: #222224;
    --placeholder: #8D9097;
    --border-color: #E9EDFF;
    --light-border: #D4DCFF;
    --white-border: #fff;
    --plan-bg: #F6F9FF;
    --light: 300;
    --regular: 400;
    --medium: 500;
    --semibold: 600;
    --bold: 700;
    --extrabold: 800;
    --black: 900;
    --size-default: 16px;
    --size-small: 14px;
    --lh-default: 26px;
}



html {
    margin: 0;
    padding: 0;
    font-size: 18px;
    overflow: hidden;
    overflow-y: auto;
    scroll-behavior: auto !important;
}

body {
    line-height: var(--lh-default);
    color: var(--btc);
    position: relative;
    scroll-behavior: smooth;
}

p {
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 16px;
}


h1,
.h1 {
    font-size: 30px;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
}

h2,
.h2 {
    font-size: 26px;
    margin-top: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

h3,
.h3 {
    font-size: 22px;
    font-weight: 500;
    padding-top: 20px;
    padding-bottom: 10px;
}

h4,
.h4 {
    font-size: 16px;
    margin-top: 20px;
    font-weight: 500;
}

h5,
.h5 {
    font-size: var(--size-h5);
}

h6,
.h6 {
    font-size: var(--size-h6);
}



.single-post h1 {
    font-size: 30px;
    line-height: 38px;
}

.single-post {
    margin-top: 35px;
}

.excerpt {
    margin-top: 31px;
}

.blog-des-content {
    padding: 10px;
}




.mb-30 {
    margin-bottom: 30px !important;
}

.sec-app-list {
    background: #91ab47;
    padding-top: 50px;
    padding-bottom: 50px;
}



@media screen and (max-width: 575px) {
    h2, .h2 {
        font-size: 26px;
    }

    .width-100 {
        width: 100%;
    }
}



table {
    margin-top: 20px;
}

    table.table.table-bordered {
        border: 1px solid #817c7c;
    }

tr {
    border: 1px solid #817c7c;
}

td {
    border: 1px solid #817c7c;
}

th {
    font-size: 13px;
    line-height: 17px;
}




@media (max-width: 991px) {
    table {
        overflow-y: scroll;
    }
}

table a,
table a:link,
table a:visited {
    text-decoration: none;
}


.section__padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

h3.blog-title-sm a {
    color: #5f7102;
}


a {
    color: #5e2ead;
    text-decoration: none;
    outline: none;
}




b, strong {
    font-weight: 500;
}








dl {
    margin-top: 0;
    margin-bottom: 10px;
}

dd {
    margin: 0 15px 15px;
}

dt {
    font-weight: bold;
    color: var(--color-heading);
}

menu,
ol,
ul {
    margin: 16px 0;
    padding: 0 0 0 40px;
}

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}

li > ul,
li > ol {
    margin: 0;
}

ol ul {
    margin-bottom: 0;
}

img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

svg:not(:root) {
    overflow: hidden;
}



form {
    margin: 0;
}


caption,
th,
td {
    font-weight: normal;
}

th {
    font-weight: 500;
    text-transform: uppercase;
}



del {
    color: #333;
}



hr {
    background-size: 4px 4px;
    border: 0;
    height: 1px;
    margin: 0 0 24px;
}

table a,
table a:link,
table a:visited {
    text-decoration: underline;
}

dt {
    font-weight: bold;
    margin-bottom: 10px;
}

dd {
    margin: 0 15px 15px;
}

caption {
    caption-side: top;
}

kbd {
    background: var(--heading-color);
}

dfn,
cite,
em {
    font-style: italic;
}



/*Author section Start*/
.follow-btn {
    background: #4361ee;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.author-container {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
}

.author-profile {
    flex: 1;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 40px;
    text-align: center;
    align-self: flex-start;
    position: sticky;
    top: 100px;
}

.author-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 auto 25px;
}

.author-name {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark);
}

.author-title {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 20px;
}

.author-content {
    flex: 2;
    margin-top: 100px;
}

.author-stats {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: var(--gray);
    font-size: 14px;
}

.author-bio {
    margin-bottom: 50px;
    line-height: 1.8;
    color: #444;
}

    .author-bio p {
        margin-bottom: 20px;
    }

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    color: var(--dark);
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 60px;
        height: 2px;
        background: #766a08;
    }

.recent-posts {
    margin-bottom: 50px;
}

.post-card {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s;
    background: white;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

    .post-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

.post-image {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.post-content {
    flex: 1;
}

.post-category {
    display: inline-block;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.post-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
    text-decoration: none;
    display: block;
}

.post-meta {
    display: flex;
    gap: 15px;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.post-excerpt {
    color: #555;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .author-container {
        flex-direction: column;
    }

    .author-profile {
        position: static;
        margin-top: 50px;
    }

    .post-card {
        flex-direction: column;
    }

    .post-image {
        width: 100%;
        height: 200px;
    }
}

.author-section-bd {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: #f8fafc;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    border-left: 4px solid #2c5282;
    margin-bottom: 50px;
    margin-top: 50px;
}

.author-image-bd {
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2.2rem;
}

.author-image-radius {
    border-radius: 50px;
    width: 100px;
}

.author-details-bd {
    flex: 1;
}

.author-header-bd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.author-name-container-bd {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-name-bd {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a3a5f;
}

.author-url {
    font-size: 0.85rem;
    color: #2c5282;
    text-decoration: none;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
}

    .author-url:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232c5282"><path d="M19 19H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"/></svg>');
        background-size: contain;
    }

    .author-url:hover {
        color: #1a3a5f;
        text-decoration: underline;
    }

        .author-url:hover:before {
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231a3a5f"><path d="M19 19H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"/></svg>');
        }

.verified-badge {
    color: #f7f7f7;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #02069d;
    padding-left: 10px;
    border-radius: 19px;
    padding-right: 10px;
    font-weight: 500;
    padding-top: 2px;
    padding-bottom: 2px;
}


.author-title-bd {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 8px;
}

.author-bio-bd {
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.9rem;
    color: #4a5568;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #025c06;
    font-size: 0.85rem;
}

@media (max-width: 650px) {
    .author-section-bd {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border: 2px solid #2c5282;
    }

    .author-header-bd {
        justify-content: center;
    }

    .author-name-container-bd {
        justify-content: center;
        width: 100%;
        margin-bottom: 8px;
    }

    .author-meta {
        justify-content: center;
    }

    .verified-badge {
        color: #f7f7f7;
        font-size: 10px;
        display: flex;
        align-items: center;
        gap: 5px;
        background: #02069d;
        padding-left: 10px;
        border-radius: 19px;
        padding-right: 10px;
        font-weight: 500;
        padding-top: 2px;
        padding-bottom: 2px;
    }
}

/*Author section End*/




.separator {
    margin: 25px 0;
}

.site-default-border {
    border-top: 1px solid #bac1e1;
}





.rts-footer.footer-style-default {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media screen and (max-width: 992px) {
    .rts-footer.footer-style-default {
        padding-bottom: 30px !important;
    }
}


.mobile-menu-logo {
    width: 164px;
}

.mobile-menu-logo-div {
    border-bottom: 1px solid #cdc9c9;
    padding-bottom: 10px;
}

.rts-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    border-bottom: 2px solid #d39d06;
    background: #2e8b57;
}

.rts-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.logo-white {
    display: block;
    width: 150px;
    padding-top: 10px;
}

.rts-header__wrapper .rts-header__logo .site-logo .logo-dark {
    display: none;
}

.rts-header__menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .rts-header__menu ul li {
        display: inline-block;
        position: relative;
    }

        .rts-header__menu ul li:not(:last-child) {
            margin-right: 50px;
        }

@media (max-width: 1366px) {
    .rts-header__menu ul li:not(:last-child) {
        margin-right: 35px;
    }
}

.rts-header__menu ul li a {
    font-size: 15px;
    color: #ffff;
}

    .rts-header__menu ul li a:hover {
        font-size: 15px;
        color: #EBEBEB;
        text-decoration: none !important;
    }

@media (max-width: 1200px) {
    .rts-header__menu ul li a {
        font-size: 11px;
    }

        .rts-header__menu ul li a:hover {
            font-size: 11px;
            color: #594d4d;
        }
}

.rts-header__right {
    text-align: right;
}

@media (max-width: 991px) {
    .rts-header__right {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}


.rts-header__right .mobile__active {
    height: 40px;
    width: 40px;
    border: 1px solid var(--body-bg);
    border-radius: 4px;
    color: var(--body-bg);
    display: none;
}

@media (max-width: 991px) {
    .rts-header__right .mobile__active {
        display: block;
    }
}

@media (max-width: 991px) {
    .rts-header__menu {
        display: none;
    }
}

.rts-header {
    transition: all 0.3s ease;
}


.rts-ht {
    transition: all 0.3s ease;
}







.hostie-menu .hostie-desktop-menu .menu-item {
    margin: 0;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 37px;
    text-transform: capitalize;
    padding: 0 20px;
    cursor: pointer;
}

    .hostie-menu .hostie-desktop-menu .menu-item.mega-menu.big {
        position: static !important;
    }

@media (max-width: 1200px) {
    .hostie-menu .hostie-desktop-menu .menu-item {
        padding: 0 15px;
    }
}

.hostie-menu .hostie-desktop-menu .menu-item .hostie-dropdown-main-element,
.hostie-menu .hostie-desktop-menu .menu-item .main-element {
    padding: 20px 0;
    position: relative;
    display: block;
}

    .hostie-menu .hostie-desktop-menu .menu-item .hostie-dropdown-main-element::after,
    .hostie-menu .hostie-desktop-menu .menu-item .main-element::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 2px;
        left: 0;
        bottom: 28px;
        background: var(--color-white);
        transition: all 0.3s ease-in-out;
    }



.hostie-menu .hostie-desktop-menu .menu-item:hover .hostie-dropdown-main-element::after,
.hostie-menu .hostie-desktop-menu .menu-item:hover .main-element::after {
    width: 100%;
}

.hostie-menu .hostie-desktop-menu .menu-item.active .hostie-dropdown-main-element {
    color: var(--color-white);
}

    .hostie-menu .hostie-desktop-menu .menu-item.active .hostie-dropdown-main-element::after {
        width: 100%;
    }

.hostie-menu .hostie-desktop-menu .hostie-has-dropdown:hover .hostie-dropdown-main-element {
    color: var(--color-white);
}

    .hostie-menu .hostie-desktop-menu .hostie-has-dropdown:hover .hostie-dropdown-main-element::after {
        width: 100%;
    }

.hostie-menu .hostie-desktop-menu .hostie-has-dropdown:hover .hostie-submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.hostie-menu .hostie-desktop-menu .hostie-has-dropdown .hostie-dropdown-main-element::before {
    content: "\f078";
    position: absolute;
    color: var(--color-white);
    right: -20px;
    top: 50%;
    font-size: 12px;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Pro";
}

@media (max-width: 1200px) {
    .hostie-menu .hostie-desktop-menu .hostie-has-dropdown .hostie-dropdown-main-element::before {
        right: -15px;
    }
}

.hostie-menu .hostie-desktop-menu .hostie-submenu {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    opacity: 0;
    width: 320px;
    visibility: hidden;
    overflow: visible;
    transform: translateY(15px);
    transition: all 0.3s ease-in-out;
    padding: 15px 0;
    background: var(--color-white);
    -webkit-box-shadow: 9px 9px 22px -1px rgba(0, 0, 0, 0.12);
    box-shadow: 9px 9px 22px -1px rgba(0, 0, 0, 0.12);
    z-index: 10;
    border-radius: 10px;
}

    .hostie-menu .hostie-desktop-menu .hostie-submenu .nav-item {
        margin: 0;
        transition: all 0.3s ease-in-out;
        position: relative;
    }

        .hostie-menu .hostie-desktop-menu .hostie-submenu .nav-item:hover a.nav-link {
            padding-left: 35px;
        }

            .hostie-menu .hostie-desktop-menu .hostie-submenu .nav-item:hover a.nav-link::after {
                width: 12px;
            }

        .hostie-menu .hostie-desktop-menu .hostie-submenu .nav-item a.nav-link {
            display: block;
            text-transform: capitalize;
            color: var(--btc);
            text-decoration: none;
            padding: 10px 20px;
            padding-right: 15px;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            position: relative;
            font-weight: 400;
            font-size: 15px;
            border-bottom: 1px solid #cccc;
        }

            .hostie-menu .hostie-desktop-menu .hostie-submenu .nav-item a.nav-link::after {
                content: "";
                position: absolute;
                width: 0;
                height: 2px;
                top: 50%;
                left: 20px;
                transform: translateY(-50%);
                background: var(--btc);
                transition: all 0.3s ease-in-out;
            }

            .hostie-menu .hostie-desktop-menu .hostie-submenu .nav-item a.nav-link.active {
                padding-left: 40px;
                color: var(--color-white);
            }

                .hostie-menu .hostie-desktop-menu .hostie-submenu .nav-item a.nav-link.active::after {
                    width: 12px;
                }


.header-two-content-main .main-nav-area {
    margin-left: -150px;
}

@media only screen and (max-width: 1199px) {
    .header-two-content-main .main-nav-area {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-two-content-main .main-nav-area {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .header-two-content-main .main-nav-area {
        display: none;
    }
}

.side-bar {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: -100%;
    width: 465px;
    padding: 40px 30px;
    padding-top: 50px;
    height: 100%;
    display: block;
    background-color: #eef0f5 !important;
    z-index: 1900;
    transition: all 600ms ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow: visible;
}

.mob_menu_a {
    color: #fff;
    text-decoration: none;
    outline: none;
    padding-left: 26px;
    font-size: 23px;
}

    .mob_menu_a:hover {
        color: #fff;
        text-decoration: none;
        outline: none;
        padding-left: 26px;
        font-size: 23px;
    }

.close-icon-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 23px;
    padding-left: 26px;
}

    .close-icon-menu:hover {
        color: #fff;
        text-decoration: none;
        padding-left: 26px;
        font-size: 23px;
    }

@media only screen and (max-width: 575px) {
    .side-bar {
        width: 315px;
    }
}



.side-bar.show {
    left: 0;
    overflow-y: auto;
}

.side-bar button {
    max-width: max-content;
    margin-right: auto;
    margin-left: -53px;
    margin-top: 0;
    position: absolute;
}

    .side-bar button i {
        color: #ffffff;
        height: 50px;
        width: 50px;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 14px;
        margin-top: -53px;
        font-size: 27px;
        background: var(--color-primary);
    }



@media (max-width: 1200px) {
    .mega-menu-item li a {
        width: 100%;
    }
}


@media only screen and (max-width: 575px) {
    .side-bar {
        width: 300px;
    }

    .rts-ht-left-promo {
        padding-top: 10px;
        display: none;
    }

    .rts-hosting-banner.rts-hosting-banner-bg {
        padding: 117px 0 40px 0 !important;
        position: relative;
        z-index: 1;
    }

    .rts-affiliate .become__affiliate__text .title {
        font-size: 27px !important;
        color: var(--color-secondary);
        font-weight: 400 !important;
        line-height: 34px !important;
        max-width: 489px;
    }

    .sp_ft_span {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .rts-footer__copyright-two__wrapper p {
        margin-bottom: 20px;
        font-size: 14px;
    }
}

.side-bar .inner-main-wrapper-desk .inner-content {
    text-align: center;
    margin-top: 30px;
}

    .side-bar .inner-main-wrapper-desk .inner-content p {
        max-width: 95%;
        text-align: center;
        margin: auto;
    }

    .side-bar .inner-main-wrapper-desk .inner-content .title {
        font-weight: 600;
    }

    .side-bar .inner-main-wrapper-desk .inner-content .footer {
        padding-top: 50px;
        margin-top: 80px;
        border-top: 1px solid #c2c2c2;
    }

        .side-bar .inner-main-wrapper-desk .inner-content .footer .title {
            font-weight: 500;
        }

        .side-bar .inner-main-wrapper-desk .inner-content .footer a.rts-btn {
            margin: auto;
        }

.side-bar.show {
    right: 0;
    overflow-y: auto;
}

.side-bar button {
    max-width: max-content;
    margin-right: auto;
    margin-left: -53px;
    margin-top: 0;
    position: absolute;
    border: none;
}

    .side-bar button i {
        color: #ffffff;
        height: 50px;
        width: 50px;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 14px;
        margin-top: -53px;
        font-size: 27px;
        background: var(--color-primary);
        font-weight: 300;
    }


#menu-btn {
    cursor: pointer;
    padding: 5px 8px 10px 0;
    display: none;
    background: #ec8306;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #menu-btn {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    #menu-btn {
        display: block;
    }
}

#side-bar .mobile-menu-main {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #side-bar .mobile-menu-main {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    #side-bar .mobile-menu-main {
        display: block;
    }
}

.mobile-menu-main nav ul {
    padding: 0px;
    display: block;
}

    .mobile-menu-main nav ul li {
        margin: 0;
        padding: 0;
    }

        .mobile-menu-main nav ul li a.main {
            padding: 12px 0 12px 0;
            border-bottom: 1px solid #d3cdcd;
            cursor: pointer;
        }

        .mobile-menu-main nav ul li.has-droupdown {
            position: relative;
        }

            .mobile-menu-main nav ul li.has-droupdown ul {
                padding: 0;
            }

                .mobile-menu-main nav ul li.has-droupdown ul a {
                    padding: 10px 0;
                }

                    .mobile-menu-main nav ul li.has-droupdown ul a.tag {
                        font-weight: 700;
                        margin-top: 15px;
                        font-size: 18px;
                        border-bottom: 2px solid var(--color-primary);
                        padding: 10px 0;
                    }

                .mobile-menu-main nav ul li.has-droupdown ul li {
                    margin: 7px 0 !important;
                    border-bottom: 1px solid #f3f3f3;
                }

            .mobile-menu-main nav ul li.has-droupdown::after {
                position: absolute;
                content: "\f054";
                font-family: "Font Awesome 6 pro" !important;
                font-size: 16px;
                right: 0;
                font-weight: 400;
                top: 5px;
                padding: 8px 13px;
                color: #fff;
                pointer-events: none;
                cursor: pointer;
            }

            .mobile-menu-main nav ul li.has-droupdown.mm-active::after {
                content: "\f077";
            }

            .mobile-menu-main nav ul li.has-droupdown.third-lvl::after {
                font-size: 10px;
                padding: 3px 10px;
            }

            .mobile-menu-main nav ul li.has-droupdown.third-lvl ul {
                padding: 0 20px;
            }

                .mobile-menu-main nav ul li.has-droupdown.third-lvl ul li {
                    margin: 10px 0 !important;
                    position: relative;
                    z-index: 1;
                    transition: all 0.3s;
                }

                    .mobile-menu-main nav ul li.has-droupdown.third-lvl ul li:hover {
                        color: var(--color-primary);
                    }

                    .mobile-menu-main nav ul li.has-droupdown.third-lvl ul li a {
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        transition: all 0.3s;
                    }

        .mobile-menu-main nav ul li a {
            display: block;
            color: #5b5757;
        }

.mobile-menu-main .social-area-one {
    margin-top: 50px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin: 40px 0 0;
    gap: 30px;
}

    .mobile-menu-main .social-area-one li {
        list-style: none;
    }

@media screen and (max-width: 1024px) {
    .side-bar.header-two .inner-main-wrapper-desk, .side-bar.header-three .inner-main-wrapper-desk {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .side-bar.header-two .mobile-menu, .side-bar.header-three .mobile-menu {
        display: none !important;
    }
}

.header-one .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown {
    position: relative;
}

    .header-one .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown:hover::after {
        color: var(--color-primary);
    }

    .header-one .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown::after {
        position: absolute;
        content: "\f105";
        font-family: "Font Awesome 6 Pro" !important;
        font-size: 16px;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        color: #fff;
    }

    .header-one .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown .third-lvl {
        margin-left: -4px;
    }

.header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page {
    padding: 15px 0;
}

    .header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown {
        position: relative;
    }

        .header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown:hover::after {
            color: var(--color-primary);
        }

        .header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown::after {
            position: absolute;
            content: "\f105";
            font-family: "Font Awesome 6 Pro" !important;
            font-size: 16px;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
        }

        .header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown .third-lvl {
            margin-left: -4px;
        }

    .header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page li {
        margin: 0;
        width: 100%;
    }

        .header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page li a {
            display: block;
            width: 100%;
            padding: 0 15px;
        }

.sub-dropdown {
    position: relative !important;
    display: block !important;
}

    .sub-dropdown .submenu.third-lvl {
        opacity: 0 !important;
        min-width: 185px !important;
        left: 100% !important;
        top: -13% !important;
        margin: 0;
        border-radius: 0 !important;
    }

        .sub-dropdown .submenu.third-lvl.base {
            display: block !important;
        }

    .sub-dropdown:hover .sub-menu-link {
        color: var(--color-primary);
    }

    .sub-dropdown:hover .submenu.third-lvl.base {
        opacity: 1 !important;
        min-width: 185px !important;
        top: 0 !important;
        right: 3px;
        display: block !important;
    }

        .sub-dropdown:hover .submenu.third-lvl.base li {
            display: block;
        }

            .sub-dropdown:hover .submenu.third-lvl.base li a {
                display: block !important;
            }

.header-three .sub-dropdown:hover .submenu.third-lvl.base {
    margin-left: -14px !important;
}

.header-two .header-main-wrapper .sub-dropdown:hover .submenu.third-lvl.base {
    margin-left: 90px !important;
}

header.heder-two .sub-dropdown:hover .submenu.third-lvl.base {
    opacity: 1 !important;
    min-width: 185px !important;
    top: 0 !important;
    right: 3px;
    display: block;
    margin-left: 0 !important;
}

header.heder-two .sub-dropdown::after {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 6 Pro" !important;
    font-size: 16px;
    right: 20px;
    top: 8px;
    color: #fff;
}

header.heder-two .sub-dropdown:hover a.sub-menu-link {
    color: var(--color-primary) !important;
}

header.heder-two .sub-dropdown:hover::after {
    color: var(--color-primary) !important;
}

header.heder-two .sub-dropdown .submenu.third-lvl.base {
    display: block;
}

.sub-dropdown {
    position: relative !important;
    display: block !important;
    transition: all 0.3s ease-in-out;
}

    .sub-dropdown.active .sub-menu-link {
        color: #FFFFFF !important;
        padding-left: 40px !important;
    }

        .sub-dropdown.active .sub-menu-link::after {
            width: 12px !important;
        }

    .sub-dropdown.active::after {
        color: #FFFFFF;
    }


    .sub-dropdown:hover::after {
        color: #FFFFFF;
    }

    .sub-dropdown:hover .sub-menu-link {
        color: var(--color-primary);
    }

    .sub-dropdown:hover .fluxi-submenu.third-lvl.base {
        visibility: visible;
        opacity: 1 !important;
        min-width: 200px !important;
        top: 0 !important;
        right: 3px;
        transform: translateY(5px) !important;
        pointer-events: all;
    }

/* elements */
.container {
    max-width: 1266px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 1199px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}







.rts-footer {
    padding-top: 120px;
    padding-bottom: 180px;
    background: var(--footer-style-one);
}

@media (max-width: 768px) {
    .rts-footer {
        padding-bottom: 120px;
    }
}

@media screen and (max-width: 992px) {
    .rts-footer.site-footer-one {
        padding-bottom: 130px;
    }
}






.rts-footer.site-footer-two {
    padding: 120px 0;
    background: transparent !important;
}

.rts-footer__copyright-two {
    border-top: 1px solid #EAEAEA;
}

.rts-footer__copyright-two__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    line-height: 100%;
}

@media (max-width: 768px) {
    .rts-footer__copyright-two__wrapper {
        display: block;
        text-align: center;
    }
}

.rts-footer__copyright-two__wrapper p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .rts-footer__copyright-two__wrapper p {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .rts-footer__copyright-two__wrapper .payment__method ul {
        justify-content: center;
    }
}




.border-bottom-light {
    border-bottom: 1px solid #EAEAEA;
}









.sp_ft_span {
    padding-left: 5px;
}



.pad-right {
    padding-right: 10px;
    color: #6868dd !important;
    text-decoration: underline;
}

.zb-pt-65 {
    padding-top: 110px;
}

div p.footer-h-menu a {
    color: #370505 !important
}

.blog-wrapper {
    margin-bottom: 20px;
    padding-bottom: 17px;
    border: 1px solid #8d8104;
    border-radius: 10px;
    padding: 10px;
    min-height: 140px;
}

.blog-title-sm {
    font-size: 22px;
    font-weight: 500;
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}


.footer_disclaim_p {
    font-size: 13px !important;
    line-height: 18px;
}


.related-section {
    padding-top: 24px;
    background: beige;
    padding-bottom: 50px;
}

@media (max-width: 767px) {
    .zb-pt-65 {
        padding-top: 80px;
    }
}

/*Latest FAQ section start*/
.faq-section-div {
    background: #e6e8eb;
    padding-bottom: 4px;
    margin-top: 50px;
}

.faq-header {
    text-align: center;
    padding: 35px 20px 0px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.faq-category-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #1e293b;
    position: relative;
    padding-left: 20px;
}

.faq-section {
    max-width: 900px;
    margin: 0 auto 80px;
}

.faq-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.faq-header p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

faq-section {
    max-width: 900px;
    margin: 0 auto 80px;
}



.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    }

.faq-question {
    padding: 25px 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1e293b;
}

    .faq-question .icon {
        width: 24px;
        height: 24px;
        position: relative;
        transition: all 0.3s ease;
    }


        .faq-question .icon::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 8px solid #557005;
            transform: translateY(-50%);
            transition: all 0.3s ease;
        }

.faq-item.active .faq-question .icon::before {
    transform: translateY(-50%) rotate(180deg);
    border-top-color: #1d4ed8;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #495464;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 15px;
}

/*Latest FAQ section End*/

/*Lender section Start*/
.sec-border-top {
    border-top: 3px solid #9b6e06;
    margin-top: 50px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .125);
}

    .card:hover {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

.card-header {
    background: linear-gradient(90deg, #01662a 0%, #077e37 100%);
    color: white;
    padding: 0px 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .card-header::before {
        content: "";
        display: inline-block;
        width: 24px;
        height: 24px;
        background: linear-gradient(to bottom, transparent 0%, transparent 20%, white 20%, white 40%, transparent 40%, transparent 60%, white 60%, white 80%, transparent 80%, transparent 100%), linear-gradient(to right, transparent 0%, transparent 20%, white 20%, white 40%, transparent 40%, transparent 60%, white 60%, white 80%, transparent 80%, transparent 100%);
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
    }

.ln-toggle-header {
    color: #444;
    margin: 10px 0 0px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s;
    padding: 12px 10px 12px 25px;
    background: #e3f1dd;
    border-radius: 8px;
    position: relative;
}

    .ln-toggle-header:hover {
        color: #d71921;
        background: #f0f0f0;
    }

    .ln-toggle-header::before {
        content: "";
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
        width: 12px;
        height: 12px;
        border: solid currentColor;
        border-width: 0 2px 2px 0;
        transition: transform 0.3s;
    }

    .ln-toggle-header.active::before {
        transform: translateY(-50%) rotate(45deg);
    }





table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow: hidden;
}

th, td {
    padding: 6px 6px;
    font-size: 16px;
    border-bottom: 1px solid #c59595;
}


tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) {
    background-color: #fafafa;
}

ul, ol {
    padding-left: 25px;
    margin: 15px 0;
}

li {
    font-size: 16px;
}

.pros-cons-table th {
    background-color: #f0f8ff;
}

.pros-cons-table td {
    padding: 12px 15px;
}

.pros td:first-child {
    color: #2e7d32;
    font-weight: 500;
}

.cons td:last-child {
    color: #c62828;
}

.section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    margin-bottom: 15px;
    padding: 0 15px;
}

    .section-content.active {
        max-height: 1500px;
        padding: 0 15px 15px;
    }

.highlight {
    border-radius: 8px;
    margin: 25px 0;
}

.card-content {
    padding: 0 10px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #5a3907 0%, #2ee31e 100%);
    color: white;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 50px;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 25, 33, 0.25);
    position: relative;
    overflow: hidden;
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 20px rgba(215, 25, 33, 0.35);
        color: #fff;
    }

    .cta-button::after {
        content: "→";
        margin-left: 10px;
        font-weight: bold;
        transition: transform 0.3s;
    }

    .cta-button:hover::after {
        transform: translateX(5px);
    }

.footer {
    text-align: center;
    padding: 30px 0;
    color: #777;
    font-size: 0.95rem;
    margin-top: 20px;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-box {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 200px;
    margin: 10px;
    border-top: 4px solid #d71921;
    position: relative;
    overflow: hidden;
}

    .stat-box::before {
        content: "";
        position: absolute;
        top: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
        background: rgba(215, 25, 33, 0.1);
        border-radius: 50%;
    }

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d71921;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

@media (max-width: 768px) {

    .faq-question {
        padding: 8px 10px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #1e293b;
    }

    .faq-header {
        text-align: left;
        padding: 0;
        margin-bottom: 16px;
        padding-top: 10px;
        overflow: hidden;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 6px 6px;
        border-bottom: 1px solid #c59595;
    }
}

/*Lender section end*/

/*index page start*/

.hero {
    background: linear-gradient(135deg, #182e70 0%, #cbcdcf 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
}

    .hero h1 {
        color: white;
        font-size: 2.8rem;
        max-width: 900px;
        margin: 0 auto 1.5rem;
        line-height: 60px;
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 2rem;
        opacity: 0.9;
    }

.search-bar {
    max-width: 600px;
    margin: 2rem auto 0;
    position: relative;
}

    .search-bar input {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 50px;
        border: none;
        font-size: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .search-bar button {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: #49780c;
        border: none;
        border-radius: 50px;
        padding: 0.6rem 1.5rem;
        color: white;
        font-weight: 600;
        cursor: pointer;
    }

        .search-bar button:hover {
            background: #4b268f;
        }
/* Categories Section */
.categories {
    padding: 4rem 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2:after {
        left: 50%;
        transform: translateX(-50%);
    }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

.category-image {
    height: 180px;
    overflow: hidden;
}

    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 1rem;
}

    .category-content h3 {
        margin-bottom: 0.75rem;
        font-size: 1.3rem;
        padding: 0px;
    }

    .category-content p {
        margin-bottom: 1rem;
    }

.btn {
    display: inline-block;
    background: #766a08;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
}

    .btn:hover {
        background: #4b268f;
        color: white;
    }

.btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
}

    .btn-secondary:hover {
        color: var(--secondary);
    }

/* Category Blogs Section */
.category-blogs {
    padding: 1rem 0;
}

    .category-blogs:nth-child(even) {
        background-color: var(--light);
    }

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

    .category-header h2:after {
        left: 0;
        transform: none;
    }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    .article-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.article-image {
    height: 200px;
    overflow: hidden;
}

    .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: .5rem;
}

    .article-content a {
        color: #44413e;
    }

.article-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.article-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e9ecef;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.article-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    min-height: 3.5rem;
}

.article-content p {
    color: #575555;
    margin-bottom: 1.5rem;
    min-height: 4.5rem;
}





@media (max-width: 768px) {
    .category-blogs {
        padding: 1rem 0;
    }

    .header-container {
        flex-direction: column;
        padding: 1rem 0;
    }

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

        nav ul li {
            margin: 0.5rem;
        }

    .hero {
        padding: 7rem 0;
    }

        .hero h1 {
            font-size: 1.5rem;
            line-height: 34px;
        }

        .hero p {
            font-size: .9rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }

    .categories {
        padding: 1rem 0;
        background-color: white;
    }

    .category-content {
        padding: 10px;
    }

    .article-content h3 {
        margin-bottom: 0.75rem;
        font-size: 1.3rem;
        min-height: 3.5rem;
        line-height: 31px;
        padding: 0px;
        font-weight: 600;
    }

    .article-content p {
        color: #575555;
        margin-bottom: 1.5rem;
        min-height: 2rem;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }

        .category-header .btn {
            margin-top: 1rem;
        }

    .search-bar input {
        width: 100%;
        padding: 0.8rem 1rem;
        border-radius: 15px;
        border: none;
        font-size: 0.9rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .search-bar button {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: #49780c;
        border: none;
        border-radius: 50px;
        padding: 0.2rem 1rem;
        color: white;
        font-weight: 600;
        cursor: pointer;
    }
}
/*index page end*/

