<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&amp;display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --dark-grey: #000000;
    --medium-grey: #636363;
    --light-grey: #e3e3e3;
    --ash: #f4f4f4;
    --primary-color: #e9967a;
    --white: #ffffff;
    --border: 1px solid var(--light-grey);
    --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}


body {
    font-family: inherit;
    background-color: var(--white);
    color: var(--dark-grey);
}

a {
    text-decoration: none;
}

a,
button {
    cursor: pointer;
}

/* ============== Responsive CSS ============ */

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {

    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row&gt;* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.ml-auto {
    margin-left: auto !important
}

.order-0 {
    -ms-flex-order: 0;
    order: 0
}

.order-1 {
    -ms-flex-order: 1;
    order: 1
}

.order-2 {
    -ms-flex-order: 2;
    order: 2
}

@media (min-width: 576px) {
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .order-md-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-md-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-md-2 {
        -ms-flex-order: 2;
        order: 2
    }
}

@media (min-width: 992px) {
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-lg-1 {
        margin-left: 8.333333%
    }
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.mt-0 {
    margin-top: .0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.pe-0 {
    padding-right: 0 !important
}

.pe-1 {
    padding-right: .25rem !important
}

.pe-2 {
    padding-right: .5rem !important
}

.pe-3 {
    padding-right: 1rem !important
}

.pe-4 {
    padding-right: 1.5rem !important
}

.pe-5 {
    padding-right: 3rem !important
}

.ps-0 {
    padding-left: 0 !important
}

.ps-1 {
    padding-left: .25rem !important
}

.ps-2 {
    padding-left: .5rem !important
}

.ps-3 {
    padding-left: 1rem !important
}

.ps-4 {
    padding-left: 1.5rem !important
}

.ps-5 {
    padding-left: 3rem !important
}

.m-auto {
    margin: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.offset-1 {
    margin-left: 8.333333%
}

.offset-2 {
    margin-left: 14%;
}

.text-center {
    text-align: center;
}

/* ============== Responsive End ============ */

/* ============== Navbar CSS ================ */

.main_nav {
    background-color: var(--white);
}

.main_nav ul {
    list-style: none;
}

.main_nav a {
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
    font-weight: 500;
}

.main_nav button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: inherit;
}

.main_nav .btn {
    display: block;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
}

.main_nav .icon {
    padding: 0.5rem;
    background-color: var(--light-grey);
    border-radius: 10px;
}

.main_nav .logo {
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
}

.main_nav .logo img {
    width: 40px;
    height: 40px;
}

.main_nav .logo h3 {
    margin-left: 8px;
    font-size: 22px;
    font-weight: 700;
}

#nav-menu {
    border-bottom: var(--border);
    position: sticky;
    top: 0;
    z-index: 999;
}

.main_nav .menu_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 2rem;
    height: 70px;
}

.main_nav .menu {
    position: relative;
    background: var(--white);
}

.main_nav .menu-bar li:first-child .dropdown {
    flex-direction: initial;
    /* min-width: 480px; */
}

/* .main_nav .menu-bar li:first-child ul:nth-child(1) {
    border-right: var(--border);
} */

.main_nav .menu-bar li:nth-child(n + 2) ul:nth-child(1) {
    border-bottom: var(--border);
}

.main_nav .menu-bar .dropdown-link-title {
    font-weight: 600;
    white-space: nowrap;
}

.main_nav .menu-bar .nav-link {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.6px;
    padding: 0.3rem;
    min-width: 60px;
    margin: 0 0.6rem;
}

.main_nav .menu-bar .nav-link:hover,
.main_nav .dropdown-link:hover {
    color: var(--primary-color);
}

.main_nav .nav-start,
.main_nav .nav-end,
.main_nav .menu-bar,
.main_nav .right-container,
.main_nav .right-container .search {
    display: flex;
    align-items: center;
}

.search {
    margin-right: 18px;
}

.nav-end {
    position: relative;
}

.main_nav .dropdown {
    display: flex;
    flex-direction: column;
    /* min-width: 230px; */
    background-color: var(--white);
    border-radius: 10px;
    position: absolute;
    top: 50px;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.97) translateX(-5px);
    transition: 0.1s ease-in-out;
    /* box-shadow: var(--shadow); */
    border: 1px solid var(--light-grey);
}

