.customer-title {
    color: #20B038;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 12px;
    font-weight: 400;
}

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

.cs-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 15px;
}

.cs-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px 8px;
    background-color: #252F45;
    /* background-color: red; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, .07), 0 4px 5px rgba(0, 0, 0, .06), 0 1px 10px rgba(0, 0, 0, .1);
    text-align: center;
    cursor: pointer;
    line-height: 1.1em;
    border-radius: 10px;
}

.cs-image {
    display: flex;
    flex-grow: 1;
    align-items: center;
}

.cs-caption {
    height: 2.8em;
    margin-top: 15px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}

.sub-title {
    color: #20B038;
    font-weight: 400;
    letter-spacing: .15em;
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 5px;
    text-align: center;
}

.subscribe-container {
    background-color: #20B038;
    justify-content: center;
    align-items: center;
    padding: 15px 0px 30px;
    overflow-x: hidden;
}

.subscribe-title {
    color: #fff;
    font-weight: 400;
    letter-spacing: .15em;
    font-size: 12px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.subscribe-social-medias {
    gap: 40px;
}

.footer-container {
    text-align: center;
    overflow-x: hidden;
}

.description-logo {
    width: 120px;
}

.description-text {
    color: hsla(0, 0%, 100%, .7);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 16px;
}

.partnership-icons {
    width: 70px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.sitemap-links {
    display: flex;
    flex-flow: column wrap;
    text-align: left;
    height: 215px;
}

.sitemap-link {
    font-weight: 300;
    width: 50%;
    padding: 3px 0 3px 15px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.sitemap-link:hover {
    color: #20B038;
}

.lg-oneline {
    align-items: center;
    margin-bottom: 10px;
}

.h4 {
    margin-bottom: .5rem;
    font-weight: 700;
    line-height: 1.2;
    font-size: 1.5rem;
}

.learn-more {
    color: #20B038;
}

.payment-channels-track-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.payment-channels-track {
    width: 100%;
}

.payment-box {
    display: flex;
    gap: 10px;
    animation: train-mobile 20s linear infinite;
}

.channel-img {
    width: 70px;
}

@keyframes train-mobile {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-500px);
        /* ✅ Adjust based on actual mobile image row width */
    }
}

.footer-copywrite-section {
    /* height: 120px; */
    width: 100%;
    text-align: center;
    font-weight: 300;
	padding-top: 10px;
}
.footer-copywrite-section a img {
	height: 60px;
}
.footer-copywrite {
    font-weight: 300;
    font-size: 14px;
    justify-content: end;
}

.footer-tnc-divider {
	margin-left: 15px;
	display: inline-block;
	white-space: nowrap;
	margin-bottom: 5px;
}

.footer-tnc-divider a {
	color: #999;
}
.footer-tnc-divider a:hover {
    text-decoration: underline;
}

.footer-flag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.footer-copywrite-section a {
    float: left;
}

@media(max-width: 576px) {}

@media (max-width:768px) {
    .cs-container {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-gap: 15px;
    }

}

@media (min-width: 992px) {
    .cs-container {
        display: flex;
        flex-wrap: wrap;
        grid-gap: 0px;
    }

    .cs-card {
        width: 135px;
        border-radius: 16px;
        margin-right: 24px;
        margin-bottom: 24px;
    }

    .text-lg-left {
        text-align: left !important;
    }

    .footer-container {
        text-align: left;
    }

    .sitemap-links {
        height: 113px;
    }

    .sitemap-link {
        width: 25%;
        padding-left: 0;
    }

    .lg-oneline {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .payment-box {
        display: flex;
        gap: 20px;
        animation: train-desktop 20s linear infinite;
    }

    .channel-img {
        width: 100px;
        flex-shrink: 0;
    }

    /* Keyframe: move left and reset from right */
    @keyframes train-desktop {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .footer-copywrite-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-copywrite {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        font-size: 14px;
    }

    .footer-tnc {
        display: flex;
        flex-direction: row;
    }
}