/**
 * Name: base.css
 *
 *	T.O.C
 *
 *	#CssReset
 *	#Typography
 *		#Links
 *		#Lists
 *		#Images
 *		#Tables
 *		#Forms
 *		#Misc
 */


/* ==========================================================================
   #CssReset
   ========================================================================== */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    font: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}

/**
	 * 1. Always force vertical scroll
	 * 2. Prevent iOS text size adjust after orientation change, without disabling user zoom.
	 * 3. For animations
	 */

html {
    font-size: 100%;
    overflow-x: hidden;
    /* 3 */
    overflow-y: scroll;
    /* 1  */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   #Typography
   ========================================================================== */


/**
	 * 1. For animations
	 */

body {
    font: 13px 'Open Sans', Arial, sans-serif;
    line-height: 24px;
    overflow-x: hidden;
    /* 1 */
    color: #022b36;
    background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-family: ''Lato', sans-serif', Arial, sans-serif;
    font-weight: normal;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: inherit;
}
h1 {
    font-size: 32px;
    line-height: 50px;
    margin-bottom: 14px;
}
h2 {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 10px;
}
h3 {
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 8px;
}
h4 {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 4px;
}
h5 {
    font-size: 14px;
    line-height: 24px;
}
h6 {
    font-size: 12px;
    line-height: 21px;
}
p {
    margin-bottom: 20px;
}
em {
    font-style: italic;
}
strong {
    font-weight: bold;
}
small {
    font-size: 60%;
}
sub {
    font-size: 75%;
    vertical-align: sub;
}
sup {
    font-size: 75%;
    vertical-align: super;
}
abbr[title] {
    cursor: help;
    border-bottom: 1px dotted #999;
}
address {
    display: block;
    margin-bottom: 20px;
}
blockquote p {
    font-style: italic;
}
blockquote span {
    display: block;
    margin-top: 5px;
    color: #999;
}
blockquote span:before {
    content: '\2013 \00A0';
}
hr {
    height: 0;
    margin: 30px 0;
    border: solid #efefef;
    border-width: 1px 0 0 0;
}
code, pre {
    font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
code {
    padding: 1px 4px;
    color: #d14;
    border: 1px solid #e1e1e8;
    background-color: #f7f7f7;
}
pre {
    display: block;
    overflow-x: auto;
    margin-bottom: 20px;
    padding: 20px;
    white-space: pre-wrap;
    border: 1px solid #e1e1e8;
    background-color: #f7f7f7;
}

/* Typography Helper Classes */


/**
	 * <div class="hr"></div> acts like an <hr />
	 */

.page-quienessomos .h1-title {
    margin-top: 0
}
.h1-title {
    font-size: 15px;
    line-height: 2em;
    margin-top: 70px;
    text-transform: uppercase;
    color: #011925;
}
.h1-title span {
    font-size: 2em;
    font-weight: 400;
}
.txt--blue span, .l-quienessomos span {
    color: #4da3e5;
}
.txt--white {
    color: white;
}
.hr {
    margin: 30px 0;
    border-top: 1px solid #efefef;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.text-highlight {
    color: #18829c;
}
.text-uppercase {
    text-transform: uppercase;
}

/*.caption.title, .caption.subtitle{color:#011925 !important}*/

.mute {
    color: #aaa;
}
.no-mg {
    margin: 0;
}
.no-pd {
    padding: 0;
}
p.last, h1.last, h2.last, h3.last, h4.last, h5.last, address.last {
    margin-bottom: 0;
}

/* #Links
   ========================================================================== */

a, a:visited {
    text-decoration: none;
    color: #18829c;
}

/**
	* 1. Remove the gray background color from active links in IE 10.
	*/

a:active {
    background: transparent;
    /* 1 */
}
a:hover, a:focus {
    text-decoration: underline;
    outline: 0;
}

/* #Lists
   ========================================================================== */

ul, ol {
    margin-bottom: 20px;
    list-style-position: inside;
}
ul ul, ul ol, ol ol, ol ul {
    margin-bottom: 0;
    margin-left: 30px;
}
ul {
    list-style-type: disc;
}
ol {
    list-style-type: decimal;
}

/* List Helper Classes */

ul.last, ol.last {
    margin-bottom: 0;
}

/* #Images
   ========================================================================== */

img {
    border: none;
}
.img--border {
    border: 15px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

/* Images Helper Classes */

.img-align-left {
    float: left;
    margin: 5px 10px 0 0;
}
.img-align-right {
    float: right;
    margin: 5px 0 0 10px;
}

/* #Tables
   ========================================================================== */

table {
    width: 100%;
    margin-bottom: 20px;
    border-spacing: 0;
    border-collapse: collapse;
    background-color: transparent;
}
caption {
    margin: 20px 0;
    text-align: center;
}
table th, table td {
    padding: 15px 8px;
    text-align: center;
    vertical-align: top;
    border-top: 1px solid #b4bfc3;
}
table th {
    font: 16px ''Lato', sans-serif', Arial, sans-serif;
    color: #fff;
    border-top: none;
    background-color: #18829c;
}
table thead th {
    vertical-align: bottom;
}

/* #Forms
   ========================================================================== */

label {
    display: block;
    margin-bottom: 5px;
}
label span {
    color: #f00;
}
select, button, input[type='button'], input[type='reset'], input[type='submit'], input[type='radio'], input[type='checkbox'] {
    cursor: pointer;
}

/*
	 * 1. stop safari from overwriting input styles
	 */

input, textarea, select {
    font: 13px 'Open Sans', Arial, sans-serif;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
    margin-bottom: 10px;
    padding: 12px 10px;
    border: 1px solid #c8d3d7;
    background: transparent;
    -webkit-appearance: none;
    /* 1 */
}
input[type='text']:focus, input[type='email']:focus, input[type='url']:focus, textarea:focus {
    border-color: #b4bfc3;
    outline: 0;
}
select {
    height: 45px;
}
select:focus {
    outline: thin dotted #333;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
textarea {
    overflow: auto;
    min-height: 100px;
}
.radio, .checkbox {
    min-height: 18px;
    padding-left: 18px;
}
.radio input[type='radio'], .checkbox input[type='checkbox'] {
    float: left;
    margin-left: -18px;
}
input:-moz-placeholder, textarea:-moz-placeholder {
    color: #ccc;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #ccc;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #ccc;
}

/* #Misc
   ========================================================================== */

.javascript-required {
    font-weight: bold;
    padding: 15px 0;
    text-align: center;
    color: #fff;
    background-color: #f00;
}