@keyframes slides {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos-marquee {
    overflow: hidden;
    padding: 21px 0px;
    white-space: nowrap;
    position: relative;
    border: 1px solid #191919;
    border-radius: 10px;
    width: 100%;
}

.logos-marquee:before,
.logos-marquee:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
}

.logos-marquee:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(0 0 0));
}

.logos-marquee:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(0 0 0));
}

.logo_items {
    display: flex;
    gap: 24px;
    animation: 30s slides infinite linear;
}

.logos:hover .logo_items {
    animation-play-state: paused;
}

.logo_items img {
    height: 42px;
}


/*searchbox*/

.custom_search {
    color: #FFF !important;
    background: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid #FFF;
    width: 240px !important;
}

.custom_search:focus {
    box-shadow: none;
    background: transparent;
    border-bottom: 2px solid #FFF;
}

.custom_search+.search_span {
    position: absolute;
    bottom: 0;
    width: 0;
    left: 50%;
    transition: width 0.5s, left 0.5s;
}

.custom_search:focus+.search_span {
    width: 240px;
    left: 0;
    border-bottom: 2px solid #c128ea;
}

.custom_search::placeholder {
    color: #FFF !important;
}

.search_button {
    background: #8e24aa;
    width: 100px;
    border: 0;
}

.search_button:focus {
    border: 0;
    box-shadow: none;
}

.search_button:active {
    background: #8e24aa !important;
    box-shadow: none !important;
}

.search_button:hover {
    background: #8e24aa;
}

/*ripple effect*/

.tx--white {
    color: #fff;
}

[ripple] {
    position: relative;
    overflow: hidden;
}

[ripple] .ripple--container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

[ripple] .ripple--container span {
    transform: scale(0);
    border-radius: 100%;
    position: absolute;
    opacity: 0.30;
    background-color: #fff;
    animation: ripple 1000ms;
}

@-moz-keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@-webkit-keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@-o-keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

/*navbar*/

.navbar {
    /*background: #222 !important;*/
    line-height: 2rem !important;
    border-radius: 56px;
}

.navbar .navbar-brand {
    color: #FFF !important;
}

.navbar-nav .active a {
    color: #dbfb36 !important;
}

.navbar-nav .nav-item .nav-link {
    color: #FFF;
    font-size: 16px;
    padding: .8rem 2.5rem;
}

@media(max-width:767px) {
    .navbar-nav .nav-item .nav-link {
        padding: .4rem 2.5rem !important;
    }
}


.dropdown-menu {
    background: #22221E;
}

.dropdown-menu .dropdown-item {
    color: #FFF;
    transition: all 0.2s;
}

.cus-dropdown-menu .dropdown-item:hover,
.cus-dropdown-menu .dropdown-item.active,
.cus-dropdown-menu .dropdown-item:active {
    color: #dbfb36;
    background: none;
    /* background: #dbfb36; */
    /* color: #050505; */
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    background: #dbfb36;
    color: #050505;
}

.navbar-toggler-icon {
    color: #FFF !important;
}

.navbar-dark .navbar-toggler {
    border-color: #FFFFFF !important;
}

.gen-table {
    max-width: 900px;
    margin: 0 auto 60px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gen-col {
    width: 45%;
    text-align: left;
}

.gen-row {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
    color: #aaa;
    font-weight: 500;
}

.gen-row span {
    color: #00ffc3;
    font-weight: 600;
}

.divider {
    width: 1px;
    background: rgb(255 255 255);
    margin: 0 10px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.stats-card {
    background: rgba(20, 20, 20, 0.85);
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    text-align: left;
}

.stats-card .item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 255, 160, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 14px;
    color: #00ff9d;
}

.item h6 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.item p {
    margin: 0;
    color: #9fc;
    font-size: 0.9rem;
}

@media(max-width:767px) {
    .gen-col {
        width: 100%;
        margin-bottom: 20px;
    }

    .stats-card {
        width: 90%;
    }
}

.cus-faq-img {
    display: block;
    margin: auto;
    width: 300px;
}

@media (min-width:350px) and (max-width:600px) {
    .cus-faq-img {
        width: 200px;
    }
}

@media(max-width:350px) {
    .cus-faq-img {
        width: 170px;
    }
}

.faq-title-41 {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 50px;
    background: linear-gradient(to right, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.card-41 {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0;
    margin-bottom: 0;
}

.card-41-header {
    background-color: transparent;
    border: none;
    padding: 25px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.card-41-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-link-41 {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.btn-link-41:hover {
    color: #00ff88;
    text-decoration: none;
}

.btn-link-41:focus {
    text-decoration: none;
    box-shadow: none;
}

.toggle-icon-41 {
    width: 32px;
    height: 32px;
    border: 2px solid #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.3s;
}

.toggle-icon-41::before {
    content: '';
    width: 12px;
    height: 2px;
    background-color: #00ff88;
    position: absolute;
}

.toggle-icon-41::after {
    content: '';
    width: 2px;
    height: 12px;
    background-color: #00ff88;
    position: absolute;
    transition: transform 0.3s;
}

.collapsed .toggle-icon-41::after {
    transform: rotate(0deg);
}

.btn-link-41:not(.collapsed) .toggle-icon-41::after {
    transform: rotate(90deg);
}

.btn-link-41:not(.collapsed) .toggle-icon-41 {
    transform: rotate(45deg);
}

.card-41-body {
    background-color: transparent;
    color: #b0b0b0;
    padding: 0 20px 25px 20px;
    font-size: 1rem;
    line-height: 1.6;
}

/*        .collapse.show {
            animation: slideDown 0.3s ease-out;
        }*/
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cus-circulation-lp {
    width: 1000px;
    margin: auto;
}

.cus-circulation-1100-lp {
    width: auto;
    margin: auto;
}

@media (max-width: 700px) {
    .cus-circulation-lp {
        width: 100%;
    }

    .side-buttons {
        margin-top: 23px;
    }
}

:root {
    --bg-dark: #0f0f10;
    --card-dark: rgba(30, 30, 30, 0.9);
    --muted: #9aa0a6;
    --neon: #2ff08a;
    --neon-2: #00f0c2;
    --accent: linear-gradient(90deg, #79f3c6 0%, #a8ff6e 60%);
    --glass: rgba(255, 255, 255, 0.03);
}