body {
    color: #3f3f3f;
    background: #fff;
    font-family: Lato,Almarai,sans-serif
}

:root {
    --color: #092a49;
    --text: #6fc2ff;
}

.help-block {
    text-align: start;
}

.Myparagraph{
    color:#070707;
     text-indent: 30px;
     text-transform: uppercase;
     font-family: 'Electra Light Pro',sans-serif;
     
   }
h1, h2, h3, h4, h5, h6 {
    color: var(--color);
    font-family: Oswald,sans-serif
}


a {
    color: #454545;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-decoration: none
}

    a:active, a:focus, a:hover {
        color: var(--color);
        outline: 0;
        text-decoration: none
    }

/******************
    back to top
    **********************/

.back-to-top {
    position: fixed;
    display: none;
    opacity: .5;
    background: var(--text);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    left: 15px;
    bottom: 15px;
    -webkit-transition: background .5s;
    -o-transition: background .5s;
    transition: background .5s;
    z-index: 9;
    border-radius: 2px;
    transition: 0.5s;
}

    .back-to-top i {
        color: var(--color);
        padding-top: 8px;
        font-size: 30px;
    }

    .back-to-top:hover {
        opacity: 1
    }

@media (min-width:992px) {
    .mt-125 {
        margin-top: 125px
    }
}

/************ 
    Top bar
    ***********/
.top-bar {
    position: relative;
    height: 35px;
    background-image: -webkit-gradient(linear,left top,right top,from(var(--text)),to(var(--color)));
    background-image: -o-linear-gradient(left,var(--text),var(--color));
    background-image: linear-gradient(to right,var(--text),var(--color))
}

    .top-bar .top-bar-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .top-bar .top-bar-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .top-bar .text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: 35px;
        padding: 0 10px;
        text-align: center;
        border-left: 1px solid rgba(255,255,255,.15)
    }

        .top-bar .text:last-child {
            border-right: 1px solid rgba(255,255,255,.15)
        }

        .top-bar .text i {
            font-size: 14px;
            color: #fff;
            margin-right: 5px
        }

        .top-bar .text .icon-phone {
            -webkit-animation: icon .5s infinite ease-in-out;
            animation: icon .5s infinite ease-in-out
        }

@-webkit-keyframes icon {
    0% {
        -webkit-transform: rotateY(50deg);
        transform: rotateY(50deg)
    }

    100% {
        -webkit-transform: rotateY(-50deg);
        transform: rotateY(-50deg)
    }
}

@keyframes icon {
    0% {
        -webkit-transform: rotateY(50deg);
        transform: rotateY(50deg)
    }

    100% {
        -webkit-transform: rotateY(-50deg);
        transform: rotateY(-50deg)
    }
}

.top-bar .text h2 {
    color: #eee;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0
}

.top-bar .text p {
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 0 5px
}

.top-bar .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 35px;
    font-size: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

    .top-bar .social a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 35px;
        height: 100%;
        font-size: 16px;
        color: #fff;
        border-right: 1px solid rgba(255,255,255,.15)
    }

        .top-bar .social a:first-child {
            border-left: 1px solid rgba(255,255,255,.15)
        }

        .top-bar .social a:hover {
            color: var(--color);
            background: #fff
        }
@media (max-width:991.98px) {
    .top-bar {
        padding: 10px 0;
        height: 50px;
    }

        .top-bar .top-bar-right {
            display: none;
        }
}

/************ 
    Nav bar
    ***********/

.navbar {
    position: absolute;
    width: 100%;
    top: 33px;
    padding: 0 60px;
    background-color: transparent !important;
    z-index: 9;
    color: var(--color);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 999;
    text-align: start
}

    .navbar.nav-sticky {
        position: fixed;
        top: 0;
        width: 100%;
        background-image: linear-gradient(to right,var(--text)10%,var(--color)) !important;
        -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.3);
        box-shadow: 0 2px 5px rgba(0,0,0,.3);
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s
    }


.page .navbar {
    background-image: linear-gradient(to right,var(--text)10%,var(--color)) !important;
}


.navbar a.nav-link {
    font-size: 15px;
    text-shadow: 1px 0px 1px #000;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: inherit;
    padding: 10px;
    color: #fff
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
    color: var(--color);
}

.nav-sticky .navbar-nav .nav-link.active, .nav-sticky .navbar-nav .nav-link:hover, .page .navbar .nav-sticky .navbar-nav .nav-link.active, .page .navbar.nav-sticky .navbar-nav .nav-link:hover,
.page .navbar-nav .nav-link.active, .page .navbar-nav .nav-link:hover {
    color: var(--text);
}

.navbar .navbar-brand {
    margin: 0;
    color: #fff;
    font-size: 45px;
    line-height: 0;
    font-weight: 200;
    text-transform: uppercase
}

    .navbar .navbar-brand img {
        max-width: 100%;
        max-height: 80px
    }

.navbar-nav .signin {
    padding: 10px 15px !important;
    background-color: var(--text);
    border-radius: 14px;
}

.nav-sticky .navbar-nav .signin, .page .navbar-nav .signin {
    padding: 10px 15px !important;
    background-color: #1069ab;
    border-radius: 14px;
    color: #fff;
    transition: 0.5s
}

.navbar-nav .signin:hover {
    color: #fff !important;
    box-shadow: 1px 1px 10px rgba(0,0,0,.3);
}

.navbar-nav .signin:focus {
    color: #fff !important;
}


.navbar .navbar-toggler {
    color: rgb(255 255 255 / 67%);
    border-color: rgb(255 255 255 / 42%);
    outline: none;
}

    .navbar .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-toggler-icon i {
    margin-top: 5px
}




