/*  Table of Contents
========================================================
1. GOOGLE FONTS
2. GENERAL
3. BUTTONS
4. HEADERS
5. HOME INTRO
6. SECTION TITLES
7. ICON BOXES
8.SKILLS
9.COUNTER
10. PROJECTS SECTION (PORTFOLIO)
11. TEAM
12. PRICES
13. BLOG
14. TESTIMONIALS CLIENTS SAY
15. CONTACT US
16. FOOTER
/*  ----------------------------------------------------
1. IMPORT GOOGLE FONTS
-------------------------------------------------------- */
@import "bootstrap-rtl.min.css";
@font-face {
	font-family: "Yekan";
	src: url('../fonts/Yekan.woff');
}
@font-face {
	font-family: "Num";
	src: url('../fonts/Num.woff');
}
/*  ----------------------------------------------------
2. GENERAL
-------------------------------------------------------- */
body {
    color: #777;
    height: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Yekan", Num, sans-serif;
    background-color: #FFFFFF;
    min-height: 2000px;
}

::-moz-selection {
    background: #0195ec;
    color: #FFF;
    text-shadow: none;
}

::selection {
    background: #0195ec;
    color: #FFF;
    text-shadow: none;
}

li {
    list-style: none;
}

a {
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
a:hover {
    color: #0195ec;
    text-decoration: none !important;
    outline: none !important;
}
a:active, a:focus {
    outline: none !important;
    text-decoration: none !important;
    color: #0174ba;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 25px;
    color: #3c3c3c;
    font-family: "Yekan", Num, sans-serif;
    margin-bottom: 24px;
    margin-top: 0;
    padding: 0;
}


.bg_gray{
    background-color: #f8f8f8;
}
.bg_light{
    background-color: #FFFFFF;
}


h1{ font-size: 42px;    font-weight: normal;  }
h2 {  font-size: 36px;   }
h3 {  font-size: 18px; }
h4 {  font-size: 16px; }
h5 {  font-size: 13px;   font-weight: normal;  }
h6 {  font-size: 12px;   font-weight: normal;  }
p{
    font-size: 14px;
    margin: 0 0 25px 0;
    color: #747474;
    line-height: 25px;
    font-family: "Yekan", Num, sans-serif;
}
@media all and (max-width: 767px) {
    h1{ font-size: 28px;   font-weight: normal;  }
    h2 {  font-size: 24px;   }
    h3 {  font-size: 16px;   }
    h4 {  font-size: 14px;  }
    h5 {  font-size: 12px;  font-weight: normal;  }
    h6 {  font-size: 11px;  font-weight: normal;  }
    p{  font-size: 12px;  }
}



/* 2.1  GO TO TOP BUTTON */


.go-to-top {
    background-color: #81b43f;
    color: #e6e6e6;
    position: fixed;
    bottom: 10px;
    left: 10px;
    text-align: center;
    padding: 4px;
    display: block;
    width: 30px;
    height: 30px;
    z-index: 99999;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-radius: 2px;
    font-size: 14px;
}
.go-to-top:hover{
    background-color: #2098d1;
    color: #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}


/* 2.2 PRELOADER  */

#loading{
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    margin-top: 0;
    top: 0;
}
#loading-center{
    width: 100%;
    height: 100%;
    position: relative;
}
#loading-center-absolute {
    position: absolute;
    right: 50%;
    top: 50%;
    height: 200px;
    width: 200px;
    margin-top: -100px;
    margin-right: -100px;
}
.object{
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    position: absolute;
    border-right: 5px solid #0099ff;
    border-left: 5px solid #82b540 ;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    -webkit-animation: animate 2s infinite;
    animation: animate 2s infinite;
}

#object_one{
    right: 75px;
    top: 75px;
    width: 50px;
    height: 50px;
}

#object_two{
    right: 65px;
    top: 65px;
    width: 70px;
    height: 70px;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

