/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/


/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;700&display=swap');

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: 'Source Sans Pro', sans-serif;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    overflow-x: hidden;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    --primary-color: #006eff;
    --secondry-color: #111;
    --heading: 50px;
    --sub-heading: 33px;
    --text: 20px;
    --sub-text: 16px;
    --small-text: 12px;
}

:root {
    --primary-clr: #008dd2;
    --text-color: #53656f;
    --subText-color: #194153;
    --white: #ffffff;
    --black: black;
    --text-: 16px;
    --sub-text: 18px;
    --small-font: 12px;
    --heading: 2.5rem;
    --sub-heading: 1.8rem;
}


.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 80px;
}


/* header  */

header {
    padding: 15px 0px;
}

    header .social-media ul li {
        display: inline-block;
        padding: 0px 52px;
        font-size: 20px;
    }

.navbar-expand-lg {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

    .navbar-expand-lg .navbar-nav .nav-link i {
        margin-right: 5px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size:16px;
        padding: 2px 10px;
        margin: 0 15px;
        color: var(--black)
    }

.navbar-toggler .navbar-toggler-icon {
    background-image: url("../images/menu.png");
}

.navbar-toggler {
    border: 2px solid white;
}

    .navbar-toggler:focus {
        box-shadow: none;
        border: 2px solid var(--secondry-color);
    }

.offer-section {
    background-color: #ece9e9;
    padding: 30px 0px;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    background: #f2f2f4;
    z-index: 999;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

.change-color {
    background-color: #ece9e9;
    ;
    text-align: center;
    animation-name: homeCycle;
    animation-duration: 6s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    -webkit-animation-name: homeCycle;
    -webkit-animation-duration: 6s;
    -webkit-animation-direction: alternate;
    -webkit-animation-iteration-count: infinite;
}

@keyframes homeCycle {
    0% {
        background-color: #727272;
    }

    25% {
        background-color: #86C14D;
    }

    50% {
        background-color: #0088CC;
    }

    75% {
        background-color: #0C3D4C;
    }
}

@-webkit-keyframes homeCycle {
    0% {
        background-color: #727272;
    }

    25% {
        background-color: #86C14D;
    }

    50% {
        background-color: #0088CC;
    }

    75% {
        background-color: #0C3D4C;
    }
}

.offer-section .offer-text p,
.offer-section .offer_btn p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 900;
    color: var(--secondry-color);
}

.cd-el {
    text-align: center;
    color: white;
    font-weight: 900;
}

.backgrounds {
    margin: 0.5rem;
    display: inline-block;
}

    .backgrounds .cd-el .big-text {
        background-color: var(--primary-color);
        font-size: 34px;
        font-weight: 400;
        padding: 20px;
        margin-bottom: 6px;
    }

    .backgrounds .cd-el span {
        font-size: 14px;
        color: var(--secondry-color);
        font-weight: normal;
    }


/* banner  section  */

.banner-section {
    padding-top: 100px;
}

    .banner-section .heading .main-heading {
        font-size: var(--heading);
        color: var(--secondry-color);
        font-weight: 600;
        line-height: 70px;
    }

    .banner-section .banner-content p {
        margin-top: 60px;
        font-weight: lighter;
        line-height: 56px;
        font-size: 18px;
        text-align: center;
        text-align: center;
        color: var(--secondry-color);
    }

    .banner-section .banner-content strong {
        font-weight: bold;
        margin-top: 35px;
        margin-bottom: 20px;
        font-size: 18px;
    }


/* feature-section */

.feature-section {
    padding-top: 100px;
}

    .feature-section .main-heading h1 {
        font-size: 18px;
        color: var(--secondry-color);
        font-weight: 700;
        line-height: 70px;
    }

    .feature-section .main-heading .sub-title {
        color: var(--secondry-color);
        font-size: var(--sub-text);
        line-height: 30px;
        text-align: center;
    }

    .feature-section .sub-heading {
        font-weight: 600;
        font-size: 18px;
        margin-top: 40px;
        color: var(--secondry-color);
    }

    .feature-section .feature-desc .feature-title {
        font-size: 16px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        color: var(--secondry-color);
        text-align: center;
        padding: 10px 0px;
    }

    .feature-section .feature-desc p {
        font-size: var(--sub-text);
        line-height: 30px;
        text-align: center;
        margin-top: 10px;
    }

    .feature-section .feature-icon {
        display: block;
        width: 3em;
        height: 100%;
        line-height: 1em;
        stroke-width: 0;
        text-align: center;
        margin: auto;
    }

        .feature-section .feature-icon svg,
        .feature-section .feature-icon img {
            margin-top: 100%;
        }


/* grant section  */

.grant {
    padding-top: 95px;
}

    .grant .main-heading h1 {
        font-size: 18px;
        font-weight: bold;
        line-height: 40px;
        color: var(--secondry-color);
        line-height: 60px;
        margin-bottom: 20px;
    }

    .grant .main-heading h2 {
        font-size: 18px;
        font-weight: bold;
        line-height: 40px;
        color: var(--secondry-color);
        line-height: 60px;
        margin-bottom: 20px;
    }

    .grant .main-heading p {
        color: var(--secondry-color);
        font-size: var(--sub-text);
        line-height: 30px;
        text-align: center;
    }

    .grant .grant-desc p {
        color: var(--secondry-color);
        font-size: var(--sub-text);
        line-height: 30px;
        text-align: center;
    }

.rwd-media {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 */
}

    .rwd-media iframe,
    .rwd-media video {
        position: absolute;
        width: 100%;
        height: 100%;
    }

.grant .pt-30 {
    padding-top: 80px;
}

.funds-feature .icon i {
    font-size: 40px;
    margin: 20px 0px;
    color: var(--secondry-color);
}

.funds-feature .des h1 {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 15px;
}

.funds-feature .des p {
    color: var(--secondry-color);
    font-size: var(--sub-text);
    line-height: 30px;
    text-align: center;
}


/* cookie */

.cookie-notice {
    position: fixed;
    display: block;
    justify-content: center;
    align-items: center;
    padding: 0;
    bottom: 0;
    width: 100%;
    background: #191919;
    color: #F6F6F6;
    font-size: 1.2rem;
    z-index: 999;
}

    .cookie-notice .cookie {
        font-size: 20px;
        margin-right: 0.3rem;
        margin-left: 1rem;
    }

    .cookie-notice p {
        font-size: var(--small-text);
        display: inline;
    }

    .cookie-notice a {
        color: #F6F6F6;
    }

    .cookie-notice .accept-cookies {
        cursor: pointer;
        border: none;
        outline: none;
        background: #F6F6F6;
        color: #191919;
        font-weight: 700;
        padding: 0.5rem 1.5rem;
        font-size: var(--small-text);
        transition: 0.35s ease;
    }


/* testimonial */






.testimonials .testimonials-text {
    position: relative;
    background-color: #e1e1e1;
    padding: 40px 25px;
    height: 100%;
}

    .testimonials .testimonials-text span {
        font-size: 90px;
        opacity: 0.3;
        position: absolute;
        left: 5px;
        top: 7px;
        color: var(--secondry-color);
    }

    .testimonials .testimonials-text p {
        margin-left: 4px;
        font-size: var(--sub-text);
        line-height: 30px;
        font-style: italic;
    }

    .testimonials .testimonials-text .name {
        margin-top: 20px;
        font-weight: 700;
        text-align: right;
        bottom: 3px;
        right: 15px;
        position: absolute;
    }


/* faq */

.faqs-container {
    overflow: hidden;
}

.faq-singular {
    position: relative;
    border-bottom: 1px solid #ccc;
    padding: 0 30px 0 20px;
}

    .faq-singular:hover,
    .faq-singular.active {
        background: #f2f2f4;
        background-image: linear-gradient(90deg, #006eff 0%, #006eff 8px, transparent 8px, transparent 100%);
    }

    .faq-singular .faq-question {
        position: relative;
        cursor: pointer;
        margin: 0;
        padding: 25px 25px 25px 0px;
        font-weight: normal;
        text-align: left;
        font-size: 16px;
    }

        .faq-singular .faq-question:before {
            position: absolute;
            content: "+";
            color: #808080;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 28px;
            font-weight: 700;
            transition: all .5s;
        }

    .faq-singular.active .faq-question:before {
        transform: translateY(-50%) rotate(45deg) scale(1.3);
    }

.faq-answer {
    display: none;
    padding-bottom: 20px;
    text-align: justify !important;
    color: var(--secondry-color);
    line-height: 30px !important;
    text-align: center;
}


/* footer */

footer {
    background-color: #111;
    padding: 30px 0px;
}

    footer .footer-info p {
        font-size: var(--small-text);
        line-height: 20px;
        color: #747a7c;
    }

    footer .footer-cnt i {
        font-size: 16px;
        color: white;
    }

    footer .footer-cnt h6 {
        margin-left: 15px;
        color: #747a7c;
        line-height: 27px;
        font-size: var(--sub-text);
    }

    footer .footer-cnt .title h1 {
        font-size: 16px;
        padding-bottom: 20px;
        color: #f8f9fa;
        font-weight: bold;
        letter-spacing: 0.3px;
    }

    footer .socials-item {
        display: inline-block;
        text-align: center;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        margin: 0 5px;
        line-height: 40px;
        color: white;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        background-color: #141421;
        border: 1px solid #2e2e4c;
        box-shadow: 3px 9px 16px rgb(0 0 0 / 40%), -3px -3px 10px rgb(255 255 255 / 6%), inset 14px 14px 26px rgb(0 0 0 / 30%), inset -3px -3px 15px rgb(255 255 255 / 5%);
    }

.share ul li:hover a,
.footer-bottom .socials-colored .socials-item:hover i {
    color: #ffffff !important;
}

footer .fb:hover {
    background: #3b5999;
}

footer .tw:hover {
    background: #55acee;
}

footer .qu:hover {
    background: #b92b27;
}

footer .ins:hover {
    background: #e60080;
}

footer .you:hover {
    background: #ff0000;
}


/* price table */

.price-table .d-flex {
    padding: 15px 15px;
    border-bottom: 1px dashed #dfdfdf;
}

.price-table .icon {
    font-size: 18px;
    padding: 10px 10px;
    height: 100%;
    width: 55px;
}

.price-table .table-text {
    text-align: justify;
    padding-left: 15px;
}

    .price-table .table-text .title {
        font-size: 16px;
        font-weight: 600;
        padding-bottom: 8px;
    }

    .price-table .table-text p {
        font-size: var(--sub-text);
        line-height: 30px;
    }

.price-table .premium .card-title {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

.price-table .free {
    margin-top: 18px;
}

.price-table .tbl-ftr {
    padding: 15px 0px;
}

    .price-table .tbl-ftr p {
        font-size: var(--small-text);
        color: var(--secondry-color);
        line-height: 19px;
    }

.info {
    font-size: var(--sub-text);
    line-height: 28px;
}


/* multiple table */

.main {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    margin: 60px 0px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    border: 0 none;
}

    .price-table tr:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .price-table tr td {
        border-left: 1px solid rgba(0, 0, 0, 0.05);
        padding: 8px 14px;
        font-size: 14px;
        vertical-align: middle;
    }

        .price-table tr td:first-child {
            border-left: 0 none;
            width: 35%;
            position: relative;
        }

            .price-table tr td:first-child h4 {
                display: inline-block;
                font-size: 16px;
                padding-left: 30px;
                margin-bottom: 8px;
                margin-top: 8px;
            }

        .price-table tr td:not(:first-child) {
            text-align: center;
        }

    .price-table tr:nth-child(even) {
        background-color: #FFFFFF;
    }

    .price-table tr:hover {
        background-color: #EEEEEE;
    }

.mian .price-table .fa-check {
    color: #0d6efd;
    font-size: 16px;
}

.mian .price-table .fa-times {
    color: #D8D6E3;
}


/* Highlighted column */

.price-table tr:nth-child(2n) td:nth-child(3) {
    background-color: rgba(216, 214, 227, 0.25);
}

.price-table tr td:nth-child(3) {
    background-color: rgba(216, 214, 227, 0.15);
    /* padding: 8px 48px; */
}

    .price-table tr td:nth-child(3) .fa-check,
    .price-table tr:nth-child(2n) td:nth-child(3) .fa-check {
        /* color: #ffffff; */
    }


/**/

.price-table tr.price-table-head td {
    font-size: var(--sub-text);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 21px;
}

.price-table tr.price-table-head {
    background-color: #0d6efd;
    color: #FFFFFF;
}

.price-table td.price {
    color: #212529;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
}

    .price-table td.price a {
        background-color: #0d6efd;
        color: #FFFFFF;
        padding: 12px 20px;
        margin-top: 16px;
        font-size: var(--small-text);
        font-weight: 600;
        text-transform: uppercase;
        display: inline-block;
        text-decoration: none;
        border-radius: 64px;
    }

.price-table td.price-table-popular {
    font-family: "Montserrat";
    border-top: 3px solid #5336ca;
    color: #5336ca;
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 48px;
    font-weight: 700;
}

.price-table .price-blank {
    background-color: #fafafa;
    border: 0 none;
}

.price-table tr td:first-child i {
    display: inline-block;
    font-size: 16px;
    position: absolute;
    top: 45%;
}

.price-table tr td:first-child p {
    display: inline-block;
    font-size: var(--small-text);
    padding-left: 30px;
    line-height: 18px;
}

.price-table td.price span {
    line-height: 30px;
}

.multi-user {
    margin-top: 20px;
}

    .multi-user h1 {
        font-size: 18px;
        font-weight: 600;
        padding-bottom: 20px;
    }

    .multi-user .desc {
        font-size: var(--sub-text);
        color: var(--secondry-color);
        line-height: 24px;
    }


/*popup  */

.popup h1 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.popup p {
    font-size: 16px;
    margin-bottom: 20px;
}

.popup h2 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 20px;
}

.popup p {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 34px;
}

.offer-content {
    font-size: 16px;
    color: var(--secondry-color);
    line-height: 34px;
    padding: 20px;
    text-align: center;
    font-weight: 600;
}


/* terms */

.terms {
    padding: 40px 0px;
    background: #f4f5f9;
}

    .terms .terms-box {
        background: white;
        box-shadow: 0 0 10px rgb(0 0 0 / 4%);
        padding: 35px;
    }

    .terms h1 {
        text-align: center;
        font-size: 18px;
        color: var(--secondry-color);
        font-weight: bold;
        margin-bottom: 25px;
    }

    .terms p {
        font-size: var(--sub-text);
        color: var(--secondry-color);
        line-height: 25px;
        margin-bottom: 15px;
        text-align: justify;
    }

    .terms h6 {
        font-size: var(--sub-text);
        font-weight: 900;
        color: var(--secondry-color);
        padding: 10px 0px;
        border-bottom: 1px dashed gainsboro;
        margin-bottom: 10px;
    }

    .terms h5 {
        font-size: var(--sub-text);
        font-weight: bold;
        color: var(--secondry-color);
        padding: 10px 0px;
    }

    .terms ol {
        list-style-type: lower-roman;
        padding-left: 20px;
    }

        .terms ol li {
            line-height: 24px;
            margin-bottom: 15px;
            text-align: justify;
            font-size: var(--sub-text);
        }

        .terms ol ul,
        .terms ul {
            list-style-type: disc;
            margin-left: 20px;
        }

            .terms ul li {
                line-height: 24px;
                text-align: justify;
            }

.terms-header .social-media ul li {
    padding: 0px 20px;
}

.navbar .navbar-brand {
    display: none;
}

.navbar.sticky .navbar-brand {
    display: block;
}

.top-header ul li {
    display: inline-block;
    padding: 7px 15px 7px 0px;
    text-decoration: none;
}

    .top-header ul li a {
        color: white;
        text-decoration: none;
    }

.socials .socials-item {
    display: inline-block;
    text-align: center;
    font-size: var(--sub-text);
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0px 5px;
    line-height: 34px;
    color: #006eff;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    background-color: #111111;
}

.top-header {
    background: var(--primary-color);
    padding: 5px 0px;
}

.navbar-expand-xl .navbar-nav .nav-link {
    padding: 0px 9px;
    font-size: var(--sub-text);
    font-weight: bold;
}

.cookie-message {
    font-family: "Century Gothic", CenturyGothic, Geneva, AppleGothic, sans-serif;
    border-radius: 10px;
    padding: 15px 0;
    background: #f7f8fb;
    border: 1px solid rgba(0, 0, 0, .15);
    box-shadow: 0 0 16px 2px rgba(0, 0, 0, .05), 0 10px 10px 2px rgba(0, 0, 0, .05);
    font-size: 12px;
    line-height: 40px;
    border-top: 1px solid #e4e4e4;
    position: fixed;
    z-index: 100;
    bottom: 10%;
    right: 2%;
    margin: auto;
    max-width: 575px;
    display: -ms-flexbox;
    display: flex;
}

    .cookie-message img {
        height: 50px;
        width: 50px;
        margin: 0 15px;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .cookie-message span {
        display: inline-block;
        line-height: 1.5;
        padding-right: 16px;
        border-right: 1px solid rgba(0, 0, 0, .1);
    }

    .cookie-message a.close {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        border: none;
        font-size: 24px;
        padding: 0 20px 0 16px;
        position: relative;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        color: #919191;
        transition: color 0.2s;
    }

        .cookie-message a.close:hover {
        }

    .cookie-message a {
        display: inline-block;
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
    }

/* search  */
.main-section {
    padding: 80px 0px;
    background: #f8fafb;
}

    .main-section .search-box {
        padding: 20px 15px;
        background: #0d6efd70;
        box-shadow: 2px 2px 4px rgb(13 110 253 / 28%);
    }

        .main-section .search-box .form-control {
            height: 45px;
            font-size: 16px;
            border-right: 0;
            margin: 0 !important;
            border-radius: 0;
        }

            .main-section .search-box .form-control:focus, .main-section #btnSearch {
                outline: 0;
                box-shadow: none;
                border-color: #ced4da;
            }

    .main-section #btnSearch {
        border-radius: 0;
    }

    .main-section article {
        overflow: hidden !important;
    }

    .main-section article {
        width: 100%;
        /* height: 100%; */
        background-color: #fff;
        margin-top: 25px;
        margin-left: 0;
        padding: 15px;
        display: flex;
        -webkit-box-shadow: 0 1px 4px 3px rgb(230 233 249 / 90%);
        box-shadow: 0 1px 4px 3px rgb(230 233 249 / 90%);
        position: relative;
    }

        .main-section article .article-img {
            width: 170px;
        }

        .main-section article .description {
            padding-right: 20px;
        }

        .main-section article .description {
            width: 470px;
            padding-left: 15px;
        }

            .main-section article .description h2 a {
                font-size: 15px;
                font-weight: 700;
                display: -webkit-box;
                max-width: 100%;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                font-family: 'Lato', sans-serif;
                height: auto;
                line-height: 18px;
                margin-bottom: 5px;
                text-align: justify;
                text-decoration: none;
                color: var(--primary-color);
            }

            .main-section article .description h3 {
                line-height: 20px;
                font-size: 14px;
                text-align: left;
                display: -webkit-box;
                max-width: 100%;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                height: auto;
                line-height: 22px;
                font-family: 'Lato', sans-serif;
            }

            .main-section article .description ul {
                padding: 5px 0;
                list-style: none;
            }

                .main-section article .description ul li {
                    line-height: 20px;
                    font-size: 14px;
                    text-align: left;
                    padding: 4px 0;
                    font-weight: 400;
                }

                    .main-section article .description ul li i {
                        color: var(--primary-color)
                    }

article .tag {
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
}

article #tag {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-59%) translateY(-50%) rotate(90deg);
    position: absolute;
    top: 50%;
    text-align: center;
    display: block;
    margin-left: 0;
    width: 130px;
    font-size: 14px;
    padding: 5px;
    border-radius: 0 0 10px 10px;
    color: var(--bs-light);
    font-weight: bold;
    letter-spacing: 0.4px;
    font-family: 'Lato', sans-serif;
}

