* {
    box-sizing: border-box;
    font-family: "Josefin Sans", sans-serif;
}

.sec_sign_in_up .sec_sign_in_up_container {
    position: relative;
    width: 100%;
    background-color: #fff;
    min-height: 100vh;
    overflow: hidden;
}
.sec_sign_in_up .forms-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.sec_sign_in_up .signin-signup {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 75%;
    width: 50%;
    transition: 1s 0.7s ease-in-out;
    display: grid;
    grid-template-columns: 1fr;
    z-index: 5;
}
.sec_sign_in_up form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0rem 5rem;
    transition: all 0.2s 0.7s;
    overflow: hidden;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}
.sec_sign_in_up form.sign-up-form {
    opacity: 0;
    z-index: 1;
}
.sec_sign_in_up form.sign-in-form {
    z-index: 2;
}
.sec_sign_in_up .title {
    font-size: 2.2rem;
    color: #444;
    margin-bottom: 10px;
}
.sec_sign_in_up .input-field {
    max-width: 380px;
    width: 100%;
    background-color: #f0f0f0;
    margin: 10px 0 27px;
    height: 55px;
    border-radius: 55px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;
}
.sec_sign_in_up .input-field i {
    text-align: center;
    line-height: 55px;
    color: #acacac;
    transition: 0.5s;
    font-size: 1.1rem;
}

.sec_sign_in_up .pc_rotate .input-field i {
    rotate: 98deg;
}

