html {
    scroll-behavior: smooth
}

body {
    padding: 0;
    margin: 0;
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top;
    background-color: white;

}

body.gray{
    background-color: #F8F9FD;
}

*,
::after,
::before {
    box-sizing: border-box;
}

a,
a:hover {
    text-decoration: none
}

button {
    border: none;
    padding: 0px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

section {
    width: 100%;
    float: left;
}

.themeRow {
    width: 100%;
    float: left
}

.themeContainer {
    width: 100%;
    margin: 0 auto;
    max-width: 1440px
}

.themeContainerSmall {
    width: 100%;
    margin: 0 auto;
    max-width: 1240px
}

input,
.form-select,
textarea {
    outline: none;
    font-family: Gilroy, sans-serif;
}

ul::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    border-radius: 10px;
}

ul::-webkit-scrollbar-track {
    background: #1ad5975e;
    border-radius: 10px;
}

ul::-webkit-scrollbar-thumb {
    background: #1417FF;
    border-radius: 10px;
}

ul::-webkit-scrollbar-thumb:hover {
    background: #0fa372;
}


/* general style
-------------------------------------------------------------- */

.themeContainerFluid {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.themeContainerMax {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.positionRelative {
    position: relative;
}

.header {
    padding: 24px 0;
    position: relative;
    z-index: 9999;
}

.headerWrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logoArea {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #0A2258;
    font-weight: 600;
    font-size: 14px;
}

.logoArea a {
    display: flex;
}

.logoArea a img {}

.menuWrapper {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 0 8px;
}

.menuWrapper>ul {
    display: flex;
    align-items: center;
}

.menuWrapper ul>li {
    padding: 0;
}

.menuWrapper ul li a {
    display: flex;
    text-align: left;
    padding: 12px 16px;
    transition: all .3s ease;
    font-family: Gilroy, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0;
    color: #090E24;
}

.menuWrapper ul li a:hover,
.menuWrapper ul li a.active {
    color: #0059fc;
}

.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menu>li {
    position: relative;
    padding: 8px 0;
}

.menu li a {
    display: block;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}

.submenu {
    display: none;
    position: absolute;
    list-style-type: none;
    padding: 0;
    min-width: 235px;
    box-shadow: 0px -4px 12px 0px rgba(255, 255, 255, 0.12) inset;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgb(225 233 252);
    border-radius: 12px;
    padding: 16px 12px;
    gap: 0px 10px;
    top: calc(100% + 0px);
    left: 0;
}

.submenu li {
    min-width: 150px;
    width: 100%;
}

.submenu li a {
    display: block;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}

.menu li:hover .submenu {
    display: flex;
    flex-wrap: wrap;
}

.menu li:hover .downMenu {}

.menu li:hover .submenu:before {
    content: "";
    height: 40px;
    width: 100%;
    position: absolute;
    top: -30px;
    left: 0;
}

.downMenu:after {
    content: "";
    background: url('../img/down.svg');
    background-size: auto;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition: all .3s ease;
    display: block;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    margin-top: 0px;
    filter: invert(1);
}

.menu li:hover .downMenu:after {
    transform: rotate(-180deg);
}

.linkArea {
    display: flex;
    align-items: center;
    gap: 16px;
}

.linkArea>a {}

.linkArea>a img {}

.langSelect {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    height: 48px;
    width: 97px;
    position: relative;
}

.language {
    width: 100%;
}

.language .select {
    cursor: pointer;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    padding: 15px 16px;
    border: 1px solid #E3E7F1;
    box-shadow: 0px 10px 48px 0px #0000001F;
    background: white;
    border-radius: 12px;
    height: 100%;
}

.language .select+div {
    display: none;
    position: absolute;
    top: calc(100% + 3px);
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    width: 100%;
    left: 0;
    padding: 15px 16px;
    border: 1px solid #E3E7F1;
    box-shadow: 0px 10px 48px 0px #0000001F;
    background: white;
    border-radius: 12px;
}

.language .option {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.language::after {
    content: "";
    background: url('../img/down.svg');
    width: 17px;
    height: 17px;
    position: absolute;
    right: 10px;
    top: 16px;
}

.language .option:last-child {
    margin-bottom: 0;
}

.defaultButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    color: rgba(255, 255, 255, 1);
    padding: 15px 16px;
    border-radius: 100px;
    transition: background .4s ease;
    min-width: 154px;
    text-align: center;
    cursor: pointer;
    letter-spacing: .4px;
    background: radial-gradient(140.75% 161.99% at 100% 13.54%, #7929FB 0%, #4A6BE5 50%, #19AFCE 100%);
}

.defaultButton:hover {
    transition: background .4s ease;
    background: radial-gradient(140.75% 161.99% at 100% 13.54%, #5a0bd9 0%, #3959ce 50%, #089bb9 100%);
}

.primaryButton {
    font-family: Gilroy, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    transition: all .4s ease;
    box-shadow: 0px 0px 8px 0px #FFFFFF40 inset;
    background: #1417FF;
    border-radius: 12px;
    color: white;
    padding: 12px 24px;
    cursor: pointer;
}

.primaryButton:hover {
    background: #090E24;
}

.themeTitle {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.themeTitle.alignLeft {
    align-items: flex-start;
    text-align: left;
}

.themeTitle span {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0em;
    color: #1417FF;
    margin: 0;
    background: radial-gradient(140.75% 161.99% at 100% 13.54%, #7929FB 0%, #4A6BE5 50%, #19AFCE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.themeTitle h2 {
    letter-spacing: 0em;
    color: #0A2258;
    font-family: Gilroy, sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    margin: 0;
}

.themeTitle h2.subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
}

.themeTitle.alignLeft h2{
    font-family: Gilroy;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0%;
}

.themeTitle.alignLeft p{
    font-size: 18px;
    line-height: 32px;
    color: #626C85;
}

.themeTitle p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    color: #626C85;
    margin: 0;
}

.themeTitle.white h2,
.themeTitle.white p,
.themeTitle.white span{
    color: white;
    background: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.hero{
    margin-bottom: 120px;
}

.heroWrapper {
    width: 100%;
    display: flex;
    align-items: flex-start;
    position: relative;
    gap: 8px;
}

.bannerHero{
    margin-bottom: 120px;
}

.bannerHeroWrapper{
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    gap: 32px;
}

.heroDescArea {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}

.heroDescArea.fullDesc{
    width: 100%;
}

.notWrapper .heroDescArea{
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.heroImg {
    position: unset;
    display: flex;
    width: 50%;
    align-items: flex-end;
    justify-content: flex-end;
}

.heroImg img {
    width: 100%;
    width: 744px;
    max-width: 100%;
    border-radius: 16px;
}

.heroDescArea span {
    font-family: Gilroy, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: .2px;
    color: #1417FF;
    margin-bottom: 24px;
}

.heroDescArea h2 {
    font-family: Gilroy, sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 64px;
    letter-spacing: 0%;
    color: #090E24;
    margin: 0 0 24px 0;
}

.heroDescArea h2 a {}

.heroDescArea p {
    font-family: Gilroy, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0%;
    margin: 0 0 24px 0;
    color: #626C85;
}

.socialMedia {
    position: relative;
    z-index: 99;
    margin-bottom: 120px;
}

.socialWrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.interactionLinks {
    display: flex;
    gap: 16px;
    align-items: center;
}

.interactionLinks .linkButton {
    height: 20px;
    min-height: 20px;
}

.paperButtons {}

.appButtons {}

.socialButtons {}

.appButtons .linkButton {
    padding: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 100%;
    background: #FFFFFF;
}

.linkButton {
    min-width: 140px;
    display: flex;
    justify-content: center;
    background: #F0F0F2;
    border-radius: 12px;
    align-items: center;
    color: #626C85;
    gap: 12px;
    font-weight: 500;
    transition: all .4s ease;
}

.linkButton:hover {
    /* background: #090E24; */
    /* color: white; */
}

.linkButton:hover img {
}

.socialButton {}

.socialButtons .linkButton {
    width: 20px;
    min-width: 20px;
}

.widgets {
    margin-bottom: 100px;
}

.interactionLinks.paperButton .linkButton img {
    height: 20px;
}

.interactionLinks.socialButtons .linkButton img {
    height: 18px;
}


.platforms {
    margin-bottom: 120px;
}

.platformSlider {
    width: 100%;
    float: left;
    margin: 32px 0 0px 0;
}

body .swiper-pagination {
    position: unset;
    margin-top: 40px;
}

body .swiper-pagination-bullets .swiper-pagination-bullet,
body .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background: rgba(147, 157, 184, 1);
    width: 24px;
    height: 6px;
    border-radius: 100px;
    margin: 0 8px;
}

body .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
body .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #1417FF;
    width: 32px;
}

.platformSlider .swiper-slide {}

.platformSlider .swiper-slide a {
    width: 100%;
    box-shadow: 0px -4px 26px 0px rgba(255, 255, 255, 0.08) inset;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    position: relative;
    transition: all .4s ease;
    background: #ffffff99;
    border: 1px solid #E3E7F1;
    padding-bottom: 10px;
}

.platformSlider .swiper-slide a img {
    position: relative;
    filter: brightness(0) saturate(100%) invert(29%) sepia(3%) saturate(5418%) hue-rotate(191deg) brightness(91%) contrast(82%);
}

.platformSlider .swiper-slide a:hover img {
    filter: unset;
}

.platformSlider .swiper-slide a:hover {
    transition: all .4s ease;
    /* box-shadow: 0px 10px 48px 0px #0000001F; */
    border-color: #4c4eff;
    background: radial-gradient(140.75% 161.99% at 100% 13.54%, rgba(121, 41, 251, 0.1) 0%, rgba(74, 107, 229, 0.1) 50%, rgba(25, 175, 206, 0.1) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
}

.platformSlider .swiper-slide a:hover:before {
    /* content: ""; */
    position: absolute;
    box-shadow: 0px -4px 26px 0px rgba(255, 255, 255, 0.08) inset;
    background: #030516;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border-radius: 24px;
    z-index: 0;
    transition: all .4s ease;
}

.bannerDescription {
    padding-bottom: 130px;
    background: white;
}

.bannerDescWrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.bannerArea {
    display: flex;
    flex-direction: column;
    width: calc(50% - 16px);
    background: #F8F9FD;
    border-radius: 24px;
}

.bannerArea img {
    width: 100%;
    max-width: 604px;
    cursor: pointer;
    margin-top: 0;
}

.descriptionArea {
    width: calc(50% - 16px);
}

.descriptionArea a {
    margin-top: 16px;
}



.widgetWrapper {
    width: 100%;
    display: flex;
    gap: 34px;
    margin: 48px 0 40px 0;
}

.widgetBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px -4px 24px 0px rgba(255, 255, 255, 0.02) inset;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    transition: all .3s ease;
}

.widgetBox:hover .widgetBottomArea {
    background: linear-gradient(180deg, rgba(5, 17, 44, 0) -26.38%, #05112C 90.79%);
}

.widgetImg {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    position: relative;
}

.widgetImg img {
    filter: opacity(1);
    transition: all .3s ease;
    width: 100%;
    object-fit: contain;
}

.widgetDesc {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    float: left;
    align-items: flex-start;
}

.widgetDesc span {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
}

.widgetDesc p, .widgetButtons p {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    margin: 0;
    color: #c8c8c8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    /*display: -webkit-box;-webkit-line-clamp:2;-webkit-box-orient: vertical;*/
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    float: left;
    width: 100%;
}

.widgetBottomArea {
    width: 100%;
    position: absolute;
    bottom: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(5, 17, 44, 0) 64.38%, #05112C 90.79%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 24px;
}

.widgetBox:hover .widgetButtons {
    
display: flex;
}


.widgetButtons {
    width: 100%;
    margin: 16px 0;
    display: none;
    justify-content: flex-start;
    transition: all .3s ease;
    flex-direction: column;
    gap: 16px;
}

.widgetButtons a {
    border-radius: 24px;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    display: flex;
    align-items: center;
    transition: all .3s ease;
}

.widgetButtons a span {
    color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0px -4px 4px 0px rgba(255, 255, 255, 0.12) inset;
    padding: 8px 12px;
    border-radius: 24px;
    margin-right: 12px;
}

.widgetButtons a img {
    margin-left: 8px;
    margin-right: 8px;
}

.widgetBox:hover .widgetImg img {
    filter: opacity(1);
}

.widgetBox:hover .widgetImg:after {
    opacity: 0;
}

.w100 {
    width: 100%;
    display: flex;
    justify-content: center;
}


.widgetWrapper .widgetBox .widgetButtons a {
    color: #fff;
}

.widgetWrapper .widgetBox .widgetButtons a:hover {
    color: #ffffff;
}

.whiteButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #E3E7F1;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    color: #090E24;
    padding: 14px 16px;
    border-radius: 12px;
    min-width: 186px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0px 10px 48px 0px #0000001F;
    transition: all .3s ease;
}

.whiteButton:hover {
    background: #090E24;
    color: white;
}


.workTeam {
    margin-bottom: 230px;
}

.teamSlider {
    width: 100%;
    margin-top: 40px;
}

.personCard {
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    box-shadow: 0px -4px 24px 0px rgba(255, 255, 255, 0.02) inset;
    border-radius: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
    border: 1px solid #E3E7F1;
}

.personPic {
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    position: relative;
}

.personPic img {
    width: 100%;
    filter: brightness(0.9);
    transition: all .3s ease;
    border-radius: 24px;
}

.personCard:hover .personPic img {
    filter: unset;
}

.personName {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #090E24;
    margin-bottom: 5px;
}

.personTitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #626C85;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.personTitle a {
    border: 1px solid #E3E7F1;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 48px 0px #0000001F;
}

.swiperTeam {}

.personTitle a:hover {
    box-shadow: 0px 10px 48px 0px #00000036;
}

.personTitle a img {
    /* filter: opacity(0.5); */
    transition: all .3s ease;
}

.personCard:hover .personPic:after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    background: linear-gradient(89.67deg, #4AD2FF -0.31%, #0147FF 25.69%, #8557FF 55.66%, #EB67D7 73.74%, #FF6CB2 99.71%);
    border-radius: 10px;
    z-index: -1;
    opacity: .3;
    filter: blur(16px);
    transition: all .3s ease;
}

.personCard:hover .personTitle a img {
    filter: unset;
}

.personCard:hover .personTitle span {}

.gridBg {
    width: 100%;
    position: relative;
    display: flex;
}

.gridBg img {
    position: absolute;
    top: 0;
    opacity: .5;
    width: auto;
    max-width: 100%;
}


.accordion {
    margin-bottom: 0;
}

.accordionWrapper {
    width: 100%;
    float: left;
    margin-top: 64px;
}

.accordionArea {width: 100%;max-width: 922px;margin: 0 auto;}

.accordionArea.half{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
}

.accordionArea.half .accordion-item{
    width: calc(100% * 1/2 - 12px);
}

.accordion-item {
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #F5F6FB;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0px -4px 26px 0px rgba(255, 255, 255, 0.04) inset;
    border-radius: 16px;
    cursor: pointer;
    transition: all .4s ease;
    position: relative;
}

.accordion-item.active {
    /* box-shadow: 0px 10px 48px 0px #0000001F; */
    background: #F5F6FB;
}

.accordion-item.active:before {
    content: "";
    /* position: absolute; */
    /* box-shadow: 0px -4px 26px 0px rgba(255, 255, 255, 0.08) inset; */
    /* background: #030516; */
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    /* border-radius: 24px; */
    z-index: 0;
    /* transition: all .4s ease; */
}

.accordion-item.active .accordion-title {
    color: #090E24;
    z-index: 9;
    position: relative;
    border-color: #fff0;
}

.accordion-title {
    padding: 24px 45px 24px 24px;
    border-radius: 16px;
    color: #0A2258;
    background: #F5F6FB;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.accordion-title:after {
    content: "";
    background: url(../img/plus.svg);
    width: 20px;
    height: 20px;
    position: absolute;
    right: 30px;
    transition: all .3s ease;
    transform: rotate(180deg);
    top: calc(50% - 10px);
    background-repeat: no-repeat;
}

.active .accordion-title:after {
    transform: rotate(0deg);
    filter: none;
    
}

.accordion-content {
    display: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(147, 157, 184, 1);
    padding: 0px 24px 24px 24px;
    z-index: 9;
    position: relative;
}


.accordion-content p {
    width: 100%;
    margin: 0;
    color: #626C85;
    letter-spacing: 0;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
}

.themeTitle.mb40 {
    margin-bottom: 40px;
}
.themeTitle.mb75 {
    margin-bottom: 75px;
}

.accordion-title span {
    color: #626C85;
}

.accordion-item.active .accordion-title span {
    color: #1417FF;
}

.travelProducts {
    margin-bottom: 90px;
}

.travelChainWrapper {
    width: 100%;
    border: 3px solid #FFFFFF;
    box-shadow: 0px 10px 48px 0px #DDE5F6;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 24px;
    background: #E8EEFB99;
}

.travelLeftArea {
    width: 25%;
}

.travelRightArea {
    width: 25%;
}

.travelCenterArea {
    width: 50%;
}

.travelCard {
    width: 100%;
    background: white;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid white;
}

.travelCardTop {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.travelCardTop img {}

.travelCardTop span {
    background: #EDEEFB;
    color: #626C85;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    text-align: center;
    padding: 8px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.travelCard p {
    margin: 0;
    font-family: Gilroy, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: #626C85;
}

.travelLeftArea,
.travelRightArea {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.travelCard.live {
    border-color: #1417FF;
}

.travelCard.live .travelCardTop span {
    background: #1417FF;
    color: white;
}

.travelCard.live p {
    color: black;
}

.bannerOnText {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 50%;
    margin: 0 auto;
}

.bannerWrapper {
    width: 100%;
    position: relative;
}

.bannerImage {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 10px 48px 0px #00000014;
    border: 1px solid #E3E7F1;
    border-radius: 12px;
}

.bannerImage img {}

.banner {
    margin-bottom: 80px;
}

.footer {
    padding: 42px 0;
    position: relative;
    z-index: 999;
}

.footer .language .select+div {
    top: auto;
    bottom: calc(100% + 3px);
}

.socialMediaFooter {
    position: relative;
    z-index: 99;
    margin-bottom: 40px;
}

.aboutDetail {
    width: 100%;
    padding: 0 50px;
}

.aboutDetail p {
    font-family: Gilroy, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;
    color: #626C85;
}

.aboutBanner {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.aboutBanner img {
    width: 100%;
}

.aboutUs {
    padding-top: 115px;
    margin-bottom: 120px;
}

.aboutUs .themeTitle h2 {
    font-size: 56px;
    line-height: 64px;
}

.aboutUs .themeTitle p {
    font-size: 18px;
    line-height: 32px;
}

.contactUs {
    padding-top: 160px;
}

.themeTitle.v2 {
    margin-bottom: 64px;
}

.themeTitle.v2 h2 {
    font-size: 40px;
    line-height: 48px;
}

.mapArea {
    position: relative;
}

.contact {
    margin-bottom: 160px;
}

.mt60{
    margin-top: 60px;
}

.contactWrapper {
    width: 100%;
    max-width: 604px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin: 0 auto;
}

.contactDescription {
    width: 100%;
    margin-bottom: 32px;
}

.contactBoxes {
    width: 100%;
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

#infoBox {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.closeBtn {
  position: absolute;
  top: 24px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
  color: #999;
}
.closeBtn:hover {
  color: #000;
}

#infoBox h4{
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #E3E7F1;
    padding: 8px 12px;
    border-radius: 16px;
    margin: 0;
    color: #0A2258;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
    max-width: calc(100% - 30px);
}

.infoBox {
    box-shadow: 0px -4px 24px 0px rgba(255, 255, 255, 0.02) inset;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    background: linear-gradient(99.03deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid #E3E7F1;
    align-items: center;
    text-align: center;
}

.infoBox img {
    margin-bottom: 8px;
}

.infoBox h3 {
    font-size: 18px;
    color: #090E24;
    margin: 0;
}

.infoBox p {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    color: #626C85;
    margin: 0;
}

.infoBox a {
    border: 1px solid #E3E7F1;
    padding: 12px;
    box-shadow: 0px 10px 48px 0px #00000014;
    border-radius: 12px;
    color: #090E24;
}

.infoBox a:hover {
    box-shadow: -1px 4px 20px 3px #00000014;
}

.contactForm {
    width: 100%;
}

.contactForm form {
    width: 100%;
}

.formWrapper {
    box-shadow: 0px -4px 24px 0px rgba(255, 255, 255, 0.02) inset;
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(99.03deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid #E3E7F1;
}

.inputGroup {
    display: flex;
    gap: 24px;
}

.inputArea {
    width: 100%;
}

.inputArea input,
.inputArea select,
.inputArea textarea {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 15px;
    width: 100%;
    color: #626C85;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    width: 100%;
    border: 1px solid #E3E7F1;
    background: white;
}

.inputArea input::placeholder,
.inputArea select::placeholder,
.inputArea textarea::placeholder {
    color: #626C85
}

.inputArea input:focus,
.inputArea select:focus,
.inputArea textarea:focus {
    outline: none;
    box-shadow: 0px -4px 4px 0px rgba(255, 255, 255, 0.12) inset;
}

.inputArea input {
    width: 100%;
    border: 1px solid #E3E7F1;
    background: white;
}

.inputArea select {
    color: #626C85
}

.inputArea select option {
    color: #626C85
}

.inputArea textarea {}

.buttonArea {}

.buttonArea button {
    width: 100%;
}


.timeLineWrapper{
    width: 100%;
    float: left;
    margin-top: 200px;
    margin-bottom: 100px;
    position: relative;
}
.timeLineWrapper:before{
  content: "";
  background: url(../img/timeIcon.svg);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -150px;
}
.timelineStep{
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 70px;
}
.timeLineDesc{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #E3E7F1;
    border-radius: 12px;
    margin-right: 0;
    max-width: 500px;
    padding: 24px;
    background: white;
}
.timeLineDesc span{
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: right;
    color: #626C85;
}
.timeLineDesc h2{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: right;
    color: #090E24;
    margin: 0 0;
}
.timeLineDesc p{
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #626C85;
    margin: 0;
}
.timeLineSlider{
    width: 50%;
    margin-left: 0;
    position: relative;
    padding-bottom: 72px;
}
.timeLineSlider:before {
  content: "";
  background: linear-gradient(180deg, #939DB8 100%, rgba(147, 157, 184, 0) 100%);
  width: 4px;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  opacity: .2;
  top: 0;
}
.timelineStep:first-child .timeLineSlider {
  padding-top: 40px;
}

.timelineStep:last-child .timeLineSlider:before {
  background: linear-gradient(180deg, #939DB8 87%, rgba(147, 157, 184, 0) 100%);

}
.timeLineSlider .swiper{}
.timeLineSlider .swiper-wrapper{}
.timeLineSlider .swiper-wrapper .swiper-slide{
  text-align: center;
}
.timeLineSlider .swiper-wrapper .swiper-slide img{
    width: 100%;
    max-width: 375px;
    cursor: pointer;
}
.yearly{
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    position: absolute;
    z-index: 9;
    padding: 7px 7px;
    border: 1px solid #E3E7F1;
    box-shadow: 0px 10px 48px 0px #00000014;
    background: #FFFFFF;
    border-radius: 12px;
    margin: 0 auto;
    width: 70px;
    left: 0;
    right: 0;
}
.yearly span{
}

.mt120{margin-top: 120px;}

.timeline.reverse .timeLineWrapper .timelineStep:nth-child(even){
  flex-direction: row-reverse;
}


    
.timeline.reverse .timelineStep:nth-child(even) .timeLineDesc h2 {
    text-align: left;
}


.timeline.reverse .timelineStep:nth-child(even) .timeLineSlider:before{
    
}

.timeline.reverse .timelineStep:nth-child(even) .timeLineDesc{
  align-items: flex-start;
}

.timeline.reverse .timelineStep:nth-child(even) .timeLineDesc p{
  text-align: left;
}

.timeline.reverse .timelineStep .timeLineSlider{
  min-height: 260px;
}

.timeline.reverse .yearly span{
  color: #090E24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 24px;
}

.timelineStep:nth-child(even) .timeLineDesc {}

.timeLineWrapper:after {
    content: "";
    width: 6px;
    height: 100%;
    top: -20px;
    position: absolute;
    margin: 0 auto;
    border: 2px solid #F1F3F8;
    left: 0;
    right: 0;
}

.yearDesc {
    color: #1417FF;
    font-family: Gilroy, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.yearDesc span {
    color: #626C85;
}

.history {
    padding-top: 150px;
}

.zigzagWrapper{
    width: 100%;
}

.zigzagContainer{
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
}

.zigzagBg {
    width: 100%;
    position: relative;
    z-index: -1;
}

.zigzagBg img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.productDetail{
    padding-top: 150px;
    margin-bottom: 120px;
}

.prodDetailContent {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.productSlider {
    float: right;
    width: 32%;
}

.prodDescription {
    float: left;
    width: 68%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 71.89%, #8C00FF 142.56%);
    padding: 48px;
    border-radius: 12px;
    border: 1px solid #E3E7F1;
}

.prodDescription h2 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0;
    position: relative;
    z-index: 9;
}

.prodDescription p {
    width: 100%;
    margin: 0 0;
    position: relative;
    z-index: 9;
    color: #626C85;
    font-family: Gilroy, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

.productDetailImg {
    position: relative;
    right: -48px;
    bottom: -48px;
    display: flex;
    justify-content: flex-end;
    margin-top: -242px;
    z-index: 0;
}

.productDetailImg img {
    max-width: 100%;
}

.prodInfoWrapper {
    width: 100%;
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 9;
    border-radius: 16px;
}

.prodInfoWrapper a {
    box-shadow: 0px 10px 48px 0px #00000014;
    color: #090E24;
    padding: 13px 18px;
    border-radius: 12px;
    border: 1px solid #E3E7F1;
    font-family: Gilroy, sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all .5s ease;
    background: white;
}

.prodInfoWrapper a:hover {
    border-color: #090E24;
}


.productSlider .swiper-slide > img{width: 100%;}

body .productSlider .swiper-pagination{
    margin-top: 0;
    position: absolute;
    bottom: 30px;
    background: white;
    left: 0;
    right: 0;
    width: max-content;
    margin: 0 auto;
    border-radius: 10px;
    padding: 6px 10px;
}

.swiper-button-next.next4, .swiper-button-prev.prev4{
    color: #090E24;
}

/*explorer page*/

.mb96{
    margin-bottom: 96px;
  }
  
  .btcTitle{
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
  }
  .btcTitle h2{
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0em;
    text-align: left;
    color: #090E24;
    margin: 0;
  }
  .btcTitle a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    border: 1px solid #E3E7F1;
    box-shadow: 0px 10px 48px 0px #00000014;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    color: #090E24;
    padding: 11px 16px;
    border-radius: 12px;
    transition: all .4s ease;
    text-align: center;
    cursor: pointer;
  }
  .btcTitle a:hover {
      transition: all .4s ease;
      background: #090E24;
      color: white;
  }
  .chart{
      margin-top: 96px;
      margin-bottom: 32px;
  }
  .chartWrapper{
      width: 100%;
      display: flex;
      align-items: flex-start;
      gap: 32px;
  }
  .chartArea{
      width: 816px;
      display: flex;
      padding: 24px 24px;
      box-shadow: 0px -10px 8px 0px rgba(255, 255, 255, 0.02) inset;
      border: 1px solid #E3E7F1;
      background: linear-gradient(99.03deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
      border-radius: 24px;
  }
  .chartWidgets{
      width: calc(100% - 738px);
      display: flex;
      gap: 18px 16px;
      flex-wrap: wrap;
  }
  .chartCard{
      border: 1px solid #E3E7F1;
      box-shadow: 0px -10px 8px 0px rgba(255, 255, 255, 0.02) inset;
      background: linear-gradient(99.03deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
      border-radius: 24px;
      padding: 16px 24px;
      width: calc(50% - 8px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      position: relative;
      justify-content: center;
  }
  .chartCardIcon {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.chartCardIcon img {}

  .chartCard p{
      margin: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: 700;
      color: #090E24;
      line-height: 24px;
      text-align: center;
  }
  .chartCard p span{letter-spacing: 0em;font-family: Gilroy, sans-serif;font-weight: 500;font-size: 14px;line-height: 16px;text-align: center;color: #626C85;}
  .chartCard:before{content: "";position: absolute;left: 0;}
  .chartCard img{}
  
  .widgets{}
  .widgetsWrapper{
      width: 100%;
      display: flex;
      align-items: center;
      gap: 32px;
  }
  .widgetCard{
      width: 100%;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0px -10px 8px 0px rgba(255, 255, 255, 0.02) inset;
      background: rgba(255, 255, 255, 0.01);
      border-radius: 24px;
      padding: 26px 24px;
  }
  .widgetCard p{
      display: flex;
      flex-direction: column;
      gap: 12px;
  }
  .widgetCard p span{
      font-size: 24px;
      font-weight: 600;
      line-height: 24px;
      letter-spacing: 0em;
      text-align: center;
  }
  .blocks{}
  .blocksWrapper{
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
  }
  .priceCard{
      background: linear-gradient(99.03deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
      border-radius: 12px;
      padding: 16px;
      width: calc(100% * 1/4 - 24px);
      display: flex;
      flex-direction: column;
      gap: 8px;
      box-sizing: border-box;
      box-shadow: 0px 10px 48px 0px #0000000A;
      border: 1px solid #E3E7F1;
  }
  .priceCard h3{}
  .priceCard span{
      color: rgba(147, 157, 184, 1);
      background-clip: unset;
      -webkit-text-fill-color: initial;
      position: relative;
      display: flex;
      align-items: center;
  }
  .priceCard span:before{
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: rgba(147, 157, 184, .4);
    display: block;
    margin-right: 8px;
    float: left;
  }
  .priceCard span img{}
  .validCode{
      display: flex;
      align-items: center;
      font-size: 12px;
      font-weight: 500;
      line-height: 16px;
      letter-spacing: 0em;
      text-align: left;
      color: rgba(147, 157, 184, 1);
      gap: 8px;
  }
  .validCode a{
      font-size: 12px;
      line-height: 16px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
  }
  .transactions{}
  .transactionWrapper{}
  .transactionCard{
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0px -10px 8px 0px rgba(255, 255, 255, 0.02) inset;
    border-radius: 24px;
    padding: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    gap: 16px;
    background: linear-gradient(99.03deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid #E3E7F1;
  }
  .transactionCard:last-child{
    margin-bottom: 0;
  }
  .cardInfo{
      width: 180px;
      border-radius: 24px;
      min-height: 104px;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0px -10px 8px 0px rgba(255, 255, 255, 0.02) inset;
      background: rgba(255, 255, 255, 0.01);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
  }
  .cardInfo.warning{
      border: 1px solid #FF9910;
      box-shadow: 0px 10px 48px 0px #00000014;
  }
  .cardInfo.success{
      border: 1px solid #38CB89;
      box-shadow: 0px 10px 48px 0px #00000014;
  }
  .cardInfo.success p{
    color: #2DA26E;
  }
  .cardInfo.warning p{
  color: #F09822;
  }
  .cardInfo p{
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: center;
    margin: 0;
  }
  .cardInfo span{
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: center;
  }
  .cardDescription{display: flex;flex-direction: column;gap: 8px;flex: 1;}
  .cardTop{}
  .cardTop a{
      letter-spacing: 0em;
      text-align: left;
      font-family: Gilroy, sans-serif;
      font-weight: 700;
      font-size: 15px;
      line-height: 16px;
      letter-spacing: 0%;
      color: #090E24;
  }
  .cardTop span{
      box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.12) inset;
      border: 1px solid #E3E7F1;
      background: #fff;
      border-radius: 5px;
      font-size: 12px;
      font-weight: 500;
      line-height: 16px;
      letter-spacing: 0em;
      text-align: left;
      padding: 4px 8px;
      color: #090E24;
      height: 24px;
      display: inline-block;
  }
  .cardfromto{
      display: flex;
      align-items: center;
  }
  .cardfromto > div{
      display: flex;
      align-items: center;
      gap: 8px;
  }
  .cardfromto > div a{
      letter-spacing: 0em;
      text-align: left;
      font-family: Gilroy, sans-serif;
      font-weight: 700;
      font-size: 13px;
      line-height: 16px;
      letter-spacing: 0%;
      color: #626C85;
  }
  .cardfromto > div img{}
  .cardBottom{
      letter-spacing: 0em;
      text-align: left;
      color: rgba(255, 255, 255, 1);
      display: flex;
      gap: 8px;
      font-family: Gilroy, sans-serif;
      font-weight: 700;
      font-size: 13px;
      line-height: 16px;
      letter-spacing: 0%;
      color: #1417FF;
  }
  .cardBottom span{
      color: #626C85;
  }
  .extraDesc{
      margin-left: 45px;
  }
  .extraDesc span{
      
      font-size: 12px;
      font-weight: 500;
      line-height: 16px;
      letter-spacing: 0em;
      text-align: left;
      color: rgba(255, 255, 255, 1);
  }
  .extraIcon{
    font-size: 12px;
    line-height: 16px;
  }
  .processingTime{
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
  }
  .processingTime a{
      font-family: Gilroy, sans-serif;
      font-weight: 700;
      font-size: 13px;
      line-height: 16px;
      letter-spacing: 0%;
      color: #090E24;
  }
  .processingTime span{
      letter-spacing: 0em;
      text-align: right;
      color: #626C85;
      font-family: Gilroy, sans-serif;
      font-weight: 700;
      font-size: 13px;
      line-height: 16px;
      letter-spacing: 0%;
  }
  #chart {
    width: 100%;
  }
  .apexcharts-text .title{
    color: white;
  }

  .capacityTr {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #626C85;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #626C85;
}

.capacityTr span {
    font-family: Gilroy, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
    text-align: center;
}

.cardfromto > div a:last-child {
    color: #1417FF;
    text-decoration: underline;
}

.processNumber {
    font-family: Gilroy, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #090E24;
}


/*step pages*/

.step{
    margin-top: 91px;
    margin-bottom: 140px;
}
.mt48{
  margin-top: 48px;
}

.stepTitle{
    width: 100%;
    text-align: center;
    margin-bottom: 64px;
}

.stepTitle.mb32{
    margin-bottom: 32px;
}

.stepTitle h2{
    display: flex;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: center;
    color: #090E24;
    margin: 0 0;
}
.stepTitle p{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  color: rgba(147, 157, 184, 1);
  margin-top: 12px;
}
.stepWrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}
.stepWrapper ul{
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 8px 0;
    display: flex;
    align-items: center;
}
.stepWrapper ul li{
    margin-right: 16px;
    padding-left: 16px;
    position: relative;
}
.stepWrapper ul li a{
    display: flex;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    padding: 12px 16px;
    color: rgba(147, 157, 184, 1);
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 100px;
    transition: all .3s ease;
}
.stepContent{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
.stepPage{
    width: 100%;
    display: block;
    text-align: center;
}
.stepPage span{
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
}
.stepPage h2{
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0em;
    text-align: center;
    justify-content: center;
    margin-top: 16px;
}
.stepPage p{
    color: rgba(147, 157, 184, 1);
    margin-top: 24px;
    font-size: 16px;
    line-height: 32px;
    max-height: 352px;
    overflow-y: scroll;
    padding-right: 50px;
}

/* width */
.stepPage p::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.stepPage p::-webkit-scrollbar-track {
  background: rgba(147, 157, 184, .1);
}

/* Handle */
.stepPage p::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: linear-gradient(89.67deg, #4AD2FF -0.31%, #0147FF 25.69%, #8557FF 55.66%, #EB67D7 73.74%, #FF6CB2 99.71%);
}

/* Handle on hover */
.stepPage p::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(89.67deg, #4AD2FF -0.31%, #023fd8 25.69%, #8557FF 55.66%, #EB67D7 73.74%, #FF6CB2 99.71%);
}

.stepWrapper ul li a:hover, .stepWrapper ul li a.active {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0px -4px 4px 0px rgba(255, 255, 255, 0.12) inset;
}

.stepWrapper ul li a:after {
    content: "";
    background: rgba(147, 157, 184, 1);
    display: block;
    position: absolute;
    right: -16px;
    width: 1px;
    height: 16px;
}

.stepWrapper ul li:last-child a:after {
    display: none;
}

.stepWrapper ul li:first-child {
    padding-left: 8px;
}

.stepWrapper ul li:last-child {
    margin-right: 8px;
}
.stepBottom{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 48px auto 0 auto;
}

.loginForm .stepBottom{
    margin-top: 0;
}

.rightArea{
  display: flex;
  align-items: center;
  gap: 16px;
}

.recapthcaWrapper{}

.checkboxContainer {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #090E24;
  flex: 1;
}

.checkboxContainer > a {
    font-weight: 600;
}

.checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #eee;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0px -4px 4px 0px rgba(255, 255, 255, 0.12) inset;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.checkboxContainer:hover input ~ .checkmark {
  /* background-color: #ccc; */
}

.checkboxContainer input:checked ~ .checkmark {
  /* background-color: #2196F3; */
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkboxContainer input:checked ~ .checkmark:after {
  display: block;
}

.checkboxContainer .checkmark:after, .checkboxContainer:hover .checkmark:after {
  left: 14px;
  top: 5px;
  width: 6px;
  height: 11px;
  border: solid #2ac1ff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.stepBuying{
  width: 100%;
  max-width: 900px;
  padding: 40px 24px;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(171.72deg, #FFFFFF 16.08%, rgb(255 255 255 / 77%) 68.97%);
  border: 1px solid #E3E7F1;
  box-shadow: 0px 10px 48px 0px #00000014;
}

.stepBuying.loginForm{
    max-width: 604px;
    padding: 40px 30px 60px 30px;
}

.fullWidth{
  max-width: 100%!important;
}
.stepBuying h2{
  font-size: 18px;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 10px;
}
.stepBuying > p{
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  color: #626C85;
  margin-top: 0;
  margin-bottom: 40px;
}

.stepBuying.miniwidth{
    max-width: 500px;
}

.exchangeWrapper{}
.amountPrice{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}
.amountArea{}
.exchangeArea{
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}
.exchangeArea > a {
  margin-left: 4px;
  display: flex;
}
.exchangeArea > span{
    box-shadow: 0px -4px 4px 0px rgba(255, 255, 255, 0.12) inset;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 12px 12px;
    color: rgba(255, 255, 255, 1);
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    min-width: 88px;
    text-align: center;
}
.warningText{
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.warningText > img{}
.warningText > span{
    
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(147, 157, 184, 1);
}
.priceChange{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.amountPrice > div {
  width: calc(50% - 16px);
}

.amountPrice > div > span{
  color: rgba(147, 157, 184, 1);
  
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: center;
  width: 100%;
  margin-bottom: 8px;
  display: block;
}

.fromPrice {}
.fromPrice:after {
  content: "=";
  font-size: 18px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
  margin: 0 8px 0 0;
}

.toPrice {}

.priceChange > div > img {}
.priceChange > div > span {
  font-size: 15px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
}

.priceChange > div {
  
  font-size: 15px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.exchangeForm{}
.exchangeForm form{}
.inputWrapper{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    gap: 12px;
}
.exchangeInputGroup{
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    position: relative;
}
.exchangeInputGroup > img{}
.exchangeInputGroup input{
    border: 1px solid #E3E7F1;
    background: rgba(255, 255, 255, 0.01);
    height: 56px;
    border-radius: 12px;
    padding: 16px 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 0.01%, #9299AC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    width: 100%;
}

.exchangeInputGroup select{
  position: absolute;
  right: 0;
  height: 100%;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  background: none;
  border: 0;
  color: rgba(147, 157, 184, 1);
  padding: 0 30px 0 10px;
/*webkit browsers */
  -webkit-appearance: none;
  /*Firefox */
  -moz-appearance: none;
  /* modern browsers */
  appearance: none;
  background-image: url('../img/select.svg');
  background-repeat: no-repeat;
  background-position: 82% 50%;
}

.subtract{}
.subtract img{}

.inputWrapper:last-child {
    margin-bottom: 0;
}

.amountPrice {}

.exchangeInputGroup input:focus {
    box-shadow: 0px -4px 4px 0px rgba(255, 255, 255, 0.12) inset;
    border: 1px solid #a1a4ab;
}

.exchangeInputGroup input:active, .exchangeInputGroup input:focus-visible {
    box-shadow: 0px -4px 4px 0px rgba(255, 255, 255, 0.12) inset;
    border: 1px solid #a1a4ab;
    outline:none;
}
.exchangeInputGroup select option {
    background: none;
}

.exchangeInputGroup select:active,.exchangeInputGroup select:focus, .exchangeInputGroup select:focus-visible {
    border: 0;
    outline: none;
}

.exchangeInputGroup select:active, .exchangeInputGroup select:focus {
    color: white;
}

.exchangeInputGroup select:active option, .exchangeInputGroup select:focus option{
    color: #040617;
}
.widthSelect{
  position: relative;
  flex: 1;
}

.connectMate{
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.joinButtons.connectMate{
  gap: 16px;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  margin-top: 14px;
}
.joinButtons.connectMate span {
    justify-content: center;
    padding: 0;
}


.connectMate > a{}

.connectMate span{
  font-size: 15px;
  line-height: 16px;
    box-shadow: 0px -4px 24px 0px rgba(255, 255, 255, 0.02) inset;
    border-radius: 100px;
    color: rgba(147, 157, 184, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.01);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.connectMate span a{
    color: #090E24;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0px 10px 48px 0px #00000014;
    color: #090E24;
    border-radius: 12px;
    padding: 14px 16px;
    width: 100%;
    justify-content: center;
}
.warningArea{
  box-shadow: 0px -10px 48px 0px rgba(255, 255, 255, 0.04) inset;
  border: 1px solid #FFD69F;
  background: linear-gradient(180deg, rgba(252, 233, 122, 0.08) 0%, rgba(240, 152, 34, 0.08) 100%);
  padding: 16px 20px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 24px;
}
.warningArea p{
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #FF9910;
    margin: 0;
}
.walletInfo{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.walletInfo p{
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #090E24;
    margin: 0;
}
.walletInput{
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: space-between;
}
.coinSelect{
  width: 40%;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.coinSelect.flexRow{
    
flex-direction: row!important;
}

.walletAdress{
    width: 60%;
}

.flexColumn{
    flex-direction: column;
}

.w50{
  width: 50%!important;
}

.coinSelect.w100,.walletAdress.w100{
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.inputRightText.positionRelative{
    width: 100%;
}

.walletAdress input, .singleInput{
  
color: #626C85;
  
width: 100%;
  
background: rgba(255, 255, 255, 0.01);
  
border: 1px solid #E3E7F1;
  
border-radius: 12px;
  
padding: 16px 24px;
  
font-size: 16px;
  
font-weight: 500;
  
line-height: 24px;
  
letter-spacing: 0em;
  
text-align: left;
  
color: rgba(147, 157, 184, 1);
}
.walletAdress input::placeholder, .singleInput::placeholder{
  
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  color: rgba(147, 157, 184, 1);
}
.walletAdress input:focus, .walletAdress input:focus-visible, .walletAdress input:active,.singleInput:focus, .singleInput:focus-visible, .singleInput:active{
  border: 1px solid #E3E7F1;
  outline:none;
}

.coinPaid{
    width: 100%;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 10px 48px 0px #00000014;
    border: 1px solid #E3E7F1;
    border-radius: 12px;
    padding: 16px 20px;
    position: relative;
    margin-bottom: 24px;
}
.adressArea{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #090E24;
}
.copyAdress{
    position: absolute;
    right: 16px;
    display: flex;
    cursor: pointer;
}
.copyAdress img{}


.currencySelect {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  height: 57px;
  width: 142px;
  position: relative;
  z-index: 99999;
}
.currency{position: relative;}
.currency .select {cursor: pointer;color: #090E24;display: flex;align-items: center;gap: 10px;font-size: 15px;font-weight: 400;line-height: 16px;letter-spacing: 0em;text-align: left;padding: 16px 16px;z-index: 999;position: relative;height: 55px;border: 1px solid #E3E7F1;border-radius: 12px;background: white;}
.currency .select + div {display: none;position: absolute;top: 100%;font-size: 15px;font-weight: 400;line-height: 16px;letter-spacing: 0em;text-align: left;left: -1px;right: -1px;padding: 10px 0;z-index: 1;border-radius: 12px;border: 1px solid #E3E7F1;border-top: 0;color: #090E24;background: white;}
.currency .option {margin-bottom: 10px;font-size: 15px;font-weight: 400;line-height: 16px;letter-spacing: 0em;text-align: left;color: #090E24;display: flex;align-items: center;gap: 10px;cursor: pointer;margin-bottom: 0;padding: 10px 10px;}
.currency .option:hover {background: #f3f3f3;}
.currency::after{content: "";background: url('../img/down.svg');width: 17px;height: 17px;position: absolute;right: 14px;top: 18px;z-index: 999;}

.paymentMethodSelect{
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  height: 57px;
  width: calc(100% - 158px);
  position: relative;
  z-index: 9999;
}
.inputRightText > span{
  position: absolute;
  right: 20px;
  top: 0px;
  bottom: 0;
  
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: right;
  color: rgba(147, 157, 184, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.paymentMethod{}
.paymentMethod .select {cursor: pointer;color: white;display: flex;align-items: center;gap: 10px;font-size: 15px;font-weight: 400;line-height: 16px;letter-spacing: 0em;text-align: left;padding: 16px 16px;z-index: 999;position: relative; height: 55px;}
.paymentMethod .select + div {display: none;position: absolute;top: calc(100% + -28px);font-size: 15px;font-weight: 400;line-height: 16px;letter-spacing: 0em;text-align: left;left: -1px;right: -1px;background: #040617;padding: 26px 16px 8px 16px;z-index: 1;border-radius: 0px 0px 30px 30px;border: 1px solid rgba(255, 255, 255, 0.08);border-top: 0;}
.paymentMethod .option {margin-bottom: 10px;font-size: 15px;font-weight: 400;line-height: 16px;letter-spacing: 0em;text-align: left;color: white;display: flex;align-items: center;gap: 10px;cursor: pointer;margin-bottom: 12px;}
.paymentMethod::after{content: "";background: url('../img/down.svg');width: 10px;height: 6px;position: absolute;right: 14px;top: 25px;z-index: 9;}

.stepResultInfo{
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding: 48px 87px;
    box-shadow: 0px 10px 48px 0px #00000014;
    border: 1px solid #E3E7F1;
    border-radius: 24px;
    background: linear-gradient(179.41deg, #FFFFFF 0.51%, rgba(255, 255, 255, 0) 49.89%);
}
.stepResultInfo.waitingStep{
  background-image: url('../img/waitbg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.stepResultInfo.successStep{
  background-image: url('../img/successbg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.stepResultInfo.errorStep{
  background-image: url('../img/errorbg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.stepResultInfo.missingStep{
  background-image: url('../img/missingbg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.stepResultCard{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.stepResultCard > img{
    margin-bottom: 24px;
}
.transactionText{
    padding: 16px 24px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.transactionText span {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  color: #626C85;
  padding: 0;
  width: 100%;
}

.waitingStep .transactionText{
  background: linear-gradient(180deg, rgba(252, 233, 122, 0.08) 0%, rgba(240, 152, 34, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0px -10px 48px 0px rgba(255, 255, 255, 0.04) inset;
}
.waitingStep .transactionText span{
  background: linear-gradient(180deg, #FCE97A 0%, #F09822 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.successStep .transactionText{
  box-shadow: 0px -10px 48px 0px rgba(255, 255, 255, 0.04) inset;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(17, 247, 213, 0.08) 0%, rgba(3, 83, 37, 0.08) 100%);
}
.successStep .transactionText span{
  background: linear-gradient(180deg, #11F7D5 0%, #035325 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.errorStep .transactionText{
  background: linear-gradient(180deg, rgba(244, 102, 102, 0.08) 0%, rgba(240, 34, 34, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0px -10px 48px 0px rgba(255, 255, 255, 0.04) inset;

}
.errorStep .transactionText span{
  background: linear-gradient(180deg, #F46666 0%, #F02222 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.missingStep .transactionText{
  background: linear-gradient(180deg, rgba(252, 233, 122, 0.08) 0%, rgba(240, 152, 34, 0.08) 100%);
  box-shadow: 0px -10px 48px 0px rgba(255, 255, 255, 0.04) inset;
  background: linear-gradient(180deg, rgba(252, 233, 122, 0.08) 0%, rgba(240, 152, 34, 0.08) 100%);
}
.missingStep .transactionText span{
  background: linear-gradient(180deg, #FCE97A 0%, #F09822 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.resultText{
  margin-bottom: 24px;
}
.resultText span{
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}

.resultDescription{
    text-align: center;
    margin-top: 16px;
    margin-bottom: 24px;
}
.resultDescription span{
  
font-size: 16px;
  
font-weight: 400;
  
line-height: 24px;
  
letter-spacing: 0em;
  
text-align: center;
  
color: #090E24;
}

.resultDescription p{
  
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  color: rgba(147, 157, 184, 1);
  margin: 16px 0;
}

.singleBlog{
  width: 100%;
  margin-top: 90px;
  margin-bottom: 65px;
}

.singleBlog .descriptionArea{}
.singleBlog .descriptionArea .themeTitle span{}
.singleBlog .descriptionArea .themeTitle h2{
    font-size: 32px;
    line-height: 40px;
}
.singleBlog .descriptionArea .themeTitle.alignLeft{gap:8px;}
.singleBlog .descriptionArea .themeTitle p{
    margin-top: 8px;
}
.singleBlog .descriptionArea .themeTitle a{}

.allBlog{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 64px;
}
.allBlog .postCard{
  max-width: calc(100% * 1/3 - 21.333px);
}

.allBlog .postCard{}
.allBlog .postCard .postDate{
  text-align: left;
}
.allBlog .postCard .postTitle{}
.allBlog .postCard .postTitle a{
  text-align: left;
  margin-bottom: 12px;
}
.allBlog .postCard .postTitle p{
  
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(147, 157, 184, 1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.pagination{
  width: 100%;
}
.pagination ul{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.pagination ul li{}
.pagination ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: rgba(147, 157, 184, 1);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;  
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all .3s ease;
}
.pagination ul li a:hover{
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 1);
}
.pagination ul li a img{}
.pagination ul li:last-child a img{
  transform: rotate(180deg);
}
.pagination ul li a:hover img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(308deg) brightness(103%) contrast(101%);
}

/*wallet*/

.walletPlatform .exchangeInputGroup input, .walletPlatform .exchangeInputGroup input::placeholder{
  background: rgba(255, 255, 255, 0);
  -webkit-background-clip: unset;
  -webkit-text-fill-color:unset;
  color: #626C85;
  font-size: 16px;
  line-height: 24px;
}

.walletPlatform.gap16{
    gap: 16px;
}

.walletPlatform.stepBottom.justifyCenter{
    align-items: center;
}

.showPassword{
  position: absolute;
  right: 16px;
  cursor: pointer;
}
.walletPlatform .inputWrapper{
  margin-bottom: 17px;
}
.walletPlatform.stepBottom{
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
.walletPlatform .checkmark {
  border-radius: 8px;
  box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.25) inset;
  border: 1px solid #d3d3d3;
}

.walletPlatform .checkboxContainer .checkmark:after, .walletPlatform .checkboxContainer:hover .checkmark:after {
  /* background: white; */
  width: 15px;
  height: 15px;
  border-radius: 8px;
  left: 4px;
  border: 0;
  background-image: url('../img/check.svg');
  transform: rotate(0);
  background-size: contain;
  background-repeat: no-repeat;
}
.walletPlatform .checkboxContainer input:checked ~ .checkmark{
  background-color: rgba(89, 28, 255, 1);
}

.walletPlatform .checkboxContainer{
    flex-wrap: wrap;
  margin-bottom: 34px;
}

.bottomLogin{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
.bottomLogin a{}

.forgotPassword{
  font-size: 15px;
  line-height: 24px;
  position: absolute;
  right: 0;
  top: 0px;
  font-weight: 500;
}
.tableWrapper{
    width: 100%;
    position: relative;
}
.tableTitle{
    position: relative;
    bottom: 0;
    left: 0;
}
.tableTitle span{
    
font-size: 32px;
    
font-weight: 600;
    
line-height: 48px;
    
letter-spacing: 0em;
    
text-align: center;
    
position: absolute;
    
bottom: -60px;
    
color: #090E24;
    
z-index: 9999;
}

body table.dataTable > thead{
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}
body table.dataTable > thead > tr th{
  color: #626C85;
  font-size: 15px!important;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left!important;
  padding: 14px 16px;
}
body table.dataTable > thead > tr td, body table.dataTable > tbody > tr td{
  color: #090E24;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left!important;
  padding: 7px 16px;
}

body table.dataTable > thead > tr{
  border: 1px solid rgba(255, 255, 255, 0.05);
}

body div.dt-container.dt-empty-footer tbody > tr:last-child > *{
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}
body table.dataTable > thead > tr > th {
  min-width: 170px;
}
body table.dataTable > thead > tr > th, body table.dataTable > thead > tr > td{
  border: 0;
}
body div.dt-container .dt-search input {
    border: 1px solid #E3E7F1;
    background: #fff;
    box-shadow: 0px 10px 48px 0px #0000001F;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
    color: #626C85;
    padding: 10px 16px 10px 46px;
    height: 48px;
    width: 390px;
    background-image: url('../img/search.svg');
    background-repeat: no-repeat;
    background-position: 15px 50%;
}

body div.dt-container .dt-search input:focus {
    border: 1px solid rgba(255, 255, 255, 0.08);
    outline: none;
}

body table.dataTable > tbody > tr {
    border: 1px solid #E3E7F1;
    background: #FFFFFF33;
    box-shadow: 0px 10px 48px 0px #00000014;
}

div.dt-container div.dt-layout-cell {
    padding: 0;
    margin-top: 24px;
}
.transferBtn{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
  padding: 7px 16px;
  color: #090E24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0px -4px 4px 0px rgba(255, 255, 255, 0.12) inset;
  transition: all .3s ease;
  border: 1px solid #E3E7F1;
  background: white;
}

.transferBtn:hover{
    background: rgb(211, 211, 211);
  box-shadow: 0px -4px 4px 0px rgba(255, 255, 255, 0.22) inset;
}

.coinFlex{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #090E24;
}
.coinFlex > img{
  height: 32px;
}

body div.dt-container div.dt-layout-cell.dt-start{
  display: none;
}
.dt-search label{display: none;}

body div.dt-container .dt-paging .dt-paging-button{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #626C85!important;
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all .3s ease;
}
body div.dt-container .dt-paging .dt-paging-button:hover{
  background: rgba(255, 255, 255, 0.06);

}
body div.dt-container .dt-paging .dt-paging-button.first, body div.dt-container .dt-paging .dt-paging-button.last, body div.dt-container .dt-paging .dt-paging-button.current, body div.dt-container .dt-paging .dt-paging-button.current:hover{color: #090E24;background: #fff;box-shadow: 0px 10px 48px 0px #0000001F;font-weight: 700;border-color: white;}

body div.dt-container .dt-paging .dt-paging-button.disabled, body div.dt-container .dt-paging .dt-paging-button.disabled:hover, body div.dt-container .dt-paging .dt-paging-button.disabled:active{
}
.dt-paging.paging_full_numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.step .coinPaid.top{
  max-width: 814px;
  margin: 32px auto 0 auto;
}

.coinPaid > img{
  margin-right: 12px;
}
.alignLeft{
  text-align: left!important;
  justify-content: flex-start!important;
}
.alignCenter{
  text-align: center!important;
  justify-content: center!important;
}
.alignRight{
  text-align: right!important;
  justify-content: flex-end!important;
}

.coinSelect .walletInfo{
  width: 100%;
  flex: 100%;
  margin-bottom: 0;
}
.mb40{margin-bottom: 40px!important;}

.maxMiddle{
  max-width: 814px;
  margin-left: auto;
  margin-right: auto;
}
.resultVerify{
  width: 100%;
  max-width: 413px;
}
.resultVerify > span{
  font-size: 15px!important;
  font-weight: 500;
}
.resultVerify input{
  width: 100%;
  margin-top: 16px;
  background: white;
  text-align: center;
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #11f7d59c 0%, #1df1796b 100%);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  /* background: linear-gradient(180deg, #11F7D5 0%, #035325 100%); */
  background: #2DA26E;
}

input:focus + .slider {
  box-shadow: 0 0 1px #11F7D5;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.sidebarWidthContent{
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 134px;
}
.sidebar{
    width: 234px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #E3E7F1;
    border-radius: 16px;
    box-shadow: 0px 10px 48px 0px #00000014;
    background: linear-gradient(179.41deg, #FFFFFF 0.51%, rgba(255, 255, 255, 0) 49.89%);
}
.sidebar > span{
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 24px;
}
.sidebar ul{}
.sidebar ul li{
    width: 100%;
    margin-bottom: 16px;
}
.sidebar ul li:last-child {
    margin-bottom: 0;
}
.sidebar ul li a{
    display: flex;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    padding: 12px 16px;
    color: #626C85;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 12px;
    transition: all .3s ease;
    justify-content: center;
}
.sidebar ul li a.active, .sidebar ul li a:hover{
    color: #090E24;
    border: 1px solid #E3E7F1;
    box-shadow: 0px 10px 48px 0px #0000001F;
}
.centerContent{
    width: 100%;
    max-width: 525px;
    border: 1px solid #E3E7F1;
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0px 10px 48px 0px #00000014;
    background: linear-gradient(179.41deg, #FFFFFF 0.51%, rgba(255, 255, 255, 0) 49.89%);
}
.qrCode{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.centerContent > span, .qrCode > span{
    justify-content: center;
    font-size: 18px;
    line-height: 24px;
    color: #090E24;
    font-weight: 700;
}
.centerContent .walletPlatform{
  margin-top: 24px;
  margin-bottom: 32px;
}
.qrImg{
    width: 100%;
    margin-top: 16px;
    max-width: 130px;
    height: 130px;
    border: 1px solid #E3E7F1;
    border-radius: 12px;
    background: #FFFFFF;
}
.qrImg img{
    width: 100%;
}
.texthr{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 22px 0;
}
.texthr span{
    color: #626C85;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
    background: #f8f9fa;
    padding: 10px 25px;
}
.statusArea{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 28px 0 28px 0;
    width: 100%;
    justify-content: center;
    border-top: 1px solid rgba(147, 157, 184, .1);
    padding-top: 28px;
}
.statusArea > span{
    
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
}
.toggleSwitch{
    padding: 16px 65px;
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: 12px;
    box-shadow: 0px 10px 48px 0px #00000014;
    border: 1px solid #E3E7F1;
    background: #FFFFFF;
}
.toggleSwitch > span{
    
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(147, 157, 184, 1);
}

.toggleSwitch > span:last-child {
    color: #090E24;
}

.texthr:before {
    content: "";
    height: 1px;
    width: 100%;
    background: rgba(147, 157, 184, .1);
    position: absolute;
    z-index: -1;
}
.mt32{
  margin-top: 32px;
}

.tableWrapper .success{
    color: #2DA26E;
}
.tableWrapper .error{
    color: #FE3E3E;
}
.tableWrapper .warning{
    color: #F09822;
}

.bgLineHeight{
    height: 480px;
}

.bgLine {
    position: relative;
    width: 100%;
}

.bgLine img {
    width: 100%;
    position: absolute;
    top: -40px;
    z-index: -1;
    opacity: .5;
}

body table.dataTable > tbody > tr td .linearTextWhite {
    color: #626C85;
}

body div.dt-container .dt-paging .dt-paging-button.first,body div.dt-container .dt-paging .dt-paging-button.last {
    border-color: #E3E7F1;
}

#assets {
    border-collapse: separate !important;
    border-spacing: 0 8px !important;
}

#assets tbody tr {
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    background: #ffffff!important;
    border-radius: 12px!important;
    box-shadow: 0px 10px 48px 0px #00000014;
}

#assets tbody td {
    border: none;
    background: none!important;
}

table.dataTable.stripe > tbody > tr:nth-child(odd) > *, table.dataTable.display > tbody > tr:nth-child(odd) > *{
    box-shadow: none!important;
}

table.dataTable > thead > tr > th:first-child,table.dataTable > tbody > tr > td:first-child{
    box-shadow: none!important;
    border-radius: 12px 0 0 12px!important;
}

table.dataTable > thead > tr > th:last-child, table.dataTable > tbody > tr > td:last-child{
    box-shadow: none!important;
    border-radius: 0 12px 12px 0px!important;
}
table.dataTable.hover > tbody > tr:hover > *, table.dataTable.display > tbody > tr:hover > *{
    background: white!important;
    box-shadow: none!important;
}

.recoveryCodeWrapper {
    width: 100%;
    gap: 24px;
    flex-wrap: wrap;
    display: flex;
}

.recoveryCodeWrapper .inputWrapper {
    width: calc(100% * 1/3 - 16px);
    margin: 0;
}

.recoveryCodeWrapper .inputWrapper input{
    text-align: center;
}

.privacyKey{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.privacyKey span{
    font-family: Gilroy;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #626C85;
}

.fileUpload {
    border: 1px solid #E3E7F1;
    padding: 10px 17px;
    border-radius: 12px;
    background: white;
    box-shadow: 0px 10px 48px 0px #00000014;
    position: relative;
    transition: all .3s ease;
}

.fileUpload input {
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 99;
}

.fileUpload:hover {
    background: #f7f5f5;
}

.stepResultInfo.error, .stepResultInfo.success{
    max-width: 500px;
    padding: 40px;
}
.stepResultInfo .transactionText {
    color: #626C85;
    font-family: Gilroy;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
}


.knowUs{
    margin-bottom: 120px;
}
.knowUsWrapper{
    width: 100%;
    padding: 56px 0px;
    border-radius: 24px;
}
.knowUsWrapper ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}
.knowUsWrapper ul li{
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
    border: 1px solid #E3E7F1;
    border-radius: 24px;
    width: calc(100% * 1/3 - 22.666px);
    padding: 48px 24px;
}

.knowUsWrapper ul li img{
    margin-bottom: 8px;
}

.knowUsWrapper ul li p{
    letter-spacing: 0em;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    color: #0A2258;
}
.knowUsWrapper ul li span {
    letter-spacing: 0em;
    text-align: center;
    font-family: Gilroy;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #626C85;
}

.singleBanner{
  width: 100%;
  display: flex;
}

.singleBanner > img{
  width: 100%;
}

.singleBanner.holidayPay{
    margin-top: -120px;
    margin-bottom: -140px;
    position: relative;
    z-index: -1;
}

.securityMeasures{
    margin-bottom: 120px;
}

.securityMeasuresWrapper{
    width: 100%;
}
.securityBox{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.securityBox ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}
.securityBox ul li{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: calc(25% - 36px);
}
.securityBox ul li img{width: 64px;height: 64px;margin-bottom: 12px;}
.securityBox ul li p{
    margin: 0;
    font-family: Gilroy;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
}
.securityBox ul li span{
    font-family: Gilroy;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #626C85;
}

.buttonWrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 52px;
}

.bookingSolutions {
    width: 100%;
    display: flex;
    align-items: flex-start;
    position: relative;
    justify-content: space-between;
    margin-bottom: 86px;
}

.bsImage {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    z-index: -1;
}

.bsImage img {max-width: 100%;}

.bsLeft {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.bsLeft p{
    margin: 0;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #626C85;
}

.bsRightDetail p {
    margin: 0 0 8px 0;
    font-family: Gilroy;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #0A2258;
}

.bsRightDetail ul li a:after{
    content: "";
    background: url(../img/rup2.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 25px;
    transition: all .3s ease;
}

.bsRightDetail ul li a:hover:after{
    transform: rotate(45deg);
}

.bsRightDetail ul li a:hover .bsNewBtnIcon {
    border-color: #7929FB;
}

.bsRightDetail {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bsRightDetail ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bsRightDetail ul li {
    border-radius: 100px;
    color: #1417FF;
    font-family: Gilroy;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}


.bsRightDetail ul li a {
    width: 100%;
    border-radius: 100px;
    display: flex;
    align-items: center;
    border: 1px solid #D6DAE9;
    background: #fff;
    padding: 16px;
    gap: 12px;
    position: relative;
}

.bsRightDetail ul li a:hover{
    border-color: #fff0;
    background: #F8F9FD;
}

.bsNewBtnIcon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 100%;
}

.bsNewBtnIcon img {}

.bsNewDesc p {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 4px;
}

.bsNewDesc {}

.bsNewDesc span {
    color: #626C85;
    font-size: 14px;
    line-height: 16px;
}

.bsLeft span {
    background: radial-gradient(140.75% 161.99% at 100% 13.54%, #7929FB 0%, #4A6BE5 50%, #19AFCE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
}

.bsLeft h2 {
    background: #0A2258;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0%;
    margin: 0;
}

.bsLeft ul {
    width: 100%;
    display: flex;
    gap: 12px;
}

.bsLeft ul li {}

.bsLeft ul li a {
    border: 1px solid #D6DAE9;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grillContainer{
    width: 100%;
    max-width: calc(100% - 260px);
    margin: 0 auto;
}

.grillBg{width: 100%;position: relative;}

.grillBg img{
    width: 100%;
    position: absolute;
    z-index: -1;
    top: -18vw!important;
}

.centralDetailWrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.centralDetailWrapper > img{
    margin-top: -50px;
}
.centralDetailWrapper ul{
    width: 100%;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.centralDetailWrapper ul li{
    width: calc(50% - 20px);
    font-family: Gilroy;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: justify;
    color: #626C85;
}


.aboutDescription{
    margin-bottom: 96px;
}
.learnMoreWrapper{
  width: 100%;
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 90px 0 90px 0;
}
.learnMoreImg{
    width: 49%;
    display: flex;
}
.learnMoreImg > img{
  width: 100%;
  max-width: 646px;
}
.learnMoreDesc{
  width: 55%;
  padding: 0 32px;
}
.learnMoreDesc > img{
  height: 64px;
  margin-bottom: 24px;
}
.learnMoreDesc .themeTitle{align-items: flex-start;text-align: left;}
.learnMoreDesc .themeTitle h2{font-size: 32px;line-height: 48px;}
.learnMoreDesc .themeTitle p{font-size: 16px;line-height: 32px;}
.learnMoreDesc::before{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0px -4px 26px 0px rgba(255, 255, 255, 0.04) inset;
  z-index: -1;
}
.learnMoreDesc ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.learnMoreDesc ul li{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: black;
}
.learnMoreDesc ul li img{}

.learnMoreWrapper.invertElement{
  flex-direction: row-reverse;
}

.heroImg.invertElement{
  flex-direction: row-reverse;
}


.learnMoreWrapper.invertElement .learnMoreDesc::before{
  right: auto;
  left: 0;
}

.subPage .securityBox ul{justify-content: center;}

.subPage .securityBox ul li{
    border: 1px solid #E3E7F1;
    border-radius: 12px;
    padding: 24px;
}

.posWrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.posItem {
    width: calc(100% * 1/3 - 21.333px);
    border: 1px solid #E3E7F1;
    border-radius: 12px;
    padding: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 71.89%, #2f99b2 100.09%);
    position: relative;
    gap: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.posWrapper .posItem:first-child{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 71.89%, #DFFF9D 100.09%);
}

.posWrapper .posItem:nth-child(2){
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 71.89%, #BCF2FF 100.09%);
}

.posWrapper .posItem:nth-child(3){
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 71.89%, #9A7FFF 100.09%);
}

.posWrapper .posItem:first-child a{
    background: #DFFF9D;
}

.posWrapper .posItem:first-child a:hover{
    background: #ade63b;
}

.posWrapper .posItem:nth-child(2) a{
    background: #BCF2FF;
}

.posWrapper .posItem:nth-child(2) a:hover{
    background: #23c3eb;
}

.posWrapper .posItem:nth-child(3) a{
    background: #9A7FFF;
}

.posWrapper .posItem:nth-child(3) a:hover{
    background: #8a6bf9;
}


.posItemImg {
    
}

.posItemImg > img {
    display: flex;
    width: 100%;
}

.posItem h2 {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: Gilroy;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #090E24;
    margin: 0;
}

.posItem p {
    font-family: Gilroy;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    margin: 0;
}

.participationFee {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.participationFee span {
    box-shadow: 0px 10px 48px 0px #0000001F;
    padding: 12px;
    border: 1px solid #E3E7F1;
    border-radius: 12px;
}

.posPrice {
    color: #626C85;
    font-family: Gilroy;
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0%;
    color: #090E24;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.posPrice span {
    font-family: Gilroy;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #626C85;
}

.posItem a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid #FFFFFF1A;
    border-radius: 12px;
    background: #f2f2f2;
    transition: all .3s ease;
}

.posItem a:hover{
    background: #dedbdb;
}

.posItemDetail{
    width: 100%;
    gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px;
}

/*new contact form*/

.newContactWrapper{
    width: 100%;
    padding: 0 25px;
    display: flex;
    align-items: flex-start;
    margin-top: 90px;
}
.newContactDescription, .mapArea{
    width: 50%;
}

.mapArea iframe{
    width: 100%;
    height: 530px;
    border-radius: 32px;
}

.newContactBoxes{
    width: 100%;
    display: flex;
    gap: 32px;
    margin-top: 32px;
}
.newInfoBox{
    box-shadow: 0px -4px 24px 0px rgba(255, 255, 255, 0.02) inset;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid #E3E7F1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.newInfoBox img{}
.newInfoBox h3{
    font-size: 18px;
    margin: 0;
}
.newInfoBox p{
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(147, 157, 184, 1);
    margin: 0
}
.newInfoBox a{
    border: 1px solid #E3E7F1;
    font-family: Gilroy;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;
    padding: 8px 12px;
    border-radius: 12px;
    background: #FFFFFF;
    transition: all .3s ease;
}

.newInfoBox a:hover {
    background: #E3E7F1;
}

.newContactForm {
  width: 50%;
  padding-left: 35px;
}

.newContactForm form{
  width: 100%;
}
.newFormWrapper{
  border: 1px solid #E3E7F1;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* box-shadow: 0px 10px 48px 0px #00000014; */
  background: linear-gradient(171.72deg, #FFFFFF 16.08%, rgba(255, 255, 255, 0.5) 68.97%);
}

.newFormWrapper .inputGroup{
    display: flex;
    gap: 12px;
}

.newFormWrapper .inputArea{
    width: 100%;
}

.newFormWrapper .inputArea input, 
.newFormWrapper .inputArea select,
.newFormWrapper .inputArea textarea{
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 15px;
    width: 100%;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
    letter-spacing: 0em;
    text-align: left;
    border: 1px solid #E3E7F1;
    color: #626C85;
}
.newFormWrapper .inputArea input::placeholder, 
.newFormWrapper .inputArea select::placeholder,
.newFormWrapper .inputArea textarea::placeholder{
    color: #626C85;
}

.newFormWrapper .inputArea input:focus, 
.newFormWrapper .inputArea select:focus,
.newFormWrapper .inputArea textarea:focus{
  color: #090e24;
  outline: none;
  box-shadow: 0px -4px 4px 0px rgba(255, 255, 255, 0.12) inset;
  border: 1px solid 1px solid #E3E7F1;
}
.newFormWrapper .inputArea input{
    width: 100%;
}
.newFormWrapper .inputArea select{color: #626C85;}
.newFormWrapper .inputArea select option{color: #626C85;}
.newFormWrapper .inputArea textarea{}
.newFormWrapper .buttonArea{}
.newFormWrapper .buttonArea button{
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Gilroy';
}

.newContactFormBg{
    width: 100%;
}
.newContactFormBg img{
        position: absolute;
    z-index: -1;
    right: 0px;
    width: 52%;
    top: 0;
    opacity: .5;
}

.newFormTitle{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.newFormTitle h3{
    font-family: Gilroy;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #090E24;
    margin: 0;
}
.newFormTitle p{
    font-family: Gilroy;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #626C85;
    margin: 0;
}

/*sanal pos sonuc*/

@media screen and (min-width:1600px){
  #virtualpos {
    min-height: 100vh;
    padding-bottom: 20px;
  }
}



#virtualpos {
    padding: 96px 0 0px 0;
    background: url('../img/sanalposbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.posCenter {
  width: 100%;
  float: left;
}

.virtualPostArea {
  width: 100%;
  float: left;
  margin-bottom: 20px;
  margin-top: 25px;}

.virtualPostArea h2 {
  font-family: Coolvetica;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  color: #fff
}

.resultscreen {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 32px;
  margin-bottom: 82px;
  background: rgb(255 255 255);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 48px 0px rgba(255, 255, 255, 0.12) inset;
  border-radius: 24px;
  margin-top: 100px;
  border-color: #E3E7F1;
  }

.priceArea {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.priceArea span {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: #626C85;
}

.blockchainArea {display: flex;flex-direction: column;gap: 16px;}

.blockchainArea span {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  color: #090E24;
}

.blockchainArea select{
  background: none;
  color: white;
  font-family: Coolvetica;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 26px;
  border: none;
  outline: none;
}

.blockchainArea select option{
  color: black;
  font-family: Coolvetica;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
}

.cardDetails {width: 100%;}

.cardinfo h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  color: #090E24;
  margin-bottom: 32px;
  }

.cardpaymentarea {
  width: 100%;
  float: left;
  max-width: 585px;
  margin-right: 90px;
}

.cardpaymentarea .formWrapper{
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  margin-bottom: 32px;
}

.cardinputarea {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 17px;
  position: relative;
}

.cardinputarea span {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 109%;
  letter-spacing: -.015em;
  color: #fff;
  margin-bottom: 12px
}

.cardinputarea input {
  background: #fff;
  border-radius: 14px;
  border: none;
  outline: 0;
  width: 100%;
  float: left;
  height: 52px;
  padding: 27px 30px 19px 30px;
}

.cardinputarea.input50 {
  width: calc(50% - 16px);
  float: left;
  margin-bottom: 24px
}

.inputmultiarea {
  display: flex;
  justify-content: space-between
}

.cardpaymentarea a.sendagain {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #090E24;
  float: left
}

.paymentImg {
  width: calc(100% - 675px);
  float: left;
  display: flex;
  flex-direction: column;
  align-items: flex-end
}

.sendagain img {
}

.paymentImg button:hover {
  transition: .4s ease;
  background: #c805b6;
  color: #fff
}

.paymentImg button {
  background: #E718D4;
  border-radius: 4px;
  font-family: Monofonto;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #fff;
  border: none;
  margin-top: 20px;
  padding: 15.5px 37px;
}

.cardpaymentresult {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 26px;
  margin-top: 35px;
  min-height: 70px;
  }

.cardpaymentresult.error {
  background: #FF7F81;
}

.resultdesc {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: #4C1112;
  display: flex;
  align-items: center;
}

.resultdesc img {
  margin-right: 15px;
  width: 35px;
  }

.posCenter .logo {
  margin-top: 20px;
}

.posCenter .logo a{display: flex;}

.posCenter .headerNav {
  margin: 0 auto;
  float: none
}

.cardpaymentresult.successful {
  background: #FFD67F;
}

.cardpaymentresult.warning {
  background: #DFFF9D;
}

.cardpaymentresult a img{width: 18px;}

.totalPrice{
  color: #1417FF;
  font-family: Gilroy;
  font-weight: 900;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0%;
}
.totalCoin{color: #1417FF;font-family: Gilroy;font-weight: 900;font-size: 40px;line-height: 40px;letter-spacing: 0%;text-align: right;}

.infoImg{
  position: absolute;
  right: 20px;
  top: calc(50% - 11px);
}
.infoImg img{}

.payImgWrapper{
  width: 100%;
  float: left;
  position: relative;
  text-align: right;
}

.payImgWrapper img{max-width: 560px;}


#outPutVal{
  position: absolute;
  bottom: 50px;
  left: 40px;
  color: #090E24;
  font-size: 22px;
  font-weight: 500;
}


#outPutValNumb{
  position: absolute;
  bottom: 100px;
  left: 40px;
  color: #090E24;
  font-size: 30px;
  font-weight: 500;
  display: flex;
}

.paynow img{
  filter: invert(1);
  width: 30px;
  margin-top: -5px;
}

.paynow{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sendAgain{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sendAgain a > img{margin-right: 8px;}

/*sanal pos finis*/

.posWrapper{}
.posWrapperArea{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(178deg,rgba(255, 255, 255, 1) 0%, rgba(104, 144, 231, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.posContainer{
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
}
.posLogo{
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}
.posLogo img{}
.posForm{}
.posInput{
    width: 100%;
}
.posInput input{
    width: 100%;
    border-radius: 12px;
    border: 0;
    height: 60px;
    font-family: Gilroy;
    font-weight: 700;
    font-size: 15px;
    line-height: 32px;
    letter-spacing: 0%;
    color: #090E24;
    padding: 12px 20px;
}

.posInput input::placeholder{
    color: #090E24;
}

.posForm button{
    width: 100%;
    height: 60px;
}

.posFormInputGroup{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
}

.posButton {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.posButton a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: white;
    border-radius: 12px;
    border: 1px solid #E3E7F1;
    width: 100%;
    padding: 20px 20px;
    color: #090E24;
    font-weight: 700;
    font-size: 20px;
}

.salesReport {
    width: 100%;
    gap: 40px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.posButton a img {
    height: 60px;
}

.posBottomButtons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.posBottomButtons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: #090E24;
    font-size: 22px;
    font-weight: 600;
    width: 40%;
}

.posBottomButtons a img {
    height: 54px;
}

.salesReport.horizontal{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.salesReport.horizontal .posButton{
    width: calc(50% - 10px);
}

.salesReport.horizontal .posButton a{
    gap: 20px;
}

.salesReport.horizontal .posButton a img{
    height: 30px;
}

.posBottomButtons.horizontal a{
    flex-direction: row;
    font-size: 18px;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.posBottomButtons.horizontal  a img{
    height: 28px;
}

/* modal css*/

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 300px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-icon {
  background: #b3f0ff;
  color: #000;
  font-size: 30px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: -60px auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-icon img {
    height: 70px;
}

.modal-title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 15px;
}

.modal-input {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.modal-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}

.modal-select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}

.modal-complete {
  background: #002bff;
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
}

.modal-cancel {
  background: #000;
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.modalList{
    width: 100%;
    margin-top: 40px;
}
.modalList ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.modalList ul li{
    width: 100%;
}
.modalList ul li a{
    width: 100%;
    color: black;
    text-decoration: underline;
}

.modalList span{
    display: flex;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 20px;
}

/*modal css finished*/

.platformSlider .swiper-slide a span {
    position: absolute;
    bottom: -10px;
    border: 1px solid #E3E7F1;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    color: #7929FB;
    background: white;
    z-index: 9;
    color: #0A2258;
    text-align: center;
    max-width: calc(100% - 20px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.platformSlider .swiper-slide a:hover span {
    border-color: #7929FB;
    color: #7929FB;
}

footer{
    width: 100%;
    float: left;
    position: relative;
    padding-top: 50px;
    margin-top: 8px;
}

.themeline::before {
    content: "";
    width: 100%;
    position: absolute;
    top: -8px;
    height: 8px;
    background: radial-gradient(140.75% 161.99% at 100% 13.54%, #7929FB 0%, #4A6BE5 50%, #19AFCE 100%);
    margin-bottom: 40px;
}

.footerMenuWrapper {
    width: 100%;
    display: flex;
    align-items: flex-start;
    border: 1px solid #D6DAE9;
    padding: 56px 100px;
    border-radius: 48px;
}

.footerMenuWrapper ul {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footerMenuWrapper ul li {}

.footerMenuWrapper ul li a {
    font-family: Gilroy;
    font-weight: 500;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0%;
    color: #626C85;
}

.footerMenuWrapper ul span {
    font-family: Gilroy;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    margin-bottom: 24px;
}

.footerMenuWrapper ul li a:hover {
    color: black;
}

.chooseModel{
    padding-bottom: 120px;
    background: white;
    position: relative;
    z-index: 1;
}

.chooseModelCarWrapper {
    width: 100%;
    padding: 120px 100px 220px 100px;
    border-radius: 48px;
    background: radial-gradient(140.75% 161.99% at 100% 13.54%, #7929FB 0%, #4A6BE5 50%, #19AFCE 100%);
}

.chooseSelectList{
    width: 100%;
    margin-top: 32px;
}

.productList {
    width: 100%;
}

.productItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    box-shadow: 0px 10px 48px 0px #0A22580A;
    border-radius: 24px;
    padding: 85px 24px 24px 24px;
    position: relative;
}

.prodDetail {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.prodDetail h2 {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #0A2258;
    margin: 0;
}

.prodDetail span {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0%;
    text-align: center;
    background: radial-gradient(140.75% 161.99% at 100% 13.54%, #7929FB 0%, #4A6BE5 50%, #19AFCE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.prodDetail a {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    background: #0A2258;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 3px solid #7929FB;
    padding-bottom: 5px;
}

.prodListWrapper {
    margin-top: -290px;
    margin-bottom: 120px;
    padding: 0 100px;
    position: relative;
}

.chooseModel:before {
    content: "";
    width: 100%;
    height: 450px;
    background: #f8f9fd;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -156px;
    z-index: -1;
}

.prodImage {
    position: absolute;
    top: -100px;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.prodImage img{
    max-width: 100%;
}

.productListSlider .swiper-slide {
    padding-top: 75px;
}

.select-wrapper {
  display: flex;
  gap: 20px;
}

.select-box {
  padding: 12px 40px 12px 20px;
  font-size: 16px;
  border-radius: 9999px;
  appearance: none;
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 12px;
  background-image: url("../img/rdown.svg");
  transition: all 0.3s ease;
  outline: none;
  height: 43px;
}

.select-box option{
    color: #222;
    font-size: 14px;
}

.filled {
  background-color: white;
  border: none;
  color: #0f1d3c;
  font-weight: 600;
}

.outlined {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-weight: 500;
}

.select-box.filled{
    background-image: url('../img/rdownb.svg');
}

.warning-text {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #ffcccb;
    font-weight: 500;
    position: absolute;
    left: 10px;
    white-space: nowrap;
}

.selectBoxItem{
    position: relative;
}

.tabLinksWrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.tabLinksWrapper ul {
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 10px;
    border: 1px solid #FFFFFF4D;
    border-radius: 100px;
}

.tabLinksWrapper ul li {}

.tabLinksWrapper ul li a {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.tabLinksWrapper ul li a.active {
    box-shadow: 0px 10px 48px 0px #00000014;
    background: white;
    border-radius: 100px;
    color: #0A2258;
    padding: 16px 34px;
}

.tabLinksWrapper ul li a:hover {
    color: #00044f;
}

.bannerSlider {
    width: 100%;
    margin-top: -340px;
}

.bannerSlider .swiper-slide {
    padding: 0 100px;
    box-sizing: border-box;
}

.bannerSliderItem {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.bannerSliderDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.bannerSliderDesc h2 {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;
    color: white;
    margin: 0;
}

.bannerSliderDesc p {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0%;
    color: white;
    width: 100%;
    margin: 0 0 24px 0;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 32px;
    height: 64px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bannerSliderDesc a {
    padding: 16px;
    background: white;
    border-radius: 100px;
    background-color: white;
    color: #7929FB;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0%;
    transition: all .3s ease;
}

.bannerSliderDesc a:hover {
    background: #1b40be;
    color: white;
}

.bannerSliderWrapper {
    width: 100%;
    padding: 120px 100px 390px 100px;
    border-radius: 48px;
    background: radial-gradient(140.75% 161.99% at 100% 13.54%, #7929FB 0%, #4A6BE5 50%, #19AFCE 100%);
}


.swiperButtonWrapper {
    position: absolute;
    right: 100px;
    width: 100px;
    height: 44px;
    bottom: 100px;
    border: 1px solid #ffffff80;
    border-radius: 100px;
    padding: 10px;
    background: #476ee3;
}

.swiper-button-next, .swiper-button-prev {
    color: white;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 22px;
}

.heroLeftSlider {
    width: 53.6%;
    position: relative;
    border-radius: 24px;
}

.heroRightBanner {
    width: 100%;
    position: relative;
}

.heroLeftSlider .swiper-slide:before {
    content: "";
    background: linear-gradient(180deg, rgba(5, 17, 44, 0) -26.38%, #05112C 90.79%);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 24px;
    z-index: 2;
}

.heroDesc {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 9;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chooseYourLocation {
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 20px;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 100px;
    padding: 12px 16px 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.heroLeftSlider .swiper-slide a img {
    width: 100%;
    border-radius: 24px;
}

.heroLeftSlider .swiper-slide a {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.chooseYourLocation a {
    background: radial-gradient(140.75% 161.99% at 100% 13.54%, #7929FB 0%, #4A6BE5 50%, #19AFCE 100%);
    font-family: Gilroy;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0;
    color: white;
    padding: 16px;
    border-radius: 100px;
}

.locationIcon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.locationIcon span {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #626C85;
}

.heroDesc span {
    background: radial-gradient(140.75% 161.99% at 100% 13.54%, #7929FB 0%, #4A6BE5 50%, #19AFCE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
}

.heroDesc h2 {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.heroDesc p {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: white;
    margin: 0;
}

.heroLeftSlider .swiperButtonWrapper{
        bottom: 120px;
    z-index: 9;
    background: none;
    left: calc(50% - 50px);
}

.swiper-button-prev:after, 
.swiper-rtl .swiper-button-next:after{
    content: "";
    background: url('../img/arrow-left.svg');
    width: 32px;
    height: 32px;
    background-size: contain;
}

.swiper-button-next:after, 
.swiper-rtl .swiper-button-prev:after{
    content: "";
    background: url('../img/arrow-right.svg');
    width: 32px;
    height: 32px;
    background-size: contain;
}

.heroRightBanner:before {
    content: "";
    background: linear-gradient(180deg, rgba(5, 17, 44, 0) -26.38%, #05112C 90.79%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 24px;
}

.heroRightBanner > img {
    width: 100%;
}

.heroRightDesc {
    position: absolute;
    bottom: 0;
    color: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.heroRightDesc h2 {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0%;
    color: white;
    margin: 0;
}

.heroRightDesc p {
    margin: 0 0 8px 0;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: white;
}

.heroRightBanner > a {
    height: 100%;
    display: flex;
    align-items: flex-start;
    width: 100%;
    position: absolute;
    top: 0;
}

.heroRightBannerList{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.heroRightMiniDesc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 42px 24px;
}

.heroRightMiniDesc a{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.heroRightMiniDesc h2 {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0%;
    color: white;
}

.heroRightMiniDesc p {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: white;
}

.heroRightMiniDesc > img {
    margin-bottom: 50px;
}

.appLinksWrapper {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.leftAppImg {
    width: 100%;
    display: flex;
}

.leftAppImg img {
    width: 100%;
}

.appLinksButton {
    display: flex;
    align-items: center;
    gap: 16px;
}

.appLinksButton a {}

.mt40{
    margin-top: 40px;
}

.appDescArea {
    background: #F5F6FB;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 56px 0px 56px;
    border-radius: 16px;
    gap: 32px;
}

.appDescArea.fullDevArea{
    flex-direction: row;
}

.appDescArea.fullDevArea .appMiniDesc{
    width: 50%;
}
.appDescArea.fullDevArea .appDeviceImg{
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.appDescArea.fullDevArea .reverseDevice{
    justify-content: flex-start;
}

.appDeviceImg {
    display: flex;
}

.appDeviceImg img {
    display: flex;
}

.appMiniDesc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.appMiniDesc span {
    background: radial-gradient(140.75% 161.99% at 100% 13.54%, #7929FB 0%, #4A6BE5 50%, #19AFCE 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0%;
}

.appMiniDesc h2 {
    margin: 0;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
}

.appMiniDesc p {
    margin: 0;
    background: #626C85;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.appDeviceWrapper{
    width: 100%;
    display: flex;
    gap: 32px;
}
.appDescription{
    width: 100%;
    margin-bottom: 32px;
}

.mb120{margin-bottom: 120px!important;}

.solutionsWrapper {
    width: 100%;
    display: flex;
    gap: 32px;
}

.singleSolutionBanner {
    width: 50%;
}

.solutionList {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}

.solutionList ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.solutionList ul li {
    width: calc(50% - 16px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.solImg {
    width: 100%;
}

.solImg > img {
    width: 100%;
}

.solutionList.fullSolution {
    width: 100%;
}

.solutionList.fullSolution ul li {
    width: calc(25% - 24px);
}

.solutions {
    margin-bottom: 32px;
}

.singleSolutionBanner a {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 16px;
}

.singleSolutionBanner a:after{
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    right: 24px;
    top: 24px;
    background-image: url('../img/rup.svg');
    background-position: 80% 80%;
    background-size: 24px;
    background-repeat: no-repeat;
}

.singleSolutionBanner a img {
    width: 100%;
    border-radius: 16px;
}

.solutionDesc {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(5, 17, 44, 0) -26.38%, rgba(5, 17, 44, 0.8) 90.79%);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 16px;
    padding: 32px;
    border-radius: 16px;
}

.solutionDesc h2 {
    margin: 0;
    font-family: Gilroy;
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 0%;
    color: white;
}

.solutionDesc p {
    color: white;
    margin: 0;
    font-family: Gilroy;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
}

.solutionList ul li h2 {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    margin: 0;
}

.solutionList ul li a {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0%;
    color: #626C85;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.pageDouble{
    width: 100%;
}

.pageDouble ul{
    width: 100%;
    display: flex;
    gap: 32px;
}

.pageDouble ul li{
    width: 50%;
}

.fullBanner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.fullBannerArea{
    margin-bottom: 64px;
}
.fullBanner img{
    width: 100%;
}
.dikeyLinWraper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
}

.doubleImg{
    margin-bottom: 60px;
}

.doubleImages {
    width: 100%;
    display: flex;
    padding-top: 64px;
}

.dLeftImg {
    padding-right: 64px;
    border-right: 1px solid #D6DAE9;
}

.dLeftImg img{max-width: 100%;}

.dRightImg {
    padding-left: 64px;
    padding-bottom: 64px;
    padding-top: 170px;
}

.dRightImg img{max-width: 100%;}

.helperLinks {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

.helperLinks ul {
    width: 100%;
    max-width: max-content;
    display: flex;
    justify-content: flex-start;
    border: 1px solid #E3E7F1;
    background: #F5F6FB;
    padding: 8px;
    border-radius: 16px;
    gap: 12px;
    overflow: auto;
}

.helperLinks ul li {}

.helperLinks ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 16px;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #626C85;
    white-space: nowrap;
}

.helperLinks ul li.active a, .helperLinks ul li:hover a {
    background: white;
    box-shadow: 0px 10px 48px 0px #00000014;
}

.helperLinks ul li a:hover .helperIcon img {
    filter: brightness(0) saturate(100%) invert(59%) sepia(89%) saturate(1119%) hue-rotate(350deg) brightness(102%) contrast(102%);
}

.otherText{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.otherText h3{
    font-family: Gilroy;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #0A2258;
    margin: 0;
}
.otherText p{
    width: 100%;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #626C85;
    margin: 0;
}

.priceListWrapper {
    width: 100%;
    display: flex;
    gap: 32px;
    margin-top: 130px;
    margin-bottom: 120px;
}

.priceListItem {
    width: 50%;
    background: #F5F6FB;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-radius: 24px;
}

.priceTop {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D6DAE9;
    padding-bottom: 10px;
}

.priceItemLeft {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.priceImg {
    display: flex;
    position: relative;
    width: 40%;
}

.priceImg img{
    max-width: 100%;
}

.priceItemLeft h2 {
    font-family: Gilroy;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #0A2258;
    margin: 0;
}

.priceItemLeft p {
    color: #626C85;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    margin: 0;
}

.priceImg img {
    position: absolute;
    bottom: -50px;
    right: 0;
}

.priceDetail {
    width: 100%;
}

.priceDetailTitle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.priceDetailTitle span {
    background: radial-gradient(140.75% 161.99% at 100% 13.54%, #7929FB 0%, #4A6BE5 50%, #19AFCE 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Gilroy;
    font-weight: 700;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0%;
}

.priceDetailList {}

.priceDetailList ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.priceDetailList ul li {
    border: 1px solid #D6DAE9;
    width: 100%;
    padding: 8px 16px 8px 8px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.priceDetailList ul li span {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
    display: flex;
    align-items: center;
    gap: 14px;
}

.priceIcon {
    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px;
    box-shadow: 0px 10px 48px 0px #00000014;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    justify-content: center;
    border-radius: 16px;
}

.chooseTabWrapper{
    width: 100%;
    margin-top: 48px;
}

.chooseTabs{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}
.station-black{
    width: 100%;
    display: flex;
    gap: 32px;
}

.station-bar-item {
    background: none;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #0A2258;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #D6DAE9;
    padding-top: 10px;
}

.station-bar-item span {
    color: #626C85;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
}

.station-bar-item.active {border-top: 4px solid #7929FB;}

.station-container {
    width: 100%;
}

.station-container img {
    max-width: 100%;
}

.mapStation{
    margin-bottom: 120px;
}

.mapInfoWrapper{
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 424px);
    position: relative;
}

#map {
    width: 100%;
    height: 720px;
    border: 1px solid #ccc;
    border-radius: 8px;
    float: left;
}

.stationMapSelect {
    width: 100%;
    position: relative;
    display: flex;
}

.chargingListWrapper {
    width: 100%;
    max-width: 392px;
    float: left;
    margin-right: 32px;
}

#infoBox {
    background: white;
    position: absolute;
    z-index: 9;
    box-shadow: 0px 10px 48px 0px #00000014;
    padding: 16px;
    border-radius: 16px;
    width: 100%;
    max-width: 310px;
    left: 11px;
    top: 11px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.chIcon {
    display: flex;
}

.chIcon img {}

.chargingListTitle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.charginListDetail {
    width: 100%;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E3E7F1;
    max-height: 720px;
    overflow: auto;
}

.chargingListTitle span {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #0A2258;
}

.chargingListSearch {
    width: 100%;
    position: relative;
    margin-bottom: 24px;
}

.chargingListSearch input {
    border: 1px solid #E3E7F1;
    border-radius: 16px;
    height: 48px;
    width: 100%;
    padding: 10px 16px 10px 46px;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #626C85;
}

.chargingListSearch input:placeholder{
    color: #626C85;
}

.chargingListSearch img {
    position: absolute;
    left: 13px;
    top: 13px;
}

.chargingStationsFullList {}

.chargingStationsFullList ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chargingStationsFullList ul li {
    width: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.chargingIcon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chargingIcon img {}

.chargingDetailWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chargingDetail {
    color: #0A2258;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
}

span.locationName {
    color: #626C85;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
}

.chargingStationsFullList {}

.chargingStationsFullList ul {}

.chargingStationsFullList ul li {
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 16px;
    padding: 7px 8px;
    gap: 8px;
    border: 1px solid #fff0;
}

.chargingIcon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1BACCF26;
}

.chargingIcon img {}

.chargingDetailWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chargingDetail {
    color: #0A2258;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
}

.locationName {
    color: #626C85;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
}

.fullListTitle {
    width: 100%;
    padding: 8px;
    border: 1px solid #E3E7F1;
    background: #F5F6FB;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.fullListTitle span {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #626C85;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fullListTitle span.active {
    box-shadow: 0px 10px 48px 0px #00000014;
    background: white;
    padding: 8px 12px;
    border-radius: 16px;
    color: #0A2258;
}

#locationList li.active {
  border: 1px solid #7929FB;
  background: radial-gradient(140.75% 161.99% at 100% 13.54%, rgba(121, 41, 251, 0.1) 0%, rgba(74, 107, 229, 0.1) 50%, rgba(25, 175, 206, 0.1) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
}

li.ac .chargingIcon{
    background: #FF991026;
}

li.ac.active .chargingIcon, 
li.dc.active .chargingIcon {
    background: white;
}

#infoBox p {
    font-family: Gilroy;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #626C85;
    margin: 0 0 24px 0;
}

#infoBox h3 {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #0A2258;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 7px;
}

#infoBox .defaultButton{
    width: 100%;
    padding: 11px 15px;
}

.usageInformation {
    width: 100%;
    margin-bottom: 14px;
}

.usageInformation > span {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #0A2258;
    width: 100%;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.usageInformation ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.usageInformation ul li {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.usageIcon {
    box-shadow: 0px 10px 48px 0px #00000014;
    background: #4E66E71A;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usageDetail {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #626C85;
}

.usageDetail span {
    color: #0A2258;
    font-family: Gilroy;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
}

.mapArea #infoBox{
    left: 10px;
    top: 10px;
}