/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  color: #174459;
  background-color: white;
}

svg {
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-nav-trigger2 {
  /* hamburger icon */
  position: fixed;
  z-index: 3;
  top: 0px;
  right: 5%;
  height: 30px;
  width: 15%;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.cd-nav-trigger2 h2{
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  width: 32px;
  height: 3px;
  background-color: white;
}

.cd-nav-trigger {
  /* hamburger icon */
  position: fixed;
  z-index: 3;
  top: 12px;
  right: 5%;
  height: 30px;
  width: 35px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
}

.cd-nav-trigger span {
  /* icon created in CSS */
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 32px;
  height: 3px;
  background-color: white;
}

.cd-nav-trigger span.in {
  /* icon created in CSS */
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  width: 32px;
  height: 3px;
  background-color: #174459;
}

.cd-nav-trigger span::before, .cd-nav-trigger span:after {
  /* upper and lower lines of the menu icon */
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.2s, width 0.2s;
  -moz-transition: -moz-transform 0.2s, width 0.2s;
  transition: transform 0.2s, width 0.2s;
}
.cd-nav-trigger span::before {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}
.cd-nav-trigger span::after {
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
}
.no-touch .cd-nav-trigger:hover {
  /* rotate trigger on hover */
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.no-touch .cd-nav-trigger:hover span::after,
.no-touch .cd-nav-trigger:hover span::before {
  /* animate arrow --> from hamburger to arrow */
  width: 50%;
}
.no-touch .cd-nav-trigger:hover span::before {
  -webkit-transform: translateX(1px) translateY(1px) rotate(45deg);
  -moz-transform: translateX(1px) translateY(1px) rotate(45deg);
  -ms-transform: translateX(1px) translateY(1px) rotate(45deg);
  -o-transform: translateX(1px) translateY(1px) rotate(45deg);
  transform: translateX(1px) translateY(1px) rotate(45deg);
}
.no-touch .cd-nav-trigger:hover span::after {
  -webkit-transform: translateX(1px) translateY(-1px) rotate(-45deg);
  -moz-transform: translateX(1px) translateY(-1px) rotate(-45deg);
  -ms-transform: translateX(1px) translateY(-1px) rotate(-45deg);
  -o-transform: translateX(1px) translateY(-1px) rotate(-45deg);
  transform: translateX(1px) translateY(-1px) rotate(-45deg);
}
@media only screen and (min-width: 1024px) {
  .cd-nav-trigger {
    top: 0px;
    right: 5px;
    z-index: 1000;
  }
}

/* -------------------------------- 

xnavigation 

-------------------------------- */
.cd-nav-container {
  position: fixed;
  z-index: 4;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  overflow-y: auto;
  background-color: #ffffff;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s 0s, box-shadow 0s 0.4s;
  -moz-transition: -moz-transform 0.4s 0s, box-shadow 0s 0.4s;
  transition: transform 0.4s 0s, box-shadow 0s 0.4s;
}
.cd-nav-container.is-visible {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-overflow-scrolling: touch;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.4s 0s, box-shadow 0s 0s;
  -moz-transition: -moz-transform 0.4s 0s, box-shadow 0s 0s;
  transition: transform 0.4s 0s, box-shadow 0s 0s;
  z-index: 2000;
}
.cd-nav-container header {
  padding: 10px 0 0 6.25%;
  height: 68px;
  position: relative;
}
.cd-nav-container h3 {
  font-size: 3rem;
  font-weight: bold;
  font-family: "Lora", serif;
  text-transform: uppercase;
  color: #174459;
}
@media only screen {
  .cd-nav-container {
    width: 100%;
  }
  .cd-nav-container header {
    height: 40px;
    background-color: white;
  }
}

.cd-close-nav {
  /* 'X' close icon */
  position: absolute;
  height: 44px;
  width: 44px;
  /* set the right position value so that it overlaps the .cd-nav-trigger*/
  right: 6.25%;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.cd-close-nav::after, .cd-close-nav::before {
  /* lines of 'X' icon */
  content: '';
  position: absolute;
  height: 3px;
  width: 32px;
  left: 50%;
  top: 50%;
  background-color: #174459;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-close-nav::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.cd-close-nav::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.no-touch .cd-close-nav:hover {
  opacity: .8;
}
@media only screen and (min-width: 700px) {
  .cd-close-nav {
    right: 7.14%;
  }
}

.cd-nav {
  background-color: #f2f2f2;
}

.cd-nav li:first-of-type {
  background-color: #9e87ce;
}

.cd-nav li:nth-of-type(2) {
  background-color: #23819C;
}
.cd-nav li:nth-of-type(3) {
  
  background-color: #e0cf75;
}
.cd-nav li:nth-of-type(4) {
 
  background-color: #f5b65a;
}
.cd-nav li:nth-of-type(5) {
  background-color: #f25f5c;
}
.cd-nav li:nth-of-type(6) {
  background-color: #8abeb2;
}

.cd-nav li:nth-of-type(7) {
  background-color: #f5b65a;
}

.cd-nav li:nth-of-type(8){
  background-color: #f25f5c;
}
.cd-nav li:nth-of-type(9) {
  background-color: #23819C;
}

.cd-nav li:nth-of-type(10){
  background-color: #e0cf75;
}
.cd-nav li:nth-of-type(11) {
   background-color: #f5b65a;
}
.cd-nav li:nth-of-type(12) {
  background-color: #D73E68;
}
.cd-nav li:nth-of-type(13) {
  background-color: #8abeb2;
}
.cd-nav li:nth-of-type(14) {
  background-color: #9e87ce;
}
.cd-nav li:nth-of-type(15) {
  background-color: #9e87ce;
}

.cd-nav li:nth-of-type(16){
  background-color: #5c4b51;
}

.cd-nav li:nth-of-type(17){
  background-color: #e0cf75;
}

.cd-nav li:nth-of-type(18){
  background-color: #f5b65a;
}

.cd-nav li:nth-of-type(19){
  background-color: #f25f5c;
}

.cd-nav li:nth-of-type(20) {
  background-color: #8abeb2;
}



.cd-nav::after {
  clear: both;
  content: "";
  display: table;
}
.cd-nav li {
  width: 50%;
  float: left;
  /* 68px is the navigation header height  and the menu items will be allocated in 3 rows */
  height: calc((100vh - 68px)/3);
  min-height: 120px;
  border: 1px solid #ffffff;
  border-top: none;
  border-left: none;
}
.cd-nav li:nth-of-type(2n) {
  border-right-width: 0;
}
.cd-nav a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.no-touch .cd-nav a:hover svg {
  -webkit-animation: cd-shock 0.3s;
  -moz-animation: cd-shock 0.3s;
  animation: cd-shock 0.3s;
}
.no-touch .cd-nav li a:hover span *,
.cd-nav li.cd-selected a span * {
  /* on hover or if selected - change text and icon color*/
  stroke: #ffffff;
}
.no-touch .cd-nav li a:hover em,
.cd-nav li.cd-selected a em {
  /* on hover or if selected - change text and icon color*/
  color: #174459;
}
.no-touch .cd-nav li a:hover{
  /* on hover or if selected - change background color*/
  background-color: #f2f2f2;
}

.no-touch .cd-nav li a:hover img{
  /* on hover or if selected - change background color*/
   filter: contrast(15%) brightness(10%);
}

.cd-nav span, .cd-nav em {
  position: absolute;
}
.cd-nav span {
  top: calc(50% - 48px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 48px;
  width: 48px;
}
.cd-nav span * {
  -webkit-transition: stroke 0.2s;
  -moz-transition: stroke 0.2s;
  transition: stroke 0.2s;
}
.cd-nav em {
  width: 100%;
  left: 0;
  top: calc(50% + 15px);
  color: white;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (min-width: 700px) {
  .cd-nav li {
    /* 116px is the navigation header height and the menu items will be allocated in 3 rows */
    height: calc((100vh - 116px)/3);
    min-height: 200px;
  }
  .cd-nav span {
    height: 64px;
    width: 64px;
    top: calc(50% - 56px);
  }
  .cd-nav em {
    font-size: 2.2rem;
    font-weight: 300;
    top: calc(50% + 21px);
  }
}
@media only screen and (min-width: 1024px) {
  .cd-nav li {
    width: 20%;
    float: left;
    /* 116px is the navigation header height  and the menu items will be allocated in 2 rows */
    height: calc((100vh - 116px)/3);
    min-height: 250px;
  }
  .cd-nav li:nth-of-type(2n) {
    border-right-width: 1px;
  }
  .cd-nav li:nth-of-type(3n) {
    border-right-width: 0;
  }
  .cd-nav em {
    font-size: 2.5rem;
  }
}

@-webkit-keyframes cd-shock {
  0% {
    -webkit-transform: rotate(0);
  }
  30% {
    -webkit-transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0);
  }
}
@-moz-keyframes cd-shock {
  0% {
    -moz-transform: rotate(0);
  }
  30% {
    -moz-transform: rotate(10deg);
  }
  60% {
    -moz-transform: rotate(-10deg);
  }
  100% {
    -moz-transform: rotate(0);
  }
}
@keyframes cd-shock {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  30% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
}
/* -------------------------------- 

xshadow layer 

-------------------------------- */
.cd-overlay {
  /* shadow layer visible when navigation is open */
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.35);
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
  -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
  transition: opacity 0.4s 0s, visibility 0s 0.4s;
}
.cd-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.4s 0s, visibility 0s 0s;
  transition: opacity 0.4s 0s, visibility 0s 0s;
}

/* -------------------------------- 

xcontent 

-------------------------------- */
main {
  position: relative;
  height: 100vh;
  overflow-x: hidden;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
  box-shadow: 0 0 30px #241d20;
}
main.scale-down {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}

.cd-section {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0s 0.4s;
  -moz-transition: -moz-transform 0s 0.4s;
  transition: transform 0s 0.4s;
}
.cd-section.cd-selected {
  position: relative;
  z-index: 2;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.4s 0s;
  -moz-transition: -moz-transform 0.4s 0s;
  transition: transform 0.4s 0s;
  -webkit-overflow-scrolling: touch;
}
.cd-section header {
  height: 100vh;
  background: white;
  position: relative;
}
.cd-section.projects header {
  background-color: #5c4b51;
}
.cd-section.about header {
  background-color: #e0cf75;
}
.cd-section.services header {
  background-color: #f5b65a;
}
.cd-section.careers header {
  background-color: #f25f5c;
}
.cd-section.contact header {
  background-color: #8abeb2;
}

@media only screen and (min-width: 700px) {
  .cd-section {
    /* not 100vh to fix a small bug --> border visible otherwise */
    header: 102vh;
  }
}
.cd-prin {
  position: relative;
  top: 48%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  text-align: left;
}

.cd-title {
  position: relative;
  top: 48%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  text-align: center;
}
.cd-title > * {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-title h2 {
  font-size: 2.8rem;
  margin-bottom: .8em;
}
.cd-title a {
  display: inline-block;
  padding: 1.2em 1.6em;
  border-radius: 50em;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
  color: #000;
  font-family: "Lora", serif;
}
.no-touch .cd-title a:hover {
  border-color: #ffffff;
}
.cd-title span {
  vertical-align: middle;
  display: inline-block;
}
@media only screen and (min-width: 700px) {
  .cd-title h2 {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: .6em;
  }
}

@media only screen and (min-width: 700px) {
  .cd-title h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: .6em;
  }
}

.cd-title2 {
  position: relative;
  top: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  text-align: center;
  width: 40%;
  height: 30px;
}

.cd-title2 ul {
  font-size: 2.8rem;
  margin-bottom: .8em;
  width: 100%;
  height: 100%;

}

.cd-title2 ul li{
  font-size: 2.8rem;
  margin-bottom: .8em;
  width: 10%;
  height: 10px;
  margin: 2px;
  float: left;

}


.cd-title2 > * {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-title2 h2 {
  font-size: 2.8rem;
  margin-bottom: .8em;
}
.cd-title2 a {
  display: inline-block;
  padding: 1em 1.4em;
  border-radius: 50em;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
  color: #000;
  font-family: "Lora", serif;
  height: 5%;
}
.cd-title2 .middle  {
  color: black;
  font-size: 12px;
  padding: 1px 4px;
  font-weight: lighter;
  margin-left: 90%;
  display: inline-block;
  position: relative;
  width: 30%;
  transition: .5s ease;
  opacity: 0;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%)
}


.cd-title2 ul:hover .middle {
  opacity: 100;
}

.cd-content {
  background-color: #ffffff;
  padding: 0;
}
.cd-content p {
  width: 90%;
  max-width: 800px;
  margin: 2em auto;
  line-height: 2;
  color: #78626a;
}

.no-js main, .no-js .cd-section {
  height: auto;
  overflow: visible;
}

.no-js .cd-section {
  position: static;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.no-js .cd-nav-container {
  width: 100%;
  position: static;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  height: auto;
  overflow: visible;
}

.no-js .cd-close-nav {
  display: none;
}

.no-js .cd-nav li {
  width: 50%;
  float: left;
}
@media only screen and (min-width: 700px) {
  .no-js .cd-nav li {
    width: 33.3%;
    float: left;
  }
  .no-js .cd-nav li:nth-of-type(2n) a {
    border-right-width: 1px;
  }
}
@media only screen and (min-width: 1024px) {
  .no-js .cd-nav li {
    width: 16.66%;
    float: left;
  }
  .no-js .cd-nav li:nth-of-type(3n) a {
    border-right-width: 1px solid #e0cf75;
  }
}

/*---------MENU IDIOMA -------------*/
.idioma{
    padding: 0 10px;
    position: fixed;
    text-decoration: none;
    height: 40px;
    margin: 0px;
    width: 40%;
    left: 0;
    font-size: 12px;
    text-align: center;
}

.idioma ul {
  position: absolute;
  left: -9999px;
  list-style: none;
  opacity: 0;
  transition: opacity 1s ease;
}

.idioma ul li {
  float: left;
  position: relative;
  text-decoration: none;
  list-style: none;
}

.idioma ul li a {
  color: #E5E7E7;
  display: block;
  line-height: 100%;
  padding: 3px 6px;
  margin: 0px;
  vertical-align: middle;
  text-decoration: none;
  line-height: 30px;
}

.idioma ul li a:hover {
  
  color: #222;
  font-size: 12px;
}

/* Dropdown styles */




.idioma ul li img {
  opacity: 1;
    display: block;
    width: 60%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
    margin-top: 5px;
}
/*---------------FORMULARIO-------------------*/
h4{
  font-weight: 600;
}
input,
input[type="radio"] + label,
textarea, select option,
select {
  height: 2.7em;
  width: 100%;
  padding: 0.6em;
  background-color: #E7E7E7;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
input[type="checkbox"] + label:before 
{
  width: 20px;
  height: 2.7em;
  padding: 0.6em;
  background-color: #E7E7E7;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
input:focus {
  outline: 0;
  border-color: #174459;
}
input:focus + .input-icon i {
  color: #7ed321;
}
input:focus + .input-icon:after {
  border-right-color: #7ed321;
}
input[type="radio"] {
  display: none;
}
input[type="radio"] + label,
select {
  display: inline-block;
  width: 100%;
  text-align: center;
  float: left;
  border-radius: 0;
  cursor: pointer;
}

input[type="radio"] + label:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
input[type="radio"] + label:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
input[type="radio"] + label i {
  padding-right: 0.4em;
}
input[type="radio"]:checked + label,
input:checked + label:before,
select:focus,
select:active {
  background-color: #2B7FA5;
  color: #fff;
  border-color: #174459;
}
input[type="checkbox"].form {
  display: block;
  width: 20px;
}
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label {
  position: relative;
  display: block;
  padding-left: 1.6em;
}
input[type="checkbox"] + label:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  padding: 0;
  content: "";
}
input[type="checkbox"] + label:after {
  height: 2.7em;
  position: absolute;
  top: 0.45em;
  left: 0.2em;
  font-size: 0.8em;
  color: #fff;
  opacity: 0;
  font-family: FontAwesome;
  content: "\f00c";
}
input:checked + label:after {
  opacity: 1;
}
select {
  min-height: 2.7em;
  line-height: 2;
  width: 100%;
  cursor: pointer;
}
select.multiple{
      height: 100%;
    max-height: 200px;
    text-align: left;
}
select:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
select:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
select:focus,
select:active {
  outline: 0;
}
select option {
  background-color: #E7E7E7;
  color: #000;
}
.input-group {
  zoom: 1;
}
.input-group:before,
.input-group:after {
  content: "";
  display: table;
}
.input-group:after {
  clear: both;
}
.input-group-icon {
  position: relative;
}
.input-group-icon input {
  padding-left: 4.4em;
}
.input-group-icon .input-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.4em;
  height: 3.4em;
  line-height: 3.4em;
  text-align: center;
  pointer-events: none;
}
.input-group-icon .input-icon:after {
  position: absolute;
  top: 0.6em;
  bottom: 0.6em;
  left: 3.4em;
  display: block;
  border-right: 1px solid #e5e5e5;
  content: "";
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.input-group-icon .input-icon i {
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.container {
  padding: 1em 3em 2em 3em;
  margin: 0em auto;
  background-color: #fff;
  box-shadow: 8px 8px 8px -4px rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  font-size: 12px;
}
.row {
  zoom: 1;
      margin-top: -1em;
}
.row:before,
.row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}
.col-half {
  padding-right: 10px;
  float: left;
  width: 50%;
}
.col-half:last-of-type {
  padding-right: 0;
}
.col-third {
  padding-right: 10px;
  float: left;
  width: 33.33333333%;
}
.col-third:last-of-type {
  padding-right: 0;
}
@media only screen and (max-width: 540px) {
  .col-half {
    width: 100%;
    padding-right: 0;
  }
}

input[type="date"] {
  background:#fff url(/g/calendar.png)  99% 50% no-repeat ;
  width: 100%;
  padding: 0.5em;
  line-height: 1.4;
  background-color: #E7E7E7;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

input[type="date"], x:-moz-any-link,{
  
  width: 100%;
  padding: 0.5em;
  line-height: 1.4;
  background-color: #E7E7E7;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

input[type="date"]::-webkit-inner-spin-button {
  display: none;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}
input[type="date"]::-webkit-clear-button {
 -webkit-appearance: none;
  display: none;
}

input[type=submit]:hover {
    background-color: #174459;
    color: white;
    cursor: pointer;
}


input[type=submit], input[type=button] {
    width: 30%;
    background-color: #174459;
    color: white;
    padding: 1em;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 35%;
}

.button {
    width: 100%;
    background-color: #848484;
    color: white;
    padding: 1em;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}



/*-----------MENU DE SIEMPRE*/

#mainNavOuter {
  width: 100%;
  

  }
#mainNav {
  width: 100%;
  min-width: 1000px;
  }
#mainNavInner {
  margin-top: 0px;
  width: 100%;
  height: 25px;
  background: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#ccc));
  background-image: linear-gradient(#fff, #ccc);
  border-radius: 6px;
  box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.4);
  padding: 0 10px;
  position: fixed;

  }
#mainNav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  background-position: top left;
  background-repeat: no-repeat;
  }
#mainNav ul li {
  
  display: block;
  float: left;
  padding: 0;
  margin: 0;
  vertical-align: center;
  }
body#mainone #mainNav li#mainFirst,
body#maintwo #mainNav li#mainSecond,
body#mainthree #mainNav li#mainThird,
body#mainfour #mainNav li#mainFourth,
body#mainfive #mainNav li#mainFifth,
body#mainend #mainNav li#mainLast {

  }
#mainNav ul li a#mainFirstLink {
  }
