/*
Author: Simplebox
Author URL: http://simplebox.mx

|| CONTENTS                      

01: GENERAL
02: HEADER
03: HOME
04: SERVICIOS
05: ESTACIONES
06: NOSOTROS
07: CONTACTO
08: DEFAULT
09: FOOTER
10: MEDIA QUERIES

*/

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - 01: GENERAL - - - - - - - - - - - - */

@import 'https://fonts.googleapis.com/css?family=Lato:300,400,700,900';

body{
	background:#fff;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 17px;
	color:#fff;
}
a{
	color:#fff;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
}
a:hover, a:active{text-decoration: none}

h1,h2,h3,h4,h5,h6{
	font-weight: 700;
	position: relative;
	line-height: 1.3em;
	margin-top: 0;
}
h1{
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 44px;
}
h3{
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
h4{
	font-size: 11px;
	letter-spacing: 2px;
}
address{
	color:#555;
}
.light{font-weight: 300;}

.underline:after{
	content: "";
	display: block;
	width: 23px;
	height: 2px;
	margin: 20px auto;
	background: #fff;
}

.sub-title{
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 5px;
	margin:48px 0 4px;
	font-size: 15px;
}

.cta-btn{
	display: inline-block;
	background: #7dcc23;
	margin-top:30px;
	text-transform: uppercase;
	padding: 18px 46px;
	border-radius: 50px;
	font-size: 11px;
	letter-spacing: 1px;
	font-weight: 500;
}
.cta-btn:hover{ opacity: .75; color:#fff; }
.cta-btn.stroke{
	background: none;
	border:2px solid #fff;
	border-radius: 50px;
	padding: 16px 42px;
	margin-left: 20px;
}
.cta-btn.stroke:hover{ opacity: 1; background:rgba(255,255,255,.3); }

.modal-backdrop{ background: #fff; }
.modal-backdrop.in {opacity: 1; filter: alpha(opacity=100);}
.modal .close {
	float: none;
	margin: 0 auto 50px;
	display: block;
	border: 1px solid #555;
	border-radius:50%;
	padding: 10px;
	width: 60px;
	height: 60px;
	opacity: .5;
    filter: alpha(opacity=50);
}
.modal .close:hover, .modal .close:focus{opacity: .8; filter: alpha(opacity=80);}
.modal .close img{
	width: 100%;
	max-width: 25px;
}

.modal-content{
	box-shadow:none;
	-webkit-box-shadow:none;
	-moz-box-shadow:none;
	-o-box-shadow:none;
	-ms-box-shadow:none;
}
.light-box-info {
	border:none;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - 02: HEADER - - - - - - - - - - - - */
.navbar,
.navbar-nav,
.navbar .navbar-nav,
.navbar .navbar-brand
{transition: all .4s;}

.navbar-nav{ margin-top: 16px; }
.navbar li a{
	text-transform: uppercase;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 1px;
	transition: none;
}
.navbar li:hover a,
.navbar li.active a{
	border-bottom: 2px solid #7dcc23;
	background: transparent;
	color: #fff
}
.navbar li.dropdown {
	margin-top: 5px;
}
.navbar li.dropdown > a{
	font-size: 10px;
    background: #7dcc23;
    padding: 10px 21px;
}
.navbar li.dropdown:hover a{
	border-bottom: none
}
.navbar li a:focus{ background: none; }

.nav .open>a,
.nav .open>a:hover,
.navbar li.dropdown.open,
.navbar li.dropdown a:active,
.navbar li.dropdown a:focus{
	background: #7dcc23;
	color: #fff;
}

.navbar-toggle span > img{ width: 38px; height: 38px; }

.navbar .navbar-brand{width: 172px; height: auto}
.top-nav-collapse.navbar{background: #303846;}
.top-nav-collapse.navbar .navbar-nav{ margin-top:6px }
.top-nav-collapse.navbar .navbar-brand{width: 150px}

.header {
	background: #1f232f ;
	background-size: cover;
	padding: 80px 0 40px;
}

#login-dp{
    min-width: 250px;
    padding: 15px 15px 0;
    overflow:hidden;
    background-color:rgba(255,255,255,1);
    color: #555;
    border-top-left-radius: 3px;
}
#login-dp .help-block{
    font-size:12px;
    color: #555;   
}
#login-dp .bottom{
    background-color:rgba(255,255,255,.8);
    border-top:1px solid #ddd;
    clear:both;
    padding: 14px 0;
}
#login-dp .form-group {
    margin-bottom: 10px;
    margin-top: 10px;
}
#login-dp a {
	text-transform: none;
	letter-spacing: 0;
	color: #555;
	font-size: 11px
}
#login-dp a:focus,
#login-dp a:active {
	background: none;
	text-decoration: none;
}
#login-dp .form-control{
	box-shadow: none;
}
.btn-primary,
.btn-primary:focus {
    background-color: #7dcc23;
    border: none;
    transition: all .4s;
}
.btn-primary:hover{
	background-color: #7dcc23;
	opacity: .8;
}
@media(max-width:768px){
    #login-dp{
        background-color: inherit;
        color: #fff;
    }
    #login-dp .bottom{
        background-color: inherit;
        border-top:0 none;
    }
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - 03: HOME - - - - - - - - - - - - - -*/

