@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --white: #ffffff;
    --black: #191919;
    --primary: #6253dc;
    --light-text: #6c6c6c;
    --line-grey: #e3e3e3;
    --bg-grey: #f1f1f1;
    --bg-blue: #f0f2ff;
}

a {
    text-decoration: none;
    cursor: pointer;
}

p {
    color: var(--black);
    line-height: 25px;
}

h1,
h2,
h3,
h4 {
    color: var(--black);
}

button,
a {
    cursor: pointer;
}

/* -------- Responsive CSS ---------- */
.container {
    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 {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        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>* {
    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
}

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

@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
    }

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

@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%;
    }

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

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

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

.justify-content-center {
    justify-content: center !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-right {
    text-align: right;
}

/* -------- Responsive CSS End ---------- */
/* =========== Menu CSS =========== */
.apcMenu {
    top: 0;
    z-index: 1000;
}

.apcMenu button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.apcMenu .nav {
    background: var(--white);
    border-bottom: 1px solid var(--line-grey);
}

.apcMenu .bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    gap: 12px;
}

.apcMenu .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.apcMenu .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--black);
}

.apcMenu .logo-mark {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    background: var(--primary);
    display: inline-grid;
    place-items: center;
    color: var(--white);
    font-size: 20px;
}

.apcMenu .logoText {
    font-size: 20px;
}

.apcMenu .nav-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
}

.apcMenu .menu-shell {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.apcMenu .menu {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 3px;
    list-style: none;
    margin: 0;
}

.apcMenu .menu>li {
    position: relative;
}

.apcMenu .menu a,
.apcMenu .menu button.menu-btn {
    padding: 9px 12px;
    border-radius: 25px;
    font-weight: 500;
    color: var(--black);
    background: var(--white);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.apcMenu .menu a:hover,
.apcMenu .menu button.menu-btn:hover,
.apcMenu .menu a:focus-visible,
.apcMenu .menu button.menu-btn:focus-visible {
    outline: none;
    background: var(--primary);
    color: var(--white);
}

.apcMenu .actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.apcMenu .btn {
    padding: 10px 20px 11px;
    border-radius: 25px;
    white-space: nowrap;
    background: var(--primary);
    color: var(--white);
}

.apcMenu .btn.primary:hover,
.apcMenu .btn.primary:focus-visible {
    filter: brightness(.95);
}

.apcMenu .dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--line-grey);
    padding: 8px;
    display: none;
    z-index: 9;
}

.apcMenu .dropdown.open {
    display: block;
}

.apcMenu .dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 25px;
    color: var(--black);
    margin: 2px 0;
}

.apcMenu .dropdown a:hover,
.apcMenu .dropdown a:focus-visible {
    outline: none;
}

.apcMenu .mega {
    position: absolute;
    left: 0;
    top: 65px;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--line-grey);
    border-bottom: 1px solid var(--line-grey);
    display: none;
    z-index: 9;
}

.apcMenu .mega.open {
    display: block;
}

.apcMenu .mega-inner {
    margin: 0 auto;
    padding: 20px 12px 28px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
}

.apcMenu .mega-tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-right: 1px solid var(--line-grey);
    padding-right: 12px;
}

.apcMenu .mega-tabs button {
    text-align: left;
    padding: 10px 12px;
    border-radius: 25px;
    color: var(--black);
    background: var(--white);
}

.apcMenu .mega-tabs button[aria-selected="true"] {
    background: var(--primary);
    color: var(--white);
}

.apcMenu .mega-panel {
    display: none;
}

.apcMenu .mega-panel[aria-hidden="false"] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.apcMenu .mega-card {
    border: 1px solid var(--line-grey);
    border-radius: 3px;
    padding: 14px;
    color: var(--black);
}

.apcMenu .mega-card h4 {
    margin: 0 0 6px;
    font-size: 14px;
}

.apcMenu .mega-card p {
    margin: 0;
    color: var(--light-text);
    font-size: 13px;
}

.apcMenu .profile {
    position: relative;
}

.apcMenu .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-grid;
    place-items: center;
    color: var(--white);
    font-weight: 600;
}

.apcMenu .profile-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--line-grey);
    padding: 8px;
    display: none;
    z-index: 9;
}

.apcMenu .profile-menu.open {
    display: block;
}

.apcMenu .profile-menu a {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 25px;
    color: var(--black);
    width: 100%;
}

.apcMenu .profile-menu a:hover,
.apcMenu .profile-menu a:focus-visible {
    background: var(--primary);
    outline: none;
    color: var(--white);
}

.apcMenu .nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.apcMenu .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 3px;
}

body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .apcMenu .nav-toggle {
        display: inline-flex;
    }

    .apcMenu .nav-collapse {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        background: var(--white);
        padding: .75rem;
        transform: translateX(1000%);
        overflow-y: auto;
        z-index: 9;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .nav-collapse {
        transform: translateX(0);
    }

    .apcMenu .menu-shell {
        width: 100%;
        justify-content: flex-start;
        border-bottom: 1px solid var(--line-grey);
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .apcMenu .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 0;
        width: 100%;
    }

    .apcMenu .menu>li {
        width: 100%;
    }

    .apcMenu .menu a,
    .apcMenu .menu button.menu-btn {
        justify-content: space-between;
        width: 100%;
        padding: 12px 15px;
    }

    .apcMenu .actions {
        width: 100%;
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 12px;
    }

    .apcMenu .dropdown {
        position: static;
        border: none;
        padding: 10px 0 0 0;
        transform: none;
        min-width: unset;
        display: none;
    }

    .apcMenu .dropdown.open {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .apcMenu #exploreBtn {
        display: none;
    }

    .apcMenu #megaExplore {
        display: none !important;
    }

    .apcMenu .profile-menu {
        position: static;
        border: none;
        padding: 10px 0 0 0;
        transform: none;
        min-width: unset;
    }

    .apcMenu .profile-menu a {
        padding: 10px 15px;
    }
}

.menu-btn[aria-expanded="true"] {
    background: var(--primary) !important;
    color: var(--white) !important;
}

/* =========== Menu CSS End ============= */
/* ------------------ Hero Banner Area --------------- */
.sectionPadding {
    padding: 60px 0;
}

.hero_banner {
    padding: 60px 0px;
    background-color: var(--bg-blue);
}

.newHero {
    padding: 100px 0;
    background-color: #010a25;
    background-image: url('/img/main/line-bg.png');
    background-size: 1000px;
    background-position: top;
    background-repeat: no-repeat;
}

.newHeroText {
    text-align: center;
}

.newHeroText h1 {
    font-size: 3rem;
    line-height: 1em;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 600;
}

.newHeroText h1 span {
    color: var(--primary);
}

.newHeroText h2 {
    font-size: 20px;
    font-weight: 400;
    color: var(--bg-grey);
    line-height: 1.25em;
}

.newHeroText p {
    display: inline-block;
    margin-top: 30px;
    text-align: center;
    background-color: #242447b3;
    padding: 5px 20px;
    border-radius: 25px;
    font-size: 14px;
    backdrop-filter: blur(5px);
    color: var(--bg-grey);
    border: 1px solid #363c5cbd;
}

button.site_button {
    padding: 13px 25px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    margin-top: 20px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 500;
}

.banner_img img {
    width: 100%;
}

/* -------------------- */
.about_text h3 {
    font-size: 2rem;
}

.about_text p {
    margin-top: 15px;
}

.about_text ul {
    padding-left: 18px;
    margin-top: 15px;
}

.about_text ul li {
    margin: 10px 0;
    color: var(--black);
}

.section_heading {
    margin-bottom: 30px;
    text-align: center;
}

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

.section_heading p {
    font-size: 16px;
}

/* -------------- Footer CSS Start -------------- */
.footer {
    padding: 60px 0 0 0;
    background-color: #010a25;
    background-image: url(/img/main/line-bg.png);
    background-size: 1000px;
    background-position: top;
    background-repeat: no-repeat;
}

.footer_links h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer_links h3::after {
    content: "";
    display: block;
    height: 2px;
    width: 75px;
    background: var(--line-grey);
    margin-top: 15px;
}

.footer_links li {
    list-style: none;
    margin: 20px 0 0 0;
}

.footer_links a {
    color: var(--line-grey);
    font-size: 15px;
    font-weight: 300;
}