.main_nav .dropdown.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1) translateX(5px);
}

.main_nav .dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    font-size: 0.95rem;
}

.main_nav .dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.15rem;
}

.main_nav .dropdown-link {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-radius: 7px;
    transition: 0.1s ease-in-out;
    align-items: center;
}

.main_nav .dropdown-link img {
    width: 28px;
}

.main_nav .dropdown-link p {
    font-size: 0.8rem;
    color: var(--medium-grey);
}

.main_nav .right-container {
    display: flex;
    align-items: center;
    /* column-gap: 1rem; */
}

.main_nav .right-container .search {
    position: relative;
}

.main_nav .right-container img {
    border-radius: 50%;
    width: 40px;
    min-width: 40px;
    height: 40px;
    cursor: pointer;
}

.main_nav .search input {
    background-color: var(--ash);
    border: none;
    border-radius: 6px;
    padding: 0.7rem;
    padding-left: 2.4rem;
    font-size: 16px;
    width: 100%;
    border: var(--border);
}

.main_nav .search .bx-search {
    position: absolute;
    left: 10px;
    top: 50%;
    font-size: 1.3rem;
    transform: translateY(-50%);
    opacity: 0.6;
}

.main_nav #hamburger {
    display: none;
    padding: 0.1rem;
    margin-left: 15px;
    font-size: 1.9rem;
}

.settingsCard ul {
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    position: absolute;
    top: 57px;
    right: -10px;
    border-radius: 10px;
    padding: 1.5rem;
    font-size: 0.95rem;
}

.settingsCard ul li {
    font-size: 14px;
}

.settingsCard ul li a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.settingsCard ul li a:hover {
    color: var(--primary-color);
}

.settingsCard ul li a img {
    width: 20px !important;
    min-width: 20px !important;
    height: 20px !important;
    border-radius: inherit !important;
}

.settingsCard ul li:not(:last-child) {
    margin-bottom: 20px;
}

.hiddenCard {
    display: none;
}

.settingsCard ul::before {
    content: "";
    width: 20px;
    height: 20px;
    background: var(--white);
    transform: rotate(45deg);
    position: absolute;
    top: -11px;
    border-top: 1px solid var(--light-grey);
    border-left: 1px solid var(--light-grey);
    right: 20px;
}

@media(min-width: 991px) {
    .main_nav .dropdown::before {
        content: "";
        width: 20px;
        height: 20px;
        background: var(--white);
        transform: rotate(45deg);
        position: absolute;
        top: -10px;
        border-top: 1px solid var(--light-grey);
        border-left: 1px solid var(--light-grey);
        left: 25px;
    }
}



@media (max-width: 991px) {
    .main_nav #hamburger {
        display: block;
    }

    /* .main_nav .menu_container {
        padding: 1.2rem;
    } */

    .main_nav .menu {
        display: none;
        position: absolute;
        top: 71px;
        left: 0;
        min-height: 100vh;
        width: 100vw;
    }

    .main_nav .menu-bar li:first-child ul:nth-child(1) {
        border-right: none;
        border-bottom: var(--border);
    }

    .main_nav .dropdown {
        display: none;
        min-width: 100%;
        border: none !important;
        border-radius: 5px;
        position: static;
        top: 0;
        left: 0;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
    }

    .main_nav .menu.show,
    .main_nav .dropdown.active {
        display: block;
    }

    .main_nav .dropdown ul {
        padding-left: 0.3rem;
    }

    .main_nav .menu-bar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        row-gap: 1rem;
        padding: 1rem;
    }

    .main_nav .menu-bar .nav-link {
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-weight: 600;
        font-size: 1.2rem;
        margin: 0;
    }

    .main_nav .menu-bar li:first-child .dropdown {
        min-width: 100%;
    }

    .main_nav .menu-bar&gt;li:not(:last-child) {
        padding-bottom: 0.5rem;
        border-bottom: var(--border);
    }

    .settingsCard ul {
        right: 40px;
    }
}

