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

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

p {
    color: #333333;
    line-height: 25px;
}

h1,
h2,
h3,
h4 {
    color: #333333;
}

::placeholder {
    color: #bbbbbb;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #bbbbbb;
}

::-ms-input-placeholder {
    color: #bbbbbb;
}

button {
    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 ---------- */
.header {
    background: #333333;
}

nav .wrapper {
    position: relative;
    max-width: 1300px;
    padding: 0px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .logo {
    display: inline-flex;
}

.wrapper .logo a {
    text-decoration: none;
    display: inline-flex;
}

.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background: #ff8800;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #333333;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
    z-index: 9;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #333333;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
    width: calc(25% - 30px);
    line-height: 45px;
}

.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .row header {
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
}

.content .row .mega-links {
    margin-left: -40px;
}

.mega-box .content .row:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
    padding: 0 20px;
}

.row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}

.row .mega-links li a:hover {
    color: #f2f2f2;
}

.wrapper .btn {
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

@media screen and (max-width: 991px) {
    .mega-box .content .row:not(:last-child) {
        border-right: none;
    }

    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100%;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #333333;
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
        z-index: 9;
    }

    /* custom scroll bar */
    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    ::-webkit-scrollbar-track {
        background: #e3e3e3;
    }

    ::-webkit-scrollbar-thumb {
        background: #c4c4c4;
        border-radius: 10px;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    #close-btn:checked~.btn.menu-btn {
        display: block;
    }

    .nav-links li {
        margin: 15px 10px;
    }

    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #f2f2f2;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-links .mobile-item:hover {
        background: #ff8800;
    }

    .drop-menu li {
        margin: 0;
    }

    .drop-menu li a {
        border-radius: 5px;
        font-size: 17px;
        font-weight: 500;
        color: #d9d9d9;
    }

    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 0 20px 0 20px;
    }

    .mega-box .content .row {
        width: 100%;
        border-top: none;
    }

    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }

    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }

    .row .mega-links li {
        margin: 0;
    }

    .content .row header {
        font-size: 19px;
    }
}

@media(max-width: 991px) {
    .header_btn button span {
        display: none;
    }
}

@media(max-width: 450px) {
    .logo img {
        width: 170px !important;
    }
}

nav input {
    display: none;
}

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

.header_btn button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    background-color: #ff8800;
    color: #ffffff;
    font-weight: 500;
}

.header_btn label {
    margin-left: 15px;
}

/* ------------------ Hero Banner Area --------------- */
.hero_banner {
    padding: 60px 0px 60px;
    background-color: #f1f1f1;
}

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

.newHeroText {
    text-align: center;
}

.newHeroText h1 {
    font-size: 3rem;
    line-height: 1em;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 500;
}

.newHeroText h1 span {
    color: #ff8800;
}

.newHeroText h2 {
    font-size: 20px;
    font-weight: 400;
    color: #f1f1f1;
    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: #f1f1f1;
    border: 1px solid #363c5cbd;
}

button.site_button {
    padding: 13px 25px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    margin-top: 20px;
    background-color: #ff8800;
    color: #ffffff;
    font-weight: 500;
}

.banner_img img {
    width: 100%;
}

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

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

.we-offer-area {
    padding: 70px 0;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
    background: #ffffff none repeat scroll 0 0;
    border: 2px solid;
    height: 15px;
    margin: 0 5px;
    width: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
    background: #333333 none repeat scroll 0 0;
    border-color: #333333;
}

