body{
    font-family: 'Roboto Slab', serif;
    color: #929292;
    font-size: 0.8em;
    overflow-x: hidden;
}
#header .container{
    margin-top:1.1em;
}
#header .logo{
    max-width: 300px;
}
#header .menu-navbar{
    background: #f7f8f8;
}
#header .nav-link{
    font-family: "Prompt", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    color: #000;
    transition: color .5s ease;
}
#header .nav-item{
    padding-left: 1.5em;
    padding-right: 1.5em;
}
#header .nav-item.active, #header .nav-item:hover{
    border-bottom: 4px solid #77c4c0;
}
#header .nav-item.active .nav-link, #header .nav-link:hover {
    color: #72c4c0;
}
#header .navbar, .navbar-nav{
    height: 100%;
    padding:0;
}
#navbarNav{
    height: auto;
}
#header li{
    height: 100%;
    align-items: center;
    display: flex;
}
.banner{
    position: relative;
    padding-right: 3%;

}
.banner h1{
    opacity: 1;
    position:relative;
    animation-name: servicioBus;
    animation-duration: 10s;
    animation-iteration-count: 1;
}
.banner h1{
    font-family: "Prompt", sans-serif;
    font-weight: bold;
    color: rgb(2, 99, 89);
}
h1 {
   -webkit-text-stroke-width: 2px;
   -webkit-text-stroke-color: white;
}
.btn-nuestros-servicios{
    background: #72c4c0;
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 0px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background .5s ease;
}
.btn-nuestros-servicios:hover{
    background: #ace6e3;
}


#imagenes, #seccion2{
    margin-top: 5em;
    margin-bottom: 5em;
   
}
.h2-b{
    color: rgb(2, 99, 89);
    font-family: "Prompt", sans-serif;
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    letter-spacing: 0px;
}
#footer a,#header .redes a{
    color: #929292;
}
.seccion1 img{
    width: 100%;
}
.seccion1 h5{
    color: rgb(2, 99, 89);
}
.seccion1 .saber-mas a, .contacto a{
    color:  #72c4c0;
}
.r1{
    padding-bottom: 50px;
}
.btn-redes{
    width: 60px;
    height: 60px;
    font-size: 1.5em;
    background: rgba(206, 205, 205, 0.5);
    color: #707070;
    border-style: none;
    cursor: pointer;
    transition: color .5s ease;
}
.btn-redes:hover{
    width: 60px;
    height: 60px;
    font-size: 1.5em;
    background: rgba(143, 142, 142, 0.5);
    color: #72c4c0;
    border-style: none;
}
#footer{
    background: #1a1b27 ;
    margin-top: 100px;
}
#footer .links{
    padding-top: 50px;
    padding-bottom: 50px;
}
#footer .derechos{
    padding-top: 30px;
    padding-bottom: 20px;
}
#footer hr{
    background: #707070;
}
#footer p{
    line-height: 32px;
}

.text-azul{
    color: #72c4c0;
}
#portada{
    max-height: 560px;
}
#portada .background{
    position: relative;
    width: 100%;
}
#portada .background .imagen{
    position: absolute;
    height: 100%;
    width: 100%;
    background: #72c4c0;
    background: url(../img/contenido/fondoa1.jpg) repeat-x left center;
    background-size: cover;
}
#portada .bus{
    position: relative;
    width: 50%;
    height: 100%;
    animation: bus 2s 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) ;
}
#portada .bus .bus-img{
    position: relative;
    margin-top: 23%;
    width: 200%;
    transform: translateX(-50%);
}
#portada .bus .rueda{
    position: absolute;
    left: 40%;
    top: 80% !important;
    width: 18%;
}
#portada .bus .rueda img{
    width: 100%;
    animation: rueda 1s infinite linear;
}

@media screen and (max-width: 768px){
    #header .nav-item.active, #header .nav-item:hover{
        border-bottom: 0px;
    }
    #portada .background .imagen{
        background: url(../img/contenido/fondo2.jpg) repeat-x left center;
        background-size: cover;
    } 
}
@media (min-width:1500px){
   #imagenes{
       margin-top: 25em;
   }
   #seccion2{
       margin-top:5em;
   }
   
}
@media screen and (max-width: 476px){
    h1{
        font-size: 6vw;
    }
    #header .logo {
        max-width: 200px;
    }
}

@keyframes servicioBus{
    0% {right: -20em;opacity: 0;}
    40% {right: 2em;}
    90% {right: -0em;opacity:1;}
    100% {right: 0em;opacity:1;}
}

@keyframes bus{
    0% {left: -120em;}
    100% {left: -0em;}
} 
@keyframes rueda{
    0% {transform:rotate(0deg); top: -16.9%;}
    100% {transform:rotate(360deg); top: -17%;}
}

