* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Kurale", serif;
    overflow-x: hidden;
}
.landing .information .title.rtl-style {
    font-family: "Cairo", sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 2.3ch;
    direction: ltr;
    color: #0f1412;
    text-align: right;
}
.landing .information.end{
    align-items: end;
    width: 400px;
}
.landing .information .p.rtl-style {
    font-family: "Cairo", sans-serif;
    font-size: 16px;
    line-height: 2.7ch;
    direction: ltr;
    text-align: right;
}
.aboutUsP.rtl-style {
    width: 70%;

}
.video-h1.rtl-style {
    width: 50%;
    text-align: right;
}


.whatsapp-icon {
    position: fixed;
    width: 70px;
    top: 75%;
    z-index: 99999999999;
    right: 10px;
    cursor: pointer;
}
.whatsapp-icon:hover {
    animation-name: rotate;
    animation-duration: .4s;
    animation-iteration-count: 4;
    animation-delay: .2s;
    animation-fill-mode: backwards;
    animation-direction: alternate-reverse;
}
@keyframes rotate {
    0% {
        rotate: 20deg;
    }
    50% {
        rotate:  -20deg;
    }
    100% {
        rotate: 0deg;
    }
}
.landing {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #f6f6f4;
    padding: 20px 0 50px 0;
}
.container {
    width: 1150px;
    display: flex;
    flex-direction: column;
    margin: auto;
}
.header {
    width: 100%;
    z-index: 99;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .links  {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
    justify-content: left;   
    margin-left:30px ; 
}
.header .links.left {
    justify-content: right;
}
.header .links .icon {
    width: 30px;
    display: none;
    flex-wrap: wrap ;
    justify-content: flex-end;
    display: none;
}
.header .menu {
    display: none;
}
.header .links .icon span {
    background-color: white;
    margin: 2px 0;
}
.header .links .icon span:first-child {
    width: 100%;
    height: 2px;
}
.header .links .icon span:nth-child(2) {
    width: 70%;
    height: 2px;
    transition: 0.3s;
}
.header .links .icon span:last-child {
    width: 100%;
    height: 2px;
}

.header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 80px;
}

.header .ul {
    display: flex;
}
.header .ul li{
    margin: 0 20px;
}
.header .ul li a{
    color: rgba(0, 0, 0, 0.829);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: .3s;
}
.header .ul li a:hover {
    color: #b7e43b;
}
li, a {
    text-decoration: none;
    list-style: none;
}
.language-switch {
    margin-right: 15px;
}
.arabicBtn {
    border: none;
    background-color: transparent;
}
.arabicBtn:lang(en) {
    font-family: "Cairo", sans-serif;
}
.arabicBtn:lang(ar) {
    font-family: "Kurale", serif;
}
.contact {
    height: 35px;
    background-color: black;
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    font-size: 15px;
    font-weight: 600;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    transition: .3s;
}
.contact:hover {
    background-color: #ccfd42;
    color: black;
}
.row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.landing .information{
    width: 460px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.landing .information h1 {
    font-family: "Kurale", serif;
    font-size: 75px;
    line-height: 1.3ch;
    margin-bottom: 25px;
    color: black;
}
.landing .information p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.582);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 25px;
}
.landing .information p:lang(en) {
    font-family: "Kurale", serif;
    line-height: 2ch;
    font-size: 16px;
}
.join-us {
    background-color: black;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    position: relative;
    margin-right: 30px;
}
.join-us::before {
    content: '\2192';
    position: absolute;
    right: -30px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ccfd42;
    font-size: 23px;
}
.join-us a {
    padding: 10px 0px;
    color: white;
    font-size: 15px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


.numbers-container {
    width: 100%;
    position: relative;
    z-index: 1;
}
.icon-for-mobile {
    display: none;
}
.model {
    position: absolute;
    left: -150px;
    bottom: -6px;
}
.model.none {
    display: none;
}
.model img {
    width: 360px;
    transition: 2s;
    animation-name: modelTranslate;
    animation-duration: .7s;
    z-index: 2;
    
}
.model-for-mobile {
    display: none;
}
@keyframes modelTranslate {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
}
}

.numbers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: auto;
    padding: 30px 80px;
    background-color:#0f1412;
    color: white;
    border-radius: 63px;
    z-index: 99;
}
.numbers .lorem {
    text-align: center;
}
.model::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 30px;
    z-index: 999999999999999999;
    bottom: -24px;
    background-color: #0f1412;
}
.numbers h1 {
    margin-bottom: 8px;
    font-size: 40px;
}
.numbers p {
    font-size: 16px;
    width: 100%;
    color: rgba(255, 255, 255, 0.712);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}





