/**
 * Todos los derechos reservados (C) 2024
 * Soluciones Industriales y Tecnológicas del Oriene
 * Indutecno
 * indutecno.com
 */

/**
 * Información del archivo
 * Estilos Mobile first
 * @author          : Juan M Rodriguez P
 * @version         : 0.0
 * @created         : 2024-08-09
 * @lastModified    : 2024-08-22
 */

.bg_img {
    display: none;
    margin: 30px auto;
    transition:all 0.75s;
    max-width: 15%;
}

.navegacion {
    padding: 5px;
    margin: auto;
}

.nav-btn {
    background:#70b279;
    border-top-right-radius:10px;
    border-bottom-left-radius:10px;
    color: white;
    display: block;
    font-family: sans-serif;
    font-size: 0.9em;
    font-weight: bold;
    margin: 5px auto 0px;
    position:relative;
    padding:5px 10px;
    text-align: center;
    transition:all 0.75s;
    width: 85%;
    &:after,&:before{
        content:" ";
        width:10px;
        height:10px;
        position:absolute;
        border :0px solid #fff;
        transition:all 0.7s;
    } &:after{
        top:-3px;
        left:-3px;
        border-top:2px solid #eaeaea;
        border-left:2px solid #eaeaea;
    } &:before{
        bottom:-3px;
        right:-3px;
        border-bottom:2px solid #eaeaea;
        border-right:2px solid #eaeaea;
    } &:hover{
        z-index: 999;
        background-color: #80e080;
        border-top-right-radius:0px;
        border-bottom-left-radius:0px;
        color: white;
        font-weight: bolder;
        &:before,&:after{
            width:100%;
            height:100%;
        } &:after{
            top:-2px;
            left:-2px;
            border-top:3px solid #28a428;
            border-left:3px solid #28a428;
        } &:before{
            bottom:-1px;
            right:-1px;
            border-bottom:3px solid #28a428;
            border-right:3px solid #28a428;
        }
    }
}

@media only screen and (min-width: 287px) {
  .contenido {
    bottom: 35px;
  }
}

/**
 * 
 */
@media only screen and (min-width: 319px) {
    .navegacion {
        width: fit-content;
        margin: auto;
    }
    
    .nav-btn {
        display: inline-block;
        width: 75px;
    }
}

/**
 * 
 */
@media only screen and (min-width: 479px) {
    .nav-btn {
        font-size: 1em;
        width: 120px;
    }
}

/**
 * 
 */
@media only screen and (min-width: 575px) {
    .nav-btn {
        font-size: 1.15em;
        width: 160px;
    }
}

/**
 * 
 */
@media only screen and (min-height: 575px) {
  .navegacion {
    margin-bottom: 30px;
  }
}

/**
 * 
 */
@media only screen and (min-width: 767px) {
    .nav-btn {
        width: 180px;
    }
}

/**
 * 
 */
@media only screen and (min-width: 863px) {
    .nav-btn {
        width: 200px;
        font-size: 1.25em;
    }
}

/**
 * 
 */
@media only screen and (min-width: 1279px) {
    .nav-btn {
        width: 215px;
        font-size: 1.35em;
    }
}