@import url(http://fonts.googleapis.com/css?family=Open+Sans:100,300,700,800);

/*---------------- FONT (OPEN SANS) IMPORT FROM GOOGLE FONTS ---------------*/





/*----------------------------------------------------------------------------------------
										COMMON STYLES
-----------------------------------------------------------------------------------------*/

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 100;
	color: #444;
	line-height: 1.8;
}

a,
a:hover {
	color: #444;
	text-decoration: none;
}

h1 {
	font-size: 26px;
	font-weight: 800;
}

h2 {
	font-size: 31px;
	font-weight: 800;
}

h3 {
	font-size: 26px;
	font-weight:500;
}

h4 {
	font-size: 17px;
	font-weight: bold;
}

h1,
h2,
h3,
h4 {
	color: #222;
	text-transform: uppercase;
}

ul {
	margin: 0;
	padding: 0px;
	list-style: none;
	
}

#wrap { overflow: hidden; }

section {
	padding: 25px 0;
	position: relative;
	background: #fff;
	z-index:2;
}

.form-group input,
.input-group input,
.form-group textarea { color: #222; }

.input-group input:focus,
.form-group input:focus {
	box-shadow: none;
	transition: none;
	border: 0;
	outline: 0;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus { outline: 0px auto -webkit-focus-ring-color; }


.placeholdersjs { color: #aaa !important; }

#footer p{
	font-size: 12px;
    font-weight: bold;
}


/*----------------------------------------------------------------------------------------
									MODAL POPUP STYLES
----------------------------------------------------------------------------------------*/
.modal {
	overflow-y: auto;
	text-align: center;
}

.modal-content {
	padding: 80px 20px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.5);
	border-radius: 0;
	border: 0;
}

.modal-title { margin:0; }

.modal-title > i{
	font-size: 48px;
	padding: 0 0 40px 0;
	display: block;
	color:#ccc;
}

.modal-open { overflow: auto; }

.modal-content .close {
	position: absolute;
	top: 10px;
	right: 15px;
}

.close {
	font-family: inherit;
	font-size: 32px;
	font-weight: 100;
	text-shadow: none;
}




/*----------------------------------------------------------------------------------------
									OWL SLIDER STYLES
----------------------------------------------------------------------------------------*/

.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item { float: left; }

.owl-controls .owl-page,
.owl-controls .owl-buttons div { cursor: pointer; }

.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.grabbing { cursor: url(../images/grabbing.html) 8 8, move; }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-pagination {
	text-align: center;
	position: absolute;
	bottom: -140px;
	width: 100%;
	display: table;
}

.owl-pagination .owl-page {
	height: 40px;
	line-height: 40px;
	display: table-cell;
	margin-left: 0;
	cursor: pointer;
	position: relative;
}

.owl-pagination .owl-page span {
	width: 100%;
	height: 4px;
	display: block;
	background: #ccc;
	position: absolute;
	bottom: 0;
}

.owl-pagination .owl-page.active span { background: #444; }





/*----------------------------------------------------------------------------------------
										PRELOADER
----------------------------------------------------------------------------------------*/
#preloader {
	background: #fff;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	left: 0;
	position: fixed;
	z-index: 999;
}
#preloader .clock {
	position: absolute;
	top: 50%;
	left:50%;
	width: 40px;
	height:40px;
	margin:-20px 0 0 -20px;
	border:2px solid #ccc;
	border-radius:20px;
}
#preloader .clock .arrow_sec{
	position:absolute;
	height:15px;
	width:2px;
	top:50%;
	left:50%;
	margin:-15px 0 0 -1px;
	background:#666;
	-webkit-animation:rotation 1s linear 0s infinite;
	-moz-animation:rotation 1s linear 0s infinite;
	animation:rotation 1s linear 0s infinite;
	-webkit-transform-origin: center bottom;
	-moz-transform-origin: center bottom;
	transform-origin: center bottom;
}
#preloader .clock .arrow_min{
	position:absolute;
	height:10px;
	width:2px;
	top:50%;
	left:50%;
	margin:-10px 0 0 -1px;
	background:#666;
	-webkit-animation:rotation 6s linear 0s infinite;
	-moz-animation:rotation 6s linear 0s infinite;
	animation:rotation 6s linear 0s infinite;
	-webkit-transform-origin: center bottom;
	-moz-transform-origin: center bottom;
	transform-origin: center bottom;
}
@-webkit-keyframes rotation {
	0%{
 		-webkit-transform: rotate(0deg);
	}
 	100% {
 		-webkit-transform: rotate(360deg);
	}
}
@keyframes rotation {
	0%{
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


/*----------------------------------------------------------------------------------------
										HEADER
----------------------------------------------------------------------------------------*/

header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background:rgba(255, 255, 255, 0.9);
	 padding: 10px 0px;

}
.strong{
	font-size:25px;
	font-weight:bold;
	color:#7bb61e;
}
 .padding-top{
	    padding-top: 3%;
 }
.soc_nav li {
	margin-left: 10px;
	list-style: none;
	display: inline-block;
}

.soc_nav li:first-child { margin-left: 0; }

.soc_nav li a {
	font-size: 16px;
	line-height: 40px;
	display: block;
	text-align: center;
	color:#FFF;
	height: 40px;
	width: 40px;
	border-radius: 20px;
	background:#444;
}

.soc_nav li a:before{
	display:block;
	transition: all 0.15s ease-in-out;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;	
}

.soc_nav li a:hover:before{
	transform:translateY(-2px);
	-webkit-transform:translateY(-2px); 
	-moz-transform:translateY(-2px); 
}

.soc_nav li a.icon-soc-googleplus { background: #dd4b39; }

.soc_nav li a.icon-soc-dribbble { background: #ea4c89; }

.soc_nav li a.icon-soc-facebook { background: #4066b5; }

.soc_nav li a.icon-soc-twitter { background: #00d2ff; }

.soc_nav li a.icon-soc-instagram { background: #517fa4; }

.soc_nav li a.icon-soc-pinterest { background: #cb2027; }

.soc_nav li a.icon-soc-linkedin { background: #007bb6; }

.soc_nav li a.icon-soc-flickr { background: #ff0084; }

.soc_nav li a.icon-soc-youtube { background: #bb0000; }

.soc_nav li a.icon-soc-vimeo { background: #aad450; }

.soc_nav li a.icon-soc-github { background: #333; }

.soc_nav li a.icon-soc-tumblr { background: #32506d; }

.soc_nav li a.icon-soc-feed { background: #F90; }

a.login_btn {
	display: block;
	float: right;
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 20px;
	height: 40px;
	line-height: 37px;
	margin-left: 20px;
	color: #fff;
	padding: 0 30px;
	transition: all 0.15s ease-in-out;
}

a.login_btn:hover { border: 1px solid rgba(255,255,255,1); }





/*----------------------------------------------------------------------------------------
										INTRO
----------------------------------------------------------------------------------------*/

#intro {
	position: relative;
	width: 100%;
	top: 0;
	display: block;
	z-index: 1;
	overflow: hidden;
	background: #000;
	padding: 0;
	margin: 0;
	color: #FFF;
}

.photo img{
	width:100%;
}

#intro .container {
	margin:171px auto 72px auto;
	position: relative;
	z-index: 1;
}

#intro #slides {
	position: fixed !important;
	top: 0;
	opacity: 0.4;
	z-index: 0;
}

#intro .slogan { margin: 0 20px 0 0; position:relative; }

#intro .slogan h2 {
	font-size: 80px;
	color: #FFF;
	margin: 0;
}

#intro .slogan h3 {
	font-size: 22px;
	padding: 0;
	margin: 0;
	color: #FFF;
	font-weight: bold;
}

#intro .slogan p {
	margin: 60px 0 0 0;
	font-size: 17px;
}


#intro form .title {
	padding: 20px;
	font-size: 25px;
	text-transform: uppercase;
	background: #666;
	line-height: 1;
}

.form-control {
	border-radius: 0;
	border: 0;
	height: auto;
	padding: 20px;
	font-size: 16px;
	box-shadow: none;
	line-height: 20px;
	margin:0;
	box-shadow:none;
}

#intro .form-control {
	border-bottom:1px solid #eee;
}

.form-group {
	margin: 0px;
	position:relative;
}

#intro .btn_start {
	width: 100%;
	font-size: 25px;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	background: #7bb61e;
	border: 0;
	border-radius: 0;
	padding: 20px 0;
}


#intro form label.error {
	font-size: 13px;
	font-weight:normal;
	color:#cd6161;
	position:absolute;
	z-index:10;
	right:0;
	top:0;
	line-height:20px;
	padding:10px 10px 0 0;
	width:100px;
	text-align:right;
}

#intro form input.error{
	border-bottom:1px solid #e6a3a3 !important;
}
#intro form input.valid{
	border-bottom:1px solid #aee05f;
}




/*----------------------------------------------------------------------------------------
										SERVICES
----------------------------------------------------------------------------------------*/

#services {
	color: #666;
	padding: 33px 0 0px 0;
}

#services .service { padding: 0 70px 60px 90px; }

#services .service i {
	position: absolute;
	color: #aaa;
	font-size: 60px;
	left: 0;
	top: 0;
}

