/* Global S */
    .title-form-group .title {
        display: block;
        font-size: 25px;
        font-weight: 700;
    }

    .title-form-group p {
        opacity: 0.5;
    }

    @media (max-width: 767.98px) {
        .title-form-group .title {
            font-size: 22px;
        }
    }
/* Global E */

/* Header S */
    html.is-menu-open {
        overflow: hidden;
    }

    .header-main {
        background-color: rgba(61, 61, 63, 1);
        padding: var(--header-main-y-space) 0;
        position: fixed;
        left: 0;
        width: 100%;
        z-index: 99;
        min-height: var(--header-height);
    }

    .header-row {
        display: flex;
        flex-wrap: wrap;
        /* align-items: center; */
        justify-content: space-between;
    }

    .header-main .navbar {
        display: flex;
        align-items: stretch;
        justify-content: center;
        gap: 40px;
        border: 0;
        margin: 0;
    }

    .header-main .navbar .list-link {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        height: 100%;
        width: 100%;
    }

    .header-main .navbar-brand {
        height: auto;
        padding: 0 !important;
        max-width: 165px;
    }

    .header-main .header-btn-sc {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .header-main .header-btn-sc .btn+.btn:before {
        content: '';
        position: absolute;
        left: -15px;
        top: 0;
        height: 100%;
        width: 1px;
        background-color: rgba(84, 84, 88, 1);
    }

    .header-btn-sc .btn {
        padding: 6px 15px;
        font-size: 14px;
    }

    .megamenu-wrapper {
        display: none;
        position: fixed;
        left: 0;
        top: calc(var(--header-height) - var(--header-main-y-space));
        width: 100%;
        z-index: 99;
        padding-top: var(--header-main-y-space);
    }

    .megamenu-main {
        padding: 30px 0;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 4px 16px 0px;
    }

    .megamenu-main-title {
        font-size: 18px;
        font-weight: 500;
        color: var(--primary-color);
        display: block;
        margin-bottom: 20px;
        text-transform: capitalize;
    }

    .megamenu-inner {
        display: flex;
        flex-direction: column;
    }

    .megamenu-inner .megamenu-list {
        padding: 12px 10px;
        border-radius: 15px;
        color: #000;
        display: block;
    }

    .megamenu-inner .megamenu-list:hover {
        background-color: rgb(234 86 67 / 6%);
    }

    .megamenu-inner .megamenu-list:hover .title {
        color: var(--primary-color);
    }

    .megamenu-block {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .megamenu-block .icon-block {
        width: 30px;
    }

    .megamenu-block .icon-block img {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: contain;
    }

    .megamenu-block .content-block {
        width: calc(100% - 40px);
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .megamenu-block .content-block>* {
        display: block;
        line-height: normal;
    }

    .megamenu-block .content-block .title {
        width: 100%;
        transition: 0.3s;
    }

    .megamenu-block .content-block .text {
        font-size: 14px;
        opacity: 0.5;
    }

    .has-megamenu .list-link:after {
        content: "\e900";
        font-family: 'icomoon';
        font-weight: 600;
        margin-left: 5px;
        font-size: 12px;
        transition: 0.3s;
    }

    @keyframes menuopen {
        0% {
            transform: translate(0%, 50px);
        }

        100% {
            transform: translate(0%, 0px);
        }
    }

    .toggle-bar {
        width: 35px;
        height: 25px;
        display: block;
        cursor: pointer;
        position: relative;
        margin: auto;
    }

    .toggle-bar span {
        position: absolute;
        top: 0;
        left: 0;
        background-color: white;
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    .toggle-bar span:before {
        position: absolute;
        top: 10px;
        left: 0;
        content: ' ';
        background-color: white;
    }

    .toggle-bar span:after {
        position: absolute;
        top: 20px;
        left: 0;
        content: ' ';
        background-color: white;
    }

    .close span {
        position: absolute;
        left: -6em;
        background: none;
    }

    .close span:after {
        position: absolute;
        left: 6em;
        top: 0.6em;
        background-color: white;
        transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }

    .close span:before {
        display: block;
        position: absolute;
        background-color: white;
        top: 0.6em;
        left: 6em;
        transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    .toggle-bar span,
    .toggle-bar span:before,
    .toggle-bar span:after,
    .close span,
    .close span:before,
    .close span:after {
        width: 35px;
        height: 3px;
        border-radius: 0.2em;
        -moz-transition: all .5s cubic-bezier(0.5, -0.6, 0.19, 1);
        -o-transition: all .5s cubic-bezier(0.5, -0.6, 0.19, 1);
        -webkit-transition: all .5s cubic-bezier(0.5, -0.6, 0.19, 1);
        transition: all .5s cubic-bezier(0.5, -0.6, 0.19, 1);
    }

    @media (min-width: 1023.99px) {
        .has-megamenu:hover .list-link~.megamenu-wrapper {
            display: block;
            animation: 0.3s menuopen;
        }

        .has-megamenu:hover .list-link:after {
            transform: rotate(180deg);
        }

        .toggle-bar {
            display: none;
        }
    }

    @media (max-width: 1023.98px) {
        .header-main .navbar {
            position: fixed;
            top: var(--header-height);
            left: 0;
            width: 100%;
            height: calc(100% - var(--header-height));
            z-index: 999;
            flex-direction: column;
            justify-content: flex-start;
            /*background: #ffffff;*/
            background: rgba(61, 61, 63, 1);
            display: none;
            overflow-y: auto;
            box-shadow: 0px 3px 10px #00000026;
            height: auto !important;
        }

        .header-main .navbar .list-item {
            border-top: 1px solid rgb(133 133 133);
        }

        .header-main .navbar .list-link {
            color: #fff;
            width: 100%;
            max-width: 960px;
            margin: auto;
            justify-content: space-between;
            padding: 15px;
        }

        .has-megamenu .list-link:after {
            font-size: 16px;
        }

        .megamenu-wrapper {
            position: static;
            box-shadow: none;
            padding-top: 0;
            border-top: 1px solid rgb(133 133 133);
        }

        .megamenu-main {
            box-shadow: none;
            padding: 10px 0px;
            background-color: transparent;
        }
        .megamenu-inner .megamenu-list {
            color: #fff;
        }

        .is-open-submenu.has-megamenu .list-link:after {
            transform: rotate(180deg);
        }
    }

    @media (max-width: 991.98px) {
        .header-main .navbar .list-link {
            max-width: 720px;
        }

        .megamenu-block .content-block .text {
            display: none;
        }

        .megamenu-inner .megamenu-list {
            padding: 12px 0px;
        }
    }

    @media (max-width: 767.98px) {
        .header-main .navbar .list-link {
            max-width: 540px;
        }
    }

    @media (max-width: 575.98px) {
        .header-main .header-btn-sc {
            gap: 15px;
        }
    }
/* Header E */

/* Banner S */
    .banner-section .row {
        display: flex;
        align-items: center;
    }

    .banner-content-block .tag {
        display: inline-block;
        padding: 7px 12px;
        border-radius: 6px;
        background-color: rgba(255, 233, 230, 1);
        font-size: 16px;
        font-weight: 500;
        color: var(--primary-color);
    }

    .banner-content-block .title {
        font-size: 54px;
        font-weight: 600;
        line-height: 60px;
        margin: 20px 0px;
        text-transform: capitalize;
    }

    .banner-content-block p {
        font-size: 18px;
        /* line-height: 20px; */
        margin-bottom: 25px;
    }

    .banner-img-block {
        max-width: 500px;
        margin-left: auto;
        position: relative;
    }

    .banner-img-block .watermark-remove {
        position: absolute;
        bottom: 10px;
        right: 0px;
        width: 140px;
        height: 35px;
        border-radius: 20px;
        background: #ffffff;
    }

    lottie-player {
        width: 100%;
        height: 100%;
    }

    .banner-quote {
        border-left: 2px solid var(--primary-color);
        padding-left: 8px;
        margin-bottom: 50px;
    }

    .banner-quote .quote-subtitle {
        margin-bottom: 10px;
    }

    .banner-quote .quote-title {
        color: var(--primary-color);
        font-size: 24px;
        line-height: 20px;
        font-weight: 600;
    }

    .banner-content-block .btn-sc {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }

    .banner-content-block .btn-sc .schedule-link {
        background-color: transparent;
        border: 0;
        font-size: 16px;
    }

    .btn-enquiry {
        padding: 7px 16px;
        padding-left: 50px;
    }
    .btn-enquiry .enquiry-span-wrap {
        display: flex;
        flex-direction: column;
        text-align: left;
        font-size: 17px;
        line-height: normal;
    }
    .btn-enquiry .enquiry-span-text {
        font-size: 13px;
        display: block;
        margin-bottom: 2px;
    }

    @media (max-width: 1366.98px) {
        .banner-content-block .title {
            max-width: 500px;
            font-size: 48px;
            line-height: 1.2;
        }
    }

    @media (max-width: 991.98px) {

        /* .banner-section .row > [class*=col-]:nth-child(1) {order: 1}
            .banner-section .row > [class*=col-]:nth-child(2) {order: 0} */
        .banner-img-block {
            margin: 50px auto 0px;
            max-width: 350px;
        }

        .banner-content-block .title {
            font-size: 36px;
        }

        .banner-quote {
            margin-bottom: 40px;
        }

        .banner-content-block .btn {
            font-size: 20px;
        } 
    }

    @media (max-width: 575.98px) {
        .banner-content-block .title {
            font-size: 30px;
        }
        .banner-content-block .btn-sc {
            flex-direction: column;
            gap: 10px;
        }
        .banner-content-block .btn:not(.btn-enquiry) {
            width: 100%;
        }
        .no-bg-mv {
            background-color: transparent !important;
            border: 0 !important;
        }
        .btn-enquiry .enquiry-span-text {display: none;}
    }
/* Banner E */

/* Trusted Company S */
    .trusted-section .logo-wrap {
        max-width: 800px;
        margin: auto;
    }
    /* .trusted-section .logo-slider {
        max-width: 900px;
        margin: auto;
    }  */
    .trusted-section .logo-item {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
    }

    .trusted-section .logo-item img {
        max-height: 80px;
        max-width: 100%;
        object-fit: contain;
    }

    @media (max-width: 575.98px) {
        .trusted-section .logo-item img {
            max-width: 120px;
            max-height: 50px;
        }
    }
/* Trusted Company E */

/* Feature S */
    .feature-section {
        position: relative;
    }

    .feature-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background-color: var(--bg-grey-dark);
    }

    .feature-card {
        z-index: 2;
        position: relative;
        background-color: #fff;
        border: 1px solid rgba(229, 224, 219, 1);
        border-radius: 20px;
        padding: 50px 25px 25px;
    }

    .feature-card .title-sc {
        margin-bottom: 20px;
    }

    .feature-block {
        /* background-color: rgba(249, 245, 242, 1); */
        background-color: #f9f9f9;
        border: 1px solid rgba(229, 224, 219, 1);
        border-radius: 20px;
        padding: 25px;
        margin-top: 30px;
        display: block;
        height: calc(100% - 30px);
        transition: 0.3s;
    }
    .feature-block:hover {
        background-color: #F5F5F5;        
    }

    .feature-block .icon-title-block {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
    }

    .feature-block .icon-title-block.icon-title-block-column {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-block .icon {
        max-width: 50px;
        width: 50px;
    }
    .feature-block.home-feature-block  .icon {
        max-width: 40px;
        width: 40px;
    }
    .feature-block .icon img {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .feature-block .title {
        display: block;
        font-size: 28px;
        font-weight: 600;
        line-height: 1.2;
        width: calc(100% - 55px);
        position: relative;
        padding-right: 20px;
        color: var(--heading-color);
    }
    .feature-block.home-feature-block .title::before {
        content:  "\e900";
        font-family: 'icomoon' !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        position: absolute;
        right: 0;
        top: 5px;
        transform: rotate(-90deg);
        font-size: 25px;
        transition: 0.3s;
    }
    .feature-block.home-feature-block:hover .title::before {
        transform: translate(5px, 0px) rotate(-90deg);
    }

    .feature-block .icon-title-block.icon-title-block-column .title {
        width: 100%;
    }

    .feature-block p+.explore-link {
        margin-top: 30px;
    }

    .feature-block .explore-link {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--primary-color);
        font-size: 20px;
        font-weight: 600;
    }

    .feature-block .explore-link svg {
        transition: all 0.3s;
    }

    .feature-block .explore-link:hover svg {
        transform: translate(5px, 0);
    }

    @media (max-width: 1366.98px) {
        .feature-block.home-feature-block .title::before {
            top: 6px;
            font-size: 24px;
        }
    }

    @media (max-width: 991.98px) {
        .feature-block .icon-title-block {
            align-items: flex-start;
        }
        .feature-block {
            padding: 20px;
            height: calc(100% - 20px);
        }

        .feature-block .title {
            font-size: 22px;
            width: calc(100% - 45px);
        }

        .feature-block.home-feature-block .title::before {
            top: 4px;
            font-size: 18px;
        }
        .feature-block.home-feature-block  .icon {
            max-width: 30px;
            width: 30px;
        }

        .feature-block .explore-link {
            font-size: 16px;
        }
    }

    @media (max-width: 575.98px) {
        .feature-card {
            padding: 30px 25px 25px;
        }

        .feature-block {
            margin-top: 20px;
        }
    }
/* Feature E */

/* CTA S */
    .cta-grid-block {
        background-color: var(--primary-color);
        background-image: linear-gradient(128.04deg, #E95644 66.97%, #FF7E6D 103.4%);
        padding: 60px 50px;
        border-radius: 25px;
    }

    .cta-grid-inner {
        max-width: 760px;
        margin: auto;
        text-align: center;
        color: #fff;
    }

    .cta-grid-inner .title {
        font-size: 46px;
        line-height: 1.2;
        font-weight: 600;
        margin-bottom: 20px;
        display: block;
    }

    .cta-grid-inner p {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 20px;
        color: #fff;
    }

    .cta-grid-img-block {
        position: relative;
    }

    .cta-grid-img-block .cta-grid-inner {
        max-width: 625px;
        text-align: left;
        margin-left: 0;
        z-index: 1;
        position: relative;
    }

    .cta-grid-img-block .cta-grid-image {
        width: calc(100% - 695px);
        position: absolute;
        right: 20px;
        bottom: 0;
        z-index: 0;
    }

    @media (max-width: 1366.98px) {
        .cta-grid-inner .title {
            font-size: 38px;
        }
        .cta-grid-img-block .cta-grid-image {
            width: calc(100% - 735px);
        }
    }

    @media (max-width: 1260.9px) {
        .cta-grid-img-block .cta-grid-image {
            width: calc(100% - 645px);
        }   
    }

    @media (max-width: 1199.98px) {
        .cta-grid-img-block .cta-grid-image {
            width: calc(100% - 465px);
            right: 0px;
        }
        .cta-grid-img-block .cta-grid-inner {
            max-width: 525px;
        }
    }

    @media (max-width: 991.98px) {
        .cta-section {
            padding-top: 0px;
        }
        .cta-grid-block {
            padding: 40px 30px 40px;
        }

        .cta-grid-img-block .cta-grid-inner {
            text-align: center;
            margin: auto;
        }

        .cta-grid-img-block .cta-grid-image {
            width: calc(100% - 385px);
            right: 0px;
            opacity: 0;
        }

        .cta-grid-inner .title {
            font-size: 32px;
        }

        .cta-grid-inner p {
            font-size: 20px;
        }
    }

    @media (max-width: 767.98px) {
        .cta-grid-img-block .cta-grid-image {
            width: 225px;
        }
    }

    @media (max-width: 575.98px) {
        .cta-grid-block {
            padding: 30px 20px 30px;
        }

        .cta-grid-inner .title {
            font-size: 28px;
        }

        .cta-grid-inner p {
            font-size: 18px;
        }
    }
/* CTA E */

/* Service S */
    .service-card-grid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .service-card-grid .service-card-block {
        width: calc(33.33% - (30px * 2) / 3);
    }

    .service-card-inner {
        padding: 30px;
        background-color: #fff;
        border: 1px solid rgba(229, 224, 219, 1);
        border-radius: 20px;
        display: flex;
        flex-direction: column;
    }

    .service-card-inner .icon-title-block {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
    }

    .service-card-inner .icon {
        max-width: 36px;
        width: 36px;
        height: 36px;
        background-image: url(../../new/home-services-icon.png);
        background-repeat: no-repeat;
    }
    .service-card-inner .icon.icon-startup {background-position: 0px center;}
    .service-card-inner .icon.icon-individual {background-position: -37px center;}
    .service-card-inner .icon.icon-education {background-position: -74px center;}
    .service-card-inner .icon.icon-corporate {background-position: -111px center;}
    .service-card-inner .icon.icon-developer {background-position: -148px center;}

    .service-card-inner .icon img {
        width: 100%;
        display: none;
        aspect-ratio: 1 / 1;
    }

    .service-card-inner .title {
        font-size: 24px;
        line-height: 1.2;
        font-weight: 700;
        display: block;
        width: calc(100% - 75px);
    }

    .service-card-inner p {
        margin-bottom: 0px;
    }

    @media (max-width: 1366.98px) {
        .service-card-inner .title {
            font-size: 22px;
        }
    }

    @media (max-width: 1199.98px) {
        .service-card-inner {
            padding: 20px;
        }

        .service-card-inner .title {
            font-size: 24px;
        }
    }

    @media (max-width: 991.98px) {
        .service-card-grid .service-card-block {
            width: calc(50% - (30px * 1) / 2);
        }

        .service-card-inner .title {
            font-size: 22px;
            width: calc(100% - 60px);
        }
    }

    @media (max-width: 575.98px) {
        .service-card-grid {
            gap: 20px;
        }

        .service-card-grid .service-card-block {
            width: calc(100% - 0px);
        }
    }
/* Service E */

/* Faq S */
    .faq-list+.faq-list {
        border-top: 2px solid rgba(229, 224, 219, 1);
    }

    .faq-list .faq-head {
        padding: 25px 20px 25px 0px;
        cursor: pointer;
        position: relative;
    }

    .faq-head::before,
    .faq-head::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 2px;
        background-color: var(--primary-color);
        border-radius: 10px;
        top: 50%;
        right: 0px;
        transform: translateY(-50%);
        transition: 0.2s ease;
    }

    .faq-head::after {
        transform: translateY(-50%) rotate(90deg);
    }

    .faq-head.active::after {
        opacity: 0;
    }

    .faq-list .faq-head .title {
        font-size: 24px;
        line-height: 1.4;
        font-weight: 500;
    }

    .faq-list .faq-body {
        padding: 0 0 25px;
        display: none;
    }

    .faq-list .faq-body :is(p, li, td, th) {
        color: rgba(76, 76, 76, 1);
    }

    .faq-list .faq-body a {
        color: var(--content-color);
    }

    .faq-list .faq-body p+.table-responsive {
        margin-top: 15px;
    }

    .faq-list .faq-body p+ :is(ul, ol) {
        margin-top: 15px;
        margin-bottom: 0;
    }

    @media (max-width: 991.98px) {
        .faq-list .faq-head {
            padding: 20px 20px 20px 0px;
        }

        .faq-list .faq-head .title {
            font-size: 20px;
        }
    }
    @media (max-width: 575.98px) {
        .faq-list .faq-head .title {
            font-size: 18px;
        }
    }
/* Faq E */

/* Footer S */
    .footer-main {
        background-color: rgba(255, 231, 228, 1);
        padding: 50px 0px;
        background: linear-gradient(180deg, #400B04 19.8%, #1A0502 100%);
    }

    .footer-main a {
        color: #fff;
    }

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

    .ft-widget .ft-title {
        position: relative;
        font-size: 20px;
        line-height: 36px;
        padding-bottom: 15px;
        margin-bottom: 15px;
        display: block;
        color: #fff;
    }
    .ft-widget .ft-title::before {
        content: '';
        width: 100px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        position: absolute;
        bottom: 0px;
        left: 0px;
    }

    .ft-widget .ft-nav li a {
        font-size: 16px;
        font-weight: 400;
        line-height: 36px;
    }

    .ft-widget .ft-nav li + li {
        margin-top: 5px;
    }
    .ft-widget .ft-logo-box {
        max-width: 180px;
        display: block;
    }
    .ft-widget .icn-link-block {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        margin-top: 20px;
    }

    .ft-widget .icn-link-block .icon {
        display: flex;
    }
    .ft-widget .icn-link-block .icon svg {
        width: 25px;
        height: 25px;
    }
    .ft-widget .social-link-block {
        margin-top: 30px;
    }

    .ft-widget .social-link-block a {
        opacity: 0.5;
    }
    .ft-widget .social-link-block a:hover {
        color: #fff;
        opacity: 1;
    }

    .ft-widget .social-link-block .title {
        display: block;
        font-size: 18px;
        line-height: 26px;
        color: #fff;
        margin-bottom: 10px;
    }

    .ft-widget .social-link-block ul {
        display: flex;
        align-items: center;
        gap: 25px;
        font-size: 24px;
    }

    .meta-business-block {
        display: block;
        max-width: 120px;
        margin-top: 30px;
    }

    .copyright-text {
        padding: 50px 0 0;
        font-size: 14px;
        font-weight: 300;
        text-align: center;
        color: #fff;
        opacity: 1;
    }

    .copyright-text a {
        font-weight: 500;
    }

    .ft-faq-main {
        border-radius: 0px;
        padding: 0;
        padding-top: 25px;
        margin-top: 25px;
        border-top: 1px solid #fff;
    }

    .ft-faq-main .ft-faq-title {
        font-size: 24px;
        display: block;
        text-align: center;
        color: #fff;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .ft-faq-main .title-sc {
        margin-bottom: 20px;
    }

    .ft-faq-main .title-sc .main-title {
        font-size: 30px;
        font-weight: 500;
        line-height: normal;
    }

    .ft-faq-main .faq-list .faq-head {
        padding: 15px 0px 15px 0px;
        cursor: auto;
        /* background: #fff; */
    }
    .ft-faq-main .faq-head::before, .ft-faq-main .faq-head::after {
        opacity: 0;
    }
    .ft-faq-main .faq-list .faq-head .title {
        color: #a2a2a2;
        font-size: 18px;
        font-weight: 500;
    }

    .ft-faq-main .faq-list+.faq-list {
        border-top: 0px solid rgba(229, 224, 219, 1);
    }

    .ft-faq-main .faq-list .faq-body {
        padding: 0px 0px 20px;
        /* background: #fff; */
        /* border-top: 1px solid rgba(229, 224, 219, 1); */
        display: block !important;
    }
    .ft-faq-main .faq-list .faq-body :is(p, li, td, th, a) {
        color: #a2a2a2;
    }
    .ft-faq-main thead :is(th, td),
    .ft-faq-main tbody tr:nth-child(even) {
        background-color: transparent;
    }
    .ft-faq-main .faq-list .faq-body ul {
        list-style-type: auto;
        padding-left: 20px;
    }

    @media (min-width: 767.99px) {
        .footer-main .row > :is([class*=col-]:nth-child(1), [class*=col-]:nth-child(2), [class*=col-]:nth-child(3)) {
            max-width: 22%;
            flex: 0 0 22%;
            -ms-flex: 0 0 22%;
        }
        .footer-main .row > [class*=col-]:nth-child(4) {
            max-width: 33%;
            flex: 0 0 33%;
            -ms-flex: 0 0 33%;
        }
    }

    @media (min-width: 991.99px) {
        .footer-main .row > [class*=col-]:nth-child(1) {
            max-width: 25%;
            flex: 0 0 25%;
            -ms-flex: 0 0 25%;
        }
        .footer-main .row > [class*=col-]:nth-child(2) {
            max-width: 24%;
            flex: 0 0 24%;
            -ms-flex: 0 0 24%;
        }
        .footer-main .row > [class*=col-]:nth-child(3) {
            max-width: 26%;
            flex: 0 0 26%;
            -ms-flex: 0 0 26%;
        }
        .footer-main .row > [class*=col-]:nth-child(4) {
            max-width: 25%;
            flex: 0 0 25%;
            -ms-flex: 0 0 25%;
        }
    }
    @media (min-width: 1199.99px) {
        .footer-main .row > [class*=col-]:nth-child(1) {
            max-width: 29%;
            flex: 0 0 29%;
            -ms-flex: 0 0 29%;
        }
        .footer-main .row > [class*=col-]:nth-child(2) {
            max-width: 24%;
            flex: 0 0 24%;
            -ms-flex: 0 0 24%;
        }
        .footer-main .row > [class*=col-]:nth-child(3) {
            max-width: 26%;
            flex: 0 0 26%;
            -ms-flex: 0 0 26%;
        }
        .footer-main .row > [class*=col-]:nth-child(4) {
            max-width: 21%;
            flex: 0 0 21%;
            -ms-flex: 0 0 21%;
        }
    }
    @media (max-width: 767.98px) {
        .footer-main .row {
            row-gap: 30px;
        }

        .ft-faq-main {
            margin-top: 20px;
        }
        .copyright-text {
            padding-top: 20px;
        }

        .ft-widget .icn-link-block {
            margin-top: 50px;
        }

        .ft-widget .social-link-block {
            margin-top: 30px;
        }
    }

    @media (max-width: 575.98px) {
        .ft-widget .icn-link-block {
            margin-top: 30px;
        }
        .footer-main .row {
            row-gap: 20px;
        }
    }
/* Footer E */

/* Modal - Login/Signup/Forget S */
    .modal .btn-close {
        position: absolute;
        right: 15px;
        top: 15px;
        font-size: 30px;
        color: var(--primary-color);
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .loginSignupModal .modal-body {
        padding: 0;
    }



    .loginSignupModal-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .loginSignupModal-grid :is(.form-block, .image-block) {
        width: 50%;
    }

    .loginSignupModal-grid.fullformModal-grid :is(.form-block, .image-block) {
        width: 100%;
    }

    .loginSignupModal-grid .image-block {
        background-color: var(--primary-color);
        background-image: url(../../new/bulk-sms-service-provider-4.webp);
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .loginSignupModal-grid .form-block {
        height: 600px;
        overflow-y: auto;
    }

    .loginSignup-box {
        padding: 50px;
        display: none;
    }
    .loginSignup-box.requirement-box {
        padding: 40px 50px 20px;
    }

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

    .loginSignupModal-grid .btn-group {
        margin-bottom: 0;
        padding: 0 0 20px 0;
    }

    @media (max-width: 991.98px) {
        .loginSignupModal-grid .image-block {
            display: none;
        }

        .loginSignupModal-grid .form-block {
            height: auto;
            width: 100%;
        }

        .loginSignup-box {
            padding: 30px;
        }
        .loginSignupModal .title-form-group .title {
            width: calc(100% - 10px);
        }
        .modal .btn-close {
            /* box-shadow: 0 0 1.25rem rgb(31 45 61 / 31%); */
            border-radius: 50%;
            width: 30px;
            height: 30px;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            right: 10px;
            top: 36px;
            background-color: rgb(255 255 255);
            color: rgba(0, 0, 0, 1);
            z-index: 1;
        }
    }

    @media (max-width: 767.98px) {
        .loginSignup-box {
            padding: 20px;
        }
    }
/* Modal - Login/Signup/Forget E */

/* CMS S */
    .cms-wrap {
        padding: 50px;
        background-color: #fff;
        box-shadow: 0 0 1.25rem rgba(31, 45, 61, .05);
    }

    .cms-main h1 {
        font-size: 2.2rem;
        line-height: 54px;
    }

    .cms-main :is(ol, ul) {
        padding-left: 30px;
    }

    .cms-main ul {
        list-style-type: disc;
    }

    .cms-main ol {
        list-style-type: numeric;
    }

    .cms-main li {
        margin-top: 15px;
    }

    .gap-30 {
        height: 30px;
    }
/* CMS E */

/* Inner banner S */
    .inner-banner-section {
        background-size: cover;
        background-color: var(--primary-color);
    }

    /* .contact-inner-banner-section {
        background-image: url(../../img/map2.jpeg);
    }

    .about-inner-banner-section {
        background-image: url(../../img/fifth-sec.jpg);
        background-position: right;
    } */

    .sms-banner-section {
        position: relative;
    }
    .sms-banner-section::before, .sms-banner-section::after {
        content: '';
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .sms-banner-section::before {
        background-image: url(../../new/sms-abstract-1.svg);
        width: 267px;
        height: 217px;
        top: 0;
        left: 0;
    }
    .sms-banner-section::after {
        background-image: url(../../new/sms-abstract-2.svg);
        width: 230px;
        height: 126px;
        right: 0;
        bottom: 0;
    }

    .inner-banner-section .title-sc {
        margin-bottom: 0px;
    }

    .inner-banner-section .title-sc .main-title {
        color: #ffffff;
    }

    
    .inner-banner-section .channel-ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        position: relative;
    }
    .inner-banner-section .channel-ul::before,
    .inner-banner-section .channel-ul::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 50%;
        height: 47px;
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 0;
    }
    .inner-banner-section .channel-ul::before {
        background-image: url(../../new/sms-bg-line-1.svg);
        left: calc(50% - 400px);
        background-position: right center;
    }
    .inner-banner-section .channel-ul::after {
        background-image: url(../../new/sms-bg-line-2.svg);
        left: calc(50% + 450px);
        background-position: left center;
    }
    .inner-banner-section .channel-ul li {
        z-index: 1;
    }
    .inner-banner-section .channel-ul li a {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #ffffff;
        font-size: 20px;
    }
    .inner-banner-section .channel-ul li a img {
        width: 30px;
    }
    .inner-banner-section .channel-ul li:nth-child(2) a {
        font-size: 40px;
        pointer-events: none;
    }
    .inner-banner-section .channel-ul li:nth-child(2) a img {
        width: 50px;
    }
    .inner-banner-section .channel-ul li:not(:nth-child(2)) a {
        filter: blur(1.5px);
        transition: 0.3s;
    }
    .inner-banner-section .channel-ul li:not(:nth-child(2)) a:hover {
        filter: blur(0px);
    }

    .inner-banner-section.whatsapp-banner-section .channel-ul::before {
        left: calc(50% - 500px);
    }
    .inner-banner-section.whatsapp-banner-section .channel-ul::after {
        left: calc(50% + 490px);
    }

    @media (max-width: 1199.98px) {
        .inner-banner-section .channel-ul::before {
            left: calc(50% - 300px);
        }
        .inner-banner-section .channel-ul::after {
            left: calc(50% + 350px);
        }
        .inner-banner-section.whatsapp-banner-section .channel-ul::before, .inner-banner-section.whatsapp-banner-section .channel-ul::after {
            width: 200px;
        }
        .inner-banner-section.whatsapp-banner-section .channel-ul::before {
            left: calc(50% - 250px);
        }
        .inner-banner-section.whatsapp-banner-section .channel-ul::after {
            left: calc(50% + 250px);
        }
    }

    @media (max-width: 991.98px) {
        .inner-banner-section .channel-ul::before {
            left: calc(50% - 300px);
        }
        .inner-banner-section .channel-ul::after {
            left: calc(50% + 350px);
        }
        .sms-banner-section::after {
            width: 130px;
            height: 71px;
        }
        .sms-banner-section::before {
            width: 167px;
            height: 137px;
        }
        .inner-banner-section .channel-ul li a {
            font-size: 18px;
        }
        .inner-banner-section .channel-ul li a img {
            width: 25px;
        }
        .inner-banner-section .channel-ul li:nth-child(2) a {
            font-size: 25px;
        }
        .inner-banner-section .channel-ul li:nth-child(2) a img {
            width: 35px;
        }
        .inner-banner-section .channel-ul::before, .inner-banner-section .channel-ul::after {
            width: 150px;
        }
        .inner-banner-section .channel-ul::before {
            left: calc(50% - 130px);
        }
        .inner-banner-section .channel-ul::after {
            left: calc(50% + 180px);
        }
        .inner-banner-section.whatsapp-banner-section .channel-ul::before, .inner-banner-section.whatsapp-banner-section .channel-ul::after {
            width: 150px;
        }
        .inner-banner-section.whatsapp-banner-section .channel-ul::before {
            left: calc(50% - 170px);
        }
        .inner-banner-section.whatsapp-banner-section .channel-ul::after {
            left: calc(50% + 170px);
        }
    }

    @media (max-width: 767.98px) {
        .inner-banner-section .channel-ul::before, .inner-banner-section .channel-ul::after {
            width: 100px;
        }
        .inner-banner-section .channel-ul::before {
            left: calc(50% - 90px);
        }
        .inner-banner-section .channel-ul::after {
            left: calc(50% + 135px);
        }
        .inner-banner-section.whatsapp-banner-section .channel-ul::before, .inner-banner-section.whatsapp-banner-section .channel-ul::after {
            width: 100px;
        }
        .inner-banner-section.whatsapp-banner-section .channel-ul::before {
            left: calc(50% - 140px);
        }
        .inner-banner-section.whatsapp-banner-section .channel-ul::after {
            left: calc(50% + 140px);
        }
    }

    @media (max-width: 575.98px) {
        .inner-banner-section.sms-banner-section,
        .inner-banner-section.rcs-banner-section,
        .inner-banner-section.whatsapp-banner-section {
            padding: 30px 0px;
        }
        .inner-banner-section .channel-ul {
            flex-direction: column;
            gap: 20px;
        }
        .inner-banner-section .channel-ul::before, .inner-banner-section .channel-ul::after {
            display: none;
        }
        .sms-banner-section::before {
            width: 117px;
            height: 97px;
        }
        .sms-banner-section::after {
            width: 100px;
            height: 55px;
        }
    }
/* Inner banner E */

/* Contact Us S */
    .contact-wrap {
        box-shadow: 0 0 1.25rem rgba(31, 45, 61, .05);
        background-color: #ffffff;
    }

    .contact-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .contact-grid .contact-info-col {
        width: 350px;
        background-color: var(--primary-color);
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        padding: 40px 30px;
    }

    .contact-grid .contact-form-col {
        width: calc(100% - 350px);
        padding: 40px 40px 50px;
    }

    .captcha-row {
        align-items: center;
    }

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

    .captcha-img-wrap a {
        display: block;
    }

    .captcha-img {
        max-width: 130px;
    }

    .refresh-captcha {
        width: 25px;
    }

    .contact-info-col .info-top {
        flex-grow: 1;
    }

    .contact-info-col * {
        color: #fff;
    }

    .contact-info-col .social-ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
        font-size: 26px;
    }

    .contact-info-col .social-ul li a {
        display: block;
    }

    .contact-info-col .social-ul li a:hover {
        transform: translateY(-5px);
    }

    .info-block {
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .info-block :is(span, a) {
        display: block;
        line-height: normal;
    }

    .info-block a:hover {
        color: #ffffff;
        text-decoration: underline;
    }

    .info-block .icon-div {
        width: 25px;
        font-size: 22px;
    }

    .info-block .desc-div {
        width: calc(100% - 30px);
        font-size: 18px;
        padding-left: 10px;
    }

    @media (max-width: 991.98px) {
        .contact-grid :is(.contact-info-col, .contact-form-col) {
            width: 100%;
        }

        .contact-info-col .info-top {
            flex-grow: unset;
            display: flex;
            flex-wrap: wrap;
        }

        .contact-info-col .title-form-group {
            width: 100%;
        }

        .info-block {
            margin-top: 0px;
            width: 50%;
            margin-bottom: 25px;
        }

        .info-block .icon-div {
            width: 20px;
            font-size: 20px;
        }

        .info-block .desc-div {
            width: calc(100% - 20px);
            font-size: 16px;
        }

        .title-form-group .title {
            font-size: 22px;
        }

        .contact-info-col .social-ul {
            font-size: 20px;
        }
    }

    @media (max-width: 575.98px) {
        .contact-grid .contact-form-col {
            padding: 20px 20px 30px;
        }

        .contact-grid .contact-info-col {
            padding: 20px;
        }

        .info-block {
            width: 100%;
        }

        .captcha-img {
            max-width: 110px;
        }
    }
/* Contact Us E */

/* About Us S */
    .about-main .content-block {
        padding: 0 30px;
    }

    .about-main .content-block ul li {
        position: relative;
        padding-left: 20px;
    }

    .about-main .content-block ul li::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--primary-color);
        opacity: 0.8;
        position: absolute;
        top: 7px;
        left: 0;
    }

    .about-main .content-block ul li+li {
        margin-top: 15px;
    }

    .counter-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .counter-block .number {
        font-size: 40px;
        font-weight: 700;
    }

    .counter-block .info {
        font-size: 30px;
        font-weight: 500;
    }

    @media (max-width: 991.98px) {
        .about-main .content-block {
            padding: 30px 0 0;
        }

        .counter-block .number {
            font-size: 30px;
        }

        .counter-block .info {
            font-size: 20px;
            line-height: normal;
        }
    }

    @media (max-width: 767.98px) {
        .counter-main .row {
            gap: 30px;
        }
    }
/* About Us E */

/* Why Fast2SMS S */
    .why-fast2sms-grid-wrap .feature-block {
        height: calc(100% - 30px);
    }

    .why-fast2sms-grid-wrap .feature-block .title {
        font-size: 22px;
        line-height: 1.4;
    }
/* Why Fast2SMS E */

/* SMS S */
    .image-grid-main .grid-content-block {
        max-width: 550px;
    }
    .image-grid-main .grid-content-block .title-sc {
        text-align: left;
        align-items: flex-start;
    }
    .image-grid-main .grid-image-block {
        text-align: center;
    }
    .image-grid-main .grid-image-block img {
        margin: auto;
    }

    .sms-counter-block {
        padding: 15px;
    }
    .sms-counter-block .sms-counter-number {
        font-size: 48px;
        font-weight: 700;
        color: var(--primary-color);
    }
    .sms-counter-block .sms-counter-info {
        font-size: 18px;
        font-weight: 500;
    }

    @media (max-width: 1366.98px) {
        .sms-counter-block .sms-counter-number {
            font-size: 38px;
        }
    }
    @media (max-width: 767.98px) {
        .image-grid-main .grid-content-block {
            margin-bottom: 30px;
        }
        .image-grid-main .grid-content-block .title-sc {
            text-align: center;
            align-items: center;
            margin-bottom: 30px;
        }
        .image-grid-main .grid-content-block .btn-sc {
            text-align: center;
        }
        .row.row-reverse-mv {
            flex-direction: column-reverse;
        }
    }
/* SMS E */

/* Explore Products S */
    .explore-products-grid {
        display: flex;
        flex-wrap: wrap;
        max-width: 700px;
        margin: auto;
    }
    .explore-products-grid .ep-col {
        width: 33.33%;
        padding: 10px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-size: 18px;
        font-weight: 500;
    }
    .explore-products-grid .ep-col .title {
        color: var(--content-color);
        transition: 0.3s;
    }
    .explore-products-grid .ep-col:hover .title {
        color: var(--primary-color);
    }
    .explore-products-grid .ep-col img {
        width: 50px;
        margin-bottom: 5px;
    }

    @media (max-width: 767.98px) {
        .explore-products-grid .ep-col .title {
            font-size: 15px;
        }
        .explore-products-grid .ep-col img {
            width: 30px;
        }
    }
/* Explore Products E */

/* Pricing S */
    .tabcontent {
        display: block;
        -webkit-animation: fadeEffect 1s;
        animation: fadeEffect 1s;
    }
    @-webkit-keyframes fadeEffect {
        from {opacity: 0;}
        to {opacity: 1;}
    }
    @keyframes fadeEffect {
        from {opacity: 0;}
        to {opacity: 1;}
    }
    .pricing-title {
        display: block;
        font-weight: 500;
        font-size: 18px;
        margin-bottom: 30px;
    }
    .pricing-sidebar ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .pricing-sidebar ul > li {
        cursor: pointer;
    }
    .pricing-sidebar .tablinks {
        padding: 15px 16px 15px 50px;
        font-size: 16px;
        background-color: transparent;
        display: block;
    }
    .pricing-sidebar .tablinks.active {
        background-color: rgba(255, 233, 230, 1);
        border-color: rgba(255, 233, 230, 1);
    }
    .pricing-sidebar .tablinks .icon {
        width: 25px;
        height: 25px;
    }
    .pricing-sidebar .tablinks .icon img {
        width: 100%;
    }

    @media (max-width: 767.98px) {
        .pricing-sidebar {
            margin-bottom: 30px;
        }
        .pricing-title {
            margin-bottom: 15px;
        }
        .pricing-sidebar ul {
            overflow-x: auto;
            flex-direction: row;
        }
        .pricing-sidebar .tablinks {
            width: max-content;
            padding: 10px 16px 10px 35px;
            font-size: 15px;
        }
        .pricing-sidebar .tablinks .icon {
            width: 20px;
            height: 20px;
            left: 10px;
        }
    }
/* Pricing E */