@font-face {
    font-family: neo;
    src: url(../fonts/neo-sans-arabic-regular.ttf);
  }
  @font-face {
    font-family: din;
    src: url(../fonts/din-next-lt-w23-light.ttf);
  }
body{
    font-family: din;
    direction: rtl;
    text-align: right
}
a , button , input , ::after , ::before , .trans  , .show-sec , .show *{
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
ul , p{
    padding: 0;
    margin: 0;
}
.pageContainer{
    overflow: hidden;
}
a:hover{
    text-decoration: none;
}


/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #4493BA;
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
   opacity: 0.7;
  }


/************/

/************************/
/*loader*/
.loader{
    position: fixed;
    z-index: 9999999;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
}
.loader > div{
    height: 100%;
    background: #fff;
}
.spinner {
    margin: 100px auto 0;
    width: 70px;
    text-align: center;
  }
  
  .spinner > div {
    width: 18px;
    height: 18px;
    background-color: #4493BA;
  
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  }
  
  .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
  }
  
  .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
  }
  
  @-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bouncedelay {
    0%, 80%, 100% { 
      -webkit-transform: scale(0);
      transform: scale(0);
    } 40% { 
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
    }
  }
  /**/
   
/**/

/*nav*/
nav .logo {
    max-width: 100%;
    height: auto;
}
nav .logo img{
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}
.nav-bar{
    padding: 30px 0;
}
.mn{
    text-align: left;
}
.botttom-bar ul li{
    margin: 0 10px;
    position: relative;
}
.botttom-bar ul li a , .botttom-bar ul li span{
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    padding: 5px  0 ;
    display: block;
    position: relative;
    z-index: 1;
    cursor: pointer;
    /* overflow: hidden; */
}
.botttom-bar ul li:first-child a{
    background-color: #fff;
    color: #4493BA;
    font-size: 18px;
    padding: 7px 16px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #fff;
}
.botttom-bar ul li a::after{
    content: "";
    position: absolute;
    height: 4px;
    width: 30px;
    background: #fff;
    bottom: -15px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform-origin: right;
}
.botttom-bar ul li a:hover::after{
    opacity: 1;
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    visibility: visible;
}

.botttom-bar ul li.drop{
    position: relative;
    padding-left: 15px;
}
.botttom-bar ul li.drop::after{
    content: '';
    width: 10px;
    height: 10px;
    background-image: url(../images/down.png);
    background-size: 100% 100%;
    position: absolute;
    top:10px;
    left:0;
    font-size: 30px;
    color: #fff;
}
.botttom-bar ul li.drop::after{
    content: '';
    width: 10px;
    height: 10px;
    background-image: url(../images/down.png);
    background-size: 100% 100%;
    position: absolute;
    top:10px;
    left:0;
    font-size: 30px;
    color: #fff;
}

.botttom-bar ul li.drop ul{
    position: absolute;
    top:50px;
    right: 0;
    width: 150px;
    background-color: #fff;
    z-index: 10;
    border:.5px solid #707070;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    -ms-transform: translateY(20px);
    -webkit-transform: translateY(20px);
    box-shadow: 0px 0px 81px 0px rgba(0, 0, 0, 0.1);
}
.botttom-bar ul li.drop:hover ul{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);

}
.botttom-bar ul li.drop ul::before{
    content:"";
    height: 20px;
    width: 100%;
    position: absolute;
    top:-20px;
    right:0;
    left: 0;
    background-color: transparent;
}
.botttom-bar ul li.drop ul li a{
    display: block;
    padding: 10px;
    color:#4493BA;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 16px;
    border-radius: 0!important;
}
.botttom-bar ul li.drop ul li a::after{
    display: none
}
.botttom-bar ul li.drop ul li:last-child a{
    border-bottom: none;
}
.botttom-bar ul li.drop ul li a:hover{
    background-color: #4493BA;
    color: #fff;
}

/**/

