/**
*Body
**/
body {
	font: 400 15px Lato, sans-serif;
	line-height: 1.8;
	/*color: #818181;*/
}

h2 {
	font-size: 24px;
	text-transform: uppercase;
	color: #303030;
	font-weight: 600;
	margin-bottom: 30px;
}
h4 {
	font-size: 19px;
	line-height: 1.375em;
	color: #303030;
	font-weight: 400;
	margin-bottom: 30px;
} 

.container-fluid {
    padding: 60px 10px;
}

.container-fluid2 {
    padding: 60px 50px;
}

/**
*Navbar
**/
.navbar {
	margin-bottom: 0;
	background-color: #002171;
	z-index: 9999;
	border: 0;
	font-size: 12px !important;
	line-height: 1.42857143 !important;
	letter-spacing: 2px;
	border-radius: 0;
	font-family: Montserrat, sans-serif;
}

.navbar li a, .navbar .navbar-brand {
	color: #fff !important;
}

.navbar-nav li a:hover, .navbar-nav li.active a {
	color: #002171 !important;
	background-color: #fff !important;
}

.navbar-default .navbar-toggle {
	border-color: transparent;
	color: #fff !important;
}

.open .dropdown-toggle {
    background-color: #fff !important;
	color: #002171 !important;
 }

.dropdown-menu li a {
	background-color: #002171 !important;
}

/**
*Jumbotron
**/
.jumbotron {
    background-color: #002171;
    color: #fff;
    padding: 30px 25px;
    font-family: Montserrat, sans-serif;
 }


/**
*Footer
**/
footer {
/*background-color: #002171;*/
/*color: #f5f5f5;*/
padding: 20px;
}

footer a {
color: #002171; 
}

footer a:hover {
color: #5e92f3;
text-decoration: none;
}  

/**
*Carousel
**/
.carousel-inner img {
	width: 80%; /* Set width to 100% */
	margin: auto;
}
.carousel-caption h4 {
	color: #fff !important;
}
.carousel-control.right, .carousel-control.left {
background-image: none;
}
@media (max-width: 600px) {
	.carousel-caption {
		/*display: none; /* Hide the carousel text when the screen is less than 600 pixels wide */
	}
}

.carousel-indicators li {
    border-color: #002171;
}
.carousel-indicators li.active {
	background-color: #002171;
}


.bg-blue {
    background-color: #e3f2fd;
  }




 .slideanim {visibility:hidden;}
 
  .slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
  }
  @keyframes slide {
    0% {
      opacity: 0;
      transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
  }
  @-webkit-keyframes slide {
    0% {
      opacity: 0;
      -webkit-transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      -webkit-transform: translateY(0%);
    }
  }
  @media screen and (max-width: 768px) {
    .col-sm-4 {
      text-align: center;
      margin: 25px 0;
    }
    .btn-lg {
      width: 100%;
      margin-bottom: 35px;
    }
  }
  @media screen and (max-width: 480px) {
    .logo {
      font-size: 150px;
    }
  }


/**
*Formulario de autenticacion
**/
.form-signin { 
	max-width: 330px;
	padding: 15px;
	margin: 0 auto;
}

.form-signin .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
}

.form-signin .form-control:focus {
  z-index: 2;
}

.form-signin input[type="text"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.form-signin .avatar { 
	margin: 0 auto; 
	width: 95px; 
	height: 95px; 
	border-radius: 50%; 
	z-index: 9; 
	background: #002171; 
	padding: 15px; 
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1); 
}

.form-signin .avatar img { 
	width: 100%; 
}











/*
 * Global add-ons
 */

.sub-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/*
 * Top navigation
 * Hide default border to remove 1px line.
 */
.navbar-fixed-top {
  border: 0;
}

/*
 * Sidebar
 */

/* Hide for mobile, show later */
.sidebar {
  display: none;
}
@media (min-width: 768px) {
  .sidebar {
    position: fixed;
    top: 51px;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: block;
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
    background-color: #f5f5f5;
    border-right: 1px solid #eee;
  }
}

/* Sidebar navigation */
.nav-sidebar {
  margin-right: -21px; /* 20px padding + 1px border */
  margin-bottom: 20px;
  margin-left: -20px;
}
.nav-sidebar > li > a {
  padding-right: 20px;
  padding-left: 20px;
}
.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
  color: #fff;
  background-color: #428bca;
}


/*
 * Main content
 */

.main {
  padding: 0px;
}
@media (min-width: 768px) {
  .main {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.main .page-header {
  margin-top: 0;
}