.detail-img-box {
    background: #fff;
    -webkit-box-shadow: 0 5px 20px 3px rgb(230 233 249 / 90%);
    box-shadow: 0 5px 20px 3px rgb(230 233 249 / 90%);
}

.blg-img-box {
    padding: 10px;
    border: 1px solid #e9ebee;
    box-shadow: 0 3px 7px rgb(0 0 0 / 7%);
}

    .blg-img-box img {
        box-shadow: 0 3px 7px rgb(0 0 0 / 7%);
    }

.blog-info {
    height: 100%;
    padding: 20px;
}

    .blog-info h1, .blog-content h1 {
        font-size: 20px;
        font-weight: 700;
        line-height: 30px;
        margin-right: 45px;
        color: var(--black);
    }

    .blog-info .highlights {
        padding-top: 10px;
    }

        .blog-info .highlights p {
            padding: 5px 0;
            font-size: 13px;
            color: var(--primary-color);
            line-height: 22px;
        }

            .blog-info .highlights p strong {
                margin-right: 4px;
                font-weight: bold;
            }

.detail-img-box span {
    line-height: 22px;
    font-size: 13px;
    text-align: left;
    font-weight: bold;
    margin: 0;
    padding-bottom: 5px;
    color: black !important;
    padding-top: 2px;
}