.column {
    display: flex;
    flex-direction: column;
    align-items: end;
    position: relative;
}
.column .about-us-container {
    width: 200px;
    height: 100px;
    background-color: #ccfd42;
    transform: translateY(50px);
    border-radius: 15px;
    padding: 13px 36px;
    position: relative;
    margin-bottom: 54px;
}
.column .about-us-container p {
    font-size: 15px;
    margin-bottom: 9px;
}
.column .about-us-container .join-us {
    background-color: transparent;
    padding: 0;
    justify-content: start;
}
.column .about-us-container .join-us::before {
    content: '\2197';
    width: 27px;
    height: 27px;
    right: 0;
    font-size: 18px;
    background-color: black;
    color: #ccfd42;
}
.column .about-us-container .join-us a {
    font-weight: 600;
    color: black;
    padding: 0;
}
.column .about-us-container img {
    width: 70px;
    position: absolute;
    left: -44px;
    animation-name: rotate;
    animation-duration: .4s;
    animation-iteration-count: 4;
    animation-delay: .2s;
    animation-fill-mode: backwards;
    animation-direction: alternate-reverse;
}
@keyframes rotate {
    0% {
        rotate: 20deg;
    }
    50% {
        rotate:  -20deg;
    }
    100% {
        rotate: 0deg;
    }
}
.column .about-video {
    width: 450px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: end;
    background-color: #eaeaea;
    border-radius: 15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 10px 30px;
    animation-name: aboutVedio;
    animation-duration: 1s;
    margin-top: 50px;
}
.about-video-for-mpbile {
    display: none;
}

.about-video h1:lang(en) {
    font-weight: 500;
    font-size: 28px;
    margin-top: 20px;
    width: 70%;
    margin-right: -60px;
}
.about-video.block {
    z-index: 999999999;
    background-color: transparent;
}





.watch-demo {
    width: 220px;
    display: flex;
    align-items: center;
    margin: 30px 0 10px 0;
}
.watch-demo .icon , .watch-demo .videoX {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px 0 0;
    padding: 20px;
    background-color: #ccfd42;
    border-radius: 50%;
    box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.685);
    cursor: pointer;
    transition: .3s;
}
.video-container span {
    color: red;
}
.watch-demo .icon::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.432);
    border-radius: 50%;
    border-right: none;
    margin-left: 2.5px;
    margin-top: 2px;
}
.watch-demo .icon , .watch-demo .videoX:hover {
    color: white;
}
.watch-demo .icon i {
    margin-left: 5px;
    margin-top: 3px;
    color: #111f27;
}
.watch-demo .videoX {
    width: auto;
    height: auto;
    position: absolute;
    right: 0;
    top: 20px;
    padding: 10px 12px;
    font-size: 12px;
    z-index: 9999999;
}
.watch-demo .video-container {
    display: none;

    
}
.watch-demo .video-container.block {
    display: block;
    position: fixed;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    width: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 3000px rgba(0, 0, 0, 0.884);
    z-index: 9999999999;

}
.watch-demo video {
    margin: auto;
    width: 290px;
    height: 516px;
}