#services .service h4 { margin: 0 0 13px 0; }

/*----------------------------------------------------------------------------------------
										FEATURES
----------------------------------------------------------------------------------------*/

#about {
	background-color: #f3f3f3;
    overflow: hidden;
    position: relative;
    color: black;
}

#about1 {
    overflow: hidden;
    position: relative;
    color: black;
}
#feature_img {
	position: absolute;
	top: 0px;
	left: 50%;
	width: 50%;
	height: 100%;
	background: url(../images/features.jpg) center no-repeat;
	background-size: 100% 100%;
}

ul.triangle_list li {
	position: relative;
	margin: 12px 0 0 30px;
	    font-size: 14px;
}

ul.triangle_list li:before {
	content: "";
	display: block;
	position: absolute;
	left: -30px;
	top: 10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 4px;
	border-color: transparent transparent transparent #888888;
}

a.round_btn_dark {
	display: inline-block;
	border: none;
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	color: #fff;
	padding: 0 25px;
	background: #444;
	transition: all 0.15s ease-in-out;
	margin: 60px 0 0 0;
}

a.round_btn_dark:hover { background: #555; }





/*----------------------------------------------------------------------------------------
											FAQ
----------------------------------------------------------------------------------------*/

#faq h3 {margin: 20px 0 20px 0; }

.panel {
	background: #f8f8f8;
	border-radius: 0;
	box-shadow: none;
	border: none;
	margin-bottom: 40px;
	text-align: left;
}

.panel .panel-heading {
	color: #222;
	background: #eeeeee;
	padding: 25px 25px 25px 75px;
	display: block;
	position: relative;
	font-size: 20px;
	border: 0;
	border-radius: 0;
}

.panel .panel-heading:before {
	content: "";
	display: block;
	position: absolute;
	left: 30px;
	top: 33px;
	height: 1px;
	width: 20px;
	background: url(../images/cross.html) no-repeat 0 -9px;
	margin-top: 9px;
	opacity: 0.25;
}

.panel .collapsed.panel-heading:before {
	height: 20px;
	background: url(../images/cross.html) no-repeat center;
	margin-top: 0;
}

.panel .panel-body {
	padding: 30px;
	color: #666;
}

.image img{
	height:100%;
	width:100%;
	margin-top:11px;
}
/*----------------------------------------------------------------------------------------
									TESTIMONIALS
----------------------------------------------------------------------------------------*/

#testimonials {
	background: url(../images/testimonials_bg.jpg) no-repeat center;
	background-size: cover;
    margin: 20px 0px;
}