.sec_sign_in_up .input-field input {
    outline: none;
    border: none;
    background: #f0f0f0;
    line-height: 1;
    font-weight: 400;
    font-size: 1.1rem;
    border-radius: 50%;
    color: #333;
}
.sec_sign_in_up .input-field input::placeholder {
    color: #aaa;
    font-weight: 500;
}
.sec_sign_in_up .input-field.password_input input {
    padding-right: 50px;
}
.sec_sign_in_up .input-field.password_input #togglePassword {
    position: absolute;
    right: 24px;
}
.sec_sign_in_up .social-text {
    padding: 0.7rem 0;
    font-size: 1rem;
}
.sec_sign_in_up .social-media {
    display: flex;
    justify-content: center;
}
.sec_sign_in_up .social-icon {
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0.45rem;
    color: #333;
    border-radius: 50%;
    border: 1px solid #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}
.sec_sign_in_up .social-icon:hover {
    color: var(--dark);
    border-color: var(--dark);
}
.sec_sign_in_up .btn {
    width: 150px;
    background-color: var(--dark);
    border: none;
    outline: none;
    background: #41be76;
    height: 49px;
    border-radius: 49px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0;
    cursor: pointer;
    transition: 0.5s;
}
.sec_sign_in_up .btn:hover {
    background-color: #fff;
    color: #41be76;
    border: 1px solid #41be76;
}
.sec_sign_in_up .panels-container {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.sec_sign_in_up .sec_sign_in_up_container:before {
    content: "";
    position: absolute;
    height: 2000px;
    width: 2000px;
    top: -10%;
    right: 48%;
    transform: translateY(-50%);
    background-image: linear-gradient(-45deg, #41be76 0%, #235341 100%);
    transition: 1.8s ease-in-out;
    border-radius: 50%;
    z-index: 6;
}
.sec_sign_in_up .image {
    width: 100%;
    transition: transform 1.1s ease-in-out;
    transition-delay: 0.4s;
}
.sec_sign_in_up .panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
    text-align: center;
    z-index: 6;
}
.sec_sign_in_up .left-panel {
    pointer-events: all;
    padding: 5rem 17% 2rem 12%;
}
.sec_sign_in_up .right-panel {
    pointer-events: none;
    padding: 3rem 12% 2rem 17%;
}
.sec_sign_in_up .panel .content {
    color: #fff;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.6s;
}
.sec_sign_in_up .panel h3 {
    font-weight: 600;
    line-height: 1;
    font-size: 1.5rem;
    color: #fff;
}
.sec_sign_in_up .panel p {
    font-size: 0.95rem;
    padding: 0.7rem 0;
    color: #fff;
    line-height: 1.5;
}
.sec_sign_in_up .btn.transparent {
    margin: 0;
    background: none;
    border: 2px solid #fff;
    width: 130px;
    height: 41px;
    font-weight: 600;
    font-size: 0.8rem;
}
.sec_sign_in_up .right-panel .image,
.sec_sign_in_up .right-panel .content {
    transform: translateX(800px);
}
/* ANIMATION */
.sec_sign_in_up .sec_sign_in_up_container.sign-up-mode:before {
    transform: translate(100%, -50%);
    right: 52%;
}
.sec_sign_in_up .sec_sign_in_up_container.sign-up-mode .left-panel .image,
.sec_sign_in_up .sec_sign_in_up_container.sign-up-mode .left-panel .content {
    transform: translateX(-800px);
}
.sec_sign_in_up .sec_sign_in_up_container.sign-up-mode .signin-signup {
    left: 25%;
}
.sec_sign_in_up .sec_sign_in_up_container.sign-up-mode form.sign-up-form {
    opacity: 1;
    z-index: 2;
}
.sec_sign_in_up .sec_sign_in_up_container.sign-up-mode form.sign-in-form {
    opacity: 0;
    z-index: 1;
}
.sec_sign_in_up .sec_sign_in_up_container.sign-up-mode .right-panel .image,
.sec_sign_in_up_container.sign-up-mode .right-panel .content {
    transform: translateX(0%);
}
.sec_sign_in_up .sec_sign_in_up_container.sign-up-mode .left-panel {
    pointer-events: none;
}
.sec_sign_in_up .sec_sign_in_up_container.sign-up-mode .right-panel {
    pointer-events: all;
}
@media (max-width: 870px) {
    .sec_sign_in_up .sec_sign_in_up_container {
        min-height: 800px;
        height: 100vh;
    }
    .sec_sign_in_up .signin-signup {
        width: 100%;
        top: 95%;
        transform: translate(-50%, -100%);
        transition: 1s 0.8s ease-in-out;
    }
    .sec_sign_in_up .signin-signup,
    .sec_sign_in_up .sec_sign_in_up_container.sign-up-mode .signin-signup {
        left: 50%;
    }
    .sec_sign_in_up .panels-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 2fr 1fr;
    }
    .sec_sign_in_up .panel {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 2.5rem 8%;
        grid-column: 1 / 2;
    }
    .sec_sign_in_up .right-panel {
        grid-row: 3 / 4;
    }
    .sec_sign_in_up .left-panel {
        grid-row: 1 / 2;
    }
    .sec_sign_in_up .image {
        width: 200px;
        transition: transform 0.9s ease-in-out;
        transition-delay: 0.6s;
    }
    .sec_sign_in_up .panel .content {
        padding-right: 15%;
        transition: transform 0.9s ease-in-out;
        transition-delay: 0.8s;
    }
    .sec_sign_in_up .panel h3 {
        font-size: 1.2rem;
    }
    .sec_sign_in_up .panel p {
        font-size: 0.7rem;
        padding: 0.5rem 0;
    }
    .sec_sign_in_up .btn.transparent {
        width: 110px;
        height: 35px;
        font-size: 0.7rem;
    }
    .sec_sign_in_up .sec_sign_in_up_container:before {
        width: 1500px;
        height: 1500px;
        transform: translateX(-50%);
        left: 30%;
        bottom: 68%;
        right: initial;
        top: initial;
        transition: 2s ease-in-out;
    }
    .sec_sign_in_up .sec_sign_in_up_container.sign-up-mode:before {
        transform: translate(-50%, 100%);
        bottom: 32%;
        right: initial;
    }
    .sec_sign_in_up .sec_sign_in_up_container.sign-up-mode .left-panel .image,
    .sec_sign_in_up
        .sec_sign_in_up_container.sign-up-mode
        .left-panel
        .content {
        transform: translateY(-300px);
    }
    .sec_sign_in_up .sec_sign_in_up_container.sign-up-mode .right-panel .image,
    .sec_sign_in_up
        .sec_sign_in_up_container.sign-up-
        mode
        .right-panel
        .content {
        transform: translateY(0px);
    }
    .sec_sign_in_up .right-panel .image,
    .sec_sign_in_up .right-panel .content {
        transform: translateY(300px);
    }
    .sec_sign_in_up .sec_sign_in_up_container.sign-up-mode .signin-signup {
        top: 5%;
        transform: translate(-50%, 0);
    }
}
@media (max-width: 570px) {
    .sec_sign_in_up form {
        padding: 0 1.5rem;
    }
    .sec_sign_in_up .image {
        display: none;
    }
    .sec_sign_in_up .panel {
        padding: 1.5rem 8%;
    }
    .sec_sign_in_up .panel .content {
        padding: 0.5rem 1rem;
    }
    .sec_sign_in_up .sec_sign_in_up_container {
        padding: 1.5rem;
    }
    .sec_sign_in_up .sec_sign_in_up_container:before {
        bottom: 72%;
        left: 50%;
    }
    .sec_sign_in_up .sec_sign_in_up_container.sign-up-mode:before {
        bottom: 28%;
        left: 50%;
    }
}

/* PC css */

.pc_qr_code .about-three-item {
    cursor: default;
}

.pc_api_banking .about-two-hero-right img {
    object-fit: contain;
}

.pc_payouts .w-webflow-badge {
    cursor: default !important;
}

#sign_up label {
    margin-bottom: -3px;
    font-weight: bold;
    display: block;
    color: red;
    position: absolute;
    bottom: -18px;
    line-height: 14px;
    font-size: 15px;
    left: 20px;
}

