/* global */
@font-face {
    font-family: "FF Shamel Family";
    src: url(../fonts/FFShamelFamily-UniqueBold.ttf);
}
@font-face {
    font-family: "SF-light";
    src: url(../fonts/SF-Light.ttf);
}
@font-face {
    font-family: "SF-medium";
    src: url(../fonts/SF-Medium.ttf);
}
@font-face {
    font-family: "IBM Plex Sans Arabic";
    src: url(../fonts/IBMPlexSansArabic-Light.ttf);
}

@font-face {
    font-family: "IBM-arabic-regular";
    src: url(../fonts/IBMPlexSansArabic-Regular.ttf);
}

@font-face {
    font-family: "IBM-arabic-medium";
    src: url(../fonts/IBMPlexSansArabic-Medium.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}
.accordion-button.collapsed::after {
    background: url("../images/svg/accordion_plus.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.accordion-button:not(.collapsed)::after {  
    background: url("../images/svg/accordion_minus.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

.custom-btn {
    height: 56px;
    width: 249px;
    border-radius: 48px;
    padding: 12px 24px 12px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "IBM-arabic-medium";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    cursor: pointer;
    position: relative;
    z-index: 30;
}

.section-content {
    text-align: center;
}

.section-content .section-title {
    font-family: "SF-medium", ui-sans-serif, system-ui, Helvetica, Arial, "Noto Sans", sans-serif, Symbol;
    font-size: 32px;
    font-weight: 700;
    line-height: 79px;
    letter-spacing: 0em;
    max-width: 600px;
    margin: 0 auto;
}

.section-content .section-desc {
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    margin-bottom: 0;
    margin-top: 10px;
    color: #787878;
}

.btn-prim-color {
    background-color: #FFFFFFB2;
    color: #7462F4;
}

.btn-bg-prim-color {
    background-color: #7462F4;
    margin: 20px auto;
    color: #FFFFFF;
}

.gradiant-text {
	background: linear-gradient(83.97deg, #E81A65 16.1%, #802BE7 34.94%, #7462F4 65.39%, #3FB8E8 82.13%);
	background-size: 100%;
	-webkit-background-clip: text;
    background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
}

/* header */
.main-header {
    background-color: #FBFBFB;
    padding-bottom: 90px;
    background-image: url(../images/svg/header_bg.svg);
    background-repeat: no-repeat;
    background-position: 50% -50%;
}
.main-header .navbar {
    padding: 2.5rem 5rem;
}

.main-header .header-content {
    text-align: center;
}

.main-header .header-content .header-title {
    font-family: "FF Shamel Family", ui-sans-serif, system-ui, Helvetica, Arial, "Noto Sans", sans-serif, Symbol;
    font-size: 44px;
    font-weight: 700;
    line-height: 79px;
    letter-spacing: 0em;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 20px;
}

.header-video-content {
    margin: 0 80px;
}

.header-video-content .header-video {
    height: 491px;
    max-width: 939px;
    border-radius: 33px;
    border: 6px solid #FFFFFF;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    background-image: url(../images/video_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.header-video-content .youtube-frame {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.header-video-content .youtube-frame iframe {
    border-radius: 30px;
}

.header-video-content .v-play-btn {
    position: absolute;
    width: 75px;
    height: 75px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.header-video-content .v-play-btn img {
    width: 100%;
}

.header-video-content .bubble {
    height: 127px;
    width: 127px;
    border-radius: 50%;
    position: absolute;
    z-index: 15;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.header-video-content .bubble.red-bubble {
    background-color: #E81A65CC;
	left: -10%;
	top: 10%;
    animation-duration: 2s;
    animation-name: red-bubble;
}
@keyframes red-bubble {
    50% {
        top: 7%;
    }
}
.header-video-content .bubble.blue-bubble {
    background-color: #3FB8E8CC;
    /* right: -10%;
    bottom: 5%; */
    animation-name: blue-bubble;
    animation-duration: 3s;
}
@keyframes blue-bubble {
    0% {
        bottom: 4%;
        right: -9%;
    }
    50% {
        bottom: 6%;
        right: -11%;
    }
    100% {
        bottom: 4%;
        right: -9%;
    }
}
/* header stuff */
.header-stuff-img {
    position: absolute;
    z-index: 15;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.header-stuff-img img {
    width: 100%;
    object-fit: cover;
}

.header-video-content .stuff-1 {
    width: 85px;
    right: -20%;top: 12%;
    animation-duration: 2s;
    animation-name: stuff-animate-1;
}
@keyframes stuff-animate-1 {
    50% {
        top: 9%;
    }
}
.header-video-content .stuff-2 {
    width: 85px;
    right: -6%; top: 14%;
    animation-duration: 3.5s;
    animation-name: stuff-animate-2;
}
@keyframes stuff-animate-2 {
    50% {
        top: 10%;
        right: -5.5%;
    }
}
.header-video-content .stuff-3 {
    width: 104px;
    right: -16%; top: 33%;
    animation-duration: 3s;
    animation-name: stuff-animate-3;
}
@keyframes stuff-animate-3 {
    50% {
        top: 30%;
    }
}
.header-video-content .stuff-4 {
    width: 104px;
    left: -18%; bottom: 33%;
    animation-duration: 1.5s;
    animation-name: stuff-animate-4;
}
@keyframes stuff-animate-4 {
    50% {
        bottom: 30%;
    }
}
.header-video-content .stuff-5 {
    width: 85px;
    left: -22%; bottom: 10%;
    animation-duration: 3.2s;
    animation-name: stuff-animate-5;
}
@keyframes stuff-animate-5 {
    50% {
        bottom: 8%;
    }
}
.header-video-content .stuff-6 {
    width: 85px;
    left: -6%; bottom: 13%;
    animation-duration: 3.8s;
    animation-name: stuff-animate-6;
}
@keyframes stuff-animate-6 {
    50% {
        bottom: 11%;
        left: -7%;
    }
}

/* cursor */
.cursor-content {
    margin: 0 55px;
}
.cursor {
    margin: 140px auto;
    max-width: 1616px;
    height: 425px;
    border-radius: 30px;
    text-align: center;
    /* padding: 167px 0; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-image: linear-gradient(40deg, #802BE7, #7462F4);
    position: relative;
    overflow: hidden;
}

.cursor .red-circle,
.cursor .blue-circle {
    width: 650px;
    height: 650px;
    border-radius: 50%;
    z-index: 5;
    filter: blur(100px);
    -webkit-filter: blur(100px);
    transform: translate3d(0, 0, 0);
}

.cursor .red-circle {
    position: absolute;
    background-color: #E81A65CC;
    top: -100%;
    left: -20%;
}

.cursor .cursor-light {
    position: absolute;
    background-color: wheat;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 6;
    filter: blur(30px);
    -webkit-filter: blur(30px);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0,0,0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000;
    -webkit-perspective: 1000;
    opacity: 0;
    mix-blend-mode: overlay;
}

.cursor .blue-circle {
    position: absolute;
    background-color: #3FB8E8CC;
    bottom: -100%;
    right: -15%;
}

.cursor .cursor-elem {
    position: relative;
    z-index: 10;
    transition: all 1s ease-in-out;
}

.cursor .cursor-elem:hover {
    transform: scale(1.3);
}

.cursor .cursor-amount {
    color: #FFFFFF;
    font-family: "FF Shamel Family", ui-sans-serif, system-ui, Helvetica, Arial, "Noto Sans", sans-serif, Symbol;
    font-size: 44px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0em;
    margin-bottom: 20px;
}

.cursor .cursor-title {
    font-family: "IBM Plex Sans Arabic";
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0em;
    color: #E0DFE2;
}

/* linking section */
.linking .linking-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.linking .linking-steps .link-controller {
    width: 530px;
    display: flex;
    justify-content: space-between;
}

.linking-steps .link-controller .cards .linking-card {
    max-width: 459px;
    border-radius: 36px;
    padding: 20px;
    background-color: #F9F9F966;
    border: 1px solid #F8F4FE;
    opacity: 0.1;
    transition: all 1s ease
}

.linking-steps .link-controller .cards .linking-card.active {
    opacity: 1;
}

.linking-steps .link-controller .cards .linking-card:not(:last-child) {
    margin-bottom: 45px;
}

.linking-steps .link-controller .cards .linking-card .icon-content {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #8E86FF1A;
    margin-bottom: 16px;
}

.linking-steps .link-controller .cards .linking-card .title {
    font-family: "FF Shamel Family", ui-sans-serif, system-ui, Helvetica, Arial, "Noto Sans", sans-serif, Symbol;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0em;
    color: #545454;
    margin-bottom: 16px;
}

.linking-steps .link-controller .cards .linking-card .desc {
    font-family: "IBM Plex Sans Arabic";
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0em;
}

/* .linking-steps .link-controller .cards .linking-card .img-content {
    height: 240px;
    width: 253px;
    border-radius: 20px;
    padding: 7px;
} */

.linking-steps .link-controller .cards .linking-card .img-content {
    width: 90%;
    border-radius: 20px;
    margin: 20px -20px -20px 0;
}

.linking-steps .link-controller .cards .linking-card .img-content img {
    width: 100%;
}

.linking-steps .link-controller .steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.linking-steps .link-controller .steps .step {
    height: 43px;
    width: 43px;
    border-radius: 50%;
    background-color: #8E86FF;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.3;
    transition: all 1s ease;
    cursor: pointer;
}

.linking-steps .link-controller .steps .step.active {
    opacity: 1;
}

.linking-steps .link-controller .steps .number {
    font-family: "IBM Plex Sans Arabic";
    font-size: 22px;
    font-weight: 600;
    line-height: 33px;
    letter-spacing: 0em;
    color: #FFFFFF;
    margin-bottom: 0;
    display: flex;
}

.linking .linking-steps .imgs {
    width: 732px;
    height: 100%;
    position: relative;
}

.linking .linking-steps .linking-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 1s ease;
    pointer-events: none;
}

.linking .linking-steps .linking-img.active {
    opacity: 1;
}

.linking .linking-steps .linking-img img {
    width: 100%;
}

.linking .linking-steps .link-img1 .check-box {
	position: absolute;
	display: flex;
    width: 2.8%;
    height: 4.3%;
    left: 23.3%;
    opacity: 0;
    transform: scale(0.9);
    animation-duration: 4s;
    animation-name: checkboxAnime;
    animation-timing-function: cubic-bezier(1, 1, 0.5, 1);
    animation-iteration-count: infinite;
}
.linking .linking-steps .link-img1 .check-box.c-1 {
    animation-delay: 1s;
    top: 26.9%;
    
}
.linking .linking-steps .link-img1 .check-box.c-2 {
    animation-delay: 2s;
    top: 42.05%;
}
.linking .linking-steps .link-img1 .check-box.c-3 {
    animation-delay: 3s;
    top: 57.2%;
}

@keyframes checkboxAnime {
    50% {
        opacity: 1;
        transform: scale(1);
    }
}


/* .linking .linking-steps .link-img1 .check-box.c-1.active,
.linking .linking-steps .link-img1 .check-box.c-2.active,
.linking .linking-steps .link-img1 .check-box.c-3.active {
    opacity: 1;
    transform: scale(1);
} */

.linking .linking-steps .link-img2 .check-box {
	position: absolute;
	display: flex;
    width: 2.8%;
    height: 4.3%;
    left: 23.3%;
    opacity: 0;
    transform: scale(0.9);
    animation-duration: 5s;
    animation-name: checkboxAnime2;
    animation-timing-function: cubic-bezier(1, 1, 0.5, 1);
    animation-iteration-count: infinite;
}

.linking .linking-steps .link-img2 .check-box.c-1 {
    animation-delay: 1s;
    top: 29%;
    left: 52.1%;
}
.linking .linking-steps .link-img2 .check-box.c-2 {
    animation-delay: 2s;
    top: 29%;
	left: 33.6%;
}
.linking .linking-steps .link-img2 .check-box.c-3 {
    animation-delay: 3s;
    left: 52.1%;
    top: 48.8%;
}
.linking .linking-steps .link-img2 .check-box.c-4 {
    animation-delay: 4s;
    left: 33.6%;
    top: 48.8%;
}

@keyframes checkboxAnime2 {
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 
.linking .linking-steps .link-img2 .check-box.c-1.active,
.linking .linking-steps .link-img2 .check-box.c-2.active,
.linking .linking-steps .link-img2 .check-box.c-3.active,
.linking .linking-steps .link-img2 .check-box.c-4.active {
    opacity: 1;
    transform: scale(1);
} */

.linking .dots {
    position: absolute;
    width: 96px;
    height: 16px;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.linking .dots .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation-name: dots;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.linking .dots .dot:nth-child(1) {
    background-color: #3FB8E8;
}
.linking .dots .dot:nth-child(2) {
    background-color: #E81A65;
    animation-delay: 0.4s;
}
.linking .dots .dot:nth-child(3) {
    background-color: #7462F4;
    animation-delay: 0.8s;
}
@keyframes dots {
    50% {
        opacity: 0;
        transform: scale(0.7);
    }
}

/* stores */
.stores {
    margin-top: 160px;
    position: relative;
    z-index: 10;
}

.stores .swiper {
    width: 100%;
    padding: 40px 0;
}
  
.stores .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

.stores .liner-bg {
    position: absolute;
    top: -110%;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.stores .liner-bg.show-img {
    display: none;
}
.store-card{
    border-radius: 25px;
    background: linear-gradient(#ede3fa,#fff);
    padding-top: 41px;
    padding-left: 15px;
    padding-right: 15px;
}
.stores .card-content {
    margin-top: 80px;
    position: relative;
}

.stores .store-carousel {
	position: absolute;
	top: 51%;
	left: 50%;
	transform: translate(-50%,-50%);
    width: 1730px;
}

.stores .product-img {
    width: 275px;
    border-radius: 20px;
    transition: all 1.5s ease; 
}
.stores .swiper-slide-active .product-img {
    transform: scale(1.3);
}

.stores .product-img img {
    width: 100%;
}

.stores .back-card-content {
    position: relative;
    height: 600px;
    width: 100%;
}

.stores .back-card {
    height: 650px;
    width: 390px;
    border-radius: 40px;
    border: 5px solid #FFFFFF;
    margin: 0 auto;
    background-image: linear-gradient(0deg, #FFFFFF, #FFFFFF),
    linear-gradient(0deg, #FFFFFF, #FFFFFF);
    padding: 40px 15px 15px;
    position: absolute;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
    opacity: 0;
    transition: all 1s ease;
}

.stores .back-card.active {
    opacity: 1;
}
/* 
.stores .back-card {
    display: none;
    transition: all 0.5s ease;
}

.stores .back-card.active {
    display: flex;
} */

.stores .back-card .colors-solid {
    position: absolute;
    /* background: linear-gradient(89.8deg, rgba(63, 184, 232, 0.6) 0.22%, rgba(142, 134, 255, 0.6) 29.99%, rgba(116, 98, 244, 0.6) 52.28%, rgba(128, 43, 231, 0.6) 76.95%, rgba(232, 26, 101, 0.6) 109.9%); */
    height: 159px;
    width: 340px;
    left: 30px;
    top: -190px;
    filter: blur(112px);
    transform: translate3d(0, 0, 0);
    -webkit-filter: blur(112px);
    backdrop-filter: blur(112px);
}

.stores .back-card .card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stores .back-card .card-title .store-name {
    font-family: "IBM-arabic-medium";
    font-size: 28px;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: 0em;
}

.stores .back-card .card-title .icons {
    width: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stores .back-card .card-title .store-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    background: linear-gradient(0deg, #F2F2F2, #F2F2F2), linear-gradient(0deg, #FFFFFF, #FFFFFF);
}

.stores .back-card .card-title .store-link img {
    width: 15px;
}

.stores .back-card .product-name {
    font-family: "IBM-arabic-medium";
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: center;
    margin-top: 17px;
}

.stores .back-card .store-logo {
    text-align: center;
    width: 173px;
    height: 80px;
    margin: 17px auto 0;
}

.stores .back-card .store-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* testimonal */
.testimon {
    padding: 100px 0 140px;
    position: relative;
    z-index: 10;
}

.testimon .section-content .section-desc {
    margin-top: 0;
}

.testimon .section-content .section-title {
	line-height: 65px;
}

.testimon .testimon-content {
    padding: 0 50px;
}

.testimon .testimon-traders-content {
	margin-top: 30px;
	display: grid;
	justify-content: center;
	gap: 30px;
	grid-template-columns: auto auto auto;
}

.testimon .testimon-traders-content .testimon-trader {
    max-width: 459px;
    padding: 20px 20px 50px;
    background: linear-gradient(0deg, #F8F7FE, #F8F7FE), linear-gradient(0deg, rgba(249, 249, 249, 0.1), rgba(249, 249, 249, 0.1));
    border: 1px solid #F8F4FE;
    border-radius: 36px;
}

.testimon-trader .icon {
    margin-bottom: 15px;
    width: 56px;
    height: 56px;
}

.testimon-trader .icon img {
    width: 100%;
}

.testimon-trader .trader-title {
    font-family: "SF-medium", ui-sans-serif, system-ui, Helvetica, Arial, "Noto Sans", sans-serif, Symbol;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0em;
    color: #2E2E2E;
    margin-bottom: 15px;
}
.testimon-trader .trader-subtitle {
    font-family: "SF-light", ui-sans-serif, system-ui, Helvetica, Arial, "Noto Sans", sans-serif, Symbol;
    color: #2E2E2E;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0em;
    margin-bottom: 15px;
}
.testimon-trader .trader-desc {
    font-family: "IBM-arabic-medium";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    color: #787878;
    margin-bottom: 0;
}

/* testimon swiper */
.testimon .testimon-swiper {
    margin-top: 60px;
}
.testimon .testimon-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}
.testimon .testimon-swiper .swiper-slide .testimon-trader {
    text-align: right;
    width: 320px;
    height: 390px;
    padding: 20px;
}

.testimon .testimon-swiper .swiper-slide .testimon-trader .icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: 0;
}

.testimon .testimon-swiper .swiper-notification {
    display: none;
}

.testimon .testimon-swiper .swiper-nav-content {
    margin-top: 20px;
    width: 92px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimon .testimon-swiper .swiper-button-next::after,
.testimon .testimon-swiper .swiper-button-prev::after {
    content: "";
}

.testimon .testimon-swiper .swiper-button-next,
.testimon .testimon-swiper .swiper-button-prev {
	position: relative;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background-color: #8E86FF1A;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimon .testimon-swiper .swiper-nav-content .swiper-button-next {
    transform: scale(-1, 1);
}

/* faq section */
.faq-section {
    margin-bottom: 170px;
}

.faq-section .section-content {
    margin-bottom: 16px;
}

.faq-section .faq-section-card {
    background-color: #FBFBFB;
    padding: 40px 70px;
    margin: 0 55px;
    border-radius: 30px;
}

.faq-section-card .col-img {
    position: relative;
}

.faq-section-card .col-img .img-content {
    width: 490px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.faq-section-card .img-content img {
    width: 100%;
}

/* Accordion */
.faq-section .accordion {
    border-radius: 8px;
    max-width: 696px;
}

.faq-section .accordion-item {
    border-radius: 8px;
    margin-bottom: 15px;
    border: 0;
    background-color: #F6F4F4;
    border: 1px solid #F6F4F4;
    padding: 16px;
}
.faq-section .accordion-item .accordion-header {
    border-radius: 0;
}
.faq-section .accordion-button,
.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgb(0,0,0, 0);
}
.faq-section .accordion-header .accordion-button {
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    padding: 0;
}
.faq-section .accordion-item .card-body {
    margin-top: 5px;
}

.faq-section .accordion-item .card-body p {
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    margin-bottom: 0;
}

.faq-section .accordion-button.collapsed,
.faq-section .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #802BE7;
}

.faq-section .accordion-button.collapsed::after {
    background: url("../images/svg/accordion_plus.svg");
}
.faq-section .accordion-button:not(.collapsed)::after {  
    background: url("../images/svg/accordion_minus.svg");
}
.faq-section .accordion-button.collapsed::after,
.faq-section .accordion-button:not(.collapsed)::after {
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: center;
}

.faq-section .accordion .accordion-link {
    text-decoration: underline;
    /* color: #802BE7; */
}

.logo-dots {
    max-width: 217px;
    margin: 0 auto 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.logo-dots .logo-dot {
    height: 64px;
    width: 64px;
    border-radius: 50%;
}

.logo-dots .logo-dot.red-dot {
    background-color: #E81A65;
}
.logo-dots .logo-dot.blue-dot {
    background-color: #3FB8E8;
}

.logo-dots .logo-dot.purple-dot {
    background: linear-gradient(270deg, #7462F4 0.01%, #7462F4 100%);
    position: absolute;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.logo-dots .logo-dot.purple-dot .logo-dots-text {
    font-family: "IBM-arabic-medium";
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 0;
    position: absolute;
    bottom: -100%;
    transition: all 0.5s ease;
}

.logo-dots .logo-dot.purple-dot.isExtended {
    width: 220px;
    height: 66px;
    border-radius: 33px;
    cursor: pointer;
}
.logo-dots .logo-dot.purple-dot .logo-dots-text.show-text {
    bottom: 33%;
}

/* footer */
footer {
    background-color: #802BE7;
    padding: 92px 55px 25px;
}

footer .footer-content {
    max-width: 1615px;
    margin: 0 auto;
}

footer .footer-row2 {
    margin-top: 65px;
}

footer .footer-title {
    font-family: "SF-light";
    font-size: 14px;
    font-weight: 100;
    line-height: 18px;
    letter-spacing: 0em;
    color: #EFEFF1;
    text-align: right;
    margin-bottom: 15px;
}

footer .footer-list {
    margin-bottom: 0;
}

footer .footer-list .footer-item:last-child {
    margin-top: 14px;
}

footer .footer-list .footer-item {
    font-family: "SF-medium", ui-sans-serif, system-ui, Helvetica, Arial, "Noto Sans", sans-serif, Symbol;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0em;
    color: #FFFFFF;
    text-align: right;
}


footer .down-app-title {
    max-width: 335px;
    font-family: "SF-medium", ui-sans-serif, system-ui, Helvetica, Arial, "Noto Sans", sans-serif, Symbol;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: center;
    color: #F2F2F2;
    margin-bottom: 20px;
}

footer .info-content {
    max-width: 335px;
    margin-right: auto;
}

footer .stores-content {
    max-width: 335px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

footer .stores-content .img-content {
    display: inline-block;
}

footer .social-media {
    display: flex;
    width: 335px;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 0;
}

footer .social-media .social-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: #D6CAE41A;
    border-radius: 50%;
}

footer .copy-right {
    margin-top: 52px;
}

footer .copy-right p {
    font-family: "SF-light";
    font-weight: 300;
    font-size: 11px;
    line-height: 15px;
    font-weight: 0;
    letter-spacing: 0em;
    color: #EFEFF1;
    margin-bottom: 0;
}

/* media */
@media (max-width: 1299px) {
    .testimon .testimon-traders-content {
        margin-top: 20px;
        gap: 20px;
    }
}
@media (max-width: 1199px) {
    .cursor-content {
        margin: 0px 20px;
    }
    .testimon .testimon-content {
        padding: 0 25px;
    }
    .faq-section .faq-section-card {
        padding: 20px 35px;
    }
    .faq-section-card .col-img .img-content {
        width: 100%;
        max-width: 490px;
    }
    footer {
        padding: 40px 15px;
    }
    footer .footer-row2 {
        margin-top: 37px;
    }
}

@media (max-width: 991px) {
    .header-video-content .header-video {
        height: 420px;
    }
    .features-content .f1 {
        margin-bottom: 100px;
    }
    .cursor {
        flex-direction: column;
        justify-content: space-between;
        padding: 50px 0;
        height: 550px;
    }
    .cursor .red-circle {
        top: -75%;
        left: -35%;
    }
    .cursor .blue-circle {
        bottom: -85%;
        right: -40%;
    }
    .cursor .cursor-elem:hover {
        transform: scale(1.2);
    }

    .linking .linking-steps {
        flex-direction: column;
        margin-top: 50px;
    }
    .linking .linking-steps .link-controller {
        flex-direction: column;
    }
    .linking-steps .link-controller .cards {
        margin-top: 7px;
        height: 645px;
        position: relative;
    }
    .linking-steps .link-controller .cards .linking-card {
        max-width: 100%;
        position: absolute;
        opacity: 0;
    }
    .linking-steps .link-controller .cards .linking-card .icon-content {
        height: 75px;
        width: 75px;
        margin-bottom: 15px;
    }
    .linking-steps .link-controller .cards .linking-card .icon-content .icon {
        height: 35px;
        width: 35px;
    }
    .linking-steps .link-controller .cards .linking-card .icon-content .icon img {
        width: 100%;
    }
    .linking-steps .link-controller .steps {
        justify-content: space-evenly;
        flex-direction: row;
        margin-bottom: 20px;
    }
    .linking .linking-steps .img-content {
        position: relative;
    }
    .linking .linking-steps .link-img1 .check-box {
        position: absolute;
        display: flex;
        width: 6%;
        height: 7%;
        left: 11.3%;
        opacity: 1;
        transform: scale(1);
        transition: all 0.3s ease;
    }
    .linking .linking-steps .link-img1 .check-box.c-1 {
        top: 20%;
    }
    .linking .linking-steps .link-img1 .check-box.c-2 {
        top: 42.7%;
    }
    .linking .linking-steps .link-img1 .check-box.c-3 {
        top: 65.3%;
    }
    .linking .linking-steps .link-img2 .check-box {
        position: absolute;
        display: flex;
        width: 6%;
        height: 7.5%;
        left: 25.7%;
        opacity: 1;
        transform: scale(1);
        transition: all 0.3s ease;
    }
    .linking .linking-steps .link-img2 .check-box.c-1 {
        top: 23.3%;
        left: 54.66%;
    }
    .linking .linking-steps .link-img2 .check-box.c-2 {
        top: 23.3%;
        left: 13.7%;
    }
    .linking .linking-steps .link-img2 .check-box.c-3 {
        top: 53.3%;
        left: 54.66%;
    }
    .linking .linking-steps .link-img2 .check-box.c-4 {
        top: 53.3%;
        left: 13.7%;
    }
    .linking .dots {
        width: 72px;
        top: 45%;
        left: 50%;
    }
    .linking .dots .dot {
        width: 10px;
        height: 10px;
    }
    .stores {
        margin-top: 100px;
    }
    .testimon .testimon-traders-content {
        grid-template-columns: auto;
    }
    .faq-section .faq-section-card {
        padding: 40px 25px;
        margin: 0 30px;
    }
    .faq-section .accordion {
        margin-top: 40px;
        max-width: 100%;
    }
    .faq-section-card .col-img .img-content {
        position: relative;
        margin: 20px auto 0;
    }
    footer {
        padding: 70px 30px 25px;
        text-align: center;
    }
    footer .info-content {
        max-width: 335px;
        margin: 0 auto;
    }
    footer .down-app-title {
        line-height: 30px;
        margin-bottom: 57px;
    }
    footer .down-app-title,
    footer .stores-content,
    footer .social-media {
        margin-bottom: 56px;
    }
    footer .footer-row2 {
        margin-top: 0;
    }
    footer .footer-list {
        max-width: 600px;
        margin: 0 auto 40px;
    }
    footer .copy-right {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .main-header .navbar {
        padding: 2.5rem 3rem;
    }
    .main-header .header-content .header-title {
        font-size: 36px;
    }
    .header-video-content {
        margin: 0 30px;
    }
    .header-video-content .header-video {
        height: 360px;
        max-width: 600px;
    }
    .header-video-content .bubble {
        height: 80px;
        width: 80px;
    }
    footer .copy-right {
        margin-top: 37px;
    }
}

@media (max-width: 567px) {
    .section-content .section-title {
        font-size: 28px;
        line-height: 60px;
    }
    .main-header .navbar {
        padding: 2.5rem;
    }
    .main-header .logo {
        width: 80px;
    }
    .main-header .logo img {
        width: 100%;
    }
    .main-header .header-content .header-title {
        font-size: 32px;
    }
    .header-video-content .header-video {
        height: 280px;
    }
    .header-stuff-img {
        width: 50px;
        height: 50px;
    }
    .header-stuff-img img {
        width: 100%;
    }
    .header-video-content .bubble {
        height: 50px;
        width: 50px;
    }
    .features {
        margin: 90px 55px;
    }
    .linking .linking-steps .link-controller {
        width: 400px;
    }
    .linking-steps .link-controller .cards {
        height: 550px;
    }
    .faq-section .faq-section-card {
        padding: 40px 20px;
        margin: 0 10px;
    }
}