/*---- start-intro ----*/
.intro {
	background: rgba(48, 56, 70, .9);
	background-size: cover;
	padding-top: 15%;
	padding-bottom: 15%;
}
.intro video { 
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	transform: translateX(-50%) translateY(-50%);
	background-size: cover;
	transition: 1s opacity;
}
.intro .sub-title{
	margin-bottom: 16px;
}
/*----- end-intro -----*/

/*---- start-what ----*/
.what{
	background:#212e3c;
	padding: 60px 0 100px;
}
.what h2{
	text-transform: uppercase;
	margin:0;
}
.what h2.underline:after{
	margin-left: 0;
}
.what p.summary{
	color: #e4e4e4;
	line-height: 1.7em;
}
.what p.summary b{ color: #fff }

.what .vid-btn{
	margin-top: 60px;
	cursor: pointer;
	display: block;
	transition: all .5s;
}
.what .vid-btn:hover{
	opacity: .8;
}
/*----- end-what -----*/


/*---- start-control ----*/
.max-control{
	padding: 80px 0 0;
	background: #6ec73a;
	max-height: 720px;
	overflow: visible;
	clear: both;
}
.max-control h2{
	text-transform: uppercase;
	font-size: 46px;
	margin-top: 0;
}
.carousel-control.right,.carousel-control.left{
	background:none;
}
.carousel-control .glyphicon-chevron-right {
	right: -50%;
}
.carousel-control .glyphicon-chevron-left {
	left: -50%;
}
/*----- end-max-control -----*/


/*---- start-features ----*/
.features{
	padding: 130px 0 60px;
	color: #62708a;
	background: #fff
}
.features h2{margin-bottom: 60px;}
.features-box .feature{
	box-shadow: 0 0 18px 0 #eaeaea;
	border-radius: 10px;
	position: relative;
	margin-top: ;
	min-height: 240px;
	padding: 30px 20px;
	margin:40px 3%;
}
.feature h3{
	display: block;
	margin-top: 40px;
}
.feature h3:after{
	content: "";
	width: 18px;
	height: 2px;
	background:#62708a;
	display: block;
	margin:14px auto; 
}
.feature .icon{
	position: absolute;
	width: 78px;
	height: 78px;
	top:-39px;
	left: 50%;
	margin-left: -39px;
}
/*----  end-features -----*/

/*----start-stations-----*/
.stations{
	background:#3c4457 url(../images/bg-map.png) no-repeat center center fixed;
	background-size: cover;
	padding: 80px 0;
	min-height: 80vh;
}
.stations h5{
	margin: 30px 0 50px;
	font-size: 1.4em;
	letter-spacing: 2px;
	font-weight: 300;
}
.stations p {
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 2px;
}
.stations p span{
	display: block;
	font-size: 58px;
	line-height: 1.1em;
	letter-spacing: 0;
}
.stations .stats{
	border: 1px solid #fff;
	text-align: center;
	padding: 20px 0;
}

.stats:nth-child(2),
.stats:nth-child(3){
	border-bottom: none;
}
.stats:nth-child(2),
.stats:nth-child(4){
	border-right: none;
}

/*----end-stations-----*/


/*----start-clients-----*/
.clients{
	background: #e9eef4;
	padding: 50px 0;
}
.clients p{
	color:#505052;
	font-size: 110%;
}
.avatar{
	display: inline-block;
	border-radius: 50%;
	background: #fff;
	width: 108px;
	height: 108px;
	padding: 10px;
	white-space: nowrap;
	margin-right: 4%;
	margin-top: 20px;
	transition: all .6s;
}
.avatar:hover {
	box-shadow: 0 0 0 4px #3d4961, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);

}
.avatar img{
	max-width: 100%;
	vertical-align: middle;
}
/*----end-clients-----*/


/*----start-call-to-action-----*/

.call-to-action{
	min-height: 480px;
	padding-top: 80px;
	border-bottom: 30px solid #181e28;
	background: #1f232f;
	background-image:url(../que_files/images/btm_all_img_03.png);
	background-repeat: no-repeat;
	background-position: 84% bottom;
}
.call-to-action p{
	margin-top: 40px;
	margin-bottom: 80px;
}
.call-to-action.cta-two{
	background: #1f232f;
}
.call-to-action.cta-two h2{
	font-size: 50px !important;
}
.call-to-action.cta-two p{
	margin-bottom: 30px;
}
.call-to-action.cta-two .cta-btn{
	margin-top:30px;
	margin-bottom: 20px;
}
/*----end-call-to-action-----*/


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - 05: SERVICIOS - - - - - - - - - - - - */
.services{padding: 60px 0 60px;}
.services h2{
	color: #303846;
	text-transform: uppercase;
	font-size: 18px;
	max-width: 285px;
	letter-spacing: 4px;
}
.table {overflow-x: auto;border-bottom: 2px solid #e4e5ea; margin-top: 80px;padding-bottom: 80px;}
.table h2 span{ color:#fe9920; }
.table img{ margin:0px 0 80px;}
table {  width: 100%; border: none; border-collapse: collapse; margin-top: 32px; }
table.plans th {padding: 10px 0; color: #999; font: 300 1.154em/3em sans-serif; text-align: center;}
table.plans h3 {color: #3f3f3f;text-transform: none; font-weight: 100; font-size: 12px; letter-spacing: 1px}
table.plans strong {font-size: 1.6em; display: block; margin-bottom: 10px; color:#8ad039;}
table.plans sup {position: relative; top: -0.5em; color: #3f3f3f; font-size: 1.2em;}
table.plans td {color: #3f3f3f; text-align: center;}
table.plans th:first-child {border-right: 2px solid #e4e5ea;}
table.plans td:first-child {color: #999; text-align: left; font-size: 13px; border-right: 2px solid #e4e5ea;max-width: 272px}
table.plans td:nth-child(2n+2) {/*background: #f7f7f7;*/}
table.plans td{padding: 20px 0 20px}
table.plans tr.action td {padding: 20px 10px; border-bottom-width: 2px;}
table.plans tr.action td:first-child a {padding-left: 20px; background: url("more.png") 0 50% no-repeat; color: #3f3f3f;}
table.plans tr.action td:first-child a:hover {color: #ff8400;}
table.plans span.yes {display: block; overflow: hidden; width: 16px; height: 16px; margin: 0 auto; background: url("../images/yes.png") 50% 50% no-repeat; text-indent: -50em; background-size: 100%;}
table.plans span.yes.add {width: 16px; height: 16px; background: url("../images/add.png") 50% 50% no-repeat;background-size: 100%;}
table.plans span.no {display: block; overflow: hidden; width: 16px; height: 16px; margin: 0 auto; background: url("../images/no.png") 50% 50% no-repeat; text-indent: -50em; background-size: 100%;}

table.leyenda{ background: #f3f3f3; }
table.leyenda td{ font-size: 13px; line-height: 24px;}
.fixed{
	top:26px;
	position:fixed;
	width:auto;
	display:none;
	border:none;
}
.fixed *{  color:#fff !important;}

table.plans.fixed th{ background: rgba(31,35,47,.9);}
table.plans.fixed th:first-child{ border-right:none; background: transparent !important }
table.plans.fixed h3{ padding-top: 10px }

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - 06: ESTACIONES - - - - - - - - - - - - -*/
.map{position: relative;}
.map h1{position: absolute; color: #fff; z-index: 11; right: 40px; top: 20px;}
.infoWindow{color: #555;}
#pac-input{margin-top: 60px; left: 10px !important; width: 200px; height: 35px; position: absolute; border:1px solid #f0f0f0;box-shadow: 0 0 2px #747474; border-radius: 2px;color: #333;padding-left: 5px}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - 06: NOSOTROS - - - - - - - - - - - - -*/

.timeline{
	padding: 60px 0;
	position: relative;
}
.flag-box {
	position: relative;
	top:0px;
	left: 0px;
	width: 90px;
	margin-top: -90px;
	z-index: 9;
}
.flag-box img{
	box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 5px rgba(0, 0, 0, 0.05);
	border-radius: 50%;
}
.cd-container {
	width: 90%;
	max-width: 970px;
	margin: 0 auto;
}
.cd-container::after {
	/* clearfix */
	content: '';
	display: table;
	clear: both;
}
#cd-timeline {
	position: relative;
	padding: 2em 0;
	margin-top: 2em;
	margin-bottom: 2em;
}
#cd-timeline::before {
	/* this is the vertical line */
	content: '';
	position: absolute;
	top: 0;
	left: 18px;
	height: 100%;
	width: 4px;
	background: #d7e4ed;
	border:1px dashed #ddd;
}
#cd-timeline > *{
	color:#1f232f;
}

@media only screen and (min-width: 970px) {

	#cd-timeline::before {
		left: 50%;
		margin-left: -2px;
	}
	.cd-container {
		width: 70%;
	}
}

.cd-timeline-block {
	position: relative;
	margin: 2em 0;
}
.cd-timeline-block:after {
	content: "";
	display: table;
	clear: both;
}
.cd-timeline-block:first-child {
	margin-top: 0;
}
.cd-timeline-block:last-child {
	margin-bottom: 0;
}
@media only screen and (min-width: 970px) {
	.flag-box {
		position: absolute;
		top:0px;
		left: 50%;
		width: 90px;
		margin-left: -36px;
		margin-top: -50px;
		z-index: 9;
	}
	.cd-timeline-block {
		margin: 2em 0;
	}
	.cd-timeline-block:first-child {
		margin-top: 0;
	}
	.cd-timeline-block:last-child {
		margin-bottom: 0;
	}
}

.cd-timeline-img {
	position: absolute;
	top: 30px;
	left: 14px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 4px #3d4961, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}
.cd-timeline-img img {
	display: block;
	width: 24px;
	height: 24px;
	position: relative;
	left: 50%;
	top: 50%;
	margin-left: -12px;
	margin-top: -12px;
}
@media only screen and (min-width: 970px) {
	.cd-timeline-img {
		width: 12px;
		height: 12px;
		left: 50%;
		margin-left: -6px;
		/* Force Hardware Acceleration in WebKit */
		-webkit-transform: translateZ(0);
		-webkit-backface-visibility: hidden;
	}
	.cssanimations .cd-timeline-img.is-hidden {
		visibility: hidden;
	}
	.cssanimations .cd-timeline-img.bounce-in {
		visibility: visible;
		-webkit-animation: cd-bounce-1 0.6s;
		-moz-animation: cd-bounce-1 0.6s;
		animation: cd-bounce-1 0.6s;
	}
}

@-webkit-keyframes cd-bounce-1 {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.5);
	}

	60% {
		opacity: 1;
		-webkit-transform: scale(1.2);
	}

	100% {
		-webkit-transform: scale(1);
	}
}
@-moz-keyframes cd-bounce-1 {
	0% {
		opacity: 0;
		-moz-transform: scale(0.5);
	}

	60% {
		opacity: 1;
		-moz-transform: scale(1.2);
	}

	100% {
		-moz-transform: scale(1);
	}
}
@keyframes cd-bounce-1 {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.5);
		-moz-transform: scale(0.5);
		-ms-transform: scale(0.5);
		-o-transform: scale(0.5);
		transform: scale(0.5);
	}

	60% {
		opacity: 1;
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-ms-transform: scale(1.2);
		-o-transform: scale(1.2);
		transform: scale(1.2);
	}

	100% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}
.cd-timeline-content {
	position: relative;
	margin-left: 60px;
	border-radius: 0.25em;
	padding: 1em;
}
.cd-timeline-content:after {
	content: "";
	display: table;
	clear: both;
}
.cd-timeline-content img {
	margin-top: -50%;
	display: none;
}
.cd-timeline-content h2 {
	color: #303e49;
}
.cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
	display: inline-block;
	text-align: left;
}
.cd-timeline-content p {
	margin: 1em 0;
	line-height: 1.6;
}
.cd-timeline-content .cd-read-more {
	float: right;
	padding: .8em 1em;
	background: #acb7c0;
	color: white;
	border-radius: 0.25em;
}
.no-touch .cd-timeline-content .cd-read-more:hover {
	background-color: #bac4cb;
}
.cd-timeline-content .cd-date {
	float: left;
	padding: .8em 0;
	opacity: .7;
}
.cd-timeline-content::before {
	content: '';
	position: absolute;
	top: 16px;
	right: 100%;
	height: 0;
	width: 0;
}
@media only screen and (min-width: 970px) {
	.cd-timeline-content {
		margin-left: 0;
		padding: 1em 0;
		width: 40%;
		text-align: right;
	}
	.cd-timeline-content::before {
		top: 24px;
		left: 100%;
		border-color: transparent;
		border-left-color: none;
	}
	.cd-timeline-content img{
		display: inline-block;
	}
	.cd-timeline-content .cd-read-more {
		float: left;
	}
	.cd-timeline-content .cd-date {
		position: absolute;
		width: 100%;
		left: 122%;
		top: 6px;
		font-size: 16px;
	}
	.cd-timeline-block:nth-child(odd) .cd-timeline-content {
		float: right;
		text-align: left;
	}
	.cd-timeline-block:nth-child(odd) .cd-timeline-content::before {
		top: 24px;
		left: auto;
		right: 100%;
		border-color: transparent;
		border-right-color: white;
	}
	.cd-timeline-block:nth-child(odd) .cd-timeline-content .cd-read-more {
		float: right;
	}
	.cd-timeline-block:nth-child(odd) .cd-timeline-content .cd-date {
		left: auto;
		right: 122%;
		text-align: right;
	}
	.cssanimations .cd-timeline-content.is-hidden {
		visibility: hidden;
	}
	.cssanimations .cd-timeline-content.bounce-in {
		visibility: visible;
		-webkit-animation: cd-bounce-2 0.6s;
		-moz-animation: cd-bounce-2 0.6s;
		animation: cd-bounce-2 0.6s;
	}
	/* inverse bounce effect on even content blocks */
	.cssanimations .cd-timeline-block:nth-child(odd) .cd-timeline-content.bounce-in {
		-webkit-animation: cd-bounce-2-inverse 0.6s;
		-moz-animation: cd-bounce-2-inverse 0.6s;
		animation: cd-bounce-2-inverse 0.6s;
	}
}


@-webkit-keyframes cd-bounce-2 {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateX(20px);
	}

	100% {
		-webkit-transform: translateX(0);
	}
}
@-moz-keyframes cd-bounce-2 {
	0% {
		opacity: 0;
		-moz-transform: translateX(-100px);
	}

	60% {
		opacity: 1;
		-moz-transform: translateX(20px);
	}

	100% {
		-moz-transform: translateX(0);
	}
}
@keyframes cd-bounce-2 {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100px);
		-moz-transform: translateX(-100px);
		-ms-transform: translateX(-100px);
		-o-transform: translateX(-100px);
		transform: translateX(-100px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateX(20px);
		-moz-transform: translateX(20px);
		-ms-transform: translateX(20px);
		-o-transform: translateX(20px);
		transform: translateX(20px);
	}

	100% {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}
}
@-webkit-keyframes cd-bounce-2-inverse {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
	}

	100% {
		-webkit-transform: translateX(0);
	}
}
@-moz-keyframes cd-bounce-2-inverse {
	0% {
		opacity: 0;
		-moz-transform: translateX(100px);
	}

	60% {
		opacity: 1;
		-moz-transform: translateX(-20px);
	}

	100% {
		-moz-transform: translateX(0);
	}
}
@keyframes cd-bounce-2-inverse {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100px);
		-moz-transform: translateX(100px);
		-ms-transform: translateX(100px);
		-o-transform: translateX(100px);
		transform: translateX(100px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
		-moz-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		-o-transform: translateX(-20px);
		transform: translateX(-20px);
	}

	100% {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}
}

.partners{
	min-height: 480px;
	padding: 80px 0;
	border-bottom: 30px solid #181e28;
	background: #212f3c;
}
.partners p{
	margin-bottom: 10px;
	padding: 0;
	font-size: 14px;
}
.partners p.summ{
	font-size: 28px;
	margin-bottom: 50px;
}
.partners h4{
	margin-top: 30px;
	font-size: 20px;
	letter-spacing: 4px
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - 07: CONTACTO - - - - - - - - - - - - -*/
.contact{
	padding: 60px 0;
}
.contact h2,
.contact p{
	color: #303846;
	text-transform: uppercase;
	font-size: 22px;
	letter-spacing: 2px;
}
.contact a{
	color: #7dcc23;
	font-weight: bold;
}
.material input, .material textarea{ color: #555; font-weight: bold }
.material .material-select > label { font-weight: 100; color:#555; }
.material{
	border-top: 5px solid #eee;
}

.form-control{ color: #7dcc23 }
.floating-label-form-group {
	position: relative;
	margin-bottom: 0;
	padding-bottom: .5em;
	border-bottom: 1px solid #eee
}

.floating-label-form-group input,
.floating-label-form-group textarea {
	z-index: 1;
	position: relative;
	padding-right: 0;
	padding-left: 0;
	border: none;
	border-radius: 0;
	font-size: 1.5em;
	background: 0 0;
	box-shadow: none!important;
	resize: none
}

.floating-label-form-group label {
	display: block;
	z-index: 0;
	position: relative;
	top: 2em;
	margin: 0;
	font-size: .85em;
	line-height: 1.764705882em;
	vertical-align: middle;
	vertical-align: baseline;
	opacity: 0;
	-webkit-transition: top .3s ease, opacity .3s ease;
	-moz-transition: top .3s ease, opacity .3s ease;
	-ms-transition: top .3s ease, opacity .3s ease;
	transition: top .3s ease, opacity .3s ease
}

.floating-label-form-group:not(:first-child) {
	padding-left: 14px;
	border-left: 1px solid #eee
}

.floating-label-form-group-with-value label {
	top: 0;
	opacity: 1
}

.floating-label-form-group-with-focus label {
	color: #18BC9C
}
form .row:first-child .floating-label-form-group,
address {
	border-top: 5px solid #eee
}
address {
	padding-top: 30px;
}
.sbt-btn{
	display: inline-block;
	background: #7dcc23;
	margin-top:0px;
	text-transform: uppercase;
	padding: 18px 86px;
	border-radius: 50px;
	font-size: 11px;
	letter-spacing: 1px;
	font-weight: 500;
	border:none;
}
.sbt-btn:hover{ opacity: .75; color:#fff; }
.alert-success{ margin-top: 20px; }

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - 08: DEFAULT - - - - - - - - - - - - -*/

section.default{
	padding: 60px 0;
}
.default p,
.default ul{
	color: #1f232f;
	padding: 10px 0;
}
.default ul{
	margin-left: 20px;
}
.default h2{
	color: #303846;
	margin-top: 30px;
}
.default a{
	color: #7dcc23; font-weight: bold
}
.default h3{
	color: #303846;
}
.default ol{
	color: #303846;
}
#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    background: #7dcc23;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}
#back-to-top:hover {
    background: #ccc;
}
#back-to-top.show {
    opacity: 1;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - 09: FOOTER - - - - - - - - - - - - -*/
.footer{
	background: #191d28;
	padding: 1.5em 0 0;
	font-size: 12px;
}
.footer p{
	margin:0;
}
.footer ul li{
	display:inline-block;
	list-style:none;
	margin:0;
	width: 100%;
	padding: 3px 0;
}
.footer ul{
	padding:0;
	margin:0;
}
.footer ul li img{
	vertical-align: bottom;
	margin-right: 1em;
}
.footer ul li a{

}
.footer ul li a:hover,
.footer ul li.active a{
	color:#6c99bd;
	text-decoration:none;
}
.footer .copyright{
	margin-top: 32px;
	background: #141720;
}
.footer .copyright p{
	padding: 20px 0;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - -  10: MEDIA QUERIES - - - - - - - - - - - -*/

@media (min-width: 1200px){
	.container {
		width: 970px;
	}
	.navbar .container {
		width: 1170px;
	}
}

@media (min-width: 768px){

	.navbar li.dropdown > a,
	.navbar li.dropdown.open{
		border-radius: 20px;
	}
	.intro{min-height: 100vh;}

}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-nav.navbar-right li:first-child{
    	display: none;
    }
}
@media (min-width: 768px){
	.navbar-nav.navbar-right:last-child {
    	margin-right: 0px;
	}
}
@media (max-width: 767px){
.footer .col:nth-child(3) h4, .footer .col:nth-child(4) h4{
		margin-top:40px;
	}
}
/*---- start-Responsive-Media-queries----*/
/*----start-media-quries-for-1366px-Laptops-----*/
@media (max-width:1366px){
	.carousel-control .glyphicon-chevron-right {
		right: -36%;
	}
	.carousel-control .glyphicon-chevron-left {
		left: -36%;
	}
}
/*----//End-media-quries-for-1366px-Laptops-----*/
/*----start-media-quries-for-1280px-Laptops-----*/
@media (max-width:1280px){
	.carousel-control .glyphicon-chevron-right {
		right: 20%;
	}
	.carousel-control .glyphicon-chevron-left {
		left: 20%;
	}
}
/*----//End-media-quries-for-1280px-Laptops-----*/
/*----start-media-quries-for-1024px-Laptops-----*/
@media (max-width:1024px){
	.carousel-control .glyphicon-chevron-right {
		right: 20%;
	}
	.carousel-control .glyphicon-chevron-left {
		left: 20%;
	}
}
/*----//End-media-quries-for-1024px-Laptops-----*/

/*----start-media-quries-for-768px-Laptops-----*/
@media (max-width:768px){

	.carousel-control .glyphicon-chevron-right {
		right: 20%;
	}
	.carousel-control .glyphicon-chevron-left {
		left: 20%;
	}
	/*----*/
	.navbar{background: #303846}
	.navbar li:hover a,
	.navbar li.active a{
		border:none;
		color: #7dcc23;
	}
	.navbar-brand{width: 150px;}
	.sbt-btn{margin-bottom: 60px}
	.table img{ margin-right:0; margin-top: 0px;}
}

/*----//End-media-quries-for-768px-Laptops-----*/
/*----start-media-quries-for-640px-Laptops-----*/
@media (max-width:640px){
	.carousel-control .glyphicon-chevron-right {
		right: 20%;
	}
	.carousel-control .glyphicon-chevron-left {
		left: 20%;
	}
	/*----*/

	h1{font-size: 34px;}
	.logo {
		text-align: center;
		padding:1em 0;
	}

}

/*----//End-media-quries-for-640px-Laptops-----*/
/*----start-media-quries-for-480px-Laptops-----*/
@media (max-width:480px){
	.carousel-control .glyphicon-chevron-right {
		right: 20%;
	}
	.carousel-control .glyphicon-chevron-left {
		left: 20%;
	}
	/*----*/
	.logo {
		text-align: center;
		padding:1em 0;
	}
	h1{font-size: 24px;}
	.cta-btn.stroke{margin-left: 0}
	.light-box-info iframe {
		width: 100%;
		min-height: 300px;
	}
	.fixed{display:none !important;}
	
}

/*----//End-media-quries-for-480px-Laptops-----*/
/*----start-media-quries-for-320px-Laptops-----*/
@media (max-width:320px){
	.carousel-control .glyphicon-chevron-right {
		right: 20%;
	}
	.carousel-control .glyphicon-chevron-left {
		left: 20%;
	}
	/*----*/
	.logo {
		text-align: center;
		padding:1em 0;
	}
	.container{
		font-size:70%;
	}
	.login-info{
		text-align:center;
	}
}
/*----//End-media-quries-for-320px-Laptops-----*/
/*---- //End-Responmsive-Media-quries----*/
