@font-face {
    font-family: 'Somar';
    src: url('../Fonts/ArbFONTS-Somar-Regular.otf');
    font-weight: normal;
    font-style: normal;
    font-display: auto;
    font-display: block;
    font-display: swap;
    font-display: fallback;
    font-display: optional;
}

/* Light (300) */
@font-face {
    font-family: 'Somar';
    src: url('../Fonts/ArbFONTS-Somar-Light.otf');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Regular (400) */
@font-face {
    font-family: 'Somar';
    src: url('../Fonts/ArbFONTS-Somar-Regular.otf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Medium (500) */
@font-face {
    font-family: 'Somar';
    src: url('../Fonts/ArbFONTS-Somar-Medium.otf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* SemiBold (600) */
@font-face {
    font-family: 'Somar';
    src: url('../Fonts/ArbFONTS-Somar-SemiBold.otf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Bold (700) */
@font-face {
    font-family: 'Somar';
    src: url('../Fonts/ArbFONTS-Somar-Bold.otf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ExtraBold (800) */
@font-face {
    font-family: 'Somar';
    src: url('../Fonts/ArbFONTS-Somar-ExtraBold.otf');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Black (900) */
@font-face {
    font-family: 'Somar';
    src: url('../Fonts/ArbFONTS-Somar-Black.otf');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Somar', sans-serif;
    font-weight: 400;
    /* Regular (الافتراضي) */
}

.light-text {
    font-weight: 300;
    /* Light */
}

.medium-text {
    font-weight: 500;
    /* Medium */
}

.bold-text {
    font-weight: 700;
    /* Bold */
}

.extra-bold-text {
    font-weight: 800;
    /* ExtraBold */
}

:root {
    --Primary-Light: #ebedf9;
    --Primary-Light-hover: #e1e4f5;
    --Primary-Light-active: #c1c7eb;
    --Primary-Normal: #364abf;
    --PrimaryNormal-hover: #3143ac;
    --PrimaryNormal-active: #2b3b99;
    --Primary-Dark: #2b3b99;
    --Primary-Dark-active: #182156;
    --Primary-Darker: #131a43;


    --secondary-Light: #fee9eb;
    --secondary-Light-hover: #fedee1;
    --secondary-Light-active: #fdbac1;
    --secondary-Normal: #f92238;
    --secondaryNormal-hover: #e01f32;
    --secondaryNormal-active: #c71b2d;
    --secondary-Dark: #bb1a2a;
    --secondary-Dark-active: #951422;
    --secondary-Dark: #700f19;
    --secondary-Darker: #570c14;


    --neutral-Light: #f5f5f6;
    --neutral-Light-hover: #f0f0f1;
    --neutral-Light-active: #e1e1e2;
    --neutral-Normal: #9e9ea2;
    --neutralNormal-hover: #8e8e92;
    --neutralNormal-active: #7e7e82;
    --neutral-Dark: #77777a;
    --neutral-Dark-active: #5f5f61;
    --neutral-Dark: #474749;
    --neutral-Darker: #373739;
}

body {
    font-family: 'Somar', sans-serif;
}

/* .container {
    width: 90%;
    margin: 0 auto;

} */

.container {
  width: 90% !important;
  max-width: none !important;
  margin: 0 auto;
}



.Tital {
    text-align: center;
    font-size: 60px;
    font-weight: 800;
    color: black;
    padding-bottom: 53px;
    padding-top: 112px;
}

.TitalS {
    text-align: center;
    font-size: 76px;
    font-weight: 900;
    color: black;
    padding-bottom: 0.5rem;
}

.tait {
    padding-bottom: 2.5rem !important;
}

@media(max-width:991px) {
    .Tital.Tital {
        font-size: 35px;
        padding-top: 40px;
        padding-bottom: 19px;
    }

    .TitalS {
        padding-bottom: 0;
    }
}

/* loding */

#loading-screen {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    transition: opacity 0.5s ease-in-out;
}

/* dir ar and en */
[lang="ar"] #loading-screen {}

[lang="en"] #loading-screen {
    flex-direction: row-reverse;
}


/* dir ar and en */


.loader {
    transition: transform 1.5s ease-in-out, opacity 0.5s ease-in-out;
}


.loader.left {
    transform: translateX(-40px) rotate(-30deg);
    animation: moveToCenter 1.5s forwards;
}


.loader.right {
    transform: translateX(40px) rotate(30deg);
    animation: moveToCenter 1.5s forwards;
}


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


#loading-screen.hide-small-icons .loader {
    opacity: 0;
}


.logo-center {
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease-in-out;
}

.logo-center img {
    width: 100px;
}

#loading-screen.show-logo .logo-center {
    opacity: 1;
    animation: shineEffect 1s forwards, shadow-pulse 1.5s infinite;
}


@keyframes shineEffect {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(2);
    }

    100% {
        filter: brightness(1);
    }
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(var(--Primary-Light-active), 0.2);
        border-radius: 1rem;
    }

    100% {
        box-shadow: 0 0 0 35px rgba(var(--secondary-Light), 0);
        border-radius: 1rem;
    }
}

/* loding */

/* righet-scrool */
::-webkit-scrollbar {
    width: 7px;
    height: 2px;
    transition: background-color 0.5s ease-in-out;
}


::-webkit-scrollbar-thumb {
    background: var(--Primary-Light-active);
    border-radius: 2px;
}


::-webkit-scrollbar-thumb:hover {
    background-color: var(--Primary-Light-hover);
}

/* righet-scrool */



/* start header */
.header {}

.back-overlay-head {
    display: none;
}

@media(max-width:991px) {
    .back-overlay-head {
        display: block;
        position: absolute;
        bottom: 0px;
        width: 100%;
        z-index: 99;
        height: 85px;
    }
}



.hed {
    position: fixed;
    width: 100%;
    height: 75px;
    top: -1px;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

@media (max-width: 776px) {
    .hed {
        top: -5px;
    }
}

.scrolled {
    background: white;
}

.logo-colored {
    display: none;
}

.scrolled .logo-default {
    display: none;
}

.scrolled .logo-colored {
    display: block;
}

.scrolled .ho-link a {
    color: var(--Primary-Normal);
}

.scrolled .ho-link a::before,
.scrolled .ho-link .active::before {
    background: var(--secondary-Normal);
}

.change-en {
    color: white !important;
    transition: color 0.3s ease;
    transition: font-weight 0.3s ease;
}

.change-ens {
    transition: color 0.3s ease;
    transition: font-weight 0.3s ease;
}

.scrolled .change-en {
    color: var(--Primary-Normal) !important;
}

.en .change-en:hover {
    color: var(--secondaryNormal-hover) !important;
    font-weight: 700 !important;
}

.en .change-ens:hover {
    color: var(--secondaryNormal-hover) !important;
    font-weight: 700 !important;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    direction: ltr;
}

@media (max-width: 991px) {
    header {
        display: none;
    }

    .scrolled .change-en {
        color: #FFFFFF !important;
    }
}

header nav {
    display: flex;
    gap: 2rem;

}

header nav {
    transition: padding 0.3s ease-in-out;
}


.scrolled header nav {
    padding: 0rem !important;
}

[lang="en"] header {
    direction: rtl;
}




.ho-link a,
.ho-links a {
    position: relative;
    text-decoration: none;
    padding-bottom: 5px;
    font-size: 16px;
    font-weight: 300;
    transition: opacity 0.3s ease-in-out, font-weight 0.2s ease-in-out;
}

.ho-link a {
    color: var(--Primary-Light);
}

.ho-links a {
    color: var(--Primary-Normal);
}

.ho-link a:hover,
.ho-links a:hover {
    font-weight: 600;
}

.ho-link a::before,
.ho-link .active::before {
    content: "";
    position: absolute;
    background: var(--secondary-Normal);
    width: 8px;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 25px;
    transition: opacity 0.3s ease-in-out;
}

.ho-link a::before {
    opacity: 0;
}

.ho-link a:hover::before,
.ho-link .active::before {
    opacity: 1;
}

.ho-link a.active {
    font-weight: 600;
}

.download {
    background-color: var(--secondary-Normal);
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--Primary-Light);
    transition: background-color 0.5s ease;
}

.download:hover {
    background-color: var(--secondaryNormal-hover);
}

@media (max-width: 776px) {
    .download {
        padding: 5px;
    }
}

.mobile {
    display: none;
}

@media (max-width: 991px) {
    .mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0;
    }
}

#menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    top: 20px;
    right: 20px;
    z-index: 1001;
    color: #c1c7eb;
}

#menu-btn.hidden {
    display: none;
}

#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--Primary-Darker);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#mobile-menu.active {
    transform: translateX(0);
}

