body {	
	font: 14px/24px 'Roboto', sans-serif;
	color: #1f1f1f;
	background: #fff;
}
/* Medium devices (desktops, tablets, 992px and up) */
@media (min-width: 992px) {
	.navbar-brand {
		min-width: 300px;
	}
}

/* Small devices (tablets, 768px and up) */
@media (max-width: 768px) {
	.navbar-brand {
		max-width: 250px;
	}
}

/* Footer Text Small devices (tablets, 768px and up) */
@media (max-width: 768px) {
	.small-device-gap  {
		margin-bottom: 50px;
	}
}

.header {
	padding: 0px 0 20px 0;
	background-color: #f5f5f5;
}

/* Standard Styles Starts */

.shadow-style {
	-webkit-box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.3);
		-moz-box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.3);
			box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.3);
}
.border-style-right {
	border-width: 0 2px 0 0;
	border-style: solid;
	border-color: #38b64a;
}

.fl { float: left; }
.fr { float: right; }

img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: auto;
}

.hr-color { 
	border-width: 1.5px;
	border-color: #333333;
 }

.bg-grey { background-color: #f6f6f6 !important; }

.bg-green { background-color: #C0FCD4 !important; }

.p-small { font-size: 15px; }

.justify { text-align: justify; }

.left { text-align: left; }

.text-color { color: #424242; }

.text-color-red { color: #e84c3d; }

.text-color-white { color: #ffffff; }

.text-color-green { color: #38b64a; }

.white-bg {
	background-color: #C0FCD4 !important;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	border: none !important;
}

a { color: #38b64a; }
a:hover, 
a:focus {
	color: #38b64a;
}
a:focus { outline: none; }

/* Heading Styles Starts */

h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
	font-family: 'Roboto', sans-serif;
}

h1 { font-size: 60px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

.heading-style-1 {
	margin-top: 0;
	margin-bottom: 0;
}	
	.heading-style-1::after {
		content: "";
		width: 50px;
		height: 2px;
		display: block;
		background-color: #1f1f1f;
	}
	.heading-style-1.text-center::after {
		margin: 7px auto 20px;
	}

.heading-style-2 {
	margin-bottom: 30px;
	color: #333;
}
.heading-style-2.inverse {
	color: #fff;
}
	.heading-style-2:after {
		content: "";
		margin-top: 20px;
		display: block;
		width: 110px;
		height: 4px;
		background-color: #38b64a;
	}
	.heading-style-2.inverse:after {
		background-color: #fff;
	}
	.heading-style-2.text-center:after {
		margin-left: auto;
		margin-right: auto;
	}
.heading-style-3-title {
	margin-top: 0;
	padding-bottom: 9px;
	position: relative;
	text-transform: uppercase;
}
	.heading-style-3-title::before {
		width: 370px;
		height: 1px;
		bottom: 0;
		background-color: #c2c2c2;
	}
	.heading-style-3-title::after {
		width: 30px;
		height: 5px;
		bottom: -2px;		
		background-color: #38b64a;
	}
	.heading-style-3-title::before, 
	.heading-style-3-title::after {
		content: "";
		margin-left: auto;
		margin-right: auto;
		position: absolute;
		left: 0;
		right: 0;
	}
	
.contact-section {
	background-image: url(../images/bg/contact-bg.jpg);
	background-repeat: no-repeat;
	margin: auto;
}
/* Hover tooltips */
/* Mozilla Browser */
@-moz-document url-prefix() {

.field-tip-top {
    position:relative;
    cursor:pointer;
}
    .field-tip-top .tip-content-top {
		text-align: left;
		position:absolute;
		bottom:-50px;
        right:9999px;
        width:300px;
        margin-right:-125px; /* width + left/right padding */
        padding:10px;
        color:rgb(0, 0, 0);
        background:rgba(56, 182, 74, .85);
        opacity:0;
        -webkit-transition:opacity 250ms ease-out;
           -moz-transition:opacity 250ms ease-out;
            -ms-transition:opacity 250ms ease-out;
             -o-transition:opacity 250ms ease-out;
				transition:opacity 250ms ease-out;
		border-radius: 5px;
    }
        /* <http://css-tricks.com/snippets/css/css-triangle/> */
        .field-tip-top .tip-content-top:before {
            content:' '; /* Must have content to display */
            position:absolute;
			top:100%;
            left:50%; /* 2 x border width */
            width:0;
            height:0;
            margin-left:-5px; /* - border width */
			border-left: 10px solid transparent;
			border-right: 10px solid transparent;
			border-top: 10px solid rgba(56, 182, 74, .85);
        }
        .field-tip-top:hover .tip-content-top {
            right:-20px;
            opacity:1;
		}
		
.field-tip-bottom {
    position:relative;
    cursor:pointer;
}
    .field-tip-bottom .tip-content-bottom {
		z-index: 1;
		text-align: left;
        position:absolute;
        top:170px;
        right:9999px;
        width:300px;
        margin-right:-125px; /* width + left/right padding */
        padding:10px;
        color:rgb(0, 0, 0);
        background:rgba(56, 182, 74, .85);
        opacity:0;
        -webkit-transition:opacity 250ms ease-out;
           -moz-transition:opacity 250ms ease-out;
            -ms-transition:opacity 250ms ease-out;
             -o-transition:opacity 250ms ease-out;
				transition:opacity 250ms ease-out;
		border-radius: 5px;
    }
        /* <http://css-tricks.com/snippets/css/css-triangle/> */
        .field-tip-bottom .tip-content-bottom:before {
            content:' '; /* Must have content to display */
            position:absolute;
			bottom:100%;
            left:50%; /* 2 x border width */
            width:0;
            height:0;
			margin-left:-5px; /* - border width */
			border-left: 5px solid transparent;
			border-right: 5px solid transparent;
			border-bottom: 5px solid rgba(56, 182, 74, .85);
        }
        .field-tip-bottom:hover .tip-content-bottom {
            right:-20px;
            opacity:1;
		}
}
/* Chrome Browser */
@media screen and (-webkit-min-device-pixel-ratio:0)
  and (min-resolution:.001dpcm) {
	.field-tip-top {
		position:relative;
		cursor:pointer;
	}
		.field-tip-top .tip-content-top {
			text-align: left;
			position:absolute;
			bottom:125px;
			right:9999px;
			width:300px;
			margin-right:-310px; /* width + left/right padding */
			padding:10px;
			color:rgb(0, 0, 0);
			background:rgba(56, 182, 74, .85);
			opacity:0;
			-webkit-transition:opacity 250ms ease-out;
			   -moz-transition:opacity 250ms ease-out;
				-ms-transition:opacity 250ms ease-out;
				 -o-transition:opacity 250ms ease-out;
					transition:opacity 250ms ease-out;
			border-radius: 5px;
		}
			/* <http://css-tricks.com/snippets/css/css-triangle/> */
			.field-tip-top .tip-content-top:before {
				content:' '; /* Must have content to display */
				position:absolute;
				top:100%;
				left:50%; /* 2 x border width */
				width:0;
				height:0;
				margin-left:-5px; /* - border width */
				border-left: 10px solid transparent;
				border-right: 10px solid transparent;
				border-top: 10px solid rgba(56, 182, 74, .85);
			}
			.field-tip-top:hover .tip-content-top {
				right:-20px;
				opacity:1;
			}
			
	.field-tip-bottom {
		position:relative;
		cursor:pointer;
	}
		.field-tip-bottom .tip-content-bottom {
			z-index: 1;
			text-align: left;
			position:absolute;
			top:120px;
			right:9999px;
			width:300px;
			margin-right:-310px; /* width + left/right padding */
			padding:10px;
			color:rgb(0, 0, 0);
			background:rgba(56, 182, 74, .85);
			opacity:0;
			-webkit-transition:opacity 250ms ease-out;
			   -moz-transition:opacity 250ms ease-out;
				-ms-transition:opacity 250ms ease-out;
				 -o-transition:opacity 250ms ease-out;
					transition:opacity 250ms ease-out;
			border-radius: 5px;
		}
			/* <http://css-tricks.com/snippets/css/css-triangle/> */
			.field-tip-bottom .tip-content-bottom:before {
				content:' '; /* Must have content to display */
				position:absolute;
				bottom:100%;
				left:50%; /* 2 x border width */
				width:0;
				height:0;
				margin-left:-5px; /* - border width */
				border-left: 5px solid transparent;
				border-right: 5px solid transparent;
				border-bottom: 5px solid rgba(56, 182, 74, .85);
			}
			.field-tip-bottom:hover .tip-content-bottom {
				right:-20px;
				opacity:1;
			}
}
/* IE browser */
@supports (-ms-ime-align:auto) {
	.field-tip-top {
		position:relative;
		cursor:pointer;
	}
		.field-tip-top .tip-content-top {
			text-align: left;
			position:absolute;
			bottom:135px;
			right:9999px;
			width:300px;
			margin-right:-130px; /* width + left/right padding */
			padding:10px;
			color:rgb(0, 0, 0);
			background:rgba(56, 182, 74, .85);
			opacity:0;
			-webkit-transition:opacity 250ms ease-out;
			   -moz-transition:opacity 250ms ease-out;
				-ms-transition:opacity 250ms ease-out;
				 -o-transition:opacity 250ms ease-out;
					transition:opacity 250ms ease-out;
			border-radius: 5px;
		}
			/* <http://css-tricks.com/snippets/css/css-triangle/> */
			.field-tip-top .tip-content-top:before {
				content:' '; /* Must have content to display */
				position:absolute;
				top:100%;
				left:50%; /* 2 x border width */
				width:0;
				height:0;
				margin-left:-5px; /* - border width */
				border-left: 10px solid transparent;
				border-right: 10px solid transparent;
				border-top: 10px solid rgba(56, 182, 74, .85);
			}
			.field-tip-top:hover .tip-content-top {
				right:-20px;
				opacity:1;
			}
			
	.field-tip-bottom {
		position:relative;
		cursor:pointer;
	}
		.field-tip-bottom .tip-content-bottom {
			z-index: 1;
			text-align: left;
			position:absolute;
			top:150px;
			right:9999px;
			width:300px;
			margin-right:-130px; /* width + left/right padding */
			padding:10px;
			color:rgb(0, 0, 0);
			background:rgba(56, 182, 74, .85);
			opacity:0;
			-webkit-transition:opacity 250ms ease-out;
			   -moz-transition:opacity 250ms ease-out;
				-ms-transition:opacity 250ms ease-out;
				 -o-transition:opacity 250ms ease-out;
					transition:opacity 250ms ease-out;
			border-radius: 5px;
		}
			/* <http://css-tricks.com/snippets/css/css-triangle/> */
			.field-tip-bottom .tip-content-bottom:before {
				content:' '; /* Must have content to display */
				position:absolute;
				bottom:100%;
				left:50%; /* 2 x border width */
				width:0;
				height:0;
				margin-left:-5px; /* - border width */
				border-left: 5px solid transparent;
				border-right: 5px solid transparent;
				border-bottom: 5px solid rgba(56, 182, 74, .85);
			}
			.field-tip-bottom:hover .tip-content-bottom {
				right:-20px;
				opacity:1;
			}
}
.client-tip {
    position:relative;
    cursor:pointer;
}
    .client-tip .tip-content-client {
		z-index: 1;
		text-align: left;
        position:absolute;
        top:80px;
        right:9999px;
		width:200px;
		font-size: 12px;
		text-align: center;
        margin-right:20px; /* width + left/right padding */
        padding:10px;
        color:#f0f0f0;
        background:#333;
        opacity:0;
        -webkit-transition:opacity 250ms ease-out;
           -moz-transition:opacity 250ms ease-out;
            -ms-transition:opacity 250ms ease-out;
             -o-transition:opacity 250ms ease-out;
				transition:opacity 250ms ease-out;
		border-radius: 5px;
    }
        /* <http://css-tricks.com/snippets/css/css-triangle/> */
        .client-tip .tip-content-client:before {
            content:' '; /* Must have content to display */
            position:absolute;
			bottom:100%;
            left:50%; /* 2 x border width */
            width:0;
            height:0;
			margin-left:-5px; /* - border width */
			border-left: 5px solid transparent;
			border-right: 5px solid transparent;
			border-bottom: 5px solid #333;
        }
        .client-tip:hover .tip-content-client {
            right:-20px;
            opacity:1;
        }

/* Form & Buttons Styles Starts */

.btn-main {
	background-color: #fff;
	color: #1f1f1f;
	border: 1px solid #b2b2b2;
}
.btn-main:hover, 
.btn-main:focus, 
.btn-main:active, 
.btn-main.active {
	background-color: #555;
	border-color: #333;
}
.btn-secondary {
	background-color: #38b64a;
}
.btn-secondary:hover, 
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
	background-color: #38b64a;
}

.btn-main:hover, 
.btn-main:focus, 
.btn-main:active, 
.btn-main.active, 
.btn-secondary, 
.btn-secondary:hover, 
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
	color: #fff;
}

.btn-style-1 {
	padding: 12px 36px;
}

/* Navigation Styles Starts */

#nav {
	margin-bottom: 0;
	padding-top: 15px;
	padding-bottom: 20px;
}
#nav.sticky-nav {
	width: 100%;
	z-index: 999;
}
#nav.navbar-default {
	background-color: #f5f5f5;
	border: none;
}
#nav.fixednav {
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
	   -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
	        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);	
}
	#nav .navbar-brand {
		margin-top: 7px;
		padding-top: 0;
		padding-bottom: 0;
		height: auto;
		color: #1f1f1f;
		font-size: 24px;
		line-height: normal;
	}
		#nav .navbar-nav > li > a {
			color: #1f1f1f;
			line-height: normal;
		}
		#nav .navbar-nav > li > a:hover, 
		#nav .navbar-nav > li.current > a {
			color: #38b64a;
		}
		#nav.navbar-default .navbar-toggle {
			margin-top: 10px;
			background: none;
			border: none;
		}
		#nav.navbar-default .navbar-toggle span {
			background-color: #1f1f1f;
		}
		#nav.navbar-default .navbar-toggle:hover span {
			background-color: #38b64a;
		}
		#nav.navbar-default .navbar-collapse {
			border-color: #b1b1b1;
		}

