:root {
    --white: #fff;
    --ctBlack: #000;
    --hoverColor: #1d1c20;
	--mainDarkColor: #07070b;
    --borerColor: #2e323a;
    --subtitle: #000;
    --cardBg: #1d1c20;
    --colorBodyText: #a9a9a9;
    --mainBodyColor: #111115;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gabarito", sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}
/* Scroll  */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--hoverColor);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: transparent;
}
.flex-col {
    flex-direction: column;
}
.home-container {
    max-width: 1390px;
    padding: 0 80px;
    margin: 0 auto;
    width: 100%;
}
@media (max-width: 991px) {
    .home-container,
    .logo-companies {
        padding: 0 40px !important;
    }
}
@media (max-width: 769px) {
    .home-container,
    .logo-companies {
        padding: 0 20px !important;
    }
}
/* card design */
.ct-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.ct-card .effect_shimmer--spinner {
    align-items: center;
    bottom: 0;
    display: flex;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.ct-card .effect_shimmer--spinner div {
    animation: shimmerSpin 6s linear infinite;
    background: var(--border);
    background: conic-gradient(
        from 0deg at 50% 50%,
        #fff 0deg,
        transparent 60deg,
        transparent 300deg,
        #fff 1turn
    );
    height: 1000%;
    opacity: 0.5;
    width: 100%;
}

@keyframes shimmerSpin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(1turn);
    }
}

.ct-card .effect_shimmer--content {
    border-radius: 11px;
    margin: 1px;
    padding: 20px;
    position: relative;
    z-index: 1;
    min-height: 150px;
}