.we-offer-area .item {
    background: #ffffff none repeat scroll 0 0;
    border-left: 2px solid #333333;
    -moz-border: 1px solid #e3e3e3;
    -webkit-border: 1px solid #e3e3e3;
    -o-border: 1px solid #e3e3e3;
    border: 1px solid #e3e3e3;
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.we-offer-area.text_center .item {
    background: #ffffff none repeat scroll 0 0;
    border: medium none;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
}

.we-offer-area.text_center .item i {
    background: #333333 none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    font-size: 30px;
    height: 80px;
    line-height: 80px;
    position: relative;
    text-align: center;
    width: 80px;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    margin-bottom: 25px;
}

.we-offer-area.text_center .item i::after {
    border: 2px solid #333333;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 90px;
    left: -7px;
    position: absolute;
    top: -7px;
    width: 90px;
    z-index: -1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-border-less .item {
    border: medium none;
}

.we-offer-area.item-border-less .item .number {
    font-size: 50px;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    right: 30px;
    top: 30px;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
.we-offer-area.center-active .single-item:nth-child(2n) .item {
    background: #333333 none repeat scroll 0 0;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
.we-offer-area.center-active .single-item:nth-child(2n) .item i,
.we-offer-area.center-active .single-item:nth-child(2n) .item h4,
.we-offer-area.center-active .single-item:nth-child(2n) .item p {
    color: #ffffff;
}

.we-offer-area .item i {
    color: #333333;
    display: inline-block;
    font-size: 60px;
    margin-bottom: 20px;
}

.we-offer-area .item h4 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.we-offer-area .item p {
    margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
    background: linear-gradient(45deg, #78013ff5 0%, #010a25fa 30%, #060b2e 100%), none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    width: 100%;
    z-index: -1;
}

.we-offer-area .item:hover::after {
    left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
    color: #ffffff !important;
}

.we-offer-area.text_center .item:hover i::after {
    border-color: #ff8800 !important;
}

.we-offer-area.text_center .item:hover i {
    background-color: #ff8800 !important;
    color: #fff !important;
}

.we-offer-area.text-left .item i {
    background: #333333 none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 60px;
    height: 100px;
    line-height: 100px;
    margin-bottom: 30px;
    position: relative;
    width: 100px;
    z-index: 1;
    text-align: center;
}

.we-offer-area.text-left .item i::after {
    border: 2px solid #333333;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 120px;
    left: -10px;
    position: absolute;
    top: -10px;
    width: 120px;
}

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

.section_heading h3 {
    font-size: 2rem;
}

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

/* -------------- Footer CSS Start -------------- */
.footer {
    padding: 60px 0 0 0;
    background-color: #010a25fa;
    background: linear-gradient(45deg, #78013ff5 0%, #010a25fa 30%, #060b2e 100%);
}

.footer_links h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer_links h3::after {
    content: "";
    display: block;
    height: 2px;
    width: 75px;
    background: #c6c6c6;
    margin-top: 15px;
}

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

.footer_links a {
    color: #c6c6c6;
    font-size: 15px;
    font-weight: 300;
}

.footer_links a:hover {
    color: #ffffff;
}

.footer_comp img {
    width: 230px;
}

.footer_comp p {
    color: #f1f1f1;
    margin-bottom: 20px;
}

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

.footer_social li {
    padding: 5px;
    background-color: #ffffff;
    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: #333333;
    font-size: 18px;
}

.footer_social a:hover {
    color: #ff8800;
}

.subscribe {
    margin-top: 25px;
}

.subscribe input {
    width: 100% !important;
    border-radius: 3px;
    background-color: #ffffff;
}

.footer_credit {
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    color: #c6c6c6;
    font-weight: 300;
    border-top: 1px dashed #c6c6c6;
    margin: 40px 0 0;
}

.footer_links p {
    color: #c6c6c6;
    font-size: 15px;
}

/* -------------- Footer CSS End -------------- */
.blog_section {
    padding: 70px 0;
    background-color: #f9f9f9;
}

.commment_area {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e3e3e3;
}

.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 #ff8800;
}

.article_card {
    height: 100%;
    padding: 15px;
    border-radius: 7px;
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
}

.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: #333333;
}

.article_card span {
    font-size: 12px;
    color: #878787;
}

.article_card span a {
    color: #ff8800;
    font-weight: 500;
}

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

.jumbo_cta {
    padding: 50px;
    border-radius: 20px;
    background-color: #010a25fa;
    position: relative;
    margin-top: 50px;
    background: linear-gradient(45deg, #78013ff5 0%, #010a25fa 30%, #060b2e 100%);
}

.jumbo_text h3 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.jumbo_text p {
    color: #c6c6c6;
}

.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 #e3e3e3;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
}

.softwareCategory {
    font-size: 14px;
    color: #878787;
}

.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: #333333;
    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: #6b6b6b;
}

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

.head_section_padding {
    padding: 40px 0;
}

.listing_page_content h1 {
    font-size: 2rem;
    font-weight: 500;
    color: #333333;
}

.listing_page_content h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #6c6c6c;
}

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

.new_listing_page {
    padding: 40px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

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

.new_list_item {
    padding: 25px;
    border-radius: 7px;
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    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 #e3e3e3;
}

.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: #6c6c6c;
    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: #333333;
}

.new_list_reviews {
    margin-top: 5px;
}

.new_list_reviews i {
    color: #ff8800;
    font-size: 14px;
}

.new_list_reviews span {
    color: #ff8800;
    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: #eaf6ff;
    border-radius: 25px;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.new_listing_sidebar {
    padding: 15px;
    border-left: 1px solid #e3e3e3;
    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 #e3e3e3;
    padding-bottom: 20px;
}

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

.list_side_icons a i {
    background-color: inherit;
    display: inherit;
    color: #333333;
    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: #6c6c6c;
    line-height: 1.5em;
}

.list_side_icons span {
    font-weight: 500;
    font-size: 16px;
    color: #333333;
}

.new_list_review {
    padding: 15px 0 0 0;
    margin-top: 20px;
    border-top: 1px solid #e3e3e3;
}

.new_list_review h5 {
    font-size: 16px;
    font-style: italic;
    color: #ff8800;
    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 #ffffff;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    position: relative;
    cursor: pointer;
}

.stacked_bar .tooltiptext {
    visibility: hidden;
    background-color: #ffffff;
    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 #0000002e;
    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: #333333;
}

.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 #e3e3e3;
}

.colored_list {
    margin: 15px 15px 10px 0px;
    display: inline-block;
}

.colored_list:before {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    margin-right: 5px;
    background-color: #8cb0ea;
}

.colored_list:nth-child(1):before {
    background-color: #333333;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.service_focus_container {
    margin-top: 35px;
    border-top: 1px solid #e3e3e3;
    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 #e3e3e3;
    border-radius: 15px;
}

.table_listing th {
    text-align: left;
    padding: 15px;
    background-color: #333333;
    color: #ffffff;
}

.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: #333333;
    font-weight: 500;
}

/* ------------------ Listing Page CSS Ended ----------------- */
/* ---------------- Company Page CSS --------------- */
.new_com_page {
    padding: 30px 0 40px;
}

.company_breadcrumb {
    margin-bottom: 30px;
}

.company_breadcrumb span {
    color: #6c6c6c;
    font-size: 14px;
}

.company_breadcrumb span a {
    color: #333333;
}

.new_list_meta.new_com_meta h1 a {
    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: #333333;
}

.sticky_bar {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    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: #333333;
    padding: 15px;
    font-weight: 500;
    border-left: 1px solid #e3e3e3;
    white-space: nowrap;
}

#nav-menu ul li:last-child a {
    border-right: 1px solid #e3e3e3;
}

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