#object_three{
    right: 55px;
    top: 55px;
    width: 90px;
    height: 90px;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
#object_four{
    right: 45px;
    top: 45px;
    width: 110px;
    height: 110px;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;

}

@-webkit-keyframes animate {


    50% {
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

}

@keyframes animate {

    50% {
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }


}

/*2.3 padding*/
.p-tb10{
    padding: 10px 0;
}
.p-tb20{
    padding: 20px 0;
}
.p-tb30{
    padding: 30px 0;
}
.p-tb40{
    padding: 40px 0;
}
.p-tb50{
    padding: 50px 0;
}
.p-tb60{
    padding: 60px 0;
}
.p-tb70{
    padding: 70px 0;
}
.p-tb80{
    padding: 80px 0;
}
.p-tb90{
    padding: 90px 0;
}
.p-tb100{
    padding: 100px 0;
}
.p-b70{
    padding-bottom: 70px;
}
.p-t70{
    padding-top: 70px;
}

.m-b60{
    margin-bottom: 60px;
}
.m-b40{
    margin-bottom: 40px;
}


/*  ----------------------------------------------------
3. BUTTONS
-------------------------------------------------------- */
.button{
    display: inline-block;
    padding: 8px 15px;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    font-family: 'Yekan', Num, sans-serif;
    text-transform: capitalize;
    text-shadow: none;
    font-weight: normal !important;
    letter-spacing: 0;
    min-width: 130px;
    margin: 5px;
}
.btn_blue_white{
    background-color: #0099ff !important;
    color: #e7e7e7 !important;
}
.btn_blue_white:hover{
    background-color: #FFFFFF !important;
    color: #0099ff !important;
    box-shadow: 0 0 1px rgba(133, 133, 133, 0.44);
}

.btn_green_white{
    background-color: #82b540 !important;
    color: #e7e7e7 !important;
}
.btn_green_white:hover{
    background-color: #FFFFFF !important;
    color: #82b540 !important;
    box-shadow: 0 0 1px rgba(133, 133, 133, 0.44);
}



/*  ----------------------------------------------------
4. HEADERS
-------------------------------------------------------- */
.header-one{
    padding: 25px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.header-one .logo{
    color: #81b43f;
    font-size: 26px;
    text-transform: capitalize;
}
.header-one ul.navbar-nav li a{
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Yekan', Num, sans-serif;
    color: #FFFFFF;
    background-color: transparent !important;
    padding: 20px 15px;
    font-weight: normal;
    letter-spacing: normal;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    max-width: 100%;
    white-space: normal;
}

.header-one.sticky_header{
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.11);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.11);
    box-shadow: 0 1px 3px rgba(0,0,0,0.11);
    padding: 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -o-transition: all .2s ease 0s;
    background-color: #fff;

}
.header-one.sticky_header .logo{
    padding: 5px;
}
.header-one ul.navbar-nav li{
    background: transparent !important;
}

.header-one.sticky_header ul.navbar-nav li a{
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Yekan', Num, sans-serif;
    background-color: transparent !important;
    padding: 20px 15px;
    font-weight: normal;
    letter-spacing: normal;
    color: #4c4c4c;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    max-width: 100%;
    white-space: normal;
}

.header-one ul.navbar-nav li.active a,.header-one ul.navbar-nav li a:hover{
    color: #0098fe;
}
.mobile_menu_btn{
    border: solid 1px #777;
}
.mobile_menu_btn span{
    background-color: #555;
}

@media (max-width: 992px) {
    .header-one ul.navbar-nav li a {
        padding: 15px 7px;
        font-size: 14px;
    }
    .header-one.sticky_header ul.navbar-nav li a{
        padding: 20px 7px;
        height: 100%;
        display: block;
        font-size: 10px;
    }

    .header_menu{
        margin-left: 15px;
    }

}

