
/***
Importar tipos de fuente
***/
@font-face{
  font-family: Roboto-Bold;
  src: url("../../fonts/roboto/Roboto-Bold.woff");
}

/* f. Footer section */
.footer{

   margin-top: 200px;
    padding: 0px 0;
    width: 100%;
    background: #313131;
    color: #fff;
}
.footer-title{
  position: relative;
    color: #fff;
  font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 20px;
    border-bottom: 1px solid #4e4e4e;
}
.footer-title:after{
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 30px;
  height: 4px;
  background: #ff304d;
}
.footer-links a{
  padding: 10px 0;
  border-bottom: 1px solid #404040;
  color: #fff;
  display: block;
  transition: color 0.5s ease-in-out;
}
.footer-links a:hover{
  color: #ff304d;
}
.footer-social-links li{
  display: inline-block;
}
.footer-social-links a{
  width: 40px;
  height: 40px;
  font-size: 16px;
  float: left;
  margin-right: 10px;
  padding: 10px;
  border: 1px solid #404040;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  line-height: 1;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.footer-social-links a:hover{
  background: #ff304d;
}
/* g. Footer bottom section */
.footer-bottom{
  width: 100%;
  padding: 25px 0;
  text-align: center;
  color: #fff;
  background: #222222;
}

/**fin footer**/




/* Mueve el contenido a 46 pixeles, despues de la barra de navegacion*/
body {
  padding-top: 60px;
}



/*
 * Top navigation
 * Hide default border to remove 1px line.
 */
.navbar-fixed-top {
  border: 0;
}

/**
 * Slider caption
 */


.carousel-inner {

  .item {
    max-height: 680px;
    &:after {
      content: "";
      background-color: rgba(0, 0, 0, .5);
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }
  }

}

.carousel-control {
  width: 10%;
}

.carousel-control .fa {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;

  &.fa-chevron-right {
    right: 50%;
    margin-right: -10px;
  }

}

