/* 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 0;
}

.box {
    padding: 10px;
}

.nav {
    padding: 0;
}

/* ------ HEADINGS ------ */

h1 {
    font-size: 230%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 70px; /* espacio de abajo*/
    color: #1678b9;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;

}

h1: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 */
}

h2 {
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 35%;
    color: #1678b9;
    font-size: 200%;
    font-weight: 900;
    font-style: italic;
    word-spacing: 4px;
    letter-spacing: 1px;        
}

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


.long-copy {
    font-size: 120%;
    color: #1678b9;
    width: 100%;
    margin-right: 50%;
    text-align: center;
    padding-top: 10px;
}

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

img {
    margin-left: 35%;
    padding-top: 10px;
}

/*--------------------------------------------*/
/* 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: #555; /* regresa a color original */
    border-bottom: 1px solid transparent; /* efecto que quita el subrayado */
}


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

.btn:link,
.btn:visited,
input[type=submit] {
    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;
    margin-left: 500px;
}

.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,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #16325d;
}

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

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

input[type=submit] {
    background-color: #1678b9;
    border: 1px solid #ffffff;
     color: #fff;
    margin-right: 15px;
    margin-left: 90px;
}

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


.menu_bar {
    display: none;
}

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

header nav ul {
    list-style: none;
}

header nav ul li {
    float: right;
}

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

header nav ul img {
    float: left;
    height: 69px;
    width: 200px;
    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;
}

/*--------------------------------------------*/
/* Aviso */
/*--------------------------------------------*/

.section-aviso {
    padding-bottom: 30px;
    padding-top: 110px;
}

.section-aviso {
    padding-bottom: 30px;
}

.section-aviso a {
    margin-top: 50px;
    margin-left: 45%;
}

/*--------------------------------------------*/
/* LINUS */
/*--------------------------------------------*/

.section-linus {
    padding-bottom: 30px;
    padding-top: 110px;
}

.section-linus a {
   padding-top: 20px;
    margin-left: 45%;
}

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

/*--------------------------------------------*/
/* 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: #517fa4;
}
.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;
}

/*--------------------------------------------*/
/* 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;
}

/*--------------------------------------------*/
/* QUERYS */
/*--------------------------------------------*/

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


    .long-copy2 {
        font-size: 100%;
    }

    .section-linus {
        padding-top: 110px;
    }

    .section-linus a {
        margin-left: 45%;
    }

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

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

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

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

@media only screen and (max-width:1140px) {
    header nav {
        width: 45%;
        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: 15px;
        border-bottom: 2px solid rgba(255, 255, 255, .3);
        width: 130px;
    }

    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_bar .btn-menu {
        display: block;
        padding: 20px;
        background: #113160;
        color: #fff;
        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;
        margin-top: -10px;
        color: #fff;
    }
}


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

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

    .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) {
    
    h1{
        font-size: 25px;
    }
    
    h2{
        font-size: 20px;
    }
    
    .section-linus .btn{
                margin-left: 28%;

    }
    
    .section-aviso .btn{
        margin-left: 28%;
    }

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

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

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

    .row {
        padding: 0 2%;
    }

    .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;
    }
}