@media (max-width:768px) {
    .header-one, .header-one.sticky_header {
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
        -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        -o-transition: all .2s ease 0s;
        background-color: #fff;
        height: auto;
        padding: 0;
    }

    .header-one .logo,.header-one.sticky_header .logo {
        padding: 5px;
    }

    .navbar-fixed-top .navbar-collapse {
        max-height: 100vh;
    }

    .header_menu {
        float: none !important;
    }

    .header-one.sticky_header ul.navbar-nav li a, .header-one ul.navbar-nav li a {
        padding: 15px;
        display: block;
        width: 100%;
        color: #4c4c4c;
    }
    .header-one ul.navbar-nav li.active a,.header-one ul.navbar-nav li a:hover ,.header-one.sticky_header ul.navbar-nav li.active a,.header-one.sticky_header ul.navbar-nav li a:hover{
        color: #0098fe;
    }
}




/*  ----------------------------------------------------
5. HOME INTRO
-------------------------------------------------------- */

/*home intro one parallax background */

.home_intro_one{
    min-height: 500px;
    height: 100vh;
    display: table;
    width: 100%;
    vertical-align: middle;
}
.home_intro_inner{
    display: table-cell;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, 0.75);
}
.home_intro_inner h1 {
    line-height: 40px;
    color: #ffffff;
    font-weight: normal;
    letter-spacing: normal;
    font-size: 42px;
    -webkit-font-smoothing: antialiased;
    text-transform: capitalize;
    margin-bottom: 15px;

}
.home_intro_inner p{
    font-family: "Yekan", Num, sans-serif;
    font-size: 16px;
    max-width: 600px;
    color: #fafafa;
    font-weight: normal;
    margin: 25px 0;
    letter-spacing: normal;
}

@media (max-width: 992px) {
    .home_intro_one {
        height: 600px;
        display: table;
        width: 100%;
        vertical-align: middle;
    }

}

@media (max-width: 768px) {
    .home_intro_inner h1 {
        line-height: 44px;
        color: #ffffff;
        font-weight: normal;
        letter-spacing: normal;
        font-size: 28px;
        -webkit-font-smoothing: antialiased;
        text-transform: capitalize;
        margin-bottom: 15px;
    }
    .home_intro_inner p {
        font-family: "Yekan", Num, sans-serif;
        font-size: 14px;
        max-width: 600px;
        color: #fafafa;
        font-weight: normal;
        margin: 20px 0;
        letter-spacing: normal;
    }
}





/*home intro two Carousel animated */
.home_intro_two .carousel {
    height: 700px;
    width: 100%;
    display: block;
    background-color: rgba(186, 186, 186, 0.35);
}

.home_intro_two .carousel-inner,.carousel-inner .item {
    width: 100%;
    height: 100%;
}

.carousel-inner .item{
    opacity: 0;
}
.carousel-inner .item.active{
    opacity: 1;
}

.carousel-control {
    z-index: 2;
}
.carousel-control{
    width: 40px;
    height: 100px;
    text-align: center;
    padding: 40px 0;
    top: 45%;
    background-color: rgba(255, 255, 255, 0.73);
    color: #2098d1 !important;
    background-image: none !important;
}
.intro_carousel-overlay{
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    background-color: rgba(29, 29, 29, 0.59);
}
.intro_carousel-content{
    text-align: center;
    position: relative;
    top: 40%;
}


.intro_carousel-content h1 {
    line-height: 40px;
    color: #ffffff;
    font-weight: normal;
    letter-spacing: normal;
    font-size: 42px;
    -webkit-font-smoothing: antialiased;
    text-transform: capitalize;
    margin:0;

}
.intro_carousel-content p{
    font-family: "Yekan", Num, sans-serif;
    font-size: 16px;
    max-width: 600px;
    color: #fafafa;
    font-weight: normal;
    margin: 25px auto;
    letter-spacing: normal;
}




/*home intro three  */