#testimonials h4{
	text-align: center;
    padding-bottom: 34px;
}

p{
font-size:16px !important;
}
#testimonials-slider .item {
	width: 326px;
	margin: 0 auto;
	font-size:14px;
}

#testimonials-slider .item .quote {
	position: relative;
	background: #fff;
	padding: 18px;
}

#testimonials-slider .item .quote:before {
	content: '"';
	display: block;
	color: #ccc;
	position: absolute;
	left: 0;
	top: 0;
	height: 40px;
	width: 20px;
	text-align: center;
	font-size: 30px;
}

#testimonials-slider .item .quote:after {
	content: '"';
	display: block;
	color: #ccc;
	position: absolute;
	right: 0;
	bottom: 0;
	height: 40px;
	width: 40px;
	text-align: center;
	font-size: 30px;
	line-height: 2;
}

#testimonials-slider .item .author {
	position: relative;
	background: #f8f8f8;
	text-align: right;
	padding:10px 5px 0 37px;
	min-height: 50px;
}

#testimonials-slider .item .photo {
	position: absolute;
	float: left;
	overflow: hidden;
	height: 50px;
	width: 50px;
	top: 0;
	left: 0;
	text-align: center;
	line-height: 50px;
}





/*----------------------------------------------------------------------------------------
								 		CONTACT
----------------------------------------------------------------------------------------*/