#nav-menu ul li a:hover {
    border-bottom: 3px solid #ff8800;
    color: #fff !important;
    background-color: #333333;
}

.active_tab {
    border-bottom: 3px solid #ff8800;
    color: #fff !important;
    background-color: #333333;
}

.comp_margin {
    padding: 50px 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: #333333;
    line-height: 1.7em;
}

.extra_content {
    margin-top: 10px;
    font-size: 16px;
    color: #333333;
    line-height: 25px;
}

figure.table {
    overflow-x: auto;
}

.outer_rating {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    border-radius: 3px;
    background-color: #e3e3e3;
    margin-bottom: 25px;
}

.inner_rating {
    background: #ff8800;
    height: 100%;
    border-radius: 3px;
    padding: 7px 10px;
    align-items: center;
    display: inline-block;
    color: #ffffff;
}

.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: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #ffffff;
    aspect-ratio: 1/1;
    margin-left: 10px;
}

.comp_social i:hover {
    background-color: #ff8800;
}

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 #e3e3e3;
    border-radius: 10px;
}

.ratings {
    border-left: 1px solid #e3e3e3;
    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: #333333;
}

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

.reviewer span a {
    color: #ff8800;
    font-weight: 600;
}

.review_text h3 {
    font-size: 16px;
    margin: 20px 0 5px;
    font-weight: 600;
    color: #333333;
}

.review_text p {
    color: #333333;
    line-height: 1.7em;
    font-size: 15px;
}

.ratings h3 {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 5px;
}

.rating_star_count {
    margin-bottom: 10px;
}

.rating_star_count span {
    color: #ff8800;
    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: #ffffff;
    padding: 20px;
    margin: 0 auto 15px auto;
    border: 1px solid #e3e3e3;
    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: #ff8800;
    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 #e3e3e3;
}

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

.project_name {
    padding: 12px 0 0;
}

.project_name span {
    font-size: 14px;
    color: #ff8800;
}

.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 #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}

