/* Scrollbar Style */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #111F35;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #F63049;
    border-radius: 10px;
    border: 3px solid #111F35;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: lighten(#F63049, 20%);
}
* {
    scrollbar-width: thin;
    scrollbar-color: #F63049 #111F35;
}

/* Body */
body {
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    background-color: #111F35;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

/* Main Global & General */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #F63049;
}

/* Buttons */
.btn-st{
    outline: 0;
    border: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    background: #10863b;
    padding: 10px 40px;
    border-radius: 40px;
    text-align: center;
    color: #ffffff;
    transition: all 300ms ease-in-out;
    white-space: nowrap;
    overflow-wrap: break-word;
}

.grd-lft-dar{
    background: linear-gradient(to right, #111F35, #F63049);
    border: 0px solid ;
    box-shadow: 4px 4px 7px 3px #0000002f;
    background-size: 100% 100%;
    background-position: left center;
}
.grd-lft-dar:hover{
    background-size: 200% 100%;
    background-position: right center;
}

.rad-cen-dar{
    background: radial-gradient(circle, #111F35 20%, #F63049 100%);
    background-size: 100% 100%;
    background-position: left center;
}
.rad-cen-dar:hover{
    background-size: 150% 100%;
    background-position: right center;
}
.bord-gren{
    background: transparent;
    border: 1px solid #F63049;
}
.bord-gren:hover{
    background: #F63049;
}
.full-primary{
    background: #F63049;
    box-shadow: 0px 7px 7px 6px #0000007d;
}
.full-primary:hover{
    background: #1cd35f;
}
.pg-btn{
    padding: 16px 40px;
    font-size: 24px;
    font-weight: 400;
}
@media (max-width: 950px) {
    .pg-btn{
        font-size: 18px;
    }
}
/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    /* background: #00000034; */
    background: #111f3547;
}

.header .nav-container {
    max-width: 1500px;
    margin: auto;
    height: 100%;
    padding: 12px 20px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo a {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .logo img{
    width: 200px;
    height: auto;
}

.header .nav {
    display: flex;
    gap: 30px;
}

.header .nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 200;
    color: #ffffff;
    transition: all 0.2s ease;
}
.header .nav a.lnk {
    font-size: 18px;
}

.header .nav a:hover {
    color: #ffffff;
}

.header .nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header .lang {
    position: relative;
}

.header .lang-btn {
    background: transparent;
    border: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #dfdfdf;
    cursor: pointer;
}
.header .lang-btn i{
    font-size: 24px;
}
.header .lang-btn.txt {
    font-size: 14px;
}

.header .lang-dropdown {
    position: absolute;
    top: calc(100% + 24px);
    right: 50%;
    transform: translateX(50%);
    background: #141414;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    min-width: 80px;
}
.header .lang-dropdown:before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #141414;
}
.header .lang-dropdown:after {
    content: "";
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: calc(100%);
    left: 0px;
}

.header .lang-dropdown a {
    border-radius: 5px;
    padding: 7px 10px;
    text-decoration: none;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
}

.header .lang-dropdown a:hover {
    background: #1d1d1d;
}
.header .lang-dropdown a.act {
    color: #F63049;
}

.header .lang:hover .lang-dropdown {
    display: flex;
}

.header .menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.header .menu-btn span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s;
}
.header .menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header .menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.header .menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.header .mobile-actions {
    display: none;
}
.header .lic{
    pointer-events: none;
    padding: 0px 10px 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}