@media (max-width:991.98px) {
    .navbar {
        top: 50px;
        padding: 10px;
        background-image: linear-gradient(to right,var(--text),var(--color)) !important;
    }

        .navbar a.nav-link {
            padding: 5px
        }

        .navbar .navbar-nav .nav-link.active, .navbar .navbar-nav .nav-link:hover {
            color: var(--text);
        }

    .navbar-nav .signin {
        background-color: #1069ab;
        width: max-content;
    }


    .navbar-nav {
        display: none
    }
}

/************ 
    carousel
    ***********/
.carousel {
    position: relative;
    height: auto;
    background: var(--color);
    margin-bottom: 130px;
    background-image: url(../img/background5.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


    .carousel .container-fluid {
        margin: 0
    }
    .carousel .header-title {
        padding: 50px;
        justify-content: center;
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
        top: 128px;
    }

        .carousel .header-title h3 {
            font-family: 'Almarai';
            font-style: italic;
            text-shadow: 1px 1px 3px black;
        }
        .carousel .header-title a {
            padding: 13px;
            margin: 15px;
            background: #91c0f0;
            color: #fff;
            font-weight: bold;
            border-radius: 25px 7px;
            transition:0.5s ; 

            /* font-size: 15px;
            text-shadow: 1px 0px 1px #000;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: bold;
            font-family: inherit;
            padding: 10px;
            color: #fff;
            background: #4885c2; */
        }
            .carousel .header-title a:hover {
                box-shadow: 0 2px 6px #000
            }
        .carousel .header-title p {
            font-size: 20px;
            margin-bottom: 120px;
            color: #dc3545;
            font-weight: bold;
        }

        .carousel .dashboard-img {
            height: 332px;
            position: relative;
            top: 260px;
            left: 70px;
        }

        .carousel .dashboard-img img {
            height: 100%
        }

    

@media (max-width:991.98px) {
        .carousel .carousel-text h1 {
            font-size: 35px;
            margin-top: 70px
        }

        .carousel .carousel-text p {
            font-size: 16px
        }

        .carousel .carousel-text .btn {
            padding: 12px 30px;
            font-size: 15px;
            letter-spacing: 0
        }

        .carousel .dashboard-img {
            height: 195px;
            top: 0px;
            left: 0;
            justify-content: center;
            display: flex;
        }
}

@media (max-width:500px) {
    .carousel, .carousel .carousel-item, .carousel .carousel-text {
        height: 500px
    }

        .carousel .carousel-text h1 {
            font-size: 30px
        }

        .carousel .carousel-text .btn {
            padding: 10px 25px;
            font-size: 15px;
            letter-spacing: 0
        }

}

/**********
    section header
    *************/
.section-header {
    position: relative;
    text-align: start;
    margin-bottom: 45px
}

    .section-header p {
        text-align: justify;
        margin-bottom: 5px;
        position: relative;
        font-size: 17px
    }

    .section-header h2 {
        margin: 0 0 0 40px;
        position: relative;
        font-size: 50px;
        font-weight: 200
    }

    .section-header:lang(ar) h2 {
        font-size: 35px;
        font-weight: 400;
        font-family:"Electra Light Pro',sans-serif";
        padding-right: 10px;
    }

    .section-header h2::after {
        content: "";
        position: absolute;
        width: 200px;
        height: 30px;
        top: 23px;
        left: -40px;
        /* background-image: -o-repeating-linear-gradient( 45deg,rgba(0,0,0,.05),rgba(0,0,0,.05) 1.5%,rgba(0,0,0,.1) 4.5%,rgba(0,0,0,.1) 1%);
        background-image: repeating-linear-gradient( 45deg,rgba(0,0,0,.05),rgba(0,0,0,.05) 1.5%,rgba(0,0,0,.1) 4.5%,rgba(0,0,0,.1) 1%); */
    }

    .section-header:lang(ar) h2::after {
        right: -10px
    }

.section-title {
    font-size: 20px;
    font-family: monospace;
    padding: 12px 25px;
    margin-bottom: 20px;
    color: #fff;
    background-image: linear-gradient(to left,var(--text)10%,var(--color));
    width: max-content;
    border-radius: 15px 0 0 50px;
    font-weight: 600;
}

@media (max-width:991.98px) {
    .section-header {
        margin-top: 100px
    }

        .section-header h2 {
            font-size: 45px
        }
}

@media (max-width:767.98px) {
    .section-header h2 {
        font-size: 40px
    }
}

@media (max-width:575.98px) {
    .section-header h2 {
        font-size: 35px;
        margin: 0
    }
}

/**********
    Fact
    *************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0
}

    .fact .fact-item {
        position: relative;
        width: 108%;
        margin-bottom: 30px;
        padding: 30px 0 25px 0;
        text-align: center;
        background: #fff;
        border: 1px solid transparent;
        -webkit-box-shadow: 0 0 30px rgba(0,0,0,.1);
        box-shadow: 0 0 19px rgb(114 159 215 / 55%);
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }
        .fact .fact-item img {
            max-height: 50px;
            margin-bottom: 15px
        }

    .fact div:nth-of-type(3) img {
        -webkit-animation: icon 1s infinite;
        animation: icon 1s infinite
    }

    .fact div:nth-of-type(2) .fact-item:hover {
        background: #e0edfe87
    }

    .fact .fact-item h2 {
        font-size: 18px;
        font-weight: 300;
        letter-spacing: 1px;
        font-family: initial;
    }

@media (max-width:991.98px) {
    .fact {
        margin-top: 50px;
    }

        .fact .fact-item {
            width: 100%;
        }
}


/**********
      About
    *************/

.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
    text-align: start
}

    .about .section-header {
        margin-bottom: 30px;
        margin-left: 0
    }

    .about .about-img {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s
    }

        .about .about-img::after {
            position: absolute;
            content: "";
            top: 60px;
            right: 60px;
            bottom: 60px;
            left: 60px;
            background: 0 0;
            border: 30px solid;
            border-image: repeating-linear-gradient(45deg,rgba(0,0,0,.05),rgba(0,0,0,.05) .5%,rgba(0,0,0,.1) .5%,rgba(0,0,0,.1) 1%) 30;
            z-index: 1
        }

    .about .about-img-1 {
        position: relative;
        height: 100%;
        height: 100%;
        margin: 0 150px 150px 0
    }

    .about .about-img-2 {
        position: absolute;
        height: 100%;
        height: 100%;
        top: 150px;
        left: 150px;
        z-index: 1
    }

        .about .about-img-1 img, .about .about-img-2 img {
            position: relative;
            width: 100%
        }

    .about .about-text {
        margin-top: 25px
    }

        .about .about-text p {
            font-size: 16px;
            text-align: justify
        }

        .about .about-text a.btn {
            position: relative;
            margin-top: 15px;
            padding: 12px 25px;
            font-size: 20 px;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--color);
            border: 2px solid var(--color);
            border-radius: 0;
            background: 0 0;
            -webkit-transition: .3s;
            -o-transition: .3s;
            transition: .3s
        }

            .about .about-text a.btn:hover {
                color: var(--text);
                background: var(--color)
            }



