@charset "UTF-8";

*{
    box-sizing: border-box; /* Hace que padding y border formen parte del ancho total */
    margin: 0px;
}

body, html {
    height: 100%;
    margin: 0;
}

img{
    max-width: 100%; /* Para mantener la proporción de las imágenes cuando se achica la pantalla */
    line-height: 0; /* Elimina el espacio que se genera en la parte inferios de las imágenes*/
}

h1{
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 60px;
}

h2{
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 38px;
}

h3{
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 28px;
}

p{
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8em;
    color: #4f5659;
    text-align: left;
}

#main_container{
/*    position: relative;*/
    width: 100%;
    height: 100%;
}

.container{
    position: inherit;
/*    position: relative;*/
    max-width: 1200px;
    overflow: hidden;
    padding: 80px 15px;
}

.title{
    text-align: left;
    color: #222628;
    padding-bottom: 40px;
}

a:link, a:visited, a:active{
    text-decoration: none;
/*    color: #4f5659;*/
}

/*
a:hover{
    text-decoration: none;
    color: #ffc300;
}
*/