.footer_links a:hover {
    color: var(--white);
}

.footerLogo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.footerLogo .logo-mark {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    background: var(--white);
    display: inline-grid;
    place-items: center;
    color: var(--primary);
    font-size: 20px;
}

.footerLogo .logoText {
    font-size: 20px;
}

.footer_comp p {
    color: var(--bg-grey);
    margin-bottom: 20px;
}

.footer_social {
    display: flex;
    margin-bottom: 20px;
}

.footer_social li {
    padding: 5px;
    background-color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    border-radius: 25px;
    margin-top: 12px;
    aspect-ratio: 1/1;
}

.footer_social a {
    color: var(--black);
    font-size: 18px;
}

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

.subscribe {
    margin-top: 25px;
}

.subscribe input {
    width: 100% !important;
    border-radius: 3px;
    background-color: var(--white);
}

.footer_credit {
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    color: var(--line-grey);
    font-weight: 300;
    border-top: 1px dashed var(--line-grey);
    margin: 40px 0 0;
}

.footer_links p {
    color: var(--line-grey);
    font-size: 15px;
}

/* -------------- Footer CSS End -------------- */
.blog_section {
    padding: 70px 0;
    background-color: var(--bg-blue);
}

.commment_area {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line-grey);
}

.sideBlog {
    position: sticky;
    top: 0;
    padding-bottom: 50px;
}

.blog_heading {
    padding-top: 2.5rem;
}

.blog_heading h3 {
    font-size: 1.5rem;
    font-weight: 600;
    padding-left: 10px;
    border-left: 4px solid var(--primary);
}

.article_card {
    height: 100%;
    padding: 15px;
    border-radius: 7px;
    background-color: var(--white);
    border: 1px solid var(--line-grey);
}

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

.article_card h3 {
    margin: 15px 0;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--black);
}

.article_card span {
    font-size: 12px;
    color: var(--light-text);
}

.article_card span a {
    color: var(--primary);
    font-weight: 500;
}

.cta_box {
    padding: 70px 0 70px;
}

.jumbo_cta {
    padding: 50px;
    border-radius: 20px;
    position: relative;
    margin-top: 50px;
    background-color: #3d319f;
    background: -webkit-linear-gradient(to right, #0b0249 0%, #3d319f 100%);
    background: linear-gradient(to right, #0b0249 0%, #3d319f 100%);
}

.jumbo_text h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 10px;
}

.jumbo_text p {
    color: var(--white);
}

.jumbo_image img {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 400px;
}

/* ------------------------ */
.explore_companies {
    padding: 30px 0;
}

.company_home_card {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--line-grey);
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
}

.softwareCategory {
    font-size: 14px;
    color: var(--light-text);
}

.company_home_card img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
    border-radius: 5px;
    object-fit: contain;
    object-position: center;
}

.company_home_card h3 a {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.company_home_card h3 a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.company_home_card span {
    font-size: 14px;
    color: var(--light-text);
}

/* ------------------- Liting Page CSS -------------------- */

.head_section_padding {
    padding: 40px 0;
}

.listing_page_content h1 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--black);
}

.listing_page_content h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.listing_page_content p {
    line-height: 1.75em;
}

.new_listing_page {
    padding: 40px 0;
    background-color: var(--bg-grey);
    overflow: hidden;
}

.new_listing_page h2 {
    font-size: 1.5rem;
    font-weight: 500;
}

.new_list_item {
    padding: 25px;
    border-radius: 7px;
    background-color: var(--white);
    border: 1px solid var(--line-grey);
    margin-top: 20px;
    position: relative;
}

.new_list_meta {
    display: flex;
}

.new_list_meta img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    object-fit: contain;
    border-radius: 5px;
    border: 1px solid var(--line-grey);
}

.new_list_meta h3 {
    font-size: 1.25rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.new_list_meta span {
    color: var(--light-text);
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.new_list_meta h3 a {
    color: var(--black);
}

.new_list_reviews {
    margin-top: 5px;
}

.new_list_reviews i {
    color: var(--primary);
    font-size: 14px;
}

.new_list_reviews span {
    color: var(--primary);
    font-weight: 500;
    display: inline;
    font-size: 14px;
}

.new_list_content {
    margin: 15px 0;
}

.new_service_list h4 {
    margin-top: 25px;
    font-size: 18px;
}

.new_service_list span {
    padding: 7px 15px;
    background-color: var(--bg-grey);
    border-radius: 25px;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.new_listing_sidebar {
    padding: 15px;
    border-left: 1px solid var(--line-grey);
    height: 100%;
    overflow: hidden;
}

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

.list_side_icons:not(:last-child) {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line-grey);
    padding-bottom: 20px;
}

.list_side_icons i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: var(--white);
    margin-right: 15px;
    aspect-ratio: 1/1;
}

.list_side_icons a i {
    background-color: inherit;
    display: inherit;
    color: var(--black);
    margin-right: 5px;
    font-size: 18px;
}

.list_side_icons a i:hover {
    color: #f78727;
}

.list_side_icons p {
    font-size: 14px;
    font-weight: 400;
    color: var(--light-text);
    line-height: 1.5em;
}

.list_side_icons span {
    font-weight: 500;
    font-size: 16px;
    color: var(--black);
}

.new_list_review {
    padding: 15px 0 0 0;
    margin-top: 20px;
    border-top: 1px solid var(--line-grey);
}

.new_list_review h5 {
    font-size: 16px;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}

.new_list_review p {
    font-style: italic;
}

.service_gp_chart h4 {
    margin-top: 20px;
    font-size: 18px;
}

.service_gp_chart p {
    margin-bottom: 10px;
    font-size: 14px;
}

.stacked_chart {
    display: flex;
}

.stacked_chart div {
    height: 45px;
    background-color: #8cb0ea;
    display: flex;
    border-right: 1px solid var(--white);
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    position: relative;
    cursor: pointer;
}

.stacked_bar .tooltiptext {
    visibility: hidden;
    background-color: var(--white);
    color: #943434;
    text-align: center;
    border-radius: 25px;
    padding: 5px 15px;
    position: absolute;
    z-index: 8;
    top: -45px;
    font-size: 14px;
    box-shadow: 0 0px 5px 0 var(--black)2e;
    width: max-content;
    font-weight: 400;
}

.tooltiptext:before {
    content: '';
    width: 3px;
    border-left: 1px solid #a0a0a0;
    transform: translateX(50%);
    position: absolute;
    left: 50%;
    z-index: 0;
    top: 27px;
    height: 18px;
}

.stacked_bar:hover .tooltiptext {
    visibility: visible;
}

.stacked_bar:nth-child(1) {
    background-color: var(--black);
}

.stacked_bar:nth-child(2) {
    background-color: #7cddd4;
}

.stacked_bar:nth-child(3) {
    background-color: #efc444;
}

.stacked_bar:nth-child(4) {
    background-color: #52ca85;
}

.stacked_bar:nth-child(5) {
    background-color: #2aaad0;
}

.stacked_bar:nth-child(6) {
    background-color: #d44e2f;
}

.stacked_bar:nth-child(7) {
    background-color: #6a52ce;
}

.stacked_bar:nth-child(8) {
    background-color: #237b29;
}

.stacked_bar:nth-child(9) {
    background-color: #f78727;
}

.stacked_bar:nth-child(10) {
    background-color: #334d5c;
}

.stacked_bar:nth-child(11) {
    background-color: #7cddd4;
}

.stacked_bar:nth-child(12) {
    background-color: #efc444;
}

.stacked_bar:nth-child(13) {
    background-color: #52ca85;
}

.stacked_bar:nth-child(14) {
    background-color: #2aaad0;
}

.stacked_bar:nth-child(15) {
    background-color: #d44e2f;
}

.stacked_bar:nth-child(16) {
    background-color: #6a52ce;
}

.stacked_bar:nth-child(17) {
    background-color: #237b29;
}

.stacked_bar:nth-child(18) {
    background-color: #f78727;
}

.stacked_bar:nth-child(19) {
    background-color: #334d5c;
}

.stacked_bar:nth-child(20) {
    background-color: #7cddd4;
}

.service_gp_chart .stacked_chart div {
    height: 25px;
}

.service_list_chart {
    margin: 15px 0;
}

.software_feat {
    padding: 30px 0 10px;
    border-top: 1px solid var(--line-grey);
}

.colored_list {
    margin: 15px 0px 0px;
    display: inline-flex;
    width: 48%;
    position: relative;
    padding-left: 20px;
}

.colored_list:before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary);
}