.about-cols .about-col {
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.28);
    height: 100%
}

    .about-cols .about-col .img {
        position: relative;
    }

        .about-cols .about-col .img img {
            border-radius: 4px 4px 0 0;
        }

    .about-cols .about-col .icon {
        width: 64px;
        height: 64px;
        padding-top: 8px;
        text-align: center;
        position: absolute;
        background-color: var(--text);
        border-radius: 50%;
        text-align: center;
        border: 4px solid #fff;
        left: calc( 50% - 32px);
        bottom: -30px;
        transition: 0.3s;
    }

    .about-cols .about-col i {
        font-size: 36px;
        line-height: 1;
        color: #fff;
        transition: 0.3s;
    }

    .about-cols .about-col:hover .icon {
        background-color: #fff;
    }

    .about-cols .about-col:hover i {
        color: var(--text);
    }

    .about-cols .about-col h2 {
        color: #000;
        text-align: center;
        font-weight: 700;
        font-size: 20px;
        padding: 0;
        margin: 40px 0 12px 0;
    }

        .about-cols .about-col h2 a {
            color: rgb(15, 127, 191);
        }

            .about-cols .about-col h2 a:hover {
                color: var(--color);
            }

    .about-cols .about-col p {
        text-align: justify;
        font-size: 18px;
        line-height: 24px;
        color: #080808;
        margin-bottom: 0;
        padding: 0 20px 20px 20px;
        font-family: 'Electra Light Pro',sans-serif;
    }

@media (max-width:767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto
    }
    .about-cols .col-content {
        margin-bottom: 20px;
    }
}


/**********
    counters
    *************/
.counters {
    position: relative
}

    .counters .patteren {
        background: url(../img/patteren-min.png) no-repeat;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%
    }

    .counters .intro {
        background: url(../img/656684.jpg) no-repeat fixed;
        background-position: 50% 135px !important;
        color: #fff;
        height: 400px;
        margin: 0 auto;
        padding: 0;
        height: 100%;
    }

        .counters .intro .counter {
            text-align: center;
            padding: 60px;
            text-transform: uppercase;
            font-size: 24px;
            font-weight: 700;
            font-family: initial
        }

            .counters .intro .counter i {
                display: block;
                font-size: 33px;
                margin-bottom: 15px;
            }

            .counters .intro .counter span {
                font-size: 50px
            }

@media (max-width:767.98px) {
    .counters .intro .counter {
        font-size: 25px;
        font-weight: 500;
        margin-top: 25%
    }
}

@media (max-width:500.98px) {
    .counters .intro .counter {
        margin-left: 0;
        font-size: 25px;
        padding: 0;
    }
}


/**********
    service
    *************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    text-align: start;
}

    .service .service-item {
        position: relative;
        width: 100%;
        height: 80%;
        margin-bottom: 30px;
        padding: 30px;
        text-align: center;
        border: 1px solid rgba(0,0,0,.1);
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }
        /*.service .service-item:hover{border-color:transparent;-webkit-box-shadow:0 0 30px rgba(0,0,0,.1);box-shadow:0 0 30px rgba(0,0,0,.1)}*/

        .service .service-item img {
            max-height: 50px;
            margin-bottom: 20px
        }

        .service .service-item h3 {
            margin-bottom: 10px;
            font-size: 22px;
            font-weight: 300;
            letter-spacing: 1px;
            font-family: initial;
        }

        .service .service-item p {
            margin-bottom: 10px;
            font-size: 16px
        }

        .service .service-item a {
            position: relative;
            font-size: 16px;
            color: var(--text);
            -webkit-transition: .3s;
            -o-transition: .3s;
            transition: .3s
        }

            .service .service-item a::after {
                content: "";
                position: absolute;
                width: 80%;
                height: 2px;
                bottom: -3px;
                left: 10%;
                background: var(--text)
            }

    .service:lang(ar) .service-item a::after {
        top: 25px;
        right: 100%
    }

    .service .service-item:hover a.btn {
        color: var(--color);
        background: #1d2434;
        border-color: #1d2434
    }