body#mainone #mainNav li a#mainFirstLink {
  }
#mainNav ul li#mainFirst {
  background-position: left;
  background-repeat: no-repeat;
  }
body#mainone #mainNav li#mainFirst {
  height: 25px;
  }
#mainNav ul li a#mainLastLink {
  }
body#mainend #mainNav li a#mainLastLink {
  }
#mainNav ul li#mainLast {
  }
body#mainend #mainNav li#mainLast {
  }
  #mainNav ul li {
  height: 25px;
  }
#mainNav ul li a {
  display: block;
  float: left;
  text-decoration: none;
  color: #444;
  padding: 4px 5px 3px 5px;
  height: 12px;
  vertical-align: middle;
  }


.info .tooltip {
    display: inline-block;
    visibility: hidden;
    width: 100px;
    border: 1px solid #F2AF1D;
    background-color: rgba(253,241,213,.8);
    color: #000;
    text-align: center;
    border-radius: 6px;
    padding: 3px 0;
    position: absolute;
    z-index: 2000;
    top: 10px;
    right: 110%;
    font-size: 10px;
    font-weight: normal;
    line-height: 15px;
}

.info .tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #F2AF1D;
}
.info:hover .tooltip {
    visibility: visible;
}

/*************************************** ALERTAS BOLITAS ROJAS***********************************/