@media (max-width: 1200px) {
    .logo img{
        width: 60px;
    }
    .header .ul {
        justify-content: space-between;
    }
    .header .ul li {
        margin: 0 16px;
    }
    .header .ul li a{
        font-size: 12px;
    }
    .contact {
        height: 15px;
        padding: 13px 20px;
        font-size: 11px;
    }
    .container {
        width: 90%;
    }
    .landing .information {
        padding: 0;
        margin: 0;
        justify-content: end;
    }
    .landing .information.end{
        align-items: end;
        width: 300px;
        margin: 0 160px 0 0;
    }
    .header .ul li a.rtl-style{
        font-size: 12px;
    }
    .landing .information .title.rtl-style {
        font-size: 40px;
    }
    .landing .information .p.rtl-style {
        font-family: "Cairo", sans-serif;
        font-size: 11px;
        line-height: 2.7ch;
        direction: ltr;
        text-align: right;
        width: 100%;
    }

    .landing .information h1 {
        font-size: 50px;
    }
    .landing .information p {
        font-size: 13px;
        width: 70%;
    }
    .column .about-us-container {
        margin-bottom: 20px;
        height: 82px;
    }
    .column .about-us-container p {
        font-size: 12px;
        margin-bottom: 4px;
    }
    .column .about-us-container a {
        font-size: 14px;
    }
    .column .about-us-container .join-us::before {
        width: 20px;
        height: 20px;
        right: 40px;
    }
    .column .about-us-container img {
        width: 50px;
        left: -30px;
    }
    .join-us::before {
        width: 30px;
        height: 30px;
        font-size: 13px;
        right: -20px;
    }
    .join-us a {
        padding: 8px;
        font-size: 11px;
    }
    .watch-demo .icon {
        width: 10px;
        height: 10px;
        padding: 15px;
    }
    .watch-demo .icon i {
        font-size: 11px;
    }
    .watch-demo .icon::before {
        width: 45px;
        height: 45px;
    }
    .join-us {
        margin-bottom: 20px;
    }
    .model {
        left: -90px;
    }
    .watch-demo {
        width: 150px;
        margin-top: 20px;
    }
    .column .about-video {
        width: 370px;
        height: 150px;
    }
    .model img {
        width: 260px;
    }
    .about-video h1:lang(en) {
        margin-top: 10px;
        font-weight: 500;
        font-size: 18px;
        width: 47%;
        margin-right: 0px;
    }
    .about-video h1:lang(ar) {
        margin-top: 0px;
        font-weight: 500;
        font-size: 15px;
        width: 55%;
        margin-right: 0px;
    }
    .carts .cart h1:lang(ar) {
        font-size: 12px;
    }
    .choose-plan .carts .cart h1:lang(ar) {
        font-size: 16px;
    }
    .why-choose-us .carts .cart p {
        font-size: 11px;
        width: 200px;
    }
    .contact-us .container .map {
        margin-left: 10px;
    }
    .why-choose-us .carts {
        height: 300px;
    }
    .column .about-us-container .join-us::before {
        right: 10px;
    }
    .footer {
        padding: 0 0 40px 0;
        border-top: 0;
    }
    .footer .container {
        flex-direction: column;
    }
    .footer .container .col1 span {
        margin:20px 0 0px 0;
    }
    .footer .container .col2 {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 2fr));
        grid-gap: 10px;
    }
    .col3 {
        margin-left: 0;
    }
    .footer .container .col3 .join-us {
        margin: 20px 0;
    }
    .footer .container .col3 .join-us::before {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .col1 {
        margin-right: 80px;
    }
    .choose-plan .carts {
        flex-direction: column;
        padding: 0;
    }
    .choose-plan .carts .cart {
        width: 50%;
    }
    .choose-plan .carts .row {
        margin-bottom: 20px;
    }
    .watch-demo-sapn:lang(ar) {
        width: 100%;
        text-align: right;
        margin-left: 20px;
    }

    .why-you-choose-us .container .back .gym-coach.translate2 {
        left:30px;
        width: 300px;
        bottom: -50px;
    }
    .choose-plan .cart4::before {
        display: none;
    }
    .choose-plan .cart4 {
        margin: 0;
    }
    .choose-plan .carts .row .cart {
        margin: 0 10px;
    }
}
@media (max-width: 900px) {
    .container {
        width: 90%;
    }
}
@media (max-width: 900px) {
    .header {
        padding: 0 0 15px 0;
        width: 99.8%;
    }
    .header .logo {
        width: 70px;
    }
    .header .ul {
        display: none;
    }
    .header .links {
        flex-direction: row;
        width: auto;
    }
    .header .links .icon {
        display: flex;
        cursor: auto;
        padding: 20px 0;
    }
    .header .links .icon span {
        background-color: #ccfd42;
        background-color: black;

    }
    .contact {
        padding: 6px 20px;
        margin-right: 15px;
    }
    .header .menu {
        width: 100%;
        height: 100%;
        z-index: 9999999999999;
        position: fixed;
        display: flex;
        flex-direction: column;
        padding: 30px;
        top: 0;
        left: 0;
        transform: translateX(100%);
        transition: .7s;
        color: white;
        margin: 0;
        overflow-y: scroll;
        background-color: #111f27;
    }
    .header .menu.active {
        transform: translateX(0);
        background-color: black;
        z-index: 9999999999999999999999;
        overflow-y: scroll;
    }
    .header .menu .x:lang(ar){
        text-align: right;
    }
    .header .menu ul li:lang(ar) {
        text-align: right;
    }
    
    .header .menu .x {
        left: 20px;
        color: #b7e43b;
        top: 20px;
        font-size: 22px;
        font-weight: 900;
        cursor: auto;
        margin-bottom: 20px;
    }
    .header .menu ul {
        padding: 0;
        margin-top: 10px;
    }
    .header .menu ul li {
        margin-bottom: 35px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.199);
        padding-bottom: 17px;
    }
    .header .menu ul li a {
        color: #b7e43b;
        font-weight: 600;
        font-size: 18px;
    }
    .landing .header .container {
        flex-direction: row;
    }
    .landing .information .title {
        margin-top: 40px;
    }
    .landing .information .title.rtl-style {
        text-align: center;
    }
    .landing .row {
        flex-direction: column-reverse;
    }
    .landing .row .information {
        width: 100%;
        align-items: center;
    }
    .landing .information h1  {
        text-align: center;
        font-size: 55px;
        margin-bottom: 35px;
    }
    .landing .information p {
        display: none;
    }
    .model {
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 35px;
        border-radius: 50%;
        border: 2px solid #0000000a;
        width: 210px;
        height: 210px;
        background-color: rgba(0, 0, 0, 0.034);
        z-index: 2;
        
    }
    .model::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        border: 1px solid #ccfd42;
        z-index: -1;
        top: 6px;
    }
    .model::before{
        display: none;
    }
    .model img {
        top: 0;
        position: static;
        width: 230px;
        margin-top: -42px;
        margin-left: 27px;
        position: relative;
    }
    .model-for-laptop {
        display: none;
    }
    .model-for-mobile {
        display: flex;
    }
    .column .model .icon-for-mobile {
        display: flex;
        position: absolute;
        width: 46px;
        left: 0px;

        top: 50px;
        animation-name: icon2;
        animation-duration: 1s;
        animation-iteration-count: 1;
        animation-delay: 1s;
        animation-fill-mode: both;
    }
    @keyframes icon2 {
        50% {
            left: 200px;
            rotate: 20deg;
        }
        70% {
            left: 200px;
            rotate: -10deg;
        }
        100% {
            left: 200px;
            rotate: 15deg;
        }
    }
    .numbers-container {
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        margin-top: 25px;
        z-index: 1;
    }
    .numbers {
        padding: 10px;
        border-radius: 30px;
        margin-top: -24px;
        justify-content: center;
        align-items: center;
    }

    .numbers h1 {
        margin-bottom: 2px;
        font-size: 16px;
        text-align: center;
    }
    .numbers p {
        text-align: center;
        width: 90%;
        line-height: 1.9ch;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.418);
    }
    .column {
        align-items: center;
    }
    .column .about-us-container {
        display: none;
    }
    .column .about-video{
        display: none;
    }
    .about-video-for-mpbile{
        display: flex;
        position: absolute;
        right: 10px;
        top: 20%;
        transform: translateY(-50%);
        z-index: 999999;
    }
    .about-video-for-mpbile .watch-demo .icon {
        padding: 18px;
        font-size: 14px;
        margin: 0;
        cursor: auto;
    }
    .about-video-for-mpbile .watch-demo .icon::before {
        width: 53px;
        height: 53px;
    }
    .watch-demo .icon , .watch-demo .videoX {
        cursor: auto;
    }
    .about-video-for-mpbile .watch-demo span {
        display: none;
    }
    .watch-demo {
        width: 0px;
    }
    
    .about-video h1 {
        display: none;
    }
    .column .about-video span {
        display: none;
    }
    .join-us::before {
        display: none;
    }
    .join-us {
        cursor: auto;
    }
    .watch-demo .video-container.block {
        top: -410px;
        left: 50%;
        transform: translateX(-67%);
    }
    .why-you-choose-us .container .back .gym-coach.translate2 {
        width: 210px;
        border-radius: 0;
        left: 0;
    }   
    .why-choose-us .carts .cart p {
        width: 100%;
    }
}





