body {
    margin: 0;
    padding: 0;
    background: #add8b3;
}

/*----- MENÚ DESPLEGABLE -----*/

.icono {
    width: 80px;
    float: left
}
h1 {
    font-family: Raleway , sans-serif;
    font-weight: 700;
    background: #9ba783;
    font-size: 16px;
    color: #3b533b;
    margin: 0;
    margin-top: 30px;
    padding: 0;
    float: left;
   
}

nav {
    font-family: Raleway , sans-serif;
    font-weight: 600;
    background: #9ba783;
    height: 80px;
    width: 100%;
    
}
nav ul{
    float: right;
    margin: 0;
    margin-right: 30px;
}
nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
    
}
nav ul li a {
    padding-left: 3px;
    padding-right: 20px;
    text-decoration: none;
    color: #1c590a;

}

.chkbtn {
    font-size: 30px;
    color: #fff;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    display: none;
    cursor: pointer;
}
#chk {
    display: none;
}
@media(max-width: 1000px)
{
    nav ul li a {
        font-size: 20px;
        
    }
}
@media(max-width: 900px)
{
    .chkbtn{
        display: block;
        margin-right: 40px;
    }
    ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        margin: 0;
        padding: 0;
        background: #9ba783;
        top: 80px;
        left: 112%;
        text-align: center;
        transition: .5s;
        z-index: 9999;
    }
    nav ul li{
        display: block;
        margin: 40px 0;
        line-height: 30px;
        
    }
    a:hover, a.active{
        background-color: none;
        color: #76d64c;
        font-weight: 700;
        
    }
    #chk:checked ~ ul {
        left: 0;
    }
}

i {
    color: #1c590a;
}

/*----- OTRO -----*/


h2{
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 30px;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 5px;
    color: #204d12;
}
.texto {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 0px;
    margin-top: 10px;
    font-family: 'Lora', serif;
    font-weight: 500;
}
h3 {
    background: #204d12;
    border-radius: 5px;
    border: 2px solid #fff;
    text-align: center;
    padding: 5px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #e8ebe1;
    font-size: 20px;
    margin-top: 25px;
    margin-right: 25px;
    margin-left: 25px;
}
.texto2 {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 10px;
    font-family: 'Lora', serif;
    font-weight: 500;
    margin-bottom: 30px;
}
.horarios {
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #e8ebe1;
}
.dia {
    font-weight: 700;
    font-family: 'Lora', serif;
}
.desde {
    font-weight: 700;
    font-family: 'Lora', serif;
}
.clases {
    margin-left: 20px;
    margin-right: 20px;
    padding: 10px;
    background: #204d12;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.47);
}


/*----- galería -----*/


.container{
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.navigator{
    display: flex;
    justify-content: center;
}
.navigator .bar{
    background: #1c590a;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 5px;
    height: 10px;
    width: 35px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 15px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.47);
}
.navigator .bar:hover{
    background: #fff;
}
input[type="radio"]{
    position: absolute;
    visibility: hidden;
}
.slides{
    display: flex;
    height: 100%;
    width: 500%;
}

.image {
    width: 20%;
    transition: 0.4s ease;
    justify-content: center;
}
figure img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
#btn1:checked ~ .first{
    margin-left: 0;
}
#btn2:checked ~ .first{
    margin-left: -20%;
}
#btn3:checked ~ .first{
    margin-left: -40%;
}
#btn4:checked ~ .first{
    margin-left: -60%;
}
#btn5:checked ~ .first{
    margin-left: -80%;
}

/*----- footer -----*/

h4 {
    text-align: center;
    margin-top: 35px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 20px;
    background: linear-gradient(1deg, rgba(155,167,131,1) 0%, rgb(203, 247, 231) 100%);
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
}
.contactanos {
    display: flex; 
    
}
.contactanos img {
    
    max-width: 100%;
    height: 3em;
}
.contactanos  {
    
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 1em;
    margin: 1em;
    }
    
     
footer {
    background-color:#9ba783;
    color: whitesmoke;
    padding: 1rem;
    font-size: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    
        }
