/*nav*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    
}

html{
    height: 100%;
}

body{
    background-color: aliceblue;
    margin: 0;

}

.header{
    background-color: #063852;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    padding: 5px 10%;
}

.header .logo{
    cursor: pointer;
}

.header .logo img{
    height: 70px;
    width: auto;
    transition: all 0.3s;

}

.header .logo img:hover{
    transform: scale(1.2);
}

.header .nav-links{
    list-style: none;

}

.header .nav-links li{
    display: inline-block;
    padding: 0% 20px;
}

.header .nav-links li:hover,
.overlay a:hover{
    transform: scale(1.1);
}

.header .nav-links a{
    font-size: 700;
    color: aliceblue;

}

.header .nav-links li a:hover{

    color:#ff8000;
}

/**/.menu {
    display:none;
}

.header .btn button,
/**/.header .menu button{
    margin-left: 20px;
    font-weight: 700;
    color: #1b3039;
    padding: 9px 25px;
    background: #eceff1;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.header .btn button:hover,
/**/.header .menu button:hover{
    background-color: #e2f1f8;
    color: #ffbc0e;
    transform: scale(1.1);
}

/**/@media screen and (max-width: 800px){
    .nav-links, .btn {
        display: none;
    }
    .menu {
        display: inherit;
    }
}

.header a{
    text-decoration: none;  
    
}

.header .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: rgba(33, 49, 63, .95);
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

.header .overlay .overlay-content{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
}

.header .overlay a{
    padding: 15px;
    font-size: 36px;
    display: block;
    transition: all 0.3s ease 0s;
    font-weight: 700;
    color: #eceff1;
}

.header .overlay a:hover, 
.header .overlay a:focus{
    color: #ffbc0e;
}

.header .overlay .close{
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 65px;
}

@media screen and (max-height:450px) {
    .header .overlay a{
        font-size: 20px;
    }
    .header .overlay .close{
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}


/*hero*/

.container{
    max-width: 1400px;
    margin: auto;

}

.banner{
    position: relative;
    width: 100%;
    height:calc(100vh - 85px);
    background-color: red;
    background-size: cover;
    background-position: center;
    background-image: url(img/ImagenEmpresa.png);
    
    
}


.contenido{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: white;
    background-color: rgba(0, 22, 40, .6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;

}



.contenido h1{
    margin: 0;
    padding-top: 60px;
    font-size: 20px;
    text-align: center;

}

@media screen and (max-width:800px) {
    .contenido h1{
    padding: 10px;
    align-items: center;
    }

}







/*nuestra mision*/

.cuerpo{
    padding: 40px;
    text-align: center;
    background-color:  #1b3039;
}

.cuerpo h2{
   color : #e2f1f8;
}

.cuerpo .Contenedor p{
    color: #e2f1f8;
}


    

/* Propuesta de valor*/

@media (min-width: 768px) {
    .informacion-valor{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        column-gap: 1rem;
    }
    
}

@media (max-width: 768px) {
    
    .informacion .logo1 {
        display: none;
    }

    .informacion img{
        display: none;
    }
}



.info{
   padding: 2rem;
}

.informacion{
    text-align: center;
    
}


.informacion p{
    font-size: 1rem;
}

.informacion-valor{
    display: grid;
}



.informacion img{
    width: 200px;
}

.informacion .logo1{
    width: 80px;
}

/*boton*/

.container {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buttons{
    display: flex;
    flex-direction: column;    
}

.btn{
    text-decoration: none;
    font-size: 18px;
    position: relative;
    padding: 20px 50px;
}

.btn-1{
    background: green;
    color: #ffffff;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.btn-1::after, .btn-1::before{
    content: "";
    position: absolute;
    opacity: 0.3;
    background: green;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: transform 0.3s ease;
    
}

.btn-1:hover{
    transform: translate(-12px, -12px);
}

.btn-1:hover::after{
    transform: translate(6px, 6px);
}

.btn-1:hover::before{
    transform: translate(12px, 12px);
}




/*footer*/

.pie-pagina{
    width: 100%;
    background-color: #063852;
    margin-top: 40px;

}

.pie-pagina .grupo-1{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 20px 0px;
    
}

.pie-pagina .grupo-1 .box figure{
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.pie-pagina .grupo-1 .box figure img{
    width: 250px;
    padding-left: 60px;
}

.pie-pagina .grupo-1 .box h2{
    color: white;
    margin-bottom: 25px;
    font-size: 20px;

}

.pie-pagina .grupo-1 .box p{
    color: white;
    margin-bottom: 10px;
    font-size: 13px;

}

@media screen and (max-width:800px) {
    .pie-pagina .grupo-1{
    width: 90%;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
    padding: 35px;
    }

}




