@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Open+Sans');


body{
	margin:0;
	font-family: 'Open Sans', sans-serif;
}

header{
    height: 74px;
    position: absolute;
	z-index: 2;
    width: 100%;
	background:rgba(0, 153, 51, 0.7);  
}

#btn-menu {
	display: none;
}

header label {
	display: none;
    height: 74px;
    width: 75px;
    margin: 0px;
    padding: 18px;
    text-align: center;
}
header label img{
    width: 100%;
}
header label:hover{
	background: rgba(0,0,0,0.3);
}

.menu ul {
	margin: 0;
	list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

#logo{
    position: absolute;
    height: 75px;
    padding: 7px;
}

#txtlogo{
    color: #fff;
    margin: 0px 0px 0px 60px;
    position: absolute;
    padding: 18px;
}

#logo-h{
    display: none;
    height: 74px;
    padding: 7px;
}
.menu img{
    height: 60px;
}

.menu li:hover{
    background: rgba(0,0,0,0.3);
}

.menu li a{
    display: block;
    padding: 25px 20px;
    color: #fff;
    text-decoration: none;
}

@media (max-width:768px){
    #banner h2{
        padding-top: 30px;
    }
    header{
        position: relative;
        background:rgb(0, 153, 51); 
    }
    #logo-h{
        display: block;
    }
    #txtlogo{
       display: none;
    }
    .menu img{
        display: none;
    }
    header label{ 
        display: block;
       
    }
    .menu {
        background-color: rgba(0, 153, 51, 0.9);
        position: absolute;
        width: 60%;
        margin-left: -60%;
        transition: all 0.5s;
    }
    .menu ul {
        flex-direction: column;
    }
    #btn-menu:checked ~ .menu{
        margin-left: 0;
    }
    #banner .contenedor{
        font-size: 20px;
    }
}

footer{
    position: relative;
    background-color: #05642d;
    height: 80px;
}

.foot {
    color: #fff;
    margin: 0px;
    text-align: center;
}

.foot a {
	color: inherit; 
  text-decoration: underline; 
  display: inline-flex; 
  align-items: center; 
  vertical-align: middle; 
  font-size: 0.9rem
}

.fa-facebook, .fa-instagram{
    padding: 15px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    color: white;
}

.fa-facebook:hover, .fa-instagram:hover{
    color: #fff;
    opacity: 0.7;
}