/* COLOR NARANJA 

#f39c12

*/

/*--------------------------------------------*/
/* BASIC SETUP */
/*--------------------------------------------*/

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

html {
    background-color: #fff;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font font-weight: 300;
    font font-size: 20px;
    text-rendering: optimizeLegibility;
}

.clearfix {
    zoom: 1
}

/* va a servir para limpiar los floats antes de ser llamados en cualquier funcion */
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/*--------------------------------------------*/
/* REUSABLE COMPONENTS */
/*--------------------------------------------*/

.row {
    max-width: 1470px;
    margin: 0 auto;
}

section {
    padding: 80px;
}

.box {
    padding: 10px;
}

.nav {
    padding: 0;
}

/* ------ HEADINGS ------ */
h1,
h2,
h3,
h4,
h5 {

    font-weight: 300;
    text-transform: uppercase;
}

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 250%;
    font-weight: bold;
    word-spacing: 4px;
    letter-spacing: 1px;
    /*text-shadow: 5px 5px 5px #000000; /* sombras en las letras*/
}

h2 {
    font-size: 200%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    /* espacio de abajo*/
    color: #1678b9;
    font-weight: bold;
    letter-spacing: 1px;
}

h2:after {
    /* conjunto de instrucciones para poner una linea entre h2 y el texto se hace por medio de una pseudo clase */
    display: block;
    height: 2px;
    background-color: #1678b9;
    content: " ";
    width: 200px;
    /* tamaño de la linea */
    margin: 0 auto;
    margin-top: 30px;
    /* margen de arriba de la linea */
}

h3 {
    font-size: 130%;
    margin-bottom: 40px;
    margin-top: 25px;
    color: #1678b9;
    font-weight: bold;
    text-align: center;
}

h4 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #113160;
    font-size: 180%;
    font-weight: 900;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h5 {
    font-size: 230%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 70px;
    /* espacio de abajo*/
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
}

h5:after {
    /* conjunto de instrucciones para poner una linea entre h2 y el texto se hace por medio de una pseudo clase */
    display: block;
    height: 2px;
    background-color: #fff;
    content: " ";
    width: 200px;
    /* tamaño de la linea */
    margin: 0 auto;
    margin-top: 30px;
    /* margen de arriba de la linea */
}