.blog-content {
    padding: 20px;
}

    .blog-content p, .blog-content ul li, .blog-content ol li, .blog-content div, .blog-content ul li strong {
        line-height: 30px;
        font-size: 13px;
        text-align: left;
        color: var(--black);
    }

aside {
    position: sticky;
    top: 10px;
}

.widget {
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgb(136 136 136 / 10%);
    margin-bottom: 15px;
}

    .widget .widget-header {
        padding: 15px 10px;
        border-bottom: 1px solid #e9ebee;
        box-shadow: 0 3px 7px rgb(0 0 0 / 7%);
    }

        .widget .widget-header .title {
            font-size: 16px;
            color: var(--bs-blue);
            margin: 0;
            font-weight: 600;
            text-transform: capitalize;
        }

    .widget .widget-body {
        padding: 5px 20px 10px;
    }

.scroll-bar {
    width: auto;
    position: relative;
}

.blog-side-bar .widget .scroll-bar ul {
    margin-top: 10px;
}

.scroll-bar ul {
    width: 100%;
    height: auto;
    overflow-y: scroll;
    max-height: 200px;
}


.heading h1 {
    text-transform: capitalize;
    text-align: center;
    padding-bottom: 22px;
}

    .heading h1 span {
        position: relative;
        border: 2px solid var(--primary-color);
        padding: 4px 10px !important;
        color: var(--primary-color);
        font-size: 20px;
        font-weight: 600;
        padding: 6px 0;
        line-height: 30px;
    }

        .heading h1 span:before, .heading h1 span:after {
            content: "";
            width: 8px;
            margin: 0 .8em;
            position: absolute;
            bottom: .6em;
            border-radius: 50%;
            height: 8px;
            background: var(--primary-color);
        }

        .heading h1 span:before {
            right: 100%;
        }