.service_focus_container {
    margin-top: 35px;
    border-top: 1px solid var(--line-grey);
    padding-top: 25px;
}

.service_focus_container h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

.service_focus_container .service_list_chart {
    margin-top: 0;
}

/* ------------ */
.table_listing_outer {
    margin-top: 20px;
    border-radius: 10px;
    overflow: auto;
    overflow-y: hidden;
}

table.table_listing {
    width: 100%;
    border: 1px solid var(--line-grey);
    border-radius: 15px;
}

.table_listing th {
    text-align: left;
    padding: 15px;
    background-color: var(--black);
    color: var(--white);
}

.table_listing td {
    text-align: left;
    padding: 15px;
}

.table_listing tr {
    width: 100%;
    white-space: nowrap;
}

.table_listing img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 5px;
    float: left;
}

.table_listing tr:nth-child(even) {
    background-color: #eaf6ff;
}

.table_listing tr th:first-child {
    border-radius: 10px 0 0 0;
}

.table_listing tr th:last-child {
    border-radius: 0 10px 0 0;
}

.table_listing tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

.table_listing tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

.table_listing td a {
    color: var(--black);
    font-weight: 500;
}

/* ------------------ Listing Page CSS Ended ----------------- */
/* ---------------- Company Page CSS --------------- */
.new_com_page {
    padding: 30px 0 30px;
    border-bottom: 1px solid var(--line-grey);
    background-color: var(--bg-grey);
}

.company_breadcrumb {
    margin-bottom: 30px;
}

.company_breadcrumb span {
    color: var(--light-text);
    font-size: 14px;
}

.company_breadcrumb span a {
    color: var(--black);
}

.new_list_meta.new_com_meta h1 {
    font-size: 1.5rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    color: var(--black);
}

.new_list_meta.new_com_meta h1 a {
    color: var(--black);
}

.new_list_meta.new_com_meta h1 a i {
    font-size: 1.25rem;
}

.new_list_meta.new_com_meta h1 a:hover {
    color: var(--primary);
}

.sticky_bar {
    position: sticky;
    top: -1px;
    background-color: var(--white);
    border-top: 1px solid var(--line-grey);
    border-bottom: 1px solid var(--line-grey);
    z-index: 8;
}

#nav-menu {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

#nav-menu ul {
    display: flex;
}

#nav-menu ul li {
    padding: 15px 0;
    list-style: none;
}

#nav-menu ul li a {
    font-size: 16px;
    color: var(--black);
    padding: 15px;
    font-weight: 500;
    border-left: 1px solid var(--line-grey);
    white-space: nowrap;
}

#nav-menu ul li:last-child a {
    border-right: 1px solid var(--line-grey);
}

#nav-menu ul li a i {
    margin-right: 7px;
}

#nav-menu ul li a:hover {
    color: var(--white) !important;
    background-color: var(--primary);
}

.active_tab {
    /* border-bottom: 3px solid var(--primary); */
    color: var(--white) !important;
    background-color: var(--primary);
}

.comp_margin {
    padding: 30px 0;
}

.overview_content h3 {
    font-size: 1.35rem;
    font-weight: 500;
}

.overview_content p {
    margin-top: 10px;
    margin-bottom: 15px;
}

.overview_content ul {
    padding-left: 18px;
    margin: 15px 0;
}

.overview_content ol {
    padding-left: 18px;
    margin: 15px 0;
}

.overview_content li {
    color: var(--black);
    line-height: 1.7em;
}

.extra_content {
    margin-top: 10px;
    font-size: 16px;
    color: var(--black);
    line-height: 25px;
}

figure.table {
    overflow-x: auto;
}

.outer_rating {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    border-radius: 3px;
    background-color: var(--line-grey);
    margin-bottom: 25px;
}

.inner_rating {
    background: var(--primary);
    height: 100%;
    border-radius: 3px;
    padding: 7px 10px;
    align-items: center;
    display: inline-block;
    color: var(--white);
}

.inner_rating span strong {
    line-height: 1;
}

.rating_graph h3 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
}

.text_right button.service_pills {
    margin: 0;
}

.inner_rating span strong {
    font-size: 20px;
    line-height: 0
}

.comp_social {
    display: flex;
    justify-content: right;
}

.comp_social i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: var(--white);
    aspect-ratio: 1/1;
    margin-left: 10px;
}

.comp_social i:hover {
    background-color: var(--black);
}

section#services {
    overflow: hidden;
}

.comp_services h3 {
    font-size: 1.35rem;
    font-weight: 500;
}

.industry_chart h3 {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.industry_chart {
    width: 60% !important;
    display: block;
    margin: 0 auto;
    text-align: center;
}

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

/* -------------- Reviews ------------- */
.review_outer {
    background-color: #fcfcfc;
    margin-bottom: 25px;
    border: 1px solid var(--line-grey);
    border-radius: 10px;
}

.ratings {
    border-left: 1px solid var(--line-grey);
    padding: 30px;
    height: 100%;
}

.feedback_area {
    padding: 30px;
}

.reviewer {
    display: flex;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    object-fit: cover;
    object-position: top;
    margin-right: 10px;
}

.reviewer h3 {
    font-size: 18px;
}

.reviewer h3 a {
    color: var(--black);
}

.reviewer span {
    color: #606060;
    font-size: 15px;
}

.reviewer span a {
    color: var(--primary);
    font-weight: 600;
}

.review_text h3 {
    font-size: 16px;
    margin: 20px 0 5px;
    font-weight: 600;
    color: var(--black);
}

.review_text p {
    color: var(--black);
    line-height: 1.7em;
    font-size: 15px;
}

.ratings h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 5px;
}

.rating_star_count {
    margin-bottom: 10px;
}

.rating_star_count span {
    color: var(--primary);
    font-size: 14px;
    letter-spacing: -2px;
}

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

.reviews_icon {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 10px 5px 0;
    border-radius: 3px;
}

.review_stats i {
    color: rgb(97, 97, 97);
}

.review_comp_title h3 {
    font-size: 1.35rem;
    font-weight: 500;
}

.review_comp_title button {
    margin-top: 0;
}

/* ------------- accordion ------------ */
.new_comp_acc ul.accordion-list {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    list-style: none;
    margin-top: 25px;
}

.new_comp_acc ul.accordion-list li {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background-color: var(--white);
    padding: 20px;
    margin: 0 auto 15px auto;
    border: 1px solid var(--line-grey);
    border-radius: 5px;
    cursor: pointer;
}

.new_comp_acc ul.accordion-list li.active h3:after {
    transform: rotate(45deg);
}

.new_comp_acc ul.accordion-list li h3 {
    font-weight: 500;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 0 0 0 0;
    margin: 0;
    font-size: 18px;
    letter-spacing: 0.01em;
    cursor: pointer;
}

.new_comp_acc ul.accordion-list li h3:after {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary);
    transition: all 0.25s ease-in-out;
    font-size: 18px;
}