.project_details_card h3 {
    font-size: 14px;
    font-weight: 400;
    color: #ff8800;
    margin-bottom: 0;
}

.project_details_card span {
    color: #333333;
    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: #000000;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.modal-window {
    position: relative;
    background-color: #FFFFFF;
    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: #000000;
    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: fill;
    object-position: top;
    background-color: #f9f9f9;
    border-radius: 7px;
    border: 1px solid #e3e3e3;
}

.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: #333333;
}

.specs {
    border-top: 1px solid #e3e3e3;
    padding-top: 40px;
}

.related_software {
    background-color: #ffffff;
    margin-top: 25px;
    border: 1px solid #e3e3e3;
    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 #e3e3e3;
}

.related_meta h3 a {
    color: #333333;
    font-weight: 500;
}

.related_meta p {
    color: #6c6c6c;
    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: #333333;
    display: inline-block;
    border-radius: 25px;
    color: #ffff;
    font-weight: 500;
    margin: 15px 5px 0 0;
}

.pricing_block {
    background-color: #ffffff;
    border: 1px solid #333333;
    border-radius: 5px;
    margin-top: 30px;
}

.pricing_header {
    padding: 7px 10px;
    background-color: #333333;
    color: #ffffff;
}

.pricing_header h4 {
    text-align: center;
    font-weight: 500;
    color: #ffffff;
}

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

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

.price_box span {
    font-size: 1.75rem;
    color: #333333;
    font-weight: 500;
}

.pricing_body p {
    font-weight: 500;
    color: #333333;
}

.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 #e3e3e3;
}

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

.customer_logo {
    border: 1px solid #e3e3e3;
    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: #ffffff;
    list-style: none;
}

.custom_pagination a {
    border-bottom: none;
    border: 1px solid #e3e3e3;
    padding: 10px;
    min-width: 35px;
    background-color: #ffffff;
    color: #333333;
}

.custom_pagination span {
    border-bottom: none;
    border: 1px solid #e3e3e3;
    padding: 10px;
    min-width: 35px;
    background-color: #ffffff;
}

.custom_pagination li.page-item.active span {
    color: #ffffff;
    background-color: #333333;
}

.related_links {
    padding: 50px 0;
    background-color: #ffffff;
}

.related_link {
    margin-bottom: 20px;
}

.related_link a {
    color: #333333;
    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: #333333;
    left: 0;
    top: 6px;
}

.related_link a:hover {
    color: #ff8800;
}

/* -------------------------------------- Article Page ----------------- */
.blogSection {
    padding: 70px 0;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background: -webkit-linear-gradient(45deg, #78013ff5 0%, #010a25fa 50%, #060b2e 100%);
    background: linear-gradient(45deg, #78013ff5 0%, #010a25fa 50%, #060b2e 100%);
}

.relatedArticles {
    background-color: #f1f1f1;
    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: #ff8800;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    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: #ffffff;
}

.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: #ff8800;
    border-radius: 25px;
    color: #ffffff;
    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: #ffffff;
}

.blogContent {
    padding: 50px 0;
}

.article_content {
    margin-bottom: 15px;
    line-height: 1.75em;
    color: #333333;
}

.article_content td {
    border: 1px solid #e3e3e3;
    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: #333333;
}

.article_content h2 {
    font-size: 1.75rem;
    margin: 20px 0;
    color: #333333;
    font-weight: 700;
}

.article_content h3 {
    font-size: 1.5rem;
    margin: 20px 0;
    color: #333333;
    font-weight: 700;
}

.article_content h4 {
    font-size: 1.25rem;
    margin: 20px 0;
    color: #333333;
    font-weight: 700;
}

.article_content h5 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: #333333;
    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: #333333;
    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: #ff8800;
}

.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: #333333;
    margin: 10px 0;
}

.article_content a {
    color: #ff8800;
}

.article_content strong {
    font-weight: 800;
    color: #333333;
}

.article_sidebar {
    padding: 20px;
    background-color: #fcfcfc;
    margin-bottom: 25px;
}

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

.related_articles {
    box-shadow: none;
    border: 1px solid #e3e3e3;
}

.buyers_guide {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-top: 23px;
    position: sticky;
    top: 20px;
    border: 1px solid #e3e3e3;
}

.buyers_guide h5 {
    font-size: 20px;
    font-weight: 800;
    color: #333333;
    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: #333333;
}

