body {
	margin: 0;
	padding: 0;
	direction: rtl;
	font-family: Arial,"Open Sans",Verdana;
}


/* Header */
#header-container {
 	z-index: 10001;
 	width: 100%;
 	padding: 5px 0 5px 0;
 	top: 0;
 	position: fixed;
 	transition: all .3s linear 0.3s;
 	-webkit-transition: all .3s linear 0.3s;
 	-webkit-backface-visibility: hidden
}

#header-inner {
	width: 100%;
	margin: 0 auto;
 	max-width: 1100px;
 	padding: 0 15px;
 	-moz-box-sizing: border-box;
 	box-sizing: border-box;
	overflow: auto;
}

#logo-container {
	float: left;
	width: 25%;
	height: 40px;
	position: relative;
}

#logo-container img {
	max-height: 35px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	transition: max-height 0.3s ease-in-out;
	-webkit-transition: max-height 0.3s linear;
	-webkit-backface-visibility: hidden;
}

#navigation-container {
	float: right;
	text-align: right;
	width: 60%;
	line-height: 35px;
	font-weight: 600;
	font-size: 13px;
}

.navigation-link {
	display: inline-block;
	margin: 0 0 0 10px;
	text-decoration: none;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}

.navigation-link:last-child {
	margin-right: 0px;
}

.blank-stripe {
	height: 35px;
	padding: 0;
	margin: 0;
	background-color: grey;
}

.video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
	background-color: grey;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:5%;
	width:90%;
	height:90%;
}

@media screen and (max-width:480px) {
   	#header-container {
   		padding-top: 15px;
   	}

   	#header-inner {
   		padding: 0 5px;
   	}

   	#logo-container {
		width: 100%;
		line-height: 35px;
		text-align: center;
		margin: 0 0 5px 0;
	}

	#logo-container img {
		right: 0;
	}

	#navigation-container {
		width: 100%;
		line-height: 20px;
		text-align: center;
		font-size: 12px;
	}

	.navigation-link {
		margin: 0 0 0 5px;
	}
}

@media screen and (orientation: portrait) {
	.blank-stripe {
		height: 80px;
		padding: 0;
		margin: 0;
		background-color: grey;
	}
	.video-container iframe, .video-container object, .video-container embed {
		position:absolute;
		top:0;
		left:0;
		width:100%;
		height:100%;
	}
}

/* Home Section */
#home {
	position: relative;
	overflow: hidden;
}

#slide-prev {
	position: absolute;
	left: 25px;
	top: 50%;
	z-index: 10000;
	font-size: 30px;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	line-height: 85px;
}

#slide-prev:hover {
	color: rgba(255, 255, 255, 0.8);
}

#slide-next {
	position: absolute;
	right: 25px;
	top: 50%;
	z-index: 10000;
	font-size: 30px;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	line-height: 85px;
}

#slide-next:hover {
	color: rgba(255, 255, 255, 0.8);
}

#all-slides-container {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	transition: transform 0.3s linear;
	-webkit-transition: -webkit-transform 0.3s linear;
	-webkit-backface-visibility: hidden;
}

.slide {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

#slide-1 {
	left: 0;
}

#slide-2 {
	left: 100%;	
}

#slide-3 {
	left: 200%;		
}

#slide-4 {
	left: 300%;	
}

.home-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.slide-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-attachment: scroll;
	background-position: center;
}

.slide-container {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 100%;
	padding: 0 75px;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	margin: 0 auto;
}

.slide-header-1 {
	text-align: center;
	font-size: 60px;
	font-weight: 400;
	line-height: 85px;
	margin: 0px;
	text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.6);
}

.slide-header-2 {
	text-align: center;
	font-size: 30px;
	margin: 0;
	text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.6);
	font-weight: 400;
}

