/* Fonts Include  */
@font-face {
    font-family: 'font400';
    src: url('../fonts/SomarSans-Regular.eot');
    src: url('../fonts/SomarSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SomarSans-Regular.woff2') format('woff2'),
        url('../fonts/SomarSans-Regular.woff') format('woff'),
        url('../fonts/SomarSans-Regular.ttf') format('truetype'),
        url('../fonts/SomarSans-Regular.svg#SomarSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'font500';
    src: url('../fonts/SomarSans-Medium.eot');
    src: url('../fonts/SomarSans-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SomarSans-Medium.woff2') format('woff2'),
        url('../fonts/SomarSans-Medium.woff') format('woff'),
        url('../fonts/SomarSans-Medium.ttf') format('truetype'),
        url('../fonts/SomarSans-Medium.svg#SomarSans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'font700';
    src: url('../fonts/SomarSans-Bold.eot');
    src: url('../fonts/SomarSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SomarSans-Bold.woff2') format('woff2'),
        url('../fonts/SomarSans-Bold.woff') format('woff'),
        url('../fonts/SomarSans-Bold.ttf') format('truetype'),
        url('../fonts/SomarSans-Bold.svg#SomarSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/*  Start General  */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'font400', sans-serif;
}
.btn,a{
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
:root {

    --blackColor: #242424;
    --blackColor2: #212121;
    --blackColor3: #262626;
    --secondaryBlackColor: #2A2B2F;
    --orangeColor: #E7614A;
    --grayColor: #D0D0D0;
    --grayColor2: #FAFAFA;
    --greenColor: #0C4116;
    --trans: all 0.4s ease-in-out;
}

body, html {
    margin: 0px;
    padding: 0px;
    background-color: #fff;
    font-family: 'font400', sans-serif;
    font-size: 16px;
    color: var(--blackColor);
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale

}

body {
    overflow-x: hidden;
    position: relative;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
}
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    /* font-weight: 900; */
    font-weight: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Loader */
.pre-loader{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* background: rgba(71, 139, 200, 0.7) ; */
    background: rgba(0, 0, 0, 0.7);
}


  .loader {
    width: 100px;
    height: 100px;
    position: relative;
    background-image:
      linear-gradient(#FFF 30px, transparent 0) ,
      linear-gradient(var(--orangeColor) 30px, transparent 0) ,
      linear-gradient(var(--orangeColor) 30px, transparent 0) ,
      linear-gradient(#FFF 30px, transparent 0);
    background-repeat: no-repeat;
    background-size: 30px 30px;
    background-position: left top , left bottom , right top , right bottom;
    animation: rotate 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
  }
  @keyframes rotate {
    0% {
      width: 100px;
      height: 100px;
      transform: rotate(0deg)
    }
    50% {
      width: 50px;
      height: 50px;
      transform: rotate(180deg)
    }
    100% {
      width: 100px;
      height: 100px;
      transform: rotate(360deg)
    }
  }
/* svg {
    position: absolute;
    z-index: -100;
    pointer-events: none;
} */

/* Loader */

/* Side Menu */
.side-menu{
    position: fixed;
    right: -900px;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    z-index: 9999;
    -webkit-box-shadow: -12px 0 59px 1px #191919;
    box-shadow: -12px 0 59px 1px #191919;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.side-menu .scroll-menu{
    height: calc(100vh - 155px - 41px - 15px - 34px);
    text-align: center;
}

.side-menu-header{
    /*background: url("../images/side-menu.png") no-repeat left;*/
    background-size: cover;
    text-align: right;
    padding: 20px 15px;
}

.side-menu-header a img{
    height: 115px;
}

.menu-title{
    display: block;
    background: #f4f4f4;
    color: var(--mainColor);
    border-bottom: 1px solid #e3e3e3;
    padding: 8px 10px;
    text-align: center;
    font-size: 16px;
    font-family: 'bold-ar', 'main', sans-serif;
    margin-bottom: 15px;
}

.side-menu nav ul{
    list-style: none;
    padding: 0 15px;
}

.side-menu nav > ul li a{
    display: block;
    color: var(--blackColor);
    font-size: 16px;
    padding: 3px 10px;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    margin-bottom: 5px;
    position: relative;
}

.side-menu nav > ul li a span{
    position: relative;
    padding-right: 5px;
    padding-left: 5px;
}

.side-menu nav > ul li a span::after{
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background: var(--sBgColor);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

.side-menu nav > ul li a.active span::after,
.side-menu nav > ul li a:hover span::after,
.side-menu nav > ul li a:focus span::after{
    width: 100%;
}
.side-menu nav > ul li a:hover,
.side-menu nav > ul li a.active{
    color: var(--orangeColor);
}

.side-menu nav > ul li a.active span,
.side-menu nav > ul li a:hover span,
.side-menu nav > ul li a:focus span{
    color: #fff;
}

.social-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    bottom: 0;
}
.social-menu a{
    display: block;
    padding: 5px 10px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.side-menu button{
    font-size: 25px;
}
.side-menu button:hover{
    color: red !important;
}

.side-overlay{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(3,3,3,.8);
    z-index: 9998;
    display: none;
}

.copy-menu{
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
}
/* Side Menu */


/* style */
.body-content {
    min-height: 70vh;
    position: relative;
    /* z-index: 2; */
}
::-webkit-input-placeholder { /* Edge */
  font-size: 16px;
  font-family: 'font400',sans-serif;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-size: 16px;
  font-family: 'font400',sans-serif;
}

::placeholder {
  font-size: 16px;
  font-family: 'font400',sans-serif;
}


/* buttons */
.cs-btn-orange{
    background-color: var(--orangeColor);
    color:#fff;
    border-radius: 25px;
    font-family: 'font500',sans-serif;
    font-size: 18px;
    -webkit-transition: var(--trans);
    transition: var(--trans);

}
.cs-btn-orange:hover{
    background-color: var(--secondaryBlackColor);
    color: #fff;
}
.cs-btn-ic{
    position: relative;
    display: inline-flex;
    justify-content: space-between;
}
.cs-btn-ic span{

}
/* buttons */
/* header */
.main-header-wrapper{
    background-image: url('../images/header-background.png');
    background-position: bottom center;
    background-repeat: no-repeat;
}
.main-header{}
.main-header .brand{}
.main-header .brand img{}
.main-header .nav-item{}
.main-header .navbar{padding-top: 15px;}
.main-header .nav-item:not(:first-child){
    margin-inline-start: 20px;
}
.main-header .nav-item .nav-link{
    color: #fff;
    font-size: 14px;
    font-family: 'font500',sans-serif;
}
.main-header .nav-item .nav-link.active{}

.main-banner-section{}
.main-banner-section .main-img{
    text-align: center;
}
.main-banner-text-wrapper{
    color: #fff;
}
.main-banner-text-wrapper h2{
    font-size: 47px;
    font-family: 'font700',sans-serif;
    margin-bottom: 50px;
}
.main-banner-text-wrapper p{
    font-size: 18px;
    margin-bottom: 50px;
}
.main-banner-text-wrapper .download-btn{
    width: 100%;
    max-width: 300px;
    margin-bottom: 70px;
}
.app-stores-btns{}
.app-stores-btns a{
    padding: 0;
}
.app-stores-btns a + a{
    margin-inline-start: 7px;
}
.app-stores-btns a img{}
/* header */
/* our-services-section */
.sec-title-1{
    font-size: 35px;
    color:var(--blackColor3);
    margin-bottom: 35px;
    font-family: 'font700',sans-serif;
}
.our-services-section{
    margin: 80px 0;
}
.our-services-section figure{
    padding-inline-start: 30px;
}
.our-services-section figure img{}

.services-slider{
    /* transform: rotate(-90deg); */

}
.services-slider .slick-slide{
    padding:0 15px;
}
.service-item{
    background-color: #fff;
    border-radius: 18px;
    padding: 20px;
    padding-inline-start: 50px;
    -webkit-box-shadow: 0 3px 40px rgba(0,0,0,0.04);
    box-shadow: 0 3px 40px rgba(0,0,0,0.04);
    /* margin: 0 15px; */
    margin-bottom: 8px;
    position: relative;
}
.service-item{
    /* transform: rotate(-90deg); */
}
.service-item h4{
    position: relative;
    margin-inline-start: -25px;
    font-size: 18px;
    font-family: 'font700',sans-serif;
}
.service-item h4::before{
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--orangeColor);
    -webkit-box-shadow: 0 6px 12px rgba(6,193,145,.13);
    box-shadow: 0 6px 12px rgba(6,193,145,.13);
    margin-inline-end: 17px;
    position: relative;
    top: -4px;
}
.service-item p{
    opacity: .7;
}
.services-slider .slick-dots{
    top: 50%;
    right: -25px;
    bottom: auto;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
    z-index: 0;
}
.services-slider .slick-dots li{
    width: auto;
    height: auto;
    margin: 5px 0;

}
.services-slider .slick-dots li button{
    width: 8px;
    height: 60px;
    border-radius: 4px;
    background-color: rgba(108,108,108,0.11);
    padding: 0;
    transition: var(--trans);
}
.services-slider .slick-dots li.slick-active button{
    background-color: var(--orangeColor);
}
.services-slider .slick-dots li button:before{
    display: none;
}
.slick-list{
    z-index: 1;;
}

/* our-services-section */
/* application-features-section */
.sec-title{
    text-align: center;
    position: relative;
    margin-bottom: 70px;
}
.sec-title:after{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 200px;
    transform: translateX(-50%);
    border-bottom: 1px solid var(--grayColor);
}
.sec-title h3{
    color:var(--blackColor3)!important;
    font-size: 35px;
    font-family: 'font500',sans-serif;
    padding-bottom: 15px;
}
.application-features-section{
    background-color: var(--grayColor2);
    padding-top: 120px;
    padding-bottom: 120px;
}
.application-features-section .sec-content{}
.feature-item{
    margin-bottom: 50px;
}
.feature-item figure{
    flex: 0 1 115px;
    border-radius: 50%;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--grayColor);
}
.feature-item figure img{
    max-width: 100%;
    max-height: 100%;
}
.feature-item .media-body{
    margin-inline-start: 40px;
}
.feature-item .media-body h4{
    /*color:var(--blackColor3);*/
    font-size: 24px;
    font-family: 'font500',sans-serif;
    margin-bottom: 15px;
}
.feature-item .media-body p{}
/* application-features-section */
/* app-secreens-section */
.app-secreens-section{
    margin-top: 120px;
    margin-bottom: 120px;
}
.sereens-sliders{
    margin-bottom: 70px;
}
.secreen-item{}
.app-secreens-section .download-sec{

}
.download-sec .download-btn{
    margin-bottom: 30px;
    max-width: 300px;
    width: 100%;
}

/* app-secreens-section */
/* partners-section */
.partners-section{
    margin-bottom: 120px;
}
.partners-slider .owl-stage-outer .owl-stage{
    margin: auto!important;
}
.parnter-item{

}
.parnter-item figure{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
}
.parnter-item figure img{
    max-width: 100%;
    max-height: 100%;
}
/* partners-section */
/* main-footer */
.main-footer{
    background-color: var(--blackColor2);
    color:#fff;
}
.main-footer .top-footer{
    padding-top: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.28);
}
.f-logo{
    margin-bottom: 30px;
    display: inline-block;
}
.f-logo img{}
.main-footer address{
    font-size: 14px;
}
.f-contact-info{}
.f-contact-info h4{
    font-size: 20px;
    color:rgba(255,255,255,0.52);
    margin-bottom: 15px;
}
.f-contact-info p{
    font-size: 14px;
    margin-bottom: 5px;
}
.f-contact-info p a{
    color:inherit;
}
.f-contact-info p a:hover{
    color: var(--orangeColor);
}
.main-footer .bottom-footer{
    padding: 25px 0;
}
.f-social{}
.f-social a{}
.f-social a i{
    width: 32px;
    line-height: 32px;
    text-align: center;
    display: inline-block;
    color:#fff;
    -webkit-transition: var(--trans);
    transition: var(--trans);
    font-size: 20px;
}
.f-social a:hover i{
    color:var(--orangeColor)
}
.main-footer .copyright{

    font-size: 14px;
    margin: 0 auto;
}
/* main-footer */


/* responsive */
@media (min-width: 1600px){
    .main-header-wrapper{
        background-size: cover;
    }
    .body-content{
        min-height: 77vh;
    }
}
@media (max-width: 1400px){
    .main-header .nav-item .nav-link{
        font-size: 14px;
    }
    .main-banner-text-wrapper h2{
        font-size: 44px;
    }
    .sec-title-1{
        font-size: 30px;
        margin-bottom: 25px;
    }
    .f-contact-info p{
        font-size: 14px;
        margin-bottom: 7px;
    }
    .main-footer address{
        font-size: 14px;
    }
}
@media (max-width: 1199px){

    /* #move-to-top{
        left: -5px;
    } */
    .main-banner-text-wrapper h2{
        font-size: 40px;
        margin-bottom: 35px;;
    }
    .main-banner-text-wrapper p{
        margin-bottom: 35px;
    }
    .main-banner-text-wrapper .download-btn{
        margin-bottom: 40px;
    }
    .service-item{
        padding: 15px;
        padding-inline-start: 40px;
    }
    .application-features-section{
        padding-top: 90px;
        padding-bottom: 50px;
    }
    .feature-item figure{
        flex: 0 1 95px;
        height: 95px;
        width: 95px;
        padding: 15px;
    }
    .feature-item .media-body{
        margin-inline-start: 25px;
    }
    .feature-item .media-body h4{
        font-size: 20px;
    }
    .feature-item .media-body p{
        font-size: 14px;
    }
    .app-secreens-section{
        margin-top: 90px;
        margin-bottom: 90px;
    }
    .partners-section{
        margin-bottom: 90px;
    }
    .app-stores-btns a img{
        max-height: 40px;
    }
    .main-footer .top-footer{
        padding-top: 60px;
        padding-bottom: 20px;
    }

}
@media (max-width: 1023px){

}
@media (max-width: 991px){
    /*.main-header .brand img{*/
    /*    max-height: 75px;*/
    /*}*/
    .main-header-wrapper{
        background-size: cover;
    }
    .main-banner-section .main-img img{
        max-width: 450px;
    }
    .main-banner-text-wrapper h2{
        font-size: 34px;
        margin-bottom: 25px;
    }
    .main-banner-text-wrapper .app-stores-btns{
        margin-bottom: 30px;
    }
    .main-banner-text-wrapper .download-btn{
        margin-bottom: 30px;
    }

    .our-services-section figure{
        padding-inline-start: 0;
        text-align: center;
    }
    .our-services-section figure img{
        max-width: 450px;
    }
    .sec-title{
        margin-bottom: 50px;
    }
    /*.f-logo img{*/
    /*    max-height: 70px;*/
    /*}*/
    .f-contact-info h4{
        font-size: 18px;
    }
    .f-contact-info p{
        font-size: 14px;
    }
    .main-footer address{
        font-size: 14px;
        margin: auto;
        margin-bottom: 10px;
    }
    .f-social{
        text-align: center;
        margin-bottom: 25px;
    }
    .main-footer .bottom-footer .app-stores-btns{
        margin-bottom: 25px;
    }

}
@media (max-width: 767px){
    .feature-item{
        margin-bottom: 35px;
    }
    .partners-section{
        margin-bottom: 60px;
    }
    .parnter-item figure{
        height: 130px;
    }

}
@media (max-width: 575px){
    .services-slider .slick-dots{
        right: 0;
    }
    .sec-title-1,
    .sec-title h3{
        font-size: 28px;
    }
    .feature-item .media-body h4{
        font-size: 18px;
    }
    .main-footer .top-footer{
        text-align: center;
    }
}
@media (max-width: 479px){
    .main-banner-section .main-img img{
        max-width: 85%;
    }
    .our-services-section figure img{
        max-width: 85%;
    }
    .main-banner-text-wrapper h2{
        font-size: 30px;
    }
    .main-banner-text-wrapper p{
        font-size: 16px;
    }

    .feature-item{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .feature-item .media-body{
        margin-inline-start: 0;
    }
    /*.main-header .brand img{*/
    /*    max-height: 60px;*/
    /*}*/
    .application-features-section{
        padding-top: 60px;
        padding-bottom: 30px;
    }
    .our-services-section {
        margin: 60px 0;
    }
    .app-secreens-section {
        margin-top: 60px;
        margin-bottom: 70px;
    }
    .parnter-item figure {
        height: 100px;
    }
}
@media (max-width: 320px){
    .navbar-toggler{
        padding: .5rem
    }
    .sec-title-1, .sec-title h3{
        font-size: 22px;
    }
    .main-banner-text-wrapper h2 {
        font-size: 26px;
    }
}
/* responsive */
#closeMenu{
    margin: 16px!important;
}
.scrollspy_menu{
    display: grid;
    place-items: center;
    height: 70vh;
    margin: auto;
    font-size: 30px!important;
    top: 20%;
}
.side-menu nav ul{
    font-size: 20px!important;
}
.side-menu nav ul li{
    height: 50px;
    font-size: 20px;
}
.side-menu nav ul li a{
    padding-top: 10px;
}
.side-menu nav > ul li a:hover, .side-menu nav > ul li a.active{
    font-size: 23px;
}
.logo-img{
    width: 85px!important;
}
