@import url(http://fonts.googleapis.com/css?family=Alef:400normal,700normal&subset=all);

*{direction: rtl; font-family: 'Alef','gisha', 'arial';}

section{
	background: #fff;
	padding: 25px 0;
}

section h1{
	color:#ffffff;
	font-size: 45px;
	font-weight: bold;
	background: #048adf;
	padding: 5px 10px;
}

section p{
	font-size: 19px;
	line-height: 17px;
}

.under_constraction{float: none; margin: auto;}

.navbar{
	border: 0;
	border-radius: 0;
	position: static;
}

.navbar-defaul{
	background: #000 !important;
	box-shadow: none;
}

.popover.bottom>.arrow:after { margin-right: -10px; }

.modal{
	overflow-y: hidden;
	top:50%;
}

.modal .modal-content{
	padding: 1%;
	text-align: center;
	font-size: 18px;
}

.breaker{ clear: both; }

.wrapper{
	background: #fff;
	position: relative;
}

#welcome {
	/*background: url('../images/main_big.jpg') -180px top;*/
	background: url('../images/main.jpg') no-repeat;
	background-position: left top;
	background-size: cover;
	height: 650px;
	direction: ltr;
	position: fixed;
	padding:0;
	width: 100%;
	z-index: 0;
	padding-top: 30px;
}



#welcome .logo{ max-width: 300px; }

#welcome h2, #welcome p{
	padding:0;
	color: #fff;
	text-shadow: 1px 1px 2px #3c3c3c;
}

#welcome .app_links{ float: right; }

#welcome p a{
	float: right;
	margin-right: 5px;
}

.down_wrapper{
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	cursor: pointer;
}

.down_wrapper .go_down{
	position: absolute;
	top: -30px;
	left: 0;
	width: 100%;
    -webkit-animation: go_down 2s infinite linear; /* Chrome, Safari, Opera */
    animation: go_down 2s infinite linear;
}

@-webkit-keyframes go_down {
    0% {
        top: -35px;
    }
    50%{
        top: -60px;
    }
    to {
        top: -35px;
    }
}

@-moz-keyframes go_down {
    0% {
        top: -35px;
    }
    50%{
        top: -60px;
    }
    to {
        top: -35px;
    }
}

@keyframes go_down {
    0% {
        top: -35px;
    }
    50%{
        top: -60px;
    }
    to {
        top: -35px;
    }
}

