@import "https://designmodo.github.io/Flat-UI/dist/css/flat-ui.min.css";
@import "https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css";
@import "https://daneden.github.io/animate.css/animate.min.css";

body {
	position: relative;
	overflow-x: hidden;
	font-family: 'Rajdhani', sans-serif;
}

body,
html {
	height: 100%;
	background-color: #fff;
}

body h1,
body h3,
body h4,
body h5 {
	color: #555555;
}

body p,
body blockquote {
	color: #555555;
}

body a {
	color: #555555;
	text-decoration: underline;
}

body a:hover {
	color: #fff;
}

.topbar {
	height: 75px;
	max-width: 100%;
	overflow-x: hidden;
	background-color: #fff;
	position: fixed;
	z-index: 500;
	border-bottom: solid 1px #b7b7b7;
	transition: opacity 1s ease;
	opacity: 1;
	left: 0;
	right: 0;
}

.logo {
	position: fixed;
	top: 15px;
	left: 20px;
	z-index: 999;
}

.logo img,
.menu-logo img {
	height: 45px;
}

.nav .open > a {
	background-color: transparent;
}

.nav .open > a:hover {
	background-color: transparent;
}

.nav .open > a:focus {
	background-color: transparent;
}

.navbar-fixed-top {
	right:0
}

.nav .active {
	font-weight: 800;
	color: #fff;
}

/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/
.sidebar-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	width: 220px;
}

.sidebar-nav li {
	display: inline-block;
	line-height: 20px;
	position: relative;
	width: 100%;
}

.sidebar-nav li:before {
	background-color: #959595;
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transition: width 0.2s ease-in;
	transition: width 0.2s ease-in;
	width: 3px;
	z-index: -1;
}

.sidebar-nav li:first-child a {
	background-color: #959595;
	color: #ffffff;
	padding: 15px 0px 0px 20px;
}

.sidebar-nav li:nth-child(2):before {
	background-color: #0099ff;
}

.sidebar-nav li:nth-child(3):before {
	background-color: #008ae6;
}

.sidebar-nav li:nth-child(4):before {
	background-color: #007acc;
}

.sidebar-nav li:nth-child(5):before {
	background-color: #006bb3;
}

.sidebar-nav li:hover:before {
	-webkit-transition: width 0.2s ease-in;
	transition: width 0.2s ease-in;
	width: 100%;
}

.sidebar-nav li a {
	color: #dddddd;
	display: block;
	padding: 10px 15px 10px 30px;
	text-decoration: none;
}

.sidebar-nav li.open:hover before {
	-webkit-transition: width 0.2s ease-in;
	transition: width 0.2s ease-in;
	width: 100%;
}

.sidebar-nav .dropdown-menu {
	background-color: #222222;
	border-radius: 0;
	border: none;
	box-shadow: none;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus {
	background-color: transparent;
	color: #ffffff;
	text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
	font-size: 20px;
	height: 75px;
	line-height: 44px;
	margin-bottom: 25px;
	border-bottom: solid 1px #b7b7b7;
}

.sidebar-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 20px;
	width: 220px;
	padding-top: 20px;
	border-top: solid 1px #b7b7b7;
}

.sidebar-contact ul {
	padding-left: 20px;
	margin-bottom: 0;
}

.sidebar-contact li {
	display: inline-block;
	line-height: 20px;
	position: relative;
	width: 100%;
	color: #dddddd;
}

.sidebar-contact i {
	width: 20px;
}

/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/
.hamburger {
	background: transparent;
	border: none;
	display: block;
	height: 32px;
	margin-right: 20px;
	position: fixed;
	top: 20px;
	right: 0;
	width: 32px;
	z-index: 999;
}

.hamburger:hover {
	outline: none;
}

.hamburger:focus {
	outline: none;
}

.hamburger:active {
	outline: none;
}

.hamburger.is-closed:before {
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-transition: all 0.35s ease-in-out;
	color: #898989;
	content: '';
	display: block;
	font-size: 14px;
	line-height: 32px;
	opacity: 0;
	text-align: center;
	width: 100px;
}

.hamburger.is-closed:hover before {
	-webkit-transform: translate3d(-100px, 0, 0);
	-webkit-transition: all 0.35s ease-in-out;
	display: block;
	opacity: 1;
}

.hamburger.is-closed:hover .hamb-top {
	-webkit-transition: all 0.35s ease-in-out;
	top: 0;
}

.hamburger.is-closed:hover .hamb-bottom {
	-webkit-transition: all 0.35s ease-in-out;
	bottom: 0;
}

.hamburger.is-closed .hamb-top {
	-webkit-transition: all 0.35s ease-in-out;
	background-color: rgba(137, 137, 137, 1);
	top: 5px;
}

.hamburger.is-closed .hamb-middle {
	background-color: rgba(137, 137, 137, 1);
	margin-top: -2px;
	top: 50%;
}