/**********
    feature
    *************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
    text-align: start
}

    .feature .col-md-6 {
        height: 100%
    }

    .feature .feature-img {
        position: relative;
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

        .feature .feature-img::after {
            position: absolute;
            content: "";
            width: 100%;
            height: 70%;
            top: 30%;
            left: 0;
            border: 30px solid;
            border-image: repeating-linear-gradient(45deg,rgba(0,0,0,.05),rgba(0,0,0,.05) .5%,rgba(0,0,0,.1) .5%,rgba(0,0,0,.1) 1%) 30;
            z-index: 1
        }

        .feature .feature-img img {
            position: relative;
            max-width: 100%;
            max-height: 100%;
            z-index: 2
        }

@media (max-width:767.98px) {
    .feature {
        top: 100px;
    }

        .feature .feature-img {
            margin-bottom: 45px
        }
}

.feature .counters .col-6 {
    padding-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.feature .counters i {
    padding: 5px 15px 0 10px;
    font-size: 28px;
    color: var(--text)
}

.feature .counters h2 {
    position: relative;
    display: inline-block;
    color: var(--text);
    font-size: 30px;
    font-weight: 300
}

    .feature .counters h2::after {
        position: absolute;
        content: "+";
        top: -15px;
        right: -15px
    }

.feature:lang(ar) .counters h2::after {
    right: 40px
}

.feature .counters p {
    color: var(--color);
    font-size: 20px;
    margin: 0
}

@media (max-width:767.98px) {
    .feature .counters p {
        margin-left: -15px
    }
}

/**********
    clients
    *************/
.clients {
    padding: 35px 0;
    background-color: #89baef40;
    height: 330px;
}

    .clients img {
        max-width: 160px;
        max-height: 140px;
        opacity: .8;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        padding: 15px 10px
    }

        .clients img:hover {
            opacity: 1
        }

    .clients .owl-dots, .clients .owl-nav {
        margin-top: 5px;
        text-align: center
    }

    .clients .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd
    }

        .clients .owl-dot.active {
            background-color: var(--text)
        }

@media (max-width:991.98px) {
    .clients {
        padding: 0;
        height: 270px;
    }
}


