@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.hero-section {
    padding: 90px 0 80px;
}

.w100 {
    width: 100%;
    float: left;
}

/* ---------- LEFT CONTENT ---------- */
.hero-title {
    font-size: 49px;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 16px;
    font-family: "Poppins", sans-serif;
}

.hero-title2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 16px;
    font-family: "Poppins", sans-serif;
}

.hero-subtitle {
    font-size: 31px;
    font-weight: 300;
    line-height: 36px;
    font-family: "Poppins", sans-serif;
}

.hero-desc {
       font-size: 16px;
    line-height: 24px;
    color: #000;
    width: 90%;
    font-family: "Poppins", sans-serif;
    margin: 24px 0 30px;
    font-weight: 400;
}
.swiper-container-free-mode>.swiper-wrapper{align-items: center;display: flex;gap: 9px;}
.tag-list button {
    font-size: 18px;
    padding: 6px 18px;
    border-radius: 100px;
    border: 1px solid #2497C0;
    background: #f7fbff;
    color: #2497C0;
    margin-right: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin-bottom: 9px;
    background-color: #DFF4FF;
}

/* ---------- CTA ---------- */
.cta-wrap {
    margin-top: 170px;
}
ul.changepass-blk li input, ul.changepass-blk li select, ul.changepass-blk li textarea,ul.rez7_bookingsearch input, ul.rez7_bookingsearch textarea, .bdr-bottom{box-shadow: none;}
.modal-header .close{border: 3px solid #000;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    padding: 0;
    margin: 5px;}
.btn-primary-custom {
    background: #000;
    color: #fff;
    padding: 11px 14px;
    border-radius: 28px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    color: #fff !important;
}

.btn-outline-custom {
    background: #f2f3f5;
    padding: 12px 24px;
    border-radius: 28px;
    font-size: 15px;
}

/* ---------- RIGHT CONTENT ---------- */
.stat-card {
    background: #f9a825;
    border-radius: 22px;
    padding: 15px;
    text-align: right;
    margin-bottom: 15px;
}

.stat-card h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Antonio", sans-serif;
    line-height: 100%;
    font-weight: 300;
}

.stat-card p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.image-card {
    border-radius: 24px;
    overflow: hidden;
    margin-top: 24px;
    position: relative;
}
.header{position: absolute;}

.image-badge {
    position: absolute;
    right: 18px;
    top: -45px;
    z-index: 1;
}

.badge-18 {
    position: absolute;
    background-color: #fff;
    left: -60px;
    top: 153px;
    padding: 6px;
    border-radius: 999px;
    /* capsule shape */
    z-index: 1;
}

.badge-18 img {
    width: 100px;
    height: 100px;
    display: block;
    border-radius: 999px;
}

.badge-18 img {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

/* ---------------- SECTION ---------------- */
.partner-section {
    padding: 90px 0 80px;
    background: #F5F6F9;
    margin-top: 150px;
}


.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
    animation: fadeUp 0.8s ease forwards;
}

.section-desc {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    font-weight: 400;
    animation: fadeUp 1s ease forwards;
    font-family: "Poppins", sans-serif;
}

/* ---------------- CARD GRID ---------------- */
.partner-card {
    border-radius: 18px;
    padding: 35px 30px 35px;
    height: 100%;
    transition: all 0.3s ease;
    animation: fadeUp 0.9s ease forwards;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Card Colors */
.bg-yellow {
    background: #fde68a;
}

.bg-orange {
    background: #fdc98b;
}

.bg-blue {
    background: #8ec7eb;
}

.bg-green {
    background: #93e8b0;
}

.bg-purple {
    background: #b6b9f2;
}

/* ---------------- CARD CONTENT ---------------- */
.card-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 14px;
}

.partner-card h5 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.partner-card p {
    font-size: 16px;
    line-height: 100%;
    color: #000;
    margin: 0;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    line-height: 25px;
}

/* ---------------- ANIMATION ---------------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= SECTION ================= */
.b2b-section {
        padding: 50px 0;
    padding-top: 100px;
}

/* ================= HEADER ================= */
.b2b-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 44px;
    animation: fadeUp 0.8s ease forwards;
}

.b2b-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    font-family: "Poppins", sans-serif;

}