.ct-card .effect_shimmer--background {
	background-image: linear-gradient(240deg, #0b3d91, #1e88e5);
    /*background-color: #07070b;*/
    border-radius: 11px;
    bottom: 1px;
    left: 1px;
    position: absolute;
    right: 1px;
    top: 1px;
    z-index: 0;
}
/* dropdown-menu  */

.dropdown-menu {
    background-color: var(--ctBlack);
    box-shadow: 0 0 20px 0 rgb(33 33 48) !important;
    border-radius: 12px;
    padding: 10px !important;
}
.dropdown-menu .dropdown-item {
    border-radius: 9px;
    margin-bottom: 3px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}
.dropdown-menu .dropdown-item i {
    color: var(--white) !important;
}
.ct-button {
    background-image: linear-gradient(
        -45deg,
        #23d5ab,
        #23a6d5,
        #3d4ef2,
        #9207ff
    );
    border-radius: 100px;
    cursor: pointer;
    height: 52px;
    padding: 0 40px;
    min-width: -moz-fit-content;
    min-width: fit-content;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    text-decoration: none !important;
    color: var(--white);
}

.ct-button:hover {
    transform: scale(1.05);
}

.ct-button .inner-container {
    align-items: center;
    bottom: 0;
    display: flex;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.ct-button .spinner {
    animation: button-spin 3s linear infinite;
    background: conic-gradient(
        from 0deg at 50% 50%,
        hsla(0, 0%, 100%, 0.8) 0deg,
        transparent 60deg,
        transparent 300deg,
        hsla(0, 0%, 100%, 0.8) 1turn
    );
    height: 1000%;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

@keyframes button-spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(1turn);
    }
}

.ct-button .inner-background {
    /* background-color: #1d1c20; */
    background-image: url(../svg/dott-img.gif);
    background-repeat: repeat;
    background-size: cover;
    border-radius: 100px;
    bottom: 2px;
    left: 2px;
    position: absolute;
    right: 2px;
    top: 2px;
}

.ct-button .highlight {
    background-color: #ffffff29;
    border-radius: 100px;
    bottom: 0;
    filter: blur(0.5rem);
    height: 33.33%;
    left: 50%;
    opacity: 1;
    position: absolute;
    transform: translate(-50%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 80%;
}

.ct-button:hover .highlight {
    height: 66.66%;
    opacity: 1;
}

.ct-button p {
    font-family: SemiBold, system-ui, sans-serif;
    position: relative;
    color: #fff;
    font-size: 18px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ct-button-2 */
.ct-button-2 {
    height: 52px;
    padding: 0 40px;
    border: 1px solid #a9a9a9;
    border-radius: 100px;
    cursor: pointer;
    min-width: fit-content;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    background: var(--mainBodyColor);
    font-family: system-ui, sans-serif;
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}
.ct-button-3 {
    height: 52px;
    padding: 0 40px;
    border: 1px solid #a9a9a9;
    border-radius: 100px;
    cursor: pointer;
    min-width: fit-content;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    background: var(--mainBodyColor);
    font-family: system-ui, sans-serif;
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.ct-button-2:hover {
    transform: scale(1.05);
}
.ct-table-btn {
    background: linear-gradient(180deg, #2693ff 0, var(--primaryCtColor) 100%);
    border-radius: 6px;
    cursor: pointer;
    gap: 6px;
    height: 32px;
    min-width: -moz-fit-content;
    min-width: fit-content;
    overflow: hidden;
    padding: 0 12px;
    position: relative;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: -moz-fit-content;
    width: fit-content;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    box-shadow: inset 0 2px 1px hsla(0, 0%, 100%, .25), 0 0 0 2px hsla(0, 0%, 100%, .1);
    border: 0;
}
.ct-table-btn:hover{
    box-shadow: inset 0 2px 4px hsla(0, 0%, 100%, .25);
}
.main-title {
    color: var(--black);
    font-size: clamp(30px, 5vw, 75px);
    font-weight: 900;
}
.sub-title {
    color: var(--black);
    font-size: clamp(30px, 5vw, 50px);
    line-height: normal;
    font-weight: 900;
}
.text-20 {
    color: var(--black);
    font-size: 20px;
    line-height: 26px;
}
.gap-3 {
    gap: 16px;
}
.gap-2 {
    gap: 12px;
}
.relative {
    position: relative;
}
/* top-chartSet-images-bg */
.top-chartSet-images-bg::before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath fill='rgba(0,0,0,0.1)' fill-rule='evenodd' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4Zm-1 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-9-10h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm9-10v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-9-10h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm9-10v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-9-10h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm9-10v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-10 0v-9h-9v9Zm-9-10h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Zm10 0h9v-9h-9Z' data-name='Path 3' opacity='.5'/%3E%3Cpath fill='rgba(0,0,0,0.1)' fill-rule='evenodd' d='M6 5V0H5v5H0v1h5v94h1V6h94V5Z' data-name='Path 4'/%3E%3C/svg%3E");
    content: "";
    filter: invert(1);
    height: 80vh;
    -webkit-mask-image: linear-gradient(0deg, transparent, #fff 50%);
    mask-image: linear-gradient(0deg, transparent, #fff 50%);
    opacity: 0.4;
    position: absolute;
    top: 0;
    width: 100%;
}
.top-chartSet-images-bg .gradient {
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 2;
}
.top-chartSet-images-bg .gradient div {
    background-image: radial-gradient(at 27% 37%, #3a8bfd 0, transparent 0),
        radial-gradient(at 97% 21%, #72fe7d 0, transparent 50%),
        radial-gradient(at 52% 99%, #fd3a4e 0, transparent 50%),
        radial-gradient(at 10% 29%, #855afc 0, transparent 50%),
        radial-gradient(at 97% 96%, #e4c795 0, transparent 50%),
        radial-gradient(at 33% 50%, #8ca8e8 0, transparent 50%),
        radial-gradient(at 79% 53%, #eea5ba 0, transparent 50%);
    cursor: pointer;
    filter: blur(100px) saturate(150%);
    height: 200px;
    opacity: 0.3;
    width: 50%;
}
/* ========================
Home page Design Start
======================== */
.main-header-section-nav {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
}
.main-header-section-nav .announcement-banner {
    
	background-image: linear-gradient(240deg, #0b3d91, #1e88e5);
}
.main-header-section-nav .announcement-banner span {
    font-size: 14px;
    color: var(--white);
}
.home-header-section {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background-color: #ffffff14;
    border: 1px solid hsla(0, 0%, 100%, 0.08);
    cursor: pointer;
    cursor: auto;
    padding: 6px;
    pointer-events: auto;
    position: relative;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    user-select: auto;
}
.home-header-section .navbar-brand {
    filter: invert(0);
    height: 38px;
    width: auto;
    padding: 0;
    margin: 0;
	margin-left:20px;
}
.home-header-section .navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-header-section .home-select-lau .dropdown-toggle {
    color: #000;
    font-size: 16px;
}
.home-header-section .home-select-lau .dropdown-toggle img {
    width: 24px;
    height: auto;
}
.home-select-lau li {
    list-style: none;
}
/* home-banner-section */
.main-pt-top {
    padding-top: 210px;
}
.home-banner-section {
    padding-bottom: 80px;
}
.banner-slider-swiper {
    background-color: var(--ctBlack);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgb(255, 255, 255, 0.2);
}
/* need-help-section */
.need-help-section {
    margin-top: 30px;
    min-height: 350px;
}
/* generator-section */

.generator-section {
    margin-top: 140px;
}
.generator-section .inner-section-generator {
    max-width: 72%;
    margin: 0 auto;
    text-align: center;
	margin-bottom: 50px;
}
.generator-section h1 span {
    background: linear-gradient(-45deg, #23a6d5, #3d4ef2);
    -webkit-background-clip: text;
    color: #3d4ef2;
    position: relative;
    -webkit-text-fill-color: transparent;
}
.generator-section .underline {
    bottom: -30px;
    position: absolute;
    right: 0;
    width: 21vw;
}
.generator-section h2 {
    margin: 40px auto 0 auto;
    max-width: 720px;
    text-align: center;
}
/* section_globe */

.logo-companies {
    display: flex;
    align-items: center;
    gap: 70px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1390px;
    padding: 0 80px;
    margin: 120px auto 0 auto;
    width: 100%;
}

.logo-companies .ct-logo {
    width: 100px;
    height: auto;
}
.logo-companies .ct-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.logo-companies {
    -webkit-mask-image: linear-gradient(
        270deg,
        transparent,
        #fff 40%,
        #fff 60%,
        transparent
    );
    mask-image: linear-gradient(
        270deg,
        transparent,
        #fff 40%,
        #fff 60%,
        transparent
    );
}
.section_globe .globe {
    max-height: 800px;
    max-width: 800px;
}
.section_globe .globe img {
    width: 100%;
    height: auto;
}

.section_globe .wrap_stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.section_globe .wrap_stats {
    margin-bottom: 40px;
    margin-top: -20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 9;
    position: relative;
}
.section_globe .wrap_stats h2 {
    font-size: clamp(60px, 5vw, 100px);
    line-height: normal;
    font-weight: 900;
    margin: 0;
    color: var(--white);
    text-align: center;
}
.section_globe .wrap_stats p {
    font-size: clamp(18px, 2vw, 26px);
    line-height: normal;
    color: var(--white);
    margin: 0;
    text-align: center;
    font-weight: 600;
}
.section_globe .wrap_sparkling {
    height: 24rem;
    margin-top: -160px;
    -webkit-mask-image: radial-gradient(50% 50%, #fff, transparent);
    mask-image: radial-gradient(50% 50%, #fff, transparent);
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}
.section_globe .wrap_sparkling {
    height: 24rem;
    margin-top: -160px;
    -webkit-mask-image: radial-gradient(50% 50%, #fff, transparent);
    mask-image: radial-gradient(50% 50%, #fff, transparent);
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}
.section_globe .wrap_sparkling:before {
    background: radial-gradient(
        circle at bottom center,
        #005eff,
        transparent 70%
    );
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0.4;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
}
.section_globe .wrap_sparkling:after {
    aspect-ratio: 1/0.7;
    background-color: var(--mainBodyColor);
    border-radius: 100%;
    border-top: 1px solid rgba(0, 94, 255, 0.38);
    content: "";
    left: -50%;
    position: absolute;
    top: 50%;
    width: 200%;
    z-index: 4;
}
.section_globe .wrap_sparkling .sparkling {
    bottom: 0;
    height: 336px;
    left: 0;
    -webkit-mask-image: radial-gradient(50% 50%, #fff, transparent 85%);
    mask-image: radial-gradient(50% 50%, #fff, transparent 85%);
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
.sparkling img {
    width: 100%;
    height: 100%;
}
/* section_bento */
.section_bento {
    position: relative;
}
.section_bento .wrap_header {
    gap: 40px;
    margin-bottom: 75px;
    position: relative;
    z-index: 2;
}
.section_bento .wrap_header .icon {
    background-image: radial-gradient(
            circle farthest-side at 0 100%,
            #3d4ef2,
            transparent
        ),
        radial-gradient(circle farthest-side at 100% 0, #23a6d5, transparent),
        radial-gradient(circle farthest-side at 100% 100%, #23d5ab, transparent),
        radial-gradient(circle farthest-side at 0 0, #9207ff, #141316);
    border-radius: 40px;
    height: 160px;
    padding: 2px;
    position: relative;
    width: 160px;
}
.section_bento .wrap_header .icon .bg {
    background-image: linear-gradient(145deg, #201f22, #050505);
    border-radius: 38px;
    box-shadow: 0 6px 8px 1px #00000080;
    height: 100%;
    position: relative;
    width: 100%;
}
.section_bento .wrap_header .icon .bg svg {
    width: 70px;
}
.section_bento .wrap_header .icon .glow {
    animation: animation_pulse 1.2s ease infinite alternate;
    background-image: radial-gradient(
            circle farthest-side at 0 100%,
            #3d4ef2,
            transparent
        ),
        radial-gradient(circle farthest-side at 100% 0, #23a6d5, transparent),
        radial-gradient(circle farthest-side at 100% 100%, #23d5ab, transparent),
        radial-gradient(circle farthest-side at 0 0, #9207ff, #141316);
    border-radius: 40px;
    bottom: 0;
    filter: blur(24px);
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}
@keyframes animation_pulse {
    0% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1.1);
    }
}
.section_bento .wrap_header .main-title {
    font-weight: 800;
    text-align: center;
}
.section_bento .wrap_header .text-20 {
}
.section_bento .qr-code-button {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background-color: #ffffff14;
    border: 1px solid hsla(0, 0%, 100%, 0.08);
    border-radius: 100px;
    cursor: pointer;
    gap: 8px;
    height: 42px;
    min-width: -moz-fit-content;
    min-width: fit-content;
    overflow: hidden;
    padding: 0 20px;
    position: relative;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: -moz-fit-content;
    width: fit-content;
}
.section_bento .qr-code-button svg {
    color: var(--white);
    min-width: 18px;
    width: 18px;
}
.section_bento .qr-code-button p {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}
.section_bento .qr-code-button:hover {
    border: 1px solid var(--white);
}
.section_bento .wrap_items {
    position: relative;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    width: 100%;
}
.section_bento .wrap_sparkling {
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: -100px;
    width: 100%;
    z-index: -1;
}
.section_bento .wrap_sparkling .gradient {
    -webkit-mask-image: linear-gradient(
        180deg,
        transparent,
        #fff 0,
        #fff 0,
        transparent
    );
    mask-image: linear-gradient(
        180deg,
        transparent,
        #fff 0,
        #fff 0,
        transparent
    );
    max-width: 950px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%;
    z-index: 6;
    position: relative;
}
.section_bento .wrap_sparkling .sparkling {
    bottom: 0;
    height: 280px;
    left: 0;
    -webkit-mask-image: radial-gradient(50% 50%, #fff, transparent 85%);
    mask-image: radial-gradient(50% 50%, #fff, transparent 85%);
    position: absolute;
    right: 0;
    top: -60px;
    width: 100%;
}
/*  */
.section_bento .wrap_items .item {
    background-color: #ffffff;
    border: 1px solid var(--borerColor);
    border-radius: 20px;
    grid-column: span 2;
    overflow: hidden;
    padding: 24px;
}
.section_bento .wrap_items .item h3 {
    color: black;
    font-size: 22px;
    line-height: normal;
}
.section_bento .wrap_items .item p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
    margin-top: 10px;
    color: var(--colorBodyText);
}
.section_bento .wrap_items .item .item-video {
    width: 100%;
}
.radius_12 {
    border-radius: 12px;
}
.section_bento .wrap_items .item.is_large {
    grid-column: span 4;
}
.section_bento .wrap_items .item.is_full {
    grid-column: span 3;
}
.section_bento .wrap_items .item img.mask,
.section_bento .wrap_items .item video.mask {
    -webkit-mask-image: linear-gradient(
        0deg,
        transparent,
        #fff 40%,
        #fff 60%,
        transparent
    );
    mask-image: linear-gradient(
        0deg,
        transparent,
        #fff 40%,
        #fff 60%,
        transparent
    );
}
/* section_faq */
.section_faq .main-title {
    font-size: clamp(30px, 5vw, 65px);
}
.section_faq {
    padding: 40px 0;
    position: relative;
}
.section_faq .wrap_header {
    margin-bottom: 60px;
    position: relative;
}
.section_faq .wrap_header h3 {
    color: var(--subtitle);
    margin-top: 20px;
    font-weight: 500;
}
.section_faq .wrap_items {
    width: 60%;
    background: var(--mainDarkColor2);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin: auto;
}
.effect_shimmer .effect_shimmer--spinner {
    align-items: center;
    bottom: 0;
    display: flex;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.effect_shimmer .effect_shimmer--spinner div {
    animation: shimmerSpin 6s linear infinite;
    background: var(--border);
    background: conic-gradient(
        from 0deg at 50% 50%,
        var(--white) 0deg,
        transparent 60deg,
        transparent 300deg,
        var(--white) 1turn
    );
    height: 1000%;
    opacity: 0.5;
    width: 100%;
}
@keyframes shimmerSpin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(1turn);
    }
}
.effect_shimmer .effect_shimmer--content {
    border-radius: 11px;
    margin: 1px;
    padding: 20px;
    position: relative;
    z-index: 1;
}
.effect_shimmer .effect_shimmer--background {
    background-color: var(--ctBlack);
    border-radius: 11px;
    bottom: 1px;
    left: 1px;
    position: absolute;
    right: 1px;
    top: 1px;
    z-index: 0;
}
.effect_shimmer .effect_shimmer--actions {
    padding: 20px;
    position: absolute;
    right: 0;
    top: 0;
}
.section_faq .wrap_items details {
    border-bottom: 1px solid var(--borerColor);
    cursor: pointer;
    margin: 0 20px;
    position: relative;
}
@media (min-width: 769px) {
    .section_faq .wrap_items details summary {
        justify-content: space-between;
    }
}
.section_faq .wrap_items details summary {
    padding: 20px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: black;
    display: flex;
    font-size: 18px;
   
    list-style: none;
}
.section_faq .wrap_items details summary:after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 18 10'%3E%3Cpath d='M254.6 477.479c5.111-4.207 307.117-307.256 307.117-307.256s14.488-16.272 36.122-16.24c23.342.036 38.586 16.113 38.586 16.113S939.167 475.94 940.854 477.463c26.346 23.792 15.158 59.476 1.973 73.893-14.221 15.55-46.497 24.142-74.508-2.255-2.968-2.797-263.473-263.585-263.473-263.585s-3.709-4.693-7.365-4.855c-3.231-.144-7.798 4.788-7.798 4.788S332.794 543.858 326.478 549.801c-13.864 13.046-50.015 27.094-74.199 2.218-34.039-35.013-1.559-71.346 2.321-74.54' style='fill:%23fff' transform='matrix(-.02471 0 0 -.02374 23.75 13.557)'/%3E%3C/svg%3E");
    background-size: cover;
    content: "";
    height: 10px;
    min-width: 18px;
    transition: 0.3s ease;
    width: 18px;
    margin-top: 6px;
    margin-left: 10px;
}
.section_faq .wrap_items details[open] > summary:after {
    transform: rotate(180deg);
}
.section_faq .wrap_items details p {
    padding-bottom: 20px;
    color: var(--colorBodyText);
}
.effect_shimmer.no_padding .effect_shimmer--actions,
.effect_shimmer.no_padding .effect_shimmer--content {
    padding: 0;
}
.section_faq .wrap_items details:last-of-type {
    border-bottom: 0 solid var(--border);
}
/* ==========
section_join
 */
.z-10 {
    position: relative;
    z-index: 10;
}

/* ------------ */
.section_join {
    text-align: center;
}

.section_join {
    background-color: #07070b;
    border-top: 1px solid #2e323a;
    overflow: hidden;
    padding: 80px 20px;
    position: relative;
}

.section_join .main-title {
    font-size: clamp(40px, 5vw, 65px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(180deg, var(--white), var(--colorBodyText));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--white);
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
}

.section_join .text {
    color: #e3dffa;
    font-size: 20px;
    line-height: 26px;
    margin-top: 20px;
    max-width: 600px;
    text-align: center;
    margin: 20px auto 40px auto;
}

.section_join .ct-button {
    margin: 0 auto;
}

.section_join .gradient {
    bottom: -150px;
    cursor: pointer;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    transition: all 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.section_join .gradient div {
    background-image: radial-gradient(at 27% 37%, #3a8bfd 0, transparent 0),
        radial-gradient(at 97% 21%, #72fe7d 0, transparent 50%),
        radial-gradient(at 52% 99%, #fd3a4e 0, transparent 50%),
        radial-gradient(at 10% 29%, #855afc 0, transparent 50%),
        radial-gradient(at 97% 96%, #e4c795 0, transparent 50%),
        radial-gradient(at 33% 50%, #8ca8e8 0, transparent 50%),
        radial-gradient(at 79% 53%, #eea5ba 0, transparent 50%);
    filter: blur(100px) saturate(150%);
    opacity: 0.4;
    width: 50%;
    cursor: pointer;
    height: 200px;
    transition: all 0.3s ease;
}

.section_join:hover .gradient {
    bottom: 0;
}

.section_join:hover .gradient div {
    opacity: 1;
    width: 20%;
}

.section_join .sparkling {
    bottom: -100px;
    left: 0;
    -webkit-mask-image: radial-gradient(50% 50%, #fff, transparent 85%);
    mask-image: radial-gradient(50% 50%, #fff, transparent 85%);
    pointer-events: none;
    position: absolute;
    right: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%;
    background-image: url(../svg/dott-img.gif);
    background-repeat: repeat;
    background-size: cover;
    height: 52%;
    transition: all 0.5s ease;
}

.section_join:hover .sparkling {
    -webkit-mask-image: radial-gradient(20% 50%, #fff, transparent 85%);
    mask-image: radial-gradient(20% 50%, #fff, transparent 85%);
}

/* section_editor-qrCode */
.section_editor-qrCode {
    margin-top: 60px;
}
.section_editor-qrCode .nav-pills {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background-color: #ffffff14;
    border: 1px solid hsla(0, 0%, 100%, 0.08);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    padding: 8px;
}
.section_editor-qrCode .nav-pills .nav-item {
    cursor: pointer;
    gap: 8px;
    height: 100%;
    position: relative;
    z-index: 1;
    width: 50%;
}
.section_editor-qrCode .nav-pills .nav-item .nav-link {
    min-width: 100px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 6px;
}
.section_editor-qrCode .nav-pills .nav-item .nav-link svg {
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 20px;
    width: 20px;
}
.section_editor-qrCode .nav-pills .nav-item .nav-link.active-tab {
    color: var(--ctBlack);
}
.section_editor-qrCode .option_switch {
    position: relative;
    margin-bottom: -20px;
    z-index: 12;
}
.option_switch .slider {
    bottom: 0;
    left: 0;
    padding: 8px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transform: translateX(48.5%);
    transition: all 0.5s ease;
}
.active-toggle .slider {
    transform: translateX(0%);
}
.option_switch .slider div {
    background: var(--white);
    border-radius: 6px;
    height: 100%;
    transition: transform 0.4s;
    width: 50%;
}

.section_editor-qrCode .effect_scroll_infinite {
    -webkit-mask-image: linear-gradient(
        270deg,
        transparent,
        #fff 30%,
        #fff 70%,
        transparent
    );
    mask-image: linear-gradient(
        270deg,
        transparent,
        #fff 30%,
        #fff 70%,
        transparent
    );
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}
.section_editor-qrCode .effect_scroll_infinite .wrap_items {
    animation: marquee 60s linear infinite;
    gap: 10px;
    width: -moz-max-content;
    width: max-content;
}
@keyframes marquee {
    100% {
        transform: translate(-50%);
    }
}
.section_editor-qrCode .effect_scroll_infinite .wrap_items .item {
    aspect-ratio: 1;
    background-color: #1d1c20;
    border-radius: 10px;
    cursor: pointer;
    height: 100%;
    overflow: hidden;
    pointer-events: auto;
    position: relative;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    user-select: auto;
    width: 140px;
}
.text-16 {
    font-size: 16px;
    color: var(--colorBodyText);
    font-weight: 500;
    line-height: 24px;
}
.section_editor-qrCode .effect_scroll_infinite .wrap_items .item img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.section_editor-qrCode .nav-pills .nav-item .active,
.section_editor-qrCode .nav-pills .nav-item .show > .nav-link {
    background-color: var(--white) !important;
    color: var(--ctBlack);
}

/* generator-qrCode-content */
.generator-qrCode-content {
    background-image: linear-gradient(#343236, #38343f);
    border-radius: 20px;
    box-shadow: inset 0 2px 2px #525154, -2px -1px 15px #000000a3;
    overflow: hidden;
    position: relative;
}
.generator-qrCode-content:after {
    background-image: url(../home-img/grain.bs.png);
    background-repeat: repeat;
    background-size: contain;
    border-radius: 20px;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.4;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 0;
}
.generator-qrCode-content .right-content-gen {
    background-color: #2b292e;
    border-radius: 0 20px 20px 0;
    box-shadow: inset 0 2px 2px #525154;
    overflow: hidden;
    position: relative;
    border-left: 2px solid #252328;
}
.generator-qrCode-content .right-content-gen:after {
    background-image: url(../home-img/grain.bs.png);
    background-repeat: repeat;
    background-size: contain;
    content: "";
    height: 100%;
    opacity: 0.4;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 2;
}
.left-content-gen {
    gap: 20px;
    overflow: hidden;
    padding: 40px;
    position: relative;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.generator-qrCode-content .comman-ger-grid {
    display: grid;
    grid-template-columns: auto 40%;
}
.generator-qrCode-content .comman-ger-grid .qrcode {
    border-radius: 12px;
    cursor: pointer;
    width: 70%;
    z-index: 1;
    margin: 20px auto;
}
.generator-qrCode-content .creat-title {
    color: var(--white);
    font-size: 30px;
    font-weight: 600;
}
.generator-qrCode-content .qr-code-type-buttons {
    gap: 10px;
}
.generator-qrCode-content .qr-code-type-buttons .btn-dark {
    margin: 0 !important;
    background-image: linear-gradient(#242325, #171619);
    border: 2px solid #181818;
    border-radius: 12px;
    box-shadow: inset 0 1px 2px #525154, 0 3px 10px #00000059;
    cursor: pointer;
    gap: 6px;
    min-width: 42px;
    position: relative;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 16px;
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 9px 12px;
}
.generator-qrCode-content .qr-code-type-buttons .btn-dark.active {
    color: var(--primaryCtColor) !important;
}
.form-group .form-control {
    color: var(--white);
    height: 100%;
    padding: 0 10px 0 20px;
    width: 100%;
    background-color: var(--hoverColor);
    border: 1px solid var(--borerColor);
    border-radius: 8px;
    cursor: pointer;
    height: 50px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
.form-group .form-control:focus {
    border-color: var(--primaryCtColor);
}
input:-webkit-autofill,
select:-webkit-autofill {
    background-color: #1d1c20 !important;
    -webkit-box-shadow: 0 0 0px 1000px #1d1c20 inset !important;
    -webkit-text-fill-color: var(--white) !important;
}

input:-moz-autofill,
select:-moz-autofill {
    background-color: #1d1c20 !important;
    color: #fff !important;
}

input:-ms-autofill,
select:-ms-autofill {
    background-color: #1d1c20 !important;
    color: #fff !important;
}
.qr-textarea-h {
    min-height: 80px;
    padding-top: 8px !important;
}
.ct-tab-button {
    box-shadow: inset 0 6px 6px #ffffff40, 0 0 0 4px #ffffff1a;
    gap: 10px;
    height: 52px;
    min-height: 52px;
    background: linear-gradient(180deg, #2693ff 0, #005eff 100%);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: fit-content;
    overflow: hidden;
    font-size: 18px;
    color: var(--white);
    padding: 0 40px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    border: 0;
	justify-content: center;
	width:100%;
}
.smart-btn {
    background: linear-gradient(180deg, #00b395, #00758c);
    width: fit-content;
    margin-top: 0;
}
.ct-tab-button:hover {
    box-shadow: inset 0 6px 10px hsla(0, 0%, 100%, 0.25);
}
.ct-tab-button:hover svg {
    transform: translate(3px);
}
.ct-tab-button:hover span {
    transform: scale(0.96);
}
.ct-tab-button svg {
    min-width: 25px;
    width: 25px;
}
.ct-tab-button svg,
.ct-tab-button span {
    transition: all 0.5s ease;
}
.generator-qrCode-content .left-content-gen {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.generator-qrCode-content .left-content-gen .label {
    background-color: var(--ctBlack);
    border-radius: 8px 0 0 8px;
    border-right: 1px solid var(--borerColor);
    gap: 6px;
    height: 100%;
    max-width: 30%;
    padding-left: 10px;
    position: relative;
    width: 100%;
}

.generator-qrCode-content .left-content-gen .label svg {
    color: var(--colorBodyText);
    width: 16px;
}
.generator-qrCode-content .left-content-gen .label p {
    color: var(--colorBodyText);
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.generator-qrCode-content .div2Data {
    min-height: 475px;
}
.generator-qrCode-content .left-content-gen .ct-input {
    color: var(--white);
    height: 100%;
    padding: 0 10px 0 20px;
    width: 100%;
    background-color: transparent;
    border: 0;
}
.generator-qrCode-content .left-content-gen .ct-input::placeholder {
    font-size: 14px;
    color: #9b9b9b;
}
.generator-qrCode-content .left-content-gen .ct-input:focus {
    outline: none;
    box-shadow: inherit;
}
/* footer-payment-icons */
.footer-payment-icons {
	background-image: linear-gradient(240deg, #0b3d91, #1e88e5);
    /*background-image: linear-gradient(#242325, #171619); */
    /*border: 2px solid #181818;*/
    border-radius: 20px 20px 0 0;
    /*box-shadow: inset 0 1px 2px #525154, 0 3px 10px #00000059;*/
    cursor: pointer;
    padding: 40px 0;
}
.footer-payment-icons .payment-img img {
    height: auto;
    width: 38px;
}
.footer-payment-icons h2 {
    font-size: 16px;
    margin-bottom: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--white);
}
.footer-payment-icons .link {
    cursor: pointer;
    display: -webkit-box;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    word-wrap: break-word;
    padding-top: 10px;
    font-size: 14px;
    font-weight: 400;
    color: white;
}
.footer-payment-icons .link:hover {
    color: var(--white);
}
.footer-payment-icons .footer-brand {
    filter: invert(1);
    height: 38px;
    width: 150px;
    display: block;
    margin-bottom: 30px;
}
.footer-payment-icons .footer-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
summary::-webkit-details-marker {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin-inline-end: 0 !important;
}
/* Pricing Section CSS Start */
.pricing-section .ct-card .card-header p {
    color: var(--white);
    font-size: 20px;
    line-height: normal;
    font-weight: 700;
    text-transform: capitalize;
}
.pricing-section .ct-card .card-body .price-heading {
    color: var(--white);
    margin-top: 10px;
    font-size: 37px;
    font-weight: 500;
    margin-bottom: 25px;
}
.pricing-section .ct-card .card-body .price-heading sub {
    color: var(--colorBodyText);
    font-size: 16px;
}
.pricing-section .ct-card .card-body .list-title {
    background: linear-gradient(-45deg, #23a6d5, var(--primaryCtColor));
    -webkit-background-clip: text;
    color: var(--primaryCtColor);
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}
.pricing-section .ct-card .card-body .list li {
    font-weight: 400;
    text-align: left;
}
.pricing-section .ct-card .card-footer .payment-buttons {
    gap: 10px;
}
.pricing-section .ct-card .link-icone {
    font-size: 20px;
    line-height: 20px;
    color: #25cd90;
    font-family: system-ui, sans-serif;
    font-weight: 900;
}
/* Pricing Section CSS End */

/* Media CSS===
===================== */
@media (max-width: 991px) {
    .home-banner-section {
        padding-bottom: 50px;
    }
    .main-pt-top {
        padding-top: 170px;
    }
}
@media (max-width: 767px) {
    .need-help-section {
        min-height: 280px;
    }
    .footer-payment-icons .footer-row {
        flex-direction: column;
        gap: 40px;
    }
    .section_bento .wrap_items {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .logo-companies {
        gap: 40px;
    }
    .generator-qrCode-content .comman-ger-grid {
        grid-template-columns: auto;
    }
    .generator-qrCode-content .right-content-gen {
        padding: 20px;
        border-radius: 0;
    }
    .generator-qrCode-content .comman-ger-grid .qrcode {
        width: 220px;
    }
    .left-content-gen {
        padding: 50px 20px 20px 20px;
    }
    .ct-tab-button {
        padding: 0 29px;
    }
    .generator-qrCode-content .div2Data {
        min-height: auto;
    }
}
@media (max-width: 500px) {
    .main-header-section-nav .announcement-banner span {
        font-size: 12px;
        line-height: 19px;
    }

    .home-header-section .navbar-brand {
        height: auto;
        width: 130px;
        display: block;
    }
    .main-header-section-nav .mobile-px {
        padding: 0 20px;
    }
    .home-header-section {
        border-radius: 100px;
        height: 54px;
    }
    .ct-button,
    .ct-button-2 {
        height: 44px;
        padding: 0px 30px;
    }
    .ct-button p,
    .ct-button-2 {
        font-size: 16px;
    }
    .home-banner-section .gap-3 {
        row-gap: 15px;
        column-gap: 6px;
    }
    .need-help-section {
        margin-top: 30px;
    }
    .generator-section {
        margin-top: 65px;
    }
    .generator-section .inner-section-generator {
        max-width: 100%;
    }
    .generator-section .underline {
        width: 50%;
    }
    .text-20 {
        font-size: 16px;
        line-height: normal;
    }
    .section_editor-qrCode .nav-pills .nav-item .nav-link {
        padding: 0 10px;
        font-size: 15px;
    }
    .section_editor-qrCode .nav-pills .nav-item .nav-link svg {
        min-width: 16px;
        width: 16px;
    }
    .logo-companies {
        margin: 90px auto 0 auto;
    }
    .section_globe .wrap_stats {
        grid-template-columns: auto;
        gap: 47px;
        margin-top: 50px;
    }
    .section_globe .wrap_sparkling {
        height: 15rem;
        margin-top: -113px;
    }
    .section_faq {
        padding: 25px 0;
    }
    .section_faq .wrap_items {
        width: 100%;
    }
    .footer-payment-icons .home-container {
        max-width: 280px;
    }
    .logo-companies {
        gap: 50px;
        margin-bottom: 80px;
    }
    .section_editor-qrCode {
        margin-top: 58px;
    }
    .section_editor-qrCode .nav-pills {
        max-width: 310px;
    }
    .section_editor-qrCode .nav-pills .nav-item .nav-link {
        font-size: 16px;
    }
    .section_editor-qrCode .nav-pills .nav-item .nav-link svg {
        min-width: 16px;
        width: 16px;
    }
    .main-pt-top {
        padding-top: 140px;
    }
}

@media (max-width: 374px) {
    .banner-price-loin-btn a {
        width: 100%;
    }
    .lo-sig-btn {
        width: 100%;
    }
}
