@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;500;800&display=swap');
:root{
    --main-color:#F2C165;
    --card-color:#D9D9D9;
    --input-color:#c9c9c9;
}
*{
    box-sizing: border-box;
}
body{
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    direction: rtl;
    text-align: right;
}
html{
    direction: ltr;
    scroll-behavior: smooth;
}
html[dir='ltr'] body{
    direction: ltr;
    text-align: left;
}
p,h1,h2,h3,h4,h5,h6,h7{
    
    margin-bottom: 0;
}
p{
    color: #c4c4c4;
    font-size: 14px;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
} 
.main-button{
    padding: 10px 8px;
    background-color: white;
    border: 1px solid var(--main-color);
}
.sec_button{
    padding: 8px 31px;
    background-color: transparent;
    border: 1px solid black;
}
.main-title{
    font-weight: bold;
    font-size: 35px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width:1024px) {
    .main-title {
        font-size: 27px;
    }
}
/* start navbar */
.navbar{
    padding: 26px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 22;
    background: white;
}
.navbar .navb{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}
.navbar .logo-nav{
    position: absolute;
    right: 0;
}
.navbar ul{
    display: flex;
    gap: 8px;
}
.navbar ul li a{
    color: black;
    font-weight: 500;
}

.navbar #primary li {
    margin: 0 10px;
    position: relative;
}
.navbar #primary li a {
    text-decoration: none;
    display: block;
    padding: 5px 0;
    /* font-family: "Open Sans"; */
    /* font-size: 26px; */
    /* line-height: 1; */
    /* font-weight: bold; */
    position: relative;
    z-index: 1;
    text-align: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #FF0000, #ff000086 50%, black 50%);
    background-size: 200% 100%;
    background-position: -100%;
    transition: all 0.3s ease-in-out;
}
.navbar #primary li a:before {
    display: block;
    content: "";
    width: 0;
    height: 3px;
    bottom: 5px;
    left: 0;
    bottom: -3px;
    z-index: 0;
    position: absolute;
    background-image: linear-gradient(to right,#ff000086 ,#FF0000  50%);
    transition: all 0.3s ease-in-out;
    border-radius:20%;
}
.navbar #primary li a:hover {
    background-position: 0%;
}
.navbar #primary li a:hover:before {
    width: 100%;
}
/* end navbar */
.navbar-demo i{
    color: #FF0000;
    
}
.navbar-demo {
    display: table;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    
}

.navbar-demo .nav-bar ul li {
    display: block;
}