/* ================= CARD GRID ================= */
.b2b-card {
    border-radius: 26px;
    padding: 36px 28px 34px;
    height: 100%;
    color: #fff;
    transition: all 0.35s ease;
    animation: fadeUp 0.9s ease forwards;
}

.b2b-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.15);
}

/* Card Backgrounds */
.bg-lavender {
    background: #a7ace8;
}

.bg-mint {
    background: #a8e6cf;
}

.bg-cyan {
    background: #7fd6ea;
}

/* ================= CARD CONTENT ================= */
.card-img {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.b2b-card h5 {
    font-size: 25px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

.b2b-card p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;

}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= SECTION ================= */
.onboard-section {
    padding: 90px 0 80px;
}

.onboard-title {
    font-size: 42px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 115px;
    animation: fadeUp 0.8s ease forwards;
}

/* ================= STEPS ================= */
.step-wrapper {
    position: relative;
}

.step-card {
    border-radius: 22px;
    padding: 26px 22px 24px;
    height: 100%;
    transition: all 0.35s ease;
    animation: fadeUp 0.9s ease forwards;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

/* Step Colors */
.bg-step-1 {
    background: #ffd08a;
}

.bg-step-2 {
    background: #9ad0ef;
}

.bg-step-3 {
    background: #b9baf6;
}

.bg-step-4 {
    background: #97e8b0;
}

/* ================= STEP CONTENT ================= */
.step-no {
    font-size: 72px;
    font-weight: 200;
    margin-bottom: 16px;
    line-height: 100%;
    font-family: "Poppins", sans-serif;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;

}

.step-desc {
    font-size: 16px;
        font-weight: 400;
    line-height: 22px;
    margin: 0;
    font-family: "Poppins", sans-serif;

}

/* ================= CONNECTOR LINES ================= */
.connector {
    position: absolute;
    top: -64px;
    left: 50%;
    background-image: url(../images/line-top.png);
    width: 320px;
    height: 120px;
    background-repeat: no-repeat;
}

.connector-down {

    background-image: url(../images/connector-down.png);
    width: 320px;
    height: 120px;
    background-repeat: no-repeat;
    position: absolute;
    right: -180px;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.15;
    }
}

.distribution-tabs {
    margin: 40px 0;
}

.distribution-tabs .tab-buttons {
    display: flex;
    gap: 0px;

}

.distribution-tabs .tab-btn {
    padding: 16px 32px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 16px 16px 0 0;
    background-color: #A1A5B2;
    color: #fff;
}

.distribution-tabs .tab-btn.active {
    color: #fff;
    background: #fff;
    font-weight: 400;
}

.distribution-tabs .tab-btn.active {
    background-color: #F89E23;
}

.distribution-tabs .tab-btn:hover:not(.active) {
    color: #1a1a1a;
}

.distribution-tabs .tab-content-wrapper {
    background: #fff;
    padding: 50px 40px;
    border-radius: 0 16px 16px 16px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); */
    border: 1px solid #F89E23;
}

.distribution-tabs .tab-pane {
    display: none;
}

.distribution-tabs .tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-subtitle {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
}

.section-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.buyer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.buyer-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 180px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buyer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.buyer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buyer-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.buyer-card-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.payment-grid1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.payment-card {
    border-radius: 25px;
    padding: 44px 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.payment-card-wide {
    grid-column: span 1;
}

.payment-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.payment-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* FAQ Section Styles */
.faq-sec {
    padding: 80px 0;
    background: #fff;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid #e5e7eb;
    border-radius: 100px;
    margin-bottom: 16px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d1d5db;
}

.faq-item.active {
    border-radius: 24px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    user-select: none;
}

.faq-question span:first-child {
    flex: 1;

}

.faq-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon .icon-plus,
.faq-icon .icon-close {
    position: absolute;
    color: #fff;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s ease;
}

.faq-icon .icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-icon .icon-close {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-item.active .faq-icon .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon .icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 24px 32px;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    font-family: "Poppins", sans-serif;
}

.map-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 60px;
    color: #fff;
    background-color: #2497C0;
    position: relative;
    overflow: hidden;
}

.map-section .content {
    width: 35%;
    z-index: 1;
}