.hamburger.is-closed .hamb-bottom {
	-webkit-transition: all 0.35s ease-in-out;
	background-color: rgba(137, 137, 137, 1);
	bottom: 5px;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
	height: 4px;
	left: 0;
	position: absolute;
	width: 100%;
}

.hamburger.is-open .hamb-top {
	-webkit-transform: rotate(45deg);
	-webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
	background-color: #0099ff;
	margin-top: -2px;
	top: 50%;
}

.hamburger.is-open .hamb-middle {
	background-color: #fff;
	display: none;
}

.hamburger.is-open .hamb-bottom {
	-webkit-transform: rotate(-45deg);
	-webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
	background-color: #0099ff;
	margin-top: -2px;
	top: 50%;
}

.hamburger.is-open:before {
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-transition: all 0.35s ease-in-out;
	color: #ffffff;
	content: '';
	display: block;
	font-size: 14px;
	line-height: 32px;
	opacity: 0;
	text-align: center;
	width: 100px;
}

.hamburger.is-open:hover before {
	-webkit-transform: translate3d(-100px, 0, 0);
	-webkit-transition: all 0.35s ease-in-out;
	display: block;
	opacity: 1;
}

/*-------------------------------*/
/*      Home Page Carousel       */
/*-------------------------------*/
header {
	margin-bottom: 15px;
	height: 100%;
}

.carousel-caption {
	position: absolute;
	width: 35%;
	height: 100%;
	left: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.5);
	border-right: solid 1px #b7b7b7;
}

h2 {
	position: absolute;
	text-align: left;
	left: 0;
	bottom: 64px;
	line-height: 1.75em; 
	font-size: 2em; 
	font-weight: 300;
	display: inline;
	padding: 0;
	margin: 0;
	float: left;
	text-shadow: none;
	margin-left: 10px;
	font-family: 'Rajdhani', sans-serif;
	padding-right: 25px;
	color: #fff;
}

h2 span {
	padding: 0.1em 0; 
	margin: 0;
	box-shadow: 0.4em 0 0 rgb(0,153,255), -0.4em 0 0 rgb(0,153,255); 
	background-color: #0099ff; 
	background-color: rgb(0,153,255);
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left,rgba(0,0,0,.2) 0,rgba(0,0,0,.0001) 100%);
    background-image: -o-linear-gradient(left,rgba(0,0,0,.2) 0,rgba(0,0,0,.0001) 100%);
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.0001)));
    background-image: linear-gradient(to right,rgba(0,0,0,.2) 0,rgba(0,0,0,.0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x;
}

.carousel-control.right {
    right: 0;
    left: auto;
    background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.2) 100%);
    background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.2) 100%);
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.2)));
    background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.2) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x;
}

.left .carousel-control {
	z-index: 100;
}

.scrolled {
    opacity: 0.7;
}

header.carousel {
    height: 100%;
}

header.carousel .item,
header.carousel .item.active,
header.carousel .carousel-inner {
    height: 100%;
}

header.carousel .fill {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
	border-bottom: solid 1px #b7b7b7;
}

/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/
#wrapper {
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	padding-left: 0;
	transition: all 0.5s ease;
	height: 100%;
}

#wrapper.toggled {
	padding-left: 220px;
}

#wrapper.toggled #sidebar-wrapper {
	width: 220px;
}

#wrapper.toggled #page-content-wrapper {
	margin-right: -220px;
	position: absolute;
}

#sidebar-wrapper {
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	background: #959595;
	height: 100%;
	left: 220px;
	margin-left: -220px;
	overflow-x: hidden;
	overflow-y: auto;
	transition: all 0.5s ease;
	width: 0;
	z-index: 1000;
}

#sidebar-wrapper::-webkit-scrollbar {
	display: none;
}

#page-content-wrapper {
	padding-top: 75px;
	width: 100%;
	height: 100%
}

.sidebar-contact a{
	text-decoration: none;
	color: #dddddd;
}

	.sidebar-contact a:hover{
		color: #dddddd;
	}

.row {
	padding-bottom: 30px;
}

.page-header {
    border-bottom: solid 3px #f0f1f1;
}

p {
	font-size: 20px
}

.images {
	padding-top: 15px;
}

.testimonials {
	padding-bottom: 0;
	padding-top: 45px;
}

.testimonials i {
    float: left;
	font-size: 62px;
	line-height: 1;
	padding-right: 10px;
	color: #0099ff;
}

.testimonials footer {
    background-color: #fff;
}

blockquote {
	border-left: 3px solid #f0f1f1;
}

blockquote p {
	font-size: 20px;
	color: #555555;
}

.panel-heading .accordion-toggle:after {
    /* symbol for "opening" panels */
    font-family: 'Glyphicons Halflings';  /* essential for enabling glyphicon */
    content: "\e114";    /* adjust as needed, taken from bootstrap.css */
    float: right;        /* adjust as needed */
    color: grey;         /* adjust as needed */
}
.panel-heading .accordion-toggle.collapsed:after {
    /* symbol for "collapsed" panels */
    content: "\e080";    /* adjust as needed, taken from bootstrap.css */
}