.slide-button {
	margin: 30px auto 0 auto;
	text-align: center;
	display: block;
	max-width: 250px;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
	padding: 8px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

@media screen and (max-width:800px) and (min-width:320px) {
   	.slide-header-1 {
		line-height: normal;
	}

   	#slide-next, #slide-prev {
		
		line-height: normal;
	}
}

@media screen and (max-width:480px) {
   	.slide-container {
   		top: 50%;
   		padding: 0 5px;
   	}

   	.slide-header-1 {
		font-size: 33px;
		line-height: normal;
	}

	.slide-header-2 {
		font-size: 18px;
	}

   	#slide-next, #slide-prev {
		top: auto;
		bottom: 15px;
		font-size: 25px;
		line-height: normal;
	}

	#slide-prev {
		left: 15px;
	}

	#slide-next {
		right: 15px;
	}

	.slide-button {
		max-width: 150px;
		padding: 4px;
		font-size: 14px;
		font-weight: 400;
	}
}

@media screen and (max-height:400px) and (orientation: landscape) {
   	.slide-container {
   		top: 50%;
   		padding: 0 5px;
   	}

   	.slide-header-1 {
		font-size: 30px;
		line-height: normal;
	}

	.slide-header-2 {
		font-size: 16px;
	}

   	#slide-next, #slide-prev {
		top: auto;
		bottom: 15px;
		font-size: 25px;
		line-height: normal;
	}

	#slide-prev {
		left: 15px;
	}

	#slide-next {
		right: 15px;
	}

	.slide-button {
		margin-top: 20px;
		max-width: 150px;
		padding: 2px;
		font-size: 13px;
		font-weight: 400;
	}
}


/* Features Section */
#features {
	
}

#features.two-columns {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
	margin: 0 auto;
	max-width: 1100px;
	overflow: hidden;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	padding: 40px 40px 0 40px;
}

.feature.two-columns {
    max-width: 540px;
	min-width: 540px;
    display: inline-block;
}

.feature:first-child {
	padding-top: 20px;
}

.feature-text-container {
	padding: 0 25px 0 15px;
	width: 87%;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	float: left;
	border-width: 0 6px 0 0;
}

.feature.two-columns .feature-text-container {
    width: 77%;
}

.feature-header {
	font-size: 30px;
	margin: 0px;
	color: black;
	font-weight: 400;
}

.feature-description {
	font-size: 18px;
	font-weight: 300;
	color: #666666;
	margin: 0;
	line-height: 2;
	text-align: justify;
	white-space: pre-wrap;
}

.feature-image {
	padding: 0 0 0 15px;
	float: right;
	width: 13%;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	font-size: 80px;
}

.feature-image i {
	vertical-align: top;
}

.feature-image img {
	max-width: 100%;
	cursor: pointer;
}

@media screen and (max-width:480px) {
   	#features {
   		padding: 30px 0 0 0 !important;
   	}

   	.feature {
   		padding-left: 5px;
   		padding-right: 5px;
   	}

   	.feature-text-container {
   		width: 78%;
		border-right-width: 4px;
		padding-left: 5px;
	}

	.feature-header {
		font-size: 20px;
		text-align: justify;
	}

	.feature-description {
		font-size: 16px;
		line-height: 1.5;
		text-align: justify;
	}

	.feature-image {
		font-size: 60px;
		width: 22%;
	}
	.feature.two-columns {
		max-width: 480px;
		min-width: 250px;
	}
}

@media (max-width:1024px) and (min-width:480px) {
   	.feature-text-container {
   		width: 85%;
		border-right-width: 5px;
	}

	.feature-header {
		font-size: 28px;
	}

	.feature-description {
		font-size: 17px;
	}

	.feature-image {
		font-size: 70px;
	}
	.feature.two-columns {
		max-width: 540px;
		min-width: 480px;
	}

}

@media (max-width:640px) and (min-width:640px) {
   	.feature-text-container {
   		width: 84%;
   	}

   	.feature-image {
		width: 16%;
	}
}