#nav .badge {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  line-height: 11px;
  height: 12px;
  padding: 0 2px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.25);
  border: 1px solid;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08);
}

#nav .badge.red {
  background: #fa623f;
  border-color: #fa5a35;
  background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f);
  background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f);
  background-image: -o-linear-gradient(top, #fc9f8a, #fa623f);
  background-image: linear-gradient(to bottom, #fc9f8a, #fa623f);
}

/************************************************************** SECONDARY NAVIGATION */
.menuS{
  position: fixed;
  margin-left: 0px;
  margin-top: 0px;
  width: 100%;
  z-index: 100;
  background-color: #174459;
  font-size: 10px;
}

.menuS a.info:hover {
  background: white;
  color: #174459;

}

  ul#nav.menuS {
  height: 26px;
  width: 100%;
  background-color: #174459;
}

ul#nav.menuS ul {
  display: inline-block;
  vertical-align: baseline;
  *display: inline;
  *vertical-align: auto;
  background-color: #174459;
}

ul#nav ul li {
    display: inline-block;
    width: 100px;
    background: #A4A4A4;
    border: 0.5px solid white;
}

ul#nav li {
  display: inline-block;
  position: relative;
  float: left;
}


 
ul#nav li a {
  float: left;
  background-color: #174459;
  line-height: 30px;
  color: #fff;
  text-decoration: none; 
  padding: 0 5px;
  position: relative;
}