.panel {
    border: 0 solid transparent;
    border-radius: 0;
	box-shadow: 0 1px 1px rgba(0,0,0,0);
	padding: 0 15px;
}

.panel-title {
    font-size: 32px;
    color: #555555;
}

.panel-body {
    padding: 30px 0;
}

.work {
	padding-top: 10px;
}

.work-text {
	padding-left: 0;
}

.work .carousel-control.left {
    background-image: none !important;
    background-image: none !important;
    background-image: none !important;
    background-image: none !important;
    filter: none !important;
    background-repeat: repeat-x;
}

.work .carousel-control.right {
    right: 0;
    left: auto;
    background-image: none !important;
    background-image: none !important;
    background-image: none !important;
    background-image: none !important;
    filter: none !important;
    background-repeat: repeat-x;
}

h4{
    border-bottom: 3px solid #f0f1f1;
	padding-bottom: 10px;
}

.panel-title a{
    text-decoration: none;
}

	.panel-title a:hover{
		color: #0099ff;
	}
	
	.panel-title a:focus{
		color: #0099ff;
	}
	
.panel-heading .accordion-toggle:after {
    color: #0099ff;
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 0;
}

.panel-default>.panel-heading {
    color: #333;
    background-color: #fff;
    border-color: #ddd;
}

.panel-heading {
    padding: 10px 0 0 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
	
}

.panel-group .panel-heading+.panel-collapse>.list-group, .panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: 0 solid #fff;
}

h5 {
	border-bottom: 3px solid #f0f1f1;
	padding-bottom: 10px;
	margin-bottom: 30px;
	font-size: 32px;
}

.services h6 {
    font-size: 28px;
}

.services ul {
    list-style-type: none;
	padding-left: 0;
}

.services ul  li {
    font-size: 20px;
}

.services i {
    color: #0099ff;
	padding-right: 15px;
}

.contact a{
	text-decoration: none;
}

	.contact a:hover{
		color: #0099ff;
	}

.contact i{
	padding-right: 10px;
}

abbr[title], abbr[data-original-title] {
    border-bottom: 1px dotted #d1d2d3;
	text-decoration: none;
}

.form-control, .select2-search input[type=text] {
    font-size: 20px;
    line-height: 1.467;
    color: #555555;
    border: 2px solid #d1d2d3;
    border-radius: 0;
	background-color: #f0f1f1;
}

textarea:focus, input:focus, input[type]:focus, .uneditable-input:focus {   
    border-color: rgba(0,153,255,0.8);
    box-shadow: 0 1px 1px rgba(209,210,211,0.075) inset, 0 0 8px rgba(209,210,211,0.6);
    outline: 0 none;
}

#message:focus, #message:focus, #message[type]:focus, .uneditable-input:focus {   
    border-color: rgba(0,153,255,0.8);
    box-shadow: 0 1px 1px rgba(209,210,211,0.075) inset, 0 0 8px rgba(209,210,211,,0.6);
    outline: 0 none;
}

.btn-primary {
    background-color: #0099ff;
}

.btn {
    font-size: 20px;
    border-radius: 0;
}

	.btn:hover {
		background-color: #007acc;
	}

label {
    font-size: 20px;
	line-height: 1.5;
	color: #555555;
}

.footer {
	height: 50px;
	margin-top: 45px;
	padding-bottom: 10px;
	text-align: center;
	color: #555555;
}

/*-------------------------------*/
/*      Responsive Styles        */
/*-------------------------------*/

/* Responsive Styles */

@media(max-width:1024px) {
 
	.feature-image {
		padding-left: 0;
		padding-right: 0;
	}
	
	.feature-image img{
		text-align: center;
		margin: auto;
	}
	
}

@media(max-width:991px) {
	
	.feature-image {
		padding-left: 0;
		padding-right: 0;
	}
	
	.feature-image img{
		text-align: center;
		margin: auto;
	}
	
	.work-text h6{
		padding-left: 15px;
	}
	
	.work-text ul{
		padding-left: 15px;
	}
	
}

@media(max-width:767px) {
    
	.carousel-caption {
		width: 45%;
	}
	
	h2 {
		font-size: 1.5em; 
	}
	
	.feature-image {
		padding-left: 0;
		padding-right: 0;
	}
	
	.quote {
		padding-bottom: 30px;
	}
	
	.panel {
		padding: 0 0;
	}
	
	h4 {
		padding-left: 15px;	
	}
	
	.panel-heading .accordion-toggle:after {
		padding-right: 15px;	
	}
	
	.work {
		padding-top: 20px;
	}
	
	.contact { 
		margin-bottom: 50px;
	}
}

@media only screen and (max-width : 480px){
	
	.carousel-caption {
		width: 50%;
	}
	
	h2 {
		font-size: 1.2em;
		margin-left: 5px;	
	}

}
	
 }



/*-------------------------------*/
/*          Dark Overlay         */
/*-------------------------------*/
.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}