#sign_in label {
    margin-bottom: -3px;
    font-weight: bold;
    display: block;
    color: red;
    position: absolute;
    bottom: -18px;
    line-height: 14px;
    font-size: 15px;
    left: 20px;
}

/* custom css */

ul .pc_bullet {
    list-style-type: circle;
}

.pc_wrap_tick p {
    font-weight: bold;
}

.pc_wrap_tick .about-bullet-points {
    border-bottom: 1px solid var(--body);
}

.pc_onboarding .home-three-blog {
    padding-bottom: 80px;
    padding-top: 80px;
}

.pc_solutions .about-three-story-item {
    min-height: 245px;
}

/* Sticky navbar check */

.mobile__nav {
    background-color: transparent;
    position: static;
    z-index: 50;
    width: 100%;
    top: 0;
    padding: 20px;
}

.mobile__nav .nav-menu li {
    list-style: none;
}

.mobile__nav .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.scroll_fixed {
    background: #161616;
}
.mobile__nav.sticky {
    position: fixed;
    background: #31865a;
}

.pc_banking_account .home-one-service-box-new {
    padding-top: 50px;
}

.pc_accounting_page .service-one-service {
    padding-bottom: 90px;
}

.pc_accounting_page .home-two-blog-slider {
    padding-bottom: unset;
}

.pc_api_banking .home-three-about-new {
    padding: 30px 15px 90px;
}

.pc_api_banking .service-two-work {
    padding: 0px 15px 20px 15px;
}

.pc_escrow .about-one-about {
    padding: 60px 15px 20px 15px;
}

.pc_escrow .service-three-service {
    padding: 50px 15px;
}

.pc_smart_collect .service-three-vision {
    padding-top: 0;
}

.pc_smart_collect .about-two-value-new {
    padding-top: 90px;
}

.pc_smart_collect .service-one-strategy {
    padding: 90px 15px 90px;
}

.pc_smart_collect .service-one-service {
    padding-bottom: 90px;
}

.pc_instant_settlement .service-two-process {
    padding: 90px 15px 90px;
}

.pc_accounting_page .service-one-service-item {
    height: 100%;
    min-height: 368px;
}

.pc_escrow .service-three-what-we-do-slides {
    height: 100%;
    min-height: 360px;
}

.pc_qr_code .about-three-story-item {
    min-height: unset;
}

.pc_qr_code .service-three-service {
    padding: 90px 15px;
}

.color_white .change-color-white {
    color: #fff;
}

.footer-one p {
    color: #fff;
}

.footer-one-link {
    color: #fff;
}

.footer-one-newsletter-sub-heading-new {
    color: #41be76;
}

.iconlist_text,
.change-color-deep-grey {
    color: #fff;
}

.change-color-deep-grey span {
    color: #41be76;
}

.footer-one-link-text-color {
    color: #41be76;
}

.pg_35_header
    .main-button-nav.change-color-transperent.change-style.change-border {
    color: #fff;
}

.pg_header_but1 .button-overlay-nav.change-primary-color {
    background-color: #41be76 !important;
}

.pg_header_but1 .button-arrow-wrapper-nav.change-style.change-border-color {
    border-color: #fff;
}

.pc_banking_account .change-padding.change-color-white {
    color: #000;
}

.img_white {
    filter: brightness(0) invert(1);
}

.pc_accounting_page .heading-six {
    color: #235341;
}

.pc_api_banking .auto-fit {
    object-fit: cover;
}

.api_but .main-button-nav.change-color-transperent.change-style.style-two {
    background-color: #235341;
}