.new_comp_acc ul.accordion-list li div.answer {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.new_comp_acc ul.accordion-list li div.answer p {
    position: relative;
    display: block;
    font-weight: 300;
    padding: 15px 0 0 0;
    cursor: pointer;
    line-height: 150%;
    font-size: 16px;
}

/* -------------- Portfolio Modal ------------ */
.partoflio_card {
    padding: 15px;
    height: 100%;
    position: relative;
    border-radius: 7px;
    background-color: #fcfcfc;
    border: 1px solid var(--line-grey);
}

.partoflio_card img {
    aspect-ratio: 3/2;
    border-bottom: 1px solid var(--line-grey);
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 5px;
}

.project_name {
    padding: 12px 0 0;
}

.project_name span {
    font-size: 14px;
    color: var(--primary);
}

.project_name h3 {
    font-size: 16px;
    font-weight: 500;
}

button.modal_btn {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
    opacity: 0;
}

.modal_content img {
    width: 100%;
    position: relative;
    border-radius: 5px;
}

.modal_content .project_name {
    padding: 15px 0;
}

.project_details {
    padding: 15px 0;
    border-top: 1px solid var(--line-grey);
    border-bottom: 1px solid var(--line-grey);
}

.project_details_card h3 {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 0;
}

.project_details_card span {
    color: var(--black);
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
}

.project_summary {
    padding: 15px 0 0;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
    overflow: auto;
    background-color: var(--black);
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.modal-window {
    position: relative;
    background-color: var(--white);
    width: 50%;
    margin: 3% auto;
    padding: 20px;
    border-radius: 5px;
}

.modal-window.small {
    width: 75%;
}

.modal-window.large {
    width: 75%;
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(0, 0, 0, 0.3);
    height: 30px;
    width: 30px;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
}

.close:hover,
.close:focus {
    color: var(--black);
    cursor: pointer;
}

.open {
    display: block;
}

iframe.responsive-iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 7px;
}

.mySlides p {
    margin-bottom: 5px;
}

.mySlides.fade.photo_frame img {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: top;
    background-color: var(--bg-grey);
    border-radius: 7px;
    border: 1px solid var(--line-grey);
}

.software_key_details h4 {
    font-size: 17px;
    margin-bottom: 15px;
}

.software_key_details ul li {
    list-style: none;
    margin-top: 10px;
}

.software_key_details ul li i {
    color: var(--black);
}

.specs {
    border-top: 1px solid var(--line-grey);
    padding-top: 40px;
}

.related_software {
    background-color: var(--white);
    margin-top: 25px;
    border: 1px solid var(--line-grey);
    border-radius: 5px;
    padding: 15px;
}

.related_meta {
    display: flex;
}

.related_meta img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    object-fit: contain;
    border-radius: 5px;
    border: 1px solid var(--line-grey);
}

.related_meta h3 a {
    color: var(--black);
    font-weight: 500;
}

.related_meta p {
    color: var(--light-text);
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.related_cat a {
    padding: 10px 20px;
    background-color: var(--black);
    display: inline-block;
    border-radius: 25px;
    color: var(--white);
    font-weight: 500;
    margin: 15px 5px 0 0;
}

.pricing_block {
    background-color: var(--white);
    border: 1px solid var(--black);
    border-radius: 5px;
    margin-top: 30px;
}

.pricing_header {
    padding: 7px 10px;
    background-color: var(--black);
    color: var(--white);
}

.pricing_header h4 {
    text-align: center;
    font-weight: 500;
    color: var(--white);
}

.pricing_body {
    padding: 10px 15px 15px;
}

.price_box {
    text-align: center;
    margin: 10px 0;
}

.price_box span {
    font-size: 1.75rem;
    color: var(--black);
    font-weight: 500;
}

.pricing_body p {
    font-weight: 500;
    color: var(--black);
}

.pricing_body ul {
    padding-left: 18px;
}

.pricing_body ul li {
    margin-top: 10px;
    font-size: 14px;
}

.price_warning img {
    width: 100%;
    margin: 20px 0 10px;
    padding-top: 20px;
    border-top: 1px solid var(--line-grey);
}

.price_warning p {
    color: red;
    font-size: 15px;
}

.customer_logo {
    border: 1px solid var(--line-grey);
    padding: 10px;
    width: 100%;
    aspect-ratio: 16/9;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.customer_logo img {
    max-width: 85%;
    max-height: 50px;
}

.customer_list h5 {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
}

/* ------------- Cutom Pagination ---------------- */
.custom_pagination nav {
    position: inherit
}

.custom_pagination ul.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    position: inherit
}

.custom_pagination li {
    background-color: var(--white);
    list-style: none;
}

.custom_pagination a {
    border-bottom: none;
    border: 1px solid var(--line-grey);
    padding: 10px;
    min-width: 35px;
    background-color: var(--white);
    color: var(--black);
}

.custom_pagination span {
    border-bottom: none;
    border: 1px solid var(--line-grey);
    padding: 10px;
    min-width: 35px;
    background-color: var(--white);
}

.custom_pagination li.page-item.active span {
    color: var(--white);
    background-color: var(--black);
}

.related_links {
    padding: 50px 0;
    background-color: var(--white);
}

.related_link {
    margin-bottom: 20px;
}

.related_link a {
    color: var(--black);
    position: relative;
    padding-left: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.related_link a::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    min-width: 7px;
    min-height: 7px;
    border-radius: 100px;
    background-color: var(--black);
    left: 0;
    top: 6px;
}

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

/* -------------------------------------- Article Page ----------------- */
.blogSection {
    padding: 70px 0;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background: -webkit-linear-gradient(to right, #0b0249 0%, #3d319f 100%);
    background: linear-gradient(to right, #0b0249 0%, #3d319f 100%);
}

.relatedArticles {
    background-color: var(--bg-grey);
    padding: 70px 0;
}

.article_user {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.articleExcerpt {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.articleIcon {
    display: inline-flex;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
}

.articleExcerptDetails span {
    font-size: 14px;
    color: #b1b1b1;
}

.articleExcerptDetails p {
    font-size: 16px;
    color: #b1b1b1;
    margin-top: -3px;
    margin-bottom: -3px;
}

.articleExcerptDetails p a {
    color: var(--white);
}

.articleExcerptDetails p a:hover {
    text-decoration: underline;
}

.blogBanner img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    border: 1px solid #363c5cbd;
}

.articleCategory {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary);
    border-radius: 25px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.article_meta h1 {
    font-size: 2.25rem;
    line-height: 1.25em;
    margin: 10px 0 20px;
    font-weight: 600;
    color: var(--white);
}

.blogContent {
    padding: 50px 0;
}

.article_content {
    margin-bottom: 15px;
    line-height: 1.75em;
    color: var(--black);
}

.article_content td {
    border: 1px solid var(--line-grey);
    padding: 10px;
}

.article_content .table {
    width: 100%;
    overflow: auto;
    margin-bottom: 20px;
}

.article_content tr {
    width: 100%;
    white-space: nowrap;
}

.article_content .table::-webkit-scrollbar {
    display: none;
}

.article_content p {
    margin-bottom: 15px;
    line-height: 1.7em;
    color: var(--black);
}

.article_content h2 {
    font-size: 1.75rem;
    margin: 20px 0;
    color: var(--black);
    font-weight: 700;
}

.article_content h3 {
    font-size: 1.5rem;
    margin: 20px 0;
    color: var(--black);
    font-weight: 700;
}

.article_content h4 {
    font-size: 1.25rem;
    margin: 20px 0;
    color: var(--black);
    font-weight: 700;
}

.article_content h5 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--black);
    font-weight: 700;
}

.table_of_content {
    margin-bottom: 25px;
    position: sticky;
    top: 40px;
}

.table_of_content h5 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 700;
}

.table_of_content ul {
    padding-left: 18px;
}

.table_of_content li {
    line-height: 1.25em;
    margin-top: 10px;
    font-size: 14px;
}

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

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

.article_content figcaption {
    font-size: 13px;
    color: #a7a7a7;
}

.article_content img {
    width: 100% !important;
    height: auto !important;
    margin: 15px 0;
    border-radius: 10px;
}

.article_content ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.article_content ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.article_content li {
    line-height: 1.75em;
    color: var(--black);
    margin: 10px 0;
}

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

.article_content strong {
    font-weight: 800;
    color: var(--black);
}

.article_sidebar {
    padding: 20px;
    background-color: var(--bg-grey);
    margin-bottom: 25px;
}

.article_sidebar h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.related_articles {
    box-shadow: none;
    border: 1px solid var(--line-grey);
}

.buyers_guide {
    padding: 20px;
    background-color: var(--bg-grey);
    border-radius: 5px;
    margin-top: 23px;
    position: sticky;
    top: 20px;
    border: 1px solid var(--line-grey);
}

.buyers_guide h5 {
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.buyers_guide ul {
    padding-left: 18px;
}

.buyers_guide li {
    margin: 10px 0 0;
    font-size: 16px;
    list-style: circle;
    font-weight: 400;
}

.buyers_guide li a {
    color: var(--black);
}

/* ---------------- BLog CSS End ---------------- */
.section_title h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.acc_form h3 {
    font-size: 18px;
}

.acc_form input {
    padding: 12px 10px;
    width: 100%;
    outline: none;
    border: 1px solid var(--line-grey);
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 4px;
}

.acc_form input:focus {
    border: 1px solid var(--black);
}

.acc_form textarea {
    padding: 12px;
    width: 100%;
    outline: none;
    border: 1px solid var(--line-grey);
    background-color: var(--white);
    margin-bottom: 10px;
    border-radius: 4px;
    min-height: 150px;
}

.acc_form textarea:focus {
    border: 1px solid var(--black);
}

.acc_form button {
    width: 100%;
    padding: 10px;
}

.captcha {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.captcha img {
    width: 100px;
    margin-right: 10px;
}

.captcha input {
    margin-bottom: 0;
}

.alert_message {
    padding: 10px;
    border-radius: 4px;
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.alert_message ul {
    font-size: 14px;
    padding-left: 20px;
}

.alert_message li {
    margin: 5px 0;
}

.success_message {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #c3e6cb;
    color: #155724;
    background-color: #d4edda;
    font-size: 14px;
}

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

.login_form h1 {
    margin-bottom: 20px;
    text-align: center;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 700;
}

.form_header h3 {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--line-grey);
    padding-bottom: 10px;
}

.form_sidebar {
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid var(--line-grey);
}

.form_sidebar li {
    list-style: none;
    margin: 15px 0;
    position: relative;
}

.form_sidebar li a {
    color: var(--black);
    font-weight: 600;
}

.form_sidebar span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: var(--black);
    color: var(--white);
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-weight: 500;
}

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

li.active_step::after {
    display: block;
    position: absolute;
    right: 0;
    top: 11px;
    font: var(--fa-font-solid);
    content: "\f0da";
    color: var(--primary);
    font-size: 20px;
}

li.active_step span {
    background-color: var(--primary);
}

.form_container {
    padding: 20px;
    background-color: var(--white);
    border: 1px solid var(--line-grey);
    border-radius: 10px;
}

.input_form h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 6px;
    margin-top: 10px;
}

.input_form h3 span {
    color: #ff0000;
}

.input_form input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--line-grey);
    border-radius: 25px;
    margin-bottom: 10px;
    font-size: 15px;
}