/* Main Slider Styles Starts */

#main-slider {
	background: rgba(0, 0, 0, 0.8);
}
	#main-slider .carousel-caption {
		top: 25%;
		bottom: 0;
		left: 8%;
		right: 8%;
		color: #fff;
		text-shadow: none;
	}
		#main-slider .carousel-caption h1 {
			margin-top: 0;
			margin-bottom: 30px;
		}
		#main-slider .carousel-caption ul {
			margin-bottom: 0;
		}
			#main-slider .carousel-caption li + li {
				margin-left: 30px;
			}
			#main-slider .carousel-caption .btn {
				margin-top: 60px;
				padding: 12px 30px;
				font-size: 18px;
			}
				#main-slider .carousel-caption .btn .fa {
					margin-right: 10px;
					font-size: 22px;
					vertical-align: text-bottom;
				}

	#main-slider .carousel-control {
		padding: 8px 12px;
		top: 40%;
		bottom: auto;
		width: auto;
		height: auto;
		font-size: 20px;
		opacity: 1;
		text-shadow: none;		
		background: none;
		border: 1px solid #fff;
	}
	#main-slider .carousel-control:hover, 
	#main-slider .carousel-control:focus {
		color: #38b64a;
		background: #fff;
	}
	#main-slider .carousel-control.left {
		left: 5%;
	}
	#main-slider .carousel-control.right {
		right: 5%;
	}

	#main-slider.carousel-fade .carousel-inner .item {
	  -webkit-transition-property: opacity;
		 -moz-transition-property: opacity;
			  transition-property: opacity;
	}
	#main-slider.carousel-fade .carousel-inner .item,
	#main-slider.carousel-fade .carousel-inner .active.left,
	#main-slider.carousel-fade .carousel-inner .active.right {
		opacity: 0;
	}
	#main-slider.carousel-fade .carousel-inner .active,
	#main-slider.carousel-fade .carousel-inner .next.left,
	#main-slider.carousel-fade .carousel-inner .prev.right {
		opacity: 1;
	}
	#main-slider.carousel-fade .carousel-inner .next,
	#main-slider.carousel-fade .carousel-inner .prev,
	#main-slider.carousel-fade .carousel-inner .active.left,
	#main-slider.carousel-fade .carousel-inner .active.right {
		left: 0;
		-webkit-transform: translate3d(0, 0, 0);
		   -moz-transform: translate3d(0, 0, 0);
			    transform: translate3d(0, 0, 0);
	}
	#main-slider.carousel-fade .carousel-control {
		z-index: 2;
	}

/* Section Styles Starts */

.section {
	padding-top: 75px;
	padding-bottom: 75px;
}
	.section .main-heading-1 {
		margin-top: 0;
	}
	.section .main-heading-1 + h6 {
		line-height: 28px;
	}
	.section p {
		margin-bottom: 0;
	}
	.section p + p {
		margin-top: 20px;
	}
	
/* Info Bar Styles Starts */

.info-bar {
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: #2896df;
}
	.info-bar h4 {
		margin-bottom: 0;
	}
	.info-bar .btn {
		padding: 15px 30px;
		font-size: 15px;
		font-weight: 500;
		text-transform: uppercase;
	}

/* Gallery Grid Styles Starts */

.gallery-grid {
	overflow: hidden;
}
	.gallery-grid-item {
		margin-top: 15px;
		margin-bottom: 15px;
	}
		.gallery-grid-item .hover-content {
			position: relative;			
			overflow: hidden;
		}
			.gallery-grid-item .hover-content, 
			.gallery-grid-item .hover-content .gallery-overlay {
				-webkit-border-radius: 5px;
				   -moz-border-radius: 5px;
						border-radius: 5px;	
			}
			.gallery-grid-item .hover-content img {
				-webkit-transform: scale(1.0);
			       -moz-transform: scale(1.0);
						transform: scale(1.0);
			}
			.gallery-grid-item .hover-content:hover img {
				-webkit-transform: scale(1.3);
			       -moz-transform: scale(1.3);
			            transform: scale(1.3);
			}				
				.gallery-grid-item .hover-content .gallery-overlay {
					position: absolute;
					top: 0;
					right: 0;
					left: 0;
					bottom: 0;
					height: auto;
					text-align :center;
					color: #000;
					opacity: 0;	
					background: rgba(37, 202, 87, 0.6);
				}
				.gallery-grid-item .hover-content:hover .gallery-overlay {
					opacity: 1;
				}
					.gallery-grid-item .hover-content .gallery-overlay h5 {
						margin-top: 50px;
						margin-bottom: 5px;
					}
					.gallery-grid-item .hover-content .gallery-overlay ul {
						margin-top: 10px;
						margin-bottom: 0;
					}
						.gallery-grid-item .hover-content .gallery-overlay li + li {
							margin-left: 50px;
						}
						.gallery-grid-item .hover-content .gallery-overlay h5 {
							-webkit-transform: translateY(-75px);
							   -moz-transform: translateY(-75px);
								-ms-transform: translateY(-75px);				
									transform: translateY(-75px);
						}
						.gallery-grid-item .hover-content .gallery-overlay p {
							-webkit-transform: translateY(-65px);
							   -moz-transform: translateY(-65px);
								-ms-transform: translateY(-65px);				
									transform: translateY(-65px);
						}
						.gallery-grid-item .hover-content .gallery-overlay li:first-of-type {
							-webkit-transform: translateX(-75px);
							   -moz-transform: translateX(-75px);
								-ms-transform: translateX(-75px);				
									transform: translateX(-75px);
						}
						.gallery-grid-item .hover-content .gallery-overlay li:last-of-type {
							-webkit-transform: translateX(75px);
							   -moz-transform: translateX(75px);
								-ms-transform: translateX(75px);				
									transform: translateX(75px);
						}
						.gallery-grid-item .hover-content .gallery-overlay:hover li {
							-webkit-transform: translateX(0);
							   -moz-transform: translateX(0);
								-ms-transform: translateX(0);
									transform: translateX(0);
						}
						.gallery-grid-item .hover-content .gallery-overlay:hover h5, 
						.gallery-grid-item .hover-content .gallery-overlay:hover p {
							-webkit-transform: translateY(0);
							   -moz-transform: translateY(0);
								-ms-transform: translateY(0);
									transform: translateY(0);
						}
							.gallery-grid-item .hover-content .gallery-overlay li a .fa {
								padding-top: 5px;
								width: 36px;
								height: 36px;
								line-height: 36px;
								color: #171717;
								font-size: 18px;
							}
							.gallery-grid-item .hover-content .gallery-overlay li a:hover .fa {
								color: #fff;
							}