/**********
   team
    *************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0
}

    .team .team-item {
        position: relative;
        margin-bottom: 75px
    }

    .team .team-img {
        position: relative
    }

        .team .team-img img {
            width: 100%
        }

    .team .team-text {
        position: absolute;
        width: calc(100% - 30px);
        height: 96px;
        bottom: -46px;
        left: 15px;
        padding: 25px 15px;
        text-align: center;
        background: rgba(256,256,256,.9);
        -webkit-box-shadow: 0 0 30px rgba(0,0,0,.1);
        box-shadow: 0 0 30px rgba(0,0,0,.1);
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        overflow: hidden
    }

        .team .team-text h2 {
            color: var(--text);
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 1px;
            margin-bottom: 10px
        }

        .team .team-text p {
            margin-bottom: 20px;
            color: var(--color)
        }

    .team .team-social {
        position: relative;
        font-size: 0
    }

        .team .team-social a {
            display: inline-block;
            width: 35px;
            height: 35px;
            margin: 0 3px;
            padding: 5px 0;
            text-align: center;
            font-size: 14px;
            color: var(--color);
            border: 2px solid var(--color);
            -webkit-transition: .3s;
            -o-transition: .3s;
            transition: .3s
        }

            .team .team-social a:hover {
                color: var(--text);
                border-color: var(--text)
            }

    .team .team-item:hover .team-text {
        height: 160px
    }


/**********
    testimonial
    *************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
    text-align: start
}

    .testimonial .testimonials-carousel {
        position: relative;
        width: calc(100% + 30px);
        margin: 0 -15px;
        direction: ltr
    }

    .testimonial .testimonial-item {
        position: relative;
        width: 100%;
        padding: 0 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        overflow: hidden
    }

        .testimonial .testimonial-item img {
            position: relative;
            width: 80px;
            border-radius: 80px;
            margin-bottom: 15px
        }

    .testimonial:lang(ar) .testimonial-item img {
        direction: rtl;
        left: 230px
    }

    .testimonial .testimonial-item p {
        margin-bottom: 15px
    }

    .testimonial .testimonial-item h2 {
        position: relative;
        color: var(--color);
        font-size: 16px;
        letter-spacing: 1px;
        margin-bottom: 5px;
        padding-bottom: 3px
    }

    .testimonial:lang(ar) .testimonial-item h2 {
        left: 230px
    }

    .testimonial .testimonial-item h2::before {
        position: absolute;
        content: "";
        width: 30px;
        height: 2px;
        bottom: 0;
        left: 0;
        background: var(--text);
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

    .testimonial .testimonial-item:hover h2::before {
        width: 60px
    }

    .testimonial:lang(ar) .testimonial-item:hover h2::before {
        width: 30px;
    }

    .testimonial:lang(ar) .testimonial-item h2::before {
        right: 0;
        left: 50px
    }

    .testimonial .testimonial-item h3 {
        color: #999;
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 2px;
        margin: 0
    }

    .testimonial:lang(ar) .testimonial-item h3 {
        left: 230px;
        position: inherit
    }

    .testimonial .owl-nav {
        position: relative;
        width: 100%;
        margin-top: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

        .testimonial .owl-nav .owl-next, .testimonial .owl-nav .owl-prev {
            position: relative;
            width: 100px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            color: var(--text);
            font-size: 25px;
            -webkit-transition: .3s;
            -o-transition: .3s;
            transition: .3s
        }

        .testimonial .owl-nav .owl-prev {
            padding-right: 80px
        }

        .testimonial .owl-nav .owl-next {
            padding-left: 80px
        }

            .testimonial .owl-nav .owl-next:hover, .testimonial .owl-nav .owl-prev:hover {
                color: var(--color)
            }

            .testimonial .owl-nav .owl-next::after, .testimonial .owl-nav .owl-prev::after {
                position: absolute;
                content: "";
                width: 80px;
                height: 3px;
                top: 11px;
                background: var(--text);
                -webkit-transition: .3s;
                -o-transition: .3s;
                transition: .3s
            }

        .testimonial .owl-nav .owl-prev::after {
            left: 9px
        }

        .testimonial .owl-nav .owl-next::after {
            right: 9px
        }

        .testimonial .owl-nav .owl-prev:hover::after {
            background: var(--color)
        }

        .testimonial .owl-nav .owl-next:hover::after {
            background: var(--color)
        }

/**********
    blog
    *************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0
}

    .blog .section-header {
        margin-bottom: 75px
    }

    .blog .blog-carousel {
        position: relative;
        width: calc(100% + 30px);
        left: -15px;
        right: -15px;
        direction: ltr
    }

    .blog .blog-item {
        position: relative;
        margin: 0 15px
    }

    .blog.blog-page .blog-item {
        margin: -30px 0 0 0
    }

    .blog .blog-img {
        position: relative;
        width: 100%;
        z-index: 1
    }

        .blog .blog-img img {
            width: 100%;
            height: 350px;
        }


    .blog .blog-content {
        position: relative;
        text-align: justify;
        width: calc(100% - 60px);
        top: -60px;
        left: 30px;
        padding: 25px 30px;
        background: #fff;
        -webkit-box-shadow: 0 0 30px rgba(0,0,0,.1);
        box-shadow: 0 0 30px rgba(0,0,0,.1);
        z-index: 2
    }

    .blog:lang(ar) .blog-content {
        direction: rtl;
    }

    .blog .blog-content h2 {
        font-size: 25px;
        font-weight: 400;
    }

    .blog .blog-meta {
        position: relative;
        margin-bottom: 15px
    }

        .blog .blog-meta * {
            display: inline-block;
            margin: 0;
            padding: 0;
            font-size: 14px;
            font-weight: 300;
            color: #797979
        }

        .blog .blog-meta i {
            color: var(--text);
            margin: 0 2px 0 10px
        }

            .blog .blog-meta i:first-child {
                margin-left: 0
            }

    .blog .blog-text {
        position: relative
    }

        .blog .blog-text p {
            margin-bottom: 10px
        }

    .blog a.bloglink {
        text-align: end;
        position: relative;
        font-size: 16px;
        color: #0668c4;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

    .blog .blog-text a:hover {
        color: var(--text);
    }

    .blog .blog-text a::after {
        content: "";
        position: absolute;
        width: 80%;
        height: 2px;
        bottom: -3px;
        left: 10%;
        background: var(--color)
    }

    .blog .blog-item a.btn {
        position: relative;
        padding: 0 0 0 35px;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 1px;
        color: var(--text);
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

        .blog .blog-item a.btn:hover {
            color: var(--color)
        }

        .blog .blog-item a.btn::before {
            position: absolute;
            content: "";
            width: 30px;
            height: 2px;
            top: 10px;
            left: 0;
            background: var(--text)
        }

    .blog .owl-nav {
        position: relative;
        width: 100%;
        margin-top: -30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

        .blog .owl-nav .owl-next, .blog .owl-nav .owl-prev {
            position: relative;
            width: 100px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            color: var(--text);
            font-size: 25px;
            -webkit-transition: .3s;
            -o-transition: .3s;
            transition: .3s
        }

        .blog .owl-nav .owl-prev {
            padding-right: 80px
        }

        .blog .owl-nav .owl-next {
            padding-left: 80px
        }

            .blog .owl-nav .owl-next:hover, .blog .owl-nav .owl-prev:hover {
                color: var(--color)
            }

            .blog .owl-nav .owl-next::after, .blog .owl-nav .owl-prev::after {
                position: absolute;
                content: "";
                width: 80px;
                height: 3px;
                top: 11px;
                background: var(--text);
                -webkit-transition: .3s;
                -o-transition: .3s;
                transition: .3s
            }

        .blog .owl-nav .owl-prev::after {
            left: 9px
        }

        .blog .owl-nav .owl-next::after {
            right: 9px
        }

        .blog .owl-nav .owl-prev:hover::after {
            background: var(--color)
        }

        .blog .owl-nav .owl-next:hover::after {
            background: var(--color)
        }

    .blog .pagination {
        margin-bottom: 0
    }

        .blog .pagination .page-link {
            margin-top: -30px;
            color: var(--color);
            border-radius: 0;
            border-color: var(--color)
        }

            .blog .pagination .page-item.active .page-link, .blog .pagination .page-link:hover {
                color: var(--text);
                background: var(--color)
            }

        .blog .pagination .disabled .page-link {
            color: #999
        }

/**********
    contact
    *************/
.google_map {
    text-align: center
}