.input_form input:focus {
    outline: none;
    border: 1px solid var(--primary);
}

.input_form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--line-grey);
    border-radius: 25px;
    margin-bottom: 10px;
    min-height: 150px;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5em;
}

.input_form textarea:focus {
    outline: none;
    border: 1px solid var(--primary);
}

.input_form select {
    width: 100%;
    padding: 9px 10px;
    background-color: var(--white);
    border: 1px solid var(--line-grey);
    border-radius: 25px;
    margin-bottom: 10px;
    font-size: 15px;
}

.input_form select:focus {
    outline: none;
    border: 1px solid var(--primary);
}

.radio_box {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.radio_box label {
    font-size: 14px;
    margin: 0 10px 0 5px;
}

.radio_box input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    margin-bottom: 0;
}

.radio_box input[type="radio"] {
    width: inherit;
    margin-bottom: 0;
}

.social_input {
    position: relative;
}

.social_input input {
    padding-left: 205px;
}

.social_url {
    position: absolute;
    font-size: 14px;
    top: 7px;
    text-align: right;
    width: 200px;
}

.social_url p {
    font-weight: 400;
}

#dropzone {
    position: relative;
    border: 2px dashed var(--line-grey);
    border-radius: 4px;
    color: var(--black);
    text-align: center;
    width: 100%;
    aspect-ratio: 1/1;
    min-height: 95%;
}

#dropzone.hover {
    border: 10px solid var(--line-grey);
    color: var(--light-text);
}

#dropzone.dropped {
    border: 3px dashed var(--line-grey);
    background-color: var(--line-grey);
}

#dropzone div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#dropzone div p {
    position: absolute;
    top: 45%;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 14px;
}

#dropzone img {
    border-radius: 4px;
    vertical-align: middle;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center;
    height: 100%;
}

#dropzone [type="file"] {
    cursor: pointer;
    position: absolute;
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

button.site_btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 500;
}

/* ---------------- User Dashboard CSS ---------------- */
.dashboard_home {
    text-align: center;
    padding: 15px 0;
}

.dashboard_home i {
    font-size: 5rem;
    color: var(--black);
}

.dashboard_home h3 {
    margin-top: 20px;
    font-weight: 600;
    font-size: 1.25rem;
    text-transform: capitalize;
}

.dashboard_header {
    border-bottom: 1px solid var(--line-grey);
    padding-bottom: 15px;
}

.text_right {
    text-align: right;
}

a.user_link {
    color: var(--bg-grey);
    font-size: 1.75rem;
}

.review_comp_info {
    text-align: center;
}

.review_comp_info img {
    width: 70px;
    height: 70px;
    display: block;
    margin: 0 auto 10px;
    border-radius: 5px;
    object-fit: contain;
}

.review_comp_info h3 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 5px;
}

.review_comp_info p {
    font-size: 14px;
    margin-bottom: 10px;
}

ul.review_guidelines {
    padding-left: 0;
}

.review_guidelines li {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    padding-left: 25px;
}

.review_guidelines li::before {
    position: absolute;
    left: 0;
    top: 4px;
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    color: #008000;
}

.rating-box {
    display: inline-block;
}

.rating-container {
    direction: rtl !important;
}

.rating-container label {
    display: inline-block;
    margin: 0 0 35px 0;
    color: var(--line-grey);
    cursor: pointer;
    font-size: 30px;
    transition: color 0.2s;
    line-height: 0;
}

.rating-container input[type=radio] {
    display: none;
}

.rating-container label:hover,
label:hover~label,
input:checked~label {
    color: var(--primary);
}

.rating_form h3 {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.listing_main {
    padding: 20px;
    margin: 20px 0;
    background-color: var(--white);
    border: 1px solid var(--line-grey);
}

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

.listing_new img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    object-fit: contain;
    border-radius: 5px;
    border: 1px solid var(--line-grey);
}

.listing_metadata p {
    margin-top: 10px;
}

.listing_metadata h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

.listing_metadata span {
    color: var(--black);
    font-size: 15px;
    font-weight: 600;
}

span.active_listing {
    padding: 4px 10px;
    background-color: #008000;
    border-radius: 25px;
    color: var(--white);
}

span.pending_listing {
    padding: 4px 10px;
    background-color: #ff0000;
    border-radius: 25px;
    color: var(--white);
}

span.edit_listing {
    padding: 4px 10px;
    background-color: var(--black);
    border-radius: 25px;
    color: var(--white);
    margin-left: 10px;
}

.bg_gray {
    background-color: var(--bg-blue);
}

.page_not_found {
    text-align: center;
}

.page_not_found h2 {
    margin: 30px 0;
}

.page_not_found img {
    width: 80%;
}

.tags-input-wrapper {
    background: transparent;
    padding: 8px 10px;
    border-radius: 3px;
    width: 100%;
    border: 1px solid var(--line-grey);
}

.tags-input-wrapper input {
    border: none !important;
    background: transparent;
    outline: none;
    width: 140px;
    padding: 0;
    margin-bottom: 0
}

.tags-input-wrapper .tag {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 40px;
    padding: 7px 7px 7px 14px;
    margin: 2px 5px 2px 0;
}

.tags-input-wrapper .tag a {
    margin: 0 7px 3px;
    display: inline-block;
    cursor: pointer;
}

.pros_cons {
    padding: 70px 50px 50px;
    background-color: var(--bg-blue);
    margin-top: 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid var(--line-grey);
}

.pros_cons h3 {
    position: absolute;
    top: 0px;
    left: 50px;
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 0 0 15px 15px;
    font-size: 18px;
}

.pros_cons h4 {
    font-size: 1.5rem;
    font-weight: 800;
}

.pros_cons p {
    list-style: none;
    padding-left: 25px;
    margin-top: 15px;
    line-height: 1.7em;
    color: var(--black);
    position: relative;
}

.pros_list p::before {
    content: "\f055";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    position: absolute;
    font-size: 16px;
    color: var(--primary);
    left: 0;
}

.cons_list p::before {
    content: "\f056";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    position: absolute;
    font-size: 16px;
    color: var(--black);
    left: 0;
}

figure.table table {
    border-collapse: collapse;
    width: 100%;
}

figure.table table td,
figure.table table th {
    border: 1px solid var(--line-grey);
    padding: 5px 10px;
}

.searchBar {
    margin-top: 30px;
    justify-content: center;
    position: relative;
}

.searchBar input {
    padding: 15px 20px;
    width: 100%;
    border-radius: 25px;
    border: 2px solid var(--line-grey);
    border-right: none;
    outline: none;
    font-size: 15px;
}