.api_but .button-overlay-nav.change-overlay-color {
    background-color: #41be76;
}

.api_but
    .main-button-nav
    .change-color-transperent:hover
    .button-arrow-wrapper-nav
    .change-style
    .treansperent-white {
    border-color: #fff !important;
}

.home-three-support-heading .change-padding.change-color-white {
    color: #fff;
}

.heading-three-new .hover-effect:focus {
    color: #235341 !important;
}

.pc_escrow .auto-fit-new {
    object-fit: contain;
}

.escrow_sec .change-padding.change-color-white {
    color: #fff;
}

.smart_color .change-padding.change-color-white {
    color: #fff;
}

.service-one-strategy-item .item-two:hover {
    background-color: #41be76 !important;
}

.pc_smart_collect .home-one-about-new-image {
    flex: none;
}

.pc_smart_collect .auto-fit-new {
    object-fit: contain;
}

.rgt_hover:hover .service-one-service-icon .icon-overlay {
    background-color: #41be76 !important;
}
.rgt_hover .service-one-service-icon .icon-overlay {
    background-color: #41be763d !important;
}

.pc_instant_settlement .auto-fit-new {
    object-fit: contain;
}

.pc_instant_settlement .button-arrow-wrapper-nav.change-style {
    border: 1px solid #fff !important;
}

.pc_instant_settlement .about-two-value-wrapper {
    justify-content: space-around;
}

.pc_qr_code .button-arrow-wrapper-nav.change-style {
    border: 1px solid #fff !important;
}

.pc_qr_code .auto-fit {
    object-fit: contain;
}

.pc_invoice .change-padding.change-color-white {
    color: #fff;
}

.pc_invoice .auto-fit {
    object-fit: contain;
}

.pc_payouts .auto-fit {
    object-fit: cover;
}

.pc_vendor_payments .change-padding.change-color-white {
    color: #fff;
}

.pc_onboarding .change-padding.change-color-white {
    color: #fff;
}

.pc_onboarding .auto-fit-new {
    object-fit: contain;
}

.pc_onboarding .button-arrow-wrapper-nav.change-style {
    border: 1px solid #fff !important;
}

.pc_pricing .change-padding.change-color-white {
    color: #fff;
}

.pc_solutions .change-padding.change-color-white {
    color: #fff;
}

.index_flow .change-padding.change-color-white {
    color: #fff;
}

.img_contain .auto-fit {
    object-fit: contain;
}

.get_int .change-padding.change-color-white {
    color: #fff;
}

.stream_your .change-padding.change-color-white {
    color: #fff;
}

.padding_btm {
    padding-bottom: 5px;
}
.iconlist_icon img {
    min-width: 24px;
    max-width: 24px;
}

.home-three-tag-big-wrapper-new {
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}
.pad_top {
    padding-top: 40px;
}

.onboarding_sec .about-three-story-item {
    min-height: unset;
}

.home-one-hero-left .home-three-tag-big-wrapper.change-display {
    justify-content: start;
}

.home-one-about-text .home-three-tag-big-wrapper.change-display {
    justify-content: start;
}
.pc_banking_account .auto-fit-new {
    object-fit: contain;
}

.acc_sec .home-three-tag-big-wrapper {
    justify-content: center;
}

.home-one-latest-blogs .home-three-tag-big-wrapper {
    justify-content: center;
}

.service-one-service .home-three-tag-big-wrapper {
    justify-content: center;
}

.pc_api_banking .about-two-hero-wrapper {
    padding-top: 0;
}
.pc_api_banking ul li {
    color: #000;
}
.escrow_new .home-three-tag-big-wrapper {
    justify-content: start;
}

.pc_escrow .auto-fit {
    object-fit: contain;
}

.escrow_sec .home-three-tag-big-wrapper {
    justify-content: center;
}

.smart_collect .home-three-tag-big-wrapper.change-display {
    justify-content: start;
}

.it_works .home-three-tag-big-wrapper.change-display {
    justify-content: start;
}

.top_int {
    padding-top: 40px;
}

.service-one-stretegy-tick img {
    filter: invert(54%) sepia(66%) saturate(538%) hue-rotate(91deg)
        brightness(95%) contrast(90%);
}

.service-two-business-strategy-main-new img {
    filter: invert(54%) sepia(66%) saturate(538%) hue-rotate(91deg)
        brightness(95%) contrast(90%);
}

