@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,600;0,700;1,100;1,700;1,900&display=swap');

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}


body{

    font-family: 'Poppins', sans-serif;
    
}

.conta{
    margin: 0 auto;
}



.header {
    
	
    background-image: url(../imagenes/fonback.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    
    
}


.container h3{
    color: #00a135;
}


.menu{
    position:absolute ;
    top:0;
    left:0;
    right: 0;
    display:flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: #FF8000;
   
    
}

.logo{

    color: #fffdfc;
    font-size: 25px;
    font-weight: 800;
    background: #FF8000;
    width: 200px;
    text-align: center;
}

.menu .navbar ul li{
    position: relative;
    float: left;
     border-style: none;
    

}

.menu .navbar ul li a{
    font-size: 18px;
    padding: 8px;
    color: #fffdfc;
    display: block;
    font-weight: 600;
}

.menu .navbar ul li a:hover{
    color: #fffdfc;
    background-color: #ff972f;
}


#menu{
    display: none;
    
}

.menu-icono{
    width: 25px;
}

.menu label{
    cursor: pointer;
    display:none;
}

@media(max-width:991px){

    .menu{
        padding: 25px;
    }

    .menu label{
        display: initial;
    }

    .menu .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ff8000da;
        display: none;
    }

    .menu .navbar ul li{
        width: 100%;
    }

    #menu:checked ~ .navbar{
        display: initial;
    }

    .header{
        min-height: 0vh;
    }

    .header-content{
        padding: 100px 30px;
    }

    .header-txt h1 {
        font-size: 50px;
    }

    .header-txt p{
        padding: 0;
    }

    .general{
        padding: 30px 30px 0 30px;
    }

    .general-content{
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .general-1,
    .general-2,
    .general-3,
    .general-4,
    .general-5,
    .general-6,
    .general-7{
        height: 350px;
        padding: 100px ;
        margin-bottom: 10px;
    }

    .info-1{
        padding: 200px 30px;
        background-size: cover;
        margin-top: -110px;
    }

    .info-circle{
        flex-direction: column;
        align-items: center;
    }

    .circle-txt{
        width: 100%;
        margin-bottom: 15px;
    }
    .g2{

        margin-top: -120px; ;
    }

    .info-2{
        padding: 280px 30px;
        background-size: cover;
        margin-top: -180px;
    }

    .asocia{
        flex-direction: column;
    }

    .asocia-left{
        width: 100%;
        padding-right: 0;
    }

    .asocia-right{
        width: 100%;
        padding-left: 0;
    }

    h2{
        font-size: 40px;
    }

}