.why-choose-us {
    width: 100%;
    background-color: #f6f6f4;
    overflow: hidden;
}
.special-head {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.special-head-two {
    transform: translateX(-100%);
    opacity: 0;
    transition: 1s;
}
.special-head-two.translate {
    transform: translateX(-50%);
    opacity: 1;
}
.why-choose-us .container {
    flex-direction: row;
    padding: 50px 0;
}
.special-head h1 { 
    font-family: 'Londrina Outline', serif; /* تحديد الخط */
    font-style: normal; /* إذا كنت تريد النمط الطبيعي */
    font-weight: 400; /* الوزن الافتراضي */
    font-size: 75px;
    text-align: center;
    
    color: #ccfd42;
}

.information {
    display: flex;
    flex-direction: column;
    margin: 0;
}
.why-choose-us .container .information {
    transform: translateX(-100%);
    transition: 1s;
    opacity: 0;
}
.why-choose-us .container .information.translate{
    transform: translateX(0);
    opacity: 1;
}
.information h1 {
    font-family: "Kurale", serif;
    font-size: 35px;
    text-align: start;
    color: #b7e92e;
    z-index: 99;
    font-weight: 900;
}
.information .text-container {
    display: flex;
    padding: 0 0 50px 0;
}
.information .text-container .line {
    width: 35px;
    height: 11px;
    border-bottom: 2px solid #ccfd42;
    margin-right: 15px;
}
.information .text-container p {
    color: rgba(0, 0, 0, 0.479);
    font-size: 17px;
    width: auto;
    margin-right: 20px;
}



.why-choose-us .carts {
    display: flex;
    z-index: 99999;
}
.why-choose-us .carts .cart {
    border-radius: 15px ;
    padding: 50px 20px;
    background-color: black;
    color: white;
    transition: 1.4s;
    opacity: 0;
    height: auto;
}
.why-choose-us .carts .cart1 {
    transform: translateY(70px);
}
.why-choose-us .carts .cart1.translate {
    transform: translateY(0px);
    opacity: 1;
}
.why-choose-us .carts .cart2 {
    position: relative;
    transform: translateY(120px);
}
.why-choose-us .carts .cart2::before {
    content: "Discover More";
    position: absolute;
    color: black;
    padding: 15px 12px;
    line-height: 1.6ch;
    background-color:  #b7e92e;
    border-radius: 15px;
    font-size: 15px;
    transform: translateX(-50%);
    left: 50%;
    bottom: -20px;
    font-weight: bold;
    font-family: "Kurale", serif;
    text-align: center;
}

.why-choose-us .carts .cart2.translate {
    transform: translateY(0px);
    opacity: 1;
}

.carts .cart .icon {
    width: 45px; /* العرض */
    height: 45px; /* الارتفاع */
    fill: white; /* اللون الداخلي للأيقونة */
    rotate: -40deg;
    margin-top: -5px;
    margin-bottom: 20px;
    
}
.carts .cart h1 {
    font-size: 25px;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: start;
    margin-bottom: 20px;
}
.carts .cart p {
    width: 300px;
    font-size: 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgba(255, 255, 255, 0.747);
    font-weight: 300;
}
.carts .cart2 {
    margin-left: 13px;
    color: black;
}
.carts .cart2 .icon {
    rotate: 0deg;
    width: 40px; /* العرض */
    height: 40px; /* الارتفاع */
    fill: #ccfd42; /* اللون الداخلي للأيقونة */
}
.why-choose-us .carts .cart2 h1 {
    color: #b7e43b;

}



.best-features {
    background-color: black;
    padding: 50px 0;
}
.best-features .special-head{
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}
.best-features .special-head h1{
    font-size: 100px;
    opacity: .3;
    letter-spacing: 9px;
}
.best-features .special-head h2{
    position: absolute;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 68px;
}


@media (max-width: 900px) {
    .why-choose-us  {
        padding: 20px 0 50px 0;
    }
    .why-choose-us .container {
        flex-direction: column;padding: 0;
    }
    .special-head {
        width: 100%;
    }
    .special-head h1 {
        font-size: 55px;

    }
    .why-choose-us .container  .information h1{
        margin-top: 18px;
    }
    .why-choose-us .container .information .text-container {
        padding-top: 0;
        margin-top: -20px;
    }
    .information h1 {        
        text-align: center;
        font-size: 33px;
    }
    .information .text-container {
        display: flex;
        padding: 10px 0;
    }
    .information .text-container p {
        text-align: center;
        margin: 0;
        margin: 10px 0;
    }
    .information .text-container .line { 
        display: none;
    }
    .carts .cart {
        padding: 20px 10px;
        width: 48%;
        height: auto;
    }
    .carts .cart h1{
        font-size: 16px;
        width: 100%;
        margin-bottom: 10px;
    }

    .carts .cart p{
        font-size: 13px;
        width: 100%;
    }
    .carts .cart .icon {
        margin-bottom: 10px;
    }
    .discover-more a {
        padding: 5px 20px;
        font-size: 13px;
        text-align: center;
    }
    .why-choose-us .carts .cart p {
        font-size: 14px;
    }
}




/* start slider */
main{
    width: 100%;
    padding: 80px 0;
    background-color: black;
}
.special-head-two {
    transform: translateX(-100%);
    opacity: 0;
    transition: 1s;
    width: 100%;
}
.special-head-two.translate {
    transform: translateX(-50%);
    opacity: 1;
}
.special-head-two h1 {
    font-size: 85px;
    color: #cbfd42a1;
}
.special-head-two h2 {
    color: white;
    text-align: center;
    margin-top: -74px;
    font-size: 55px;
}
.slider{
    width: 100%;
    overflow-x: scroll;
    padding: 60px 0;
    -ms-overflow-style: none;  /* لإخفاء الشريط في إنترنت إكسبلورر */
    scrollbar-width: none;     /* لإخفاء الشريط في Firefox */
}
.slider::-webkit-scrollbar {
    display: none;  /* لإخفاء الشريط في Chrome و Safari */
}
.slider::-webkit-scrollbar {
    display: none;
    width: 0;
}
.slider .list {
    padding-top: 60px;
    display: flex;
    width: 100%;
    height: 450px;
    min-width: calc(275px * var(--quantity));
    position: relative;
    transform: translateX(100%);
    transition: 1s;
}
.slider .list.translate {
    transform: translateX(0);
}
.slider .list .item{
    height:auto;
    position: absolute;
    left: 100%;
    animation: autoRun 60s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc( (60s / var(--quantity)) * (var(--position) - 1) - 60s)!important;
    text-align: center;
    border-radius: 5px;
    width: 330px;
    padding: 15px;
}
.slider .list .item img{
    width: 100%;
    border-radius: 5px;
    border: 2px solid white;
}
@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(350px * -1);
    }
}
.slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}
.slider .item:hover{
    filter: grayscale(0);
}
.slider[reverse="true"] .item{
    animation: reversePlay 60s linear infinite;
}
@keyframes reversePlay{
    from{
        left: calc(350px * -1);
    }to{
        left: 100%;
    }
}