/* ---------------- 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 #e3e3e3;
    background-color: #ffffff;
    margin-bottom: 15px;
    border-radius: 4px;
}

.acc_form input:focus {
    border: 1px solid #333333;
}

.acc_form textarea {
    padding: 12px;
    width: 100%;
    outline: none;
    border: 1px solid #e3e3e3;
    background-color: #ffffff;
    margin-bottom: 10px;
    border-radius: 4px;
    min-height: 150px;
}

.acc_form textarea:focus {
    border: 1px solid #333333;
}

.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: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
}

.login_form h1 {
    margin-bottom: 20px;
    text-align: center;
    color: #333333;
    font-size: 1.5rem;
    font-weight: 700;
}

.form_header h3 {
    margin-bottom: 25px;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 10px;
}

.form_sidebar {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
}

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

.form_sidebar li a {
    color: #333333;
    font-weight: 600;
}

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

li.active_step a {
    color: #ff8800;
}

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

li.active_step span {
    background-color: #ff8800;
}

.form_container {
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
}

.input_form h3 {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 6px;
    margin-top: 10px;
}

.input_form h3 span {
    color: red;
}

.input_form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    margin-bottom: 10px;
    font-size: 15px;
}

.input_form input:focus {
    outline: none;
    border: 1px solid #333333;
}

.input_form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    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 #333333;
}

.input_form select {
    width: 100%;
    padding: 9px 10px;
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    margin-bottom: 10px;
    font-size: 15px;
}

.input_form select:focus {
    outline: none;
    border: 1px solid #333333;
}

.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 #e3e3e3;
    border-radius: 4px;
    color: #333333;
    text-align: center;
    width: 100%;
    aspect-ratio: 1/1;
    min-height: 95%;
}

#dropzone.hover {
    border: 10px solid #FE5;
    color: #FE5;
}

#dropzone.dropped {
    border: 3px dashed #e3e3e3;
    background-color: #e3e3e3;
}

#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: #ff8800;
    color: #ffffff;
    font-weight: 500;
}

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

.dashboard_home i {
    font-size: 5rem;
    color: #333333;
}

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

.dashboard_header {
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 15px;
}

.text_right {
    text-align: right;
}

a.user_link {
    color: #f2f2f2;
    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: #333333;
    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: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    color: green;
}

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

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

.rating-container label {
    display: inline-block;
    margin: 0 0 35px 0;
    color: #d4d4d4;
    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: rgb(255, 180, 42);
}

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

.listing_main {
    padding: 20px;
    margin: 20px 0;
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
}

.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 #e3e3e3;
}

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

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

.listing_metadata span {
    color: #333333;
    font-size: 15px;
    font-weight: 600;
}

span.active_listing {
    padding: 4px 10px;
    background-color: green;
    border-radius: 25px;
    color: #ffffff;
}

span.pending_listing {
    padding: 4px 10px;
    background-color: red;
    border-radius: 25px;
    color: #ffffff;
}

span.edit_listing {
    padding: 4px 10px;
    background-color: #c5c5c5;
    border-radius: 25px;
    color: #333333;
    margin-left: 10px;
}

.bg_gray {
    background-color: #fcfcfc;
}

.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 #e3e3e3;
}

.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: #333333;
    color: 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: #f3f3f3;
    margin-top: 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid #e3e3e3;
}

.pros_cons h3 {
    position: absolute;
    top: 0px;
    left: 50px;
    background-color: #333333;
    color: #ffffff;
    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: #333333;
    position: relative;
}

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

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

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

figure.table table td,
figure.table table th {
    border: 1px solid #e3e3e3;
    padding: 5px 10px;
}

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

.searchBar input {
    padding: 15px 20px;
    width: 100%;
    border-radius: 7px;
    border: 2px solid #e3e3e3;
    border-right: none;
    outline: none;
    font-size: 15px;
}

.searchBar input:focus {
    border: 2px solid #ff8800;
}

.searchBar button {
    background-color: #ff8800;
    border-radius: 5px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    color: #ffffff;
    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 #cfcfcf;
}

.comment_read span {
    font-size: 14px;
    color: #636363;
    display: inline-block;
    margin-bottom: 10px;
}

.userLetter {
    min-width: 45px;
    height: 45px;
    aspect-ratio: 1/1;
    background-color: #b9a1a1;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: #ffffff;
    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 #e3e3e3;
        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: #ffffff;
        border: 1px solid #e3e3e3;
        border-radius: 10px;
        margin-top: 0;
    }

    .cons_list {
        margin-top: 15px;
    }

    .blog_heading {
        border-top: 1px solid #e3e3e3;
    }

    .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: #f1f1f1;
        border-radius: 10px;
        border: 1px solid #e3e3e3;
    }

    .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 #e3e3e3;
        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;
    }

    .we-offer-area {
        padding: 40px 0;
    }

    .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 #ff8800;
}

.newsCard {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #e3e3e3;
    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 #e3e3e3;
}

.newsMeta>span a {
    color: #ff8800;
    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: #333333;
}

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

.newsMeta p {
    color: #636363;
    font-size: 14px;
}

.newsMeta p a {
    color: #636363;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

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

.newsSidebar {
    background-color: #333333;
    padding: 40px;
    border-radius: 10px;
    position: sticky;
    top: 20px;
}

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

.sidebarHead h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 500;
}

.sidebarHead span {
    display: flex;
    width: 40px;
    height: 40px;
    background-color: #ff8800;
    color: #ffffff;
    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: #ff8800;
    position: absolute;
    left: 0;
    top: 7px;
    transform: rotate(45deg);
}

.newsLink a {
    color: #e3e3e3;
    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: #e3e3e3;
    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: #333333;
}

.paginator li.page-item.active {
    background-color: #ff8800;
    color: #ffffff;
}

.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 #e3e3e3;
    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 #ff8800;
    }

    .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-image: url('/img/main/gradient-background.webp');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.newBlogPageHead h1 {
    color: #ffffff;
    font-size: 2.5rem;
}

.newBlogPageHead p {
    color: #f1f1f1;
    font-size: 18px;
    margin-top: 5px;
    line-height: 1.5em;
}

/* ========  */
.scrollingTabs {
    border-bottom: 1px solid #e3e3e3;
}