@media (min-width:960px) {
   	.feature-text-container {
   		width: 90%;
   	}

   	.feature-image {
		width: 10%;
	}
}


/* Testimonials Section */
#testimonials {
	position: relative;
	height: 400px;
	-webkit-user-select: none;  
	-moz-user-select: none;    
	-ms-user-select: none;      
	user-select: none;
}

#testimonials-inner {
	min-height: 400px;
	height: 100%;
	background-size: cover;
	background-attachment: scroll;
	background-position: center;
	position: relative;
	cursor: url("https://maps.gstatic.com/mapfiles/openhand_8_8.cur"), default;
}

#testimonial-header {
	width: 100%;
	max-width: 1100px;
	text-align: center;
	font-size: 30px;
	color: black;
	margin: 0 auto;
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
	z-index: 1001;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	padding: 15px;
}

#all-testimonials-outer-container {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	right: 0;
	margin: 0 auto;
	max-width: 1000px;
	overflow: hidden;
}

#all-testimonials-inner-container {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	transition: transform 0.3s linear;
	-webkit-transition: -webkit-transform 0.3s linear;
}

.testimonial {
	position: absolute;
	width: 100%;
	/* height: 100%; */
	padding: 0 15px;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
	top: 15%;
}

#testimonial-1 {
	left: 0;
}

#testimonial-2 {
	left: 100%;
}

#testimonial-3 {
	left: 200%;
}

#testimonial-4 {
	left: 300%;
}

#testimonial-5 {
	left: 400%;
}

.testimonial-comment {
	width: 100%;
	font-size: 30px;
	font-weight: 300;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	overflow: hidden;
}

.testimonial-quote-left {
	color: #cccccc;
	display: inline-block;
	width: 10%;
	text-align: left;
	float: left;
	font-size: 25px;
	line-height: 1.5;
}

.customer-comment {
	display: inline-block;
	width: 80%;
	float: left;
	text-align: center;
	line-height: 1.5;
}

.testimonial-quote-right {
	color: #cccccc;
	display: inline-block;
	width: 10%;
	text-align: right;
	float: left;
	font-size: 25px;
	line-height: 1.5;
}

.testimonial-customer-info {
	margin: 50px 0 0 0;
	width: 100%;
	padding: 0 15px;
	text-align: center;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
}

.testimonial-image {
	width: 50px;
	height: 50px;
	border-radius: 50px;
	margin: 0 0 0 20px;
	vertical-align: middle;
} 

.customer-name {
	font-weight: 400;
	font-size: 15px;
	color: black;
	margin: 0 0 0 10px;
}

.customer-website {
	font-size: 15px;
	text-decoration: none;
	border-bottom: 1px dashed rgba(0,0,0, 0.5);
	color: inherit;
}

.customer-website:hover {
	border-bottom: 1px dashed black;
}

#slide-controls {
	width: 100px;
	position: absolute;
	bottom: 10px;
	padding: 10px;
	cursor: auto;
	left: 0;
	overflow: hidden;
	right: 0;
	margin: 0 auto;
}

.slide-control {
	width: 10px;
	height: 10px;
	margin: 0 10px 0 0;
	float: left;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 10px;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	cursor: pointer;
}

.slide-control-active {
	background-color: rgba(0, 0, 0, 0.9) !important;
}

.slide-control:last-child {
	margin-right: 0px !important;
}

#slide-swipe {
	position: absolute;
	bottom: 16px;
	overflow: hidden;
	right: 10px;
	margin: 0 auto;
	font-size: 10px;
	text-align: center;
}

#slide-swipe i:first-child {
	margin: 0 5px 0 0;
}

#slide-swipe i:last-child {
	margin: 0 0 0 5px;
}