.go_down .button{
	font-size: 18px;
	color: #fff;
	border: 0;
	height: 30px;
	width: 30px;
	line-height: 30px;
	padding: 8px 10px;
	background: #048ADF;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.down_wrapper .go_down .button span{top:3px;}

.down_wrapper p{
	text-align: center;
	padding:0;
	color:#048ADF;
	text-shadow:none;
	font-size: 16px;
	font-weight: bold;
}


/***MENU STYLE***/
/*****************/
	#menu{
		background: #2c2c2c;
		box-shadow: 0px 0px 8px;
	}

	#menu .container{ padding:0; }

	#menu .header-nav{ position: relative; }

	#menu.scroll{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 1000;
	}

	#menu .logo{
		max-width: 20%;
		float: left;
	}

	#menu ul{
		float: none;
		list-style: none;
		padding: 0;
		margin: auto;
		display: block;
	}

	#menu ul li{
		width: 14%;
		padding: 1.5% 0;
		float: right;
		text-align: center;
		font-size: 16px;
		overflow: hidden;
		transition: background 300ms ease-in-out;
		-moz-transition: background 300ms ease-in-out;
		-webkit-transition: background 300ms ease-in-out;
		-o-transition: background 300ms ease-in-out;
	}

	#menu ul li.active a{
		color: #FCC920;
		font-weight: bold;
		transition: all 300ms ease-in-out;
		-moz-transition: all 300ms ease-in-out;
		-webkit-transition: all 300ms ease-in-out;
		-o-transition: all 300ms ease-in-out;
	}

	#menu ul li:hover a{
		color: #ffffff;
		transition: all 300ms ease-in-out;
		-moz-transition: all 300ms ease-in-out;
		-webkit-transition: all 300ms ease-in-out;
		-o-transition: all 300ms ease-in-out;
	}

	#menu ul li a{
		text-decoration: none;
		color: #fff;
		width: 100%;
		display: block;
		border-left: 1px solid #fff;
		z-index: 1;
		position: relative;
		transition: color 300ms ease-in-out;
		-moz-transition: color 300ms ease-in-out;
		-webkit-transition: color 300ms ease-in-out;
		-o-transition: color 300ms ease-in-out;
	}

	#menu ul li:first-child a{
		border-right: 1px solid #fff;
		transition: color 300ms ease-in-out;
		-moz-transition: color 300ms ease-in-out;
		-webkit-transition: color 300ms ease-in-out;
		-o-transition: color 300ms ease-in-out;
	}

	#menu ul li .choose{
		width: 90%;
		height: 100%;
		position: absolute;
		bottom: -100%;
		right: 5%;
		background: rgba(255,255,255,0.3);

		transition: bottom 300ms ease-in-out;
		-moz-transition: bottom 300ms ease-in-out;
		-webkit-transition: bottom 300ms ease-in-out;
		-o-transition: bottom 300ms ease-in-out;
	}

	#menu ul li:hover .choose{
		bottom: -85%;
		z-index: 0;
		transition: bottom 300ms ease-in-out;
		-moz-transition: bottom 300ms ease-in-out;
		-webkit-transition: bottom 300ms ease-in-out;
		-o-transition: bottom 300ms ease-in-out;
	}

	#menu ul li.active .choose{
		bottom: 0%;
		z-index: 0;
		transition: bottom 300ms ease-in-out;
		-moz-transition: bottom 300ms ease-in-out;
		-webkit-transition: bottom 300ms ease-in-out;
		-o-transition: bottom 300ms ease-in-out;
	}

	#menu #dropdown{
		color: #fff;
		font-size: 16px;
	}

	#menu #dropdown .caret{ margin-right: 5px; }

	#menu .dropdown-menu {
		width: 50%;
		right: 25%;
	}

	#menu .dropdown-menu li{
		float: initial;
		width: 100%;
		border-bottom: 1px solid #ddd;
		padding:5px;
	}

	#menu .dropdown-menu li:last-child{
		border-bottom: 0;
		-webkit-border-bottom-right-radius: 4px;
		-moz-border-bottom-right-radius: 4px;
		border-bottom-right-radius: 4px;
		-webkit-border-bottom-left-radius: 4px;
		-moz-border-bottom-left-radius: 4px;
		border-bottom-left-radius: 4px;
	}

	#menu .dropdown-menu li:first-child{
		-webkit-border-top-right-radius: 4px;
		-moz-border-top-right-radius: 4px;
		border-top-right-radius: 4px;
		-webkit-border-top-left-radius: 4px;
		-moz-border-top-left-radius: 4px;
		border-top-left-radius: 4px;
	}

	#menu .dropdown-menu li a{ color: #07758a; }

	#menu .dropdown-menu li:hover, #menu .dropdown-menu li:hover a{ background: transparent; }


/***ABOUT STYLE***/
/*****************/
	#about { padding-bottom: 150px; }

	#about p{ margin: 20px 0; }


/***STAFF STYLE***/
/*****************/
	#staff{
		background: #ededed;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	#staff .staff_wrapper .profile{
		float: right;
		margin:25px 0;
	}

	#staff .staff_wrapper .profile .profile_wrapper{
		box-shadow: 2px 2px 7px -2px rgba(0,0,0,0.7);
		overflow: hidden;
	}

	#staff .staff_wrapper .profile .profile_pic{ position: relative; }

	#staff .staff_wrapper .profile .profile_title{
		position: absolute;
		height: 50%;
		bottom: -50%;
		background: rgba(255,255,255, 0.8);
		margin: 0;
		width: 100%;
		color: #000;
		text-shadow:none;
		font-size: 16px;
		padding: 5px;
		transition: all 300ms ease-in-out;
		-moz-transition: all 300ms ease-in-out;
		-webkit-transition: all 300ms ease-in-out;
		-o-transition: all 300ms ease-in-out;
	}

	#staff .staff_wrapper .profile:hover .profile_title{
		bottom: 0%;
		transition: all 300ms ease-in-out;
		-moz-transition: all 300ms ease-in-out;
		-webkit-transition: all 300ms ease-in-out;
		-o-transition: all 300ms ease-in-out;
	}

	#staff .staff_wrapper .profile .profile_title h3{
		margin: 10px;
		font-weight: bold;
	}

	#staff .staff_wrapper .profile .profile_title p{ padding: 0 10px }

	#staff .staff_wrapper .profile .profile_title .arrow_up {
		position: absolute;
		top: -47px;
		width: 8%;
		right: 46%;
		opacity: 1;
		filter:Alpha(opacity=100);
		transition: all 200ms ease-in-out;
		-moz-transition: all 200ms ease-in-out;
		-webkit-transition: all 200ms ease-in-out;
		-o-transition: all 200ms ease-in-out;
	}

	#staff .staff_wrapper .profile:hover .arrow_up{
		opacity: 0;
		filter:Alpha(opacity=0);
		transition: all 200ms ease-in-out;
		-moz-transition: all 200ms ease-in-out;
		-webkit-transition: all 200ms ease-in-out;
		-o-transition: all 200ms ease-in-out;
	}


