:root {
    --primary-font: "Onest", sans-serif;
    /* --primary-font: 'Roboto', sans-serif; */

    --primary-color: rgba(234, 86, 67, 1);
    --heading-color: rgba(0, 0, 0, 1);
    --content-color: rgba(0, 0, 0, 1);
    --link-color: rgba(234, 86, 67, 1);

    --btn-primary-bg-color: rgba(255, 0, 0, 1);
    --btn-primary-bg-color-hover: rgba(234, 86, 67, 1);

    --bg-grey-dark: rgba(255, 233, 230, 1);
    --bg-grey: rgba(245, 245, 245, 1);

    --header-height: 65px;
    --header-main-y-space: 7px;
}

/* Global S */
    body {
        padding-top: var(--header-height);
    }
    #footer,
    nav.navbar {display: none;}
    #content {position: static;}
    @media (max-width: 1062px) {
        body, .navbar-fixed-top, .navbar-fixed-bottom {
            min-width: unset;
        }
    }

    .header-main ol, 
    .header-main ul,
    .footer-main ul, 
    .footer-main ol {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    .btn {
        padding: 10px 16px;
        border-radius: 6px;
        border: 1px solid;
        transition: all 0.3s;
        font-weight: 500;
        position: relative;
        font-size: 20px;
        display: inline-block;
        text-align: center;
    }
    @media (max-width: 991.98px) {
        .btn {
            font-size: 16px;
        }
    }
    .btn.btn-primary {
        background-color: var(--btn-primary-bg-color);
        color: #fff;
        border-color: var(--btn-primary-bg-color);
    }
    .btn.btn-primary:hover {
        background-color: var(--btn-primary-bg-color-hover);
        color: #fff;
        border-color: var(--btn-primary-bg-color-hover);
    }

    .btn.btn-secondary {
        background-color: transparent;
        border-color: var(--btn-primary-bg-color);
        color: var(--btn-primary-bg-color);
    }
    .btn.btn-secondary:hover {
        background-color: var(--btn-primary-bg-color);
        border-color: var(--btn-primary-bg-color);
        color: var(--heading-color);
    }

    .btn.btn-grey {
        background-color: rgba(243, 243, 243, 1);
        border-color: rgba(243, 243, 243, 1);
        color: var(--heading-color);
    }
    .btn.btn-grey:hover {
        background-color: rgb(231 227 227);
        border-color: rgb(231 227 227);
        color: var(--heading-color);
    }

    .btn.btn-white {
        background-color: #fff;
        border-color: #fff;
        color: var(--btn-primary-bg-color);
    }
    .btn.btn-white:hover {
        background-color: rgb(231 227 227);
        border-color: rgb(231 227 227);
        color: var(--heading-color);
    }

    .btn.btn-white-outline {
        background-color: transparent;
        border-color: #fff;
        color: #ffffff;
    }
    .btn.btn-white-outline:hover {
        background-color: #fff;
        border-color: #fff;
        color: var(--heading-color);
    }
    .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;
        }
    }

    .visibility-hidden {
        visibility: hidden;
    }
/* 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;
        top: 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% - 45px);
        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 */

/* 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: 0px;
    }

    .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;
        }
    }
    html {
        height: auto !important;
        min-height: 100% !important;
        overflow-y: auto !important;
    }
/* Footer 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 */

/* Login Section S */
    .loginSignupModal-grid {
        display: flex;
        flex-wrap: wrap;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(229, 224, 219, 1);
    }

    .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: 100%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .loginSignupModal-grid .form-block {
        min-height: 600px;
        padding: 50px;
        display: flex;
        flex-direction: column;
    }

    .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;
    }
    .form-check .icheckbox_square-blue.checked ~ .checkmark {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }
    .form-check .icheckbox_square-blue.checked ~ .checkmark::after {
        content: "";
        position: absolute;
        left: 5px;
        top: 0;
        width: 8px;
        height: 13px;
        border: solid #fff;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
    }

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

        .loginSignupModal-grid .form-block {
            min-height: auto;
            width: 100%;
            padding: 20px;
        }

        .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;
        }
    }
/* Login Section E */