@media (max-width: 600px) {
    .main_nav .right-container .search {
        display: none;
    }
}

/* ============== Navbar End ================ */


/* ============= Home Page CSS ============= */

.blog_card {
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--light-grey);
    margin: 15px 0;
}

.blog_card img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    object-position: top;
}

.card__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.blog_card .tag a {
    align-self: flex-start;
    padding: .25em .75em;
    border-radius: 1em;
    font-size: .75rem;
    background: var(--primary-color);
    color: var(--white);
}

.blog_card .card__body h3 {
    font-size: 1.25rem;
    text-transform: capitalize;
    font-weight: 600;
}

.featuredCard h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog_card .card__body h3 a {
    color: var(--dark-grey);
}

.blog_card .card__body h3 a:hover {
    color: var(--primary-color);
}

.blog_card .card__body p {
    line-height: 1.35em;
}

.blog_card .card__footer {
    display: flex;
    padding: 1rem;
    margin-top: auto;
}

.blog_card_two .card__footer {
    padding: 0 25px 25px 0;
}

.blog_card .user {
    display: flex;
    gap: .5rem;
}

.blog_card .user img {
    aspect-ratio: 1/1;
    width: 40px;
    border-radius: 100%;
}

.user__image {
    border-radius: 50%;
}

.blog_card .user__info&gt;small {
    color: var(--medium-grey);
}

.user__info h5 a {
    color: var(--dark-grey);
}

.section_header {
    margin-bottom: 10px;
}

.section_header h2 {
    font-size: 2rem;
    font-weight: 700;
}

.section_header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.blog_card_two {
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--light-grey);
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.blog_card_two .card__header {
    /* width: 45%;
    min-width: 45%; */
    height: 100%;
    min-height: 100%;
}

.blog_card_two .card__header img {
    width: 100%;
    /* aspect-ratio: 16/9; */
    float: left;
    border-radius: 10px 0 0 10px;
    object-fit: cover;
    object-position: top;
    height: 100%;
    min-height: 200px;
}

.blog_card_two .card__body {
    padding: 25px 25px 25px 0;
}



.side_block {
    margin-bottom: 20px;
}

.side_block h3 {
    font-size: 1.25rem !important;
}

.footer {
    padding: 70px 0 50px;
    background-color: var(--white);
    border-top: 1px solid var(--light-grey);
}

.single_footer h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.single_footer ul li {
    list-style: none;
    margin: 15px 0;
    padding-left: 15px;
    position: relative;
    font-size: 15px;
    font-weight: 500;
}

.single_footer ul li::before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: var(--primary-color);
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 6px;
}

.single_footer ul li a {
    color: var(--dark-grey);
}

.single_footer ul li a:hover {
    color: var(--primary-color);
}

.social_profile ul li {
    display: inline-flex;
    padding: 10px;
    background-color: var(--primary-color);
    aspect-ratio: 1/1;
    border-radius: 5px;
    margin-right: 6px;
}

.single_footer p {
    line-height: 1.5em;
}

.social_profile ul li a {
    color: var(--white);
    font-size: 18px;
}

.footer_intro {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.footer_intro h3 {
    font-size: 1.35rem;
}

.footer_intro img {
    width: 40px;
    margin-right: 10px;
}

p.copyright {
    color: var(--medium-grey);
    font-size: 14px;
}

/* ============= Home Page End ============= */

/* =========== Article Page ============ */

.article_page {
    padding: 40px 0 0;
    background-color: #f1f1f1;
}

.greyBg {
    background-color: #f1f1f1;
}

.article_data {
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    padding: 35px 25px;
    border-radius: 0 0 10px 10px;
}

.article_banner {
    margin-bottom: -5px;
}

.article_banner img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: top;
    border: 1px solid var(--light-grey);
    border-bottom: none;
}

.article_meta {
    margin-bottom: 30px;
}

.article_meta h1 {
    font-size: 1.75rem;
    margin: 10px 0 20px;
}

.article_meta span a {
    padding: 0.25em 0.75em;
    border-radius: 1em;
    font-size: .75rem;
    background: var(--primary-color);
    color: var(--white);
}