ul#nav li #secFirstLink img{
  height: 20px;
  width: auto;
}

ul#nav li a.active {
  background-color: #A4A4A4;
}

/*------------BOTON ATRAS ADELANTE-------------*/

#atras{
  margin-top: 40px;
  margin-left: 0px;
  width: 30%;
}

.previous {
    background-color: #f1f1f1;
    color: black;
}

.round {
    border-radius: 50%;
}



/* ------------APPLIES THE ACTIVE STATE */

ul#nav .current a, ul#nav li:hover > a  {
  color: #fff;
  text-decoration: none;
  background: #A4A4A4;
}
 
/* THE SUBMENU LIST HIDDEN BY DEFAULT */
ul#nav  ul {
  display: none;
}
 
/* WHEN THE FIRST LEVEL MENU ITEM IS HOVERED, THE CHILD MENU APPEARS */
ul#nav li:hover > ul {
  display: block;
  width: 100px;
  height: 30px;
  position: absolute;
  margin: 30px 0 0 0;
  margin-left: 0px;
}
 
ul#nav li:hover > ul li a {
  float: left;
  line-height: 30px;
  color: #fff;
  text-decoration: none;
  margin: 0;
  background: #A4A4A4; 
}
 
ul#nav li:hover > ul li a:hover {
  color: #120000;
  text-decoration: none;
  text-shadow: none;
}