h6 {
    margin-top: 0;
    margin-bottom: 25px;
    margin-left: 15px;
    color: #1678b9;
    font-size: 150%;
    font-weight: 900;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h7 {
    position: absolute;
    font-size: 14px;
    word-spacing: 2px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    margin-left: 70%;
    margin-top: 35px;

}

h7:after {
    /* conjunto de instrucciones para poner una linea entre h2 y el texto se hace por medio de una pseudo clase */
    display: block;
    height: 2px;
    background-color: #fff;
    content: " ";
    width: 200px;
    /* tamaño de la linea */
    margin-left: 85px;
    margin-top: 19px;
    /* margen de arriba de la linea */
}

.azul {
    color: #1678b9;
    font-size: 20px;
}

.asterisco {
    text-align: center;
    font-size: 10px;
}

/*--------------------------------------------*/
/* PARAGRAPHS */
/*--------------------------------------------*/


.long-copy {
    line-height: 150%;
    width: 90%;
    margin-left: 60px;
    margin-bottom: 55px;
    font-size: 110%;
    text-align: justify;

}

.long-copy2 {
    font-size: 110%;
    line-height: 170%;
    width: 80%;
    margin-left: 10%;
    margin-right: 400;
    text-align: justify;
    padding-bottom: 50px;
}

.long-copy3 {
    line-height: 150%;
    width: 100%;
    margin-left: 0%;
    margin-bottom: 55px;
    font-size: 110%;
    text-align: justify;
}

.long-copy4 {
    font-size: 110%;
    line-height: 170%;
    width: 90%;
    margin-left: 5%;
    margin-right: 55%;
    text-align: justify;
    padding-bottom: 5px;
}

.box p {
    font-size: 90%;
    line-height: 145%;
    color: #000;
    text-align: center;
    box-shadow: 6px 6px 15px gray;
}

/*--------------------------------------------*/
/* ICONS */
/*--------------------------------------------*/

.icon-big {
    font-size: 400%;
    display: block;
    color: #1678b9;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;

}

.icon-small {
    display: inline-block;
    width: 30px;
    text-align: center;
    color: #1678b9;
    font-size: 140%;
    margin-right: 10px;

    /* ------ SECRETS TO ALIGN TEXT AND ICONS ------ */
    line-height: 120%;
    vertical-align: middle;
    margin-bottom: -2px;
}


/*--------------------------------------------*/
/* LINKS */
/*--------------------------------------------*/

a {
    color: #fff;
}

a:link,
a:active {
    color: #fff;
    text-decoration: none;
    /* texto sin decoracion */
    padding-bottom: 1px;
    border-bottom: 1px solid #fff;
    transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
    color: #fff;
    /* regresa a color original */
    border-bottom: 1px solid transparent;
    /* efecto que quita el subrayado */
}


/*--------------------------------------------*/
/* BUTTONS */
/*--------------------------------------------*/

.btn:link,
.btn:visited {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    transition: background-color 0.4s, border 0.4s, color 0.4s;
}

.btn-full:link,
.btn-full:visited {
    background-color: #1678b9;
    border: 1px solid #ffffff;
    color: #fff;
    margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #777373;
    color: #777373;
}

/*al poner el cursos en el boton va a hacer la siguiente accion en cada uno de ellos, con la opcion border pone un borde completo alrededor del boton*/
.btn:hover,
.btn:active {
    background-color: #16325d;
}

.btn-full:hover,
.btn-full:active {
    border: 1px solid #ffffff;
}

.btn-ghost:hover,
.btn-ghost:active,
input[type=submit] {
    border: 1px solid #ffffff;
    color: #fff;
}


/*--------------------------------------------*/
/* HEADER */
/*--------------------------------------------*/


 header {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(img/L4.jpg);
        /*         opcion para oscureser la imagen */
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        height: 100vh;
        background-attachment: fixed;
        
        -moz-background-position: center;
        -webkit-background-position: center;
    }

.hero-text-box {
    position: absolute;
    width: 1140PX;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu_bar {
    display: none;
}


header nav {
    margin-left: 0;
    background: #113160;
    position: fixed;
    width: 100%;
    height: 77px;
    z-index: 2000;
}

header nav ul {
    list-style: none;
    margin-right: 20px;
}

header nav ul li {
    float: right;
}

header nav ul li a {
    color: #fff;
    padding: 4px;
    display: block;
    margin-right: 15px;
    margin-left: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-decoration: none;
}

header nav ul img {
    float: left;
    width: 14.3%;
    margin-top: 0px;
    margin-left: 0px;
    padding: 0;
}

section {
    padding: 20px;
}

/* dar formato al texto de las opciones del menu, opcion de link y visted es para que al poner el cursor haga el efecto de poner una linea abajo de la opcion */
header nav li a:link,
header nav li a:visited {
    padding: 8px 0;
    /* con este padding le damos espacio a la linea de la palabra en el menu */
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 5px solid transparent;
    transition: border-bottom 0.3s;
    /* esta opcion hace una transisción del efecto en 2 seg */

}

header nav li a:hover,
header nav li a:active {
    border-bottom: 3px solid #fff;
}


.hero-text-box p {
    position: absolute;
    color: #fff;
    text-align: center;
    margin-right: 60px;
    font-size: 10px;
    top: 145%;
    right: 25px;
}


/*--------------------------------------------*/
/* Mensaje */
/*--------------------------------------------*/


.section-pago {
    background: rgb(17, 49, 96);
    padding: 10px;
    margin-top: -55px;
}

.section-pago .mensaje {
    border: white 2px solid;
    padding: 15px;
}

.section-pago h2 {
    color: #fff;
    font-size: 25px;
    margin-top: 20px;

}

.section-pago h3 {
    color: #fff;
    font-size: 10px;
}


/*--------------------------------------------*/
/* Linus */
/*--------------------------------------------*/

.section-linus p {
    font-style: oblique;
}

.section-linus a {
    margin-top: 25px;
    margin-left: 40%;
}

.section-linus img {
    width: 80%;
    height: 50%;
    margin-left: 85px;
}

.section-linus .linus {
    /*    background: #000;*/
}


/*--------------------------------------------*/
/* Servicios */
/*--------------------------------------------*/

.section-servicios {
    background-color: rgba(224, 224, 224, 0.21);
/*    background-size: 100%;*/
    background-position: center;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
}

.section-servicios h2{
    margin-top: 40px;
}

/*--------------------------------------------*/
/* Galeria */
/*--------------------------------------------*/

.section-galeria {
    padding-top: 50px;
}

.section-galeria h2 {

    padding-bottom: 50px;
}

.meals-showcase {
    list-style: none;
    width: 100%;
}

.meals-showcase li {
    display: block;
    float: left;
    width: 25%;
}

.meal-photo {

    margin: 0;
    overflow: hidden;
    /* esta funcion hace que la imagenes se acoplen al tamaño del row y no se vean sobre puestas o que exceden el tamaño */
    background-color: #fff;
}

.section-galeria .box img {
    opacity: 0.7;
    /* funcion que opaca la imagen o.7 = 70% */
    width: 100%;
    height: auto;
    padding: 1px;
    transform: scale(1.15);
    /* pone en escala las imagenes */
    transition: transform 0.5s, opacity 0.5s;
    /* vamos a animar la transformacion que la transicion se de 0.5 segundos y la opacidad tmb*/
}

/* vamos a poner el efecto de que cuando pongamos el cursor en la imagen regrese a su tamaño normal y cuando lo quitemos regrese a su estado */

.section-galeria .box img:hover {
    transform: scale(1.03);
    opacity: 1;
    /* con esto regresamos la opacidad a la original para darle un buen efecto */
}

.text {
    text-align: center;
    font-size: 150%;
}


/*--------------------------------------------*/
/* COLABORADORES */
/*--------------------------------------------*/

.section-colaboradores {
    /* espacio de las orillas*/
    padding: 50px;
}

.section-colaboradores a {
    color: #fff;
}

.section-colaboradores .box img {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 5px 5px 15px gray;
    margin-left: 30px;
}

.city-feature {
    padding: 5px;
    text-align: center;
}


/*--------------------------------------------*/
/* POPUP */
/*--------------------------------------------*/

/* ------------- María Asunción ------------- */

.overlay .popup p {

    padding: 20px;
    font-size: 15px;
}

.overlay {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    /*para que abarque toda la pantalla*/
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    /* con esta funcion ocultamos el popup */
}

.overlay.active {
    visibility: visible;
}

.popup {
    background: #f8f8f8;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .3);
    font-family: 'Lato', 'Arial', sans-serif;
    padding: 20px;
    text-align: center;
    width: 800px;
    transition: .5s ease all;
    transform: scale(0.7);
    opacity: 0;
}

.popup .btn-cerrar-popup {
    font-size: 26px;
    line-height: 16px;
    display: block;
    /*para que el enlace abarque todo el espacio disponible y asi posicionar el elemento a la derecha*/
    text-align: right;
    transition: .3s ease all;
}

.popup .btn-cerrar-popup:hover {
    color: #000;
}

/*
.popup h3 {
    color: #000000;
}
*/

/*
.popup p {
    font-size: 15px;
}
*/


/* ------------- Gerardo Arianda ------------- */


.overlay2 .popup2 p {

    padding: 10px;
}

.overlay2 {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    /*para que abarque toda la pantalla*/
    top: 60px;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    /* con esta funcion ocultamos el popup */
}

.overlay2.active {
    visibility: visible;
}

.popup2 {
    background: #f8f8f8;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .3);
    font-family: 'Lato', 'Arial', sans-serif;
    padding: 20px;
    text-align: center;
    width: 800px;
    transition: .5s ease all;
    transform: scale(0.7);
    opacity: 0;


}

.popup2 .btn-cerrar-popup2 {
    font-size: 26px;
    line-height: 16px;
    display: block;
    /*para que el enlace abarque todo el espacio disponible y asi posicionar el elemento a la derecha*/
    text-align: right;
    transition: .3s ease all;
}

.popup2 .btn-cerrar-popup2:hover {
    color: #000;
}

/*
.popup h3 {
    color: #000000;
}
*/

.popup2 p {
    font-size: 15px;
}



/* ------------- María del Rosario Sánchez ------------- */


.overlay3 .popup3 p {

    padding: 10px;
}


.overlay3 {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    /*para que abarque toda la pantalla*/
    top: 60px;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    /* con esta funcion ocultamos el popup */
}

.overlay3.active {
    visibility: visible;
}

.popup3 {
    background: #f8f8f8;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .3);
    font-family: 'Lato', 'Arial', sans-serif;
    padding: 20px;
    text-align: center;
    width: 800px;
    transition: .5s ease all;
    transform: scale(0.7);
    opacity: 0;


}

.popup3 .btn-cerrar-popup3 {
    font-size: 26px;
    line-height: 16px;
    display: block;
    /*para que el enlace abarque todo el espacio disponible y asi posicionar el elemento a la derecha*/
    text-align: right;
    transition: .3s ease all;
}

.popup3 .btn-cerrar-popup3:hover {
    color: #000;
}

/*
.popup h3 {
    color: #000000;
}
*/

.popup3 p {
    font-size: 15px;
}



/* ------------- Ingrid Hernández ------------- */


.overlay4 .popup4 p {

    padding: 10px;
}


.overlay4 {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    /*para que abarque toda la pantalla*/
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    /* con esta funcion ocultamos el popup */
}

.overlay4.active {
    visibility: visible;
}

.popup4 {
    background: #f8f8f8;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .3);
    font-family: 'Lato', 'Arial', sans-serif;
    padding: 20px;
    text-align: center;
    width: 800px;
    transition: .5s ease all;
    transform: scale(0.7);
    opacity: 0;


}

.popup4 .btn-cerrar-popup4 {
    font-size: 26px;
    line-height: 16px;
    display: block;
    /*para que el enlace abarque todo el espacio disponible y asi posicionar el elemento a la derecha*/
    text-align: right;
    transition: .3s ease all;
}

.popup4 .btn-cerrar-popup4:hover {
    color: #000;
}

/*
.popup h3 {
    color: #000000;
}
*/

.popup4 p {
    font-size: 15px;
}


/* ------------- María Patricia Rojas ------------- */


.overlay5 .popup5 p {

    padding: 10px;
}


.overlay5 {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    /*para que abarque toda la pantalla*/
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    /* con esta funcion ocultamos el popup */
}

.overlay5.active {
    visibility: visible;
}

.popup5 {
    background: #f8f8f8;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .3);
    font-family: 'Lato', 'Arial', sans-serif;
    padding: 20px;
    text-align: center;
    width: 800px;
    transition: .5s ease all;
    transform: scale(0.7);
    opacity: 0;


}

.popup5 .btn-cerrar-popup5 {
    font-size: 26px;
    line-height: 16px;
    display: block;
    /*para que el enlace abarque todo el espacio disponible y asi posicionar el elemento a la derecha*/
    text-align: right;
    transition: .3s ease all;
}

.popup5 .btn-cerrar-popup5:hover {
    color: #000;
}

/*
.popup h3 {
    color: #000000;
}
*/

.popup5 p {
    font-size: 15px;
}



/* ------------- Raquel Nájera ------------- */


.overlay6 .popup6 p {

    padding: 10px;
}


.overlay6 {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    /*para que abarque toda la pantalla*/
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    /* con esta funcion ocultamos el popup */
}

.overlay6.active {
    visibility: visible;
}

.popup6 {
    background: #f8f8f8;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .3);
    font-family: 'Lato', 'Arial', sans-serif;
    padding: 20px;
    text-align: center;
    width: 800px;
    transition: .5s ease all;
    transform: scale(0.7);
    opacity: 0;


}

.popup6 .btn-cerrar-popup6 {
    font-size: 26px;
    line-height: 16px;
    display: block;
    /*para que el enlace abarque todo el espacio disponible y asi posicionar el elemento a la derecha*/
    text-align: right;
    transition: .3s ease all;
}

.popup6 .btn-cerrar-popup6:hover {
    color: #000;
}

/*
.popup h3 {
    color: #000000;
}
*/

.popup6 p {
    font-size: 15px;
}



/* ------------- Beatriz Nieto ------------- */


.overlay7 .popup7 p {

    padding: 10px;
}


.overlay7 {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    /*para que abarque toda la pantalla*/
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    /* con esta funcion ocultamos el popup */
}

.overlay7.active {
    visibility: visible;
}

.popup7 {
    background: #f8f8f8;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .3);
    font-family: 'Lato', 'Arial', sans-serif;
    padding: 20px;
    text-align: center;
    width: 800px;
    transition: .5s ease all;
    transform: scale(0.7);
    opacity: 0;


}

.popup7 .btn-cerrar-popup7 {
    font-size: 26px;
    line-height: 16px;
    display: block;
    /*para que el enlace abarque todo el espacio disponible y asi posicionar el elemento a la derecha*/
    text-align: right;
    transition: .3s ease all;
}

.popup7 .btn-cerrar-popup7:hover {
    color: #000;
}

/*
.popup h3 {
    color: #000000;
}
*/

.popup7 p {
    font-size: 15px;
}


/* ------------- Roberto Díaz ------------- */


.overlay8 .popup8 p {

    padding: 10px;
}


.overlay8 {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    /*para que abarque toda la pantalla*/
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    /* con esta funcion ocultamos el popup */
}

.overlay8.active {
    visibility: visible;
}

.popup8 {
    background: #f8f8f8;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .3);
    font-family: 'Lato', 'Arial', sans-serif;
    padding: 20px;
    text-align: center;
    width: 800px;
    transition: .5s ease all;
    transform: scale(0.7);
    opacity: 0;


}

.popup8 .btn-cerrar-popup8 {
    font-size: 26px;
    line-height: 16px;
    display: block;
    /*para que el enlace abarque todo el espacio disponible y asi posicionar el elemento a la derecha*/
    text-align: right;
    transition: .3s ease all;
}

.popup8 .btn-cerrar-popup8:hover {
    color: #000;
}

/*
.popup h3 {
    color: #000000;
}
*/

.popup8 p {
    font-size: 15px;
}

/* ------------- Roberto Quintero ------------- */


.overlay9 .popup9 p {

    padding: 10px;
}


.overlay9 {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    /*para que abarque toda la pantalla*/
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    /* con esta funcion ocultamos el popup */
}

.overlay9.active {
    visibility: visible;
}

.popup9 {
    background: #f8f8f8;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .3);
    font-family: 'Lato', 'Arial', sans-serif;
    padding: 20px;
    text-align: center;
    width: 800px;
    transition: .5s ease all;
    transform: scale(0.7);
    opacity: 0;


}

.popup9 .btn-cerrar-popup9 {
    font-size: 26px;
    line-height: 16px;
    display: block;
    /*para que el enlace abarque todo el espacio disponible y asi posicionar el elemento a la derecha*/
    text-align: right;
    transition: .3s ease all;
}

.popup9 .btn-cerrar-popup8:hover {
    color: #000;
}

/*
.popup h3 {
    color: #000000;
}
*/

.popup9 p {
    font-size: 15px;
}



/*--------------------------------------------*/
/* ANIMACIONES */
/*--------------------------------------------*/

/*María Asunción*/

.popup.active {
    opacity: 1;
    transform: scale(1);
}

/* Gerardo Arandia */

.popup2.active {
    opacity: 1;
    transform: scale(1);
}

/* María del Rosario Sánchez */

.popup3.active {
    opacity: 1;
    transform: scale(1);
}

/* Ingrid */

.popup4.active {
    opacity: 1;
    transform: scale(1);
}

/* María Patricia Rojas */

.popup5.active {
    opacity: 1;
    transform: scale(1);
}

/* Raquel Najera */

.popup6.active {
    opacity: 1;
    transform: scale(1);
}

/* Beatriz Nieto */

.popup7.active {
    opacity: 1;
    transform: scale(1);
}

/* Roberto Díaz */

.popup8.active {
    opacity: 1;
    transform: scale(1);
}

.popup9.active {
    opacity: 1;
    transform: scale(1);
}



/*--------------------------------------------*/
/* OPTICA */
/*--------------------------------------------*/

.section-optica .long-copy2 {
    margin-bottom: 20px;
}

.section-optica .long-copy3 {
    font-size: 400%;
    text-align: center;
    font-weight: bold;
}

.section-optica {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/optica11.jpeg);
    /* opcion para oscureser la imagen*/
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
    /* effecto que hace que la imagen se quede estatica y lo demas se mueva */
}

.section-optica {
    background-color: #e8e8e8;
}

.section-optica img {
    width: 20%;
    height: 20%;
    margin-left: 10%;
    margin-bottom: 30px;
}

.plan-box {
    background-color: #fff;
}

/*--------------------------------------------*/
/* OBJETIVO */
/*--------------------------------------------*/

.section-objetivo img {
    margin-left: 72px;
    width: 70%;
    height: 70%;
}

/*--------------------------------------------*/
/* Boton lateral - Social Media */
/*--------------------------------------------*/

.social {
    
    position: fixed;
    right: 0;
    top:110px;
    z-index: 2000;
}

.social ul {
    list-style: none;
}

.social ul li a {
    display: inline-block;
    color: #fff;
    background: #113160;
    padding: 10px 15px;
    text-decoration: none;
}

/*--------------------------------------------*/
/* Footer */
/*--------------------------------------------*/

footer {
    background-color: #113160;
    padding: 3px;
    font-size: 90%;
}

footer img {
    width: 80px;
    height: 70px;
    margin-left: 40%;
}

.footer-nav {
    list-style: none;
    float: left;
    height: 20px;
    margin-left: 30px;
    font-size: 110%;
}

.social-links {
    list-style: none;
    float: right;
}

.ion-logo {
    color: #fff;
}

.footer-nav li,
.social-links li {
    display: inline-block;
    margin-right: 20px;
}

.footer-nav li:last-child .social-links li:last-child {
    margin-right: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
    text-decoration: none;
    border: 0;
    color: #fff;
}

.social-links li a:link,
.social-links li a:visited {
    font-size: 180%;
}

.ion-logo-facebook,
.ion-ios-mail,
.ion-logo-instagram,
.ion-logo-youtube {
    transition: color 0.3s;
}

.ion-logo-facebook:hover {
    color: #3b5998;
}

.ion-logo-twitter:hover {
    color: #00aced;
}

.ion-logo-instagram:hover {
    color: #7c24bc;
}

.ion-logo-youtube:hover {
    color: #cb0808;
}

footer p {
    color: #fff;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 10px;
}

footer a {
    align-content: center;
    color: #fff;
}

footer .btn {
    margin-left: 20px;
}

/*--------------------------------------------*/
/* QUERIES */
/*--------------------------------------------*/

/* Small tablet to big tablet: from 768 to 1023px  -------------------------------------------------------------------------------- */

@media only screen and (max-width:1023px) {

    /*    ----- Asuncion ----*/

    .popup {

        margin-top: 90px;
    }

    .overlay .popup h2 {

        font-size: 20px;
    }

    .overlay .popup h3 {

        font-size: 15px;
    }

    /*    ------ Arandia -----*/

    .popup2 {

        margin-top: 68px;
    }

    .overlay2 .popup2 h2 {

        font-size: 20px;
    }

    .overlay2 .popup2 h3 {

        font-size: 15px;
    }

    /*    ------- Rosario ----*/

    .popup3 {

        margin-top: 50px;
    }

    .overlay3 .popup3 h2 {

        font-size: 20px;
    }

    .overlay3 .popup3 h3 {

        font-size: 15px;
    }

    /*    ---- Ingrid ----*/

    .popup4 {

        margin-top: 45px;
    }

    .overlay4 .popup4 h2 {

        font-size: 20px;
    }

    .overlay4 .popup4 h3 {

        font-size: 15px;
    }


    /*    ----- Centeno ----*/

    .popup5 {

        margin-top: 30px;
    }

    .overlay5 .popup5 h2 {

        font-size: 20px;
    }

    .overlay5 .popup5 h3 {

        font-size: 15px;
    }


    /*    ---- Najera ----*/

    .popup6 {

        margin-top: 50px;
    }

    .overlay6 .popup6 h2 {

        font-size: 20px;
    }

    .overlay6 .popup6 h3 {

        font-size: 15px;
    }


    /*    ---- Nieto ____*/

    .popup7 {

        margin-top: 75px;
    }

    .overlay7 .popup7 h2 {

        font-size: 20px;
    }

    .overlay7 .popup7 h3 {

        font-size: 15px;
    }
    
    /*    ---- Roberto ____*/

    .popup8 {

        margin-top: 75px;
    }

    .overlay8 .popup8 h2 {

        font-size: 20px;
    }

    .overlay8 .popup8 h3 {

        font-size: 15px;
    }

    header nav {
        width: 65%;
        height: 100%;
        left: -100%;
        margin-top: 62px;
        margin-bottom: 30px;
        position: fixed;
        z-index: 2000;
    }

    header nav ul li {
        display: block;
        float: none;
        font-size: 20px;
        border-bottom: 3px solid rgba(255, 255, 255, .3);
        width: 210px;
    }

    header nav ul li a {
        margin-bottom: 4px;
    }

    header nav ul a img {
        display: none;
        float: none;
    }

    .menu_bar {
        display: block;
        margin-left: 0;
        width: 100%;
        position: fixed;
        z-index: 2000;
    }
    
/*
    .menu_bar2 {
        display: none;
    }
*/

    .menu_bar .btn-menu {
        display: block;
        padding: 20px;
        background: #113160;
        text-decoration: none;
        font-weight: bold;
        font-size: 20px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;

    }

    .menu_bar span {
        float: right;
        font-size: 40px;
    }
    
    .hero-text-box {
        width: 100%;
        padding: 0 2%;
    }

    .hero-text-box h1,
    h4 {
        font-size: 150%;
    }

    .hero-text-box h4 {
        margin-left: 20px;
    }

    .row {
        padding: 0 2%;
        width: 100%;

    }

}


/*QUERYS*/

/* Big tablets to 1200px (widths smaller than the 1140px row) -------------------------------------------------------------------------------*/
@media only screen and (max-width:1200px) {

    header {
        -moz-background-position: center;
        -webkit-background-position: center;
    }

    .hero-text-box {
        width: 100%;
        padding: 0 2%;
    }

    .hero-text-box h1,
    h4 {
        font-size: 190%;
    }

    .hero-text-box h4 {
        margin-left: 20px;
    }

    .row {
        padding: 0 2%;
    }

    .section-linus .img {
        width: 80%;
        margin-left: 40px;
    }

    h1 {
        margin-left: 20px;
        font-size: 190%;
    }

    .btn-full {
        margin-left: 20px;
    }

    .logo {
        margin-left: 20px;
    }

    .section-optica p {
        font-size: 120%;
    }

    .section-optica {
        background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/optica11.jpeg);
        /* opcion para oscureser la imagen*/
        background-size: auto;
        color: #fff;
        background-attachment: fixed;
        /* effecto que hace que la imagen se quede estatica y lo demas se mueva */
    }

    .section-objetivo p {
        font-size: 100%;

    }

    .section-objetivo .box {
        padding: 2px;
        margin-left: 9px;
    }

    .section-objetivo img {
        width: 80%;
        height: 80%;
        margin-left: 35px;
    }

    .section-objetivo .city-feature {
        text-align: justify;
    }
}