@media screen and (min-width: 768px) {
  .carousel-control .fa {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
}

@media screen and (min-width: 768px) {
  .carousel-control .fa-chevron-left {
    margin-left: -15px;
  }
}

/**
 * Slider caption
 */

.carousel-caption {
  
  h2 {
    color: #fff;
    font-size: 70px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  p {
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 50px;
  }
  
  @media screen and (min-width: 768px) {
    right: 20%;
    left: 20%;
    bottom: 20%;
  }

}

/**
 * Button
 */
.btn-transparent {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  &:hover {
    background-color: #fff;
  }
 }

.btn-rounded {
  border-radius: 70px;
}

.btn-large {
  padding: 11px 45px;
  font-size: 18px;
}

/**
 * Change animation duration
 */
.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}
/****FIN DEL CAROUSEL***/



/***
* ACORDION
***/


.half {
  float: left;
  width: 50%;
  padding: 0 1em;
}
/* Acordeon styles */
.tab {
  position: relative;
  margin-bottom: 1px;
  width: 100%;
  color: #fff;
  overflow: hidden;
}
.input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.label1 {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  background: #16a085;
  font-weight: bold;
  line-height: 3;
  cursor: pointer;
}
.blue .label1 {
  background:  #f2672c;
}
.tab-content {
  max-height: 0;
  overflow: hidden;
  background: #1abc9c;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
}
.blue .tab-content {
  background: #4b4b4d;
}
.tab-content p {
  margin: 1em;
}
/* :checked */
.input:checked ~ .tab-content {
  max-height: 10em;
}
/* Icon */
.label1::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
.input[type=checkbox] + .label1::after {
  content: "\25BC";
}
.input[type=radio] + .label1::after {
  content: "\25BC";
}
.input[type=checkbox]:checked + .label1::after {
  transform: rotate(180deg);
}
.input[type=radio]:checked + .label1::after {
  transform: rotateX(180deg);
}
/** FIN ACRDION****/

/**
* Arbol - Organigrama
****/

* {margin: 0; padding: 0;}

.tree .ul_1 {
    padding-top: 20px; position: relative;
  
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

.tree .li_1 {
  float: left; text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 5px 0 5px;
  
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

/*We will use ::before and ::after to draw the connectors*/

.tree .li_1::before, .tree .li_1::after{
  content: '';
  position: absolute; top: 0; right: 50%;
  border-top: 5px solid #0e0e0d;
  width: 50%; height: 20px;
}
.tree .li_1::after{
  right: auto; left: 50%;
  border-left: 5px solid #0e0e0d;
}

/*We need to remove left-right connectors from elements without 
any siblings*/
.tree .li_1:only-child::after, .tree .li_1:only-child::before {
  display: none;
}

/*Remove space from the top of single children*/
.tree .li_1:only-child{ padding-top: 0;}

/*Remove left connector from first child and 
right connector from last child*/
.tree .li_1:first-child::before, .tree .li_1:last-child::after{
  border: 0 none;
}
/*Adding back the vertical connector to the last nodes*/
.tree .li_1:last-child::before{
  border-right: 5px solid #0e0e0d;
  border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
}
.tree .li_1:first-child::after{
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
}

/*Time to add downward connectors from parents*/
.tree .ul_1 .ul_1::before{
  content: '';
  position: absolute; top: 0; left: 50%;
  border-left: 5px solid #0e0e0d;
  width: 0; height: 20px;
}


.tree .li_1 .a_1{
  border: 1px solid #ccc;
  padding: 5px 10px;
  text-decoration: none;
  color: white;
  font-family: arial, verdana, tahoma;
  font-size: 14px;
  font-weight: bold;

  display: inline-block;
  
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;

/**color de cada seccion*/
background: #0521bc; /* Old browsers */
background: -moz-linear-gradient(top, #0521bc 0%, #2183ce 55%, #0e5fc9 90%, #2d6ab5 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #0521bc 0%,#2183ce 55%,#0e5fc9 90%,#2d6ab5 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #0521bc 0%,#2183ce 55%,#0e5fc9 90%,#2d6ab5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0521bc', endColorstr='#2d6ab5',GradientType=0 ); /* IE6-9 */
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree .li_1 .a_1:hover, .tree .li_1 .a_1:hover+.ul_1 .li_1 .a_1 {
 
  color: #000; 
  border: 1px solid #94a0b4;

  /***Colores al pasar el puntero***/
  background: #fc3026; /* Old browsers */
background: -moz-linear-gradient(top, #fc3026 0%, #d90f01 50%, #a40b00 51%, #fd1a09 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #fc3026 0%,#d90f01 50%,#a40b00 51%,#fd1a09 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #fc3026 0%,#d90f01 50%,#a40b00 51%,#fd1a09 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fc3026', endColorstr='#fd1a09',GradientType=0 ); /* IE6-9 */
}
/*Connector styles on hover*/
.tree .li_1 .a_1:hover+.ul_1 .li_1::after, 
.tree .li_1 .a_1:hover+.ul_1 .li_1::before, 
.tree .li_1 .a_1:hover+.ul_1::before, 
.tree .li_1 .a_1:hover+.ul_1 .ul_1::before{
  border-color:  #94a0b4;
}



/***
 Nav Bar - barra de menus
****/
#cssmenu ul,
#cssmenu li,
#cssmenu span,
#cssmenu a {
  margin: 0;
  padding: 0;
  position: relative;

}
#cssmenu {
  line-height: 1;
  border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  background: #141414;
  background: -moz-linear-gradient(top, #333333 0%, #141414 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #141414));
  background: -webkit-linear-gradient(top, #333333 0%, #141414 100%);
  background: -o-linear-gradient(top, #333333 0%, #141414 100%);
  background: -ms-linear-gradient(top, #333333 0%, #141414 100%);
  background: linear-gradient(to bottom, #333333 0%, #141414 100%);
  border-bottom: 3px solid #e00f28;
  width: auto;
  height: 70px; /**tamaño del la barra de menu**/

  margin-right: -21px; /* 20px padding + 1px border */
  margin-bottom: 20px;
  margin-left: -20px;
}
#cssmenu:after,
#cssmenu ul:after {
  content: '';
  display: block;
  clear: both;
}
#cssmenu a {
  background: #141414;
  background: -moz-linear-gradient(top, #333333 0%, #141414 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #141414));
  background: -webkit-linear-gradient(top, #333333 0%, #141414 100%);
  background: -o-linear-gradient(top, #333333 0%, #141414 100%);
  background: -ms-linear-gradient(top, #333333 0%, #141414 100%);
  background: linear-gradient(to bottom, #333333 0%, #141414 100%);
  color: #ffffff;
  display: block;
  font-family: Helvetica, Arial, Verdana, sans-serif;
  
  font-weight: bold;
  padding: 25px 15px;
  text-decoration: none;
  border-right: 1px solid #545151;/** borde derecho de cada menu***/
}
#cssmenu ul {
  list-style: none;
}
#cssmenu > ul > li {
  display: inline-block;
  float: left;
  margin: 0;
}
#cssmenu.align-center {
  text-align: center;
}
#cssmenu.align-center > ul > li {
  float: none;
}
#cssmenu.align-center ul ul {
  text-align: left;
}
#cssmenu.align-right > ul {
  float: right;
}
#cssmenu.align-right ul ul {
  text-align: right;
}
#cssmenu > ul > li > a {
  color: #ffffff;
  font-size: 15px; /**Tamaño de fuente de los menus***/

  height: 67px;
}
#cssmenu > ul > li:hover:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #e00f28;
  margin-left: -10px;

}
#cssmenu > ul > li:first-child > a {
  border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;

}
#cssmenu.align-right > ul > li:first-child > a,
#cssmenu.align-center > ul > li:first-child > a {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
#cssmenu.align-right > ul > li:last-child > a {
  border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
}
#cssmenu > ul > li.active > a,
#cssmenu > ul > li:hover > a {
  color: #ffffff;
  box-shadow: inset 0 0 3px #000000;
  -moz-box-shadow: inset 0 0 3px #000000;
  -webkit-box-shadow: inset 0 0 3px #000000;
  background: #070707;
  background: -moz-linear-gradient(top, #262626 0%, #070707 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #262626), color-stop(100%, #070707));
  background: -webkit-linear-gradient(top, #262626 0%, #070707 100%);
  background: -o-linear-gradient(top, #262626 0%, #070707 100%);
  background: -ms-linear-gradient(top, #262626 0%, #070707 100%);
  background: linear-gradient(to bottom, #262626 0%, #070707 100%);
}
#cssmenu .has-sub {
  z-index: 1;
}
#cssmenu .has-sub:hover > ul {
  display: block;
}
#cssmenu .has-sub ul {
  display: none;
  position: absolute;
  width: 200px;
  top: 100%;
  left: 0;
}
#cssmenu.align-right .has-sub ul {
  left: auto;
  right: 0;
}
#cssmenu .has-sub ul li {
  *margin-bottom: -1px;
}
#cssmenu .has-sub ul li a {
  background: #e00f28;
  border-bottom: 1px dotted #31b7f1;
  font-size: 11px;
  filter: none;
  display: block;
  line-height: 120%;
  padding: 10px;
  color: #ffffff;
}
#cssmenu .has-sub ul li:hover a {
  background: #0c7fb0;
}
#cssmenu ul ul li:hover > a {
  color: #ffffff;
}
#cssmenu .has-sub .has-sub:hover > ul {
  display: block;
}
#cssmenu .has-sub .has-sub ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;

}
#cssmenu.align-right .has-sub .has-sub ul,
#cssmenu.align-right ul ul ul {
  left: auto;
  right: 100%;
}
#cssmenu .has-sub .has-sub ul li a {
  background: #0c7fb0;
  border-bottom: 1px dotted #31b7f1;

}
#cssmenu .has-sub .has-sub ul li a:hover {
  background: #0a6d98;

}
#cssmenu ul ul li.last > a,
#cssmenu ul ul li:last-child > a,
#cssmenu ul ul ul li.last > a,
#cssmenu ul ul ul li:last-child > a,
#cssmenu .has-sub ul li:last-child > a,
#cssmenu .has-sub ul li.last > a {
  border-bottom: 0;
}

.cssmenu-fixed-top {
  border: 0;

}


/** DIVs personalizadas***/

.div-resalte{
  background: #074685;

 
    



/***RAdio de las esquinas**/
border-radius: 6px 9px 9px 9px;
-moz-border-radius: 6px 9px 9px 9px;
-webkit-border-radius: 6px 9px 9px 9px;
border: 0px solid #000000;

/***Sombra**/
-webkit-box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.32);
-moz-box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.32);
box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.32);

/**Tamaño**/
height: 80px;  
padding: 10px;
}


.roboto {
font-family: Roboto-Bold, Helvetica;

}







