@import url(fonts.css);

/* 
===================================================
Author: Amir Nageh
Version: v1
Last-update: 12-01-2016
Contacts: facebook.com/amirnagh15
======================================================
*/


/* ******** General Functions ************ */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    font-family: 'neo-reg';
    outline: 0;
}

a:hover,
a:visited,
a:link {
    text-decoration: none;
    color: #fff;
    outline: 0;
}

HTML5 display-role reset for older browsers article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    position: relative;
    overflow-x: hidden;
}

ol,
ul {
    list-style: none;
}

p {
    line-height: 29px;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.col-xs-12 {
    padding: 0;
}

input[type='text']:focus,
input[type='password']:focus {
    color: #969696;
}

*,
*:after,
*::before {
    box-sizing: border-box;
}

html,
body,
.st-container,
.st-pusher,
.st-content {
    height: 100%;
}

.btn-group,
.btn-group-vertical {
    margin-bottom: 5px;
}

.btn-group .btn,
.btn-group-vertical .btn {
    border-radius: 0;
}

.dropdown-menu {
    left: auto;
}

@media (max-width:550px) {
    .col-12 {
        width: 100%;
        -webkit-transition: all .4s;
        transition: all .4s;
    }
}


/*==============================================
    Loading Screen 
/*==============================================*/

.wrap {
    top: 0;
    left: 0;
    z-index: 9999;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.loading {
    top: 50%;
    left: 50%;
    margin: -50px;
    position: absolute;
}

.text {
    color: #167CD4;
    display: inline-block;
    margin-left: 10px;
    font-size: 20px;
}

.bounceball {
    position: relative;
    display: inline-block;
    height: 37px;
    width: 15px;
}

.bounceball:before {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #167CD4;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: bounce 500ms alternate infinite ease;
    animation: bounce 500ms alternate infinite ease;
}

@-webkit-keyframes bounce {
    0% {
        top: 30px;
        height: 5px;
        border-radius: 60px 60px 20px 20px;
        -webkit-transform: scaleX(2);
        transform: scaleX(2);
    }
    35% {
        height: 15px;
        border-radius: 50%;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    100% {
        top: 0;
    }
}

@keyframes bounce {
    0% {
        top: 30px;
        height: 5px;
        border-radius: 60px 60px 20px 20px;
        -webkit-transform: scaleX(2);
        transform: scaleX(2);
    }
    35% {
        height: 15px;
        border-radius: 50%;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    100% {
        top: 0;
    }
}


/* =======================================
    Scroll To Top Button
/*========================================*/

.toTop {
    background-color: #000;
    color: #fff;
    position: fixed;
    bottom: 40px;
    right: -60px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    line-height: 40px;
    border-radius: 7px;
    z-index: 5;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.toTop:hover {
    background-color: #167CD4;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.toTop i {
    font-size: 18px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.toTop:hover i {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .5s;
    transition: all .5s;
}


/* ***************************** Navbar ********************************** */

.header {
    padding: 0;
}

.navbar-default {
    background-color: #fff;
    border: 0;
    margin: 0;
    border-radius: 0;
    padding: 0;
    z-index: 999;
    /*    box-shadow: 1px 1px 1px #ccc;*/
}

.navbar-default .navbar-nav > li > a {
    color: #2c3e50;
    text-transform: uppercase;
    font-size: 15px;
    text-align: center;
    padding: 27px 15px;
    font-family: 'neo-bold';
    border: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.navbar-default .navbar-nav > li > a.active {
    background-color: transparent;
    color: #ff8800;
}

.navbar-default .navbar-nav > li > a:hover {
    background-color: transparent;
    color: #ff8800;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.navbar-default .navbar-brand {
    font-family: 'neo-bold';
    text-transform: uppercase;
    color: #2c3e50;
    font-size: 22px;
    padding: 0;
}

.navbar-default .navbar-brand img {
    width: 200px;
    height: 70px;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #fff;
}

.navbar-default .navbar-toggle {
    border-color: #2c3e50;
    border-radius: 0;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #2c3e50;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #2c3e50;
}

.navbar-form {
    margin: 0;
}

.drop {
    height: 50px;
    padding: 7px 0px;
}

.dropdown-menu > li > a {
    padding: 10px;
    text-transform: uppercase;
    font-family: 'sans-reg';
    font-size: 13px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.multi-top {
    width: 100%;
    height: 5px;
    display: block;
}

.multi-top span {
    display: inline-block;
    height: 3px;
    content: '';
    float: right;
    width: 10%;
}

.t1 {
    background-color: #3498db;
}

.t2 {
    background-color: #2ecc71;
}

.t3 {
    background-color: #f1c40f;
}

.t4 {
    background-color: #8e44ad;
}

.t5 {
    background-color: #1abc9c;
}

.header .search-box {
    padding: 20px;
    border-top: 1px solid #dfdfdf;
    background-color: #121212;
    display: none;
}

.open-search {
    cursor: pointer;
}

.header .search-box input[type="text"] {
    width: 90%;
    direction: rtl;
    text-align: right;
    height: 45px;
    outline: 0;
    border: 1px solid #ddd;
    color: #999;
    font-size: 14px;
    text-indent: 20px;
    float: right;
    border-radius: 4px;
}

.header .search-box input[type="text"]:focus {
    color: #333;
}

.header .search-box button {
    border: 0;
    height: 45px;
    width: 9.5%;
    display: inline-block;
    color: #fff;
    background-color: #ff8800;
    outline: 0;
    border-radius: 4px;
}


/* ================================================= 
                Slider 
/* ================================================= */

.owl-carousel {
    overflow: hidden;
}

.owl-buttons {
    position: static;
}

.slider-left,
.slider-right {
    opacity: 0;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    width: 105px;
    height: 105px;
    line-height: 105px;
    font-size: 16px;
    text-align: center;
    color: #111;
    z-index: 6;
    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.slider-left {
    left: -50px;
}

.slider-right {
    right: -50px;
}

.slider-left:before,
.slider-right:before {
    content: "";
    display: block;
    width: 66%;
    height: 66%;
    position: absolute;
    top: 17px;
    left: 0;
    background: #fff;
    border-radius: 2px;
    box-shadow: 1px 1px 0px rgba(0, 0, 0, .1);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.slider-right:before {
    left: auto;
    right: 0;
}

.slider-left .fa,
.slider-right .fa {
    position: relative;
}

.slider-left:hover,
.slider-right:hover {
    -webkit-transition: 0 none !important;
    transition: 0 none !important;
}

.slider-left:hover:before,
.slider-right:hover:before {
    background-color: #ff8800;
    -webkit-transition: all .4s;
    transition: all .4s;
    color: #fff;
}

.slider-left:hover i,
.slider-right:hover i {
    color: #fff;
}

.owl-carousel:hover .slider-left {
    opacity: 1;
    left: -35px;
}

.owl-carousel:hover .slider-right {
    opacity: 1;
    right: -35px;
}

.owl-pagination {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0;
    text-align: center;
}

.slider-box .slider-item {
    position: relative;
    overflow: hidden;
}

.slider-box .slider-item .slider-item-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.53));
    background: linear-gradient(bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.53));
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.slider-box .slider-item:hover .slider-item-caption {
    opacity: 1;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.slider-box .slider-item .slider-item-caption a {
    position: absolute;
    bottom: -40px;
    right: 20px;
    padding: 0 30px;
    line-height: 25px;
    direction: rtl;
    display: inline-block;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.slider-box .slider-item:hover .slider-item-caption a {
    bottom: 40px;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.slider-box .slider-item .slider-item-caption a:hover {
    color: #ff8800;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.slider-box .slider-item .slider-item-caption a i {
    margin-left: 3px;
    background-color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-size: 14px;
    color: #ff8800;
}


/* ================================================= 
                Services 
/* ================================================= */

.services {
    padding: 70px 0;
}

.services .serv-head {
    padding-bottom: 80px;
}

.services .serv-head h1 {
    font-family: 'neo-bold';
    font-size: 25px;
}

.services .serv-head h1:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    background: url(../images/line.png);
    width: 100%;
    height: 25px;
    margin: 0 auto;
    top: 30px;
    background-repeat: no-repeat;
    background-position: 50% 10px;
}

.services .block {
    padding: 0 20px;
    float: right;
}

.services .block .block-inner {
    background-color: #f1f1f1;
    overflow: hidden;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.services .block .block-inner:hover .block-img img {
    opacity: .5;
    -webkit-transform: scale(1.5) rotate(10deg);
    transform: scale(1.5) rotate(10deg);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.services .block .block-inner .block-img {
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.services .block .block-inner .block-img img {
    -webkit-transition: all .3s;
    transition: all .3s;
}

.services .block .block-inner .block-data {
    padding: 15px;
}

.services .block .block-inner .block-data a.data-link {
    color: #333;
    display: inline-block;
    font-family: 'neo-bold';
    line-height: 25px;
    font-size: 14px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.services .block .block-inner .block-data p {
    padding: 6px 0;
    font-size: 14px;
    direction: rtl;
    color: #5D5D5D;
}

.services .block .block-inner .block-data a.more {
    color: #FFF;
    font-size: 14px;
    display: inline-block;
    background-color: #FB8D0C;
    padding: 10px 25px;
    border-radius: 4px;
    margin-top: 10px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.services .block .block-inner .block-data a.data-link:hover {
    color: #ff8800;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.services .block .block-inner .block-data a.more:hover {
    background-color: #e28113;
    -webkit-transition: all .3s;
    transition: all .3s;
}


/* =====================================
            Video-section
/* ====================================*/

.petrol-video .video-caption {
    padding: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/video-caption.jpg);
    background-size: cover;
    background-attachment: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
}

.petrol-video .video-caption span {
    position: absolute;
    z-index: 1;
    top: 50%;
    background-color: #FB8D0C;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0 20px #FB8D0C;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    -webkit-transform: translateY(-320px);
    transform: translateY(-320px);
    -webkit-transition: all .4s;
    transition: all .4s;
}

.petrol-video .video-caption:hover span {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all .4s;
    transition: all .4s;
}


/* =====================================
           Sponsers
/* ====================================*/

.sponsers {
    padding: 70px 0;
}

.sponsers .sponser-head {
    padding-bottom: 80px;
}

.sponsers .sponser-head h1 {
    font-family: 'neo-bold';
    font-size: 25px;
    position: relative;
}

.sponsers .sponser-head h1:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    background: url(../images/line.png);
    width: 100%;
    height: 25px;
    margin: 0 auto;
    top: 30px;
    background-repeat: no-repeat;
    background-position: 50% 10px;
}

.sponsers .sponsers-slider .sponser-item img {
    height: 80px;
    margin: 0 auto;
}


/* =====================================
            Footer
/* ====================================*/

.footer {
    background-color: #121212;
    padding: 30px 0;
}

.footer .copyrights,
.footer .sitemap {
    float: right;
    direction: rtl;
}

.footer .copyrights h1 {
    color: #fff;
    font-size: 15px;
    line-height: 25px;
}

.footer .sitemap ul li {
    display: inline-block;
}

.footer .sitemap ul li a {
    display: inline-block;
    color: #636363;
    margin-left: 10px;
    margin-bottom: 5px;
    font-size: 15px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.footer .sitemap ul li a:hover {
    color: #ff8800;
    -webkit-transition: all .3s;
    transition: all .3s;
}


/* =========================================== 
            About Page
=============================
=============================
            about-box
/* ========================================= */

.about-box .about-head {
    background-image: url(../images/sliderbj.png);
    background-attachment: fixed;
    background-size: 15%;
    background-color: #167CD4;
}

.about-box .about-head h1 {
    padding: 30px 0;
    color: #fff;
    font-size: 25px;
    letter-spacing: 1px;
    font-family: 'neo-bold';
}

.about-box .about-content {
    padding: 50px 0;
}

.about-box .about-content .about-data {
    padding-left: 40px;
    direction: rtl;
}

.about-box .about-content .about-data h1 {
    color: #000;
    font-size: 20px;
    letter-spacing: 1px;
    padding-bottom: 15px;
    font-family: 'neo-bold';
}

.about-box .about-content .about-data ol {
    list-style: decimal;
    list-style-position: inside;
}

.about-box .about-content .about-data ol li {
    padding: 10px;
    font-size: 15px;
    color: #777777;
}

.about-box .about-content .about-data p {
    font-size: 15px;
    line-height: 30px;
}


/* =========================================== 
            Service Page
=============================
=============================
            Service
/* ========================================= */

.service-box .service-head {
    background-image: url(../images/sliderbj.png);
    background-attachment: fixed;
    background-size: 15%;
    background-color: #167CD4;
}

.service-box .service-head h1 {
    padding: 30px 0;
    color: #fff;
    font-size: 25px;
    letter-spacing: 1px;
    font-family: 'neo-bold';
}

.service-box .service-content {
    padding: 50px 0;
    background-color: #f1f1f1;
}

.service-box .service-one-con {
    background-color: #fff;
}

.service-box .service-content .block {
    padding: 0 15px;
    float: right;
}

.service-box .service-content .block-inner {
    direction: rtl;
    text-align: right;
    margin-bottom: 30px;
}

.service-box .service-content .block-inner .block-img {
    position: relative;
    overflow: hidden;
}

.service-box .service-content .block-inner .block-img .block-caption {
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 15px 20px 20px;
    -webkit-transform: translateY(75%);
    transform: translateY(75%);
    -webkit-transition: all .2s;
    transition: all .2s;
}

.service-box .service-content .block-inner .block-img .block-caption a {
    color: #000;
    margin-bottom: 5px;
    display: inline-block;
    font-size: 15px;
    -webkit-transition: all .4s;
    transition: all .4s;
    height: 31px;
    overflow: hidden;
}

.service-box .service-content .block-inner .block-img .block-caption a:hover {
    color: #167CD4;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.service-box .service-content .block-inner .block-img .block-caption a i {
    margin-left: 5px;
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    background-color: #167CD4;
}

.service-box .service-content .block-inner .block-img .block-caption p {
    font-size: 14px;
    color: #969696;
    height: 80%;
    overflow: hidden;
}

.service-box .service-content .block-inner:hover .block-img .block-caption {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all .2s;
    transition: all .2s;
}

.inner {
    padding: 10px 0 0 0;
}

.inner ul > li {
    display: inline-block;
}

.inner ul > li > a,
.inner ul > li > span {
    float: none;
    margin: 1px;
}

.inner ul > li > a,
.inner ul > li > span {
    border: 1px solid #167CD4;
    padding: 6px 10px;
    float: left;
    color: #167CD4;
    border-radius: 3px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.inner ul > li > a:hover,
.inner ul > li > span:hover,
.inner ul > li > a:focus,
.inner ul > li > span:focus {
    color: #FFFFFF;
    background-color: #167CD4;
    border-color: #167CD4;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.inner ul > li > a.nex,
.inner ul > li > a.pre {
    color: #FFFFFF;
    background-color: #333;
    border-color: #333;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.inner ul > .active > a,
.inner ul > .active > span,
.inner ul > .active > a:hover,
.inner ul > .active > span:hover,
.inner ul > .active > a:focus,
.inner ul > .active > span:focus {
    color: #FFFFFF;
    background-color: #167CD4;
    border-color: #167CD4;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}


/* =========================================== 
            Service-one Page
=============================
=============================
            service-slider
/* ========================================= */

.service-slider {
    height: 500px;
}

.service-slider .service-item img {
    width: 100%;
    height: 100%;
}

.service-one .service-one-data {
    padding-top: 35px;
    text-align: right;
    direction: rtl;
}

.service-one .service-one-img {
    padding: 0 150px;
}

.service-one .service-one-data p.service-desc {
    font-size: 14px;
    padding-bottom: 10px;
}

.service-one .service-one-data .serv-data-item ol {
    list-style: decimal;
    list-style-position: inside;
}

.service-one .service-one-data .serv-data-item ol li {
    padding: 10px;
    font-size: 15px;
    color: #777777;
	line-height:1.8em;
}

.service-one .service-one-data .serv-data-item h1 {
    padding: 15px;
    background-color: #f1f1f1;
    margin: 10px 0;
    color: #000;
    font-family: 'neo-bold';
}

.service-one .service-one-data .serv-data-item p {
    font-size: 14px;
    text-align: right;
    direction: rtl;
    color: #777;
    padding-right: 10px;
}


/* =========================================== 
            order Page
=============================
=============================
            order-box
/* ========================================= */

.order-box .order-head {
    background-image: url(../images/sliderbj.png);
    background-attachment: fixed;
    background-size: 15%;
    background-color: #167CD4;
}

.order-box .order-head h1 {
    padding: 30px 0;
    color: #fff;
    font-size: 25px;
    letter-spacing: 1px;
    font-family: 'neo-bold';
}

.order-box .order-content {
    background-color: #f1f1f1;
}

.order-box .order-content .order-form {
    margin: auto;
    float: none;
    background-color: #fff;
    border-left: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
    max-width: 530px;
    padding: 15px;
    display: table;
}

.order-box .order-content .order-form .order-item {
    margin-bottom: 10px;
}

.order-box .order-content .order-form .order-item h1 {
    padding: 12px;
    background-color: #f1f1f1;
    font-size: 14px;
    font-family: 'neo-bold';
}

.order-box .order-content .order-form .order-item input[type="text"],
.order-box .order-content .order-form .order-item input[type="number"],
.order-box .order-content .order-form .order-item textarea {
    text-align: RIGHT;
    direction: rtl;
    text-indent: 15px;
    font-size: 14px;
    color: #666 !important;
    height: 45px;
    border: 1px solid #dadada;
    width: 100%;
    outline: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.order-box .order-content .order-form .order-item textarea {
    height: 100px;
    padding: 15px;
    text-indent: 0;
    resize: vertical;
}

.order-box .order-content .order-form .order-item textarea:focus {
    height: 120px;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.order-box .order-content .order-form .order-item input[type="text"]:focus,
.order-box .order-content .order-form .order-item input[type="number"]:focus,
.order-box .order-content .order-form .order-item textarea:focus {
    color: #333;
    border: 1px solid #777;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.order-box .order-content .order-form .order-item input[type="submit"] {
    outline: 0;
    padding: 12px 40px;
    background-color: #167CD4;
    color: #fff;
    font-family: 'neo-bold';
    font-size: 14px;
    border-radius: 3px;
    text-align: center;
    border: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.order-box .order-content .order-form .order-item input[type="submit"]:hover {
    background-color: #0b5595;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.order-box .order-content .order-form .order-item p {
    direction: rtl;
    text-align: right;
    font-size: 14px;
    padding-bottom: 15px;
}


/* &&& when input missed or empty >> just active this 2 classes &&& */

.order-box .order-content .order-form .order-item input[type="text"].error,
.order-box .order-content .order-form .order-item input[type="number"].error,
.order-box .order-content .order-form .order-item textarea.error {
    /*    border: 1px solid red;*/
}

.order-box .order-content .order-form .order-item h1 span {
    font-size: 13px;
    float: left;
    color: red;
    display: none;
}


/* =========================================== 
            Contact Page
=============================
=============================
            Contact-box
/* ========================================= */

.contact-box .contact-head {
    background-image: url(../images/sliderbj.png);
    background-attachment: fixed;
    background-size: 15%;
    background-color: #167CD4;
}

.contact-box .contact-head h1 {
    padding: 30px 0;
    color: #fff;
    font-size: 25px;
    letter-spacing: 1px;
    font-family: 'neo-bold';
}

.contact-box .contact-content {
    padding: 50px 0 0 0;
}

.contact-box .contact-content .contact-data,
.contact-box .contact-content .contact-form {
    padding: 0 20px;
    direction: rtl;
    text-align: right;
}

.contact-box .contact-content .contact-data .contact-data-inner .C_data-item,
.contact-box .contact-content .contact-form .contact-form-item {
    margin-bottom: 10px;
}

.contact-box .contact-content .contact-data .contact-data-inner .C_data-item h1,
.contact-box .contact-content .contact-form .contact-form-item h1 {
    padding: 15px;
    background-color: #f1f1f1;
    color: #333;
    font-family: 'neo-bold';
    font-size: 14px;
}

.contact-box .contact-content .contact-data .contact-data-inner .C_data-item h1 i {
    margin-left: 6px;
}

.contact-box .contact-content .contact-data .contact-data-inner .C_data-item p {
    padding-right: 15px;
    font-size: 14px;
    color: #777;
    padding-top: 5px;
}

.contact-box .contact-content .contact-form .contact-form-item {
    padding: 0 5px;
    float: right;
    direction: rtl;
}

.contact-box .contact-content .contact-form .contact-form-item i {
    position: absolute;
    right: 6px;
    top: 1px;
    color: #777;
    font-size: 14px;
    border-left: 1px solid #ddd;
    background: #f1f1f1;
    width: 40px;
    height: 38px;
    text-align: center;
    line-height: 38px;
}

.contact-box .contact-content .contact-form .contact-form-item input[type='text'],
.contact-box .contact-content .contact-form .contact-form-item input[type='email'] {
    text-indent: 50px;
    height: 40px;
    outline: 0;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 100%;
    color: #777;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.contact-box .contact-content .contact-form .contact-form-item input[type='text']:focus,
.contact-box .contact-content .contact-form .contact-form-item input[type='email']:focus {
    color: #333;
    border: 1px solid #777;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.contact-box .contact-content .contact-form .contact-form-item textarea {
    height: 100px;
    border: 1px solid #ddd;
    outline: 0;
    padding: 15px 50px;
    width: 100%;
    font-size: 14px;
    resize: vertical;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.contact-box .contact-content .contact-form .contact-form-item textarea:focus {
    height: 120px;
    color: #333;
    border: 1px solid #777;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.contact-box .contact-content .contact-form .contact-form-item input[type="submit"] {
    outline: 0;
    padding: 12px 40px;
    background-color: #167CD4;
    color: #fff;
    font-family: 'neo-bold';
    font-size: 14px;
    border-radius: 3px;
    text-align: center;
    border: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.contact-box .contact-content .contact-form .contact-form-item input[type="submit"]:hover {
    background-color: #0b5595;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.contact-box .contact-content #contact-map {
    min-height: 400px;
    height: 400px;
    width: 100%;
    margin-top: 50px;
}


/* ==============================
   Google maps 
   ============================== */

.google-map {
    position: relative;
    background: #111;
}

.gm-style-cc {
    display: none !important;
}

.gm-style-iw div {
    color: #777;
}

.map-section {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 !important;
    background: rgba(22, 124, 212, 0.79);
    z-index: 2;
    cursor: pointer;
    -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.map-section:hover {
    background: rgba(22, 124, 212, 0.67);
}

.map-toggle {
    width: 200px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -100px;
    color: #fff;
    text-align: center;
}

.mt-icon {
    width: 27px;
    height: 27px;
    line-height: 27px;
    margin: 6px auto 25px;
    position: relative;
    color: #111;
    -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.mt-icon:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mt-icon i,
.mt-icon span {
    position: relative;
}

.mt-text {
    margin-left: 12px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, .75);
}

.mt-close {
    display: none;
}

.mt-open,
.mt-close {
    color: rgb(255, 255, 255);
    font-family: 'neo-bold';
}


/* Map opened */

.map-section.js-active {
    height: 50px;
    background: rgba(22, 124, 212, 0.79);
}

.map-section.js-active:hover {
    background: rgba(22, 124, 212, 0.64);
}

.map-section.js-active .mt-icon {
    opacity: 0;
}

.map-section.js-active .mt-text {
    position: relative;
    top: -20px;
}


/* =====================================
            Media Queries
/* ====================================*/

@media(max-width: 991px) {
    .navbar-default .navbar-nav > li > a {
        font-size: 14px;
    }
    .services .block .block-inner {
        margin-bottom: 20px;
    }
    .footer .copyrights {
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .container {
        width: auto;
    }
    .about-box .about-content {
        padding: 50px 20px;
    }
}

@media(max-width:768px) {
    .navbar-default .navbar-nav > li > a {
        padding: 10px;
    }
    .navbar-default {
        padding: 0 20px 10px;
    }
    .navbar-toggle {
        margin-top: 23px;
    }
    .navbar-default .navbar-brand img {
        width: 170px;
        height: 65px;
    }
    .slider-box .slider-item .slider-item-caption {
        opacity: 1;
    }
    .slider-box .slider-item .slider-item-caption a {
        bottom: 40px;
    }
    .slider-left {
        left: -35px;
        opacity: 1;
    }
    .slider-right {
        right: -35px;
        opacity: 1;
    }
    .about-box .about-content .about-img {
        margin-bottom: 30px;
    }
    .about-box .about-content .about-img img {
        width: 100%;
    }
    .about-box .about-content .about-data {
        padding: 0;
    }
    .about-box .about-content .about-data h1 {
        text-align: center;
    }
    .service-box .service-content .block-inner .block-img .block-caption {
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
        -webkit-transition: all .4s;
        transition: all .4s;
    }
    .service-box .service-content .block-inner .block-img .block-caption a {
        height: auto;
        margin-bottom: 15px;
    }
    .service-box .service-content .block-inner .block-img .block-caption p {
        height: auto;
    }
    .contact-box .contact-content .contact-data .contact-data-inner {
        margin-bottom: 40px;
    }
    .contact-box .contact-content .contact-form .contact-form-item {
        padding: 0;
    }
    .contact-box .contact-content .contact-form .contact-form-item i {
        right: 1px;
    }
}