@media (max-width: 900px) {
    .special-head-two h1 {
        font-size: 50px;
    }
    .special-head-two h2 {
        font-size: 33px;
        margin-top: -44px;
    }
    .slider {
        padding: 0 0 60px 0;
    }
    .slider .list {
        height: 280px;
        min-width: calc(170px * var(--quantity));
    }
    .slider .list .item{
        width: 230px;
        padding: 15px;
    }
}
/* end slider */


.choose-plan {
    width: 100%;
    background-color:#f6f6f4;
    padding: 50px 0;
}
.choose-plan .container {
    padding: 50px 0;
}
.choose-plan .special-head {
    width: 100%;
}
.choose-plan .special-head-three {
    opacity: 0;
    transform: translateX(-100%);
    transition: 1s;
}
.choose-plan .special-head-three.translate {
    opacity: 1;
    transform: translateX(-50%);
}
.choose-plan .information-two {
    transform: translateX(-100%);
    opacity: 0;
    transition: 1s;
}
.choose-plan .information-two.translate {
    transform: translateX(0);
    opacity: 1;
}
.choose-plan .information p {
    width: 40%;
}
.choose-plan .carts {
    display: flex;
    align-items: center;
}
.choose-plan .cart {
    background-color: #eaeaea;
    width: auto;
    margin: 0 5px;
    padding: 0;
    border-radius: 15px;
    transition: 1s;
    transform: translateY(100px);
    opacity: 0;
}
.choose-plan .cart.translate {
    transform: translateY(0px);
    opacity: 1;
}
.choose-plan .cart4 {
    border: 1px solid white;
    position: relative;
    z-index: 99;
    box-shadow: -13px 13px 1px #cccccc;
    filter: drop-shadow(-7px 13px 10px rgba(0, 0, 0, 0.164));
    margin-left: 23px;
}
.choose-plan .cart4::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    left: -15px;
    top: 13px;
    border: 1px solid white;
    border-radius: 15px;
    z-index: -1000;
    border-right: 0;
    border-top: 0;
}