ul#nav li ul li:hover > ul{
  display: block;
  width: 100px;
  height: 30px;
  position: absolute;
  margin: 0px 0 0 0;
  margin-left: 100px;
}
 
ul#nav li:hover > ul li a {
  float: left;
  line-height: 30px;
  color: #fff;
  text-decoration: none;
  margin: 0;
  background: #A4A4A4; 
}
 
ul#nav li:hover > ul li a:hover {
  color: #120000;
  text-decoration: none;
  text-shadow: none;
}

ul#nav.menuS .badge {
  display: block;
  position: absolute;
  top: -12px;
  right: 3px;
  line-height: 16px;
  height: 16px;
  padding: 0 5px;
  font-family: Arial, sans-serif;
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.25);
  border: 1px solid;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08);
}

ul#nav.menuS .badge {
  background: #67c1ef;
  border-color: #30aae9;
  background-image: -webkit-linear-gradient(top, #acddf6, #67c1ef);
  background-image: -moz-linear-gradient(top, #acddf6, #67c1ef);
  background-image: -o-linear-gradient(top, #acddf6, #67c1ef);
  background-image: linear-gradient(to bottom, #acddf6, #67c1ef);
}

ul#nav.menuS .badge.green {
  background: #77cc51;
  border-color: #59ad33;
  background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51);
  background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51);
  background-image: -o-linear-gradient(top, #a5dd8c, #77cc51);
  background-image: linear-gradient(to bottom, #a5dd8c, #77cc51);
}

ul#nav.menuS .badge.yellow {
  background: #faba3e;
  border-color: #f4a306;
  background-image: -webkit-linear-gradient(top, #fcd589, #faba3e);
  background-image: -moz-linear-gradient(top, #fcd589, #faba3e);
  background-image: -o-linear-gradient(top, #fcd589, #faba3e);
  background-image: linear-gradient(to bottom, #fcd589, #faba3e);
}

ul#nav.menuS .badge.red {
  background: #fa623f;
  border-color: #fa5a35;
  background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f);
  background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f);
  background-image: -o-linear-gradient(top, #fc9f8a, #fa623f);
  background-image: linear-gradient(to bottom, #fc9f8a, #fa623f);
}

/*---------------------FIN MENU---------------------*/

form {
    display: grid;
    
}

.titulo{
  text-align: center;
  padding: 15px;
  font-weight: 700;
}


/*SEARCH-------------------------------------*/


.container a.buttonForm {
    width: 20%;
    background: #2B7FA5;
    color: white;
    font-size: 17px;
    border: 1px solid grey;
    border-left: none;
    cursor: pointer;
    float: right;
    height: 1.7em;

}

.container a.buttonForm:hover {
    background: #0b7dda;
}



.container button {
    width: 20%;
    background: #2B7FA5;
    color: white;
    font-size: 17px;
    border: 1px solid grey;
    border-left: none;
    cursor: pointer;
    float: right;
    height: 1.7em;

}

.container button:hover {
    background: #0b7dda;
}

/*-----------------FILE-------------------*/

.inputfile {
  width: 100%;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
    width: 100%;
    font-size: 1em;
    font-weight: 400;
    color: white;
    background-color: #2B7FA5;
    display: inline-block;
    padding: 5px;
    text-align: center;
}

.inputfile:focus + label,
.inputfile + label:hover {
    background-color: #174459;
}

.inputfile + label {
  cursor: pointer; /* "hand" cursor */
}

.inputfile:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;

}

label{
  font-size: 1em;
  padding: 5px;
  width: 100%;
}

/*--------------------TABLA----------------------*/

.browseResultado 
{
  width: 90%;
  display: block;
  background: #fff;
  margin: 0 auto;
  padding: 10px 17px;
  font-size: 10px;
  -webkit-box-shadow: 8px 8px 8px -4px rgba(0,0,0,0.5);
  overflow: scroll;
}

.tablaBrowse {
  margin: 0 auto;
  font-size: 1em;
  margin-bottom: 15px;
}


.tablaBrowse thead {
  cursor: pointer;
  background: #c9dff0;
}
.tablaBrowse thead tr th { 
  font-weight: bold;
  padding: 5px 10px 5px 10px;
  padding-left: 5px;
}
.tablaBrowse thead tr th span { 
  padding-right: 10px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
}

.tablaBrowse thead tr th.headerSortUp, .tablaBrowse thead tr th.headerSortDown {
  background: #acc8dd;
}

.tablaBrowse thead tr th.headerSortUp span {
  background-image: url('/g/up-arrow.png');
}
.tablaBrowse thead tr th.headerSortDown span {
  background-image: url('/g/down-arrow.png');
}


.tablaBrowse tbody tr { 
  color: #555;
}
.tablaBrowse tbody tr td {
  border: 1px solid #ddd;
  padding: 5px;
}
.tablaBrowse tbody tr td.lalign {
  text-align: left;
}

/*--------------------TABLA CON SEMAFORO----------------------*/

.tablaSemaforo {
  margin: 0 auto;
  font-size: 1em;
  margin-bottom: 15px;
}

.tablaSemaforo thead {
  cursor: pointer;
  background: #c9dff0;
}
.tablaSemaforo thead tr th { 
  font-weight: bold;
  padding: 5px 10px 5px 10px;
  padding-left: 5px;
}
.tablaSemaforo thead tr th span { 
  padding-right: 20px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
}

.tablaSemaforo thead tr th.headerSortUp, .tablaSemaforo thead tr th.headerSortDown {
  background: #acc8dd;
}

.tablaSemaforo thead tr th.headerSortUp span {
  background-image: url('/g/up-arrow.png');
}
.tablaSemaforo thead tr th.headerSortDown span {
  background-image: url('/g/down-arrow.png');
}


.tablaSemaforo tbody tr { 
  color: #000;
}
.tablaSemaforo tbody tr td {
 border: 1px solid #fff;
  padding: 5px;
}
.tablaSemaforo tbody tr td.lalign {
  text-align: left;
}

/*---------------------ICON BAR--------------------------*/

.barIcon {
    width: 15%;
    background-color: transparent;
    overflow: auto;
}

.barIcon a {
    float: left;
    width: 20%;
    text-align: center;
    padding: 5px;
    transition: all 0.3s ease;
    color: black;
    font-size: 25px;
}

.barIcon a:hover {
    color:#174459;
}

.barIcon2 {
    width: 100%;
    background-color: #E6E6E6;
    overflow: auto;
}

.barIcon2 a {
    float: left;
    text-align: center;
    padding: 5px;
    transition: all 0.3s ease;
    color: #174459;
    font-size: 10px;
}

.barIcon2 a:hover {
    background-color:#174459;
    color: white;
}

footer .red {
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    left: 0px;
}

#datos, #redes, #botonHome{
  width: 29%;
  float: left;
  margin: 2% 2%;
  text-align: center;
  vertical-align: center;
  letter-spacing: 2px;
  color: rgba(160, 160, 160, .8);
}

#prest{
  width: 100%;
  height: 100%;
  color: white;
  font-weight: lighter;
  text-align: center;
}

#prest h1{
    color: #1e9dba;
    font-size: 24px;
    font-weight: bolder;
    letter-spacing: 2px;
    margin-top: 20px;
}

#prest p{
      color: black;
      font-size: 12px;
      letter-spacing: 1px;
    }

.botonesPres{
    margin-top: 0;
    width: 30%;
    height: auto;
    margin: 15px;
    display: inline-block;

}


.second {
  text-align: center;
  bottom: 0px;
  color: rgba(160, 160, 160, .8);
  background-color: rgba(255, 255, 255, .1);
}

footer.app{
     font-size: 12px;
    font-weight: lighter;
}

footer.app a{
     font-size: 12px;
    font-weight: bold;
    color: #174459;;
}

.link a{
  text-decoration: none;
  font-size: 12px;
    font-weight: bold;
    color: #174459;
}

.link button.btn{
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

/*------------------------ESTILO FORMULARIO PRUEBA INCREMENTAL-----------------------------*/

#regForm {
  background-color: #ffffff;
  margin: 100px auto;
  font-family: Raleway;
  padding: 40px;
  width: 70%;
  min-width: 300px;
}
/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #4CAF50;
}