.scrollingTabs .wrapper {
    padding: 25px 0;
    position: relative;
    background: #ffffff;
    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, #fff 70%, transparent);
    justify-content: flex-start;
}

.scrollingTabs .icon:last-child {
    right: 0;
    background: linear-gradient(-90deg, #fff 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: #ffffff;
    border: 1px solid #e3e3e3;
    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: #f1f1f1;
    border: 1px solid #e3e3e3;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.scrollingTabs .tab a {
    color: #333333;
    text-decoration: none;
}

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

.scrollingTabs .tab:hover {
    background: #ff8800;
    border-color: transparent;
}

.scrollingTabs .tab:hover a {
    color: #ffffff;
}

/* =========== */
.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: #00000050;
    background: -webkit-linear-gradient(to top, #000000, #ffffff00);
    background: linear-gradient(to top, #000000, #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: #ffffff;
}

.featuredMetaContent span a {
    color: #ff8800;
    padding-left: 10px;
    font-size: 14px;
    position: relative;
}

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

.featuredMetaContent p {
    color: #f1f1f1;
    font-size: 14px;
}

.featuredMetaContent p a {
    color: #f1f1f1;
    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: #333333;
    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: #ff8800;
}

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

.categoryRow h3 {
    font-size: 2rem;
    padding-left: 10px;
    border-left: 5px solid #ff8800;
    font-weight: 500;
}

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

.blogCardNew {
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    position: relative;
    height: 100%;
    background-color: #ffffff;
}

.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: #333333;
    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: #ff8800;
}

.nameDate {
    display: flex;
    justify-content: space-between;
    font-size: 14px !important;
    margin-bottom: 0 !important;
    color: #636363;
    border-top: 1px solid #e3e3e3;
    padding-top: 15px;
}

.blogCardMeta span a {
    color: #ff8800;
    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: #636363;
    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: #ff8800;
    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, #000000, #00000080);
        background: linear-gradient(to top, #000000, #00000080);
    }
}

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

.toolCard {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    background-color: #ffffff;
    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: #ebebeb;
    padding: 7px 12px;
    font-size: 14px;
    border-radius: 25px;
    color: #333333;
}

.toolPills a {
    color: #333333;
    position: relative;
    z-index: 1;
}

.ratingPill {
    background-color: #ff8800;
    color: #ffffff;
    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: #f1f1f1;
}

.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: #333333;
}

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

.toolMeta p {
    color: #6c6c6c;
    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 #e3e3e3;
    font-size: 15px;
    color: #ff8800;
}

.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 #e7e7e7;
}