/* Header Styles Starts */

.main-header {
	padding-top: 50px;
	padding-bottom: 50px;
	background-image: url(../images/header-bg.jpg);
}
	.main-header, 
	.main-header a {
		color: #fff;
	}
	.main-header h5 {
		line-height: 30px;
	}
	.main-header .btn {
		margin-top: 20px;
		font-size: 15px;
	}

/* Section Area Styles Starts */

.section-area {
	padding-top: 80px;
	padding-bottom: 80px;
}
.section-area.grey {
	background-color: #f6f6f6;
}
.section-area.inverse {
	background-color: #000000;
}
.section-area.lightgreen {
	background-color: #C0FCD4;
}
.section-area.inverse, 
.section-area.inverse a {
	color: #fff;
}

/* Info Section Starts */

.info-section {
	padding-top: 50px;
	padding-bottom: 50px;
}
	.info-section .fa {
		font-size: 48px;
	}
	.info-section h2 {
		margin-bottom: 15px;
	}

/* Services Sections Starts */

.services-section-box {
	margin-top: 30px;
	padding: 40px 25px;
	background-color: #f6f6f6;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	        border-radius: 3px;
}
.services-section-box:hover {
	background-color: #f6f6f6;
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
			border-radius: 10px;
	-webkit-box-shadow: 10px 10px rgba(0, 0, 0, 0.1);
	   -moz-box-shadow: 10px 10px rgba(0, 0, 0, 0.1);
	        box-shadow: 10px 10px rgba(0, 0, 0, 0.1);
}
	.services-section-box:hover, 
	.services-section-box:hover .fa {
		color: #38b64a;
	}
	.services-section-box h2 {
		margin-top: 0;
	}
	.services-section-box h4 {
		margin-top: 20px;
		margin-bottom: 20px;
	}

/* Team Section Styles Starts */
.team-section {
	padding-bottom: 0;
	background-image: url(../images/bg/team-bg.jpg);
	background-repeat: repeat;
}
	.team-bio-box {
		margin-top: 40px;
	}
		.team-bio-box-content {
			padding-top: 15px;
			border-top: 1px solid #dedede;
		}
			.team-sm-links {
				margin-top: 20px;
			}
			.team-sm-links::before {
				content: "";
				width: 50px;
				height: 1px;
				margin: 0 auto 20px;
				display: block;
				background-color: #56c8d4;
			}
				.team-sm-links li {
					padding-left: 15px;
					padding-right: 15px;
					font-size: 18px;
				}
					.team-sm-links li a {
						color: #1f1f1f;
					}
					.team-sm-links li a:hover, 
					.team-sm-links li a:focus {
						color: #03a9f4;
					}
					
.image-box-team:hover {
	-webkit-box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.3);
}
/* logitech Section Styles Starts */

	.video-cam-box {
		height: 850px;
		margin-top: 50px;
		padding: 40px 20px;
		background-color: #f6f6f6;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
				border-radius: 3px;		
	}
	.video-cam-box:hover {
		-webkit-border-radius: 10px;
		   -moz-border-radius: 10px;
				border-radius: 10px;
		-webkit-box-shadow: -10px -10px rgba(0, 0, 0, 0.1);
		   -moz-box-shadow: -10px -10px rgba(0, 0, 0, 0.1);
				box-shadow: -10px -10px rgba(0, 0, 0, 0.1);
	}
	.video-cam-box.premium:hover {
		background-color: #5ED66E;
	}
	.video-cam-box.premium:hover {
		color: #fff;
	}
		.video-cam-box-title {
			margin-top: 0;
			font-weight: 400;
			font-size: 16px;
		}
			.video-cam-box-title::after {
				content: "";
				margin: 10px auto 0;
				width: 50px;
				height: 3px;
				display: block;
				background-color: #5ED66E;
			}
			.video-cam-box.premium:hover .video-cam-box-title::after {
				background-color: #fff;
			}
		.video-cam-box-pricing {
			margin-bottom: 15px;
			font-weight: 500;
		}
			.video-cam-box-pricing span {
				font-size: 18px;
				vertical-align: super;
			}
		.video-cam-box-list {
			margin-bottom: 20px;
		}
			.video-cam-box-list li {
				padding-top: 7px;
				padding-bottom: 7px;
				font-size: 12px;
			}
		.video-cam-box .btn {
			margin-top: 5px;
			font-size: 12px;
			font-weight: 500;
			text-transform: uppercase;
		}
/* Project Section */
	.project-item {
		margin-top: 30px;
		position: relative;
		overflow: hidden;
	}
	.project-item, 
	.project-item a {
		color: #fff;
	}
		.project-item img {
			-webkit-transform: scale(1.0);
			   -moz-transform: scale(1.0);
					transform: scale(1.0);
		}
		.project-item:hover img, 
		.project-item:focus img {
			-webkit-transform: scale(1.3);
			   -moz-transform: scale(1.3);
					transform: scale(1.3);			
		}
		.project-item .project-overlay {
			position: absolute;
			top: 0px;
			right: 0;
			left: 0;
			bottom: 0;
			height: 100%;
			text-align :center;
			cursor: auto;
			background: rgba(3, 164, 97, 0.9);
			-webkit-transform: translateY(72%);
			   -moz-transform: translateY(72%);
			        transform: translateY(72%);
		}
		.project-item:hover .project-overlay, 
		.project-item:focus .project-overlay {
			background: rgba(3, 164, 97, 0.9);
			-webkit-transform: translateY(0);
			   -moz-transform: translateY(0);
			        transform: translateY(0);
		}
			.project-item .project-overlay .inner {
				padding: 15px 30px;
			}
				.project-item .project-overlay h5 {
					margin-bottom: 20px;
					text-transform: uppercase;
				}
				.project-item .project-overlay p {
					margin-bottom: 20px;
				}
				.project-item .project-overlay .fa {
					font-size: 24px;
					cursor: pointer;
				}
	
/* Testimonial Section Styles Starts */

	.testimonail-box {
		margin-top: 30px;
		margin-bottom: 10px;
		padding: 30px;
		background-color: #696969;
	}
	.testimonail-box:hover {
		-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
		   -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
		        box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
	}
		.testimonail-box blockquote {
			padding-left: 0;
			padding-right: 0;
			color: #ffffff;
			font-size: 14px;			
			font-style: italic;
			border: none;
		}
		.testimonail-box blockquote:before {
			content: "\f10d";
			margin-bottom: 15px;
			text-align: left;
		}
		.testimonail-box blockquote:after {
			content: "\f10e";
			margin-top: 15px;
			text-align: right;
		}
		.testimonail-box blockquote:before, 
		.testimonail-box blockquote:after {				
			color: #ffffff;
			display: block;
			font-size: 30px;
			font-style: normal;
		}
		.testimonail-box h5 {
			margin-bottom: 5px;
		}
		.testimonail-box h5 + p {
			margin-bottom: 0;
		}

/* Contact Section Styles Starts */

	.contact-info {
		margin-top: 60px;
		margin-bottom: 60px;
	}
		.contact-info h5 {
			margin-bottom: 20px;
		}
			.contact-info li {
				margin-top: 6px;
			}
			.contact-info li, 
			.contact-info li a {
				color: #393939;
			}
			.contact-info li a:hover {
				color: #03a9f4;
			}

/* Contact Form Styles Starts */

	.contact-section .status {
		display: none;
	}
	.contact-form .form-control {
		margin-bottom: 30px;
		padding: 15px 25px;
		font-size: 15px;
		color: #6c6c6c;
		background-color: #f2f2f2;
		border: none;
	}
	.contact-form .form-control:focus {
		background-color: #e8e8e8;
	}
	.contact-form input[type=text].form-control, 
	.contact-form input[type=email].form-control {
		height: 52px;
	}
	.contact-form textarea.form-control {
		line-height: 25px;
	}
	.contact-form .form-control::-webkit-input-placeholder { 
		color: #6c6c6c;
	}
	.contact-form .form-control::-moz-placeholder {
		color: #6c6c6c;
	}
	.contact-form .form-control:-ms-input-placeholder {
		color: #6c6c6c;
	}
	.contact-form .form-control:-moz-placeholder {
		color: #6c6c6c;
	}
	.contact-form .btn {
		margin-top: 15px;
		margin-bottom: 20px;
		padding: 14px 60px;
		font-size: 20px;
	}

/* Footer Styles Starts */

.main-footer {
	padding-top: 30px;
	padding-bottom: 30px;
	font-size: 16px;
	background-color: #383838;
}
	.main-footer, 
	.main-footer a {
		color: #fff;
	}
	.main-footer ul, 
	.main-footer p {
		margin-bottom: 0;
	}
		.main-footer ul > li + li {
			margin-left: 10px;
		}