.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    margin-top:120px;

}

    .contact .contact-info {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 30px;
        border: 1px solid rgba(0,0,0,.1);
        margin-bottom: 30px;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

        .contact .contact-info:hover {
            border-color: transparent;
            -webkit-box-shadow: 0 0 30px rgba(0,0,0,.1);
            box-shadow: 0 0 30px rgba(0,0,0,.1)
        }

    .contact .contact-icon {
        position: relative;
        width: 50px;
        height: 50px;
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: 1px solid rgba(0,0,0,.1)
    }

        .contact .contact-icon i {
            font-size: 18px;
            color: var(--text)
        }

    .contact .contact-text {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0 15px;
        text-align: start
    }

        .contact .contact-text h3 {
            font-size: 16px;
            color: var(--color);
            letter-spacing: 1px
        }

        .contact .contact-text p {
            margin: 0;
            font-size: 16px
        }

    .contact .contact-form {
        position: relative;
        padding: 30px;
        border: 1px solid rgba(0,0,0,.1);
        margin-bottom: 30px;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

        .contact .contact-form:hover {
            border-color: transparent;
            -webkit-box-shadow: 0 0 30px rgba(0,0,0,.1);
            box-shadow: 0 0 30px rgba(0,0,0,.1)
        }

        .contact .contact-form input {
            padding: 20px;
            background: 0 0;
            border-radius: 0;
            border: 1px solid rgba(0,0,0,.1)
        }

        .contact .contact-form textarea {
            height: 100px;
            padding: 8px 15px;
            background: 0 0;
            border-radius: 0;
            border: 1px solid rgba(0,0,0,.1)
        }

        .contact .contact-form .btn {
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            border: 0;
            color: #fff;
            border-radius: 50px !important;
            font-family: 'Times New Roman', Times, serif;
            background: linear-gradient(to right,var(--color),65%,var(--text) );
            -webkit-transition: .3s;
            -o-transition: .3s;
            transition: .3s
        }

            .contact .contact-form .btn:hover {
                background: linear-gradient(to right,var(--color),var(--color));
                box-shadow: 1px 1px 10px #999;
            }

    .contact .help-block ul {
        margin: 0;
        padding: 0;
        list-style-type: none
    }

    .contact .contact-form .form-control:focus {
        border-color: var(--text);
        -webkit-box-shadow: 0 0 3px var(--text);
        box-shadow: 0 0 3px var(--text)
    }

@media (max-width:900px){
    .contact{
        margin-top:0px;
    }
}
/**********
   footer
    *************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: var(--color);
    text-align: start
}

    .footer .footer-contact, .footer .footer-link, .footer .footer-newsletter {
        position: relative;
        color: #fff;
        margin-bottom:10px;
    }

        .footer .footer-contact .terms {
            cursor:pointer; 
            color:#fff;
        }
            .footer .footer-contact .terms:hover{
                color:var(--text);
            }
     
            .footer .footer-contact h2, .footer .footer-link h2, .footer .footer-newsletter h2 {
                position: relative;
                margin-bottom: 30px;
                padding-bottom: 10px;
                font-size: 22px;
                font-weight: 300;
                letter-spacing: 1px;
                color: #fff
            }

            .footer .footer-contact h2::after, .footer .footer-link h2::after, .footer .footer-newsletter h2::after {
                position: absolute;
                content: "";
                width: 45px;
                height: 2px;
                bottom: 0;
                left: 0;
                background: var(--text)
            }

    .footer:lang(ar) .footer-contact h2::after, .footer:lang(ar) .footer-link h2::after, .footer:lang(ar) .footer-newsletter h2::after {
        position: absolute;
        content: "";
        width: 45px;
        height: 2px;
        bottom: 0;
        right: 0;
        background: var(--text)
    }

    .footer .footer-link a {
        display: block;
        margin-bottom: 10px;
        color: #fff;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

        .footer .footer-link a::before {
            position: relative;
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin: 0 5px
        }

        .footer .footer-link a:hover {
            color: var(--text);
            letter-spacing: 1px
        }

    .footer .footer-contact p i {
        width: 25px
    }

    .footer .footer-social {
        position: relative;
        margin-top: 20px;
        margin: 0
    }

        .footer .footer-social a {
            display: inline-block
        }

            .footer .footer-social a i {
                margin: 0 6px;
                width: 42px;
                text-align: center;
                font-size: 18px;
                color: #fff;
                border: 1px solid #fff;
                border-radius: 50%;
                padding: 10px
            }

            .footer .footer-social a:hover i {
                color: var(--color);
                background-color: #fff
            }

    .footer .footer-newsletter .form {
        position: relative;
        width: 100%
    }

    .footer .footer-newsletter input {
        height: 60px;
        border-radius: 0
    }

    .footer:lang(en) .footer-newsletter .btn {
        position: absolute;
        top: 8px;
        right: 8px;
        height: 44px;
        padding: 9px 32px;
        font-size: 20px;
        font-weight: 600;
        border: 0;
        color: #fff;
        border-radius: 50px !important;
        font-family: 'Times New Roman', Times, serif;
        background: linear-gradient(to right,var(--color),65%,var(--text) );
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

    .footer:lang(ar) .footer-newsletter .btn {
        position: absolute;
        top: 8px;
        left: 8px;
        height: 44px;
        padding: 9px 32px;
        font-size: 20px;
        font-weight: 600;
        border: 0;
        color: #fff;
        border-radius: 0;
        font-family: 'Times New Roman', Times, serif;
        background: linear-gradient(to right,var(--color),65%,var(--text) );
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s
    }

    .footer .footer-newsletter .btn:hover {
        background: linear-gradient(to right,var(--color),var(--color));
        box-shadow: 1px 1px 10px #999;
    }

    .footer .copyright {
        direction: ltr;
        padding: 0 30px;
        text-align: center;
        border-top: 1px solid #797979;
        padding: 15px 0
    }

        .footer .copyright .row {
            padding-top: 25px;
            padding-bottom: 25px;
            border-top: 1px solid rgba(256,256,256,.1)
        }

        .footer .copyright p {
            margin: 0;
            color: #999
        }

        .footer .copyright .col-md-6:last-child p {
            text-align: end
        }

        .footer .copyright p a {
            color: #fff
        }

            .footer .copyright p a:hover {
                color: var(--text)
            }

@media (max-width:767.98px) {
    .footer .copyright .col-md-6:last-child p, .footer .copyright p {
        margin: 5px 0;
        text-align: center
    }
}


/**********
    service page
    *************/
.service-page {
    margin-top: 150px;
    text-align: start
}

    .service-page .tabService {
        margin-right: -10px
    }

    .service-page ul {
        list-style: none
    }

        .service-page ul li {
            margin-bottom: 10px;
            display: inline-block;
            width: 100%
        }

            .service-page ul li a {
                text-transform: capitalize;
                width: 100%;
                padding: 30px 30px;
                display: inline-block;
                background-color: var(--color);
                font-size: 20px;
                color: #fff;
                letter-spacing: .5px;
                font-weight: 700;
                -webkit-transition: all .3s;
                -o-transition: all .3s;
                transition: all .3s
            }

            .service-page ul li .tablinks.activetab, .service-page ul li .tablinks:hover {
                color: var(--text)
            }

            .service-page ul li a i {
                float: right;
                margin-top: 5px
            }

    .service-page:lang(ar) ul li a i {
        float: left
    }



.tabs-content {
    margin-left: 30px;
    text-align: end;
    display: inline-block;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.tabs-content {
    text-align: start;
    height: auto
}

    .tabs-content img {
        max-width: 100%;
        overflow: hidden
    }

    .tabs-content h4 {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: .25px;
        margin-bottom: 15px;
        margin-top: 30px
    }

    .tabs-content p {
        font-size: 14px;
        color: #7a7a7a;
        margin-bottom: 0
    }

.inf {
    margin-left: 100px;
    margin-top: 10px;
    text-align: center;
    width: 100%
}

.infSmall {
    display: none;
    margin-left: 100px;
    margin-top: 10px;
    text-align: center
}

.inf .inf-contect {
    text-align: start;
    padding-left: 15px
}

.inf .inf-img {
    height: 194px;
    overflow: hidden;
    width: 400px;
    cursor: pointer;
    padding-left: 15px
}

    .inf .inf-img img {
        width: 520px;
        height: 194px;
        max-width: none;
        margin-top: 20px;
        -webkit-transition: all .5s ease;
        -o-transition: all .5s ease;
        transition: all .5s ease
    }

        .inf .inf-img img:hover {
            width: 700px;
            height: 250px;
            margin: -40px 0 -180px -50px
        }

@media (max-width:767.98px) {
    .service-page .tabService {
        padding: 0;
        margin-top: -100px
    }

    .tabs-content {
        margin-left: 0
    }

    .inf {
        display: none
    }

    .infSmall {
        display: block;
        margin-left: 0
    }

        .infSmall h5, h3 {
            font-size: 20px;
            margin-top: 15px
        }

        .infSmall .inf-contect {
            text-align: start;
            padding-left: 15px
        }

        .infSmall .inf-img {
            height: 160px;
            overflow: hidden;
            width: 300px;
            cursor: pointer;
            padding-left: 15px
        }

            .infSmall .inf-img img {
                width: 300px;
                height: 140px;
                max-width: none;
                margin-top: 20px;
                -webkit-transition: all .5s ease;
                -o-transition: all .5s ease;
                transition: all .5s ease
            }

                .infSmall .inf-img img:hover {
                    width: 450px;
                    height: 250px;
                    margin: -40px 0 -180px -50px
                }
}
/************
    Loading screen
    ****************/

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #151f30;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.sk-chase {
    width: 40px;
    height: 40px;
    top: 45%;
    position: relative;
    margin: 0px auto;
    -webkit-animation: sk-chase 2.5s infinite linear both;
    animation: sk-chase 2.5s infinite linear both
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: sk-chase-dot 2s infinite ease-in-out both;
    animation: sk-chase-dot 2s infinite ease-in-out both
}

    .sk-chase-dot:before {
        content: '';
        display: block;
        width: 25%;
        height: 25%;
        background-color: #fff;
        border-radius: 100%;
        -webkit-animation: sk-chase-dot-before 2s infinite ease-in-out both;
        animation: sk-chase-dot-before 2s infinite ease-in-out both
    }

    .sk-chase-dot:nth-child(1) {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s
    }

    .sk-chase-dot:nth-child(2) {
        -webkit-animation-delay: -1s;
        animation-delay: -1s
    }

    .sk-chase-dot:nth-child(3) {
        -webkit-animation-delay: -.9s;
        animation-delay: -.9s
    }

    .sk-chase-dot:nth-child(4) {
        -webkit-animation-delay: -.8s;
        animation-delay: -.8s
    }

    .sk-chase-dot:nth-child(5) {
        -webkit-animation-delay: -.7s;
        animation-delay: -.7s
    }

    .sk-chase-dot:nth-child(6) {
        -webkit-animation-delay: -.6s;
        animation-delay: -.6s
    }

    .sk-chase-dot:nth-child(1):before {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s
    }

    .sk-chase-dot:nth-child(2):before {
        -webkit-animation-delay: -1s;
        animation-delay: -1s
    }

    .sk-chase-dot:nth-child(3):before {
        -webkit-animation-delay: -.9s;
        animation-delay: -.9s
    }

    .sk-chase-dot:nth-child(4):before {
        -webkit-animation-delay: -.8s;
        animation-delay: -.8s
    }

    .sk-chase-dot:nth-child(5):before {
        -webkit-animation-delay: -.7s;
        animation-delay: -.7s
    }

    .sk-chase-dot:nth-child(6):before {
        -webkit-animation-delay: -.6s;
        animation-delay: -.6s
    }

@-webkit-keyframes sk-chase {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes sk-chase {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes sk-chase-dot {
    100%,80% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes sk-chase-dot {
    100%,80% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes sk-chase-dot-before {
    50% {
        -webkit-transform: scale(.4);
        transform: scale(.4)
    }

    0%,100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes sk-chase-dot-before {
    50% {
        -webkit-transform: scale(.4);
        transform: scale(.4)
    }

    0%,100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.menu-lang {
    background: #fff;
    text-align: right;
    position: absolute;
    z-index: 55;
    border: 1px dashed var(--text);
    list-style: none;
    color: var(--color);
    border-radius: 5px;
    display: none
}

    .menu-lang li {
        padding: 5px
    }

    .menu-lang:hover {
        background-color: var(--text);
        color: #fff
    }

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.lang {
    cursor: pointer
}

/***************
    price list
    ************/
.price-section {
    padding: 50px 0px;
}

    .price-section P {
        color: #000;
        font-family: 'Times New Roman', Times, serif;
        font-size: 20px;
    }

    .price-section .price-list {
        /*   padding: 20px;*/
        box-shadow: 0px 0px 10px #0866ac;
        border-radius: 35px;
        text-align: center;
        font-family: initial;
        color: var(--color);
        margin-bottom: 20px;
        transition: 0.5s;
    }

        .price-section .price-list:hover {
            border: 1px solid #0796fe8c;
            box-shadow: none
        }

        .price-section .price-list h4 {
            padding: 19px 0;
        }

        .price-section .price-list .price-num {
            background: linear-gradient(to right,var(--color),65%,var(--text) );
            color: #fff;
            padding: 10px;
            margin: 0px -8px 26px -8px;
            border-radius: 4px;
        }

            .price-section .price-list .price-num h2 {
                font-size: 50px;
                font-weight: bold;
                color: #fff;
            }

        .price-section .price-list .icon-price img {
            width: 31%;
            padding: 5px;
        }

        .price-section .price-list .pricing-details ul {
            margin: 0;
            padding: 0;
        }

        .price-section .price-list .pricing-details li {
            list-style: none;
            line-height: 30px;
            color: #334c6e;
            padding: 6px 20px;
            font-size: 17px;
            text-align: start;
        }

            .price-section .price-list .pricing-details li:nth-child(odd) {
                background: #e3e3e385
            }

            .price-section .price-list .pricing-details li i {
                padding: 0 15px;
            }

                .price-section .price-list .pricing-details li i.false {
                    position: relative;
                    color: #b60909;
                }

                .price-section .price-list .pricing-details li i.correct {
                    color: #1b8c03;
                }

        .price-section .price-list .pricing-details .morefeaturebtn {
            border: 0;
            text-align: center;
            width: 106px;
            border-bottom: 1px solid;
            background: transparent;
            display: inline-block;
            cursor: pointer;
            margin: 10px 30px;
        }

.more {
    display: none;
}

.price-section .price-list .pricing-details .btn {
    padding: 6px 26px;
    margin: 15px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 0;
    color: #fff;
    background: linear-gradient(to right,var(--color),65%,var(--text) );
    border-radius: 50px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: 0.3s
}

.price-section .price-list:hover .pricing-details .btn {
    background: linear-gradient(to right,var(--color),var(--color));
    box-shadow: 1px 1px 10px #999;
}


/*/************
         servise
   *** *********/
.services {
    margin-top: 100px;
    margin-bottom: 20px;
}

    .services .services-container {
        width: 1000px;
        position: relative;
        display: flex;
        justify-content: space-between;
    }

    .services .services-card {
        position: relative;
        height: 400px;
    }

        .services .services-card .services-content {
            width: 250px;
            height: 180px;
            margin: 0 10px;
            transition: 0.5s
        }

            .services .services-card .services-content.card-title {
                position: relative;
                text-align: center;
                background-color: #fff;
                border: 1px solid rgba(0,0,0,.1);
                box-shadow: 0px -4px 5px #c8c8c8;
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 3;
                transform: translateY(50px);
            }

                .services .services-card .services-content.card-title img {
                    max-height: 50px;
                    margin-bottom: 20px;
                    margin-top: 20px;
                }

                .services .services-card .services-content.card-title h3 {
                    margin-bottom: 10px;
                    font-size: 22px;
                    font-weight: 300;
                    letter-spacing: 1px;
                    font-family: initial;
                }

                .services .services-card .services-content.card-title i {
                    margin-top: 15px;
                    margin-bottom: 15px;
                }

        .services .services-card:hover .services-content.card-title {
            transform: translateY(0px);
            background-color: #0e375b;
            color: #fff
        }

            .services .services-card:hover .services-content.card-title h3 {
                color: #fff;
            }

        .services .services-card .services-content.card-title .content {
            transition: 0.5s
        }

        .services .services-card .services-content.card-content {
            position: relative;
            background: #fff;
            text-align: start;
            padding: 20px;
            border: 1px solid rgba(0,0,0,.1);
            transform: translateY(-120px);
            font-size: 14px;
            text-align: justify;
            z-index: 2;
            height: 270px;
            visibility: hidden;
        }

        .services .services-card:hover .services-content.card-content {
            transform: translateY(0px);
            visibility: visible;
        }

        .services .services-card .services-content.card-content p {
            text-align: justify;
            font-size: 14px;
            line-height: 24px;
            color: #0a0a0a;
            margin-bottom: 0;
            padding: 0 20px 20px 20px;
        }

@media (max-width:800px) {
    .services {
        margin-top: 140px;
    }

        .services .services-card {
            margin-bottom: 60px;
        }

            .services .services-card .services-content.card-title {
                transform: translateY(0px);
                background-color: #0e375b;
                color: #fff
            }

                .services .services-card .services-content.card-title h3 {
                    color: #fff
                }

            .services .services-card .services-content.card-content {
                transform: translateY(0px);
            }

            .services .services-card .services-content {
                margin: 0 33px
            }
}
 /* ******************
     terms
 *******************/

/*terms & conditions*/
.terms-model {
    text-align: start;
    position: relative;
    top: 100px;
    padding: 30px;
}


.conditionsbody h4 {
    color: #063e67;
    font-style: italic;
}

    .conditionsbody h4 i {
        color: #063e67;
        font-size: 15px;
        padding: 0 10px;
    }

.conditionsbody p, .conditionsbody h5 {
    font-size: 17px;
    font-family: system-ui;
    padding: 0 20px;
    color: #000000;
}

.conditionsbody h5 {
    font-weight: 400
}
@media (max-width:900px){
    .terms-model {
    top:20px
    }
    }

/* vedio-helper*/
.video-helper{
    margin:20px 0;
}
    .video-helper .video-content {
        display: flex;
        justify-content: center;
    }
    .video-helper video {
        width: 700px;
    }

@media (max-width:900px) {
    .video-helper video {
        width: 100%;
    }

}