/***APPS STYLE***/
/****************/
	#apps{ padding-bottom: 0; }

	#apps p{font-size: 25px;}

	#apps p .step{
		font-weight: bold;
		color: #a47b29;
	}

	#apps p .mam{
		font-weight: bold;
		color: #1c7bb5;
	}

	#apps .portfolio{
		float: right;
		margin:15px 0;
	}

	#apps .portfolio .portfolio_wrapper{
		border: 1px solid #ddd;
	}

	#apps .portfolio .portfolio_pic{ position: relative; }

	#apps .portfolio p{
		font-size: 16px;
		line-height: 1.42857;
		background: #fff;
		padding: 10px;
		text-shadow:none;
	}

	#apps .portfolio .portfolio_title{
		background: #f2f2f2;
		margin: 0;
		width: 100%;
		text-align: center;
		color: #333;
		text-shadow:none;
		font-size: 16px;
		padding: 5px;
	}

	#apps .map{
		position: relative;
		box-shadow: 0px 4px 8px -3px rgba(0,0,0,0.5);
		padding-top: 6%;
		z-index: 0;
	}

	#apps .phone{position: absolute;right: 40px; bottom: 5px;z-index: -1;}

	#apps .appstore_buttons{margin: 0 auto; width: 65%;}

	#apps .appstore_buttons a{float: right; margin-left: 10px;}

	#apps .appstore_buttons h3{
		background: rgba(255,255,255,0.5);
		border-bottom: 2px solid #50bfc8;
		color: #50bfc8;
		padding: 15px;
		margin: 5px 10px;
		float: right;
		font-size: 30px;
	}


/***CONTACT STYLE***/
/*******************/
	#contact form, #contact .address{
		float: right;
		margin: 20px auto;
	}

	#contact .half{
		float: right;
	}

	#contact form .form-group{
		font-size: 18px;
	}

	#contact form textarea{
		height: 144px;
	}

	#contact form .btn{
		background: #048adf;
		color: #3d3d3d;
		border: 1px solid #9E9E9E;
	}

	#contact address{
		margin-bottom: 0;
	}

	iframe[id^='twitter-widget-']{ width:100% !important; height: 200px;}

	iframe[id^='twitter-widget-'] .timeline .stream{padding-right: 25px !important;}

	.fb_iframe_widget {width: 100%;}

	#contact .fb-like-box span, #contact .fb-like-box span iframe {
		width: 100% !important;
	}


/***FAQ STYLE***/
/******************/
	#faq #accordion .panel{
		margin-bottom: 10px;
	}

	#faq #accordion .panel, .panel .panel-heading{
		-webkit-border-radius: initial;
		-moz-border-radius: initial;
		border-radius: initial;
		border:0;
	}

	#faq #accordion .panel .panel-heading{
		background: #048adf;
		color: #ffffff;
		box-shadow: 1px 1px 3px rgba(166,84,7,0.5);
	}

	#faq #accordion .panel .panel-title {font-size: 20px;}

	#faq #accordion .panel .panel-body{
		background: #ededed;
		color: #7A7A7A;
		font-size: 16px;
	}

	#faq #accordion ol{
		padding-right: 0px;
	}

	#faq #accordion ol li{
		margin-right: 40px;
		margin-top: 20px;
	}


footer{background: #ededed; border-top: 2px solid #048adf; margin: 0 !important; padding: 10px 20px;}

footer img{
	width: 120px;
	height: auto;
}

footer div{float: right !important;}

footer *{color: #3d3d3d; font-size: 16px;}

footer a:hover{color: #000}


#welcome {
	background-position: right top;
}

#logo_big_mobile {

}

#logo_big_mobile img {
	padding: 3%;
	margin-top: 2%;
}

