body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: navy;
    color: white;
    align:center;
}

header {
    position: fixed;
    top: 0;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1% 5% 1% 5%;
    background:navy;
z-index:1;
  
}

.logo {
    width:100px;
}
.logo img{
   width:100%;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
}

#hero {
    width:90%;
    margin-top: 70px;
    text-align: center;
    padding: 3% 5% 3% 5%;
    background: navy;
}

#hero h1 {
    font-size: 36px;
}

#hero h2 {
    font-size: 48px;
    color:#f5ab00;
}

#hero p {
    text-align: justify;
}

#hero img {
    width: 300px;
    display: block;
    margin: 20px auto;
}
#hero video{
    max-width: 100%;
    height: auto;
    border: 2px solid white;
}

#services {
    background: white;
    color: navy;
    text-align: center;
    padding: 40px 20px;
}

#services h3 {
    font-size: 36px;
}

#services .services-columns {
  width:100%;
  display:flex;
}

#services .service {
    display: inline-block;
    position:relative;
    width:20%;
    text-align: center;
}

#services .service i {
    width:100%;
}
#services .service i img{
   width: 30%;
}

#services .service p {
    font-size: 18px;
    color: #0080c7;
}
#viajes {
    background: white;
    width:90%;
    margin-top: 70px;
    text-align: center;
    padding: 3% 5% 3% 5%;
    color:navy;
}

#Viajes h3 {
    font-size: 2em;
    color:navy;
}

#viajes .columna {
    width:100%;
}
#footer {
    background: navy;
    color: white;
    width:100%;
    text-align:center;
}

.footer-content {
     width:90%;
     padding: 3% 5% 3% 5%;

}
.footer-logo {
    width:100%;
    display:inline-block;
    position:relative;
    align:center;
 }
.footer-logo img {
    width:300px;
}
.contact-info{
    width:100%;
    display:inline-block;
    position:relative;
    color:white;
}
.contact-info a{
   font-size: 1.5em;
   text-align:center;
   color:white;
}
.footer-bottom {
    background: black;
    text-align: center;
    padding: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: .1.3em;
}


/* Estilos para pantallas pequeñas */
        @media (max-width:750px) {
  #services .services-columns {
  width:100%;
    display:block;
 }
#services .service {
    width:100%;
    display:block;
}