/*main section*/
.main-sec-nav{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
    background-attachment: fixed;
    overflow: hidden;
}
.main-sec-nav::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right:0;
    z-index: -2;
    background: rgba(96, 75, 75, 0.18);
}
.main-sec-nav::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right:0;
    z-index: -1;
    background-image: url(../images/patj.png);
    background-size: 100% 100%;
}
.vf-img {
    height: 100%;
}
.vf-img img{
    max-width: 100%;
    height: auto;
}
.m-slide{
    min-height: calc(100vh - 120px);
}
.main-slider-content{
    min-height: calc(100vh - 120px);
}
.mm-slide{
    padding: 30px 0;
    margin: 0 10px;
}
.mm-slide-h h2{
    font-size: 30px;
    font-weight: bold;
    color: #fff; 
}
.m-slide-text{
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    margin: 30px 0  30px 0;
    padding: 0 0 0 100px;
}
.mm-more{
    font-size: 16px;
    color: #4493BA;
    background-color: #fff;
    border:1px solid #fff;
    width: 101px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.mm-more::after , .botttom-bar ul li:first-child a::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 110%;
    left: 0;
    top: -5%;
    background:#74E9AD;
    z-index: -1;
    transform: rotateY(90deg);
    -ms-transform: rotateY(90deg);
    -webkit-transform: rotateY(90deg);
}
.mm-more:hover , .botttom-bar ul li:first-child a:hover{
    color: #fff;
}
.mm-more:hover::after , .botttom-bar ul li:first-child a:hover:before{
    transform: rotateY(0);
    -ms-transform: rotateY(0);
    -webkit-transform: rotateY(0);
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    outline: none;
   padding: 8px 6px!important
}
/* .owl-carousel .owl-nav button.owl-next i, .owl-carousel .owl-nav button.owl-prev i{
    font-size: 22px;
} */
.owl-carousel .owl-nav button span{
    position: relative;
    top: -8px!important;
}
.owl-theme .owl-nav [class*=owl-]:hover{
    background: #fff;
    color: #4494BD;
}
.mm-slider .owl-nav{
    position: absolute;
    bottom: -60px;
    right: 0;
}
.customers-slider .owl-nav button.owl-next , .customers-slider .owl-nav button.owl-prev{
    border: 1px solid #000!important;
    color: #000!important;
}
.customers-slider .owl-nav [class*=owl-]:hover{
    background: var(--main-color)!important;
    border: 1px solid #fff!important;
    color: #fff!important;
}