.it_works_new .home-three-tag-big-wrapper.change-display {
    justify-content: center;
}
.pay_meth .home-three-tag-big-wrapper.change-display {
    justify-content: start;
}

/* .benefits_sec .home-three-tag-big-wrapper.change-display {
    justify-content: start;
} */

.banner_qr .home-three-tag-big-wrapper.change-display {
    justify-content: start;
}

.qr_code .home-three-tag-big-wrapper {
    justify-content: center;
}
.billing_new .home-three-tag-big-wrapper.change-display {
    justify-content: start;
}

.payout_com .home-three-tag-big-wrapper.change-display {
    justify-content: start;
}

.banner_vendor .home-three-tag-big-wrapper.change-display {
    justify-content: start;
}

.gaming_new .home-three-tag-big-wrapper.change-display {
    justify-content: start;
}

.pc_solutions .heading-six {
    color: #235341;
}

.current_acc .home-three-tag-big-wrapper.change-display {
    justify-content: start;
}

.settle_pro .heading-five-new {
    color: #235341 !important;
}

.change-padding.text-align-center {
    color: #fff;
}

.pc_qr_code .change-padding.text-align-center {
    color: #000;
}

.pc_contact_us .change-padding.text-align-center {
    color: #000;
}

.index_new .change-padding.text-align-center {
    color: #000;
}

.acc_sec .change-padding.text-align-center {
    color: #000;
}

.settle_pro .change-padding.text-align-center {
    color: #000;
}

.purpose_sec .change-padding.text-align-center {
    color: #000;
}

.benefits_sec .change-padding.text-align-center {
    color: #000;
}

.real_time .change-padding.text-align-center {
    color: #000;
}

.vendor_pay .change-padding.text-align-center {
    color: #000;
}

.setup_pay .change-padding.text-align-center {
    color: #000;
}

.onboarding_sec {
    padding-top: 40px;
}

.about-one-analytics-counter-item.about-three-analytics-counter:hover {
    background-color: #41be76 !important;
}

.menu-font-new.header-one.w--current {
    position: relative;
    color: #000;
}
.menu-font-new.header-one.w--current::before {
    content: "";
    position: absolute;
    bottom: -12px;
    width: 100%;
    height: 2px;
    background-color: #000;
}

.footer-links-box .w--current {
    position: relative;
    color: #000;
}
.footer-links-box .w--current::before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: -8px;
    height: 2px;
    background-color: #000;
}

.home-one-articles-hover .home-one-blog-button-arrow {
    transition: all 0.3s ease-in-out;
}
.home-one-articles-hover:hover .home-one-blog-button-arrow {
    background-color: #41be76 !important;
}

.counters_sec .about-three-counter-text {
    color: #000 !important;
}

.counters_sec .counter-number-item.change-fontstyle {
    color: #000 !important;
}

.left-arrow.blog-change-position:hover {
    background-color: #235341 !important;
}

.right-arrow.blog-change-position:hover {
    background-color: #235341 !important;
}

.service-three-testimonial-left-arrow.service-three-change-position:hover {
    background-color: #235341 !important;
}

.service-three-testimonial-right-arrow.service-three-change-position:hover {
    background-color: #235341 !important;
}
.escr_new .change-padding.text-align-center {
    color: #000;
}

.it_works_new .change-padding.text-align-center {
    color: #000;
}

.payouts_new .change-padding.text-align-center {
    color: #000;
}

.color_invert .heading-five-new.change-color-white:hover {
    color: #41be76;
}

.padding_common {
    padding-top: 60px;
}
.vendor_pay.home-three-blog {
    padding-bottom: unset;
}