.home_intro_three {
    height: 100vh;
    min-height: 500px;
    display: table;
    width: 100%;
    vertical-align: middle;
}

.home_intro_three .intro_text_box{
    text-align: center;
}
.home_intro_three  .home_intro_inner h1 {
    line-height: 40px;
    color: #ffffff;
    font-weight: normal;
    letter-spacing: normal;
    font-size: 42px;
    -webkit-font-smoothing: antialiased;
    text-transform: capitalize;
    margin-bottom: 15px;

}
.home_intro_three .home_intro_inner p{
    font-family: "Yekan", Num, sans-serif;
    font-size: 16px;
    max-width: 800px;
    color: #fafafa;
    font-weight: normal;
    margin: 25px auto;
    letter-spacing: normal;
}




/*home intro four  */
.home_intro_four{
    height: 100vh;
    min-height: 500px;
    display: table;
    width: 100%;
    vertical-align: middle;
}

.home_intro_four .intro_text_box{
    text-align: center;
}
.home_intro_four  .intro_four_title{
    line-height: 40px;
    color: #0099ff;
    font-weight: normal;
    letter-spacing: normal;
    font-size: 42px;
    -webkit-font-smoothing: antialiased;
    text-transform: capitalize;
    margin-bottom: 15px;

}
.home_intro_four .rotate_font_big{
    font-size: 58px;
    font-family: "Yekan", Num, sans-serif;
    color: #96d644;
    font-weight: 200;
}
.home_intro_four .home_intro_inner p{
    font-family: "Yekan", Num, sans-serif;
    font-size: 16px;
    max-width: 800px;
    color: #fafafa;
    font-weight: normal;
    margin: 25px auto;
    letter-spacing: normal;
}





/*home intro five  */
.home_intro_five{
    height: 100vh;
    min-height: 500px;
    display: table;
    width: 100%;
    vertical-align: middle;
}
.intro_owl_carousel .item {
    padding: 15px;
}
.intro_owl_text{
    text-align: center;
    max-width: 750px;
    margin:0 auto;
}
.intro_owl_text h3{
    font-size: 38px;
    font-weight: normal;
    letter-spacing: normal;
    color: #2098d1;
    text-transform: capitalize;
}
.intro_owl_text p{
    font-family: "Yekan", Num, sans-serif;
    font-size: 16px;
    color: #fafafa;
    font-weight: normal;
    margin: 25px auto;
    letter-spacing: normal;
    max-width: none;
    text-align: center;
}


/*home intro six*/


.home_intro_six{
    min-height: 500px;
    height: 100vh;
    display: table !important;
    width: 100%;
    vertical-align: middle;
}
.home_intro_six_inner{
    position: absolute;
    z-index:0;
    min-width: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    overflow: hidden;
}

/*  ----------------------------------------------------
6.SECTION TITLES
-------------------------------------------------------- */
.section_title{
    text-align: center;
    display: block;
}
.section_title h2{
    margin: 0;
    padding: 0;
    font-weight: normal;
    color: #0098fe;
    text-transform: capitalize;
}
.section_title h5{
    font-weight: normal;
    position: relative;
    text-transform: uppercase;
    margin: 15px auto 5px;
    color: #555;
}