#close-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--secondary-Normal);
}

#mobile-menu a {
    font-size: 22px;
    text-decoration: none;
    color: #eee;
    font-weight: bold;
    border-bottom: 1px solid #ffffff1a;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    transition: color 0.5s ease;
}


#mobile-menu a:hover {
    color: var(--Primary-Light-active);
}

/* end header */

/* start header contenet */
.content {}


.content-tow {
    display: none;
    position: relative;
}

.content-tow .text-resp h1 {
    font-size: 49px;
    text-align: right;
    font-weight: 700;
    color: #ffff;
    line-height: 120%;
    margin-bottom: 10px;
}

.content-tow .text-resp p {
    font-size: 1rem;
    color: #E1E4F5;
    text-align: right;
    margin-bottom: 1.5rem;
}

.link-responsive {
    background: #F92238;
    width: fit-content;
    margin-right: 0;
    margin-left: auto;
    padding: 12px 16px;
    border-radius: 10px;
    color: #ffffff;
    margin-bottom: 1rem;
}

@media(max-width:991px) {


    .content-tow {
        display: block;
    }



    .content-mobile {
        display: block;
    }

    .content-tow .text-resp h1 {
        width: 50%;
        margin-left: auto;
        margin-right: 0;
    }


}

@media(max-width:640px) {
    .content-tow .text-resp h1 {
        width: auto;
    }
}

[lang="en"] .content-tow .text-resp h1,
[lang="en"] .content-tow .text-resp p {
    text-align: left !important;
    margin-right: auto !important;
    margin-left: 0 !important;
}

