body {
    background-image: url(../imagenes/inicio_2.png);
    background-color: transparent;
    background-repeat: no-repeat;   
    background-attachment: fixed;               
    background-position: top;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    height:auto; 
    margin: 10% 0 auto 0;
}
section {
	margin: 2% 0px 4% 0px;
}
p {
    font-family: 'Questrial', sans-serif;
    color: black;
    font-size: 1.0rem;
    font-weight: bold;
}
label {
    font-size: 0.9rem;
    font-weight: bold;
}
input[type="text"] {
    font-size: 0.9rem;
}
input[type="password"] {
    font-size: 0.9rem;
}
.inicio {
	margin-top: 0px;
}
a {
    color: black;
}
.card-footer a:hover {
    color: navy;
    text-decoration: none;
}
footer {
	position:fixed;
	left:0px;
	bottom:0px;
	width:100%;
}
/* Modal (background) */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed; /* Permanece en su lugar */
    z-index: 1; /* En el tope */
    padding-top: 100px; /* Lugar de la caja */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* scroll si se necesita */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacidad */
}

/* Modal - Contenido */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 40%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* agregar animacion */
    @-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* Boton para cerrar */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.modal-body {
    color: #000;
    padding: 2px 16px;
}
/************************************* CELULARES *********************************/
/* Extra small devices (phones, less than 768px) */
@media screen and (max-width: 768px) /* Mobile */ {
    /************************** HEADER Y MENU ************************/
        body {
            background-image: url(../imagenes/inicio_1_movil.png);
            margin: 20% 0 auto 0;
        }
        section {
            margin: 2% 0px 20% 0px;
        }
    }            
    /************************************* TABLETS ***********************************/
    /* Small devices (tablets, 768px and up) */
    @media only screen and (min-device-width : 768px) and (max-device-width : 991px) {
        
    }
    /* ******************************* MEDIA PARA LAPTOP ************************** */
    /* Medium devices (desktops, 992px and up) */
    @media only screen and (min-device-width : 992px) and (max-device-width : 1199px) {
        
    }
    /* **** MEDIA PARA LAPTOP MAYOR RESOLUCION ********* */
    @media only screen and (min-device-width : 1200px) and (max-device-width : 1824px) {
        
    }
    /* **** MEDIA PARA LAPTOP MAYOR RESOLUCION ********* */
    @media only screen  and (min-width : 1824px) {
        
    }