.navbar-demo .nav-bar ul {
    padding: 0;
    display: table;
    text-align: center;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-demo .nav-bar ul li a {
    font-size: 18px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #000;
    padding: 18px;
    text-transform: uppercase;
}

.nav-bar {
    text-align: center;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items: center;
    position: relative;
}
.navbar-demo button.menu-btn {
    display:none;
}
@media (min-width:992px) {
    .navbar-demo{
        display: none;
    }
}
@media only screen and (max-width: 992px){
.navbar-demo  button.menu-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: unset;
    border: 0;
    font-size: 26px;
    display:block;
    padding: 23px;
    color: #fff;
    outline: none;
} 
.navbar-demo{
    /* height:100%; */
    z-index: 999;
}
.navbar-demo .nav-bar {
    left: -1032px;
    background-color: #000000f0;
    transition: 1s;
    height: 100vh;
    position: absolute;
}

.navbar-demo.open-nav  .nav-bar{
    left: 0;
    width: 100%;
    transition: left 0.5s;
    height: 100vh;
}
.nav-top{
    background: white;
    height: 93px;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
}
.navbar-demo .nav-bar ul li a {
     display: block;
     color: #fff;
}
.navbar-demo.open-nav button.menu-btn i:before {
    content: '\f00d ';
}
.logo-med {
    position: absolute;
    top: 0;
    left: 0;
    background-color: unset;
    border: 0;
    font-size: 26px;
    display: block;
    padding: 23px;
    color: #fff;
    outline: none;
}
}
/* start header */
.header{
    margin: 114px 0;
}
.header .container > div{
    display: flex;
    gap: 48px;
    justify-content: center;
}
.header .container > div img{
    width: 438px;
    height: 588px;
    border-radius: 50px;
}
.header .container > div .images{
    position: relative;
}
html[dir="rtl"] .header .container > div img:nth-child(2){
    position: absolute;
    width: 338px;
    height: 440px;
    border-radius: 50px;
    bottom: -50%;
    left: -50%;
    transform: translateY(-50%);
}
html[dir="ltr"] .header .container > div img:nth-child(2){
    position: absolute;
    width: 338px;
    height: 440px;
    border-radius: 50px;
    bottom: -50%;
    right: -50%;
    transform: translateY(-50%);
}
.header ul{
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.header ul p:nth-child(1){
    font-weight: 600;
    font-size: 19px;
}
.header ul p{
    color: black;
    font-size: 15px;
}
.header .container > div .content{
    position: relative;
    margin-top: 98px;
    display: flex;
    gap: 14px;
    flex-direction: column;
}

@media(min-width:992px){
    html[dir="rtl"] .header .special{
    position: absolute;
    left: -253px;
    bottom: 39%;
}
html[dir="ltr"] .header .special{
        position: absolute;
        right: -202px;
        bottom: -2%;
}
.header .special ul{
    max-width:250px;
}
}
.header .main-title span{
    color: #FF0000;
}
@media (max-width:1025px) {
    .header .container > div img {
        width: 100%;
        height: auto;
        border-radius: 50px;
        object-fit: contain;
    }
    /*.header .container > div img:nth-child(1) {*/
    /*    display: none;*/
    /*}*/
    .header .container > div img:nth-child(2) {
        position: relative;
        width: 302px;
        height: auto;
        border-radius: 50px;
        bottom: 0;
        left: 0;
        transform: translateY(-0%);
        right: 0;
    }
    .header .container > div .content {
        position: relative;
        margin-top: 0;
        display: flex;
        gap: 14px;
        flex-direction: column;
    }
    .header .special {
        position: relative;
        left: 0;
        bottom: 0;
    }
    .main-title {
        margin-right: 0;
    }
    .header .container > div {
        display: flex;
        gap: 48px;
        justify-content: center;
        align-items: center;
    }

}
@media (max-width:992px) {
    /*.header .container > div img:nth-child(1){*/
    /*    display: none;*/
    /*}*/
    .img1{
        display:block;
    }
    html[dir="rtl"] .header .container > div img:nth-child(2) {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 50px;
    bottom: 0;
    left: 0;
    transform: translateY(0%);
    margin-top: 8px;
}
    .img2{
        display:block;
    }
    .navbar{
        /* display: none; */
    }
    .header .container > div .images {
        position: relative;
        width: 100%;
    }
    .header .container > div img:nth-child(2) {
        position: absolute;
        width: 302px;
        height: 392px;
        border-radius: 50px;
        bottom: -50%;
        left: -50%;
        transform: translateY(-50%);
    }
    .header .container > div .content {
        position: relative;
        margin-top: 0;
        display: flex;
        gap: 14px;
        flex-direction: column;
    }
    .header .special {
        position: absolute;
        left: -266px;
        bottom: 35%;
    }
    .header .container > div img:nth-child(2){
        position: relative;
        bottom: 0;
        left: 0;
        transform: translateY(0);
        width: 100%;
        object-fit: contain;
        height: auto;
    }
    .header .special{
        position: relative;
        left: 0;
        bottom: 0;
    }
    .main-title {
        font-weight: bold;
        font-size: 35px;
        width: max-content;
        margin-left: auto;
        margin-right: 0;
    }
    .header .container > div {
        display: flex;
        gap: 48px;
        justify-content: center;
        flex-direction: column;
        align-items: flex-start;
    }
    .nvmedia{
        margin: 20px 0;
    }
    .nvmedia .links{
        position: absolute;
        background-color: white;
        z-index: 2;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
    }
    .nvmedia .links li a{
        color:#FF0000;
    }
    .nvmedia ul{
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    }
    .nvmedia .links i{
        font-size: 30px;
        margin: 19px;
    }
    .nvmedia .navb{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nvmedia .navb i{
        font-size: 28px;
    }
}
/* end header */
/* start slides */
.slides{
    overflow: hidden;
    height:400px;
    margin-top: 190px;
}
.slides .images{

}
.slides  img{
    width: 691px;
    height: 302px;
    border-radius: 30px;
}
.slides .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet::before, .slides .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, [class^=swiper-button-] {
    transition: all 0.3s ease;
}
*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.slides .swiper-container {
    width: 100%;
    /* height: 28vw; */
    transition: opacity 0.6s ease;
}
.slides .swiper-container.swiper-container-coverflow {
    padding-top: 2%;
}
.slides .swiper-container.loading {
    opacity: 0;
    visibility: hidden;
}
.slides .swiper-container:hover .swiper-button-prev,
.slides .swiper-container:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
.slides .swiper-slide {
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
}
.slides .swiper-slide .entity-img {
    display: none;
}
.slides .swiper-slide .content {
    position: absolute;
    top: 40%;
    left: 0;
    width: 50%;
    padding-left: 5%;
    color: #fff;
}
.slides .swiper-slide .content .title {
    font-size: 2.6em;
    font-weight: bold;
    margin-bottom: 30px;
}
.slides .swiper-slide .content .caption {
    display: block;
    font-size: 13px;
    line-height: 1.4;
}
[class^=swiper-button-] {
    width: 44px;
    opacity: 0;
    visibility: hidden;
}
.slides .swiper-button-prev {
    transform: translateX(50px);
}
.slides .swiper-button-next {
    transform: translateX(-50px);
}
.slides  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 9px;
    position: relative;
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 0.4;
}
.slides .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    border: 0px solid #fff;
    border-radius: 50%;
}
.slides .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet:hover, .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}
.slides .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    border-width: 1px;
}
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #FF0000;
    border-radius: 6px;
    width: 48px;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -50px;
    left: 0;
    width: 100%;
}
@media (max-width: 1180px) {
    .swiper-slide .content .title {
        font-size: 25px;
    }
    .swiper-slide .content .caption {
        font-size: 12px;
    }
}
@media (max-width: 1023px) {
    .swiper-container {
        height: 40vw;
    }
    .swiper-container.swiper-container-coverflow {
        padding-top: 0;
    }
}
@media (max-width:992px) {
    .slides {
        overflow: hidden;
        height: auto;
        margin-top: 0;
    }
    .slides img {
        width: 95%;
        height: auto;
        border-radius: 30px;
    }
    .header {
        margin: 120px 0;
    }
}
/* end slides */
/* start advantages */
.advantages{
    margin: 50px 0;
}
.advantages .cards{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3%;
}
.adv{
    width: 188px;
    height: 188px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border:1px solid rgb(72 72 72 / 74%);
    border-radius: 30px;
    gap: 22px;
}
.adv p{
    color: black;
}
.advantages .main-title {
    font-weight: bold;
    font-size: 35px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
    width: 100%;
    margin-bottom: 50px;
}
.main-title span{
    color: #FF0000;
}
@media (max-width:992px) {
    .advantages .cards {
        flex-wrap: wrap;
        gap: 20px
    }
}
/* end advantages */
/* start download */
.download{
    margin: 80px 0;
}
.download .main-title {
    font-weight: bold;
    font-size: 35px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
    width: 100%;
    margin-bottom: 50px;
}
.download .image{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.download .image img{
    width: 90%;

}
.download-link{
    font-weight: bold;
    font-size: 64px;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}
.download .links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.links img{
    width: 200px;
}
@media (max-width:992px) {
    .download .links {
        flex-direction: column;
    }
        .download .image {
    height: max-content;
}
}
/* end download */
/* start app images */
.app-images{
    margin: 80px 0;
}
.app{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 1300px;
}
.app-images .main-title {
    font-weight: bold;
    font-size: 35px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
    width: 100%;
    margin-bottom: 50px;
}
.app1{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.app1:nth-child(even){
    justify-content: flex-end;
}
.app1 img{
    width: 286px;
    height: 545px;
}
@media (max-width:1025px) {
    .app {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 1300px;
        overflow: scroll;
    }
}
@media (max-width:992px) {
    .app1 {
        display: flex;
        flex-direction: row;
        height: 100%;
    }
    .app {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: auto;
        overflow: scroll;
    }
}
/* end app images */












/* start footer */
.footer{
    background-color: #E2E2E2;
    padding: 40px 0 137px;
    position: relative;
    min-height: 340px;
    
}
.footer .container div.row >div,
.footer .container div.row ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    gap: 31px;
}
html[dir='ltr'] .footer .container div.row >div, .footer .container div.row ul {
    text-align: left;
}
.footer .container div.row > div:nth-child(1){
    position: relative;
}
html[dir='rtl'] .footer .container div.row > div:nth-child(1)::after{
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    background-color: #FF0000;
    left: 70px;
    top: 0;
}
html[dir='ltr'] .footer .container div.row > div:nth-child(1)::after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    background-color: #FF0000;
    right: 70px;
    top: 0;
}
.footer::after{
    content: '';
    width: 100%;
    height: 1px;
    background-color: #FF0000;
    position: absolute;
    bottom: 67px;
}
.footer p{
    color:  #FF0000;
    width: 300px;
}
.footer .container div.row div.contact-details a{
    display: flex;
    gap: 8px;
    align-items: center;
}
.footer .container div.row > div svg{
    width: 120px;
    height: 67px;
}
.footer .container div.row div.contact-details a:hover{
    color: #FF0000;
}
.footer .container div.row > div ul li a{
    color: #FF0000;
}
@media (min-width:1025px) {
    /* .footer .container div.row > div:nth-child(2) ul{
        height: 140px;
    } */
}
@media (max-width:1025px) {
    .footer .container div.row >div, .footer .container div.row ul {
        gap: 10px;
    }
    .footer::after{
        display: none;
    }
}
@media (max-width:769px) {
    .footer .container div.row > div:nth-child(3) ul{
        padding-right: 0;
    }
    html[dir='ltr'] .footer .container div.row > div:nth-child(3) ul {
        padding-left: 0;
    }
    .footer {
        min-height: 309px;
    }
    
    .footer .container div.row > div:nth-child(1)::after{
        display: none;
    }
    html[dir='ltr'] .footer::after{
        content: '';
        width: 100%;
        height: 1px;
        background-color: #FF0000;
        position: absolute;
        /* bottom: 85px; */
        top: 240px;
    }
}
@media (max-width:426px) {
    .footer .container div.row > div:nth-child(2) ul{
        padding-right: 0;
        /* height: 127px; */
    }
    html[dir='ltr'] .footer .container div.row > div:nth-child(2) ul {
        padding-left: 0;
    }
    .footer {
        min-height: 610px;
    }
    .footer .container div.row{
        gap: 17px;
    }
    .copyright {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
@media (max-width:376px) {
    .copyright ul li {
        list-style: none;
        margin: 0 15px;
        width: 19px;
    }
}
/* end footer */
/* copyright */
.copyright{
    width: 100%;
    position: absolute;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.copyright p{
    margin-bottom: 0;
    font-size: 14px;
}
.copyright  ul {
    margin: 0;
    padding: 0;
    display: flex;
    /* position: absolute; */
    bottom: 0;
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
}
.copyright ul li {
    list-style: none;
    margin: 0 15px;
}
.copyright  ul li a {
    position: relative; 
    display: block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 63px;
    background: #a9a9a9;
    border-radius: 50%;
    /* font-size: 30px; */
    color: #666;
    transition: .5s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.copyright ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #FF0000;
    transition: .5s;
    transform: scale(.9);
    z-index: -1;
}
.copyright ul li a:hover::before {
    transform: scale(1.1);
    box-shadow: 0 0 15px #FF0000;
}
.copyright ul li a:hover {
    color: #FF0000;
    box-shadow: 0 0 5px #FF0000;
    text-shadow: 0 0 5px #FF0000;
}
.copyright svg{
    font-size: 24px;
}
/* copyright */




.adv {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px auto;
    width: 188px;
    height: 188px;
    border-radius: 30px;
    background: white;
    transition: 1s box-shadow;
  }
.labclass {
 width: 29%; 
 height: 29%; 
 border-radius: 50%; 
 border: 5px solid #bbbb;
  }
  
  .adv:hover {
    box-shadow: 0 5px 35px 0px rgba(0,0,0,.1);
  }
  
  .adv:hover::before, .adv:hover::after {
    display: block;
    content: '';
    position: absolute;
    width: 188px;
    height: 188px;
    border-radius: 30px;
    background: #ff00002d;
    z-index: -1;
    animation: 1s clockwise infinite;
  }
  
  .adv:hover:after {
    background: #ff000069;
    animation: 2s counterclockwise infinite;
  }
  
  @keyframes clockwise {
    0% {
      top: -5px;
      left: 0;
    }
    12% {
      top: -2px;
      left: 2px;
    }
    25% {
      top: 0;
      left: 5px;    
    }
    37% {
      top: 2px;
      left: 2px;
    }
    50% {
      top: 5px;
      left: 0;    
    }
    62% {
      top: 2px;
      left: -2px;
    }
    75% {
      top: 0;
      left: -5px;
    }
    87% {
      top: -2px;
      left: -2px;
    }
    100% {
      top: -5px;
      left: 0;    
    }
  }
  
  @keyframes counterclockwise {
    0% {
      top: -5px;
      right: 0;
    }
    12% {
      top: -2px;
      right: 2px;
    }
    25% {
      top: 0;
      right: 5px;    
    }
    37% {
      top: 2px;
      right: 2px;
    }
    50% {
      top: 5px;
      right: 0;    
    }
    62% {
      top: 2px;
      right: -2px;
    }
    75% {
      top: 0;
      right: -5px;
    }
    87% {
      top: -2px;
      right: -2px;
    }
    100% {
      top: -5px;
      right: 0;    
    }
  }
  
html[lang='en'] .main-title{
    margin-right: auto;
    margin-left: 0;
    text-align:left;
}
  