.detail-img-box .row {
    border-bottom: 4px solid #f2f2f2;
}



.card {
    position: relative;
    background: #fff;
    display: grid;
    margin: 8px;
    transition: .2s ease-in
}

    .card .card-description {
        padding: 25px 5px
    }

        .card .card-description .title a {
            color: var(--black);
            line-height: 20px;
            font-size: 13px;
            display: -webkit-box;
            max-width: 100%;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 60px
        }

    .card .card-footer {
        text-transform: uppercase;
        padding: 10px 5px;
        border-top: .5px solid #ececec;
        font-size: 10px;
        color: var(--black);
        font-weight: 600;
        justify-items: left;
        align-items: center;
        background: #f4f5f9;
        display: flex
    }

    .card:hover {
        transition: .2s ease-in;
        transform: translateY(-10px)
    }

.slick-list:hover {
}

.related-blog .regular .slick-arrow {
    display: none
}

.blog-side-bar .scrollbar-height {
}

.blg-img-box {
    padding: 10px;
    border: 1px solid #e9ebee;
    box-shadow: 0 3px 7px rgb(0 0 0/7%)
}

    .blg-img-box img {
        box-shadow: 0 3px 7px rgb(0 0 0/7%)
    }

.blog-side-bar .widget .widget-body .scroll-bar ul li a, .blog-side-bar .widget .widget-body .scroll-bar ul li a i {
    font-size: 13px;
    line-height: 17px
}


