html {
    font-size: 100%;
    font-size: 10px;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
}

:root {
    /* font */
    --mainFont: "Onest", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";


    /* color */
    --black: #000;
    --white: #fff;
    --backgroundColor: #111214;
    --backgroundColor--dark: #110F20;
    --tealBlue: #3097A9;
    --lightSkyBlue: #9ce2fc;
    --deepPurple: #4A0EB8;
    --darkMagenta: #961885;
    --vibrantMagenta: #da46f2;
    --magentaf2: #9d62d9;
    --grey: #a7a5a7;
    /* gradients */

    --blueTopinkGrad: 90deg, var(--lightSkyBlue) 0%, var(--vibrantMagenta) 100%;
    --pinkToblueGrad: 90deg, var(--vibrantMagenta) 0%, var(--lightSkyBlue) 100%;
    --whiteTomagentaGrad: 90deg, var(--white) 68%, var(--magentaf2) 100%;
    --greyTowhiteGrad: 90deg, var(--grey) 0%, var(--grey) 42%, var(--white) 75%, var(--white) 75%;
    --buttonGradient: 0deg, var(--tealBlue) 0%, var(--deepPurple) 50%, var(--darkMagenta) 100%;
    --buttonGradientOutline: 90deg, rgba(173, 169, 246, 0) 0%, #d962c9 100%;
    --darkbuttonGradientOutline: 0deg, #EEC0E8 0%, rgba(173, 169, 246, 0) 100%;

    /* font sizes */
    --font__large: 8.236rem;
    --font__h1: 7.2rem;
    --font__h2: 6.4rem;
    --font__h3: 3.2rem;
    --font__h4: 2.7rem;
    --font__h5: 2.4rem;
    --font__h6: 2rem;
    --font__18: 1.8rem;
    --font-16: 1.6rem;
    --font-14: 1.4rem;
    --bodyfont: 2rem;

}


body {
    margin: 0;
    padding: 0;
    font-family: var(--mainFont);
    color: var(--white);
    font-size: var(--bodyfont);
    line-height: 1.3;
    font-weight: 400;
    background-color: var(--backgroundColor);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}

body.scroll {
    overflow: hidden;
}


main,
header,
section,
footer {
    width: 100%;
}

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

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

:is(:focus, :focus-visible, :focus-within, :active:focus) {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}


hr {
    border: 0;
    margin: 0;
}