/* Generic Styles Starts */

.parallax {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
}

.spacer-xxs  { height: 5px;  }
.spacer-xs   { height: 10px; }
.spacer-sm   { height: 15px; }
.spacer-md	 { height: 20px; }
.spacer-lg	 { height: 25px; }
.spacer-xlg  { height: 40px; }
.spacer-xxlg { height: 60px; }

.no-margin-top		{ margin-top: 0; 	}
.no-margin-bottom	{ margin-bottom: 0; }

.no-padding-top		{ padding-top: 0; 	 }
.no-padding-bottom	{ padding-bottom: 0; }

.text-color-grey 	{ color: #696969; }

.text-weight-thin		 	{ font-weight: 100; }
.text-weight-extra-light	{ font-weight: 200; }
.text-weight-light		 	{ font-weight: 300; }
.text-weight-normal 	 	{ font-weight: 400; }
.text-weight-medium 	 	{ font-weight: 500; }
.text-weight-bold		 	{ font-weight: 700; }
.text-weight-ultra-bold 	{ font-weight: 900; }

.img-center {
	margin-left: auto;
	margin-right: auto;
}

.no-border-radius, 
.flat {
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
			border-radius: 0;
}

.circle {
	-webkit-border-radius: 100%;
	   -moz-border-radius: 100%;
	        border-radius: 100%;
}

.no-boxshadow, 
.contact-form .form-control, 
.contact-form .form-control:focus {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

.font-awesome, 
.testimonail-box blockquote:before, 
.testimonail-box blockquote:after {
	font-family: 'FontAwesome';
	src: url('../font-awesome/fonts/fontawesome-webfont.eot?v=4.5.0');
	src: url('../font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'), url('../font-awesome/fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'), url('../font-awesome/fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'), url('../font-awesome/fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'), url('../font-awesome/fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');
}

.animation, 
.animation a {
	-webkit-transition: all 0.5s ease 0s;
	   -moz-transition: all 0.5s ease 0s;
		    transition: all 0.5s ease 0s;
}

.animation-1, 
.animation-1 a {
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
		    transition: all 1s ease;	
}

/* Custom Style */
.square { list-style: square; }

.clear { clear: both; }

.pr-5 { padding-right: 5px }
.pr-10 { padding-right: 10px }
.pr-20 { padding-right: 20px }
.pr-30 { padding-right: 30px }
.pr-40 { padding-right: 40px }
.pr-50 { padding-right: 50px }

.pl-5 { padding-left: 5px }
.pl-10 { padding-left: 10px }
.pl-20 { padding-left: 20px }
.pl-30 { padding-left: 30px }
.pl-40 { padding-left: 40px }
.pl-50 { padding-left: 50px }
.pl-200 { padding-left: 200px }

.pt-5 { padding-top: 5px }
.pt-10 { padding-top: 10px }
.pt-20 { padding-top: 20px }
.pt-30 { padding-top: 30px }
.pt-40 { padding-top: 40px }
.pt-50 { padding-top: 50px }

.pb-5 { padding-bottom: 5px }
.pb-10 { padding-bottom: 10px }
.pb-20 { padding-bottom: 20px }
.pb-30 { padding-bottom: 30px }
.pb-40 { padding-bottom: 40px }
.pb-50 { padding-bottom: 50px }

.mt-5 { margin-top: 5px }
.mt-10 { margin-top: 10px }
.mt-20 { margin-top: 20px }
.mt-30 { margin-top: 30px }
.mt-40 { margin-top: 40px }
.mt-50 { margin-top: 50px }

.mb-5 { margin-bottom: 5px }
.mb-10 { margin-bottom: 10px }
.mb-20 { margin-bottom: 20px }
.mb-30 { margin-bottom: 30px }
.mb-40 { margin-bottom: 40px }
.mb-50 { margin-bottom: 50px }

.ml-5 { margin-left: 5px }
.ml-10 { margin-left: 10px }
.ml-20 { margin-left: 20px }
.ml-30 { margin-left: 30px }
.ml-40 { margin-left: 40px }
.ml-50 { margin-left: 50px }
/* Team */

.team-member small {
	display: block;
	margin-top: -5px;
}

.team-member.box-style-1 {
	margin-top: 0;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.team-member.option-3 {
		overflow: hidden;
		margin-bottom: 20px;
	}

	.team-member.option-3 .overlay-container {
		float: left;
		width: 55%;
	}

	.team-member.option-3 .image-box-body {
		float: left;
		width: 45%;
		padding: 20px 10px 5px 15px;
	}
}

/* Small and Medium devices (tablets, smartphones, laptops) */
@media (min-width: 768px) and (max-width: 1199px) {
	.team-member.option-3 .image-box-body {
		padding: 40px;
	}
}

/* Small devices (tablets, phones less than 767px) */
@media (max-width: 767px) {
	.team-member .image-box-body {
		padding: 15px 25px;
	}

	.team-member {
		max-width: 480px;
		margin: 20px auto 20px !important;
	}
}

/* Boxes
---------------------------------- */
.box {
	text-align: center;
	margin: 0 10px 10px 0;
	width: 60px;
	height: 60px;
	display: inline-block;
	font-size: 0;
	float: left;
	border: 1px solid transparent;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.box.block {
	display: block;
	float: none;
	margin: 0 auto !important;
}

.box.block + h2 {
	margin-top: 0;
}

.box i {
	font-size: 36px;
	line-height: 60px;
}

.box.small {
	margin: 0 5px 5px 0;
	width: 45px;
	height: 45px;
}

.box.small i {
	font-size: 24px;
	line-height: 45px;
}

.box.gray-bg:hover {
	color: #e84c3d;
}

.box.default-bg:hover {
	background-color: #ffffff;
	border: 1px solid #e84c3d;
}

.box.default-bg:hover * {
	color: #e84c3d;
}

.box.dark-bg:hover {
	background-color: #ffffff;
	border: 1px solid #666666;
}

.box.dark-bg:hover * {
	color: #666666;
}

.box-style-1 {
	text-align: center;
	padding: 20px;
	margin: 20px 0;
}

.box-style-1 i {
	font-size: 90px;
	margin: 15px 0 5px;
	text-align: center;
}

.box-style-1:not(.team-member):hover i {
	color: #e84c3d;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.box-style-1.default-bg:hover i,
.box-style-1.dark-bg:hover i {
	color: inherit;
}

.grid-space-10 .box-style-1 {
	margin: 10px 0;
}

.box-style-2 {
	margin-top: 20px;
}

.box-style-2 i {
	font-size: 36px;
	line-height: 60px;
}

.box-style-2 .icon-container {
	float: left;
	width: 60px;
	height: 60px;
	text-align: center;
	border: 1px solid transparent;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.box-style-2 .body {
	margin-left: 80px;
}

.box-style-2 h2 {
	font-size: 24px;
	margin-top: 0;
}

.box-style-2:hover .icon-container {
	border: 1px solid #666666;
}

.box-style-2:hover .default-bg {
	background-color: #ffffff;
	border: 1px solid #e84c3d;
}

.box-style-2:hover .default-bg * {
	color: #e84c3d;
}

.box-style-2:hover .dark-bg {
	background-color: #ffffff;
	border: 1px solid #666666;
}

.box-style-2:hover .dark-bg * {
	color: #666666;
}

.box-style-2:hover .white-bg * {
	color: #e84c3d;
}

.box-style-3 {
	margin-top: 20px;
}

.box-style-3 i {
	font-size: 22px;
	line-height: 45px;
}

.box-style-3 .icon-container {
	float: left;
	width: 45px;
	height: 45px;
	text-align: center;
	border: 1px solid transparent;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.box-style-3 .body {
	margin-left: 80px;
}

.box-style-3 h2 {
	font-size: 20px;
	margin-top: 0;
}

.box-style-3:hover .icon-container {
	border: 1px solid #666666;
}

.box-style-3:hover .default-bg {
	background-color: #ffffff;
	border: 1px solid #e84c3d;
}

.box-style-3:hover .default-bg * {
	color: #e84c3d;
}

.box-style-3:hover .dark-bg {
	background-color: #ffffff;
	border: 1px solid #666666;
}

.box-style-3:hover .dark-bg * {
	color: #666666;
}

.box-style-3:hover .white-bg * {
	color: #e84c3d;
}

.panel-body i {
	width: 35px;
	text-align: center;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.box-style-3.right .icon-container {
		float: right;
	}

	.box-style-3.right .body {
		margin-right: 80px;
		text-align: right;
		margin-left: 0;
	}
}

/* Social icons block
---------------------------------- */
.social-links {
	list-style: none;
	font-size: 0;
	padding: 0;
	margin: 40px 0 20px 0;
}

.social-links li {
	display: inline-block;
	margin: 0 2px 2px 0;
}

.social-links li a {
	width: 45px;
	height: 45px;
	display: block;
	text-align: center;
	font-size: 20px;
	background: #38b64a;
	border: 1px solid #38b64a;
	color: #ffffff;
}

.social-links.large li a {
	width: 60px;
	height: 60px;
	font-size: 24px;
}

.social-links.light li a {
	background: #fafafa;
	border: 1px solid #f3f3f3;
	color: inherit;
}

.social-links.dark li a {
	background: #454545;
	border: 1px solid #333333;
	color: #acacac;
}

.social-links.radius-5px li a {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.social-links.circle li a {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

.social-links li a:hover {
	background-color: transparent;
	border-color: #cd3c2e;
	color: #cd3c2e;
}

.social-links.dark li a:hover {
	background: #312E2E;
	border: 1px solid #acacac;
	color: inherit;
}

.social-links.light li a:hover {
	border: 1px solid #d2d2d2;
	color: #333333;
}

.social-links li a i {
	line-height: 44px;
}

.social-links.large li a i {
	line-height: 60px;
}

.header-top .social-links {
	margin: 0;
}

.header-top .social-links li {
	padding: 3px 5px 2px;
	border-right: 1px solid #e3e3e3;
	margin: 0;
}

.header-top .social-links li:hover {
	background-color: #fafafa;
}

.header-top .social-links li a {
	font-size: 16px;
}

.header-top .social-links li:last-child {
	border-right: none;
}

.header-top .social-links li a {
	border: none;
	width: 25px;
	height: 30px;
	color: #999999;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li a:hover {
	color: #cd3c2e;
}

.header-top .social-links li a i {
	line-height: 30px;
}

.dark.header-top .social-links li {
	border-right: 1px solid #3d3d3d;
}

.dark.header-top .social-links li:last-child {
	border-right: none;
}

.dark.header-top .social-links li:hover {
	background-color: transparent;
}

.dark.header-top .social-links li a {
	color: #999999;
}

.footer-content .social-links {
	margin: 20px 0;
}

.footer-content .social-links li {
	margin: 0 5px 5px 0;
}

.footer-content .social-links li a {
	color: #666666;
	background-color: transparent;
	border-color: #666666;
}

.footer-content .social-links li a:hover {
	color: #ffffff;
	background-color: #666666;
	border-color: #666666;
}

.social-links li.twitter a:hover,
.colored.social-links li.twitter a {
	background-color: #55acee;
	border-color: #55acee;
	color: #ffffff;
}

.social-links li.skype a:hover,
.colored.social-links li.skype a {
	background-color: #00aff0;
	border-color: #00aff0;
	color: #ffffff;
}

.social-links li.linkedin a:hover,
.colored.social-links li.linkedin a {
	background-color: #0976b4;
	border-color: #0976b4;
	color: #ffffff;
}

.social-links li.googleplus a:hover,
.colored.social-links li.googleplus a {
	background-color: #dd4b39;
	border-color: #dd4b39;
	color: #ffffff;
}

.social-links li.youtube a:hover,
.colored.social-links li.youtube a {
	background-color: #b31217;
	border-color: #b31217;
	color: #ffffff;
}

.social-links li.flickr a:hover,
.colored.social-links li.flickr a {
	background-color: #ff0084;
	border-color: #ff0084;
	color: #ffffff;
}

.social-links li.facebook a:hover,
.colored.social-links li.facebook a {
	background-color: #3b5998;
	border-color: #3b5998;
	color: #ffffff;
}

.social-links li.pinterest a:hover,
.colored.social-links li.pinterest a {
	background-color: #cb2027;
	border-color: #cb2027;
	color: #ffffff;
}

.social-links li.instagram a:hover,
.colored.social-links li.instagram a {
	background-color: #517fa4;
	border-color: #517fa4;
	color: #ffffff;
}

.social-links li.vimeo a:hover,
.colored.social-links li.vimeo a {
	background-color: #aad450;
	border-color: #aad450;
	color: #ffffff;
}

.social-links li.tumblr a:hover,
.colored.social-links li.tumblr a {
	background-color: #32506d;
	border-color: #32506d;
	color: #ffffff;
}

.social-links li.soundcloud a:hover,
.colored.social-links li.soundcloud a {
	background-color: #ff3a00;
	border-color: #ff3a00;
	color: #ffffff;
}

.social-links li.foursquare a:hover,
.colored.social-links li.foursquare a {
	background-color: #0072b1;
	border-color: #0072b1;
	color: #ffffff;
}

.social-links li.dribbble a:hover,
.colored.social-links li.dribbble a {
	background-color: #ea4c89;
	border-color: #ea4c89;
	color: #ffffff;
}

.social-links li.behance a:hover,
.colored.social-links li.behance a {
	background-color: #053eff;
	border-color: #053eff;
	color: #ffffff;
}

.social-links li.vine a:hover,
.colored.social-links li.vine a {
	background-color: #00a478;
	border-color: #00a478;
	color: #ffffff;
}

.social-links li.stumbleupon a:hover,
.colored.social-links li.stumbleupon a {
	background-color: #f74425;
	border-color: #f74425;
	color: #ffffff;
}

.header-top .social-links li.twitter a:hover {
	color: #55acee;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.skype a:hover {
	color: #00aff0;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.linkedin a:hover {
	color: #0976b4;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.googleplus a:hover {
	color: #dd4b39;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.youtube a:hover {
	color: #b31217;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.flickr a:hover {
	color: #ff0084;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.facebook a:hover {
	color: #3b5998;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.pinterest a:hover {
	color: #cb2027;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.instagram a:hover {
	color: #517fa4;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.vimeo a:hover {
	color: #aad450;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.tumblr a:hover {
	color: #32506d;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.soundcloud a:hover {
	color: #ff3a00;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.foursquare a:hover {
	color: #0072b1;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.dribbble a:hover {
	color: #ea4c89;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.behance a:hover {
	color: #053eff;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.vine a:hover {
	color: #00a478;
	background-color: transparent;
	border-color: transparent;
}

.header-top .social-links li.stumbleupon a:hover {
	color: #f74425;
	background-color: transparent;
	border-color: transparent;
}

.social-links .dropdown > button {
	padding: 6px 15px 5px;
	font-size: 16px;
	color: #999999;
	text-align: center;
	min-width: 0;
	margin: 0;
	background-color: transparent;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.social-links .dropdown > button i {
	width: 15px;
}

.social-links .dropdown.open > button > i:before {
	content: "\f00d";
	color: #e84c3d;
}

.social-links .dropdown-menu {
	z-index: 103;
	padding: 0px;
	min-width: 290px;
	margin-top: 1px;
	font-size: 0;
	box-shadow: none;
	background-color: #fafafa;
}

.social-links .dropdown-menu li a,
.social-links .dropdown-menu li a i {
	padding: 0;
}

/* Separator */
.separator {
	display: block;
	width: 60px;
	height: 5px;
	margin: 15px auto 15px;
	background-color: #cccccc;
	position: relative;
	border: 1px solid #cccccc;
}

.separator:after {
	width: 30px;
	height: 5px;
	background: #333333;
	position: absolute;
	top: -1px;
	left: -1px;
	content: "";
}

.separator-2 {
	display: block;
	width: 30px;
	height: 5px;
	margin: 15px 0 15px;
	background-color: #424242;
	position: relative;
}

.separator-2.right {
	margin-left: auto;
}

.sidebar .separator {
	width: 30px;
	height: 5px;
	margin: 15px 0 20px;
	background-color: #666666;
	border-color: #666666;
}

.sidebar .separator:after {
	content: "";
	background-color: transparent;
}

.dark-bg .separator-2 {
	background-color: #999999;
}

.default-bg .separator-2 {
	background-color: #ebebeb;
}

.object-non-visible {
	opacity: 0;
	filter: alpha(opacity=0);
}

.object-visible,
.touch .object-non-visible {
	opacity: 1 !important;
	filter: alpha(opacity=100) !important;
}

/* Images and Images overlay
---------------------------------- */
.fixed-image {
	background-position: center center;
	background-repeat: no-repeat;
	height: 400px;
}

.no-touch .fixed-image {
	background-attachment: fixed;
}

.fixed-image {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.overlay-container {
	position: relative;
	display: block;
	overflow: hidden;
}

.overlay {
	position: absolute;
	top: 0;
	bottom: -1px;
	left: 0;
	right: -1px;
	background-color: rgba(241, 241, 241, 0.85);
	overflow: hidden;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	-webkit-transition: all linear 0.2s;
	-o-transition: all linear 0.2s;
	transition: all linear 0.2s;
}

.overlay a {
	display: inline-block;
	width: 50px;
	height: 50px;
	font-size: 26px;
	color: #e84c3d;
	background-color: #ffffff;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -25px;
}

.overlay span {
	position: absolute;
	display: block;
	bottom: 10px;
	text-align: center;
	width: 100%;
	color: #000000;
	font-style: italic;
}

.overlay-links {
	display: block;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	margin-top: -25px;
	left: 50%;
	margin-left: -50px;
	font-size: 0;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: scale(0.4);
	-moz-transform: scale(0.4);
	-ms-transform: scale(0.4);
	-o-transform: scale(0.4);
	transform: scale(0.4);
	-webkit-transition: all 0.25s linear 0.05s;
	-o-transition: all 0.25s linear 0.05s;
	transition: all 0.25s linear 0.05s;
}

.overlay-links a {
	position: static;
	margin-top: 0;
	margin-left: 0;
}

.overlay-links a + a {
	left: 50px;
	color: #ffffff;
	background-color: #e84c3d;
}

.overlay a:hover {
	color: #ffffff;
	background-color: #333333;
	text-decoration: none;
}

.overlay i {
	line-height: 50px;
}

.box-style-1 .overlay i {
	font-size: 26px;
	margin: 0;
}

a.overlay {
	background-color: rgba(255, 255, 255, 0.9);
	cursor: pointer;
}

a.overlay:hover {
	text-decoration: none;
}

.listing-item a.overlay {
	-webkit-transition: linear 0.25s;
	-o-transition: linear 0.25s;
	transition: linear 0.25s;
	background-color: rgba(255, 255, 255, 0.7);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.listing-item a.overlay:hover {
	text-decoration: none;
}

a.overlay i {
	position: absolute;
	left: 50%;
	top: 50%;
	font-size: 40px;
	line-height: 42px;
	color: #38b64a;
	margin-top: -22px;
	margin-left: -18px;
	text-align: center;
}

a.overlay.small i {
	font-size: 18px;
	line-height: 1;
	margin-top: -8px;
	margin-left: -8px;
}

.overlay .social-links {
	margin: 0;
	position: absolute;
	bottom: 10px;
	width: 100%;
	text-align: center;
}

.overlay .social-links li {
	margin: 0 auto;
}

.overlay .social-links li a {
	margin: 2px;
	width: 40px;
	height: 40px;
	font-size: 18px;
	position: static;
}

.overlay .social-links li a i {
	line-height: 38px;
	font-size: 24px;
	margin: 0;
}

.overlay-container:hover .overlay,
.overlay-container:hover .overlay-links {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/* Buttons
---------------------------------- */
.btn {
	padding: 10px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	min-width: 160px;
	text-align: center;
	border-radius: 0;
	text-transform: uppercase;
	margin: 10px 0;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.btn:focus,
.btn:active {
	outline: none;
	box-shadow: none;
}

.btn.btn-lg {
	padding: 17px 12px;
	font-size: 18px;
	min-width: 210px;
}

.btn.btn-sm {
	padding: 8px;
	font-size: 12px;
	min-width: 105px;
}

.btn.radius {
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

.moving {
	-webkit-animation: moving 1.7s ease-out infinite;
	-moz-animation: moving 1.7s ease-out infinite;
	-ms-animation: moving 1.7s ease-out infinite;
	-o-animation: moving 1.7s ease-out infinite;
	animation: moving 1.7s ease-out infinite;
	position: relative;
	top: -30px;
	-webkit-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}

.btn-remove {
	font-size: 10px;
	padding: 3px 15px;
	min-width: 0;
}

@-webkit-keyframes moving {
	0% {
		top: -30px;
	}

	60% {
		top: 0px;
	}
}

@keyframes moving {
	0% {
		top: -30px;
	}

	60% {
		top: 0px;
	}
}

/* Light Gray Buttons */
.btn-light-gray {
	color: #424242 ;
	background-color: #ffffff;
	border-color: #38b64a;
}

.btn-light-gray:hover,
.btn-light-gray:focus,
.btn-light-gray:active,
.btn-light-gray.active,
.open .dropdown-toggle.btn-light-gray {
	color: #ffffff;
	background-color: #38b64a;
	border-color: #ffffff;
}

.default-bg .btn-light-gray {
	color: #ffffff;
	background-color: transparent;
	border-color: #ffffff;
}

.default-bg .btn-light-gray:hover,
.default-bg .btn-light-gray:focus,
.default-bg .btn-light-gray:active,
.default-bg .btn-light-gray.active,
.default-bg .open .dropdown-toggle.btn-light-gray {
	color: #333333;
	background-color: #fafafa;
	border-color: #fafafa;
}

/* The color of default buttons is the color of current color scheme */
.btn-default {
	background-color: #e84c3d;
	color: #ffffff !important;
	border-color: #cd3c2e;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
	color: #ffffff !important;
	background-color: #cd3c2e;
	border-color: #cd3c2e;
}

.default-bg .btn-default {
	background-color: rgba(0, 0, 0, 0.3);
	border-color: transparent;
}

.default-bg .btn-default:hover,
.default-bg .btn-default:focus,
.default-bg .btn-default:active,
.default-bg .btn-default.active,
.default-bg .open .dropdown-toggle.btn-default {
	color: #ffffff !important;
	background-color: rgba(0, 0, 0, 0.5);
	border-color: transparent;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default {
	background-color: #cd3c2e;
	border-color: #cd3c2e;
	opacity: 0.7;
	filter: alpha(opacity=70);
}

/* Button with transparent bg */
.btn-white {
	background-color: transparent;
	color: #cd3c2e;
	border: 1px solid #e84c3d;
}

.footer .btn-white,
.subfooter .btn-white {
	color: inherit;
}

.footer .btn-white:hover,
.subfooter .btn-white:hover {
	color: #ffffff;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.open .dropdown-toggle.btn-white {
	color: #ffffff;
	background-color: #cd3c2e;
	border-color: #cd3c2e;
}

.default-bg .btn-white {
	color: #ffffff;
	background-color: transparent;
	border-color: #ffffff;
}

.default-bg .btn-white:hover,
.default-bg .btn-white:focus,
.default-bg .btn-white:active,
.default-bg .btn-white.active,
.default-bg .open .dropdown-toggle.btn-white {
	color: #333333;
	background-color: #fafafa;
	border-color: #fafafa;
}

.footer-content .btn-white {
	color: #999999;
	background-color: transparent;
	border-color: #555;
}

.btn-default .badge {
	color: #666666;
	background-color: #ffffff;
	border: none;
}

/*Button background transitions*/
.btn-hvr {
	-webkit-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.hvr-sweep-to-right:before,
.hvr-sweep-to-left:before,
.hvr-sweep-to-bottom:before,
.hvr-sweep-to-top:before,
.hvr-bounce-to-right:before,
.hvr-bounce-to-left:before,
.hvr-bounce-to-bottom:before,
.hvr-bounce-to-top:before,
.hvr-radial-out:before,
.hvr-rectangle-out:before,
.hvr-shutter-out-horizontal:before,
.hvr-shutter-out-vertical:before {
	background: #38b64a;
}

.hvr-radial-in:before,
.hvr-rectangle-in:before,
.hvr-shutter-in-horizontal:before,
.hvr-shutter-in-vertical:before {
	background: #fafafa;
}

/* Client Section Styles Starts */

.clients-section {
	padding-top: 60px;
	padding-bottom: 50px;
}

.resize{
	resize: vertical;
}

.social-links-footer {
	list-style: none;
	font-size: 0;
	padding: 0;
	margin-top: -5px;
}

.social-links-footer li {
	display: inline-block;
	margin: 0 2px 2px 0;
}

.social-links-footer li a {
	width: 35px;
	height: 35px;
	display: block;
	text-align: center;
	font-size: 15px;
	background: #38b64a;
	border: 1px solid #38b64a;
	color: #ffffff;
	padding-top: 5px;
}

.social-links-footer.dark li a {
	background: #454545;
	border: 1px solid #333333;
	color: #acacac;
}

.social-links-footer.radius-5px li a {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.social-links-footer.dark li a:hover {
	background: #312E2E;
	border: 1px solid #acacac;
	color: inherit;
}
	
/* Services Section Styles Starts */

.services-section {
	background-image: url(../images/bg/index-bg.jpg);
	background-repeat: no-repeat;
	background-size: 100%;
}
.services-section, 
.services-section a {
	color: #000000;
}
	.services-section ul {
		margin-bottom: 20px;
	}
		.services-section li {
			margin-top: 70px;
		}
			.services-section li .fa {
				margin-top: 10px;
				margin-right: 30px;
				margin-bottom: 100px;
				font-size: 60px;
			}
			.services-section li h5 {
				margin-top: 0;
				margin-bottom: 15px;
			}
			.services-section li p + p {
				margin-top: 15px;
			}
			.services-section a.more-link {
				padding-bottom: 6px;
				font-size: 12px;
				font-style: italic;
				border-bottom: 1px solid #fff;
			}
			.services-section a.more-link:after {
				content: "\f101";
				margin-left: 8px;
				font-size: 14px;
				font-style: normal;
			}
			.services-section a.more-link:hover, 
			.services-section a.more-link:focus {
				text-decoration: none;
			}

/* IT & Telecom Section Starts */

.IT-section {
	padding-top: 0;
	padding-bottom: 0;
	background-image: url(../images/bg/service-bg.jpg);
	overflow: hidden;
}
	.IT-section .container-fluid, 
	.IT-section .row-fluid > .col-sm-6 {
		padding-left: 0;
		padding-right: 0;
	}
	.IT-section-box {
		padding: 120px 60px;
		background-color: #262626;
	}
	.IT-section-box, 
	.IT-section-box a {
		color: #fff;
	}
		.IT-section-box ul {
			margin-top: 40px;
			margin-bottom: 20px;
		}
			.IT-section-box li {
				margin: 30px 0 0;
			}
				.IT-section-box li .col-xs-2, 
				.IT-section-box li .col-xs-10 {
					padding-left: 0;
					padding-right: 0;
				}
				.IT-section-box li .fa {
					margin-top: 10px;
					font-size: 50px;
				}
				.IT-section-box li h5 {
					margin-top: 0;
					margin-bottom: 15px;
				}

/* General service Section Starts */

.gs-section {
	padding-top: 0;
	padding-bottom: 0;
	background-image: url(../images/bg/service-bg1.jpg);
	overflow: hidden;
}
	.gs-section .container-fluid, 
	.gs-section .row-fluid > .col-sm-6 {
		padding-left: 0;
		padding-right: 0;
	}
	.gs-section-box {
		padding: 120px 60px;
		background-color: #262626;
	}
	.gs-section-box, 
	.gs-section-box a {
		color: #fff;
	}
		.gs-section-box ul {
			margin-top: 40px;
			margin-bottom: 20px;
		}
			.gs-section-box li {
				margin: 30px 0 0;
			}
				.gs-section-box li .col-xs-2, 
				.gs-section-box li .col-xs-10 {
					padding-left: 0;
					padding-right: 0;
				}
				.gs-section-box li .fa {
					margin-top: 10px;
					font-size: 50px;
				}
				.gs-section-box li h5 {
					margin-top: 0;
					margin-bottom: 15px;
				}

/* Collapse
---------------------------------- */
.panel-group .panel {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: none;
}

.panel-default > .panel-heading {
	padding: 0;
	outline: none;
	border: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	width: 100%;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
	border: 1px solid #f0f0f0;
	border-top: none;
	background-color: #fafafa;
}

.panel-heading a {
	font-weight: 400;
	padding: 12px 35px 12px 15px;
	display: inline-block;
	width: 100%;
	background-color: #5ADD6B;
	color: #ffffff;
	position: relative;
	text-decoration: none;
}

.panel-dark .panel-heading a,
.panel-dark .panel-heading a:hover {
	background-color: #333333;
}

.panel-transparent .panel-default > .panel-heading,
.panel-transparent .panel-default > .panel-heading + .panel-collapse > .panel-body {
	background-color: transparent;
	color: inherit;
}

.panel-transparent .panel-heading a {
	border: 1px solid #f1f1f1;
}

.panel-transparent .panel-heading a.collapsed {
	color: inherit;
	background-color: transparent;
}

.panel-heading a.collapsed {
	color: #ffffff;
	background-color: #999999;
}

.panel-heading a:after {
	font-family: "FontAwesome";
	content: "\f077";
	position: absolute;
	right: 15px;
	font-size: 14px;
	font-weight: 300;
	top: 50%;
	line-height: 1;
	margin-top: -7px;
}

.panel-heading a.collapsed:after {
	content: "\f078";
}

.panel-heading a:hover,
.panel-transparent .panel-heading a:hover {
	text-decoration: none;
	background-color: #5ADD6B;
	color: #ffffff;
}

.panel-title a i {
	padding-right: 10px;
	font-size: 20px;
}

/* Image Boxes
---------------------------------- */
.image-box {
	background-color: #6c6c6c;
	border: 1px solid #f3f3f3;
}

.image-box h3.title {
	margin-top: 0;
}

.image-box .btn {
	white-space: normal;
	border-color: transparent;
}

.image-box .btn-block {
	margin: 0;
}

.grid-space-0 .image-box {
	border: none;
}

.image-box-body {
	padding: 20px 15px 15px;
}

.image-box-body p {
	font-size: 12px;
}

.vision-bg {
	background-image: url(../images/bg/about-bg2.jpg);
	background-repeat: no-repeat;
	background-position: top;
}

/* Scroll to top
---------------------------------- */
.scrollToTop {
	color: #ffffff;
	position: fixed;
	bottom: 5px;
	right: 5px;
	width: 50px;
	height: 50px;
	text-align: center;
	cursor: pointer;
	background-color: #000000;
	z-index: 1005;
	display: none;
}

.scrollToTop i {
	line-height: 50px;
	font-size: 24px;
}

/* Small devices (tablets, phones less than 767px) */
@media (max-width: 767px) {
	.scrollToTop {
		width: 40px;
		height: 40px;
		background-color: rgba(0, 0, 0, 0.4);
	}

	.scrollToTop i {
		line-height: 40px;
		font-size: 20px;
	}
}

/* 9 Owl carousel
----------------------------------------------------------------------------- */
.owl-carousel {
	z-index: 4;
}

.owl-carousel .owl-item > div {
	margin: 10px 0 20px;
}

.owl-carousel.carousel .owl-item > div,
.owl-carousel.carousel-autoplay .owl-item > div {
	margin: 10px 20px 20px 0;
}

.owl-carousel.clients .owl-item > div {
	margin: 0px 30px 0px 0;
}

.well.owl-carousel .owl-item > div {
	margin: 10px 0 0;
}

.tab-content .owl-carousel .owl-item > div {
	margin: 0 0 20px;
}

/* caption */
.caption {
	background-color: rgba(155, 155, 155, 0.85);
	padding: 15px;
	position: absolute;
	bottom: 80px;
	left: 80px;
	width: 70%;
	border: 1px solid #ffffff;
}

.caption .title {
	margin-top: 0;
}

/* Medium devices (desktops, tablets less than 991px) */
@media (max-width: 991px) {
	.caption {
		width: 90%;
		bottom: 40px;
		left: 40px;
	}
}

/* Small devices (tablets, phones less than 767px) */
@media (max-width: 767px) {
	.caption {
		width: 100%;
		bottom: 30px;
		left: 0;
		position: relative;
		background-color: #888888;
		bottom: 0;
		padding-bottom: 35px;
	}
}

/* owl controls */
.owl-controls {
	width: 100%;
	margin-bottom: 50px;
}

.owl-controls .owl-buttons div {
	display: inline-block;
	zoom: 1;
	padding: 3px 10px;
	font-size: 12px;
	position: absolute;
	width: 30px;
	height: 30px;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.owl-prev {
	left: 0px;
	background-color: #38b64a;
	color: #f1f1f1;
}

.owl-next {
	right: 0px;
	background-color: #38b64a;
	color: #f1f1f1;
}

.owl-prev:hover,
.owl-next:hover,
.gray-bg .owl-next:hover {
	background-color: #f1f1f1;
	color: #38b64a;
}

.gray-bg .owl-next {
	background-color: #ffffff;
}

.owl-controls .owl-buttons div:after {
	font-family: "fontawesome";
	font-size: 18px;
	line-height: 26px;
}

.owl-prev:after {
	content: "\f0d9";
}

.owl-next:after {
	content: "\f0da";
}

.no-touch .owl-controls.clickable .owl-buttons div:hover {
	filter: Alpha(Opacity=100);
	opacity: 1;
	text-decoration: none;
}

.content-slider-with-controls {
	margin-bottom: 20px;
}

.content-slider-with-controls .owl-controls,
.content-slider-with-controls-autoplay .owl-controls {
	margin-bottom: 0;
}

.content-slider-with-controls .owl-buttons div,
.content-slider-with-controls-autoplay .owl-buttons div {
	top: 50%;
	margin-top: -15px;
	background-color: #38b64a;
	color: #f1f1f1;
}

.testimonial-section .content-slider-with-controls .owl-buttons div,
.testimonial-section .content-slider-with-controls-autoplay .owl-buttons div {
	top: 50%;
	margin-top: -15px;
	background-color: #38b64a;
	color: #f1f1f1;
	display: none;
}

.content-slider-with-controls .owl-buttons div.owl-next,
.content-slider-with-controls-autoplay .owl-buttons div.owl-next {
	left: auto;
	right: 0;
}

.content-slider-with-controls .owl-prev:hover,
.content-slider-with-controls .owl-next:hover,
.content-slider-with-controls-autoplay .owl-prev:hover,
.content-slider-with-controls-autoplay .owl-next:hover {
	background-color: #f1f1f1;
	color: #38b64a;
}

.content-slider-with-controls-bottom .owl-controls .owl-pagination {
	bottom: -30px;
}

.content-slider-with-controls-bottom .owl-controls .owl-page span {
	background: #acacac;
}

.owl-controls .owl-pagination {
	position: absolute;
	bottom: 25px;
	text-align: center;
	margin: 0 auto;
	display: block;
	width: 100%;
}

.testimonial-section .owl-controls .owl-pagination {
	position: absolute;
	bottom: -25px;
	text-align: center;
	margin: 0 auto;
	display: block;
	width: 100%;
}

.owl-controls .owl-page {
	display: inline-block;
	zoom: 1;
}

.owl-controls .owl-page span {
	display: block;
	width: 10px;
	height: 10px;
	margin: 5px 4px;
	background: #999999;
}

.owl-controls .owl-page.active span,
.owl-controls.clickable .owl-page:hover span {
	background: #38b64a;
}

/* Tabs
---------------------------------- */
.nav-tabs {
	-webkit-box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.04);
	box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.04);
	border-bottom: 1px solid #f0f0f0;
	margin-top: 15px;
}

.nav-tabs > li > a {
	font-size: 13px;
	text-transform: uppercase;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	padding: 12px 25px;
	position: relative;
	color: #666666;
}

.nav-tabs > li > a:hover {
	border-color: #f0f0f0 #f0f0f0 #ebebeb;
	background-color: #fafafa;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
	color: #666666;
	background-color: #fafafa;
	border: 1px solid #f0f0f0;
	-webkit-box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.04);
	box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.04);
	border-bottom-color: transparent;
}

.nav-tabs > li.active > a:after {
	width: 3px;
	content: "";
	background-color: #38b64a;
	height: 103%;
	position: absolute;
	left: 0;
	top: 0;
}

.tab-content {
	border: 1px solid #f0f0f0;
	padding: 20px;
	border-top: none;
	position: relative;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
	background-color: #fafafa;
	margin-bottom: 15px;
}

.tab-content h1 {
	font-size: 34px;
}

.tab-content:after {
	width: 3px;
	content: "";
	background-color: #38b64a;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.tab-content.clear-style {
	border: none;
	padding: 10px 0 0 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: transparent;
}

.tab-content.clear-style:after {
	width: 0;
	background-color: transparent;
	height: 100%;
}

/* Small devices (tablets, smartphones) */
@media (min-width: 481px) and (max-width: 767px) {
	.nav-tabs > li > a {
		padding: 12px 10px;
		font-size: 11px;
		margin-right: 0;
	}
}

/* Horizontal tabs version 2 */
.tabs-style-2 .nav-tabs {
	border-bottom: 1px solid #38b64a;
}

.tabs-style-2 .nav-tabs > li.active > a,
.tabs-style-2 .nav-tabs > li.active > a:hover,
.tabs-style-2 .nav-tabs > li.active > a:focus,
.tabs-style-2 .nav-tabs > li > a:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid #38b64a;
	background-color: #38b64a;
	color: #ffffff;
}

.tabs-style-2 .nav-tabs > li.active > a:after {
	width: 0;
	height: 0;
	background-color: transparent;
}

.tabs-style-2 .tab-content {
	border: none;
	padding: 20px 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: transparent;
}

.tabs-style-2 .tab-content:after {
	width: 0px;
	background-color: transparent;
	height: 0;
}

.tabs-style-2 .nav-tabs > li > a:hover:after {
	width: 0;
	background-color: transparent;
	height: 0;
}

/* Extra small devices (phones, less than 480px) */
@media (max-width: 480px) {
	.nav-tabs {
		background-color: #999999;
	}

	.nav-tabs > li {
		float: none;
	}

	.nav-tabs > li a {
		color: #ffffff;
		margin-right: 0;
		border-bottom: 1px solid #8f8f8f;
	}

	.nav-tabs > li > a:hover {
		color: #666666;
	}

	.nav-tabs > li > a:hover:after {
		width: 3px;
		content: "";
		background-color: #38b64a;
		height: 102%;
		position: absolute;
		left: 0;
		top: 0;
	}
}

.arrow {
	display: block;
	position: relative;
}

.arrow i {
	font-size: 96px;
	top: -62px;
	position: absolute;
	line-height: 1;
	z-index: 2;
	left: 50%;
	margin-left: -27px;
}

.arrow i:before {
	color: #fafafa;
	text-shadow: 0px -1px 1px #E9E9E9;
}

/* Small devices (tablets, phones less than 767px) */
@media (max-width: 767px) {
	.vertical .nav-tabs,
  .vertical .tab-content {
		display: block;
	}
}

/* hc-tabs */
.hc-tabs .hc-tabs-top img {
	display: none;
}

.row-height td{
	line-height: 50px;
}

/* Help N Desk service */
.hndservice {
	border-left: 5px double #919191; 
}

/* Managed IT section */
.managedIT-section {
	background-image: url(../images/bg/managed-service.jpg);
	background-repeat: no-repeat;
}

/* Testimonials
---------------------------------- */
.testimonial {
	margin: 25px 0;
}

.well .testimonial,
.owl-item .testimonial {
	margin: 0;
}

.testimonial h2 {
	margin-bottom: 25px;
}

.testimonial-image {
	max-width: 160px;
	float: left;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

.testimonial-body {
	padding: 15px;
}

.testimonial-image + .testimonial-body {
	margin-left: 180px;
}

.testimonial-info-1 {
	font-size: 13px;
	color: #000000;
	font-style: italic;
}

.testimonial-info-2 {
	font-size: 13px;
	color: #000000;
	font-weight: 700;
}

.dark-bg .testimonial-info-1,
.dark-bg .testimonial-info-2,
.default-bg .testimonial-info-1,
.default-bg .testimonial-info-2,
.dark-translucent-bg .testimonial-info-1,
.dark-translucent-bg .testimonial-info-2 {
	color: inherit;
}

/* Extra small devices (phones, less than 480px) */
@media (max-width: 480px) {
	.testimonial-image {
		max-width: 80px;
	}

	.testimonial-image + .testimonial-body {
		padding: 0 15px;
		margin-left: 100px;
	}
}

.display-box {
	margin-top: 30px;
	padding: 20px 10px 0;
	background-color: #f6f6f6;
	border: 1px solid #d9d9d9;
}
.display-box:hover {
	-webkit-box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.2);
			box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.2);
}
	.display-box-title {
		margin-top: 25px;
		color: #333;
	}
	.display-box-quote {
		color: #6c6c6c;
		font-size: 14px;
		font-style: italic;
		border: none;
	}
		.display-box-quote:before {
			content: "\f10d";
			margin-bottom: 15px;
			display: block;
			color: #3498db;
			font-size: 36px;
			font-style: normal;
		}

/* Blog pages
---------------------------------- */
.blogpost {
	background-color: #fafafa;
	border: 1px solid #f3f3f3;
	margin: 0 0 70px;
	position: relative;
}

.blogpost .blogpost-body {
	padding: 20px 20px 0 20px;
	min-height: 140px;
}

.blogpost h2.title {
	margin-bottom: 0;
	margin-top: 0;
}

.blogpost .submitted {
	font-size: 12px;
	margin: 10px 0;
}

.blogpost .side {
	float: left;
	width: 80px;
}

.blogpost .post-info {
	float: left;
	top: 0;
	left: 25px;
	width: 80px;
	height: 90px;
	padding: 10px 15px;
	background-color: #e84c3d;
	color: #ffffff;
	text-align: center;
	z-index: 3;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.blogpost .side .post-info {
	float: none;
}

.blogpost .post-info .day {
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
	display: block;
}

.blogpost .post-info .month {
	font-size: 16px;
	line-height: 1.2;
	display: inline-block;
}

.blogpost .side span.share {
	font-size: 13px;
	font-weight: 700;
	text-align: right;
	padding-top: 20px;
	display: block;
}

.blogpost .side .social-links {
	margin-top: 0;
}

.blogpost .side .social-links li {
	display: block;
	margin: 0;
}

.blogpost .side .social-links li a {
	width: 100%;
	height: auto;
	display: block;
	font-size: 20px;
	margin-bottom: 0;
	text-align: right;
	background-color: transparent;
	border-color: transparent;
	color: #e84c3d;
}

.blogpost .side .social-links li.twitter a:hover {
	background-color: transparent;
	color: #55acee;
	border-color: transparent;
}

.blogpost .side .social-links li.facebook a:hover {
	background-color: transparent;
	color: #3b5998;
	border-color: transparent;
}

.blogpost .side .social-links li.googleplus a:hover {
	background-color: transparent;
	color: #dd4b39;
	border-color: transparent;
}

.blogpost .blogpost-content {
	padding: 0 0 10px;
	margin-left: 100px;
}

.blogpost footer {
	background-color: #f1f1f1;
	padding: 12px 20px;
	border-top: 1px solid #e8e8e8;
	font-size: 14px;
	line-height: 2;
	clear: both;
}

.blogpost ul.links {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.blogpost ul.links li {
	display: inline-block;
}

.blogpost ul.links li a {
	color: #666666;
	display: inline-block;
}

.blogpost ul.links li a:hover {
	color: #e84c3d;
}

.blogpost.full {
	background-color: transparent;
	border: none;
}

.blogpost.full footer {
	border: 1px solid #e8e8e8;
}

.blogpost.full .blogpost-body {
	padding: 20px 0;
}

.blogpost.full .submitted {
	margin: 0 0 20px 0;
}

.blogpost.full .overlay-container {
	margin-bottom: 20px;
}

/* Small devices (tablets, phones less than 767px) */
@media (max-width: 767px) {
	.blogpost .blogpost-content {
		margin-left: 70px;
	}

	.blogpost .side {
		width: 50px;
	}

	.blogpost .post-info {
		width: 50px;
		height: 60px;
		padding: 8px 8px;
		margin: 0 20px 5px 0;
	}

	.blogpost .post-info .day {
		font-size: 20px;
	}

	.blogpost .post-info .month {
		font-size: 11px;
		line-height: 1.2;
	}
}

/* Affix */
#affix.affix {
	position: static;
}

/* Medium devices (desktops, tablets, 992px and up) */
@media (min-width: 992px) {
	#affix.affix {
		position: fixed;
		top: 65px;
		width: 80px;
	}

	#affix.affix-bottom {
		position: absolute;
		width: 80px;
	}
}

/* Affix Menu - Sidebar */
.sidebar.affix {
	position: static;
}

/* Show and affix the side nav when space allows it */
/* Medium devices (desktops, tablets, 992px and up) */
@media (min-width: 992px) {
	.col-md-4 .sidebar.affix,
  .col-md-4 .sidebar.affix-bottom {
		width: 293px;
	}

	.col-md-3 .sidebar.affix,
  .col-md-3 .sidebar.affix-bottom {
		width: 213px;
	}

	.sidebar.affix {
		position: fixed;
		top: 20px;
	}

	.fixed-header-on .sidebar.affix {
		top: 65px;
	}

	.sidebar.affix-bottom {
		position: absolute;
	}

	.sidebar.affix-bottom .affix-menu,
  .sidebar.affix .affix-menu {
		margin-top: 0;
		margin-bottom: 0;
	}

	.affix-menu {
		padding-top: 20px;
	}

	h3.title ~ .affix-menu {
		padding-top: 0px;
	}
}

/* Large devices (Large desktops 1200px and up) */
@media (min-width: 1200px) {
	.col-md-4 .sidebar.affix,
  .col-md-4 .sidebar.affix-bottom {
		width: 390px;
	}

	.col-md-3 .sidebar.affix,
  .col-md-3 .sidebar.affix-bottom {
		width: 263px;
	}
}

/* Blog Masonry layout
---------------------------------- */
.masonry-grid .blogpost {
	margin-bottom: 30px;
}

.masonry-grid .blogpost .blogpost-body {
	padding: 15px 15px 0 15px;
}

.masonry-grid .blogpost h2.title {
	font-size: 24px;
}

.masonry-grid .blogpost .submitted {
	margin: 15px 0 10px;
}

.masonry-grid .blogpost .blogpost-content {
	margin-left: 0;
}

.masonry-grid .blogpost .post-info {
	width: 50px;
	height: 60px;
	padding: 8px 8px;
	margin: 0 20px 5px 0;
}

.masonry-grid .blogpost .post-info .day {
	font-size: 20px;
}

.masonry-grid .blogpost .post-info .month {
	font-size: 11px;
	line-height: 1.2;
}

/* Medium desktop devices and tablets */
@media (min-width: 992px) and (max-width: 1199px) {
	.masonry-grid .blogpost footer {
		font-size: 12px;
	}
}

/* Small devices (tablets, phones less than 767px) */
@media (max-width: 767px) {
	.masonry-grid-item {
		max-width: 100%;
	}
}

/* Links
---------------------------------- */
.link {
	padding-right: 23px;
	position: relative;
	display: inline-block;
	text-align: right;
	color: #e84c3d;
}

.link:hover {
	text-decoration: none;
	color: #e84c3d;
}

.link:hover span {
	text-decoration: underline;
}

.link:after {
	content: "\f178";
	font-family: "FontAwesome";
	position: absolute;
	right: 0;
	top: 0px;
}

.link-2 {
	padding-left: 23px;
	position: relative;
	display: inline-block;
	text-align: left;
	color: #e84c3d;
}

.link-2:hover {
	text-decoration: none;
	color: #e84c3d;
}

.link-2:hover span {
	text-decoration: underline;
}

.link-2:after {
	content: "\f177";
	font-family: "FontAwesome";
	position: absolute;
	left: 0;
	top: 0px;
}