@media screen and (max-width:480px) {
   	#testimonials {
   		padding: 50px 0 0 0 !important;
   	}

   	.testimonial {
   		top: 8%;
   	}

   	.testimonial-quote-left, .testimonial-quote-right {
		font-size: 18px;
   	}

   	.testimonial-comment {
		font-size: 20px;
	}

	.testimonial-image {
		width: 40px;
		height: 40px;
		display: block;
		margin: 0 auto 5px auto;
	} 

	.customer-name {
		font-size: 12px;
	}

	.customer-website {
		font-size: 12px;
	}

	#slide-controls {
		display: none;
	}

	#slide-swipe {
		right: 0;
		left: 0;
	}
}


/* Pricing Section */
#pricing {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	width: 100%;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	max-width: 1100px;
 	padding: 0 15px 0 15px;
}

#pricing-header-1 {
	text-align: center;
	font-size: 35px;
	line-height: 1;
	margin: 20px 0 10px 0;
	font-weight: 400;
}

#pricing-header-2 {
	text-align: center;
	font-size: 22px;
	margin: 0px;
	font-weight: 300;
}

#pricing-tables-container {
	overflow: hidden;
	margin: 50px 0 0 0;
	text-align: center;
}

.pricing-table-container {
	width: 29%;
	display: inline-block;
	margin: 0;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	vertical-align: top;
}

.pricing-table-container:nth-child(2) .pricing-table-all-features {
	border-left: 1px solid #fad9ca;
}

.pricing-table-container:nth-child(3) .pricing-table-all-features {
	border-left: 1px solid #fad9ca;
}

.pricing-table {
	text-align: center;
	color: white;
}

.pricing-table-header {
	padding: 13px 0;
}

#pricing-table-1 .pricing-table-header, #pricing-table-1 .pricing-table-button {
	background-color: #f8ae45;
}

#pricing-table-2 .pricing-table-header, #pricing-table-2 .pricing-table-button {
	background-color: #f87c45;
}

#pricing-table-3 .pricing-table-header, #pricing-table-3 .pricing-table-button {
	background-color: #f84545;
}

.plan-name {
	font-size: 20px;
	font-weight: 300;
}

.plan-price {
	line-height: 1.5;
}

.plan-price-currency {
	vertical-align: middle;
	font-size: 22px;
	font-weight: 300;
	display: inline-block;
	margin: 30px 5px 0 0;
}

.plan-price-amount {
	vertical-align: middle;
	font-size: 65px;
	font-weight: 300;
}

.plan-period {
	font-size: 18px;
	font-weight: 300;
}

.pricing-table-all-features {
	background-color: #fbf3f0;
}

.pricing-table-feature-container {
	color: #666666;
	border-bottom: 1px solid #fad9ca;
	padding: 0 20px;
}

.pricing-table-feature-container:last-child {
	border-bottom: none;
}

.pricing-table-feature {
	font-size: 16px;
	font-weight: 300;
	line-height: 45px;
}

.pricing-table-button-container {
	background-color: #f4f5f6;
}

.pricing-table-button {
	width: 100%;
	padding: 8px;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	margin: 0 auto;
 	font-size: 15px;
 	display: block;
 	font-weight: 400;
 	text-decoration: none;
 	color: white;
}

.pricing-table-button:hover {
	text-decoration: none;
}

@media screen and (max-width:800px) and (min-width:320px) {
	#pricing {
		padding-left: 5px;
		padding-right: 5px;
	}

    .pricing-table-container {
		width: 33% !important;
	}

	.pricing-table-header {
		padding: 25px 0;
	}

	.plan-price {
		padding: 30px 0;	
	}
}

@media screen and (max-width:480px) and (min-width:320px) {
    #pricing {
    	padding-top: 30px !important;
    }

    #pricing-header-1 {
    	font-size: 30px;
    }

    #pricing-header-2 {
    	font-size: 20px;
    }

    #pricing-tables-container {
    	margin: 30px 0 0 0;
    }

    .pricing-table-container {
		width: 80% !important;
		margin: 60px 0 0 0;
	}

	.pricing-table-container:nth-child(1) {
		margin: 0;
	}

	.pricing-table-all-features {
		border: none !important
	}
}