/*properties*/
.properties{
    padding: 80px 0;
    position: relative;
    z-index: 1;
}
.properties .bgg{
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    height: 70%;
    width: 30%;
}
.properties img{
   height: 100%;
   width: auto;
}
.properties h2{
    font-size: 30px;
    color: #4493BA;
    margin: 0 0 30px 0;
}
.property{
    margin: 15px 0;
    background: #fff;
}
.property:hover{
    transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
}
.property .img{
    height: 100px;
    border-radius: 20px;
    border: 1px solid #8C4B9D;
}
.property .img i{
    font-size: 40px;
    /* color: #74E9AD; */
    background:-moz-linear-gradient(top, #74E9AD 0%, #4494BD 100%); 
        background: -webkit-linear-gradient(top, #74E9AD 0%, #4494BD 100%); 
        background: linear-gradient(to bottom, #74E9AD 0%, #4494BD 100%); 
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
       -webkit-text-fill-color:transparent;
}
.property .img img{
    max-width: 80%;
    max-height: 80%;
    height: auto;
    left: auto;
}
.property .title{
    text-align: center;
    font-size: 18px;
    color: #000000;
    margin: 20px 0 0 0;
}
.property:hover .title{
    transform: scale(.9);
    -ms-transform: scale(.9);
    -webkit-transform: scale(.9);
    color: #4494BD;
}
/*properties-users*/
.properties-users{
    padding: 70px 0 130px 0;
    background-image: linear-gradient(to right , #4494BD , #74E9AD );
}
.properties-users .img i{
    font-size: 40px;
    color: #fff!important;
    -webkit-text-fill-color:#fff!important;
    background: none!important;
}
.properties-users .property{
    background-color: transparent!important;
}
.properties-users .bgg img{
    max-width: 100%;
    height: auto;
}
.properties-users *{
    color: #fff!important;
}
.properties-users .img{
    border: 1px solid #fff;
    width: 100px;
    height: 80px;
}
.properties-users .title{
    width: calc(100% - 115px );
    text-align: initial!important;
}
/*advantages*/
.advantages{
    padding: 80px 13px;
    position: relative;
    z-index: 1;
    top: -70px;
}
.advantages .title{
    max-width: 720px;
    margin: 0 auto 30px auto;
}
.advantages .title h2{
    font-size: 30px;
    font-weight: bold;
    color: #4493BA;
    margin: 0 0 30px 0;
}
.advantages .title p{
    font-size: 16px;
    line-height: 30px;
    color: #000000;
}

.advantages .slide{
    margin: 0 10px;
    /* padding: 40px 10px; */
}
.advantages .slide:hover .img{
    transform: scale(.95);
    -ms-transform: scale(.95);
    -webkit-transform: scale(.95);
}
.advantages .slide .img i{
    color: #fff;
    font-size: 40px;
}
.advantages .slide:hover .body{
    transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
}
.advantages{
    background: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.16);
    border-radius: 20px;
}
.advantages .slide .img{
    width: 108px;
    height: 108px;
    border-radius: 50%;
    margin: auto;
    overflow: hidden;
    background: #4493BA;
}
.advantages .slide .img img{
    max-width: 80%;
    max-height: 80%;
    height: auto;
    width: auto!important;
}
.advantages .slide .body{
    margin: 20px 0 0 0;
    padding: 0 5px;
}
.advantages .body span{
    font-size: 20px;
    font-weight: bold;
    color: #4493BA;
}
.advantages .slide .body p{
    font-size: 16px;
    color: #000000;
    line-height: 30px;
    margin: 10px 0 0 0;
}

.owl-carousel .owl-nav{
    margin: 30px 0 0 0;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    width: 35px;
    height: 35px;
    background: #4493BA;
    border-radius: 50%;
	outline:0!important;
	border:none!important;
	font-size:28px;
    color: #fff;
}
.owl-carousel .owl-nav button span{
    position: relative;
    top: -2px;
}
.owl-theme .owl-nav [class*=owl-]:hover{
	background:#74E9AD;
	color:#fff
}
/*screens*/
.screens{
    padding: 0 0 70px 0;
}
.screens h2{
    color: #4493BA;
    font-size: 30px;
    margin: 0 0 50px 0;
    font-weight: bold;
}
.screens .slide{
    cursor: pointer;
}
.lg-outer{
    direction: ltr;
}
/**/
/*show*/
.show{
    padding: 70px 0;
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% auto;
}
.show h2{
    font-size: 30px ;
    font-weight: bold;
    margin: 0 0 50px 0;
    color: #fff;
}
.show-img{
    margin: 0 auto 50px auto;
    /* max-width: 270px; */
}
.show-img img , .show-img iframe{
    width: 100%!important;
    height: 600px!important;
}
.show-body p{
    font-size: 25px;
    font-weight: bold;
    color: #000000;
    max-width: 500px;
    margin: auto;
}
.download-links{
    margin: 30px 0 0 0;
}
.download-links a{
    display: inline-block;
    max-width: 100%;
}
.download-links a:hover{
    transform: scale(.95);
    -ms-transform: scale(.95);
    -webkit-transform: scale(.95);
}
/**/
footer{
    background: #4493BA;
    color: #fff;
    padding: 70px 0;
}
footer a{
    color: #fff;
}
.footer-logo{
    width: 152px;
    margin: auto;
}
.footer-logo img{
    width: 100%;
    height: auto
}
footer ul{
    margin: 40px auto 0 auto;
    max-width: 690px;
}
footer ul li{
    margin: 5px;
}

footer ul li a{
    padding: 10px 15px;
    border-radius: 30px;
}
footer ul li a:hover{
    background: #fff;
    color: #4493BA;
}

/*media query*/

@media only screen and (max-width : 767px){
    .m-slide-text{
        padding: 0;
    }
    .botttom-bar ul li:first-child a{
        color: #4493BA!important;
    }

    .botttom-bar ul li ul li:first-child a{
        color: #fff!important;
        border: 0!important;
    }
    .botttom-bar ul li ul li a{
        border: 0!important;
    }
    nav .logo {
        background: #fff;
        padding: 10px;
        border-radius: 6px;
    }
    .section .section-img{
        padding: 0, im !important;
    }
 
    .footer-sec{
        width: 100%;
        margin: 30px 0 0 0;
    }
    .m-slide-content h1{
        font-size: 27px;
    }
    .m-slide {
        min-height: 270px;
    }
    .h{
        margin: 0 0 20px 0;
        display: block;
    }
    .nav-links{
        position: fixed;
        top: 0;
        z-index: 30;
        background: #fff;
        left: -300px;
        height: 100vh;
        width: 300px;
        padding: 70px 0 20px 0;
        overflow-y: scroll;
        overflow-x: hidden;
        background: #4493BA;
    }
    .nav-links ul li a{
        display: block;
        text-align: center;
        padding: 4px;
        color: #fff!important;
    }
    .nav-links ul li{
        margin: 10px 0;
    }

    .nav-links ul li.drop ul li{
        display: none;
    }
    .nav-links ul li.drop ul li a{
        text-align: initial;
        
    }
    .nav-links ul li.drop ul {
        position: initial;
        width: 100%;
        border:none;
        transform: translateY(0);
        -ms-transform: translateY(0);
       -webkit-transform: translateY(0);
       opacity: 1;
       visibility: visible;
       background: transparent;
    }
    .nav-links ul li.drop ul li a{
        padding: 10px 20px;
        text-align: center;
        color: #fff;
        background: transparent!important;
    }
    .nav-links ul li.drop{
        padding: 0;
    }
    .nav-links ul li.drop::after {
        top: 10px;
        left: 30px;
        right:auto
    }
    .close-menu{
        color: #fff;
        cursor: pointer;
        position: absolute;
        top:30px;
        right: 20px;
    }
    .botttom-bar .container , .botttom-bar {
        padding: 0;
    }
    .open-menu{
        cursor: pointer;
        float: left;
        color: #fff;
    }

    /* width */
    .nav-links::-webkit-scrollbar {
        width: 4px;
    }
        
    /* Track */
    .nav-links::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
        
    /* Handle */
    .nav-links::-webkit-scrollbar-thumb {
        background: #888;
    }
        
    /* Handle on hover */
    .nav-links::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
    .m-overlay{
         position: fixed;
        z-index: 29;
        width: 100%;
        height: 100%;
        top:0;
        left: -100%;
        bottom:0;
        background:#000;
        opacity: .35;
    }
    .nav-bar{
        padding: 10px 0;
    }
}

@media screen and (max-width: 575px) {

    .advantages {
        padding: 30px 13px;
    }
}
