/*
CHNAGES : TULIO*/
@font-face { font-family: captions; src: url('../fonts/OpenSans-SemiBold.ttf'); } 
@font-face { font-family: navegacion; src: url('../fonts/OpenSans-Light.ttf'); } 

body{
	font-family: navegacion;
}

hr {
	border-left: none;
	border-right: none;
    border-top: 1px solid #E5E5E5;
    color: #F4F4F4;
    margin: 20px 0;
    padding: 0;
}


/*CHNAGES : TULIO*/
.navbar-default .navbar-nav > li > a {
   color: white; /*Change active text color here*/
    }
	
	.texto {
    font-family: navegacion;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main { 
    display: block;
}

/* =============== DEFAULT HTML - LIST STYLES =============== */
ul, ul li,
ol, ol li,
p, form, input {
	margin: 0;
	padding: 0;
}
p {
	margin-bottom: 10px;
}
ul, ul li {
	list-style: none;
}

/* =============== LAYOUT - GENERAL LAYOUT =============== */
.container {
	position: relative;
	width: 100%;
}


[layout="row"] {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
}
.fsr {
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}
.fg {
	-webkit-flex-grow: 1;
	flex-grow: 1;
}
.fw {
	flex-wrap: wrap;
}
.verticalStretch {
	-ms-flex-align: stretch;
	-webkit-align-items: stretch;
	-webkit-box-align: stretch;
	align-items: stretch;
}
.verticalCenter {
	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	align-items: center;
}
.ledsa-btn {
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	padding: 10px 20px;
	text-align: center;
	border: 2px solid #fff;
	font-size: 12px;
	line-height: 100%;
}
.ledsa-btn:hover {
	color: #fff;
}
.bg-white {
	background-color: #fff !important;
}
/* =============== HOVER EFFECT =============== */
.hotspot-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom:10px;
}

.hotspot-wrapper:hover .hotspot-text {
  bottom: 0;
}

.hotspot-wrapper img {
 
  -webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}

.hotspot-wrapper:hover img {
  -webkit-transform:scale(1.1);
transform:scale(1.1);
}

/* =============== LAYOUT - HEADER AREA =============== */
#ledsa-header {
	position: relative;
	font-family: 'Montserrat', sans-serif;
	background: url(../images/bg-header.jpg) no-repeat center center / cover;
}
#ledsa-header:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(243,129,129,0.9); /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */
	background: -webkit-linear-gradient(top, rgba(243,129,129,0.9), rgba(252, 227, 138, 0.9));
	background: -o-linear-gradient(top, rgba(243,129,129,0.9), rgba(252, 227, 138, 0.9));
	background: linear-gradient(to bottom, rgba(243,129,129,0.9), rgba(252, 227, 138, 0.9)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
#ledsa-headerInner {
	position: relative;
	z-index: 5;
}

 /* Remove the navbar's default margin-bottom and rounded borders */ 
    .navbar {
      margin-bottom: 0;
      border-radius: 0;
	  position:absolute;
      width:100%;
      z-index:10;
      max-width:100%;
    }
 
/* =============== LAYOUT - MENU AREA =============== 
 
 CHANGES: Tulio
 */
 
#ledsa-navbar {
	  background: black; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(black, transparent); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(black, transparent); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(black, transparent); /* For Firefox 3.6 to 15 */
    background: linear-gradient(black, transparent); /* Standard syntax */
	border: none;
	border-radius: 0;
    position: absolute;
    top: 0;
    min-height: 5em;
    font-family: navegacion;
    font-weight: normal;

}

/* MENU TEXT*/
#ledsa-navbar .navbar-nav > li > a {
	color: white;
	font-weight: 600;

	text-transform: uppercase;
	border-bottom: 3px solid transparent;
	padding: 15px 5px 5px;
	margin: 0 12px;
}

#ledsa-navbar .navbar-nav > li > a:hover,
#ledsa-navbar .navbar-nav > .active > a,

/*Hover with underscore effect*/
#ledsa-navbar .navbar-nav > .active > a:hover {
	color: white;
	border-color: #e4e4e4;
	background: none;
}

#ledsa-navbar .navbar-toggle {
	margin-right: 0;
	border: none;
}

#myNavbar .menu_item {
	float: right;
}

#ledsa-navbar .navbar-toggle:hover,
#ledsa-navbar .navbar-toggle:focus {
	background: none;
}
 
 
  /*FOR MOBILE*/  
  
  /*mobile button style color*/
#ledsa-navbar .navbar-toggle .icon-bar {
	background: white;
}

  @media (max-width: 767px) {
  
	#ledsa-navbar .navbar-header {
		padding-right: 20px;
	}
	#ledsa-navbar .navbar-nav > li > a {
		padding: 10px 5px 5px;
		color: white;
	}
	#ledsa-navbar .navbar-nav > li > a:hover, 
	#ledsa-navbar .navbar-nav > .active > a,
	#ledsa-navbar .navbar-nav > .active > a:hover {
		border-color: transparent;
		color: #848484;
	}
	#ledsa-navbar .ledsa-menuItem,
  #ledsa-navbar .navbar-collapse {
		width: 100%;
	}
	
	#ledsa-navbar .navbar-collapse {
		background: rgba(56,56,56,0.90);
		border-color: #848484;
		position: absolute;
		z-index: 1;
		left: 0px;
	}
	/* =============== HOVER EFFECT =============== */
	.ledsa-hoverEffect .item {
		margin-bottom: 15px;
	}
	}
	