.card {
    position: relative;
    background: #fff;
    display: grid;
    margin: 8px;
    transition: .2s ease-in
}

    .card .card-description {
        padding: 25px 5px
    }

        .card .card-description .title a {
            color: var(--black);
            line-height: 20px;
            font-size: 13px;
            display: -webkit-box;
            max-width: 100%;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 60px;
            text-decoration: none;
        }

    .card .card-footer {
        text-transform: uppercase;
        padding: 10px 5px;
        border-top: .5px solid #ececec;
        font-size: 10px;
        color: var(--black);
        font-weight: 600;
        justify-items: left;
        align-items: center;
        background: #f4f5f9;
        display: flex
    }

    .card:hover {
        transition: .2s ease-in;
        transform: translateY(-10px)
    }

.slick-list:hover {
}

.related-blog .regular .slick-arrow {
    display: none
}

.blog-side-bar .scrollbar-height {
}

.blg-img-box {
    padding: 10px;
    border: 1px solid #e9ebee;
    box-shadow: 0 3px 7px rgb(0 0 0/7%)
}

    .blg-img-box img {
        box-shadow: 0 3px 7px rgb(0 0 0/7%)
    }

.blog-side-bar .widget .widget-body .scroll-bar ul li a, .blog-side-bar .widget .widget-body .scroll-bar ul li a i {
    font-size: 13px;
    line-height: 17px;
    margin-right: 5px;
    color: black;
}


.related-blog {
    padding: 15px 30px;
}

.main-section .slick-next {
    right: -25px;
}

.main-section .slick-prev {
    left: -25px;
}

.detail-img-box span i {
    color: var(--primary-color)
}

.button {
    display: inline-block;
    padding: 8px 8px;
    border-radius: 4px;
    background: #ffffff;
    font-family: sans-serif;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    margin: 10px 8px;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
    font-size: 14px;
    color: var(--primary-color);
}

    .button:hover {
        background-color: var(--primary-color);
        color: var(--bs-white);
        outline: none;
    }

    .button:active,
    .button.is-checked {
        background-color: var(--primary-color);
        color: var(--bs-white);
        outline: none;
    }

.button-group {
    margin: 20px 0;
    text-align: center;
}

    .button-group:after {
        content: '';
        display: block;
        clear: both;
    }

img {
    vertical-align: middle;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.grid article {
    background-color: #FFFFFF;
    display: block;
    float: left;
    margin: 1%;
    width: 31.3%;
}

@media (max-width: 1024px) {
    .grid article {
        width: 48%;
    }
}

@media (max-width: 767px) {
    .grid article {
        width: 48%;
    }
}

@media (max-width: 479px) {
    .grid article {
        margin: 2% 0;
        width: 100%;
    }
}

.single-video .video-titile {
    text-align: center;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    border-top: 1px solid gainsboro;
}

#Videomodal .btn-close {
    position: absolute;
    right: 0;
    background: black;
    opacity: 1;
    color: white;
    font-weight: bold;
    padding: 8px;
    z-index: 9;
}

#Videomodal .video-titile {
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
}

#Videomodal .shadow-sm {
    box-shadow: none !important;
}

#Videomodal .modal_call {
    display: none;
}

article .single-video {
    position: relative;
    border: 2px solid gainsboro;
}