.article_user {
    display: flex;
    align-items: center;
}

.article_user img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-right: 10px;
}

.article_user h5 a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-grey);
}

.article_user span {
    font-size: 12px;
    color: var(--medium-grey);
}

.post_content {
    margin-top: 30px;
}

.post_content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 30px 0 15px;
}

.post_content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 30px 0 15px;
}

.post_content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px;
}

.profilePost h3 {
    line-height: 20px;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.profilePost h3 a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-grey);
}

.profilePost h3 a:hover {
    color: var(--primary-color);
}

.profilePost img {
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
}

.post_content h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 30px 0 15px;
}

.post_content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 30px 0 15px;
}

.post_content h6 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 30px 0 15px;
}

.post_content h2 strong {
    font-weight: inherit;
}

.post_content h3 strong {
    font-weight: inherit;
}

.post_content h4 strong {
    font-weight: inherit;
}

.post_content ul {
    padding-left: 18px;
    margin: 25px 0;
}

.post_content ol {
    padding-left: 18px;
    margin: 25px 0;
}

.post_content li {
    font-size: 18px;
    line-height: 30px;
    margin: 7px 0;
}

.post_content p {
    font-size: 18px;
    line-height: 30px;
    margin: 10px 0 15px;
}

.post_content p strong {
    font-weight: 600 !important;
}

.post_content img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border: 1px solid var(--light-grey);
}

.post_content iframe {
    max-width: 100%;
}


.post_content td {
    border: 1px solid #dddddd;
    padding: 10px;
}

.table_of_content ul li {
    margin: 0;
}

.table_of_content ul {
    margin-top: 0 !important;
}

.post_content a {
    color: var(--primary-color);
}

.post_content .table {
    width: 100%;
    overflow-x: auto;
}

.post_content .table table {
    border-collapse: collapse;
    margin: 20px 0;
    overflow: auto;
}

.article_sidebar {
    padding: 25px;
    border-radius: 10px;
    background-color: var(--white);
    border: 1px solid var(--light-grey);
}

.article_sidebar h4 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.article_sidebar ul {
    padding-left: 0;
}

.article_sidebar ul li {
    list-style: none;
    margin: 25px 0 0 0;
    padding-left: 20px;
    position: relative;
}

.article_sidebar ul li a {
    font-size: 18px;
    color: var(--dark-grey);
}

.article_sidebar ul li a:hover {
    color: var(--primary-color);
}

.article_sidebar ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background-color: var(--primary-color);
    position: absolute;
    top: 7px;
    left: 0;
}

.timeline_banner {
    padding: 15px 25px;
}

.single_comp {
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    padding: 25px;
    border-radius: 10px;
    margin-top: 15px;
}

.single_comp h3 {
    margin-top: 20px;
}

.single_comp .post_content {
    margin-top: 20px;
}

.single_comp .post_content p {
    margin-bottom: 0;
}

/* ----------  */

.paginator ul.pagination li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 5px;
    position: relative;
    font-weight: 600;
    font-size: 12px;
    position: relative;
}

.paginator ul.pagination li a {
    color: var(--dark-grey);
    font-size: 16px;
}

.paginator ul.pagination li:hover {
    background-color: var(--primary-color);
}

.paginator ul.pagination li:hover a {
    color: var(--white);
}

.paginator ul.pagination li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.paginator li.page-item.active {
    background-color: var(--primary-color);
    color: #fff;
}

.paginator li.page-item.active {
    font-size: 16px !important;
}


/* ============ Dropzone CSS ============ */

#picture__input {
    display: none;
}

.picture {
    width: 100%;
    height: 155px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-grey);
    border-radius: 5px;
    border: 2px dashed currentcolor;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    text-align: center;
}

.picture__img {
    max-width: 100%;
    object-fit: cover;
}

.post_form input[type="text"] {
    padding: 13px;
    width: 100%;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    outline: none;
}

.post_form textarea {
    padding: 13px;
    min-width: 100%;
    max-width: 100%;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    outline: none;
    min-height: 100px;
    max-height: 100px;
    margin-top: 12px;
}