.searchBar input:focus {
    border: 2px solid var(--primary);
}

.searchBar button {
    background-color: var(--primary);
    border-radius: 25px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: absolute;
    right: 6px;
    top: 6px;
}

.comment_read {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px dashed var(--line-grey);
}

.comment_read span {
    font-size: 14px;
    color: var(--light-text);
    display: inline-block;
    margin-bottom: 10px;
}

.userLetter {
    min-width: 45px;
    height: 45px;
    aspect-ratio: 1/1;
    background-color: var(--bg-grey);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: var(--black);
    font-weight: 700;
}

/* -------------- Responsive CSS ---------------- */
@media(max-width: 1199px) {
    .jumbo_image img {
        bottom: 5px;
        right: 0px;
        width: 300px;
    }

    .newHeroText h1 {
        font-size: 2.5rem;
    }

    .article_meta h1 {
        font-size: 2rem;
    }
}

@media(max-width: 991px) {
    .article_user {
        margin-bottom: 30px;
    }

    .blogSection {
        padding: 50px 0;
    }

    .footer_links {
        margin: 15px 0;
    }

    .footer_comp {
        text-align: center;
    }

    .footer_social {
        justify-content: center;
        margin-bottom: 30px;
    }

    .new_listing_sidebar {
        padding: 20px 0 0 0;
        border-left: none;
        border-top: 1px solid var(--line-grey);
        margin-top: 15px;
    }

    .pros_cons {
        padding: 60px 30px 30px;
        border-radius: 10px;
    }

    .pros_cons h3 {
        left: 30px;
    }

    .new_listing_sidebar.comp_sidebar {
        padding: 20px;
        background: var(--white);
        border: 1px solid var(--line-grey);
        border-radius: 10px;
        margin-top: 0;
    }

    .cons_list {
        margin-top: 15px;
    }

    .blog_heading {
        border-top: 1px solid var(--line-grey);
    }

    .jumbo_image img {
        bottom: 5px;
        right: 0px;
        width: 110%;
        position: inherit;
    }
}

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

    .table_of_content {
        padding: 25px;
        background-color: var(--bg-grey);
        border-radius: 10px;
        border: 1px solid var(--line-grey);
    }

    .jumbo_image img {
        position: static;
        bottom: inherit;
        right: inherit;
        width: 100%;
        margin-bottom: -54px;
    }

    .comp_margin {
        padding: 40px 0;
    }

    .rating_graph {
        margin: 30px 0 10px;
    }

    .comp_social {
        justify-content: right;
        margin-top: 20px;
    }

    .comp_social a:not(:last-child) {
        margin-right: 10px;
    }

    .ratings {
        border-top: 1px solid var(--line-grey);
        border-left: none;
        padding: 20px;
    }

    .feedback_area {
        padding: 20px;
    }

    .reviews_icon {
        justify-content: left;
        margin: 5px 0;
    }

    .new_comp_acc ul.accordion-list li h3 {
        font-size: 16px;
    }

    .modal-window {
        width: 95%;
    }

    div#nav-menu {
        overflow: auto;
        overflow-y: hidden;
    }

    .newHeroText h1 {
        font-size: 2rem;
    }
}

@media(max-width:575px) {
    .jumbo_cta {
        padding: 30px;
    }

    .jumbo_image img {
        margin-bottom: -34px;
    }

    .cta_box {
        padding: 20px 0;
    }

    button.add_review_btn.site_button {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* News Page/Section CSS */
.newsRoom {
    padding: 50px 0;
}

.newsHead h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 8px solid var(--primary);
}

.newsCard {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--line-grey);
    padding: 25px 0;
    position: relative;
}

.newsCard img {
    width: 200px;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    border: 1px solid var(--line-grey);
}

.newsMeta>span a {
    color: var(--primary);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.newsMeta>span a:hover {
    text-decoration: underline;
}

.newsMeta h3 {
    font-weight: 500;
    margin: 10px 0;
}

.newsMeta h3 a {
    color: var(--black);
}

.newsMeta h3 a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.newsMeta p {
    color: var(--light-text);
    font-size: 14px;
}

.newsMeta p a {
    color: var(--light-text);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.newsMeta p a:hover {
    text-decoration: underline;
}

.newsSidebar {
    background-color: var(--black);
    padding: 40px;
    border-radius: 10px;
    position: sticky;
    top: 20px;
}

.sidebarHead {
    display: flex;
    gap: 15px;
    color: var(--white);
    padding-bottom: 20px;
    border-bottom: 1px solid #4e4e4e;
}

.sidebarHead h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 500;
}

.sidebarHead span {
    display: flex;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    border-radius: 5px;
}

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

.newsLink:last-of-type {
    margin-bottom: 0;
}

.newsLink::before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    top: 7px;
    transform: rotate(45deg);
}

.newsLink a {
    color: var(--line-grey);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.35em;
}

.newsLink a:hover {
    text-decoration: underline;
}

.paginator {
    margin-top: 30px;
}

.paginator nav {
    position: static;
    text-align: left;
}

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

.paginator ul.pagination a {
    color: var(--black);
}

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

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

.newsMeta h1 {
    font-size: 2.25rem;
    margin: 5px 0;
}

.newsRoom .article_content img {
    border: 1px solid var(--line-grey);
    border-radius: 5px;
}

@media(max-width: 991px) {
    .newsSidebar {
        margin-top: 40px;
    }
}

@media(max-width: 767px) {
    .newsCard img {
        width: 175px;
        aspect-ratio: 3 / 2.5;
    }

    .sidebarHead h3 {
        line-height: 1.5em;
    }

    .newsMeta h3 {
        font-weight: 400;
        font-size: 17px;
    }

    .newsLink a {
        font-size: 17px;
    }

    .newsHead h1 {
        border-left: 6px solid var(--primary);
    }

    .newsMeta h1 {
        font-size: 1.75rem;
    }
}

@media(max-width: 575px) {
    .newsCard img {
        width: 125px;
        aspect-ratio: 1/1;
    }
}