/* Small tablet to big tablet: from 768 to 1023px  --------------------------------------------------------------------------------*/
@media only screen and (max-width:1023px) {


    .section-colaboradores .city-feature {
        margin-top: 5px;
        text-align: center;
        font-size: 100%;

    }

    .section-galeria h3 {
        margin-bottom: 40px;

    }

    h1 {
        margin-left: 20px;
        font-size: 190%;
    }

    .btn-full {
        margin-left: 20px;
    }

    .logo {
        margin-left: 20px;
    }

    .section-optica p {
        font-size: 100%;
    }

    .section-optica h5 {
        font-size: 170%;
    }

    .section-optica {
        background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/optica11.jpeg);
        /* opcion para oscureser la imagen*/
        background-size: auto;
        color: #fff;
        background-attachment: fixed;
        /* effecto que hace que la imagen se quede estatica y lo demas se mueva */
    }

    .section-objetivo p {
        font-size: 130%;

    }

    .section-objetivo h3 {
        font-size: 250%;

    }

    .section-objetivo .box {
        padding: 2px;
        margin-left: 7px;
    }

    .section-objetivo img {
        width: 100%;
        height: 70%;
        margin-left: 195px;
    }

    .section-objetivo .city-feature {
        text-align: justify;
        font-size: 110%;
    }

    .section-galeria .box {
        width: 88%;
    }

    .section-servicios {
        background-color: #f4eeee;
        /* opcion para oscureser la imagen */
        background-size: 100%;
        background-position: center;
        width: 100%;

    }

    .footer-nav {
        font-size: 80%;
    }

    .social-links {
        font-size: 80%;
    }

    footer img {
        width: 70px;
        height: 60px;
        margin-left: 40%;
    }
}