button.post_btn {
    display: block;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    border: none;
    margin-top: 7px;
    display: block;
    margin-left: auto;
}

.alert-success {
    padding: 10px;
    background-color: var(--primary-color);
    margin-bottom: 10px;
    border-radius: 5px;
    color: var(--white);
}

.alert-danger {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #ffcdcd;
    color: var(--dark-grey);
}

/* ============ Dropzone End ============ */


/* =========== Login Form CSS ============ */

div#img-preview img {
    width: 70px;
    height: 70px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 100px;
}

.login_form {
    padding: 35px;
    border-radius: 10px;
    border: 1px solid var(--light-grey);
    background-color: var(--white);
}

.login_form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.login_form input {
    padding: 13px;
    width: 100%;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    outline: none;
    margin-bottom: 10px;
}

.login_form textarea {
    padding: 13px;
    min-width: 100%;
    max-width: 100%;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    outline: none;
    min-height: 100px;
    max-height: 100px;
    margin-top: 12px;
}

.login_form a {
    color: var(--primary-color);
}

.text-danger {
    color: red;
    display: inline-block;
    margin-bottom: 5px;
}

span.tagDate {
    align-self: flex-start;
    padding: 0.25em 0.75em;
    border-radius: 1em;
    font-size: .75rem;
    background: var(--primary-color);
    color: var(--white);
}

/* ====== BioForm ===== */

.bioForm textarea {
    padding: 13px;
    min-width: 100%;
    max-width: 100%;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    outline: none;
    min-height: 100px;
    max-height: 100px;
    margin-top: 10px;
    font-size: 16px;
    background-color: var(--white);
}

.bioForm select {
    padding: 8px 13px;
    min-width: 100%;
    max-width: 100%;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    outline: none;
    margin-top: 10px;
    font-size: 16px;
    background-color: var(--white);
}

.bioForm h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.bioForm h4 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
}

.bioOutPut {
    background-color: var(--white);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    position: relative;
    margin: 20px 0 0;
}

.bioOutPut button {
    position: absolute;
    right: 10px;
    bottom: 7px;
    font-size: 20px;
}

.bioOutPut p {
    white-space: pre-wrap;
    line-height: 1.75em;
}

.copy-btn {
    cursor: pointer;
    border: none;
    background: transparent;
    font-size: 18px;
    color: #007bff;
    margin-top: 10px;
}

.copy-btn:hover {
    color: #0056b3;
}

.bioText {
    white-space: pre-wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e3e3e3;
    line-height: 1.75em;
}

.singleOutPut {
    padding: 0;
    border: none;
}

.pageContent {
    margin: 10px 0;
}

.pageContent p {
    line-height: 1.5em;
    margin-bottom: 10px;
}

/* ====== New Home CSS ======= */