/* News Page/Section CSS End */
/* New Blog CSS Start  */
.newBlogPage {
    padding: 70px 0;
    background-color: #3d319f;
    background: -webkit-linear-gradient(to right, #0b0249 0%, #3d319f 100%);
    background: linear-gradient(to right, #0b0249 0%, #3d319f 100%);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.newBlogPageHead h1 {
    color: var(--white);
    font-size: 2.5rem;
}

.newBlogPageHead p {
    color: var(--bg-grey);
    font-size: 18px;
    margin-top: 5px;
    line-height: 1.5em;
}

/* ========  */
.scrollingTabs {
    border-bottom: 1px solid var(--line-grey);
}

.scrollingTabs .wrapper {
    padding: 25px 0;
    position: relative;
    background: var(--white);
    width: 100%;
    border-radius: 13px;
    overflow: hidden;
}

.scrollingTabs .icon {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    display: flex;
    align-items: center;
    z-index: 1;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.scrollingTabs .icon.visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.scrollingTabs .icon:first-child {
    left: 0;
    background: linear-gradient(90deg, var(--white) 70%, transparent);
    justify-content: flex-start;
}

.scrollingTabs .icon:last-child {
    right: 0;
    background: linear-gradient(-90deg, var(--white) 70%, transparent);
    justify-content: flex-end;
}

.scrollingTabs .icon i {
    cursor: pointer;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line-grey);
    pointer-events: auto;
}

.scrollingTabs .tabs_box {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0;
}

.scrollingTabs .tabs_box::-webkit-scrollbar {
    display: none;
}

.scrollingTabs .tabs_box.dragging {
    scroll-behavior: auto;
    cursor: grabbing;
}

.scrollingTabs .tab {
    white-space: nowrap;
    background: var(--bg-grey);
    border: 1px solid var(--line-grey);
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.scrollingTabs .tab a {
    color: var(--black);
    text-decoration: none;
}

.scrollingTabs .tab a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.scrollingTabs .tab:hover {
    background: var(--primary);
    border-color: transparent;
}

.scrollingTabs .tab:hover a {
    color: var(--white);
}

/* =========== */
.newBlogList {
    padding: 30px 0 50px;
}

.featuredBlog {
    position: relative;
}

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

.featuredMeta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.featuredMeta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: var(--black)50;
    background: -webkit-linear-gradient(to top, #0b0249, #ffffff00);
    background: linear-gradient(to top, #0b0249, #ffffff00);
}

.featuredMetaContent {
    position: absolute;
    z-index: 1;
    padding: 40px;
    left: 0;
    bottom: 0;
}

.featuredMetaContent h3 {
    font-size: 2.25rem;
    margin: 5px 0 20px;
    font-weight: 500;
}

.featuredMetaContent h3 a {
    color: var(--white);
}

.featuredMetaContent span a {
    color: var(--primary);
    padding-left: 10px;
    font-size: 14px;
    position: relative;
}

.featuredMetaContent span a::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 5px;
    background-color: var(--primary);
    left: 0;
    top: 6px;
}

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

.featuredMetaContent p a {
    color: var(--bg-grey);
    font-weight: 500;
    line-height: 0;
}

.sidePost {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
}

.sidePost:not(:last-of-type) {
    margin-bottom: 24px;
}

.sidePost img {
    width: 150px;
    aspect-ratio: 4/2.75;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.sidePost h3 a {
    color: var(--black);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.25em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.sidePost h3 a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.sidePost:hover a {
    text-decoration: underline;
    color: var(--primary);
}

.categoryRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categoryRow h3 {
    font-size: 2rem;
    padding-left: 10px;
    border-left: 5px solid var(--primary);
    font-weight: 500;
}

.categoryRow button {
    margin-top: 0;
    padding: 10px 20px;
    font-size: 16px;
}

.blogCardNew {
    border-radius: 10px;
    border: 1px solid var(--line-grey);
    position: relative;
    height: 100%;
    background-color: var(--white);
}

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

.blogCardNew .blogCardMeta {
    padding: 30px;
}

.blogCardNew .blogCardMeta h3 {
    font-size: 1.35rem;
    line-height: 1.25em;
    font-weight: 500;
}

.blogCardNew .blogCardMeta h3 a {
    color: var(--black);
    transition: all .3s ease-in-out;
}

.blogCardNew .blogCardMeta h3 a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.blogCardNew .blogCardMeta p {
    font-size: 16px;
    line-height: 1.5em;
    margin: 10px 0 20px;
}

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

.nameDate {
    display: flex;
    justify-content: space-between;
    font-size: 14px !important;
    margin-bottom: 0 !important;
    color: var(--light-text);
    border-top: 1px solid var(--line-grey);
    padding-top: 15px;
}

.blogCardMeta span a {
    color: var(--primary);
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.nameDate span {
    position: relative;
    padding-left: 10px;
}

.nameDate a {
    color: var(--light-text);
    padding-left: 10px;
    position: relative;
    text-decoration: underline;
}

.nameDate a:before,
.nameDate span:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 5px;
    background-color: var(--primary);
    left: 0;
    top: 8px;
}

@media(max-width: 1399px) {
    .sidePost img {
        width: 125px;
    }
}

@media(max-width: 1199px) {
    .featuredBlog img {
        aspect-ratio: 15 / 10;
    }

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

@media(max-width: 991px) {
    .featuredBlog {
        margin-bottom: 30px;
    }

    .featuredBlog img {
        aspect-ratio: 16 / 9;
    }
}

@media(max-width: 767px) {
    .newBlogPage {
        padding: 50px 0;
    }

    .newBlogPageHead h1 {
        font-size: 2rem;
    }

    .scrollingTabs .tab {
        padding: 8px 13px;
        font-size: 14px;
    }

    .scrollingTabs .icon i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        line-height: 34px;
    }
}

@media(max-width: 575px) {
    .blogCardNew .blogCardMeta h3 {
        font-size: 1.25rem;
    }

    .categoryRow h3 {
        font-size: 1.75rem;
        font-weight: 600;
    }

    .featuredMetaContent h3 {
        font-size: 1.25rem;
    }

    .featuredMeta::before {
        background: -webkit-linear-gradient(to top, var(--black), var(--black)80);
        background: linear-gradient(to top, var(--black), var(--black)80);
    }
}

/* New Blog CSS End  */
/* Home Tools CSS  */
.featuredTools {
    padding: 50px 0;
}

.toolCard {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--line-grey);
    background-color: var(--white);
    position: relative;
}

.spontag {
    position: absolute;
    top: -9px;
    left: -10px;
    background-image: url('/img/main/sponsored.svg');
    background-repeat: no-repeat;
    width: 100px;
    height: 20px;
}

.toolOther {
    display: inline-flex;
    gap: 10px;
}

.toolPills {
    background-color: var(--bg-grey);
    padding: 7px 12px;
    font-size: 14px;
    border-radius: 25px;
    color: var(--black);
}

.toolPills a {
    color: var(--black);
    position: relative;
    z-index: 1;
}

.ratingPill {
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
}

.toolMeta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.toolMeta img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    object-position: center;
    border-radius: 5px;
    background-color: var(--bg-grey);
}

.toolMeta h3 {
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.5em;
}

.toolMeta h3 a {
    color: var(--black);
}

.toolMeta h3 a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.toolMeta p {
    color: var(--light-text);
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.35em;
}

.toolBtn {
    padding-top: 15px;
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line-grey);
    font-size: 15px;
    color: var(--primary);
}

.toolBtn i {
    transition: all .3s ease-in-out;
}

.toolCard:hover .toolBtn i {
    transform: rotate(-45deg);
}

.toolRow .categoryRow h3 {
    font-size: 1.65rem;
    font-weight: 700;
}

.toolRow:not(:first-of-type) {
    padding-top: 50px;
    margin-top: 60px;
    border-top: 1px solid var(--line-grey);
}

/* Home Tools CSS End  */
.authorProfile {
    display: flex;
    gap: 25px;
    align-items: center;
}

.authorProfile img {
    width: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    object-fit: cover;
    object-position: top;
}

.blogProfile h1 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 500;
}

.blogProfile h4 {
    color: var(--line-grey);
    font-weight: 400;
    margin: 3px 0 20px;
    font-size: 14px;
    position: relative;
    padding-left: 10px;
}

.blogProfile h4::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 5px;
    background-color: var(--primary);
    left: 0;
    top: 5px;
}

.blogProfile p {
    color: var(--bg-grey);
    font-size: 18px;
    line-height: 1.5em;
}

.followAuthor {
    margin: 20px 0 5px;
    font-size: 14px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.followAuthor a {
    color: var(--primary);
    font-size: 16px;
    margin-left: 5px;
}

.followAuthor span {
    color: var(--line-grey);
}

@media(max-width: 991px) {
    .authorProfile {
        flex-direction: column;
    }

    .blogProfile {
        text-align: center;
    }

    .blogProfile h4 {
        display: inline-block;
    }

    .followAuthor {
        display: inline-flex;
    }

    .authorProfile img {
        width: 125px;
    }

    .blogProfile p {
        font-size: 16px;
    }
}


.careerHero {
    background-color: #010a25;
    background-image: url('/img/main/line-bg.png');
    background-size: 1000px;
    background-position: top;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.careerTop {
    position: relative;
    z-index: 1;
}

.careerHero h1 {
    font-size: 2.5rem;
    color: var(--white);
}

.careerHero p {
    font-size: 1.25rem;
    line-height: 1.5em;
    color: var(--white);
}

.job-listing {
    background-color: var(--white);
    border: 1px solid var(--line-grey);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s;
}

.job-listing:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.job-listing h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.job-listing button {
    margin-top: 0;
}

.job-listing .location {
    font-size: 1rem;
    color: var(--light-text);
}

.form-container {
    width: 100%;
    margin: auto;
    background-color: var(--white);
    border-radius: 0.75rem;
    border: 1px solid var(--line-grey);
    padding: 2.5rem;
}

.form-container label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-container .form-group {
    margin-bottom: 1.5rem;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="number"],
.form-container input[type="file"],
.form-container select,
.form-container textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line-grey);
    border-radius: 25px;
    transition: border-color 0.2s;
    font-size: 1rem;
    background-color: var(--white);
}

.form-container textarea {
    min-width: 100%;
    min-height: 150px;
}

.form-container input[type="text"]:focus,
.form-container input[type="email"]:focus,
.form-container input[type="number"]:focus,
.form-container input[type="file"]:focus,
.form-container select:focus,
.form-container textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-container .submit-container {
    text-align: center;
}