article .modal_call {
    width: 100%;
    margin: 0;
    list-style: none;
    position: absolute;
    z-index: 2;
    height: 100%;
    background: #0059dca6;
    top: 0;
    opacity: 0;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

article:hover .modal_call {
    opacity: 1;
}

article .modal_call div {
    opacity: 0;
    transform: translateY(300%);
    transition: all .5s ease 0s;
    color: white;
    padding-top: 27%;
    text-align: center;
    font-size: 40px;
}


article:hover .modal_call div {
    opacity: 1;
    transform: translateY(0)
}


.videoMain-section .des-box {
    padding: 15px 0px;
}


    .videoMain-section .des-box h1 {
        font-size: 22px;
        font-weight: bold;
        padding-bottom: 10px;
        color: var(--primary-color)
    }

    .videoMain-section .des-box p {
        font-size: 18px;
        line-height: 22px;
    }

.dashboard,
.latest-Opp,
.Resources,
.Donors,
.Jobs,
.Alerts,
.Sign_up,
.login,
.Forgot_Password,
.My_Favorites {
    display: none;
}

.des-box .active {
    display: block
}

.filters-button-group {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* privacy */

.pricay_section {
    padding: 40px 0px;
}

.privacy_content {
    background: #FFFFFF;
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    border-left: 1px solid #EEEEEE;
    border-right: 1px solid #EEEEEE;
    padding: 20px 20px 20px 20px;
    overflow: hidden;
}

.breadcrumb {
    background: #F2F2F2;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    border-left: 1px solid #DDDDDD;
    border-right: 1px solid #DDDDDD;
    margin-top: -10px;
    margin-bottom: 30px;
    padding: 5px 10px 5px 10px;
    color: #333333;
    font-family: '', sans-serif;
    font-size: 8px;
    font-size: 0.8rem;
}

.pricay_section .privacy_content h1 {
    color: #000000;
    font-size: 25px;
}

.pricay_section .privacy_content span,
.pricay_section .privacy_content p,
.pricay_section .privacy_content .entry-content div {
    font-size: var(--sub-text);
    color: var(--secondry-color);
    line-height: 28px;
    margin-bottom: 15px;
    text-align: justify;
    overflow-x: hidden;
}

.pricay_section .privacy_content li {
    font-size: var(--sub-text);
    color: var(--secondry-color);
    line-height: 28px;
    text-align: justify;
    margin-bottom: 15px;
    margin: 0 0 0 30px;
    padding-bottom: 15px !important;
}

.pricay_section .privacy_content ul {
    margin-bottom: 10px;
    list-style-type: square;
}

.pricay_section .privacy_content strong {
    font-weight: bold;
}

.shadow-custom {
    box-shadow: 0 0 35px 0 rgb(0 0 0 / 25%);
    padding: 2.5em 2.86em;
    border-radius: 8px;
}

    .shadow-custom .des-text p {
        font-size: 14px;
        line-height: 1.75;
        margin-right: 2em;
    }

.termly-styles-module-checkbox-4c7ccb {
    width: 18px;
    height: 18px;
    border: solid 1px #e1e3e6;
    border-radius: 3px;
    margin-right: 8px;
    background-image: linear-gradient(to top, #f2f4fb, #feffff);
    display: flex;
    flex: 0 0 18px;
}

.termly-styles-module-label-ef143a {
    display: flex;
    align-items: center;
}


.termly-styles-body-214cf5 {
    overflow: hidden;
    transition: max-height .5s;
    margin: 0;
    padding: 0;
    border-radius: 0 0 3px 3px;
    display: block;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    margin-left: 27px;
}

input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

.termly-styles-module-input-fad133 {
    display: none;
}

.termly-styles-description-3d6c88 {
    font-family: Roboto, Helvetica, Arial;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.62;
    color: #3b3b3b;
    border-bottom: solid 1px #ededef;
    margin: 0;
    padding-bottom: 30px;
}

.termly-styles-preferenceTitle-1c01ba {
    font-family: Roboto, Helvetica, Arial;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.24;
    color: #3b3b3b;
    margin: 0;
    margin-bottom: 21px;
}

.termly-styles-topHeader-8ccb55 {
    display: flex;
    align-items: center;
}

.termly-styles-head-109e6e {
    font-size: 17px;
    color: #3a3a3a;
    font-weight: 500;
    transform: translate3d(0, 0, 0);
    border-radius: 3px 3px 0 0;
    clear: both;
    display: flex;
    margin-bottom: 12px;
    box-sizing: content-box;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.termly-styles-module-checkbox-4c7ccb.termly-styles-module-checked-deffb1 {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMTIgOSI+CiAgICA8ZGVmcz4KICAgICAgICA8bGluZWFyR3JhZGllbnQgaWQ9ImEiIHgxPSIwJSIgeTE9IjUwJSIgeTI9IjUwJSI+CiAgICAgICAgICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMwMEE2REEiLz4KICAgICAgICAgICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNkY4OUVEIi8+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxwYXRoIGZpbGw9InVybCgjYSkiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTYgMTl2LTNINHY1aDEwdi0ySDZ6IiB0cmFuc2Zvcm09InJvdGF0ZSgtNDUgLTEwLjYwNyAxNC42MjEpIi8+Cjwvc3ZnPgo=), linear-gradient(to top, #f2f4fb, #feffff);
    background-repeat: no-repeat;
    background-position: center;
}

.termly-styles-module-checkbox-4c7ccb {
    width: 18px;
    height: 18px;
    border: solid 1px #e1e3e6;
    border-radius: 3px;
    margin-right: 8px;
    background-image: linear-gradient(to top, #f2f4fb, #feffff);
    display: flex;
    flex: 0 0 18px;
}

.termly-styles-module-checkbox-4c7ccb {
    width: 18px;
    height: 18px;
    border: solid 1px #e1e3e6;
    border-radius: 3px;
    margin-right: 8px;
    background-image: linear-gradient(to top, #f2f4fb, #feffff);
    display: flex;
    flex: 0 0 18px;
}

.modal-body .heading h1 {
    text-transform: capitalize;
    text-align: left;
    font-size: 24px;
    font-weight: bold;
}

.modal-body .sub-heading {
    text-transform: capitalize;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 15px;
}

.modal-body .table > thead {
    vertical-align: bottom;
    border-bottom: 1px solid white;
}

.modal-body .table > :not(caption) > * > * {
    padding: 10px;
    vertical-align: middle;
    font-size: 14px;
}

.Essential_Box, .others_box {
    display: none;
}

/* form_data */

.form_data {
    padding: 40px 0px;
}

    .form_data .form-des h1 {
        font-size: 1.875rem;
        font-weight: 500;
        text-align: center;
        line-height: 1.6;
    }

    .form_data .form-des p {
        font-size: 14px;
        font-size: .875rem;
        font-weight: 500;
        text-align: center;
        font-weight: 400;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.4;
        margin-bottom: 30px;
        margin-bottom: 1.875rem;
    }

.form-box {
    margin: auto;
    padding: 50px 76px;
    padding: 3.125rem 4.75rem;
    background-color: #fff;
    box-shadow: 0 3.125rem 3.125rem -1.875rem #f5f6fa;
    border: solid 1px #8b93a7;
    border: solid 0.0625rem #8b93a7;
}

    .form-box .form-label {
        font-size: 16px;
        font-size: .875rem;
        font-weight: 500;
        color: #000;
        display: inline-block;
        margin-bottom: 10px;
        line-height: 1.4;
        font-weight: bold;
    }


    .form-box .form-check-label {
        font-size: 16px;
        padding-bottom: 14px;
        line-height: 22px;
    }

.c-pointer {
    cursor: pointer;
}

.termly-styles-root-8bc649 {
    display: flex;
    border-bottom: solid 1px #ededef;
    font-family: Roboto, Helvetica, Arial;
    margin: 0;
    padding: 17px 0;
    text-transform: none;
    opacity: 1;
}

/* feedback-msg */

.feedback-msg {
    background: #f4f5f9;
}



.msg-body .title {
    padding: 20px 0px;
    font-size: 24px;
    font-weight: bold;
}

.msg-body p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}




/* course details  */
.course_sections {
    padding: 50px 0px;
}

    .course_sections .heading,
    .course_sections .sub_heading {
        font-weight: 600;
        font-size: 30px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .course_sections .heading {
        font-size: 35px !important;
    }

    .course_sections .font_size {
        font-size: 22px;
        line-height: 1.8em;
    }

    .course_sections .font_size1 {
        font-size: 22px;
        line-height: 1.8em;
        padding: 8px 0px;
    }

    .course_sections .font_size3 {
        font-size: 35px;
        padding-top: 16px;
        padding-bottom: 16px;
        line-height: 1.8em;
        font-weight: 300;
    }

    .course_sections .list {
        list-style-type: none;
    }

        .course_sections .list li i {
            padding-right: 10px;
        }

    .course_sections .custom-p {
        padding: 0px 40px;
    }

    .course_sections .faq-singular .faq-question {
        font-size: 20px;
    }

    .course_sections .faq-singular div {
        font-size: 16px;
        line-height: 1.75em;
    }

.premium_section {
    margin: 30px 0px;
}

.course_sections .price-table .premium .card-title {
    font-size: 32px;
}

.course_sections .price-table .table-text .title {
    font-size: 22px !important;
}


.our_course .card {
    padding: 20px;
    border: none;
    margin-bottom: 25px;
    background: #f4f5f9;
}

    .our_course .card:hover {
        box-shadow: 0 5px 12px rgb(126 142 177 / 20%);
    }

    .our_course .card .card-body {
        padding: 0px;
    }

.our_course .item-card-imgs {
    overflow: hidden;
    border-radius: 7px;
}

.our_course .card:hover .item-card-imgs img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.our_course .card .item-card-imgs img {
    -webkit-transition: .5s;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    width: 100%;
    display: block;
}

.our_course .card .item-card-desc a {
    text-decoration: none;
}

.our_course .card .item-card-desc h4 {
    color: var(--subText-color);
    font-weight: 500;
    line-height: 22px;
    font-size: var(--sub-text);
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    margin: 10px 0px !important;
}

.our_course .card .item-card-desc .view {
    font-size: 16px;
    font-weight: 500;
    color: var(--subText-color);
}

.our_course .card .item-card-desc .time .info {
    color: black;
    font-weight: 400;
}

.our_course .card .item-card-desc .des {
    line-height: 24px;
    font-size: 16px;
    color: black;
    text-align: justify;
    padding-top: 0px;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
}



/* banner */

/* .banner_section {
    --bs-bg-opacity: 1;
    background-color: var(--primary-clr);
    padding: 30px 0px;
    background: linear-gradient(132deg, #009540, #008dd2, #212335);
    background-size: 400% 400%;
    animation: Gradient 15s ease infinite;
} */

/* @keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
} */

.banner_section {
    padding: 120px 0 120px !important;
    background: linear-gradient(180deg, #2d2db0 -65%, #2c8cf4 110%);
}



    .banner_section .banner_des h1 {
        font-size: var(--heading);
        color: var(--white);
        padding-bottom: 25px;
        font-weight: bolder;
        text-transform: capitalize;
        line-height: 130%;
    }

    .banner_section .banner_des p {
        font-size: 17px;
        color: var(--white);
        line-height: 150%;
    }

    .banner_section .bnnr-img {
        width: 85%;
    }

    .banner_section .banner_des .form-control {
        background-color: transparent;
    }

        .banner_section .banner_des .form-control:focus {
            background-color: transparent;
            box-shadow: none;
            outline: none;
        }

/* Categories */
.Categories {
    padding: 50px 0px;
    /* height: 450px; */
    background: #e3f3fc;
    overflow: hidden;
}

.category_box {
    padding: 25px;
    /* background: white; */
    margin: 0px 0px;
    text-align: center;
    -webkit-transition: .5s;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    cursor: pointer;
}

    .category_box:hover {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    .category_box .c_icon {
        display: inline-block;
        background: white;
        padding: 12px;
        border-radius: 12px;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    }

    .category_box .c_des h6 {
        font-size: var(--sub-text);
        font-weight: bold;
        color: var(--subText-color);
        padding-top: 12px;
        padding-bottom: 8px;
    }

.heading11 {
    font-size: var(--sub-heading);
    font-weight: 500;
    padding-bottom: 25px;
    color: var(--subText-color);
}


.slide .carousel-caption {
    align-items: center;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex !important;
    overflow: hidden;
}

.slide .active .carousel-caption div {
    color: rgb(255, 255, 255);
    max-width: 640px;
    transform: translate3d(20%, 0px, 0px);
    text-align: left;
}

.slide .carousel-caption div {
    color: rgb(255, 255, 255);
    max-width: 640px;
    transform: translate3d(255%, 0px, 0px);
    transition: all 0.75s ease 0s;
    overflow: hidden;
}

.slide .carousel-caption h5 {
    font-size: var(--heading);
    color: var(--white);
    font-weight: 400;
    padding-bottom: 20px;
}


.slide .carousel-caption p {
    font-size: var(--sub-heading);
    color: var(--white);
    line-height: 38px;
    font-weight: 300;
}

.slide .carousel-control-next,
.slide .carousel-control-prev {
    bottom: 0px;
    display: block;
    top: unset !important;
    width: 38px;
    padding: 5px 6px;
    z-index: 99999;
    background: white;
    border-radius: 50%;
    opacity: 1;
    vertical-align: middle;
    margin-bottom: 1rem;
    text-align: center;
}

.slide .carousel-control-next-icon,
.slide .carousel-control-prev-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.slide .carousel-indicators [data-bs-target] {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: white;
    margin-right: 10px;
}

    .slide .carousel-indicators [data-bs-target]:last-child {
        margin-right: 0px;
    }



.slide .carousel-control-prev {
    left: 43%;
}

.slide .carousel-control-next {
    right: 43%;
}


/* Benefit_section */
.Benefit_section {
    padding: 50px 0px;
}

    .Benefit_section h1 {
        font-size: var(--heading);
        line-height: 150%;
        font-weight: 400;
        color: var(--subText-color);
    }

    .Benefit_section .box {
        padding-bottom: 10px;
    }

        .Benefit_section .box .des h6 {
            color: var(--subText-color);
            font-weight: bold;
            padding-bottom: 5px;
            font-size: var(--sub-text);
        }

        .Benefit_section .box .des p {
            font-size: var(--text);
            line-height: 20px;
        }



.sample-proposal {
    padding: 20px 0
}

    .sample-proposal .card {
        border: none;
        -webkit-transition: -webkit-transform .5s;
        transition: -webkit-transform .5s;
        transition: transform .5s;
        transition: transform .5s, -webkit-transform .5s;
        margin: 0;
    }

        .sample-proposal .card:hover {
            -webkit-transform: translateY(-5px);
            transform: translateY(-5px)
        }

            .sample-proposal .card:hover .card-title {
                color: var(--first-color);
                cursor: pointer
            }

        .sample-proposal .card .card-img {
            overflow: hidden
        }

            .sample-proposal .card .card-img .card-img-top {
                -webkit-transform: scale(1.2);
                transform: scale(1.2)
            }

        .sample-proposal .card .card-body span {
            padding: 4px 10px 4px 19px;
            font-size: 12px;
            letter-spacing: .8px;
            font-weight: 500;
            text-transform: capitalize;
            border-radius: 30px;
            position: relative;
            background: #006eff85;
            color: black;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-inline-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            width: auto;
            line-height: 18px
        }

            .sample-proposal .card .card-body span::before {
                content: "";
                width: 6px;
                height: 6px;
                background: 0 0;
                margin-right: 3px;
                border-radius: 5px;
                display: inline-block;
                position: absolute;
                top: 50%;
                left: 8px;
                margin-top: -3px;
                border: 1px solid #fff;
                background:white;
            }

        .sample-proposal .card .card-body .card-title a {
            margin-bottom: .5rem;
            font-weight: 700;
            font-size: var(--sub-heading);
            line-height: 29px;
            margin-top: 10px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            text-decoration:none;
           color:var(--black);
        }

        .sample-proposal .card .card-body .card-text {
            font-size: 14px;
            line-height: 20px;
            text-align: justify;
            font-weight: 400;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 6;
            -webkit-box-orient: vertical;
            color: black;
        }

        .sample-proposal .card .card-body .btn-primary {
            margin-top: 10px;
            font-size: var(--small-text);
            -webkit-transition: ease-in-out;
            transition: ease-in-out;
            padding: 10px 14px;
        }

            .sample-proposal .card .card-body .btn-primary:hover {
                box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important
            }


.page-link {
    padding: 0.6rem 0.75rem !important;
}


.landing {
    padding: 50px 0px;
}

.landing-img {
    background: white;
    padding: 30px;
    position: sticky;
    top: 0;
    margin: 0;
}

    .landing-img .position-absolute {
        top: 29px;
        background: var(--first-color);
        color: white;
        padding: 6px 10px;
        font-size: var(--small-text);
        cursor: pointer;
    }

.landing-details {
    background-color: var(--white);
    padding: 25px;
}

    .landing-details h1 {
        font-size: var(--sub-heading);
        font-weight: 600;
        color: var(--black);
        padding-bottom: 15px;
        letter-spacing: 0.5px;
        line-height: 34px;
    }

    .landing-details p {
        font-size: var(--text-);
        color: var(--text-clr);
        line-height: 1.6em;
        padding-bottom: 6px;
        text-align: justify;
        border-bottom: 2px dashed #dadce0;
    }

        .landing-details p:last-child {
            border: none;
        }

    .landing-details h6 {
        color: var(--first-color) !important;
        font-size: var(--text) !important;
        font-weight: bold !important;
        padding: 15px 0;
        margin: 0px;
    }

    .landing-details ul {
        list-style-type: square;
        margin-left: 20px;
    }

        .landing-details ul li {
            padding: 4px 0px;
            line-height: 20px;
            color: var(--text);
            font-size: var(--small-text);
        }

/* preview-proposal-content */

.preview-proposal-content p {
    text-align: center;
    font-size: var(--small-text);
    line-height: 20px;
    padding: 5px 0px;
}

.preview-proposal-content span {
    text-align: center;
    font-size: var(--small-text);
    line-height: 20px;
    padding: 5px 0px;
}


/* TOP BUTTON CSS */
    #back-top.active {
        opacity: 1;
        -o-transition: all 0.6s ease;
        transition: all 0.6s ease;
        -webkit-transition: all 0.6s ease;
        -ms-transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    #back-top {
        bottom: 0;
        opacity: 0;
        z-index: 9;
        right: 20px;
        width: 50px;
        color: #fff;
        height: 50px;
        cursor: pointer;
        font-size: 25px;
        position: fixed;
        line-height: 47px;
        text-align: center;
        border-radius: 5px;
        background: var(--primary-color);
        -o-transition: all 0.6s ease;
        transition: all 0.6s ease;
        transform: translateY(40px);
        -ms-transform: translateY(40px);
        -webkit-transition: all 0.6s ease;
        -webkit-transform: translateY(40px);
    }
/*TOP BUTTON CSS*/