.homeBanner {
    padding: 70px 0;
    background: #C9D6FF;
    background: -webkit-linear-gradient(to right, #ffe2e2, #eaefff);
    background: linear-gradient(to right, #ffe2e2, #eaefff);
}

.homeBannerTxt span {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

.homeBannerTxt h1 {
    font-size: 2.5rem;
    margin: 5px 0;
}

.homeBannerTxt p {
    font-size: 1.15rem;
    line-height: 1.5em;
    color: var(--dark-grey);
}

.homeBannerTxt button {
    margin-left: 0;
    margin-top: 20px;
}

.homeBannerImg img {
    width: 80%;
    display: block;
    margin-left: auto;
}

.trustedStrip {
    margin-top: -20px;
    padding-bottom: 50px;
}

.trustedMatrxi {
    background-color: var(--dark-grey);
    display: inline-block;
    margin: 0 auto;
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.trustedBrands {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.trustedBrands img {
    width: 170px;
    filter: grayscale();

}

.trustedBrands img:hover {
    filter: none;
}

.useCases {
    padding: 70px 0;
    background-color: var(--primary-color);
}

.userCaseHeading {
    text-align: center;
    color: var(--white);
}

.userCaseHeading span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.userCaseHeading h2 {
    font-size: 2rem;
    margin-top: 10px;
}

.supportPlatform {
    display: inline-flex;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
    background-color: var(--white);
    border-radius: 50px;
    padding: 10px 20px;
}

.supportPlatform i {
    font-size: 30px;
    margin: 0 10px;
}

.useCases img {
    width: 90%;
    display: block;
    margin: 40px auto 0;
}

.sectionPadding {
    padding: 70px 0;
}

.toolfeatures img {
    width: 100%;
}

.toolfeatures h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.featuresList {
    padding-left: 30px;
    position: relative;
    margin: 20px 0;
}

.featuresList h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.featuresList p {
    font-size: 15px;
    line-height: 1.5em;
}

.featuresList::before {
    content: "\ee3d";
    font-family: boxicons !important;
    font-weight: 400;
    line-height: 1;
    position: absolute;
    font-size: 24px;
    top: 2px;
    left: 0;
    color: var(--primary-color);
}

.callToAction {
    position: relative;
    padding: 100px 0;
    /* border-top: 1px solid var(--light-grey); */
    overflow-x: hidden;
}

.callJumbo {
    padding: 100px 15px;
    text-align: center;
    border-radius: 30px;
    background: #C9D6FF;
    background: -webkit-linear-gradient(to left, #ffe2e2, #eaefff);
    background: linear-gradient(to left, #ffe2e2, #eaefff);
}

.callJumbo button {
    margin: 20px auto 0;
    font-size: 18px;
    font-weight: 500;
}

.callJumbo h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.callJumbo p {
    font-size: 1.1rem;
    line-height: 1.5em;
}

.patternTwo {
    display: block;
    margin-left: auto;
    margin-right: -50px;
    margin-bottom: -50px;
}

.patternOne {
    margin-left: -50px;
    margin-top: -50px;
}

.toolDiv {
    background: #C9D6FF;
    background: -webkit-linear-gradient(to right, #ffe2e2, #eaefff);
    background: linear-gradient(to right, #ffe2e2, #eaefff);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.brandAwareness {
    background: #C9D6FF;
    background: -webkit-linear-gradient(to right, #ffe2e2, #eaefff);
    background: linear-gradient(to right, #ffe2e2, #eaefff);
    padding: 50px 0;
}

.brandAwareness h4 {
    font-size: 2rem;
}

.brandAwareness p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.5em;
}

.brandAwareness button {
    margin-left: 0;
    font-weight: 500;
}

a.bioPageLink {
    color: var(--primary-color);
}

a.bioPageLink:hover {
    color: var(--dark-grey);
}

span.loopIteration {
    background-color: var(--primary-color);
    color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    width: 25px;
    height: 25px;
    border-radius: 100px;

}

@media(max-width:991px) {
    .homeBannerTxt h1 {
        font-size: 1.75rem;
    }

    .trustedBrands img {
        width: 150px;
    }

    .userCaseHeading h2 {
        font-size: 1.5rem;
    }

    .toolfeatures h3 {
        font-size: 1.5rem;
    }

    .callJumbo h3 {
        font-size: 1.5rem;
    }

    .section_header h2 {
        font-size: 1.5rem;
    }

    .brandAwareness h4 {
        font-size: 1.75rem;
    }

    .bioForm h3 {
        font-size: 1.75rem;
    }

    .main_nav #hamburger {
        margin-left: 5px;
    }

    .main_nav #hamburger i {
        margin-top: 8px;
    }
}

@media(max-width: 767px) {
    .blog_card_two .card__header img {
        border-radius: 10px 10px 0 0;
        aspect-ratio: 4/2;
        object-fit: cover;
        object-position: top;
    }

    .blog_card_two .card__body {
        padding: 20px;
    }

    .card__footer {
        padding: 0 20px 20px 20px !important;
    }

    .blog_card .card__body h3 {
        font-size: 1.25rem;
    }

    .homeBanner {
        padding: 70px 0 100px;
    }

    .homeBannerImg img {
        width: 90%;
        margin: 30px auto 0;
    }

    .callJumbo {
        padding: 50px 15px;
        margin: 30px 0;
    }

    .single_footer h4 {
        font-size: 1.15rem;
        margin-bottom: 10px;
        margin-top: 10px;
    }
}</pre></body></html>