header {
  position: relative;
  width: 100%;
  color: white;
  background: rgba(28, 36, 65, 0.93);
  background: url('../img/header-bg_2.jpg');
  background-size: cover;
}

header .table {
  display: table;
  height: 100%;
}

header .container {
  height: 100%;
}

header .header-text {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  color: white;
}

header .typed {
  display: inline-block;
  margin: 0;
  font-size: 60px;
}

header .typed-cursor {
  font-size: 60px;
  display: inline-block;
  margin: 0 10px;
  color: #00a8ff;
  -webkit-animation-name: flash;
  animation-name: flash;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes flash {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}



.muted {
    color: #989da0;
}
.light {
    font-weight: 300;
    font-family: 'Roboto', 'Avenir Next', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;    
}


.service {
  width: 100%;
  height: 380px;
  margin: 80px 0;
  text-align: center;
  border: 1px solid #ddd;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service .icon-holder {
  position: relative;
  top: 100px;
  display: inline-block;
  margin-bottom: 40px;
  padding: 10px;
  background: white;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service .heading {
  position: relative;
  top: 80px;
  -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service .icon-holder > img.icon {
  width: 40px;
} 

.service:hover {
  border-color: #00a8ff;
}

.service:hover .icon-holder {
  top: -60px;
}

.service:hover .heading {
  top: -60px;
}

.service .description {
  width: 80%;
  margin: auto;
  margin-top: -40px;
  opacity: 0;
  top:50px;
  -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.service:hover .description {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.ir-arriba {
  display:none;
  padding:15px;
/*  background:#024959;*/
  background: rgba(254, 209, 54, 0.7);
  font-size:20px;
  color:#fff;
  cursor:pointer;
  position: fixed;
  bottom:0px;
  right:20px;
  z-index: 140;
}

.iframemap {
width: 90%; 
height: 450px;
}

.bgcolor-blue {
  background:  #3F51B5;
}
.bgcolor-red {
  background:  #FF5252;
}
.bgcolor-green {
  background:  #4CAF50;
}
.bgcolor-amber {
  background:  #FFC107;
}

@media(max-width: 400px) {
  header .typed-cursor {
    display: none;
  }
  header .typed {
    font-size: 36px;
  }

  .light {
    font-size: 20px;
  }
}