/* 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: #ffffff;
    font-size: 2rem;
    font-weight: 500;
}

.blogProfile h4 {
    color: #e3e3e3;
    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: #ff8800;
    left: 0;
    top: 5px;
}

.blogProfile p {
    color: #f1f1f1;
    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: #ff8800;
    font-size: 16px;
    margin-left: 5px;
}

.followAuthor span {
    color: #e3e3e3;
}

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

/* ========== New Career CSS ===========  */
.careerHero {
    background-color: #010a25;
    background-image: url('/img/main/career-banner.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    background-position: top left;
    position: relative;
}

.careerHero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #78013f94 0%, #010a25d1 50%, #060b2ed1 100%);
}

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

.careerHero h1 {
    font-size: 2.5rem;
    color: #ffffff;
}

.careerHero p {
    font-size: 1.25rem;
    line-height: 1.5em;
    color: #ffffff;
}

.job-listing {
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    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: #636363;
}

.form-container {
    width: 100%;
    margin: auto;
    background-color: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e3e3e3;
    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 #e3e3e3;
    border-radius: 0.5rem;
    transition: border-color 0.2s;
    font-size: 1rem;
    background-color: #ffffff;
}

.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: #ff8800;
}

.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: #ffffff;
    background-color: #ff8800;
    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;
    }
}

.sectionPadding {
    padding: 70px 0;
}

.about_text ul {
    padding: 15px 0 0 18px;
}

.about_text ul li {
    margin-top: 5px;
    color: #333333;
}

.goalSection {
    background: linear-gradient(-45deg, #78013ff5 0%, #010a25fa 30%, #060b2e 100%);
}

.goalSection h3,
.goalSection p {
    color: #ffffff;
}

.goalSection h3 {
    font-size: 2rem;
}

.goalSection p {
    margin-top: 15px;
    line-height: 1.5em;
}

.aboutFeature {
    height: 100%;
}

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

.aboutFeature img {
    width: 50px;
    margin-bottom: 10px;
}

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

.valuePills {
    padding: 20px 20px;
    background-color: #ffffff;
    border-radius: 150px;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 15px;
}

.valuePills span {
    background-color: #ff8800;
    height: 50px;
    width: 50px;
    border-radius: 100px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.valuePills p {
    color: #636363;
    margin-top: 0;
}

.valuePills h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.aboutBanner img {
    width: 85%;
    display: block;
    margin: 0 auto;
}

.statSection {
    padding: 80px 0;
}

.statsArea {
    text-align: center;
    background-color: #fff1eb;
    padding: 30px 20px;
    border-radius: 15px;
    height: 100%;
    border: 1px solid #ffe2e2;
}

.statsArea img {
    width: 50px;
    margin-bottom: 10px;
}

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

.testimonials {
    background-color: #ebf3ff;
}

.clientReviews {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.clientReviews p {
    margin: 10px 0 20px 0;
}

.clientReviews span {
    color: #ff8800;
    font-size: 14px;
}

.contactBox {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid #e3e3e3;
    padding: 20px;
    flex-direction: column;
}

.ctLink {
    font-weight: 500;
    border-bottom: 1px solid #ff8800;
    color: #ff8800;
    display: inline-block;
    width: fit-content;
}

.ctLink a {
    color: #ff8800;
}

.promoteTool {
    background-color: #ff8800;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    transition: all .3s ease-in-out;
}

.promoteTool a {
    color: #ffffff;
    font-weight: 600;
}

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

.promoteTool:hover {
    background-color: #333333;
}

.ck-editor__editable h2 {
    font-size: 2rem;
    margin-block: 15px;
    line-height: 1.15em;
    font-weight: 600;
    color: #333333;
}

.ck-editor__editable h3 {
    font-size: 1.75rem;
    margin-block: 15px;
    line-height: 1.15em;
    font-weight: 600;
    color: #333333;
}

.ck-editor__editable h4 {
    font-size: 1.5rem;
    margin-block: 15px;
    line-height: 1.15em;
    font-weight: 600;
    color: #333333;
}

.ck-editor__editable p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5em;
    color: #333333;
}

.ck-editor__editable img {
    margin-bottom: 15px;
}

.ck-editor__editable ul,
.ck-editor__editable ol {
    margin-bottom: 15px;
    padding-left: 18px;
}

.ck-editor__editable ul {
    list-style: disc;
}

.ck-editor__editable ol {
    list-style: decimal;
}

.ck-editor__editable li {
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.5em;
    color: #333333;
}