.choose-plan .cart .cart-container {
    padding: 40px 20px; 
}
.choose-plan .cart h1 {
    width: 1px;
    height: 1px;
    padding: 25px;
    text-align:center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 10px;
    background-color: #ccfd42;
    border-radius: 50%;
}
.choose-plan .cart span {
    color: rgba(0, 0, 0, 0.247);
    font-size: 20px;
    font-weight: 900;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.choose-plan .cart p {
    color: rgba(0, 0, 0, 0.562);
    font-weight: 600;
    font-size: 15px;
    margin-top: 15px;
    width: auto;
}
.choose-plan .cart .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: black;
    padding: 20px; 
    border-radius: 15px ;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.choose-plan .cart .price h2 {
    font-size: 25px;
    width: auto;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
}

.choose-plan .cart .price .get-plan {
    width: 27px;
    height: 27px;
    background-color: #ccfd42;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 15px;
}

@media (max-width: 900px) {
    .choose-plan {
        padding: 50px 0 0 0;
    }
    .choose-plan .special-head h1 {
        font-size: 45px;
        width: 90%;
        margin: auto;
    }
    .choose-plan .carts  {
        padding: 30px 0;
        flex-direction: row;
    }
    .choose-plan .carts .row{
        display: flex;
        flex-direction: column;
    }
    .choose-plan .carts .row .cart {
        margin-bottom: 22px;
        width: 97%;
    }
    .choose-plan .information h1 {
        margin-top: -40px;
    }
    .information .text-container {
        padding: 0;
    }
    .information .text-container p {
        text-align: center;
        width: 100%;
        margin: 10px 0 25px 0;
    }
    .why-choose-us .container .information .text-container p {
        margin: 40px 0;
    }
    .choose-plan .cart .cart-container {
        padding: 20px 15px 0px 15px;
    }
    .choose-plan .cart .price {
        padding: 15px;
    }
    .choose-plan .cart .price  h2 {
        font-size: 18px;
    }
    .choose-plan .cart4 {
        margin-left: 5px;
        box-shadow: 0 0 0 ;
        border: 0;
    }
    .choose-plan .cart4::before {
        display: none;
    }
    .choose-plan .cart h1 {
        padding: 20px;
        font-size: 18px;
    }

    .watch-demo .video-container {
        left: -220px;
        width: 200px;
        height: 350px;
    }
    .choose-plan .cart span {
        font-size: 16px;
    }
    .choose-plan .cart p{
        font-size: 13px;
        width: 100%;
        font-weight: 500;
        height: 88px;
    }
    .information h1 span {
        color: #ccfd42;
    }  
    .why-choose-us .carts {
        padding:0 0 40px 0;
    }
    .why-choose-us .carts .cart {
        padding: 40px 20px 70px 20px;
    }
    .why-choose-us .carts .cart2::before {
        padding: 6px 10px;
        font-size: 12px;
    }
    .choose-plan .cart .price h2 {
        font-size: 16px;
    }
}





.why-you-choose-us {
    width: 100%;
    padding: 80px 0;
    background-color: #f6f6f4;

}
.why-you-choose-us .container .back{
    width: 100%;
    background-color: black;
    border-radius: 100px;
    position: relative;
    padding: 50px 100px;
    display: flex;
    justify-content: end;
}
.why-you-choose-us .container .back::before {
    content: "";
    width: 30%;
    height: 70px;
    background-color:#f6f6f4;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
}
.why-you-choose-us .container .back .gym-coach {
    position: absolute;
    bottom: -68px;
    left: 100px;
    width: 350px;
    transition: 1s;
    transform: translateY(80px);
    opacity: 0;
}
.why-you-choose-us .container .back .gym-coach.translate{
    transform: translateY(0px);
    opacity: 1;
}
.why-you-choose-us .container .back .information h1 {
    color: white;
    margin-bottom: 15px;
}
.why-you-choose-us .container .back .information h1 span {
    color: #ccfd42;
}
.checks {
    color: #ccfd42;
    display: flex;
    flex-direction: column;
}
.checks .check {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.checks .check i {
    margin-right: 10px;
}
.checks .check span {
    color: rgba(255, 255, 255, 0.774);
}







.contact-us {
    padding: 80px 0;
    width: 100%;
    background-color: #f6f6f4;
    position: relative;
}
.information-three {
    transform: translateX(300px);
    opacity: 0;
    transition: 1.5s;
}
.information-three.translate{
    transform: translateX(0%);
    opacity: 1;
}
.contact-us .container .information p {
    width: 40%;
}
.contact-us .container .map-and-form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-us .container .map {
    width: 50%;
    scale: 0;
    transition: 1s;
}
.contact-us .container .map.scale{
    scale: 1;
}
.contact-us .container .map iframe {
    filter: invert(1) hue-rotate(180deg) brightness(0.8);
    width: 100%;
    height: 270px;
    border: none;
    margin-top: 10px;
    -webkit-filter: invert(1) hue-rotate(180deg) brightness(0.8);
}

.contact-us .container .map .contactus-title {
    position: absolute;
    width: auto;
    height:100px;
    left: -100px;
    top: -80px;
    z-index: 999;
}
.contact-us .information {
    width: 100%;
}
.contact-us  .information .text-container {
    width: 100%;
}
.contact-us .special-head {
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
}
.contact-form {
    max-width: 500px;
}
.contact-form h2 {
    text-align: center;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid white;
    border-radius: 5px;
    background-color: #cccccc8e;
    outline: none;
    }
    :lang(en) ::placeholder,
    .contact-form input, .contact-form textarea:lang(en){
        color: rgba(0, 0, 0, 0.575);
        font-family: "Kurale", serif;
        text-align: left;
        font-weight: 500;
    }
  .contact-form button {
    background-color: black;
    color:#ccfd42;
    font-size: 16px;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Kurale", serif;
    font-weight: 600;
    transition: .3s;
}
  .contact-form button:hover {
    background-color: #b7e43b;
    color: black;
  }
  .success-message {
    color: green;
    text-align: center;
  }

.footer {
    background-color: #f6f6f4; 
    width: 100%;
    padding: 80px 0;
    border-top: 2.7px solid #bbbbbb;
}

.footer .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.col1 {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.col span {
    width: 80%;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.568);
}

.col2 {
    display: flex;
    width: auto;
}
.col2 div {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    width: auto;
}
.col2 div h2 {
    margin-bottom: 10px;
    font-size: 14px;
}
.col2 div span {
    margin-bottom: 10px;
}
.col2 .contact-us {
    margin: 0;
    padding: 0;
}

.col3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.social {
    width: 110%;
    display: flex;
    justify-content: space-between;
}
.social i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    background-color: #ccfd42;
    padding: 5px;
    margin: 0;
    color: black;
}





@media (max-width: 900px) {
    .why-you-choose-us {
        padding: 40px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.13);
    }
    .why-you-choose-us .container .back {
        height: 190px;
        border-radius: 35px;
        padding: 20px 10px;
} 
    .why-you-choose-us .container .back .gym-coach {
        bottom: -31px;
        left: 0px;
        width: 190px;
    }
    .checks {
        width: 100%;
        display: flex;
    }
    .checks .check {
        margin-bottom: 10px;
    }
    .checks .check-four {
        display: none;
    }
    .checks .check i{
        margin-bottom: 0px;
        font-size: 12px;
    }
    .why-you-choose-us .container .back .information {
        display: flex;
        align-items: start;
        justify-content: center;
        width: 50%;
        z-index: 99;
    }
    .why-you-choose-us .container .back .information h1 {
        text-align: start;
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 2ch;
    }
    .checks .check span {
        font-size: 11px;
        line-height: 1.5ch;
    }
    
    .footer {
        padding: 0 0 40px 0;
        border-top: 0;
    }
    .footer .container {
        flex-direction: column;
    }
    .footer .container .col1 span {
        margin:20px 0 40px 0;
        width: 80%;
    }
    .footer .container .col2 {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 2fr));
        grid-gap: 10px;
    }
    .col3 {
        margin-left: 0;
    }
    .footer .container .col3 .join-us {
        margin: 20px 0;
    }
    .footer .container .col3 .join-us::before {
        display: flex;
    }
    .social {
        width: auto;
        justify-content: start;
    }
    .social i {
        margin-right: 20px;
    }


    .contact-us .container .map-and-form {
        flex-direction: column;
    }
    .contact-us .container .map {
        width: 100%;
    }
    .contact-form {
        padding: 0;
        margin-bottom: 20px;
    }
    .contact-us .container .information p {
        width: 100%;
        margin-top: -0px;
    }
    .contact-us .container .information h1 {
        margin-top: -33px;
    }

    .information-three.translate2 {
        transform: translateX(0%);
        opacity: 1;
    }
    .why-you-choose-us .container .back .gym-coach.translate2 {
        transform: translateY(0px);
        opacity: 1;
        top: -10px;
        width: 200px;
    }
    .contact-us .container .map.scale2{
        scale: 1;
    }
    .contact {
        display: none;
    }

    .whatsapp-icon {
        position: fixed;
        width: 50px;
        top:80%;
    }

    .why-you-choose-us .container .back::before {
        width: 40%;
    }
}





