/*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:#1b3039;
    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*/

.contenedor{
    width: 100%;
    margin:auto;
    background-color:#008134;
    padding-top: 30px;
    padding-bottom: 50px;
}

.titulo{
    font-size: 18px;
    margin-bottom: 22px;
    color: white;
    text-align: center;
}

.contenedor .tgood{
    width: 200px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 5px;
}


.contenedor .imagen1{
    width: 650px;
    float: left;
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 5px;
}


.contenedor p{
    font-size: 17px;
    color: white;
    text-align: center;
}

.contenedor h2{
    text-align: center;
    padding: 15px;
    color: white;
}

@media screen and (max-width:800px) {
    
    .contenedor .imagen1{
        width: 350px;
        padding-left: 50px;
    }

    .contenedor p{
        font-size: 15px;
        padding: 5px;
    }


    .contenedor .tgood{
        width: 200px;
        margin-bottom: 0px;
        margin-left: 100px
    }

    .contenedor .titulo{
        margin-top: 100px;
        font-size: 15px;
        text-align: center;
        padding: 10px;
        
    }

    
}


/*hero2*/

.contenedor2{
    width: 100%;
    margin:auto;
    background-color:#1b3039;
    display: inline-block;
}

.contenedor2 img{
    width: 400px;
    float: right;
}


.contenedor2 h2{
    text-align: center;
    padding-top: 45px;
    color: white;
    font-size: 17px;
    
}

.contenedor2 p{
    font-size: 17px;
    color: white;
    padding: 20px;
    text-align: center;
    padding:5px;

}

@media screen and (max-width:800px) {
    
    .contenedor2 img{
        
        display: none;
    }

    .contenedor2 .p1{
        text-align: center;
        padding-bottom: 80px;
        padding: 10px;
    }

    

    .contenedor2{
        width: 100%;
        margin:auto;
        background-color:#1b3039;
        display: inline-block;
        padding-bottom: 50px;
    }

    .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);
    }
    
}


/*hero3*/

.contenedor3{
    margin:auto;
    background-color:white;
    padding-bottom: 60px;
    display: block;
}

.contenedor3 .background{
    width: 100%;
}

@media screen and (max-width:800px) {
    .contenedor3{
        display: none;
    }
}


/*contenedor4*/

.contenedor4{
    margin:auto;
    background-color:white;
    display:block;
}

.contenedor4 .background2{
    width: 100%;
}

.contenedor4 .buttons1{
    padding-bottom: 60px;
}

@media screen and (max-width:800px) {
    .contenedor4{
        display: none;
    }
}


/*contenedor5*/

.contenedor5{
    margin:auto;
    background-color:#cccccc;
    display:block;
}

.contenedor5 .background3{
    width: 100%;
}

.contenedor5 .buttons2{
    padding-bottom: 60px;
}

@media screen and (max-width:800px) {
    .contenedor5{
        display: none;
    }
}

/*contenedor6*/

.contenedor6{
    width: 100%;
    margin:auto;
    background-color:#129b9c;
    padding-top: 30px;
    display: inline-block;
    padding-bottom: 50px;
}

.titulo6{
    padding-top: 10px;
    font-size: 18px;
    margin-bottom: 25px;
    color: white;
    
}


.contenedor6 .tgood2{
    width: 200px;
    float:left;
    margin-right: 30px;
    margin-bottom: 20px;
    margin-left: 10px;
    padding-top: 10px;
}

.contenedor6 .imagen6{
    width: 650px;
    float: right;
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 5px;
}


.contenedor6 p{
    font-size: 17px;
    color: white;
    text-align: center;
}




.contenedor6 h2{
    text-align: center;
    padding: 15px;
    color: white;
}

@media screen and (max-width:800px) {

    .contenedor6 .imagen6{
        width: 350px;
        text-align: center;
    }

    .contenedor6 p{
        padding:15px;
    }


    .contenedor6 .tgood2{
        width: 200px;
        margin-bottom: 0px;
        margin-left: 100px;
        padding-top: 30px;
    }

    .contenedor6 .titulo6{
        margin-top: 80px;
        font-size: 15px;
        text-align: center;
        padding: 10px;
    }
    
    /*.contenedor6 .imagen6{
        width: 400px;
        text-align: center;
    }

    .contenedor6 p{
        padding:15px;
    }

    .contenedor6 img{
        width: 150px;
        
    }
    .contenedor6 .titulo6{
        font-size: 15px;
    }*/

}


/*contenedor7*/

.contenedor7{
    width: 100%;
    margin:auto;
    background-color:#1b3039;
    padding-top: 30px;

}

.titulo7{
    font-size: 18px;
    margin-bottom: 22px;
    color: white;
    text-align: center;
}

.contenedor7 .tgood3{
    width: 200px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 5px;
}

.contenedor7 .imagen7{
    width: 650px;
    float: left;
    margin-top: 30px;
    margin-right:0px;
    margin-bottom: 20px;
    margin-left: 0px;
}


.contenedor7 p{
    font-size: 17px;
    color: white;
    text-align: left;
}

.contenedor7 h2{
    text-align: center;
    padding: 15px;
    color: white;
    padding-top: 50px;
}

@media screen and (max-width:800px) {
    
    .contenedor7 .imagen7{
        width: 350px;
        text-align: center;
        margin-left: 25px;
    }

    .titulo7{
        font-size: 10px;
        color: white;
        text-align: center;
    }

    .contenedor7 p{
        padding: 15px;
        text-align: center;
        font-size: 15px;
        padding-bottom: 10px;
    }

    .contenedor7 .tgood3{
        width: 200px;
        margin-bottom: 0px;
        margin-left: 100px;
        padding-top: 30px;
    }

    .contenedor7 .titulo7{
        margin-top: 80px;
        font-size: 15px;
        text-align: center;
        padding: 10px;
    }


}

/*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;
    }

}