/* Small phones to small tablets: from 481 to 767px -----------------------------------------------------------------------------------*/

@media only screen and (max-width:767px) {

    h2 {
        font-size: 160%;
    }

    .section-galeria .box {
        width: 75%;
        margin-left: 15%;
    }
    
    .section-colaboradores .box a img{
        width: 70%;
        margin-left: 21%;
    }
    
    .section-optica .long-copy3{
        font-size: 35px;
    }
    
    .section-objetivo .box img{
        margin-left: 15%;
        width: 65%;
    }
    
    .section-objetivo .box h3{
        font-size: 35px;
    }

    .footer-nav {
        font-size: 80%;
    }

    .social-links {
        font-size: 80%;
    }

    footer img {
        width: 70px;
        height: 60px;
        margin-left: 40%;
    }

}

/* Small phones: form 0 to 480px ---------------------------------------------------------------------------------------------------------*/
@media only screen and (max-width:480px) {

    .section-linus h2 {
        font-size: 25px;
    }

    .section-servicios h2 {
        font-size: 25px;
    }

    .section-galeria h2 {
        font-size: 25px;
    }

    .section-linus h2 {
        font-size: 25px;
    }

    .section-linus h3 {
        font-size: 17px;
    }

    .section-galeria h3 {
        font-size: 20px;
    }

    .section-linus .info {
        margin-top: 10px;
        /*   background: #000;*/
    }

    .section-linus .info a {
        font-size: 13px;
        margin-left: 28%;
    }
    
    .section-colaboradores h3{
        font-size: 15px;
    }
    
    .section-colaboradores .box a img{
        width: 90%;
        margin-left: 8%;
    }

    .footer-nav {
        font-size: 70%;
    }

    footer ul {
        display: contents;
    }

    footer li {
        margin-bottom: 10px;
    }

    .social-links {
        font-size: 80%;
    }

    footer img {
        width: 30%;
        height: 30%;
        margin-right: 35px;
    }

    footer p {
        font-size: 90%;
        margin-top: 20px;
    }

    footer a {
        margin-left: 0px;
    }
}