/* Contact Section */
#contact {
	position: relative;
	border-top: 1px solid #e9e9e9;
	margin: 100px 0 0 0;
	padding: 100px 0 0 0;
}

#contact-inner {
	position: relative;
	padding: 30px 0;
	width: 100%;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	max-width: 1100px;
 	padding: 0 15px 0 15px;
 	margin: 0 auto;
 	overflow: hidden;
}

#contact-details {
	float: left;	
 	width: 55%;
}

#contact-info {
	background-color: #fac9b2;
	padding: 15px;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
}

#contact-header {
	font-size: 30px;
	font-weight: 300;
	margin: 0 0 20px 0;
}

#contact-types {
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	font-size: 14px;
 	color: rgba(0, 0, 0, 0.5);
}

.contact-type-container {
	margin: 0 0 10px 0;
}

.contact-type-container:last-child {
	margin-bottom: 0px;
}

.contact-type-container i {
	margin: 0 0 0 10px;
	text-align: center;
	width: 15px;
}

#contact-location {
	margin: 20px 0 0 0;
}

#contact-form {
	overflow: hidden;
	width: 40%;
	margin: 0 0 0 5%;
	float: right;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	position: relative;
}

.form-text-element {
	display: block;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	width: 100%;
 	padding: 8px;
 	border: 1px solid #fad9ca;
 	margin: 0 0 20px 0;
 	font-size: 16px;
 	font-family: inherit;
 	font-weight: 600;
	outline: none;
 	resize: none;
 	color: black;
 	border-radius: 0px;
 	box-shadow: none;
}

.form-element-container {
	position: relative;
}

.form-element-label-container {
	position: absolute;
	top: 8px;
	right: 8px;
}

.form-element-label {
	font-weight: 400;
	font-size: 14px;
	color: #666666;
}

#form-message {
	height: 200px;
}

#form-error {
	position: absolute;
	bottom: -42px;
	transition: bottom 0.2s linear;
	-webkit-transition: bottom 0.2s linear;
	background-color: #f84545;
	width: 100%;
	padding: 8px;
	font-size: 14px;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	text-align: center;
 	color: white;
}

#form-success {
	background-color: #83da3c;
	position: absolute;
	bottom: -42px;
	transition: bottom 0.2s linear;
	-webkit-transition: bottom 0.2s linear;
	width: 100%;
	padding: 8px;
	font-size: 14px;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 	text-align: center;
 	color: white;
}

#send-message-button {
	width: 100%;
	-moz-box-sizing: border-box;
 	box-sizing: border-box;
	padding: 8px;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	background-color: #f8ad8b;
	color: #333333;
}

#send-message-button:hover {
	background-color: #f8ae45;
}

@media screen and (max-width:480px) {
	#contact {
		margin: 50px 0 0 0;
		padding: 50px 0 0 0;
	}

	#contact-form {
		width: 100%;
		margin: 40px 0 0 0;
	}

	#contact-details {
		width: 100%;
	}
}


/* Footer */
#footer {
	text-align: center;
	padding: 30px;
	margin: 0px 0 0 0;
}

.social-icon {
	display: inline-block;
	font-size: 25px;
	vertical-align: middle;
	margin-left: 20px;
	cursor: pointer;
	color: #555555;
}

.footer-link {
	color: inherit;
}

.footer-custom, .footer-custom-pre {
	min-height: 150px;
	text-align: center;
	font-weight: 300;
	cursor: pointer;
	padding-top: 30px;
}

.footer-custom-pre {
	padding-top: 80px;
}

.footer-message {
	display: inline-block;
	vertical-align: middle;
	color: rgba(0, 0, 0, 0.6);
	font-size: 14px;
}