/*  ----------------------------------------------------
7. ICON BOXES
-------------------------------------------------------- */
.icon_box_one{
    position: relative;
    padding-right: 60px;
    cursor: pointer;
}
.icon_box_one .icon_div {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    text-align: center;
}
.icon_box_one .icon_div i {
    font-size: 30px;
    color: #0098fe;
    padding: 0 10px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.icon_box_one h4 {
    margin-top: 0;
    color: #2098d1;
    font-weight: normal;
    text-transform: capitalize;
    margin-bottom: 10px;

}
.icon_box_one:hover .icon_div i ,.icon_box_one:hover h4  {
    color: #81b43f;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}


.icon_box_two{
    text-align: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 0;
    margin-top: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.icon_box_two:hover{
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    cursor: pointer;
}
.icon_box_two .icon_div{
    font-size: 35px;
    padding: 21px 0;
    border: solid 1px #eee;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0;
    color: #2098d1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.icon_box_two:hover .icon_div{
    background-color: #82b540;
    color: #ffffff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.icon_box_two h4{
    color: #2098d1;
    font-weight: normal;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 10px;
    margin-top: 15px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.icon_box_two:hover h4{
    color: #82b540;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

/*  ----------------------------------------------------
8.SKILLS
-------------------------------------------------------- */

.skills_style_one{
    background-color: #f8f8f8;
    padding-top: 35px;
    padding-bottom: 35px;
    position: relative;
}
.skills_style_one_bg{
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
}
.skills_style_one .inner_slills_text h2{
    margin: 0;
    padding: 0;
    font-weight: normal;
    color: #0198fe;
    text-transform: capitalize;
}
.skills_style_one .inner_slills_text p{
    font-size: 13px;
    margin: 0 0 25px 0;
    line-height: 25px;
    color: #747474;
    font-family: "Yekan", Num, sans-serif;
    margin-top: 10px;
}
.progress {
    height: 5px;
    border-radius: 0;
}
.progress-bar{
    height: 100%;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    text-align: center;
    background-color: #0099ff;
}
.single_progressbar .skill_text{
    color: #000000;
    font-weight: normal;
    font-family: "Yekan", Num, sans-serif;
    font-size: 14px;
    margin-bottom: 5px;
}



/*  ----------------------------------------------------
9.COUNTER
-------------------------------------------------------- */

.counter_section{
    min-height: 350px;
    width: 100%;
    background-attachment: fixed;
    background-position: bottom center;
    background-size: cover;
    display: table;
    vertical-align: middle;
}
.counter_parallax_inner{
    display: table-cell;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 70px 0;
}
.counter_box{
    margin: 25px 0;
    text-align: center;
}
.counter_icon span{
    font-size: 60px;
    color: #f5f5f5;
}
.counter_number{
    text-align: center;
    font-family: "Yekan", Num, sans-serif;
    font-size: 65px;
    font-weight: normal;
    color: #0099ff;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}
.counter_name{
    font-size: 14px;
    display: block;
    font-family: "Yekan", Num, sans-serif;
    letter-spacing: normal;
    text-transform: capitalize;
    color: #ffffff;
    font-weight: 200;
    margin: 0;
}


/*  ----------------------------------------------------
10. PROJECTS SECTION (PORTFOLIO)
-------------------------------------------------------- */
.portfolio-categories{
    float: none;
    text-align: center;
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding: 0;
}
.portfolio-categories li{
    float: none;
    text-align: center;
    display: inline-block;
    color: #9d9d9d;
    padding: 10px;
    cursor: pointer;
    text-transform: capitalize;
    font-weight: normal;
    font-size: 14px;
    font-family: "Yekan", Num, sans-serif;
    webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.portfolio-categories li:hover ,.portfolio-categories li.active{
    color: #000;
    background-color: transparent;
    webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.row.filtr-container{
    margin: 0;
	direction: ltr;
}
.filtr-container .filtr-item{
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: block;
}
.project_box{
    background-color: #fafafa;
    border: solid 1px #eee;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.project_box img{
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -moz-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.6s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.product_info{
    position: absolute;
    opacity: 0;
    top: 0;
    padding: 15px;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.89);
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    text-align: center;

}
.product_info_text{
    margin-top: 60%;
    -webkit-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -moz-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);

}
.product_info h4{
    font-size: 18px;
    padding: 0;
    line-height: 0;
    letter-spacing: normal;
    color: #ffffff;
    font-weight: normal;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.product_info p{
    margin: 0 0 25px 0;
    font-size: 13px;
    line-height: 24px;
    color: #0099ff;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    word-wrap: break-word;
    overflow-wrap: break-word;

}

.project_box:hover .product_info{
    opacity: 1;
	direction:rtl;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;

}
.project_box:hover .product_info_text{
    -webkit-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -moz-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -ms-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -webkit-transform: translateY(-99px);
    -moz-transform: translateY(-99px);
    transform: translateY(-99px);
}


/*  ----------------------------------------------------
11. TEAM
-------------------------------------------------------- */

.team_img{
    overflow: hidden;
    border-radius: 5px;
}
.team_img img{
    width: 100%;
    height:auto;
}
.team_box{
    text-align: center;
    box-shadow:0 0 3px #ddd9d9;
    padding: 15px 0;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.team_box h3{
    text-transform: capitalize;
    font-weight: normal;
    padding: 5px;
    margin: 15px 0 0;
    font-size: 20px;
}

.team_box h5{
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    font-size: 14px;
    color: #0492f0;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.team_box:hover{
    box-shadow: 0 0 10px 1px rgba(76, 76, 76, 0.41);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.team_box:hover h5{
    color: #1da864;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.team_social{
    padding: 0;
    position: relative;
    float: none;
    margin: 15px 0 10px;
}
.team_social li{
    float: none;
    margin-right: 5px;
    display: inline-block;
}
.team_social li a{
    border: solid 1px #e7e7e7;
    border-radius: 3px;
    color: #333;
    font-size: 15px;
    text-align: center;
    width: 40px;
    height: 40px;
    display: block;
    padding: 7px 0;
}
.team_social li a:hover{
    border: solid 1px #e7e7e7;
    border-radius: 3px;
    background-color: #0195ec;
    color: #fafafa;
    font-size: 15px;
    text-align: center;
    width: 40px;
    height: 40px;
    display: block;
    padding: 7px 0;
}



@media (max-width: 992px) {
    .team_box {
        text-align: center;
        box-shadow: 0 0 3px #ddd9d9;
        padding: 15px;
        -webkit-transition: all .25s ease-in-out;
        -moz-transition: all .25s ease-in-out;
        transition: all .25s ease-in-out;
        margin: 15px 5px;
    }
}

/*  ----------------------------------------------------
12. PRICES
-------------------------------------------------------- */
.price_box{
    background-color: #FFFFFF;
    -moz-box-shadow: 0 1px 5px #eee;
    max-width: 350px;
    min-height: 400px;
    margin: 15px auto;
    padding: 20px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.price_box_active,.price_box:hover{
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 0 25px 2px #eee;
    -moz-box-shadow:0 0 25px 2px #eee;
    max-width: 350px;
    min-height: 400px;
    border: 0;
    box-shadow: 0 0 25px 2px #eee;
    margin: 15px auto;
    padding: 20px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.price_budged{
    color: #2098d1;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    text-transform: capitalize;
}
.price_box_active .price_budged{
    color: #82b540 ;
}
.price_num{
    display: block;
    font-size: 60px;
    font-family: "Yekan", Num, sans-serif;
    font-weight: normal !important;
    color: #333;
    margin: 0;
    text-align: center;
    padding: 15px 0 30px;
}
.price_num sup{
    font-size: 24px;
    font-weight: normal;
    color: #79a93c;
    margin: 0;
    padding: 0;
    right: 10px;
    top: -20px;
}
.price_body ul li{
    font-family: "Yekan", Num, sans-serif;
    font-weight: normal;
    font-size: 14px;
    padding: 7px 0;
    color: #8b909d;
}
.price_footer {
    padding: 20px 0 10px 0;
}
.btn_price{
    margin-left: auto;
    margin-right: auto;
    display: block;
}






/*  ----------------------------------------------------
13. BLOG
-------------------------------------------------------- */

.blog_item{
    padding: 15px;
}
.blog_box{
    background-color:#f8f8f8;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.blog_box:hover{
    box-shadow: 0 0 10px 1px rgba(76, 76, 76, 0.41);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.blog_img{
    overflow: hidden;
}
.blog_img img{
    webkit-transition: all 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -moz-transition: all 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-transition: all 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition: all 400ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    width: 100%;
}
.blog_box:hover .blog_img img {
    transform: scale(1.1);
}

.blog_info{
    padding: 10px;
    text-align: center;
	direction:rtl;
}
.blog_info h5{
    font-size: 16px;
    color: #2098d1;
    font-weight: normal;
    margin: 0;
    padding: 9px 0;
    margin-top: 10px;
}
.blog_info p{
    margin: 0 0 10px;
    color: #969595;
}
.blog_info a{
    text-transform: capitalize;
    color: #82b540 !important;
    margin-bottom: 10px;
    display: block;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 450px) {
    .blog_item{
        padding: 5px;
    }

}


/*  ----------------------------------------------------
14. TESTIMONIALS CLIENTS SAY
-------------------------------------------------------- */


.our_clients{
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
}
.client_say{
    padding: 0 15px;
}
.client_say h4{
    line-height: 24px;
    font-weight: normal;
    color: #555;
    font-size: 14px;
    padding: 10px 0;
    margin-bottom: 10px;

}
.client_say img{
    max-width: 70px;
    border-radius: 10px;
    border: solid 1px #e7e7e7;
}
.client_say h6 {
    font-size: 18px;
    margin: 10px 0 ;
    padding: 0;
    text-transform: capitalize;

}
.client_say span{
    color: #2098d1;
}
.client_section .our_clients .owl-controls .owl-page span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 15px 7px 0;
    filter: Alpha(Opacity=50);
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 50px;
    background: #81b43f;
}



/*  ----------------------------------------------------
15. CONTACT US
-------------------------------------------------------- */
.contact_us #map{
    min-height: 350px;
}

.contact_info h3{
    text-align: center;
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

.contact_info h6{
    text-align: center;
    margin-bottom: 30px;
    margin-top: 0;
    font-weight: normal;
}
.contact_info label{
    color: #333;
    font-weight: normal;
}
.contact_info  .form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #eee;
    color: #333;
    border-radius: 0;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}
.contact_info  .contact_btn {
    text-align: center;
    margin:25px auto 0;
    max-width: 150px;
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    color: #ffffff;
    border: solid 1px #0099ff;
    font-weight: normal;
    background-color: #0099ff;
    font-family: "Yekan", Num, sans-serif;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    padding: 7px 25px;
}
.contact_info  .contact_btn:hover,.contact_info  .contact_btn:focus {
    color: #0099ff;
    border: solid 1px #0099ff;
    background-color: #ffffff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.contact_info   textarea.form-control {
    min-height: 125px;
    resize: vertical;
}

/*  ----------------------------------------------------
16. FOOTER
-------------------------------------------------------- */

.footer{
    background-color: #313131;
}
.footer .footer_brand{
    text-align: center;
    margin: 0 auto;
}
.footer p{
    text-align: center;
    clear: both;
    margin-bottom: 0;
    margin-top: 22px;
    color: #ccc;
    font-size: 15px;

}
.footer .social_nav{
    float: none;
    position: relative;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 11px;
    padding: 0;
}
.footer .social_nav li{
    float: none;
    display: inline-block;
    text-align: center;
    list-style: none;
}
.footer .social_nav  li a{
    color: #4e4e4e !important;
    background-color: transparent;
    font-size: 20px;
    padding: 7px 10px;
}
.footer .social_nav  li a:hover,.footer .social_nav  li a:focus{
    color: #0099ff !important;
    background-color: transparent;
    font-size: 20px;
    padding: 7px 10px;
}

.footer_author{
    background-color: #2d2d2d;
    min-height: 50px;
}
.copyright_footer{
    text-align: center;
    margin-top: 15px;
    color: #999;
    font-size: 11px;
    margin-bottom: 0;
}