.pc_onboarding .pricing-one-hero-heading-new .text-gredient {
    background-image: linear-gradient(100deg, #235341, #41be76);
}

.padding_common_new {
    padding-top: 150px;
}

.padding_btm_sc {
    padding-bottom: 30px;
}

.img_width img {
    width: 100%;
}

.footer__links li {
    list-style-type: none;
    background: none !important;
    padding-left: 0;
}

.footer__links li a {
    display: inline;
}

.footer__links {
    grid-row-gap: unset;
}
.solution__online-store .service-one-strategy-item {
    background-color: transparent !important;
}
.solution__online-store .service-one-strategy-item:hover {
    background-color: #41be76 !important;
}

.color_new {
    color: #235341 !important;
}

.service-one-pricing-plan-box-two:hover .color_new {
    color: #235341 !important;
}

.service-one-pricing-plan-box-two:hover .service-one-pricing-line {
    background-color: #235341 !important;
}

.main-button-nav:hover .button-arrow-wrapper-nav {
    transform: translateX(-10px) !important;
}

/* ma */
.about-two-hero-wrapper .main-button-nav.change-color-transperent.change-style {
    color: #235341;
    border-color: #235341;
}
.pc_payouts .auto-fit {
    object-fit: contain;
}
.about-two-value-new.benefits_sec .home-three-tag-big-wrapper.change-display {
    justify-content: flex-start;
}

h2,
h1 {
    text-transform: capitalize;
}
.style-guied-typography ul {
    list-style-type: disc;
    padding-left: 20px;
    grid-row-gap: 0px;
}
.style-guied-typography ul li {
    padding-left: 0;
    color: #000;
}
.contact-one-box-item a:hover {
    color: #41be76;
}
.sweet-alert button {
    background: #235341 !important;
}
.sweet-alert button:hover {
    color: #000 !important;
}
.service-one-strategy {
    padding: 75px 0 75px;
}
.service-three-pricing-section {
    padding: 75px 15px;
}
.home-one-about-new-image,
.about-two-hero-wrapper {
    justify-content: center;
}
.about-three-value .about-one-value-heading {
    padding-bottom: 40px;
}
.about-one-value-heading {
    max-width: 100%;
}
.home-one-about-and-service,
.home-two-question-heading {
    padding-bottom: 0;
}
.service-three-service-main {
    padding-top: 0;
}
.about-three-story-new {
    padding-bottom: 70px;
}
.pc_escrow .home-one-support-heading {
    padding-bottom: 60px;
}
.about-three-value,
.service-two-service,
.home-two-question.change-padding-top,
.service-three-service,
.about-three-value-modified,
.pc_qr_code .service-three-service,
.about-one-hero-banner {
    padding: 60px 15px 70px;
}

.servive-three-service-block,
.home-two-blog-slide-main {
    cursor: default;
}
.service-one-service-item {
    min-height: 100%;
}
.about-three-story-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #41be76;
}
.contact-one-submit-button:hover {
    color: #235341;
    background-color: #fff;
    border: 1px solid #235341;
}

.pc_solutions .service-one-what-we-provide {
    padding-top: 80px;
    padding-bottom: unset;
}

.pc_solutions .service-one-services {
    padding-bottom: 80px;
}

.service-two-service {
    padding: 60px 15px 70px;
}

.pc_payouts .about-two-value-wrapper {
    padding-bottom: 80px;
}

.pc_payouts .service-two-service {
    padding: 60px 15px 25px;
}

.home-two-question.change-padding-top {
    padding: 70px 15px 20px;
}

.pc_smart_collect .home-one-about {
    padding: 70px 15px 20px;
}

.pc_smart_collect .service-one-service-item {
    padding: 30px 20px;
}

.pc_instant_settlement .home-one-about {
    padding: 0 15px 20px;
}

.payment-gateway .about-one-testimonial-main {
    padding-top: 40px;
}

.pc_banking_account .home-one-hero-main-wrapper {
    padding-top: 0;
}

.pc_api_banking .home-three-tag-big-wrapper {
    padding-top: 60px;
    padding-bottom: 10px;
}

.acc_sec .home-one-support-heading {
    padding-bottom: 25px;
}

.pc_accounting_page .home-one-articles-hover {
    justify-content: space-around;
}

.pc_escrow .home-one-about {
    padding: 50px 15px 50px;
}

.pc_smart_collect .auto-fit {
    object-fit: contain;
}

.pc_qr_code .about-three-story-new {
    padding-top: 60px;
}

.footer_inline {
    display: inline-flex;
    gap: 12px;
    align-items: flex-start;
}

@media screen and (max-width: 767px) {
    .pc_smart_collect .service-three-vision-text {
        padding-bottom: unset;
    }

    .pc_smart_collect .about-two-value-new {
        padding-top: unset;
    }
    .pc_instant_settlement .service-two-process {
        padding: 20px 15px 20px;
    }
    .home-three-tag-big-wrapper {
        padding-top: 10px;
    }
    .home-one-support {
        padding-bottom: 10px;
    }
    .pc_qr_code .about-three-story-new{
        padding-bottom  : unset;
    }
    .about-three-value-modified{
        padding: 50px 15px 10px;
    }
    .home-two-question.change-padding-top{
        padding: 10px 15px 20px;
    }
}