@media only screen and (min-width: 1600px){
	#welcome {
		background-image: url('../images/main.jpg');
	}
	#logo_big_mobile {
		
	}
}
@media only screen and (max-width: 1599px) {
	#welcome {
		background-image: url('../images/main.jpg');

	}
}


@media screen and (min-width: 1280px) {
	#menu .logo{
		max-width: 20%;
		float: left;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {

	#menu .logo{
		max-width: 198px;
		float: left;
	}

	#menu ul li{
		font-size: 15px;
	}

	#menu .container{
		width: 100%;
		margin: 0;
	}
}

@media screen and (max-width: 981px){

	#menu .logo{
		max-width: 198px;
		float: left;
	}

	#menu .navbar-toggle{
		display: block;
	}

	#menu ul{
		border:1px solid #ddd;
		width: 100%;
		max-width: 50%;
		background: #fff;
		margin-top: 5px;
		margin-right: 10px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		position: absolute;
	}

	#menu ul li{
		font-size: 15px;
		padding: 10px 5px;
		float: none;
		width: 100%;
		margin: auto;
		border-bottom: 1px solid #ddd;
	}

	#menu ul li:last-child{
		border-bottom: 0 !important;
	}

	#menu ul li a{
		color: #1b79b6;
	}

	#menu .container{
		width: 100%;
	}
}


@media screen and (max-width: 767px){
	section h1{
		font-size: 30px;
	}

	#welcome .logo{
		max-width: 35%;
	}

	section p{
		font-size: 16px;
		line-height: 25px;
	}

	#menu ul li:last-child{
		border-bottom: 0 !important;
	}

	#about {
		padding-bottom: 50px;
		padding-top: 0;
	}

	#staff .staff_wrapper .profile .profile_title{
		height: 100%;
		bottom: -100%;
	}

	#staff .profile_title p{
		line-height: 21px;
	}

	#customers #slideshow #slideshowWindow .slide .show_project .apps_buttons{
		width: 20%;
		position: absolute;
		right: 20%;
		bottom: 20%;
	}

	#customers #slideshow #slideshowWindow .slide .show_project .apps_buttons img{
		margin-bottom: 3px;
	}

	#contact form, #contact .address{
		padding: 0;
	}

	#contact .half{ padding: 0 10px; }

	#apps .phone {
		right: 10px;
		width: 90%;
		height: auto;
	}

	#apps .appstore_buttons { width: 100%; }

	#apps .appstore_buttons a {
		width: 17%;
		text-align: center;
		float: left;
	}

	#apps .appstore_buttons h3 {
		width: 60%;
		font-size: 18px;
		float: left;
		text-align: center;
		padding: 5px;
	}

	#customers #cooperations>.item {
		margin: 5px 0;
		padding: 0;
	}

	#customers #cooperations .text p { font-size: 16px;	}

	.modal { top: 13%; }

	#myModal .modal-body {font-size: 16px;}

	#customers #recommend .item { padding: 0; margin-top: 10px;}

	footer div{text-align: center !important;}

	footer img{width: 40%; margin: 0 30%;}
}

@media screen and (max-width: 481px){

	#menu .logo{
		max-width: 40%;
		float: left;
	}

	#staff .profile{
		float: initial;
		width: 100%;
		margin:10px auto !important;
	}

	#menu ul li{
		padding: 5px 5px;
	}

	#contact .address .half{
		float: initial;
		width: 100%;
		margin: 0 auto 10px;
	}

	#contact .address #google_maps{
		height: 200px;
	}

	#customers #slideshow #slideshowWindow .slide .app_pic{ margin-right: 0; }
}

@media screen and (max-width: 360px){

	#welcome .logo{
		max-width: 35%;
		margin: auto;
	}

	#logo_big_mobile img{

		width: 94%;
	}

	#recommend .recommend_wrapper .recommend_pic {
		width: 70%;
		float: initial;
	}

	#myModal{top: 0}

	.modal-header, .modal-body {padding: 10px;}

	footer *{font-size: 15px;}
}
.con {
	font-size: 22px;
	padding-right: 20px;
	font-family: arial !important;
}

a[href^="tel"]{
    color:inherit;
    text-decoration:none;
    font-family: arial !important;
}