@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/*--- hr ---*/
.hr{
    width: 50%;
    margin: 15px;
    margin-left: 25%;
    background: rgb(67,118,35);
    height: 3px;
}

/*--- boton mas ---*/
.mas{
    display: block;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    position: fixed;
    font-size: 35px;
    color: #fff;
    background-color: brown;
    border: 1px solid #999;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
}
.mas label{
    font-size: 35px;
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 5;
    cursor: pointer;
}
.boton-opciones{
    display: block;
    font-size: 20px;
    position: absolute;
    top: -225px;
    right: 0px;
    transform: translateX(200%);
    transition: all 0.3s;
    z-index: 5;
}
.boton-opciones ul li{
    display: block;
    border: 1px solid #333;
    padding: 5px;
    margin: 10px;
    background-color: #fff;
    width: 40px;
    height: 40px;
    box-shadow: rgb(50,50,50) 3px 3px 5px;
    border-radius: 50%;
    z-index: 5;
}
.boton-opciones ul li a{
    list-style: none;
    color: #333;
    text-decoration: none;
}
.boton-opciones-letra{
    display: block;
    font-size: 17px;
    position: absolute;
    top: -215px;
    right: 60px;
    transform: translateX(200%);
    transition: all 0.4s;
    z-index: 5;
}
#mas-es{
    display: none;
}
#mas-es:checked ~ .boton-opciones{
    transform: translateX(0%);
}
#mas-es:checked ~ .boton-opciones-letra{
    transform: translateX(0%);
}
.boton-opciones-letra ul li{
    display: block;
    border: 1px solid #333;
    padding: 5px;
    width: 200px;
    margin: 12px;
    background-color: #fff;
    box-shadow: rgb(50,50,50) 3px 3px 5px;
}
.boton-opciones-letra ul li a{
    list-style: none;
    color: #333;
    text-decoration: none;
}

/*--- Contactenos 
#m-cnt{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 7;
    background-color: rgba(0,0,0,0.7);
    display: none;
}
#m-cnt section{
    width: 60%;
    height: auto;
    padding: 20px;
    position: absolute;
    
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    
    box-shadow: rgb(50,50,50) 3px 3px 5px;
    -webkit-box-shadow: rgb(50,50,50) 3px 3px 5px;
    -moz-box-shadow: rgb(50,50,50) 3px 3px 5px;
    border-radius: 5px;
}

/*--- Responsive ---*/
@media screen and (max-width: 768px){
    .boton-opciones-letra{
        display: none;
    }
}