.map-section .content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.map-section .content p {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.map-container {
    position: relative;
    width: 65%;
}

/* USA */
.pos-usa {
    top: 25%;
    left: 15%;
}

/* Europe */
.pos-europe {
    top: 20%;
    left: 45%;
}

/* India */
.pos-india {
    top: 42%;
    left: 58%;
}

/* Africa */
.pos-africa {
    top: 55%;
    left: 45%;
}

/* Australia */
.pos-australia {
    top: 66%;
    left: 75%;
}
.pos-mexico {
        top: 60%;
        left: 20%;
    }
    .pos-russia {
        top: 15%;
        left: 75%;
    }
.map-img {
    width: 100%;
    opacity: 0.9;
    display: block;
}

.comment {
    position: absolute;
    background: #fff;
    padding: 4px 6px;
    border-radius: 12px;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.6s ease;
}

.comment.show {
    opacity: 1;
    transform: scale(1);
}

.comment::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}

.commentuser {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.commentuser img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.commentuser p {
    padding: 0;
    margin: 0;
    font-size: 10px;
    font-weight: 400;
    line-height: 7px;
    color: #000;
}

.platformscalediv{    font-size: 16px;
    font-weight: 300;
    line-height: 100%;
    font-family: "Poppins", sans-serif;
    text-align: right;
    padding-bottom: 15px;}
.commentuser p b {
    font-weight: 600;
    display: block;
}

/* ---------- RESPONSIVE ---------- */

/* Tablets */
@media (max-width: 1500px) {

    .hero-title {
        font-size: 43px;
    }

    .hero-subtitle {
        font-size: 26px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .partner-section {
        padding: 40px 0 80px;
        background: #F5F6F9;
        margin-top: 50px;
    }

    .hero-title2 {
        font-size: 32px;
        line-height: 50px;
    }

    .b2b-section {
        padding: 50px 0;
    }

    .partner-card h5 {
        font-size: 21px;
    }

    .partner-card p {
        font-size: 16px;
    }

    .onboard-title {
        font-size: 32px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-no {
        font-size: 42px;
    }

    .payment-desc {
        font-size: 15px;
    }
}
@media screen and (min-device-width: 1024px) and (max-device-width: 1180px) { 
    .cta-wrap {
    margin-top: 30px;
}
}
@media (max-width: 1025px) {

    .map-section .content h2 {
        font-size: 32px;
    }

    /* USA */
.pos-usa {
    top: 15%;
    left: 10%;
}

/* Europe */
.pos-europe {
    top: 20%;
    left: 45%;
}

/* India */
.pos-india {
    top: 40%;
    left: 56%;
}

/* Africa */
.pos-africa {
    top: 60%;
    left: 43%;
}

/* Australia */
.pos-australia {
    top: 63%;
    left: 75%;
}
.pos-mexico {
        top: 60%;
        left: 20%;
    }
    .pos-russia {
        top: 10%;
        left: 75%;
    }
.commentuser img{width: 24px;height: 24px;}
.commentuser{gap: 4px;}
    .map-section .content p {
        font-size: 16px;
    }

    .map-section {
        min-height: auto;
    }

    .faq-question {
        font-size: 16px;
    }

    .tag-list button {
        font-size: 15px;
    }

    .stat-card h2 {
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .faq-sec{    padding: 0px 0;}
        .b2b-section {
        padding: 50px 0;
    }
    .row.mb-5.align-items-start{margin-bottom: 0px !important;}
    .distribution-tabs {
    margin: 15px 0;
}
.onboard-title{margin-bottom: 25px;}

    .buyer-grid,
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 2 cards per row */
    .onboard-section .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Remove curved connectors */
    .connector,
    .connector-down {
        display: none;
    }

    .step-card {
        margin-bottom: 24px;
    }

    .onboard-title {
        font-size: 32px;
        text-align: center;
    }

    .map-section .content {
        width: 100%;
    }

    .b2b-card {
        border-radius: 26px;
        padding: 25px 11px 14px;
    }

    .b2b-card h5 {
        font-size: 20px;
    }

    .partner-card p {
        font-size: 15px;
        line-height: 20px;
    }

    .partner-card h5 {
        font-size: 17px;
    }

    .section-title {
        font-size: 30px;
    }

    .hero-section {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 40px;
        line-height: 50px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .b2b-title {
        font-size: 28px;
        line-height: 36px;
    }

    .onboard-title {
        font-size: 28px;
    }

    .payment-grid1,.payment-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .payment-card-wide {
        grid-column: span 1;
    }

    .buyer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title2 {
        font-size: 32px;
        line-height: 35px;
        margin-bottom: 15px !important;
    }
.cta-wrap{margin-top:25px;}
    .map-section {
        flex-direction: column;
    }

    .content,
    .map-container {
        width: 100%;
    }

    .content {
        margin-bottom: 30px;
        text-align: center;
        width: 100%;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
        ul.navbar-nav {
        margin-right: 75px !important;
    }
    .badge-18 {
        position: absolute;
        background-color: #fff;
        left: -30px;
        top: 135px;
        padding: 6px;
        border-radius: 999px;
        z-index: 20;
    }
}

/* Mobile */
@media (max-width: 767px) {

/* USA */
.pos-usa {
    top: 20%;
    left: 5%;
}

/* Europe */
.pos-europe {
    top: 20%;
    left: 45%;
}

/* India */
.pos-india {
    top: 42%;
    left: 58%;
}

/* Africa */
.pos-africa {
    top: 55%;
    left: 45%;
}

/* Australia */
.pos-australia {
    top: 66%;
    left: 75%;
}
.pos-mexico {
        top: 65%;
        left: 10%;
    }
    .pos-russia {
        top: 15%;
        left: 80%;
    }
    .mdn{display: none;}
    .badge-18 {
        position: absolute;
        background-color: #fff;
        left: -30px;
        top: 136px;
    }

    .cta-wrap {
        margin-top: 60px;
    }

    .faq-sec {
        padding: 40px 0;
    }

    .faq-item {
        border-radius: 16px;
        /* card-style on mobile */
    }

    .faq-question {
        font-size: 16px;
        padding: 16px;
        gap: 12px;
    }

    .faq-question span:first-child {
        line-height: 1.4;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
    }

    .faq-icon .icon-plus,
    .faq-icon .icon-close {
        font-size: 24px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px 16px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 22px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-sec {
        padding: 0 0
    }

    .payment-card {
        padding: 28px 10px;
    }

    .payment-title {
        font-size: 17px;
    }

    .distribution-tabs .tab-btn {
        font-size: 16px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 24px;
    }

    .stat-card {
        height: auto;
        padding: 22px 15px;
        margin-bottom: 16px;
    }


    .cta-wrap a {
        display: block;
        width: 100%;
        margin-bottom: 12px;
        text-align: center;
    }

    .partner-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .section-desc {
        font-size: 15px;
        line-height: 24px;
    }

    .b2b-section {
        padding: 30px 0;
    }

    .b2b-title {
        font-size: 24px;
        line-height: 32px;
    }

    .b2b-desc {
        max-width: 100%;
        margin-top: 14px;
    }

    .card-img {
        width: 150px;
        margin-bottom: 5px;
    }

    .comment {
        font-size: 10px;
        padding: 4px 6px;
    }

    /* Hide some comments */
    .pos-africa,
    .pos-australia {
        display: none;
    }

    .onboard-section {
        padding: 60px 0;
    }

    .onboard-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .connector {
        display: none;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
    }

    .faq-icon .icon-plus,
    .faq-icon .icon-close {
        font-size: 28px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    /* Stack cards */
    .onboard-section .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .step-card {
        padding: 24px 20px;
        text-align: left;
    }

    .step-no {
        font-size: 28px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-desc {
        font-size: 14px;
        line-height: 1.5;
    }

    .onboard-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .distribution-tabs .tab-content-wrapper {
        border-radius: 0 0px 0px 0px;
        padding: 50px 10px;
        padding: 35px 9px;
    }
}

@media (max-width: 576px) {
    .badge-18 {
        position: absolute;
        background-color: #fff;
        left: 0px;
        top: 136px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .buyer-grid {
        grid-template-columns: 1fr;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .tab-content-wrapper {
        padding: 30px 20px;
    }

    .distribution-tabs .tab-btn {
        font-size: 15.7px;
    }

    .hero-title2 {
        font-size: 29px;
    }

    .map-section .content h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {

    .faq-question {
        font-size: 15px;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
    }

    .faq-icon .icon-plus,
    .faq-icon .icon-close {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .hero-title2 {
        font-size: 21px;
    }

    .b2b-desc {
        font-size: 16px;
    }

    .map-section {
        padding: 20px;
    }

    .onboard-title {
        font-size: 20px;
    }

    .distribution-tabs .tab-btn {
        font-size: 14px;
    }

}