a,
a:hover,
a:focus,
button,
button:hover,
button:focus,
input:focus,
textarea:focus,
select,
select:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a,
img,
button {
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

a,
button {
    font-family: inherit;
    display: inline-block;
    background: transparent;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

input {
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: var(--mainFont);
}

input[type=submit] {
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-decoration: none !important;
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: 1.275;
    font-weight: 500;
    margin-bottom: 1.875rem;
}


h1 {
    font-size: var(--font__h1);
}

h2 {
    font-size: var(--font__h2);
    font-weight: 900;
}

h3 {
    font-size: var(--font__h3);
}

h4 {
    font-size: var(--font__h4);
    font-weight: 900;
    line-height: 1.275
}

h5 {
    font-size: var(--font__h5);
    font-weight: 900;
}

h6 {
    font-size: var(--font__h6);
    font-weight: 900;
    line-height: 1.4
}

p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0 0 1.875rem;
}


/* comman css */
.section-heading h2 {
    background: linear-gradient(90deg,
            #a7a5a7 0%,
            #a7a5a7 41.64%,
            #ffffff 75.5%,
            #ffffff 75.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: var(--mainFont);
    font-size: 64px;
    font-weight: 250;
    line-height: 81.6px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.section-heading {
    margin-bottom: 70px;
}

.container {
    --sideSpacing: 2rem;
    --containerSize: 168rem;
    width: 100%;
    max-width: calc(var(--containerSize) + var(--sideSpacing));
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--sideSpacing);
    padding-right: var(--sideSpacing);
}

.container-full {
    max-width: 100%;
    padding-left: var(--sideSpacing);
    padding-right: var(--sideSpacing);
}


.container-small {
    max-width: 37rem;
}

.bluetopink-gradiant {
    background: rgb(156, 226, 252);
    background: -moz-linear-gradient(var(--blueTopinkGrad));
    background: -webkit-linear-gradient(var(--blueTopinkGrad));
    background: linear-gradient(var(--blueTopinkGrad));
}

.bluetopink-gradiant-text {
    background: rgb(156, 226, 252);
    background: -moz-linear-gradient(var(--blueTopinkGrad));
    background: -webkit-linear-gradient(var(--blueTopinkGrad));
    background: linear-gradient(var(--blueTopinkGrad));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.pinktoblue-gradiant {
    background: rgb(156, 226, 252);
    background: -moz-linear-gradient(var(--pinkToblueGrad));
    background: -webkit-linear-gradient(var(--pinkToblueGrad));
    background: linear-gradient(var(--pinkToblueGrad));
}

.pinktoblue-gradiant-text {
    background: rgb(156, 226, 252);
    background: -moz-linear-gradient(var(--pinkToblueGrad));
    background: -webkit-linear-gradient(var(--pinkToblueGrad));
    background: linear-gradient(var(--pinkToblueGrad));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.whitetoMagenta-gradiant-text {
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(var(--whiteTomagentaGrad));
    background: -webkit-linear-gradient(var(--whiteTomagentaGrad));
    background: linear-gradient(var(--whiteTomagentaGrad));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.greytoWhite-gradiant-text {
    background: rgb(167, 165, 167);
    background: -moz-linear-gradient(var(--greyTowhiteGrad));
    background: -webkit-linear-gradient(var(--greyTowhiteGrad));
    background: linear-gradient(var(--greyTowhiteGrad));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

main.main {
    overflow-x: hidden;
}

.darkButton {
    --radious: 60px;
    padding: 2.4rem 6.4rem;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50px;
    color: var(--white);
    transition: 0.3s ease-in-out all;
    display: inline-block;
    cursor: pointer;
    border: 0;
    position: relative;
    text-align: center;
}

.darkButton::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: var(--radious);
    background: rgb(238, 192, 232);
    background: -moz-linear-gradient(0deg, rgba(238, 192, 232, 1) 0%, rgba(74, 14, 184, 1) 50%, rgba(150, 24, 133, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(238, 192, 232, 1) 0%, rgba(74, 14, 184, 1) 50%, rgba(150, 24, 133, 1) 100%);
    background: linear-gradient(0deg, rgba(238, 192, 232, 1) 0%, rgba(74, 14, 184, 1) 50%, rgba(150, 24, 133, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eec0e8", endColorstr="#961885", GradientType=1);
    opacity: 0.05;
}

.darkButton:after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: var(--radious);
    padding: 2px;
    background: rgb(238, 192, 232);
    background: -moz-linear-gradient(var(--darkbuttonGradientOutline));
    background: -webkit-linear-gradient(var(--darkbuttonGradientOutline));
    background: linear-gradient(var(--darkbuttonGradientOutline));
    opacity: 0.3;
    -webkit-mask:
        linear-gradient(#EEC0E8 0 0) content-box,
        linear-gradient(#EEC0E8 0 0);
    mask:
        linear-gradient(#EEC0E8 0 0) content-box,
        linear-gradient(#EEC0E8 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

.darkButton.darkButton--icon img {
    display: block;
    width: 24px;

}

.darkButton:hover {
    box-shadow: 0 11px 24px 0 rgba(214, 129, 238, -0.749), 0 27px 38px 0 rgba(214, 129, 238, 0.212);
}

.darkButton--icon.ct-language.planguage_drop.notranslate.active {
    padding: 1rem;
    width: 7.2rem;
    height: 7.2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.buttonGradient {
    --radious: 60px;
    --angle: 180deg;
    padding: 2.4rem 6.4rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 50px;
    color: var(--white);
    transition: 0.3s ease-in-out all;
    display: inline-block;
    cursor: pointer;
    border: 0;
    text-align: center;
    background: rgb(48, 151, 169);
    background: linear-gradient(180deg, #3097A9 0%, #4A0EB8 50%, #961885 100%);
    background: linear-gradient(180deg, #3097A9 0%, #4A0EB8 25%, #961885 50%, #961885 51%, #4A0EB8 75%, #4A0EB8 100%);
    background-size: 100% 200%;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 1.8rem;
    text-transform: uppercase;
    position: relative;
    outline: 4px solid rgba(0, 0, 0, 0.68);
    border-radius: var(--radious);
    box-shadow: 0 11px 24px 0 rgba(214, 129, 238, 0.251), 0 44px 44px 0 rgba(214, 129, 238, 0.212);
    text-shadow:
        -1px -1px 0 #718DE8,
        1px -1px 0 #718DE8,
        -1px 1px 0 #718DE8,
        1px 1px 0 #718DE8,
        0 0 46.22px #86B9EA,
        0 0 26.41px #86B9EA,
        0 0 15.41px #86B9EA,
        0 0 7.7px #86B9EA,
        0 0 2.2px #86B9EA,
        0 0 1.1px #86B9EA
}

.buttonGradient:hover {
    background-position: 0 100%;
}

.buttonGradient:after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: var(--radious);
    padding: 2px;
    background: linear-gradient(var(--buttonGradientOutline));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}



.buttonGradient:hover {
    outline: 4px solid rgba(0, 0, 0, 0.68);
    box-shadow: 0 11px 24px 0 rgba(214, 129, 238, 0.251), 0 44px 44px 0 rgba(214, 129, 238, 0.212);
}


.buttonGradient img {
    width: 14px;
    display: inline-block;
    margin-left: 1rem;
    filter:
        drop-shadow(0px 0px 1.1px #86B9EA) drop-shadow(0px 0px 2.2px #86B9EA) drop-shadow(0px 0px 7.7px #86B9EA) drop-shadow(0px 0px 15.41px #86B9EA) drop-shadow(0px 0px 26.41px #86B9EA) drop-shadow(0px 0px 46.22px #86B9EA)
}

.buttonGradient--noShadow,
.buttonGradient--noShadow:hover {
    box-shadow: none;
}


.button__full {
    width: 100%;
    display: block;
}



/* header */
.mainHeader__top {
    background: var(--backgroundColor--dark);
    padding: 1.1rem 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-align: center;
}

.mainHeader {
    position: fixed;
    z-index: 99;
    top: 0;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

.mainHeader.scrolled {
    background: linear-gradient(213.53deg, rgba(98, 98, 217, 0.05) 21.1%, rgba(157, 98, 217, 0.05) 102.26%, rgba(157, 98, 217, 0.05) 102.26%);
    backdrop-filter: blur(13px);
    -webkit-box-shadow: 5px 8px 25px 4px #0000001a;
    box-shadow: 5px 8px 25px 4px #0000001a;
}

.mainHeader.scrolled.headerScrolledDown {
    top: -100%;
}

.mainHeader__bottom>.container {
    display: flex;
    align-items: stretch;
    gap: 38px;
}

.mainHeader__logo {
    width: 157px;
}

.mainHeader__logo img,
.mainHeader__logo svg {
    display: block;
    width: 100%;
}

.mainHeader__logo svg * {
    transition: 0.2s ease-in all;
}

.mainHeader__menu {
    display: flex;
    flex-grow: 1;
    align-items: center;
    padding-left: 8rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.mainHeader__bottom {
    padding: 19px 0;
}

.mainHeader__nav {
    margin-right: auto;
}

.mainHeader__nav ul {
    display: flex;
    gap: 50px;
}

.mainHeader__navItem {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 500;
    color: var(--white);
}

.mainHeader__navItem:hover,
.mainHeader__navItem.active {
    text-shadow: -1px -1px 0 #718DE8, 1px -1px 0 #718DE8, -1px 1px 0 #718DE8, 1px 1px 0 #718DE8, 0 0 46.22px #86B9EA, 0 0 26.41px #86B9EA, 0 0 15.41px #86B9EA, 0 0 7.7px #86B9EA, 0 0 2.2px #86B9EA, 0 0 1.1px #86B9EA;
}

.mainHeader__buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menuIcon {
    position: relative;
    width: 3rem;
    display: none;
    cursor: pointer;
    margin-left: 1rem;
}

.mainHeader.active .menuIcon {
    z-index: 101;
}

.mainHeader.active .menuIcon span:nth-child(1) {
    -moz-transform: rotate(45deg) translate(0.69rem, 0.4rem);
    -o-transform: rotate(45deg) translate(0.69rem, 0.4rem);
    -ms-transform: rotate(45deg) translate(0.69rem, 0.4rem);
    -webkit-transform: rotate(45deg) translate(0.69rem, 0.4rem);
    transform: rotate(45deg) translate(0.69rem, 0.4rem);
}

.mainHeader.active .menuIcon span:nth-child(2) {
    opacity: 0;
}

.mainHeader.active .menuIcon span:nth-child(3) {
    -moz-transform: rotate(-45deg) translate(0.563rem, -0.313rem);
    -o-transform: rotate(-45deg) translate(0.563rem, -0.313rem);
    -ms-transform: rotate(-45deg) translate(0.563rem, -0.313rem);
    -webkit-transform: rotate(-45deg) translate(0.563rem, -0.313rem);
    transform: rotate(-45deg) translate(0.563rem, -0.313rem);
}

.menuIcon span {
    position: relative;
    width: 100%;
    height: 0.2rem;
    display: inline-block;
    vertical-align: middle;
    background: var(--white);
    border-radius: 0.2rem;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.menuIcon span:nth-child(2) {
    margin: 0.5rem 0;
}

/* header */
.bannersection {
    background-position: 0% center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 27rem 0 10rem;
}

.bannersection .container {
    position: relative;
}

.bannersection__row {
    display: flex;
    align-items: center;
}

.bannersection__left {
    flex: 0 0 50%;
}

.bannersection__right {
    flex: 0 0 50%;
}

.socialBlock {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.9rem;
}

.socialBlock a img {
    height: 27px;
}

.socialBlock a:hover img {
    filter: drop-shadow(0 0 10px #86B9EA);
}

.bannerFolder {
    position: relative;
    max-width: 58.6rem;
    margin: 0 auto 2rem;
    padding: 40px 40px;
    background-image: url(../images/bannerfolder.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}


/* 
.bannersection__right:before {
    content: "";
    background: url(../images/bannerGradShape.png);
    position: absolute;
    right: -122px;
    z-index: 0;
    width: 84%;
    top: 0px;
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
} */

.bannerGradShape__gradShape {
    position: absolute;
    right: -102px;
    z-index: 0;
    width: 80%;
    top: -25%;
}

.bannerGradShape__gradShape img {
    --extraSize: 50px;
    width: calc(100% + var(--extraSize));
    max-width: calc(100% + var(--extraSize));
    display: block;
    margin-right: -50px;
}

.bannersection__rightContent,
.bannersection__left {
    position: relative;
    z-index: 1;
}



.bannersection__IconHolder {
    margin-top: 16rem;
}

.bannersection__IconHolder img {
    max-height: 6rem;
    max-width: 31.8rem;
    object-fit: contain;
}

.bannersection__smalltitle {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
    font-weight: 500;
    background: rgb(156, 226, 252);
    background: -moz-linear-gradient(var(--blueTopinkGrad));
    background: -webkit-linear-gradient(var(--blueTopinkGrad));
    background: linear-gradient(var(--blueTopinkGrad));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bannersection__left h1 {
    margin-bottom: 5.5rem;
}

.bannerFolder__title {
    font-size: 2rem;
}

.bannerFolder__smalltitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #CFCFFF;
    margin-bottom: 1.5rem;
}

.bannerFolder__headingholder h2 {
    font-size: 2.717rem;
    text-transform: uppercase;
    font-weight: 700;
}

.bannerFolder__headingholder {
    text-align: center;
    margin-bottom: 2.8rem;
}

.customProgress {
    --radious: 33px;
    height: 4rem;
    width: 100%;
    position: relative;
    border-radius: var(--radious);
    background: #2B2652;
    margin-bottom: 4.5rem;
    /* overflow: hidden; */
}

.progressBar__label {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
    font-size: 15px;
    color: var(--white);
    opacity: 0.6;
    right: 15px;
    top: 11px;
}

.customProgress__bar {
    height: 100%;
    border-radius: var(--radious);
    position: absolute;
    width: var(--percentage);
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    box-shadow:
        /* 0 276px 77px 0 #D681EE, */
        0 177px 71px 0 rgba(214, 129, 238, 0.04),
        0 99px 60px 0 rgba(214, 129, 238, 0.13),
        0 44px 44px 0 rgba(214, 129, 238, 0.21),
        0 11px 24px 0 rgba(214, 129, 238, 0.21)
}

.customProgress__bar::before {
    content: '';

    border-radius: var(--radious);
    background: rgb(150, 24, 133);
    background:
        radial-gradient(circle at 39% 50%, rgba(255, 203, 124, 1) 0%, rgba(255, 203, 124, 0) 40%),
        linear-gradient(90deg, rgba(150, 24, 133, 1) 0%, rgba(74, 14, 184, 1) 50%, rgba(48, 151, 169, 1) 100%);
    position: absolute;
    inset: 0;
    z-index: 1;

}

.customProgress__bar:after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: var(--radious);
    padding: 2px;
    background: rgb(238, 192, 232);
    background: -moz-linear-gradient(var(--darkbuttonGradientOutline));
    background: -webkit-linear-gradient(var(--darkbuttonGradientOutline));
    background: linear-gradient(var(--darkbuttonGradientOutline));
    opacity: 0.3;
    -webkit-mask: linear-gradient(#EEC0E8 0 0) content-box, linear-gradient(#EEC0E8 0 0);
    mask: linear-gradient(#EEC0E8 0 0) content-box, linear-gradient(#EEC0E8 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

.bannerFolder__boxes {
    padding: 24px 0;
    border: solid rgba(105, 100, 141, 0.32);
    border-width: 1px 0;
    display: flex;
    justify-content: space-between;
}

.bannerFolder__boxes+.bannerFolder__boxes {
    border-top-width: 0;
}

.bannerFolder__boxes h3 {
    margin: 0;
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 0.95;
}

.bannerFolder__boxes .label {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.1px;
}

.bannerFolder__boxesleft {
    flex-grow: 1;
}

.bannerFolder__boxesleft,
.bannerFolder__boxesright {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.bannerFolder__boxesright {
    flex: 0 0 194px;
    max-width: 194px;
}

.bannerFolder__boxesrightIcons {
    display: flex;
}

.bannerFolder__boxesrightIcons a {
    width: 33px;
    height: 33px;
    line-height: 33px;
    border-radius: 50%;
    background: #393939;
    border: 1px solid #2F2C2F;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}

.bannerFolder__boxesrightIcons a+a {
    margin-left: -9px;
}

.bannerFolder__boxesrightIcons a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bannerFolder__buttons {
    margin-top: 5.6rem;
}

.bannerFolder__buttons .darkButton {
    margin-top: 12px;
    text-shadow: 0px 0px 15px #529BE0;
}

.joinSection {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.joinSection__wrapper {
    padding: 7rem 0 10rem;
}

.joinSection__wrapper:before {
    content: "";
    background-image: url('../images/footer-logo-bg.png');
    width: 40%;
    height: 100%;
    background-position: bottom;
    position: absolute;
    background-size: contain;
    z-index: 0;
    bottom: -30px;
    background-repeat: no-repeat;
    right: 0;
}

.joinSection__wrapperLogo {
    width: 60px;
    position: absolute;
    top: 32px;
    left: 90px;
    z-index: 4;
}

.joinSection__row {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    padding: 14rem 0;
    position: relative;
    inset: 0;
    z-index: 3;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.joinSection__left {
    grid-column-start: 1;
    grid-column-end: 6;
    display: flex;
}

.joinSection__right {
    grid-column-start: 7;
    grid-column-end: 13;
    display: flex;
}

.joinSection__left img {
    --size: 3.2rem;
    margin-left: calc(var(--size) * -1);
    width: calc(100% + (var(--size) * 2));
    max-width: calc(100% + (var(--size) * 2));

    object-fit: contain;
}

.joinSection__content {
    max-width: 69.2rem;
    margin: 0 auto;
}

.joinSection__smalltitle {
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    background: rgb(156, 226, 252);
    background: -moz-linear-gradient(var(--blueTopinkGrad));
    background: -webkit-linear-gradient(var(--blueTopinkGrad));
    background: linear-gradient(var(--blueTopinkGrad));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.joinSection__content h2 {
    margin-bottom: 0.8rem;
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(var(--whiteTomagentaGrad));
    background: -webkit-linear-gradient(var(--whiteTomagentaGrad));
    background: linear-gradient(var(--whiteTomagentaGrad));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.joinSection__content h2 strong {
    font-weight: 900;
    background: rgb(156, 226, 252);
    background: -moz-linear-gradient(var(--blueTopinkGrad));
    background: -webkit-linear-gradient(var(--blueTopinkGrad));
    background: linear-gradient(var(--blueTopinkGrad));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    background-size: 600px;
    background-position: center;
}

.joinSection__content p {
    font-size: 2rem;
    opacity: 0.52;
    margin-bottom: 3rem;
}

.joinSection__content p:last-of-type {
    margin: 0;
}

.joinSection .container {
    position: relative;
}



.joinSection_bgShapes {
    position: relative;
    inset: 0;
    z-index: 2;
}


.joinSection__tenticalsLine,
.joinSection__tenticalsShape {
    position: absolute;
    width: 100%;
    right: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: calc(100% + 180px);
    margin: 0 auto;
}

.joinSection__tenticalsLine img,
.joinSection__tenticalsShape img {
    width: 100%;
    max-width: 2070px;
}

.joinSection__tenticalsLine {
    z-index: 4;
}

.joinSection__tenticalsShape {
    z-index: 1;

}

.joinSection__tenticalsLine--1 {
    top: 7.5rem;
    left: -9.5rem;
}

.joinSection__tenticalsLine--2 {
    bottom: 12.5rem;
    left: -10rem;
}

.joinSection__tenticalsShape--1 {
    top: 72px;
    left: -46px;
}

.joinSection__tenticalsShape--2 {
    bottom: 10.1rem;
    left: -57px;
}

/*join us ends here  */
.oneclickSection .section-heading {
    text-align: center;
}

.oneclickSection .section-heading h2 {
    font-size: 3.2rem;
    line-height: normal;
    font-weight: 500;
    background: rgb(156, 226, 252);
    background: -moz-linear-gradient(var(--blueTopinkGrad));
    background: -webkit-linear-gradient(var(--blueTopinkGrad));
    background: linear-gradient(var(--blueTopinkGrad));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.oneclickSection .section-heading p {
    max-width: 1113px;
    margin: 0 auto;
    font-size: 24px;
    line-height: normal;
}

.oneclickCarHolder {
    text-align: center;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.oneclickCarHolder__car {
    width: 100%;
    max-width: 192rem;
    margin: 0 auto;
    position: relative;
}

.oneclickCarHolder__car img {
    position: relative;
    z-index: 2;
}

.oneclickCarHolder__car::before {
    content: "";
    background: url(../images/cararrowextra.png);
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.oneclickCarHolder__car:after {
    content: "";
    background: url(../images/carBaseshadow.png);
    position: absolute;
    left: 0;
    z-index: 1;
    right: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 100%;
    bottom: -60%;
}

.oneclickCarHolder {
    padding-bottom: 206px;
    position: relative;
}

.oneclickCarHolder:before {
    content: "";
    position: absolute;
    width: 707px;
    height: 405px;
    transform: rotate(-128.5deg);
    background: rgb(48, 151, 169);
    background: -moz-linear-gradient(90deg, rgba(48, 151, 169, 1) 0%, rgba(74, 14, 184, 1) 50%, rgba(150, 24, 133, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(48, 151, 169, 1) 0%, rgba(74, 14, 184, 1) 50%, rgba(150, 24, 133, 1) 100%);
    background: linear-gradient(90deg, rgba(48, 151, 169, 1) 0%, rgba(74, 14, 184, 1) 50%, rgba(150, 24, 133, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3097a9", endColorstr="#961885", GradientType=1);
    filter: blur(200px);
    z-index: 1;
    right: 20%;
    top: 30px;
    width: 307px;
    height: 535px;
    filter: blur(150px);

}

.oneclickCarHolder__shadow {
    width: 100%;
    max-width: 192rem;
    margin: 0 auto 0;
    position: absolute;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 0;
    display: none;
}

.oneclickSection__child>.container {
    position: relative;
}

.oneClickRow {
    --gap: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
    max-width: 1396px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.oneClickRow::after {
    content: "";
    width: 235px;
    height: 221px;
    border-radius: 50%;
    overflow: hidden;
    background-image: url(../images/oneClickRowGrow.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%);
    z-index: 1;

}

.oneClickRow::before {
    content: '';
    width: 203px;
    height: 203px;
    border-radius: 50%;
    overflow: hidden;
    background-image: url(../images/1fuelIcon.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%);
    z-index: 3;
}

.oneClickRow__col {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.oneClickRow .oneClickRow__col:first-of-type {
    align-items: flex-end;
}

.oneClickRow .oneClickRow__col .oneClickBox:first-child {
    max-width: 556px;
}

.oneClickBox__img {
    position: absolute;
    top: 0;
}

.oneClickBox {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 11px;
}

.oneClickBox::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 11px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    background: -o-linear-gradient(236.47deg, rgba(98, 98, 217, 0.05) 21.1%, rgba(157, 98, 217, 0.05) 102.26%, rgba(157, 98, 217, 0.05) 102.26%);
    background: linear-gradient(213.53deg, rgba(98, 98, 217, 0.05) 21.1%, rgba(157, 98, 217, 0.05) 102.26%, rgba(157, 98, 217, 0.05) 102.26%);
    -webkit-backdrop-filter: blur(13px);
            backdrop-filter: blur(13px);
}

@supports not (backdrop-filter: blur(13px)) {
    .oneClickBox::before {
        background: linear-gradient(213.53deg, rgba(98, 98, 217, 0.2) 21.1%, rgba(157, 98, 217, 0.2) 102.26%);
        filter: blur(10px);
        overflow: hidden;
        border-radius: 11px;
    }
}


.oneClickBox__wrapper {
    position: relative;
    padding: 3.7rem 5rem;
    border-radius: 11px;
    z-index: 2;
}

.oneClickRow .oneClickRow__col:first-child .oneClickBox:last-child {
    text-align: right;
}

.oneClickRow .oneClickRow__col:first-child .oneClickBox:first-child .oneClickBox__wrapper {
    padding-top: 156px;
}

.oneClickRow .oneClickRow__col:first-child .oneClickBox:first-child img {
    right: 46px;
    top: -106px;
    width: 245px;
}

.oneClickRow .oneClickRow__col:first-child .oneClickBox:last-child .oneClickBox__wrapper {
    padding-top: 228px;
}

.oneClickRow .oneClickRow__col:first-child .oneClickBox:last-child .oneClickBox__wrapper p {
    max-width: 500px;
    margin-left: auto;
}

.oneClickRow .oneClickRow__col:first-child .oneClickBox:last-child img {
    left: 20px;
    top: 20px;
}

.oneClickRow .oneClickRow__col:last-child .oneClickBox:first-child .oneClickBox__wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
}

.oneClickRow .oneClickRow__col:last-child .oneClickBox:first-child img {
    right: 20px;
    top: -97px;
}

.oneClickRow .oneClickRow__col:last-child .oneClickBox:first-child .oneClickBox__wrapper p {
    max-width: 427px;
}

.oneClickRow .oneClickRow__col:last-child .oneClickBox:last-child .oneClickBox__wrapper {
    padding-top: 218px;
}

.oneClickRow .oneClickRow__col:last-child .oneClickBox:last-child img {
    width: 330px;
    right: 5.3rem;
    top: 0;
}

.oneclickSection__bgSphapes {
    position: relative
}

/* .oneclickSection__bgSphapes:before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/oneClickShape1.svg);
    position: absolute;
    bottom: -30px;
    right: 0;
    background-size: 100% 100%;
    background-position: bottom right;
    background-repeat: no-repeat;
    z-index: -4;
} */

.oneClickShape1 {
    position: absolute;
    z-index: 0;
    bottom: 0;
    bottom: -46px;
    max-width: 1697px;
    right: -25px;
    width: 100%;
}

.oneClickShape2 {
    position: absolute;
    z-index: 0;
    left: 42%;
    top: -61px;
}

.oneClickShape3 {
    position: absolute;
    z-index: 0;
    right: 10%;
    top: 32px;
}

.oneClickBox h3 {
    font-size: 3.2rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    background: rgb(156, 226, 252);
    background: -moz-linear-gradient(var(--blueTopinkGrad));
    background: -webkit-linear-gradient(var(--blueTopinkGrad));
    background: linear-gradient(var(--blueTopinkGrad));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.oneClickBox p {
    font-size: 2.4rem;
    opacity: 0.52;
    margin-bottom: 3.7rem;
    line-height: initial;
}

.oneclickSection {
    /* overflow: hidden; */
}

.oneclickSection__wrapper {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 0 134px;
}

.oneclickSection__bgSphapes>.container:before {
    content: "";
    width: 757px;
    height: 806px;
    background: url('../images/oneClickBox__bottomblow.png') no-repeat center;
    position: absolute;
    left: -9.4%;
    bottom: -27%;
    z-index: 0;
    background-size: 100%;
    pointer-events: none;
}

.oneclickSection__bgSphapes>.container:after {
    content: "";
    position: absolute;
    width: 707px;
    height: 405px;
    transform: rotate(-128.5deg);
    background: rgb(48, 151, 169);
    background: -moz-linear-gradient(90deg, rgba(48, 151, 169, 1) 0%, rgba(74, 14, 184, 1) 50%, rgba(150, 24, 133, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(48, 151, 169, 1) 0%, rgba(74, 14, 184, 1) 50%, rgba(150, 24, 133, 1) 100%);
    background: linear-gradient(90deg, rgba(48, 151, 169, 1) 0%, rgba(74, 14, 184, 1) 50%, rgba(150, 24, 133, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3097a9", endColorstr="#961885", GradientType=1);
    filter: blur(200px);
    z-index: 0;
    top: 0;
    left: 30%;
}

.oneclickSection__child {
    position: relative;
    z-index: 3;
}

/* onclick ends here */

/* tokenomics */
.tokenomics {
    padding-bottom: 150px;
}

.token__panel {
    display: none;
}

.token_row {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.token_row .section-heading {
    margin-bottom: 40px;
}

.tokenomics .section-heading {
    text-align: center;
}

.tokenomics .section-heading h2 {
    text-transform: uppercase;
}

.token__title {
    background: linear-gradient(269.23deg, rgba(32, 28, 53, 0) -4.72%, rgba(52, 47, 81, 0.3) 14.45%, #201C35 27%, #120F21 55.86%, #201C35 76.45%, rgba(17, 15, 32, 0) 100.7%, rgba(32, 28, 53, 0) 116.42%);
    display: flex;
    align-items: center;
    gap: 50px;
    border-radius: 44px;
    cursor: pointer;
    justify-content: space-between;
    padding-right: 141px;
}

.token__card:not(:last-child) {
    padding-bottom: 16px;
}

.token-percent {
    font-size: 32px;
    font-weight: 800;
    line-height: 80%;
    padding: 22px 12px;
    border: 4px solid #CDCDCD;
    border-radius: 44px;
    min-width: 170px;
    text-align: center;
}

.token-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.token__title {
    position: relative;
}

.token__title p {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    line-height: 28px;
    color: #fff;
    font-family: var(--mainFont);

}

.token-cost {
    font-size: 32px;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.52);
}

.token-cost span {
    font-weight: 800;
}

.token__title::after {
    content: "";
    position: absolute;
    right: 30px;
    top: calc(50% - 6.5px);
    background-image: url(../images/token-plus.svg);
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all linear 0.3s;
}

.token__card.active .token__title::after {
    background-image: url(../images/token-minus.svg);
    background-repeat: no-repeat;
    height: 4px;
    top: calc(50% - 1.5px);
}

.token__panel {
    padding: 20px 0 20px 200px;
}

.token__panel p {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.52);
    line-height: 125%;
}

.token-content .token__card:nth-child(1) .token-percent {
    background: rgba(60, 43, 214, 0.2);
    border-color: #3C2BD6;
}

.token-content .token__card:nth-child(1) .token-cost span,
.token-content .token__card:nth-child(1) .token-percent {
    color: #3C2BD6;
}

.token-content .token__card:nth-child(2) .token-percent {
    background: rgba(110, 14, 184, 0.2);
    border-color: #6E0EB8;
}

.token-content .token__card:nth-child(2) .token-cost span,
.token-content .token__card:nth-child(2) .token-percent {
    color: #6E0EB8;
}

.token-content .token__card:nth-child(3) .token-percent {
    background: rgba(150, 24, 133, 0.2);
    border-color: var(--darkMagenta);
}

.token-content .token__card:nth-child(3) .token-cost span,
.token-content .token__card:nth-child(3) .token-percent {
    color: var(--darkMagenta);
}

.token-content .token__card:nth-child(4) .token-percent {
    background: rgba(177, 80, 158, 0.2);
    border-color: #B1509E;
}

.token-content .token__card:nth-child(4) .token-cost span,
.token-content .token__card:nth-child(4) .token-percent {
    color: #B1509E;
}

.token-content .token__card:nth-child(5) .token-percent {
    background: rgba(221, 75, 153, 0.2);
    border-color: #DD4B99;
}

.token-content .token__card:nth-child(5) .token-cost span,
.token-content .token__card:nth-child(5) .token-percent {
    color: #DD4B99;
}

.token-content .token__card:nth-child(6) .token-percent {
    background: rgba(150, 24, 133, 0.2);
    border-color: #E96A8F;
}

.token-content .token__card:nth-child(6) .token-cost span,
.token-content .token__card:nth-child(6) .token-percent {
    color: #E96A8F;
}

.token-content .token__card:nth-child(7) .token-percent {
    background: rgba(240, 124, 134, 0.2);
    border-color: #F07C86;
}

.token-content .token__card:nth-child(7) .token-cost span,
.token-content .token__card:nth-child(7) .token-percent {
    color: #F07C86;
}

.token-content .token__card:nth-child(8) .token-percent {
    background: rgba(249, 169, 111, 0.2);
    border-color: #F9A96F;
}

.token-content .token__card:nth-child(8) .token-cost span,
.token-content .token__card:nth-child(8) .token-percent {
    color: #F9A96F;
}

.token-content .token__card:nth-child(9) .token-percent {
    background: rgba(253, 206, 60, 0.2);
    border-color: #FDCE3C;
}

.token-content .token__card:nth-child(9) .token-cost span,
.token-content .token__card:nth-child(9) .token-percent {
    color: #FDCE3C;
}

/* tokenomics */


/* journey sec css */
.journey-section {
    padding: 100px 0;
    overflow: hidden;
}

.journey-section__title-wrap .section-top-title {
    background: linear-gradient(270deg, #da46f2 0%, #9ce2fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-family: var(--mainFont);
    font-size: 32px;
    font-weight: 500;
    line-height: 40.8px;
    margin-bottom: 7px;
}

.journey-section__title-wrap .section-title {
    background: linear-gradient(90deg,
            #a7a5a7 0%,
            #a7a5a7 41.64%,
            #ffffff 75.5%,
            #ffffff 75.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 64px;
    font-weight: 500;
    line-height: 81.6px;
    margin-bottom: 24px;
}

.journey-section__title-wrap .section-title span {
    font-weight: 900;
}

.section-desc {
    font-size: 24px;
    font-weight: 500;
    line-height: 30.6px;
    color: var(--text-gray);
    margin-bottom: 47px;
}

.journey-section__title-wrap {
    text-align: center;
}

.term-goal__title {
    background: linear-gradient(270deg, #da46f2 0%, #9ce2fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    font-weight: 500;
    line-height: 40.8px;
    margin: 0;
}

.term-goal__desc {
    font-size: 24px;
    font-weight: 200;
    line-height: 30.6px;
    color: var(--white);
    margin: 0;
}

.term-goals {
    position: relative;
    background: radial-gradient(121.83% 239.83% at 107.42% -210.65%,
            rgba(74, 14, 184, 0.15) 0%,
            #12101a 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 20px;
    padding: 26px;
    max-width: 503px;
    text-align: center;
    margin: 0 auto 28px;
}

.term-goals::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 20px;
    background: linear-gradient(195.44deg,
            #9d62d9 -12.42%,
            rgba(83, 52, 115, 0) 70.16%);
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.step-content__date {
    font-size: 24px;
    font-weight: 400;
    line-height: 30.6px;
    color: #ffffff80;
}

.step-content__title {
    font-size: 32px;
    font-weight: 500;
    line-height: 40.8px;
    background: linear-gradient(270deg, #da46f2 0%, #9ce2fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.step-content__desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 25.5px;
    color: #ffffff85;
    margin: 0;
}

.step-content {
    display: grid;
    gap: 30px;
}

.journey-section__step__col {
    position: relative;
    background: radial-gradient(121.83% 239.83% at 107.42% -210.65%,
            rgba(74, 14, 184, 0.045) 0%,
            rgba(18, 16, 26, 0.3) 100%);
    backdrop-filter: blur(90px);
    padding: 45px 43px 67px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.journey-section__step__col::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 20px;
    background: linear-gradient(195.44deg,
            #9d62d9 -12.42%,
            rgba(83, 52, 115, 0) 70.16%);
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.journey-section__step__row {
    display: flex;
    gap: 34px;
}

.journey-section__step__col {
    width: 33.33%;
}

.sort-term-wraper {
    position: relative;
}

.short-term-bg {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 30px;
    height: auto;
    width: 76.5%;
    z-index: -1;
}

.short-term-bgshade {
    position: absolute;
    top: -90px;
    width: 56%;
    left: 13%;
    z-index: -1;
}

.mid-long-term-wraper {
    position: relative;
    /* overflow: hidden; */
}

.midterm-left-image {
    position: absolute;
    left: 0;
}

.midterm-shade-image {
    position: absolute;
    z-index: -1;
    width: 73%;
    top: 0;
    height: auto;
    margin: auto;
    left: 0;
    right: 0;
}

.journey-section__step__row {
    margin-bottom: 65px;
    justify-content: center;
}

.midterm-left-image {
    position: absolute;
    left: -265px;
    width: 54%;
    top: 0;
}

.midterm-right-image {
    position: absolute;
    right: -255px;
    width: 54%;
    top: 0;
}

.mid-long-term-wraper .term-goals {
    margin-bottom: 64px;
}

/* presale */
section.presale-section {
    padding: 0;
}

.presale-section {
    text-align: center;
    padding: 40px 20px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.highlight {
    font-weight: 700;
}

.section-subtitle {
    color: rgb(255 255 255 / 52%);
    font-family: 'Onest';
    font-size: 24px;
    font-weight: 500;
    line-height: 30.6px;
    text-align: center;
    text-decoration-skip-ink: none;
}

.presale-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    overflow-x: auto;
    padding: 20px;
    flex-wrap: wrap;
}

.presale-card {
    max-width: calc(50% - 10px);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 70px 60px 60px 30px;
    text-align: left;
    color: #ffffff;
    height: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
    justify-content: space-between;
}

.presale-card-icon {
    max-width: 64px;
    margin-bottom: 0px;
}

.presale-card.presale-card1 {
    background-image: url('../images/presale-card-one.png');
}

.presale-card.presale-card2 {
    background-image: url('../images/presale-card-2.png');
}

.presale-card.presale-card3 {
    background-image: url('../images/presale-card-3.png');
}

.presale-card.presale-card4 {
    background-image: url('../images/presale-card-4.png');
}

.presale-card.presale-card5 {
    background-image: url('../images/presale-card-5.png');
}

.presale-card.presale-card6 {
    background-image: url('../images/presale-card-6.png');
}

.presale-cards-container {
    max-width: 1280px;
    margin: auto;
}

.presale-card-title {
    font-size: 32px;
    margin-bottom: 24px;
}

.presale-card-description {
    font-size: 22px;
    line-height: 32px;
    color: rgb(255 255 255 / 52%);
    margin-bottom: 0;
}

.presale-card-outer {
    background-image: url("../images/presale-background-png.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.pre-card-con-1,
.pre-card-con2,
.pre-card-con-3 {
    position: relative;
}

.pre-card-con-1:before,
.pre-card-con2:before,
.pre-card-con-3:before {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    z-index: -1;
}

.pre-card-con-1:before {
    background-image: url("../images/pre-sale-line-pipe.png");
}

.pre-card-con2:before {
    background-image: url("../images/pre-sale-line-pipe2.png");
    top: -16px;
}

.pre-card-con-3:before {
    background-image: url("../images/pre-sale-line-pipe3.png");
}

/* presale */

/* onefuel */
section.one-fuel-card-sec {
    padding-top: 80px;
    overflow: hidden;
}

.one-fuel-card-top {
    max-width: 800px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    padding: 0 20px;
}

.card-image-wpr {
    width: 100%;
    min-width: 750px;
    position: relative;
    z-index: 1;
    margin: auto;
    display: block;
}

.btn.btn-learn-more {
    font-size: 14px;
    color: #FC3BEC;
    padding: 14px 35px;
    background: rgba(252, 59, 236, 0.11);
    opacity: 1;
    outline: 0;
    border: 0;
    text-transform: capitalize;
    border-radius: 8px;
}

.btn.btn-learn-more:hover {
    box-shadow: 0 0px 24px 0 rgba(214, 129, 238, 0.251), 0 20px 30px 0 rgba(214, 129, 238, 0.212);
}

.one-fuel-card-top h2.bannersection__smalltitle.presale-card-title {
    margin-bottom: 0;
}

.one-fuel-card-content {
    position: relative;
}

.one-fuel-card-inner-con {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

.one-fuel-card-innerwpr {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.one-fuel-card-innerwpr p {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 30.6px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: rgb(255 255 255 / 52%);
}

.one-fuel-cardImgwpr {
    text-align: center;
    position: relative;
    padding: 0 0px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.one-fuel-cardImgwpr:after {
    /* content: ''; */
    background-image: url('https://1fuel.io/wp-content/themes/twentytwentyfive-child/assets_home/images/carg-line-bg.png ');
    background-size: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 370px;
    background-repeat: no-repeat;
    top: -14px;
}

.earn-more-sec {
    padding: 120px 0 0 0;
    margin-top: 100px;
}

.earn-more-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

.earn-more-sec-cont {
    position: relative;
}

h2.earn-more-content-h2 {
    background: linear-gradient(90deg, #FFFFFF 75.57%, #9D62D9 111.86%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: var(--mainFont);
    font-size: 64px;
    font-weight: 250;
    line-height: 81.6px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 0;
}

.earn-more-content-left {
    max-width: 40%;
    width: 100%;
}

.earn-more-content-right {
    width: 100%;
}

h2.earn-more-content-h2-last {
    background: linear-gradient(90deg, #A7A5A7 0%, #A7A5A7 41.64%, #FFFFFF 75.5%, #FFFFFF 75.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: var(--mainFont);
    font-size: 64px;
    font-weight: 700;
    line-height: 81.6px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.earn-more-sec {
    background-image: url('../images/earmore-pink-elipse.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}

.earn-more-sec:before {
    content: '';
    background-image: url("../images/earnmore-rightline-pipe.png");
    background-repeat: no-repeat;
    width: 45%;
    right: 0;
    z-index: -1;
    position: absolute;
    top: 0;
    height: 80%;
    background-size: cover;
}

.earn-more-sec:after {
    content: '';
    background-image: url("../images/earn-more-leftpipe-1.png");
    background-repeat: no-repeat;
    left: 0;
    z-index: -1;
    position: absolute;
    height: 58px;
    width: 60%;
    top: auto;
    bottom: 40px;
    background-size: 100%;
}

.earn-more-content {
    position: relative;
}

.earn-more-content::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    background-image: url('../images/earn-more-dots.png');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    height: 180px;
    max-width: 320px;
    z-index: -1;
}

.earn-more-sec {
    position: relative;
}

.one-fuel-card-inner-outer-wpr {
    margin-top: -130px;
    position: relative;
    z-index: 1;
}

/* onefuel */

/* Footer css */

.main-footer {
    background-image: url(../images/footer-bg.png);
    padding: 130px 0px;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100% 100%;
    position: relative;
}

.main-footer:before {
    content: "";
    background-image: url(../images/footer-top-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    padding-left: 140px;
    top: -15%;
    width: 70%;
    height: 360px;
    z-index: -1;
    max-width: 740px;
}

.footer__content {
    max-width: 1320px;
    padding-inline: 20px;
}

.footer__top {
    display: flex;
    flex-direction: row;
    gap: 110px;
}

.footer__logo {
    max-width: 238px;
    position: relative;
}

.footer__logo::before {
    content: "";
    background-image: url(../images/footer-logo-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
    left: -40%;
    top: -40%;
    width: 180%;
    height: 180%;
}

.footer__logo img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.footer__title {
    font-family: var(--mainFont);
    font-style: normal;
    font-weight: 300;
    font-size: 82.3576px;
    line-height: 105px;
    display: flex;
    flex-direction: column;
    letter-spacing: -0.0935882px;
    background: linear-gradient(90deg,
            #a7a5a7 0%,
            #a7a5a7 41.64%,
            #ffffff 75.5%,
            #ffffff 75.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.footer__middle {
    display: flex;
    flex-direction: row;
    gap: 140px;
    align-items: center;
    padding: 45px 0;
}

.footer__cta a img {
    width: 10px;
    margin-left: 5px;
}

.footer__cta-link:hover img {
    rotate: 360deg;
}

.footer__middle .round-logo-side {
    min-width: 150px;
}

.footer__middle .round-logo-side a {
    position: relative;
    width: 100%;
}

.footer__middle .round-logo-side a img.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer__middle .round-logo-side .round-logo-ani {
    animation: rotate 15s linear infinite;
    animation-play-state: running;
    width: 100%;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.footer__bottom {
    display: flex;
    flex-direction: row;
    gap: 60px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff38;
    padding: 30px 0px;
}

.footer__contact {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
}

.footer__contact-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.footer__cta {
    display: flex;
    gap: 60px;
    align-items: center;
}

.main-footer a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
}

.main-footer a:hover {
    text-shadow: -1px -1px 0 #718DE8, 1px -1px 0 #718DE8, -1px 1px 0 #718DE8, 1px 1px 0 #718DE8, 0 0 46.22px #86B9EA, 0 0 26.41px #86B9EA, 0 0 15.41px #86B9EA, 0 0 7.7px #86B9EA, 0 0 2.2px #86B9EA, 0 0 1.1px #86B9EA;
}

.footer__contact img.footer__logo-image {
    max-width: 150px;
}

.footer-socails-list {
    display: flex;
    gap: 15px;
}

.footer-socails-list a {
    background: #fff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.footer-socails-list a:hover {
    box-shadow: -1px -1px 0 #718DE8, 1px -1px 0 #718DE8, -1px 1px 0 #718DE8, 1px 1px 0 #718DE8, 0 0 46.22px #86B9EA, 0 0 26.41px #86B9EA, 0 0 15.41px #86B9EA, 0 0 7.7px #86B9EA, 0 0 2.2px #86B9EA, 0 0 1.1px #86B9EA;
}

.footer__disclaimer {
    display: flex;
    gap: 250px;
}

.footer__description {
    font-size: 18px;
    color: #ffffffb8;
    line-height: 27px;
}

.footer__disclaimer-text {
    font-size: 18px;
    color: #ffffffb8;
    line-height: 27px;
}

/* Faq Css Start */
.faq-section {
    margin-bottom: 220px;
}

.faq-section_conteiner {
    max-width: 1320px;
    padding-inline: 20px;
}

.faq-section .section-heading {
    text-align: center;
}

.faq-section .section-heading strong {
    display: table;
    margin: auto;
}

.faq-content .acc__card {
    border: 2px solid #342f51;
    border-radius: 51px;
}

.faq-content .acc__card:not(.active) {
    background: linear-gradient(269.23deg,
            rgba(32, 28, 53, 0) -4.72%,
            rgba(52, 47, 81, 0.3) 14.45%,
            #201c35 27%,
            #120f21 55.86%,
            #201c35 76.45%,
            rgba(17, 15, 32, 0) 100.7%,
            rgba(32, 28, 53, 0) 116.42%);
}

.faq-content .acc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-content .acc__panel a {
    background: rgb(156, 226, 252);
    background: -moz-linear-gradient(var(--blueTopinkGrad));
    background: -webkit-linear-gradient(var(--blueTopinkGrad));
    background: linear-gradient(var(--blueTopinkGrad));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-content .acc__panel p {
    margin-top: 1.875rem;
    margin-bottom: 0;
}

.faq-content .acc__panel p:first-child {
    margin-top: 0px;
}

.faq-content .acc__panel {
    display: none;
    padding: 0px 50px 30px;
    margin-top: -15px;
}

.faq-content .acc__title {
    cursor: pointer;
    cursor: pointer;
    padding: 30px 50px;
    position: relative;
}

.faq-content .acc__title::after {
    content: "";
    position: absolute;
    right: 30px;
    top: calc(50% - 6.5px);
    background-image: url(../images/arrow-top.png);
    width: 26px;
    height: 13px;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-180deg);
    transition: all linear 0.3s;
}

.faq-content .acc__card.active .acc__title::after {
    transform: rotate(0deg);
}

.faq-content .acc__title.active {
    background-color: #ccc;
}

/* Faq Css End */

ul.list-unstyled.ct-language__dropdown.planguage {
    background: #201C35;
    border-color: var(--backgroundColor);
    color: #fff;
    top: 70px;
}

body li.ct-language.planguage_drop.notranslate.active li a {
    color: #fff;
}

.oneclickCarHolder .section-heading {
    margin-bottom: 20px;
}

div#google_translate_element {
    display: none;
}