.form-container .submit-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 2rem;
    border: 1px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    color: var(--white);
    background-color: var(--primary);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.form-container input::-webkit-outer-spin-button,
.form-container input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media(max-width:767px) {
    .job-listing button {
        font-size: 14px;
        padding: 10px 15px;
    }
}

.reviewCard {
    background-color: var(--white);
    border: 1px solid var(--line-grey);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    gap: 25px;
    transition: all .3s ease-in-out;
    position: relative;
}

.reviewUser,
.reviewTool {
    padding: 15px;
}

.reviewTool {
    border-top: 1px solid var(--line-grey);
    display: flex;
    gap: 10px;
    align-items: center;
}

.reviewTool img {
    height: 40px;
    width: 40px;
    border-radius: 5px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1/1;
    border: 1px solid var(--line-grey);
}

.reviewTool h4 a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
}

.reviewTool h4 a::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.reviewTool span {
    font-size: 14px;
    color: var(--light-text);
}

.userMeta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.userMeta img {
    height: 40px;
    width: 40px;
    border-radius: 50px;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 1/1;
}

.userMeta h4 {
    font-size: 1rem;
    font-weight: 500;
}

.userMeta i {
    color: #ff8f45;
    font-size: 14px;
    letter-spacing: -4px;
}

.reviewText p {
    font-size: 15px;
    line-height: 1.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}


.featuresText {
    background-color: var(--white);
    border: 1px solid var(--line-grey);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    width: 90%;
    transition: all .3s ease-in-out;
}

.centerFeature {
    margin-left: 10%;
}

.featuresText img {
    width: 70px;
}

.featuresText h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.featuresText p {
    line-height: 1.35em;
}

.whyChooseUs {
    background-color: var(--white);
    border: 1px solid var(--line-grey);
    border-radius: 10px;
    padding: 25px;
    transition: all .3s ease-in-out;
    height: 100%;
}

.whyChooseUs span {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background-color: var(--primary);
    background: -webkit-linear-gradient(135deg, #0b0249 0%, #6253dc 100%);
    background: linear-gradient(135deg, #0b0249 0%, #6253dc 100%);
    color: var(--white);
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

.whyChooseUs:hover span {
    border-radius: 100px;
}

.whyChooseUs h4 {
    font-size: 1.35rem;
    margin-bottom: 5px;
}

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

.reviewCard:hover,
.featuresText:hover,
.whyChooseUs:hover {
    border: 1px solid var(--primary);
}

.toolsCategory {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.toolsCategory a {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--bg-blue);
    color: var(--primary);
    font-weight: 500;
    margin: 0 7px 15px;
    border: 1px solid var(--primary);
    border-radius: 25px;
    transition: all .3s ease-in-out;
}

.toolsCategory a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.newsletterBox {
    padding: 50px;
    border-radius: 20px;
    background-color: #3d319f;
    background: -webkit-linear-gradient(to right, #0b0249 0%, #3d319f 100%);
    background: linear-gradient(to right, #0b0249 0%, #3d319f 100%);
}

.newsletterBox img {
    width: 100%;
}

.newsForm h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.newsForm p {
    font-size: 17px;
    line-height: 1.5em;
    color: var(--bg-blue);
}

.newsForm input {
    width: 100%;
    padding: 15px 25px;
    border-radius: 25px;
    background-color: var(--white);
    border: 1px solid var(--bg-blue);
    font-size: 16px;
    margin-top: 20px;
}

.customTable h3 {
    font-size: 1.25rem;
    font-weight: 700 !important;
}

.content-table {
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.9em;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.content-table thead tr {
    background-color: var(--primary);
    background-image: linear-gradient(135deg, #0b0249 0%, #6253dc 100%);
    color: var(--white);
    text-align: left;
    font-weight: 600;
}

.content-table th,
.content-table td {
    padding: 12px 15px;
    font-size: 17px;
}

.content-table tbody tr {
    border-bottom: 1px solid var(--line-grey);
    border-left: 1px solid var(--line-grey);
    border-right: 1px solid var(--line-grey);
}

.content-table tbody tr:nth-of-type(odd) {
    background-color: var(--white);
}

.content-table tbody tr:nth-of-type(even) {
    background-color: #f1f1f1;
}

.content-table tbody tr:last-of-type {
    border-radius: 0 0 10px 10px;
}

.appRating {
    text-align: center;
    width: fit-content;
    margin-left: auto;
    padding: 20px;
    background-color: var(--white);
    border: 1px solid var(--line-grey);
    border-radius: 5px;
}

.appRating h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.appRating span {
    font-size: 20px;
    font-weight: 700;

}

.appRatingStar {
    margin-top: 5px;
}

.appRatingStar i {
    color: var(--white);
    width: 25px;
    height: 25px;
    font-size: 16px;
    background-color: #ffaa2c;
    padding: 5px;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.toolsItem {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line-grey);
    border-radius: 10px;
    background-color: var(--white);
    height: 100%;
    transition: all .3s ease-in-out;
    text-align: center;
    position: relative;
}

.toolsItem:hover {
    border: 1px solid var(--primary);
}

.toolsItem img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 5px;
    border: 1px solid var(--line-grey);
    margin-bottom: 10px;
}

.toolsItem h3 a {
    font-size: 1.25rem;
    color: var(--black);
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.toolsItem h3 a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.toolsItem p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.listScore {
    color: var(--white);
    font-size: 14px;
    background-color: #ffaa2c;
    border-radius: 25px;
    display: inline-flex;
    padding: 5px 12px;
    gap: 5px;
    align-items: center;
    font-weight: 600;
    margin-top: 10px;
}

@media(max-width:991px) {
    .banner_img img {
        width: 85%;
        display: block;
        margin: 0 auto 25px;
    }

    .content-table th,
    .content-table td {
        font-size: 16px;
    }

    .customTable {
        overflow: auto;
    }
}

@media(max-width:767px) {
    .jumbo_cta {
        margin-top: -3rem;
    }

    .newHeroText h2 {
        font-size: 16px;
        line-height: 1.5em;
    }

    .newHeroText h1 {
        line-height: 1.15em;
    }

    .featuresText img {
        width: 60px;
    }

    .colored_list {
        width: 100%;
    }
}


@media(max-width:575px) {
    .appRating {
        width: 100%;
        margin-left: inherit;
        margin-top: 15px;
    }
}

/* ======== Comment Section CSS ======== */

.commentSection {
    padding: 20px 0;
}

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

.commentBox {
    border: 1px solid var(--line-grey);
    padding: 25px;
    background-color: var(--bg-grey);
    border-radius: 15px;
    margin: 10px 0 20px;
}

.commentBox textarea {
    max-width: 100%;
    min-width: 100%;
    padding: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: var(--white);
    border-radius: 10px;
    min-height: 200px;
    resize: none;
    border: 2px solid var(--line-grey);
}

.commentBox button {
    padding: 10px 15px;
    border-radius: 25px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 15px;
    border: 1px solid var(--primary);
    margin-top: 10px;
}

.commentsList {
    padding: 20px;
    border: 1px solid var(--line-grey);
    border-radius: 10px;
}

.commentsList:not(:last-of-type) {
    margin-bottom: 24px;
}

.commentsList p {
    margin-bottom: 10px;
    line-height: 26px;
    white-space: pre-wrap;
}

.replyBox textarea {
    max-width: 100%;
    min-width: 100%;
    padding: 10px;
    font-family: 'Inter', sans-serif;
    border: 2px solid var(--line-grey);
    background-color: var(--white);
    border-radius: 10px;
    min-height: 100px;
    resize: none;
    margin-top: 10px;
    font-size: 1rem;
}

.replyBox button {
    padding: 5px 10px;
    border-radius: 25px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 12px;
    border: 1px solid var(--primary);
    margin-top: 5px;
}

.commentUser {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;
}

.commentUser img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 100px;
}

.commentUser h4 {
    font-size: 1.25rem;
    margin-bottom: 0;
    line-height: 1;
}

.commentUser span {
    font-size: 12px;
    color: var(--light-text);
}

.replyUser img {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.replyUser h5 {
    font-size: 18px;
}

.repliesList {
    margin-left: 20px;
    padding-left: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-left: 1px solid var(--line-grey);
}

.singleReply {
    padding: 20px 0;
}

.replyBtn {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
}