/*HEADER IMAGE*/

.jumbotron{
    height: 100vh;
}

.bs-example {

	text-align: center;
	padding-top: 20px;

	
}


/* =============== SECTION CLIENTS =============== */
#our_clients{
	padding: 50px 0;
	background: none;
	text-align: center;
}
#our_clients a {
	display: block;
}


/*******PEOPLE SECTION*********/
/* ------------------------------------------------------------------------------
	 Teams
-------------------------------------------------------------------------------*/
.person {
	max-width: 270px;
	text-align: center;
	padding-top: 20px;
	margin: 0 auto 50px;
}

.col-centered{
    float: none;
    margin: 0 auto;
}

.person img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: auto;
}
.person-content {
	margin-top: 20px;
}
.person h4 {
	font-weight: 400;
}
.person h5 {
	color: #00aeda;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 20px;
}

.container .colored_background{
	
	background-color: rgba(241, 241, 241, 0.80);
	width: 100%;
	padding-top: 30px;
	
}

.ledsa-sectionHeading {
	font-weight: 700;
	font-size: 25px;
	line-height: 1;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 30px;
	text-align: center;
	color: #060048;
	 margin: 0 auto 50px;
}
.ledsa-sectionHeading:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 250px;
		font-family: captions;
	height: 5px;
	background: #e4e4e4;
	transform: translateX(-50%);
}

.ledsa-sectionHeading .ledsa-subHeading {
	display: block;
	text-transform: none;
	font-family: captions;
	font-weight: 400;
	color: #060048
	font-size: 30px;
	margin-bottom: 10px;
}

.col-centered{
    float: none;
    margin: 0 auto;
}

#jumStyle {
	position: relative;
   padding: 0;
   width:100%;
height: 100%;
background-size: 100% 100%;
}

#imageFull{
	padding-left:0;
	padding-right:0;
}


	/*portafolio*/
#ledsa_portfolio .content {
	padding-top:40px;
	font-weight: 700;
	font-size: 14px;
}
#ledsa_portfolio .content .ledsa-icon {
	display: block;
	font-size: 30px;
}

/*MAP*/
.containerMap {
	max-width: 600px;
	text-align: center;
	padding-top: 20px;
	
	 margin: 0 auto 50px;
}

.controls {
	padding-top:20px;
}

/* ------------------------------------------------------------------------------
	 Footer
-------------------------------------------------------------------------------*/
.footer {
	text-align: left;
	padding-top: 50px;
}
.footer-top {
	background-color: #181818;
	padding-top: 50px;
}
.footer-bottom {
	background-color: #313454;
	padding: 20px 0;
}
.footer .footer-col {
	margin-bottom: 80px;
}
.footer h5 {
	color: #fff;
}
.footer h5 {
	margin-bottom: 20px;
}
.footer p {
	color: rgba(255, 255, 255, 0.25);
}
.footer a {
	color: rgba(255, 255, 255, 0.50);
}
.footer a:hover {
	color: #6dcff6;
}
.footer .footer-share {
	margin-top: 0;
}
.footer .footer-share li {
	display: inline-block;
	float: none;
}
.footer .footer-share a {
	border: none;
	font-size: 21px;
	color: rgba(255, 255, 255, 0.25);
}
.footer .fa-heart {
	color: #e84545;
	font-size: 11px;
	margin: 0 2px;
}


/**********************************************************
**********************************************************
                  ANIMATION
**********************************************************/


h2 small { 
  font-weight:normal; 
  color:#888; 
  display:block; 
}

/* form starting stylings ------------------------------- */
.group 			  { 
  position:relative; 
  margin-bottom:45px; 
}
input 				{
  font-size:18px;
  padding:10px 10px 10px 5px;
  display:block;
  width:300px;
  border:none;
  border-bottom:1px solid #757575;
}


input:focus 		{ outline:none; }

/* LABEL ======================================= */
label 				 {
  color:#999; 
  font-size:18px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:10px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
textarea.form-control{
	 font-size:18px;
  
  display:block;
  resize: none;
  border-color:1px solid #757575;
}

/* active state */
input:focus ~ label, input:valid ~ label 		{
  top:-20px;
  font-size:14px;
  color:#5264AE;
}

/* BOTTOM BARS ================================= */
.bar 	{ position:relative; display:block; width:300px; }
.bar:before, .bar:after 	{
  content:'';
  height:2px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:#5264AE; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%; 
}

/* active state */
input:focus ~ .bar:before, input:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}


.screen {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
	
/******Buttton*/

.btn-success{
	
	background-color: #6dcff6;
	border: none;
}

.btn-success:hover{
	background-color: #9ce1fd;
	border: none;
}
.btn-success:focus{
	background-color: #6dcff6;
	border: none;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus{
	background-color: #6dcff6;
	border: none;
}