.carts .cart .p-one.rtl-style {
    color: #b7e43b;
    font-size: 44px;
    font-family: "Cairo", sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 2.3ch;
    direction: ltr;
    color: #0f1412;
    text-align: right;
}
:lang(ar) { 
    font-family: "Cairo", sans-serif;
    text-align: center;
}

.column .about-us-container p:lang(ar) {
    line-height: 2.4ch;
    width: 90%;
    text-align: right;
}
.column .about-us-container .join-us a:lang(ar) {
    width: 77%;
    text-align: right;
}
.video-h1:lang(ar) {
    line-height: 2.6ch;
    font-size: 26px;
    margin-top: 8px;
}
.watch-demo-sapn:lang(ar) {
    width: 100%;
    font-size: 14px;
}
.join-us-a:lang(ar) {
    font-family: "Cairo", sans-serif;
    padding: 5px;
}
.header .ul li a:lang(ar) {
    font-family: "Cairo", sans-serif;
}
.numbers:lang(ar) {
    padding: 17px 65px;
}
.model:lang(ar) {
    bottom: -9px;
}

.lorem p:lang(ar) {
    font-family: "Cairo", sans-serif;
}
.carts .cart h1:lang(ar),
.carts .cart p:lang(ar),
.choose-plan .information p:lang(ar) {
    font-family: "Cairo", sans-serif;
    text-align: right;
}
.carts .cart span:lang(ar) {
    margin-right: 8px;
}
.cart-container:lang(ar) {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.choose-plan .carts:lang(ar) {
    flex-direction: row-reverse;
}
.choose-plan .carts .row:lang(ar){
    flex-direction: row-reverse;
}

.information h1:lang(ar),
.information .text-container:lang(ar),
.why-choose-us .container:lang(ar){
    display: flex;
    justify-content: end;
    flex-direction: row-reverse;
}

.information .text-container:lang(ar) { 
    margin: 0 0 0 30px;
}
.information .text-container p:lang(ar){
    text-align: right;
}

:lang(ar) ::placeholder,
.contact-form input, .contact-form textarea:lang(ar){
    text-align: right;
    font-family: "Cairo", sans-serif;
    color: #0f1412a1;
    font-weight: 600;
}

.col2 div:lang(ar) ,
.col2 div span:lang(ar),
.col1:lang(ar),
.col1 span:lang(ar),
.col h2:lang(ar){
    text-align: right;
}
.col h2:lang(ar){
    margin-right: 15px;
}
.col span:lang(ar) {
    width: 90%;
}
.col2 {
    margin: 0 20px;
}

@media (max-width: 1200px) {
    .choose-plan .carts:lang(ar) {
        flex-direction: column;
        padding: 0;
    }
    .choose-plan .carts .row:lang(ar) {
        margin-bottom: 20px;
    }
}
@media (max-width: 900px) {
    .numbers:lang(ar) {
        padding: 7px 0px 11px 16px;
    }

    .why-choose-us  {
        padding: 20px 0 50px 0;
    }
    .why-choose-us .container:lang(ar) {
        flex-direction: column;padding: 0;
    }

    .information .text-container {
        display: flex;
        padding: 10px 0;
    }

    .why-choose-us .carts .cart:lang(ar) {
        padding: 20px 20px 70px 20px;
    }
    .carts .cart h1:lang(ar){
        line-height: 3ch;
        font-family: "Cairo", sans-serif;
    }
    .carts .cart p:lang(ar) {
        line-height: 2.7ch;
        font-family: "Cairo", sans-serif;
    }
    .carts .cart .icon1:lang(ar) {
        margin-left: 80px;
    }
    .carts .cart .icon2:lang(ar) {
        margin-left: 90px;
    }
    .special-head-two h2:lang(ar) {
        line-height: 2ch;
    }


    .slider:lang(ar) {
        margin-top: 25px;
    }

    .choose-plan .carts:lang(ar)  {
        padding: 30px 0;
        flex-direction: row;
    }
    .choose-plan .carts .row:lang(ar) {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .choose-plan .carts .row .cart:lang(ar) {
        margin-bottom: 22px;
    }
    .choose-plan .cart p:lang(ar)  {
        height: 100px;
    }


    .checks .check span:lang(ar) {
        line-height: 2.8ch;
        text-align: left;
    }
    .information .text-container:lang(ar) {
        margin: 0;
    }
    .col1:lang(ar) {
        width: 96%;
        margin: 0;
        display: flex;
        align-items: end;
    }
    .col3:lang(ar) {
        align-items: end;
    }
    .footer .container .col3 .join-us:lang(ar) {
        margin-right: 40px;
    }

    div:where(.swal2-container).swal2-center>.swal2-popup {
        width: 77%;
        font-size: 12px;
    }
}