#contact {
	background: #f8f8f8;
	padding: 0;
}

#contact .row { display: table; }

#contact .row > div {
	border-left: 1px solid #eee;
	padding:20px 48px 19px 44px;
	display: table-cell;
	float: none;
}

#contact .row > div:first-child {
	border-left: none;
	padding-left: 15px;
}

#contact .row > div:last-child { padding-right: 15px; }

#contact .input-group { width: 100%; }

#contact h4 { margin:0 0 18px 0; }

#contact .soc_nav { float: none; }

ul.contact_data_list li {margin:0 0 10px 0; }

ul.contact_data_list i { margin: 0 20px 0 0; }

#subscribe_form { margin: 0 0 10px 0; }

#subscribe_form .form-control{
	border-bottom:none;
}

#subscribe_form .btn {
	border-radius: 0;
	border: 0;
	height: auto;
	padding: 15px 20px;
	font-size: 30px;
	line-height: 30px;
	box-shadow: none;
	margin-left: 0;
	background: #fff;
}

#subscribe_form label {
	color: #fff;
	font-size: 13px;
	font-weight: 100;
	padding: 10px 20px;
	display: block;
}

#subscribe_form label.error {
	background: #d10000;
}

#subscribe_form label.valid {
	background: #5fb54e;
	padding:0 20px;
	line-height:3;
}





/*----------------------------------------------------------------------------------------
											FOOTER
----------------------------------------------------------------------------------------*/

footer {
	background: #eee;
	padding:17px 0 0 0;
	text-align: center;
	position:relative;
	z-index:2;
	    background: #494949;
		color:white;
}



/*----------------------------------------------------------------------------------------
									RESPONSIVE STYLES
----------------------------------------------------------------------------------------*/

@media (max-width: 992px) {

section { padding: 80px 0; }

#services { padding: 80px 0 20px 0; }

#features { padding: 300px 0 80px 0; }

#feature_img {
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 250px;
	background: url(../images/features.jpg) center no-repeat;
	background-size: cover;
}

.owl-pagination { bottom: -80px; }

#contact .row {
	display: block;
	padding: 40px 0;
}

#contact .row > div,
 #contact .row > div:last-child,
 #contact .row > div:first-child {
	border-left: none;
	border-top: 1px solid #eee;
	padding: 50px 15px;
	display: block;
	float: none;
}

#contact .row > div:first-child { border-top: none; }
}
@media (max-width: 767px) {

body { text-align: center; }

#intro .slogan { margin: 0; }

#intro .container { margin: 170px 0 100px 0; }

#intro .slogan p { margin: 60px 0; }

#services .service { padding: 0 70px 60px 70px; }

#services .service i {
	position: relative;
	display: block;
	margin-bottom: 20px;
}

ul.triangle_list li {
	margin-left: 0;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}

ul.triangle_list li:before { display: none; }
}
@media (max-width: 400px) {

header { margin-top: 20px; }

header .soc_nav { display: none; }

#intro .container { margin: 120px 0 100px 0; }
}





/*----------------------------------------------------------------------------------------
									RETINA STYLES
----------------------------------------------------------------------------------------*/

@media only screen and (-webkit-min-device-pixel-ratio: 2) {

header .logo img { content: url("../images/logo_2x.html"); }

footer .logo img { content: url("../images/logo_dark_2x.html"); }

.panel .panel-heading:before,
.panel .collapsed.panel-heading:before {
	background-image: url(../images/cross_2x.html);
	background-size:20px 20px;
}
}