.header.scrolled .lic{
    opacity: 1;
}
.header .lic .not{
    width: fit-content;
    background: linear-gradient(to right, #F63049, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
}
.header.menu-active .lic{
    display: none !important;
}
.header.menu-active .nav-container{
    padding: 12px 20px 12px;
}
@media screen and (min-width: 951px) and (max-width: 1200px) {
    .header .logo img{
        width: 170px;
    }
    .header .nav{
        gap: 16px;
    }
    .header .nav a.lnk{
        font-size: 16px
    }
    .header .btn-st{
        padding: 10px 32px;
    }
    .header .nav-actions{
        gap: 8px;
    }
}
@media screen and (min-width: 951px) and (max-width: 1100px) {
    .header .nav a.lnk{
        font-size: 14px;
    }
    .header .btn-st{
        font-size: 14px;
    }
    .header .lang-btn i{
        display: none;
    }
}
@media screen and (min-width: 1201px) and (max-width: 1300px) {
    .header .nav{
        gap: 16px;
    }
    .header .nav a.lnk{
        font-size: 16px
    }
}
@media (max-width: 950px) {
    .header .logo img{
        width: 170px;
        height: auto;
    }
    .header.scrolled{
        background: #111f355f;
    }
    .header .nav {
        position: absolute;
        top: calc(100%);
        left: 0;
        width: 100%;
        background: #111f35;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 24px 16px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .header .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .header .menu-btn {
        display: flex;
    }

    .desktop-actions a,
    .desktop-actions .lang {
        display: none;
    }


    .mobile-actions .login,
    .mobile-actions .open-account {
        width: 100%;
    }

    .mobile-actions .lang-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav.active .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        padding-top: 20px;
        border-top: 1px solid #47474747;
        align-items: center;
    }

    .mobile-actions .lang {
        position: absolute;
        top: -51px;
        right: 70px;
    }

    .mobile-actions .lang-dropdown {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    .header .lic .not{
        font-size: 14px;
    }
}






/* Hero */
.hero-custom {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    /* background: linear-gradient(to bottom, #000000 5%, #10863bcf 15%, #000000 90%, transparent); */
    z-index: 1;
}
.hero-custom:before{
    content:"";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: linear-gradient(155deg, #d0275294 15%, #111F35 50%);
    z-index: -1;
}
.hero-custom__container {
    padding: 0 16px;
    position: relative;
    width: 100%;
    height: 100vh;
    max-width: 1500px;
    margin: 0 auto;
}


.hero-custom__slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-custom__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-custom__slide.hero-custom__slide--active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-custom__slide.hero-custom__slide--prev {
    transform: translateX(-100%);
}

.hero-custom__slide.hero-custom__slide--next {
    transform: translateX(100%);
}

.hero-custom__content {
    flex: 1;
    max-width: 700px;
    z-index: 3;
    padding-top: 2rem;
}

.hero-custom__subtitle {
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.hero-custom__slide--active .hero-custom__subtitle {
    opacity: 1;
    transform: translateY(0);
}

.hero-custom__title {
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.hero-custom .gradient {
    background: linear-gradient(to right, #F63049, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-custom__slide--active .hero-custom__title {
    opacity: 1;
    transform: translateY(0);
}

.hero-custom__cta {
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    border-radius: 40px;
    color: #ffffff;
    border: 2px solid #F63049;
    z-index: 10;
    background: linear-gradient(to top, #F63049, #000000 60%);
    border: 0px solid;
    box-shadow: 0px 0px 12px 10px #F63049;
    background-size: 100% 100%;
    background-position: left center;
    padding: 16px 40px;

    opacity: 0;
    transform: translateY(20px);
}

.hero-custom__slide--active .hero-custom__cta {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s,
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s,
                background 0.3s ease,
                box-shadow 0.3s ease;
}

.hero-custom__cta:hover {
    background-size: 100% 250%;
    background-position: right center;
}

.hero-custom__image-wrapper {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-custom__image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.9) translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-custom__slide--active .hero-custom__image {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.hero-custom__controls {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-custom__arrow {
    width: 75px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border: 0px;
    outline: 0px;
    transition: all 0.3s ease;
}

.hero-custom__arrow:hover {
opacity: 0.7;
}

.hero-custom__arrow:active {
    transform: translateY(0);
}

.hero-custom__arrow svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.hero-custom__pagination {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-custom__dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-custom__dot--active {
    background: #F63049;
    width: 30px;
    border-radius: 5px;
}

/* Mobile Styles */
@media (max-width: 950px) {
    .hero-custom__slide {
        flex-direction: column;
        justify-content: space-between;
        gap: 32px;
        padding: 140px 0 32px;
    }

    .hero-custom__content {
        max-width: 100%;
        text-align: center;
        padding-top: 0;
    }
    .hero-custom__subtitle{
    font-size: 16px;
    }

    .hero-custom__image-wrapper {
        position: static;
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .hero-custom__image {
        max-width: 100%;
    }

    .hero-custom__controls {
        bottom: 0px;
        right: 0px;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .hero-custom__arrow {
        width: 45px;
        height: 45px;
    }

    .hero-custom__pagination {
        bottom: 1.5rem;
        display: none;
    }

    .hero-custom__title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    .hero-custom__slide--active .hero-custom__cta{
    font-size: 18px;
    }
}

@media (min-width: 951) {
    .hero-custom__image-wrapper {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 50%;
        max-width: 700px;
    }
}

/* About */
.sec-about{
    width: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec-about .container{
    padding: 80px 16px 0px;
    max-width: 1500px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 40px;
}
.sec-about .lft{
    padding-top: 24px;
    min-width: 500px;
    flex: 1 1 500px;
}
.sec-about .lft .hed {
    padding-bottom: 24px;
}
.sec-about .lft .hed .title{
    font-size: 42px;
    font-weight: 300;
}
.sec-about .lft .desc{
    font-size: 24px;
    color: #616264;
}
.sec-about .lft .desc p{
    padding-bottom: 16px;
}
.sec-about .rgt{
    flex-grow: 1;
    flex: 1 1 450px;
    min-width: 450px;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #F63049da 0%, #111F35 60%);
}
.sec-about .rgt img{
    width: 100%;
    height: auto;
    display: block;
}
@media screen and (min-width: 951px) and (max-width: 1200px) {
    .sec-about .lft .desc{
        font-size: 18px;
    }
    .sec-about .lft {
        min-width: 450px;
        flex: 1 1 460px;
    }
}
@media screen and (min-width: 951px) and (max-width: 1050px) {
    .sec-about .rgt{
        flex: 1 1 400px;
        min-width: 400px;
    }
}
@media (max-width: 950px) {
    .sec-about .container{
        flex-flow: column nowrap;
    }
    .sec-about .lft .desc {
        font-size: 18px;
    }
    .sec-about .rgt,
    .sec-about .lft{
        min-width: 100%;
        flex: 1 1 300px;
        padding-top: 0px;
        text-align: center;
    }
}

/* Global Markets */
.global-mrkts{
    width: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at bottom center, #F63049 0%, #000000 70%);
}
.global-mrkts .container{
    width: 100%;
    max-width: 1500px;
    padding: 100px 16px 24px;
}
.global-mrkts .head{
    text-align: center;
    padding-bottom: 24px;
}
.global-mrkts .head .title{
    font-size: 50px;
    font-weight: 400;
}
.global-mrkts .head .subtitle{
    font-size: 24px;
    font-weight: 300;
}
.global-mrkts .cont{
    padding: 40px 0px;
}
.global-mrkts .row{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    gap: 40px;
}
.global-mrkts .row .card{
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid transparent ;
    transition: all 300ms ease;
}
.global-mrkts .row .card.unq,
.global-mrkts .row .card:hover{
    border: 1px solid #F63049 ;
    box-shadow: 3px 8px 10px 10px #000000a4;
}
.global-mrkts .row .card .tit{
    font-size: 32px;
    padding-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.global-mrkts .row .card p{
    font-size: 20px;
    line-height: 1.2;
    color: #616264;
}
.global-mrkts .row.first{
    padding-bottom: 40px;
}
.global-mrkts .row.first .card{
    width: calc((100% - 24px) / 2);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 16px;
}
.global-mrkts .row.first .card .lft{
    width: calc(60%);
    padding: 80px 0px 40px 40px;
    z-index: 100;
}
.global-mrkts .row.first .card .rgt{
    width: calc(40%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 40px;
}
.global-mrkts .row.first .card .rgt .img{
    position: relative;
    z-index: 1;
}
.global-mrkts .row.first .card .rgt .img:before{
    content: "";
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, #F63049da 0%, #000000 50%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.global-mrkts .row.first .card .rgt img{
    width: 200px;
    pointer-events: none;
}
.global-mrkts .row.second{
    padding-bottom: 40px;
}
.global-mrkts .row.second .card .top{
    padding: 130px 80px 0px 40px;
    position: relative;
    z-index: 1;
}
.global-mrkts .row.second .card .top .img{
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: -1;
}
.global-mrkts .row.second .card .top .img img{
    pointer-events: none;
    width: 150px;
}
.global-mrkts .row.second .card .bottom{
    padding: 0px 40px 40px;
}
.global-mrkts .row.second .card .top .img:before{
    content: "";
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, #F63049da 0%, #000000 50%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.global-mrkts .row.second .card .bottom{
    position: relative;
    z-index: 100;
}
.global-mrkts .cta-row{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
.global-mrkts .note{
    max-width: 1000px;
    margin: auto;
    padding: 16px;
    border: 1px solid #F630496c;
    border-radius: 10px;
    text-align: center;
    background-color: #000000c5;
    background: linear-gradient(35deg, #0000006c, #F63049);
    font-size: 14px;
}
.global-mrkts .note .icon{
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color:#F63049;
    border-radius: 50%;
    margin-right: 6px;
    animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    filter: drop-shadow(0 0 4px #F63049);
  }
  100% {
    filter: drop-shadow(0 0 14px #F63049);
  }
}
@media screen and (min-width: 951px) and (max-width: 1200px) {
    .global-mrkts .row{
        gap: 24px;
    }
    .global-mrkts .row.first{
        padding-bottom: 24px;
    }
    .global-mrkts .row .card p{
        font-size: 18px;
    }
    .global-mrkts .row .card .tit{
        font-size: 24px;
    }
    .global-mrkts .row.first .card .rgt img{
        width: 150px
    }
    .global-mrkts .row.second .card .top .img img{
        width: 140px;
    }
    .global-mrkts .row.second .card .top {
        padding: 130px 40px 0px 40px;
    }
}
@media (max-width: 950px){
    .global-mrkts .row{
        flex-flow: column nowrap;
    }
    .global-mrkts .row.first .card{
        width: 100%;
        flex-flow: column nowrap;
        padding: 40px 24px;
    }
    .global-mrkts .row.first .card .rgt{
        width: 100%;
        order: 1;
        padding: 0px;
        justify-content: center;
    }
    .global-mrkts .row.first .card .lft{
        width: 100%;
        order: 2;
        padding: 0px;
    }
    .global-mrkts .row.second .card{
        padding: 40px 24px;
    }
    .global-mrkts .row.second .card .top{
        padding: 0px;
    }
    .global-mrkts .row.second .card .bottom{
        padding: 0px;
    }
    .global-mrkts .row.second .card .top{
        display: flex;
        flex-flow: column nowrap;
    }
    .global-mrkts .row.second .card .top .img{
        position: relative;
        bottom: unset;
        right: unset;
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 30px 0px;
    }
    .global-mrkts .row.second .card .top .img img{
        width: 200px;
    }
    .global-mrkts .row.second .card .top .tit{
        order: 3;
    }
    .global-mrkts .row{
        gap: 24px;
    }
    .global-mrkts .row.first{
        padding-bottom: 24px;
    }
    .global-mrkts .head .title{
        font-size: 32px;
        line-height: 1.4;
    }
    .global-mrkts .head .subtitle{
        font-size: 18px;
    }
}

/* Platforms */
.platforms{
    width: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.platforms .container{
    width: 100%;
    max-width: 1350px;
    padding: 80px 16px 40px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    /* align-items: flex-end; */
    align-items: center;
}
.platforms .img-bx{
    position: relative;
    padding: 0px 40px;
    background: radial-gradient(circle at center, #F63049da 0%, #000000 60%);
}
.platforms .img-bx img{
    width: 400px;
    height: auto;
}
#platformImage {
    transition: opacity 300ms ease, transform 1s ease;
    opacity: 1;
    transform: scale(1);
}

#platformImage.fade-out {
    opacity: 0;
}
.platforms .card{
    padding: 0px;
    max-width: 800px;
    border-left: 0px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    height: fit-content;
}
.platforms .card .head .title{
    font-size: 50px;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.3;
    padding-bottom: 32px;
    background: linear-gradient(to left, #F63049, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.platforms .card .desc{
    font-size: 24px;
    color: #616264;
}
@media screen and (min-width: 951px) and (max-width: 1200px) {
    .platforms .card .head .title{
        font-size: 38px;
    }
    .platforms .card .desc{
        font-size: 18px;
    }
    .platforms .img-bx img{
        width: 350px;
    }
}
@media (max-width: 950px){
    .platforms .container{
        position: relative;
        flex-flow: column nowrap;
        z-index: 1;
        padding-top: 80px;
    }
    .platforms .card{
        border-left: 0px;
        z-index: 100;
        padding: 32px 0px 0px;
    }
    .platforms .img-bx{
        width: 100%;
        display: flex;
        justify-content: center;
        z-index: 1;
    }
    .platforms .img-bx img{
        width: calc(100% - 60px);
        max-width: 350px;
    }
    .platforms .card .head .title{
        font-size: 32px;
    }
    .platforms .card .desc{
        font-size: 18px;
    }
}

/* Accounts */
.accounts {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}
.accounts .container {
    width: 100%;
    max-width: 1500px;
    padding: 120px 16px;
}
.accounts .head{
    text-align: center;
}
.accounts .head .title{
    margin: auto;
    font-size: 50px;
    font-weight: 400;
    max-width: 900px;
    line-height: 1.3;
    padding-bottom: 40px;
}
.accounts .head .desc{
    font-size: 22px;
    max-width: 1100px;
    margin: auto;
    padding-bottom: 40px;
}
.accounts .cont {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.accounts .account-card {
    flex: 1;
    background: #000000;
    border: 1px solid #F63049;
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: flex 0.5s ease;
}

.accounts .account-card.active {
    flex: 3;
    border-bottom: 10px solid #F63049;
    background: linear-gradient(-45deg, #F63049ad, #000000 70%);
}

.accounts .card-inner {
    height: 100%;
    padding: 40px 40px 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 435px;
}

.accounts .card-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 10px;
    transition: all 200ms ease;
}
.accounts .account-card.active .card-title {
    font-size: 42px;
    font-weight: 500;
    width: fit-content;
    background: linear-gradient(to right, #F63049, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.accounts .card-details {
    opacity: 0;
    max-height: 0;
    transition: all 0.4s ease;
}

.accounts .account-card.active .card-details {
    opacity: 1;
    max-height: 300px;
}
.accounts .account-card .best-for{
    padding-top: 24px;
    color: #F63049;
    font-size: 24px;
}
.accounts .card-details p{
    font-weight: 300;
    line-height: 1.7;
}
.accounts .play-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #000000;
    color: #F63049;
    border: 1px solid #F63049;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 300ms ease-in-out;
}
.accounts .play-btn:hover {
    transform: scale(1.1);
    color: #fff;
    border-color: #fff;
}
.account-card.active .play-btn{
    display: none;
}

.accounts .learn-more {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(to left, #000000, #F63049);
    color: #ffffff;
    border: 1px solid #F63049;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}
@media screen and (min-width: 951px) and (max-width: 1200px) {
    .accounts .head .title{
        font-size: 32px;
    }
    .accounts .head .desc{
        font-size: 18px;
    }
    .accounts .card-inner {
        padding: 40px 24px 120px;
    }
    .accounts .account-card.active {
        flex: 2;
    }
}
@media (max-width: 950px) {
    .accounts .cont {
        flex-direction: column;
    }

    .accounts .account-card,
    .accounts .account-card.active {
        flex: unset;
    }
    .accounts .card-inner {
        min-height: unset;
    }
    .accounts .head .title{
        font-size: 32px;
        line-height: 1.4;
    }
    .accounts .head .desc{
        font-size: 18px;
        font-weight: 300;
    }
}

/* Education */
.education{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}
.education .container{
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 80px 16px;
}
.education .lft{
    max-width: 600px;
}
.education .head .title{
    font-size: 50px;
    font-weight: 400;
    max-width: 550px;
    line-height: 1.2;
    background: linear-gradient(to right, #F63049, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 12px;
}
.education .head .desc{
    font-size: 18px;
    font-weight: 200;
}
.education .lft .list{
    padding-top: 24px;
}
.education .lft .list .row{
    font-weight: 200;
    padding-bottom: 8px;
    display: flex;
    flex-flow: row nowrap;
    gap: 4px;

}
.education .lft .list .icn{
    position: relative;
}
.education .lft .list .icn img{
    width: 24px;
}

.education .rgt img{
    width: 500px;
}
@media screen and (min-width: 951px) and (max-width: 1200px) {
    .education .rgt img{
        width: 400px;
    }
    .education .head .title{
        font-size: 42px;
    }
}
@media screen and (min-width: 951px) and (max-width: 1100px) {
    .education .rgt img{
        width: 350px;
    }
    .education .head .title{
        font-size: 32px;
    }
}
@media (max-width: 950px) {
    .education .container{
        padding: 80px 16px;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }
    .education .lft{
        width: 100%;
        max-width: 100%;
    }
    .education .head{
        max-width: 600px;
        margin: auto;
    }
    .education .head .title{
        max-width: 100%;
        font-size: 32px;
        text-align: center;
    }
    .education .head .desc{
        text-align: center;
    }
    .education .rgt img{
        width: 100%;
        max-width: 450px;
    }
}


/* learning */
.learning {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.learning-container {
    padding: 80px 20px 120px;
    max-width: 1500px;
    overflow-x: hidden;
}

.learning-head {
    text-align: center;
    padding-bottom: 60px
}
.learning-title {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 12px;
}
.learning-subtitle {
    font-size: 22px;
    max-width: 750px;
    margin: auto;
}

/* Card */
.learning-card {
    display: flex;
    gap: 16px;
    background: linear-gradient(to top left, #F63049ea, #000000 65%);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.learning-card-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.learning-card-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.learning-card-title {
    width: fit-content;
    font-size: 28px;
    font-weight: 400;
    margin: 0;
    background: linear-gradient(to right, #F63049, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.learning-card-subtitle {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.2;
    color: #d3d3d3;
}

.learning-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.learning-card-description {
    font-size: 14px;
    font-weight: 200;
    color: #d3d3d3;
    margin: 0;
}

.learning-card-cta {
    outline: 0;
    border: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    background: linear-gradient(to left, #ffffff, #F63049);
    border: 0px solid;
    box-shadow: 4px 4px 7px 3px #0000002f;
    background-size: 100% 100%;
    background-position: left center;
    padding: 10px 40px;
    border-radius: 40px;
    text-align: center;
    color: #000000;
    transition: all 300ms ease-in-out;
    white-space: nowrap;
    overflow-wrap: break-word;
}

.learning-swiper-buttons {
    position: absolute;
    bottom: -70px;
    right: 0;
    display: flex;
    gap: 16px;
}

.learning-swiper-prev,
.learning-swiper-next {
    width: 44px;
    height: 44px;
    font-size: 24px;
    border-radius: 50%;
    background: #000000;
    border: 1px solid #F63049;
    color: #F63049;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.learning-swiper-prev i{
    transform: scaleX(-1);
}
.learning-swiper-prev:hover,
.learning-swiper-next:hover {
    background: #F63049;
    color: #fff;
}

.learning .swiper {
    overflow: visible;
}

.learning .swiper-slide {
    width: 750px;          
    transition: transform .35s ease, opacity .35s ease;
}

.learning .swiper-slide {
    opacity: 0.4;
}
.learning .swiper-slide-active {
    transform: scale(1.07);
    opacity: 1;
}
@media screen and (min-width: 951px) and (max-width: 1200px){
    .learning-title{
        font-size: 38px;
    }
}
@media (max-width: 950px) {
    .learning-title{
        font-size: 32px
    }
    .learning-subtitle{
        font-size: 18px;
    }
    .learning-container {
        padding: 80px 20px 120px;
    }
    .learning-card-img{
        align-self: center;
    }
    .learning-card-bottom,
    .learning-card{
        flex-flow: column nowrap;
    }
    .learning .swiper-slide {
        width: calc(100% - 32px);
    }
    .learning-card-subtitle{
        font-size: 18px;
    }
    .learning-card-details{
        gap: 24px;
    }
    .learning-card{
        gap: 24px;
    }
    .learning-card-bottom{
        gap: 32px;
    }
    .learning-swiper-buttons{
        bottom: -90px;
    }
}


/* Contact */
.contact {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background: radial-gradient(circle at top left,#F63049cb 0%,#000000 40%);
}

.contact .contact-container {
    padding: 80px 20px;
    width: 100%;
    max-width: 1500px;
    display: grid;
    grid-template-columns: 750px 1fr;
    gap: 60px;
}

.contact .contact-left {
    padding: 40px;
    border: 1px solid #F63049;
    border-radius: 32px;
    background: radial-gradient(circle at bottom left,#F63049 0%,#000000 70%);
}

.contact .contact-title {
    font-size: 50px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 400;
}

.contact .contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact .contact-row {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    margin-bottom: 20px;
}
.contact .contact-row.btns {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact .contact-field {
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
}

.contact .contact-field.contact-full {
    width: 100%;
}

.contact .contact-input {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #F63049;
    background: rgba(0, 0, 0, 0);
    outline: none;
    color: #ffffff;
    font-size: 16px;
    transition: all 300ms ease;
    font-family: Arial, sans-serif;
}

.contact .contact-input::placeholder {
    color: #d4d4d4ad;
}

.contact .contact-input:focus {
    border: 1px solid #F63049;
    box-shadow: 0 0 5px #F63049;
}

.contact .contact-code-select,
.contact .contact-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.contact .contact-code-select option,
.contact .contact-select option {
    background: #1a1a1a;
    color: #ffffff;
}

.contact .contact-phone-field {
    position: relative;
}

.contact .contact-phone-wrapper {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 10px;
}

.contact .contact-code-select {
    padding-right: 30px;
    background-size: 16px;
    background-position: right 8px center;
    font-size: 13px;
}

.contact .contact-phone-input {
    width: 100%;
}

.contact .contact-textarea {
    resize: none;
    min-height: 120px;
}

.contact .contact-error {
    color: #ff4444;
    font-size: 13px;
    margin-top: 5px;
    min-height: 18px;
}

.contact .contact-submit {
    padding: 16px 40px;
    width: 100%;
    max-width: 200px;
    font-size: 18px;
    cursor: pointer;
    color: #000000;
}


.contact .contact-submit:active {
    transform: translateY(0);
}

.contact .contact-response {
    margin-top: 20px;
}

.contact .contact-success {
    padding: 15px;
    background: rgba(22, 162, 73, 0.2);
    border: 1px solid #F63049;
    border-radius: 8px;
    color: #F63049;
    text-align: center;
}

.contact .contact-error-message {
    padding: 15px;
    background: rgba(255, 68, 68, 0.2);
    border: 1px solid #ff4444;
    border-radius: 8px;
    color: #ff4444;
    text-align: center;
}

.contact .contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.contact .contact-info-block {
    margin-bottom: 40px;
}

.contact .contact-info-title {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 400;
}

.contact .contact-info-text {
    font-size: 24px;
    font-weight: 200;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}
.contact .contact-info-text a{
    text-decoration: none;
    color: #ffff;
    cursor: pointer;
}



.contact .contact-label {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 4px;
    display: block;
    font-weight: 500;
}

.contact .contact-required {
    color: #F63049;
    margin-left: 2px;
}

.contact .contact-input-error {
    border-color: #ff4444 !important;
}

.contact-toast {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    z-index: 10000;
    transition: bottom 0.3s ease;
    min-width: 300px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.contact-toast-show {
    top: 100px;
}

.contact-toast-success {
    background: #F63049;
    border: 1px solid #F63049;
}

.contact-toast-error {
    background: #ff4444;
    border: 1px solid #ff4444;
}

.contact-card {
    background: linear-gradient(35deg, #F63049ad, #000000 70%);
    border: 1px solid #F63049ad;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    color: #ffffff;
    transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card .hed{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-card .icon {
    font-size: 28px;
}

.contact-card h3 {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.1;
}

.contact-card p {
    line-height: 1.5;
    font-size: 24px;
    font-weight: 200;
}
.contact-card p a{
    text-decoration: none;
    color: #ffff;
    cursor: pointer;
}

@media screen and (min-width: 951px) and (max-width: 1200px) {
    .contact .contact-container{
        grid-template-columns: 600px 1fr;
    }
    .contact .contact-info-title {
        font-size: 32px;
    }
    .contact-card .icon {
        font-size: 24px;
    }
    .contact-card h3 {
        font-size: 24px;
    }
    .contact-card p{
        font-size: 18px;
    }
}
@media (max-width: 950px) {
    .contact {
        padding: 60px 16px;
    }
    
    .contact .contact-title {
        font-size: 32px;
    }
    
    .contact .contact-row {
        flex-flow: column nowrap;
        gap: 15px;
    }
    
    .contact .contact-phone-wrapper {
        grid-template-columns: 100px 1fr;
    }
    .contact .contact-field{
        width: 100%;
    }
    
    .contact-toast {
        min-width: calc(100% - 40px);
        max-width: calc(100% - 40px);
    }

    .contact .contact-container {
        display: flex;
        flex-flow: column nowrap;
        gap: 40px;
        padding: 80px 0px;
    }
    .contact .contact-left {
        padding: 40px 16px;
        width: 100%;
    }
    
    .contact .contact-right {
        padding-top: 0;
        width: 100%;
    }
    .contact .contact-info-title{
        font-size: 32px;
    }
    .contact-card .icon,
    .contact-card h3 {
        font-size: 24px;
    }
    .contact-card p,
    .contact .contact-info-text{
        font-size: 18px;
        font-weight: 300;
    }
}

/* Footer */
.footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}
.footer .container{
    width: 1500px;
    padding: 24px 16px;
}
.footer .regulatory{
    border: 1px solid #F63049;
    border-radius: 20px;
    overflow: hidden;
    padding: 40px;
}
.footer .regulatory .tit{
    padding-bottom: 16px;
    font-size: 24px;
    font-weight: 300;
}
.footer .regulatory p{
    font-size: 18px;
    font-weight: 600;
    color: #7a7b7c;
}

.footer .social-row{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 60px 0px 40px;
    border-bottom: 1px solid #7a7b7c;
}
.footer .social-row .lft a img{
    width: 180px;
}
.footer .social-row .rgt{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 16px;
}
.footer .social-row .social{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 16px;
}
.footer .social-row .rgt .txt{
    font-size: 24px;
}
.footer .social-row .social .social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F63049;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 300ms ease;
}
.footer .social-row .social .social-circle:hover {
    color: #000000;
}

.footer .links{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 18px 0px 28px;
    gap: 6px;
}
.footer .links .lin{
    width: 1px;
    height: 20px;
    background: #acadad;
}
.footer .links a{
    text-decoration: none;
    color: #fff;
    transition: all 300ms ease;
}
.footer .links a:hover{
    color: #F63049;
}

.footer .copyright{
    text-align: center;
    color: #acadad;
}
@media (max-width: 950px) {
    .footer .social-row .rgt,
    .footer .social-row{
        flex-flow: column nowrap;
    }
    .footer .container{
        padding-bottom: 32px;
    }
    .footer .regulatory{
        padding: 40px 16px;
    }
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 9999;
    text-decoration: none;
    box-shadow:
        0 0 10px rgba(37, 211, 102, 0.8),
        0 0 20px rgba(37, 211, 102, 0.6),
        0 0 30px rgba(37, 211, 102, 0.4);

    animation: floaty 3s ease-in-out infinite, glowPulse 1.8s infinite;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    pointer-events: none;
}
.whatsapp-float.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    line-height: 1;
}

@keyframes floaty {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow:
        0 0 8px rgba(37, 211, 102, 0.6),
        0 0 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow:
        0 0 14px rgba(37, 211, 102, 0.9),
        0 0 28px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow:
        0 0 8px rgba(37, 211, 102, 0.6),
        0 0 16px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 28px;
        bottom: 16px;
        right: 16px;
    }
}


/* Arabic Version */
body.ar .header .lic .not{
    background: linear-gradient(to right, #ffffff, #F63049);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
body.ar .hero-custom .gradient {
    background: linear-gradient(to left, #F63049, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
body.ar .hero-custom:before{
    background: linear-gradient(215deg, #135c2d 15%, #000000 50%);
}
body.ar .hero-custom__controls{
    left: 3rem;
    right: unset;
}
body.ar .sechero .title{
    line-height: 1.2;
}
body.ar .accounts .learn-more{
    right: unset;
    left: 20px;
}
body.ar .accounts .play-btn{
    left: unset;
    right: 20px;
}
body.ar .global-mrkts .note {
    background: linear-gradient(-35deg, #0000006c, #F63049);
}
body.ar .global-mrkts .note .icon{
    margin-right: unset;
    margin-left: 6px;
}

body.ar .global-mrkts .row.second .card .top .img{
    right: unset;
    left: 0px;
}
body.ar .global-mrkts .row.second .card .top{
    padding: 130px 40px 0px 80px;
}
body.ar .global-mrkts .row.first .card .lft{
    padding: 80px 40px 40px 0px;
}
body.ar .global-mrkts .row.first .card .rgt{
    padding-right: unset;
    padding-left: 40px;
}

body.ar .learning-swiper-prev i{
    transform: scaleX(1);
}
body.ar .learning-swiper-next i{
    transform: scaleX(-1);
}
body.ar .learning-card {
    display: flex;
    gap: 16px;
    background: linear-gradient(to top right, #F63049ea, #000000 70%);
}

@media screen and (min-width: 951px) and (max-width: 1200px) {
    body.ar .contact .contact-info-text{
        font-size: 18px;
    }
}

@media (max-width: 950px) {
    body.ar .hero-custom__controls{
        right: unset;
        left: 0px;
    }
    body.ar .global-mrkts .row.second .card .top,
    body.ar .global-mrkts .row.first .card .rgt,
    body.ar .global-mrkts .row.first .card .lft{
        padding: 0px;
    }
    body.ar .global-mrkts .row.first .card .rgt .img:before{
        width: 350px;
    }
    body.ar .mobile-actions .lang {
        right: unset;
        left: 70px;
    }
}