[lang="en"] .link-responsive {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.content .box .screen-app {
    display: flex;
    justify-content: end;
    margin: 0 3rem 0 auto;
    height: 600px;
}

@media (max-width: 1200px) {
    .content .box .screen-app {
        margin: 0 2rem 0 auto;
        height: 550px;
    }
}

@media (max-width: 991px) {
    .content .box .screen-app {
        justify-content: center;
        height: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .content .box .screen-app {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .content .box .screen-app {
        height: 300px;
        margin-top: 5rem;
    }
}

@media (max-width: 400px) {
    .content .box .screen-app {
        margin-top: 3rem;
    }
}

@media (max-width: 300px) {
    .content .box .screen-app {
        height: 200px;
        margin-top: 2rem;
    }
}




@media(max-width:991px) {
    .content {
        display: none;
    }
}

.content .box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

@media(max-width:991px) {

    .content .box {
        grid-template-columns: repeat(1, 1fr);
        padding-top: 2rem;
    }
}


/*order the en and ar*/


[lang="en"] .screen-app {
    order: 3;
}

[lang="en"] .text {
    order: 2;
}


[lang="ar"] .screen-app {
    order: 2;
}

[lang="ar"] .text {
    order: 1;
}

.screen-app+.text {
    padding-top: 2.5rem;
}

@media (max-width: 991px) {

    .screen-app,
    [lang="ar"] .screen-app,
    [lang="en"] .screen-app {
        order: 1 !important;
    }

    .text,
    [lang="ar"] .text,
    [lang="en"] .text {
        order: 2 !important;
    }

    .screen-app+.text {
        padding-top: 0;
    }
}


/* order the en and ar */


.content .box .screen-app img {}

.content .box .text h1 {
    color: var(--Primary-Light);
    font-size: 61px;
    font-weight: 900;
    max-width: 400px;
    text-wrap: balance;
}

@media(max-width:991px) {
    .content .box .text h1 {
        text-align: center;
        max-width: 100%;
        font-size: 40px;
    }
}



.content .box .text p {
    color: var(--Primary-Light);
    font-size: 20px;
    font-weight: 500;
    max-width: 300px;
    margin: 24px 0 24px 0;
    text-wrap: balance;
}

.content .box .text p.pag-p {
    color: var(--Primary-Light);
    font-size: 20px;
    font-weight: 500;
    margin: 0px 0 0 0;
}

@media(max-width:991px) {
    .content .box .text p {
        font-size: 16px;
        text-align: center;
        margin: 10px 0 0 0;
        max-width: 100%;
    }
}


.content .box .text .dow-app {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: end;
    margin: 20px 0 0 auto;
    border: 1px solid var(--Primary-Light);
    width: fit-content;
    padding: 8px;
    border-radius: 16px;
}

.content .box .text .dow-app {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--Primary-Light);
    width: fit-content;
    padding: 8px;
    border-radius: 16px;
    margin-top: 24px;
}

/* download app ar and en */
[lang="ar"] .content .box .text .dow-app {
    margin-right: 0;
    margin-left: auto;
    justify-content: flex-start;
    flex-direction: row-reverse;
}


[lang="en"] .content .box .text .dow-app {
    margin-left: 0;
    margin-right: auto;
    justify-content: flex-end;
}

/* download app ar and en */


@media(max-width:991px) {
    .content .box .text .dow-app {
        display: none;
    }
}

.content .box .text .dow-app2 {
    display: none;
}

@media(max-width:991px) {
    .content .box .text .dow-app2 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .content .box .text .dow-app2 img {
        width: 5rem;
        margin: 10px 0;
        transition: opacity 0.2s ease-in;
        cursor: pointer;
    }

    .content .box .text .dow-app2 img:hover {
        opacity: 0.8;
    }
}

.content .box .text h6 {
    font-size: 25px;
    color: var(--Primary-Light);
    font-weight: 700;
    text-align: right;
}

.content .box .text img {}



/* end header contenet */


/* services */
/* services */
.services {
    margin: 0 auto;
    padding: 5rem 0;
    overflow: hidden;
}

/* RTL styles for Arabic */
.services.rtl .card .box,
.services.rtl .card-highlight {
    text-align: right;
}

/* LTR styles for English */
.services.ltr .card .box,
.services.ltr .card-highlight {
    text-align: left;
}

.serv-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Regular Cards */
.card {
    display: grid;
    gap: 1.5rem;
}

.boutton-img {
    display: flex;
    align-items: flex-end;
}

.card .box {
    background: #EAECF9;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column-reverse;
}

.card h2 {
    font-size: 3.0625rem;
    color: #000000;
    padding: 16px 15px 0;
    font-weight: 700;
}

.card p {
    color: #474749;
    padding: 0 15px;
    font-size: 31px;
    line-height: 120%;
}

.card img {
    margin: 1rem auto 0;
}

.card img.sdad {
    margin: 1rem 0 0 0;
}

/* Highlighted Card */
.card-highlight {
    background: linear-gradient(180deg, #3143AC 10%, #2467FD 60%);
    border-radius: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
}

.card-highlight h2 {
    font-size: 3.0625rem;
    padding: 16px 15px 0;
    font-weight: 700;
}

.card-highlight p {
    font-size: 31px;
    line-height: 120%;
    opacity: 0.9;
    padding: 5px 15px 0;
    margin-bottom: 67px;
}

.card-highlight img {
    margin: 0rem auto 0;
    padding: 1rem 0px 0px 0px;
    border-radius: 16px;
    width: 90%;
    height: 80%;
    position: relative;
}

@media(max-width:991px) {
    .card-highlight img {
        height: auto;
    }
}

.back-highlight {
    background: #2B3B99;
    height: 100px;
    height: 65%;
    z-index: -1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0 2rem;
    border-radius: 1.5rem 1.5rem 0 0;
}

@media(max-width:600px) {
    .back-highlight {
        height: 290px;
    }
}


/* services */


/* start slder main */

.slider {
    margin: 10rem 0;
}



.swiper-slide {
    position: relative;
    height: 459px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 25px;
}


.slide-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

@media(max-width:991px) {
    .slider {
        margin: 5rem 0;
    }
}

.hero-swiper {
    width: 100%;
    height: 530px;
}

@media(max-width:991px) {
    .hero-swiper {
        height: 300px;
    }
}

.slide-content {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    color: white;
    text-align: right;
    max-width: 600px;
    z-index: 2;
}



.slide-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

@media(max-width:991px) {
    .slide-title {
        line-height: 0.5;
    }
}

.swiper-slide-active .slide-title {
    opacity: 1;
    transform: translateX(0);
}

.swiper-pagination {
    position: absolute;
    left: auto !important;
}

@media(max-width:991px) {
    .swiper-pagination {
        left: 0% !important;
    }
}

.swiper-pagination-bullet {
    background: var(--secondary-Normal) !important;
    opacity: 0.5 !important;
    width: 52px !important;
    height: 5px !important;
    border-radius: 5px !important;
}

@media(max-width:991px) {
    .swiper-pagination-bullet {
        width: 25px !important;
        height: 4px !important;
    }
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

span.cach {
    font-size: 50px;
    color: var(--secondary-Normal);
    font-weight: 700;
}

@media(max-width:991px) {
    span.cach {
        font-size: 20px;
    }
}

span.cach2 {
    font-size: 75px;
    font-weight: 700;
}

@media(max-width:991px) {
    span.cach2 {
        font-size: 25px;
        line-height: 1;
    }
}



.swiper-pagination-horizontal {
    top: 2.125rem !important;
    max-width: 100% !important;
}

.swiper-pagination-bullet {
    background: #E1E1E2 !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-Normal) !important;
}

.swiper {
    position: relative;
}

.swiper-pagination {
    position: absolute;
    bottom: 20px !important;
    left: 16% !important;
    transform: translateX(-50%);
    width: auto !important;
    display: flex;
    gap: 5px;
    justify-content: end;
    padding: 0 2rem;
    align-items: flex-start;
}

@media(max-width:1300px) {
    .swiper-pagination {
        left: 0;
    }
}

@media(max-width:1200px) {
    .swiper-pagination {}
}

@media(max-width:991px) {
    .swiper-pagination {
        display: none;
    }
}

/* start slder main */

/* advantages applection */

.advantages {
    margin: 5rem auto;
}

.box-app .flex-app {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (max-width: 991px) {
    .box-app .flex-app {
        flex-direction: column;
    }
}

/* Card Styles */
.cardd {
    display: flex;
    background: linear-gradient(40deg, #BDC6FF 0%, #EAECF9 15%, #FFFFFF 40%);
    border: 2px solid #C1C7EB;
    border-radius: 24px;
    flex: 1;
    justify-content: space-between;
}

.cardd.large {
    flex: 1.5;
}

@media (max-width: 991px) {
    .cardd {
        flex-direction: column;
    }

    .cardd.large {
        flex: 1;
    }
}

.app-text {
    display: block;
    padding: 1.5rem;
}

.app-text .right-icone {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;

}

.app-width {
    width: 50%;
}

@media(max-width:1200px) {
    .app-width {
        width: auto;
    }
}

@media(max-width:991px) {
    .app-width {
        width: auto;
    }
}

.app-widths {
    width: 55%;
}

@media(max-width:1200px) {
    .app-widths {
        width: auto;
    }
}

@media(max-width:991px) {
    .app-widths {
        width: auto;
    }
}

.widthe {
    width: 50%;
}

@media(max-width:991px) {
    .widthe {
        width: auto;
    }
}

.app-text h2 {
    font-size: 60px;
    font-weight: 700;
    color: #202C73;
    margin-bottom: 1rem;
    line-height: 120%;
}

.app-text h2 span {
    display: block;
}

.app-text p {
    color: var(--PrimaryNormal-active);
    font-size: 39px;
    font-weight: 400;
    margin-bottom: 5.0625rem;
    line-height: 120%;
}

@media (max-width: 991px) {
    .app-text h2 {
        font-size: 35px;
    }

    .app-text h2 span {
        display: inline;
    }

    .app-text p {
        font-size: 30px;
        margin-bottom: auto;
    }
}

.offline {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}



@media (max-width: 991px) {
    .offline {
        align-items: center;
        justify-content: start;
    }

    .cardd.large .offline {
        display: block;
        margin: 0 auto;
    }

    .cardd.large .off-mob {
        display: block;
        margin: 0;
    }
}

.offline img {
    padding-left: 1rem;
    height: 80%;
    object-fit: fill;
}

@media (max-width: 991px) {
    .offline img {
        padding-left: 0.9rem;
    }
}




/* advantages */

/* absher */
.absher {
    background-color: #F4F5F6;
    border-radius: 24px;
    margin: 10.25rem auto;
    display: block;
    padding: 3rem 0 1.9375rem 0;
}

@media(max-width:991px) {
    .absher {
        padding: 1rem 0.5rem;
        margin: 3rem auto 1.9375rem auto;
    }
}


.absher .earth {
    max-width: 100%;
    max-width: 750px;
    height: auto;
    aspect-ratio: 557 / 290;
    margin: 0 auto -60px;
    z-index: -1;
    position: relative;

}



@media (max-width: 991px) {
    .absher .earth {
        max-width: 100%;
        margin: 0 auto -30px;
    }

}



@media(max-width:991px) {
    .absher h1 {
        font-size: 25px;
    }
}

.absher p {
    font-size: 49px;
    font-weight: 400;
    text-align: center;
    margin-bottom: -20px;
}

@media(max-width:991px) {
    .absher p {
        font-size: 25px;
        margin-bottom: 0;
    }
}


.absher img {
    display: block;
    margin: 0 auto;
    transition: opacity 0.3s ease-in-out;
}

.absher img:hover {
    opacity: 0.8;
}

@media(max-width:991px) {
    .absher a img {
        display: block;
        margin: 0 auto;
        width: 5rem;
    }

}

.absher .dow-app2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

/* absher */

/* footer */
/* General Footer Styles */
.footer {
    background-color: #131626;
    padding: 6rem 0 3rem 0;
    text-align: center;
}

.footer-container {
    margin: 0 auto;
    padding: 0 20px;
}

/* .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
} */

 .footer-grid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
}

.footer-section {
    margin-bottom: 2rem;

}

.footer-section h5 {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    color: #9E9EA2;
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9E9EA2;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    color: #e1e1e2;
}

.download-app {
    border: 2px solid #5F5F61;
    padding: 8px 16px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.download-app h6 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: justify;
    max-width: 60px;
}

.logo-fo p {
    font-weight: 400 !important;
}

.logo-fo img {
    display: block;
}

@media(max-width:991px) {
    .logo-fo img {
        /* margin: 0 auto; */
    }

    .download-app {
        flex-direction: row-reverse;
        width: 100%;
        justify-content: flex-end;
        padding: 8px;
    }

    .footer-section {
        text-align: justify !important;
    }

    .download-app h6 {
        max-width: 100%;
    }
}

.logo-section {
    text-align: justify;
}

.logo-fo p {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #E1E1E2;
    padding: 10px 0;
}

@media(max-width:991px) {
    .logo-fo p {
        /* text-align: center; */
    }
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: inherit;
    gap: 1rem;
}

@media(max-width:991px) {
    .social-icons {
        /* justify-content: center; */
    }
}

.social-icons i {
    color: #e1e1e2;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #9E9EA2;
}

.social-icons h6 {
    color: #E1E1E2;
    font-size: 1.25rem;
    font-weight: 400;
}


.footer-bottom {
    background-color: #373739;
    padding: 1rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media(max-width:700px) {
    .footer-bottom-content {
        flex-direction: column-reverse;
        display: flex;

    }
}

.footer-bottom-content a {
    color: #e1e1e2;
    text-decoration: none;
    width: fit-content;
    text-align: left;
    transition: color 0.3s ease-in-out;

}

@media(max-width:700px) {
    .footer-bottom-content a {
        margin-bottom: 1rem;

    }
}

.footer-bottom-content a:hover {
    color: #9E9EA2;
}

.serve {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.serve span {
    color: #E1E1E2;
    font-size: 1.25rem;
    font-weight: 400;
}

/* footer */

/* about page */
.en {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.en .english {
    background: none;
    color: var(--Primary-Normal);
    font-size: 16px;
}



.compoBox {
    padding: 50px 0;
    margin: 2rem 0;
    background-color: #fff;
}

.compo-cash {
    height: 364px;
    background-size: cover;
    background-repeat: round;


}



@media (max-width: 991px) {
    .compo-cash {
        height: 250px;
        background-repeat: no-repeat;
    }
}

@media (max-width: 700px) {
    .compo-cash {}
}

.about-cash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
}

.text {
    flex: 1;
    color: white;
    z-index: 2;
    /* text-align: right; */
    margin-bottom: 2rem;

}

.Head-titile {
    font-size: 36px;
    font-weight: 900;
    margin-top: 0.5rem;
    text-align: right;
}

@media (max-width: 991px) {
    .Head-titile {
        font-size: 25px;
    }
}


@media (max-width: 768px) {
    .compo-cash {
        height: auto;
        padding: 1.5rem 0;
    }


}



/* card about */
.about-card {
    padding: 5rem 0;
}

.about-box {
    overflow: hidden;
}

.boxs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.box-img {
    border-radius: 32px;
    height: 510px;
    width: 100%;
    max-width: 590px;
    margin: 0 auto;
}

.box-img img {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    object-fit: fill;
}

.texts {
    flex: 1;
}

.about-box .texts h2 {
    font-size: 60px;
    font-weight: 700;
    color: #131A43;
    margin-bottom: 20px;
}


.about-box .texts p {
    font-size: 32px;
    font-weight: 400;
    color: #373739;
    line-height: 1.6;
    margin-bottom: 40px;
}

@media(max-width:991px) {
    .about-box .texts h2 {
        font-size: 30px;

    }

    .about-box .texts p {

        margin-bottom: 0px;
        font-size: 20px;
    }
        .boxs {
            align-items: flex-start;
        }
}

.texts .about-ppp {
    text-align: justify !important;
}

/*about-advaneges */
.about-advaneges {
    padding: 5rem 0;
}

.about-dis {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 49px;
    color: #131A43;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-text p {
    font-size: 25px;
    color: #5F5F61;
    text-align: justify;
}

.image-icone {
    display: flex;
    flex-direction: column;
}

.image-dis {
    display: flex;
    justify-content: flex-start !important;
    gap: 9px;
    margin-bottom: 16px;
}

.icones {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #EAECF9;
    border-radius: 16px;
    border: 1.2px solid #364ABF;
}

.img-texts h3 {
    text-align: justify;
    color: #364ABF;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 4px;
}

.img-texts p {
    font-size: 20px;
    color: #5F5F61;
    text-align: right;
}

@media (max-width: 1200px) {

    .boxs,
    .about-dis {
        gap: 3rem;
    }

    .texts h2,
    .about-text h2 {
        font-size: 48px;
    }

    .texts p,
    .about-text p {
        font-size: 28px;
    }

    .box-img {
        height: 450px;
        max-width: 500px;
    }
}


@media (max-width: 991px) {

    .boxs,
    .about-dis {
        gap: 2rem;
    }

    .texts h2,
    .about-text h2 {
        font-size: 36px;
    }

    .texts p,
    .about-text p {
        font-size: 24px;
    }

    .box-img {
        height: 400px;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .about-advaneges {
        padding: 1rem 0;
    }

    .about-card {
        padding: 1rem 0;
    }

    .boxs,
    .about-dis {
        flex-direction: column;
        /* text-align: center; */
        gap: 2rem;
    }



    .texts h2,
    .about-text h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .texts p,
    .about-text p {
        font-size: 20px;
    }

    .box-img {
        height: 350px;
        max-width: 100%;
        order:-1;
    }


}


@media (max-width: 480px) {
    .about-advaneges {
        padding: 1rem 0;
    }

    .about-card {
        padding: 1rem 0;
    }

    .texts h2,
    .about-text h2 {
        font-size: 28px;
    }

    .texts p,
    .about-text p {
        font-size: 18px;
    }

    .box-img {
        height: 300px;
    }
}

/* about-advaneges */

/* card about page*/


/* Services page */
.srvices-pay {
    padding: 2rem 0;
}

.srvices-pay .serv-head {
    margin: 2rem 0;
}

.srvices-pay .serv-head h2 {
    color: #131A43;
    font-size: 76px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.srvices-pay .serv-head p {
    color: #131A43;
    font-size: 39px;
    font-weight: 400;
    width: 80%;
    line-height: 1.6;
}


@media (max-width: 1200px) {
    .srvices-pay .serv-head h2 {
        font-size: 60px;
    }

    .srvices-pay .serv-head p {
        font-size: 32px;
    }
}


@media (max-width: 991px) {
    .srvices-pay .serv-head h2 {
        font-size: 48px;
    }

    .srvices-pay .serv-head p {
        font-size: 28px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .srvices-pay .serv-head h2 {
        font-size: 36px;
    }

    .srvices-pay .serv-head p {
        font-size: 24px;
    }
}


@media (max-width: 480px) {
    .srvices-pay .serv-head h2 {
        font-size: 28px;
    }

    .srvices-pay .serv-head p {
        font-size: 20px;
    }
}


/* card services */
.serve-card {}

.serve-card .serv-diss {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    gap: 5rem;
    margin: 12.375rem 0;
}

.serve-card .serv-diss .imge {
    height: 450px;
    border-radius: 32px;
    flex: 1;
}

.serve-card .serv-diss .imge img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 32px;
}

.serve-card .serv-diss .serv-text {
    flex: 1;
    
}

.serve-card .serv-diss .serv-text h5 {
    color: #131A43;
    font-size: 61px;
    font-weight: 800;
    margin-bottom: 32px;
}

.serve-card .serv-diss .serv-text p {
    font-size: 31px;
    color: #373739;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .serve-card .serv-diss {
        gap: 3rem;
        margin: 7.375rem 0;
    }

    .serve-card .serv-diss .serv-text h5 {
        font-size: 48px;
    }

    .serve-card .serv-diss .serv-text p {
        font-size: 24px;
    }
}


@media (max-width: 991px) {
    .serve-card .serv-diss {
        flex-direction: column;
        gap: 2rem;
    }

    .serve-card .serv-diss .imge {
        max-width: 100%;

    }


    .serve-card .serv-diss .serv-text h5 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .serve-card .serv-diss .serv-text p {
        font-size: 20px;
    }

     .serve-card .serv-diss .serv-text {
            order: 1;
        }
}


@media (max-width: 768px) {
    .serve-card .serv-diss .serv-text h5 {
        font-size: 28px;
    }

    .serve-card .serv-diss .serv-text p {
        font-size: 18px;
    }
}

/* card services */
/* servcies page */

/* Marchant page */

.marchel-back {
    background: linear-gradient(to top, #EBEDF9 3%, #FFFFFF 40%);
    padding-bottom: 7.5rem;
}

.Marchant .marcant-head {
    margin: 2rem 0;
}

.Marchant .marcant-head h2 {
    color: #131A43;
    font-size: 76px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.Marchant .marcant-head p {
    color: #131A43;
    font-size: 39px;
    font-weight: 400;
    width: 80%;
    line-height: 1.6;
}

/* card 1*/

.Marchant .marchant-card {
    padding: 2rem 0;
}

.Marchant .marchant-card .march-diss {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.Marchant .marchant-card .march-diss .march-box {
    padding: 1rem;
    border-radius: 16px;

}

.Marchant .marchant-card .march-diss .march-box h3 {
    color: #131A43;
    font-size: 61px;
    font-weight: 700;
    margin: 1rem 0;
    line-height: 120%;
}

.march-box ul p::before {
    content: " . ";
    font-size: 60px;
    line-height: 0;
    font-weight: 300;

}

.Marchant .marchant-card .march-diss .march-box ul {}

.Marchant .marchant-card .march-diss .march-box ul li p {
    color: #373739;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.Marchant .marchant-card .march-diss .imga {
    height: 400px;
}

.Marchant .marchant-card .march-diss .imga img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: fill;
}


@media (max-width: 1200px) {
    .Marchant .marchant-card .march-diss {
        grid-template-columns: repeat(2, 1fr);
    }



    .Marchant .marchant-card .march-diss .march-box h3 {
        font-size: 48px;
    }

    .Marchant .marchant-card .march-diss .march-box ul li {
        font-size: 24px;
    }
}

@media (max-width: 991px) {


    .Marchant .marcant-head h2 {
        font-size: 45px;
    }

    .Marchant .marcant-head p {
        width: 100%;
        font-size: 25px;
    }

    .Marchant .marchant-card .march-diss {
        grid-template-columns: 1fr;
    }

    .Marchant .marchant-card .march-diss .march-box h3 {
        font-size: 36px;
    }

    .Marchant .marchant-card .march-diss .march-box ul li {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .Marchant .marchant-card .march-diss .imga {
        height: 300px;
    }

    .Marchant .marchant-card .march-diss .march-box h3 {
        font-size: 28px;
    }

    .Marchant .marchant-card .march-diss .march-box ul li {
        font-size: 18px;
    }
}

/* card 1*/

/* card 2 */

.marchel-serv {
    margin: 2.5rem 0;
}

.marchel-serv .march-grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.marchel-serv .march-grid-box .march-serv-box {
    border-radius: 12px;
    padding: 1rem;
}

.marchel-serv .march-grid-box .march-serv-box .man-img {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
}

.marchel-serv .march-grid-box .march-serv-box .man-img img {
    width: 100%;
    height: 100%;
    margin-bottom: 1rem;
}

.marchel-serv .march-grid-box .march-serv-box .marc-box-text {}

.marchel-serv .march-grid-box .march-serv-box .marc-box-text h4 {
    color: #131A43;
    font-size: 49px;
    font-weight: 700;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
    line-height: 120%;
}

.marchel-serv .march-grid-box .march-serv-box .marc-box-text p {
    color: #373739;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.5;
    line-height: 120%;
}

@media (max-width: 992px) {
    .marchel-serv .march-grid-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .marchel-serv .march-grid-box .march-serv-box .marc-box-text h4 {
        font-size: 36px;
    }

    .marchel-serv .march-grid-box .march-serv-box .marc-box-text p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .marchel-serv .march-grid-box .march-serv-box .marc-box-text h4 {
        font-size: 30px;
    }

    .marchel-serv .march-grid-box .march-serv-box .marc-box-text p {
        font-size: 18px;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .marchel-serv .march-grid-box {
        grid-template-columns: 1fr;
    }

    .marchel-serv .march-grid-box .march-serv-box .marc-box-text h4 {
        font-size: 24px;
        margin-bottom: 0.5rem;
    }

    .marchel-serv .march-grid-box .march-serv-box .marc-box-text p {
        font-size: 16px;
        line-height: 1.3;
    }
}

/* card 2 */

/* Application-features */
.Application-features {
    margin: 2.5rem 0;
}

.Application-features h1 {
    font-size: 75px;
    color: #131A43;
    font-weight: 700;
    margin-bottom: 40px;
}

.Application-features .Application-features-grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.Application-features .features-box {
    overflow: hidden;
}

.Application-features .features-box .features-img {
    background: linear-gradient(40deg, #BDC6FF 2%, #EAECF9 15%, #FFFFFF 40%);
    padding: 16px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 265px;
    max-width: 100%;
}

.Application-features .features-box .features-img img {
    width: 130px;
    height: 130px;
    object-fit: fill;
    max-width: 100%;
}

.Application-features .features-box .features-text {}

.Application-features .features-box .features-text h5 {
    color: #131A43;
    font-size: 49px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 36px;
    line-height: 120%;

}

.Application-features .features-box .features-text p {
    color: #373739;
    font-size: 31px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .Application-features .Application-features-grid-box {
        grid-template-columns: repeat(3, 1fr);
    }

    .Application-features .features-box .features-text h5 {
        font-size: 42px;
    }

    .Application-features .features-box .features-text p {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .Application-features h1 {
        font-size: 45px;
    }

    .Application-features .features-box .features-img {
        width: 100%;
    }

    .Application-features .Application-features-grid-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .Application-features .features-box .features-text h5 {
        font-size: 36px;
    }

    .Application-features .features-box .features-text p {
        font-size: 24px;
    }
}


@media (max-width: 768px) {
    .Application-features .Application-features-grid-box {
        grid-template-columns: 1fr;
    }

    .Application-features .features-box .features-text h5 {
        font-size: 30px;
    }

    .Application-features .features-box .features-text p {
        font-size: 20px;
    }
}

/* Application-features */

/* marchel-applecation */

.marchel-descrption {
    padding: 11.45rem 0;
}

.marchel-descrption .march-dis-box {
    border-radius: 32px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
}

.marchel-descrption .march-dis-text-box {
    padding: 0rem 1.5rem;
}

.marchel-descrption .march-dis-text-box .march-texts {
    line-height: 1.2;
}

.marchel-descrption .march-dis-text-box .march-texts h1 {
    font-size: 76px;
    color: #EAECF9;
    font-weight: 700;
}

.marchel-descrption .march-dis-text-box .march-texts p {
    color: #EAECF9;
    font-size: 39px;
    font-weight: 400;
    margin-bottom: 2rem;
}

.marchel-descrption .march-dis-text-box .downlode-app h6 {
    color: #EAECF9;
    font-size: 39px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.marchel-descrption .march-dis-text-box .downlode-app .app-march {
    display: flex;
    align-items: center;
    background: #fff;
    width: fit-content;
    padding: 1rem;
    gap: 1rem;
    border-radius: 1rem;
}

.marchel-descrption .march-dis-text-box .downlode-app .app-march img {
    transition: opacity 0.3s ease-in-out;
}

.marchel-descrption .march-dis-text-box .downlode-app .app-march img:hover {
    opacity: 0.9;
}


.marchel-descrption .march-dis-box.bg-merchant {
    background-image: url(../img/ourMerchant-B2Evfvsm.png);
    overflow: hidden;
}

.marchel-descrption .march-dis-box.bg-customer {
    background-image: url(../img/coustomr.png);
    overflow: hidden;
}

@media (max-width: 1200px) {
    .marchel-descrption .march-dis-text-box .march-texts h1 {
        font-size: 64px;
    }

    .marchel-descrption .march-dis-text-box .march-texts p {
        font-size: 32px;
        margin-bottom: 1rem;
    }

    .marchel-descrption .march-dis-text-box .downlode-app h6 {
        font-size: 32px;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 992px) {
    .marchel-descrption {
        padding: 3.45rem 0;
    }

    .marchel-descrption .march-dis-box {
        height: 300px;
    }

    .marchel-descrption .march-dis-text-box .march-texts h1 {
        font-size: 48px;
    }

    .marchel-descrption .march-dis-text-box .march-texts p {
        font-size: 24px;
    }

    .marchel-descrption .march-dis-text-box .downlode-app h6 {
        font-size: 24px;
    }

    .marchel-descrption .march-dis-text-box .downlode-app .app-march {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .marchel-descrption .march-dis-text-box .downlode-app .app-march img {
        width: 5rem;
    }
}

@media (max-width: 768px) {
    .marchel-descrption .march-dis-box {
        height: 350px;
    }

    .marchel-descrption .march-dis-text-box .march-texts h1 {
        font-size: 36px;
    }

    .marchel-descrption .march-dis-text-box .march-texts p {
        font-size: 20px;
    }

    .marchel-descrption .march-dis-text-box .downlode-app h6 {
        font-size: 20px;
    }

    .marchel-descrption .march-dis-text-box .downlode-app .app-march {
        padding: 0.5rem;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .marchel-descrption .march-dis-box {
        height: 200px;
    }

    .marchel-descrption .march-dis-text-box .march-texts h1 {
        font-size: 28px;
    }

    .marchel-descrption .march-dis-text-box .march-texts p {
        font-size: 16px;
    }

    .marchel-descrption .march-dis-text-box .downlode-app h6 {
        font-size: 16px;
    }

    .marchel-descrption .march-dis-text-box .downlode-app .app-march {
        padding: 0.5rem;
        gap: 0.5rem;
    }
}

/* marchel-applecation */

/* Marchant page */


/* contact-us page */
.contact-us {
    padding: 2rem 0;
}

.contact-us h1 {
    font-size: 61px;
    color: #131A43;
    text-align: center;
    font-weight: 800;
    margin-bottom: 26px;
}

.contact-us .form-box {
    background: #EAECF9;
    padding: 24px;
    border-radius: 16px;
    width: 995px;
    margin: 0 auto;
}

.contact-us .form-box h2 {
    font-size: 39px;
    color: #131A43;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-right: 5px;
}

.contact-us .form-box form input,
.contact-us .form-box form textarea {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    outline: none;
    border: 1px solid #9E9EA2;
}

.contact-us .form-box form input::placeholder,
.contact-us .form-box form textarea::placeholder {
    font-size: 1.9375rem;
    color: #131A43;
    font-weight: 400;
}

@media(max-width:991px) {

    .contact-us .form-box form input::placeholder,
    .contact-us .form-box form textarea::placeholder {
        font-size: 1rem;
    }
}

.contact-us .form-box form input[type="number"] {
    -moz-appearance: textfield;
}

.contact-us .form-box form input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-us .form-box form #submit {
    background-color: var(--secondary-Normal);
    padding: 12px 16px;
    border-radius: 0.5rem;
    width: fit-content;
    color: #FEE9EB;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s ease;
    transition: background-color 0.3s ease;
}

.contact-us .form-box form #submit:hover {
    color: #fff;
    background-color: var(--secondaryNormal-hover);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-us .form-box {
        width: 90%;
    }
}

@media (max-width: 992px) {
    .contact-us h1 {
        font-size: 48px;
    }

    .contact-us .form-box h2 {
        font-size: 32px;
    }

    .contact-us .form-box {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .contact-us h1 {
        font-size: 36px;
    }

    .contact-us .form-box h2 {
        font-size: 28px;
    }

    .contact-us .form-box {
        width: 100%;
        padding: 16px;
    }

    .contact-us .form-box form input,
    .contact-us .form-box form textarea {
        padding: 0.75rem;
    }

    .contact-us .form-box form #submit {
        font-size: 18px;
        padding: 10px 14px;
    }
}

@media (max-width: 576px) {
    .contact-us h1 {
        font-size: 25px;
    }

    .contact-us .form-box h2 {
        font-size: 24px;
    }

    .contact-us .form-box {
        padding: 12px;
    }

    .contact-us .form-box form input,
    .contact-us .form-box form textarea {
        padding: 0.5rem;
    }

    .contact-us .form-box form #submit {
        font-size: 16px;
        padding: 8px 12px;
    }
}

/* contact-us page */


/* asked quastion page */
.asked-quastion {
    padding: 2rem;
    direction: rtl;
}


/* dir ar and en */
[lang="ar"] .asked-quastion .question-box h2 {
    flex-direction: row-reverse;
}

[lang="en"] .asked-quastion .question-box h2 {
    flex-direction: row-reverse;
}

[lang="en"] .asked-quastion {
    direction: ltr;
}

[lang="en"] .asked-quastion .question-box h2 .arrow {
    transform: rotate(-90deg);
}

.asked-quastion .question-box h2 .arrow.rotate {
    transform: rotate(0deg) !important;
}

/* dir ar and en */

.asked-quastion h1 {
    font-size: 61px;
    color: #131A43;
    font-weight: 700;
    margin-bottom: 26px;
    text-align: center;
}

.asked-quastion .asked-text {
    margin-bottom: 1rem;
}

.asked-quastion .question-box {
    background: #EAECF9;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
}

.asked-quastion .question-box h2 {
    font-size: 39px;
    color: #131A43;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.asked-quastion .question-box h2 .arrow {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
    object-fit: contain;
    transform: rotate(90deg);
}

.asked-quastion .question-box p {
    font-size: 1.5625rem;
    color: #202C73;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    margin: 0;
    padding: 0;
}

.asked-quastion .question-box p.show {
    max-height: 200px;
    padding-top: 1rem;
}

[lang="en"] .asked-quastion .question-box p.show {
    text-align: left;
}

[lang="ar"].asked-quastion .question-box p.show {
    text-align: right;
}



.asked-quastion .question-box h2 .arrow.rotate {
    transform: rotate(0deg);
}


@media (max-width: 1200px) {
    .asked-quastion h1 {
        font-size: 48px;
    }

    .asked-quastion .question-box h2 {
        font-size: 32px;
    }

    .asked-quastion .question-box p {
        font-size: 20px;
    }
}

@media (max-width: 992px) {

    .asked-quastion {
        padding: 1rem 0;
        text-align: right;
    }

    .asked-quastion h1 {
        font-size: 36px;
    }

    .asked-quastion .question-box h2 {
        font-size: 28px;
    }

    .asked-quastion .question-box p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .asked-quastion h1 {
        font-size: 28px;
    }

    .asked-quastion .question-box h2 {
        font-size: 24px;
    }

    .asked-quastion .question-box p {
        font-size: 16px;
    }

    .asked-quastion .question-box h2 .arrow {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .asked-quastion h1 {
        font-size: 24px;
    }

    .asked-quastion .question-box h2 {
        font-size: 20px;
    }

    .asked-quastion .question-box p {
        font-size: 14px;
    }

    .asked-quastion .question-box h2 .arrow {
        width: 10px;
        height: 10px;
    }
}

/* asked quastion page */

/* open an account page */
.open-account {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    margin: 12.3125rem auto;
}

.open-account .open-box {
    flex: 1 1 calc(50% - 1rem);
    max-width: 590px;
}

.open-account .open-box .open-card {
    border: 1px solid #3143AC;
    width: 100%;
    background: linear-gradient(to top, #EBEDF9 0%, #FFF 50%);
    padding: 2rem;
    border-radius: 32px;
}

.open-account .open-box .open-card h2 {
    color: #131A43;
    font-size: 4rem;
    text-align: right;
    font-weight: 700;
    margin-bottom: 1rem;
}

.open-account .open-box .open-card p {
    color: #364ABF;
    text-align: right;
    font-size: 1.9375rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.open-account .open-box .open-card a {
    background: var(--secondary-Normal);
    padding: 12px 16px;
    border-radius: 0.5rem;
    text-align: right;
    margin: 0 0 0 auto;
    font-size: 1.125rem;
    display: block;
    width: fit-content;
    color: #fff;
    transition: background-color 0.3s ease-in-out;
}

.open-account .open-box .open-card a:hover {
    background-color: var(--secondaryNormal-hover);
}




@media (max-width: 768px) {
    .open-account {
        margin: 4.3125rem auto;
    }

    .open-account .open-box {
        flex: 1 1 100%;
    }

    .open-account .open-box .open-card h2 {
        font-size: 1.5rem;
    }

    .open-account .open-box .open-card p {
        font-size: 1.1rem;
    }

    .open-account .open-box .open-card a {
        font-size: 0.8rem;

    }
}

/* open an account page */

/* introduction serve page */
.introduction {
    margin: 9.375rem auto;
    padding: 0 1rem;
}

.introduction .introu-box {
    text-align: right;
    padding: 2rem;
    background-color: #F5F5F6;
    border-radius: 1rem;
    margin: 0 auto;
    overflow: hidden;
}

.introduction .introu-box .intro-text {
    position: relative;
    margin-bottom: 5rem;
}

.introduction .introu-box .intro-text::before {
    content: "";
    border: 1px solid #BEBDB8;
    position: absolute;
    bottom: -40px;
    width: 100%;
}

.introduction .introu-box .intro-text .intro-text2 {
    margin-bottom: 1.5rem;
}

.introduction .introu-box .intro-text h1 {
    color: #131A43;
    font-size: 2.4375rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.introduction .introu-box .intro-text h2 {
    color: #131A43;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.introduction .introu-box .intro-text span::after,
.introduction .introu-box .intro-text h2::after {
    content: ": ";
}

.introduction .introu-box .intro-text p,
.introduction .introu-box p.condation,
.introduction .introu-box .intro-text .p-intro,
.introduction .introu-box .intro-text ul li {
    color: #131A43;
    font-size: 1.5625rem;
    font-weight: 700;
}

.introduction .introu-box .intro-text p::after,
.introduction .introu-box .intro-text .p-intro::after {
    content: ".";
}

.introduction .introu-box .intro-text ul li {
    margin-top: 10px;
    padding-right: 10px;
}

.introduction .introu-box .intro-text ul li::before,
.introduction .introu-box .intro-text ul li::after {
    content: "   .  ";
    font-size: 2rem;
}


@media (max-width: 1024px) {
    .introduction {
        margin: 5rem auto;
    }

    .introduction .introu-box {
        padding: 1.5rem;
    }

    .introduction .introu-box .intro-text h1 {
        font-size: 2rem;
    }

    .introduction .introu-box .intro-text h2 {
        font-size: 1.75rem;
    }

    .introduction .introu-box .intro-text p,
    .introduction .introu-box p.condation,
    .introduction .introu-box .intro-text .p-intro,
    .introduction .introu-box .intro-text ul li {
        font-size: 1.25rem;
    }

    .introduction .introu-box .intro-text ul li {
        padding-right: 0;
    }
}


@media (max-width: 768px) {
    .introduction {
        margin: 3rem auto;
    }

    .introduction .introu-box {
        padding: 1rem;
    }

    .introduction .introu-box .intro-text h1 {
        font-size: 1.75rem;
    }

    .introduction .introu-box .intro-text h2 {
        font-size: 1.5rem;
    }

    .introduction .introu-box .intro-text p,
    .introduction .introu-box p.condation,
    .introduction .introu-box .intro-text .p-intro,
    .introduction .introu-box .intro-text ul li {
        font-size: 1rem;
    }

    .introduction .introu-box .intro-text ul li::before,
    .introduction .introu-box .intro-text ul li::after {
        font-size: 1.5rem;
    }

    .introduction .introu-box .intro-text ul li {
        padding-right: 0;
    }
}

/* introduction serve page */


/* form-Merchant page */
.open-marchel {
    background-color: #F5F5F6;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: right;
    margin: 9.125rem auto;
}

.open-marchel h1 {
    color: #131A43;
    font-size: 2.4375rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.open-marchel>div {
    position: relative;
}

.open-marchel>div::before {
    content: "";
    border: 1px solid #BEBDB8;
    position: absolute;
    top: 4.2rem;
    width: 100%;
    left: 0;
}

.open-marchel form {
    overflow: hidden;
}

.open-marchel form .open-form-content {
    position: relative;
    margin-bottom: 3rem;
}

.open-marchel form .open-form-content::before {
    content: "";
    position: absolute;
    border: 1px solid #BEBDB8;
    width: 100%;
    left: 0;
    bottom: -2rem;
}

.open-marchel form h2 {
    color: #131A43;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.open-marchel form h3 {
    color: #131A43;
    font-size: 2.4375rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.open-marchel form .form-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 2rem 0;
}

.open-marchel form .form-input>div {
    display: block;
    flex-grow: 1;
}

.open-marchel form .form-input label {
    font-size: 25px;
    color: #131A43;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    padding-right: 0.5rem;
}

.open-marchel form .form-input input {
    width: 100%;
    padding: 1rem;
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #9E9EA2;
    outline: none;
    text-align: right;
    font-size: 1.5rem;
    font-weight: 400;
    color: #131A43;
}

.open-marchel form .form-input input::placeholder {
    color: #131A43;
    font-weight: 500;
    font-size: 25px;
}


.open-marchel form .form-input input[type="number"] {
    -moz-appearance: textfield;
}

.open-marchel form .form-input input[type="number"]::-webkit-outer-spin-button,
.open-marchel form .form-input input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.Agree-terms {
    display: flex;
    align-items: flex-start;
    justify-content: end;
    gap: 0.875rem;
}

.Agree-terms input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #364ABF;
}

.Agree-terms p {
    color: #131A43;
    font-size: 20px;
    font-weight: 400;
    text-align: right;
}

.open-marchel form input[type="submit"] {
    background: #364ABF;
    padding: 12px 16px;
    border-radius: 0.5rem;
    color: var(--secondary-Light);
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
    transition: background-color 0.5s ease-in-out;
}

.open-marchel form input[type="submit"]:hover {
    background-color: var(--PrimaryNormal-hover);
    color: #fff;
}


@media (max-width: 768px) {

    .open-marchel {
        margin: 2.125rem auto;
    }

    .open-marchel h1,
    .open-marchel form h2,
    .open-marchel form h3 {
        text-align: center;
    }

    .open-marchel form .form-input {
        flex-direction: column;
        gap: 1rem;
    }

    .open-marchel form .form-input label {
        font-size: 20px;
    }

    .open-marchel form .form-input input {}

    .open-marchel form .form-input input::placeholder {
        font-size: 20px;
    }
}


.text-danger {
    justify-content: end;
    text-align: end;
    height: auto;
    margin: auto;
    list-style: none;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    font-size: 13px;
}

/* form-Merchant page */
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    margin: 0 5rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}