/*!
 * Stylesheet
 *
 * @author ...
 * @version 1.0
 */
/*
|--------------------------------------------------------------------------
| Reset
|--------------------------------------------------------------------------
|
| El reset sirve para uniformizar los estilos de elementos html
| a traves de los diferentes navegadores, por ejemplo,
| Internet Explorer coloca un borde azul a toda imagen que
| este dentro de un elemento de vinculo <a>. Para quitarlo
| "reseteamos" el elemento <img> para que no muestre ningun borde.
|
| Todos los estilos del reset se pueden sobreescribir luego pero
| solo cuando el diseno lo necesite y no en un contexto general,
| por esta razon EL RESET NO SE DEBE MODIFICAR
|
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
hr,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
sub,
sup,
var,
b,
u,
i,
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,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    padding: 0;
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
menu,
nav,
section {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong,
b {
    font-weight: bold;
}

a {
    text-decoration: none;
}

img {
    border: 0;
}

input,
button,
select,
textarea {
    font: inherit;
}
/*
|--------------------------------------------------------------------------
| Base
|--------------------------------------------------------------------------
*/
/* Aqui se define el tamano base de la fuente, el tamano del */
/* interlineado, la fuente y color principales */
/* LOS VALORES SE DEBEN MODIFICAR SEGUN LAS NECESIDADES DEL PROYECTO */

html {
    font: 100%/1.5 Lato, Helvetica, sans-serif;
    color: #333;
    font-weight: 400;
}

hr {
    height: 0;
    border: 0;
    border-top: 1px solid #333;
}

a,
input,
button,
select,
textarea {
    color: inherit;
}

a,
button {
    cursor: pointer;
}
/*
|--------------------------------------------------------------------------
| Classes
|--------------------------------------------------------------------------
*/
/* Este es el contenedor principal del grid, */
/* puede ser fijo ej. width: 940px */
/* o puede ser de ancho variable ej. max-width:940px */
/* EL VALOR SE DEBE MODIFICAR SEGUN LAS NECESIDADES DEL PROYECTO */

body {
    min-width: 1000px;
}

.container {
    max-width: 1200px;
    min-width: 960px;
    margin: 0 auto;
}
/* Aqui se corrige el espacio para poder tener columnas anidadas */
/* EL VALOR DEBE SER IGUAL AL ESPACIO HORIZONTAL ENTRE COLUMNAS */
/* PERO EN NEGATIVO */

.row {
    margin: 0 -10px;
}
/* Aqui se define el espacio horizontal que hay entre columnas */
/* EL VALOR SE DEBE MODIFICAR SEGUN LAS NECESIDADES DEL PROYECTO */

.container,
[class^="col-"],
[class*=" col-"] {
    padding: 0 10px;
}
/* Aqui se definen los estilos de columna */
/* si el contenedor principal es fijo las columnas seran fijas, */
/* si es de ancho variable, tambien lo seran las columnas */

[class^="col-"],
[class*=" col-"] {
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* Aqui se definen los tamanos para las 12 columnas del grid */
/* se pueden crear tamanos de columna personalizados, para */
/* esto tienes que crear una clase cuyo nombre */
/* inicie con "col-" y definiendo un tamano para */
/* la nueva columna */

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}
/* clearfix */

.clearfix:after,
.container:after,
.row:after {
    content: "";
    display: table;
    clear: both;
}
/*
|--------------------------------------------------------------------------
| Shared
|--------------------------------------------------------------------------
*/
/* Aqui se define el espacio vertical que hay */
/* entre elementos bloque, tambien se define */
/* la clase utilitaria "block" con el mismo proposito */
/* EL VALOR SE DEBE MODIFICAR SEGUN LAS NECESIDADES DEL PROYECTO */

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dd,
dl,
p,
pre,
table,
address,
blockquote,
hr,
.block {
    margin-top: 20px;
}
/* Aqui evitamos que el margen de un elemento bloque */
/* se junte con el padding de su contenedor, creando */
/* asi un espacio excesivo. La forma correcta de mantener */
/* el espacio seria agregar la clase "block" al contenedor */
/* para que este mismo tenga la separacion */

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
ul:first-child,
ol:first-child,
dd:first-child,
dl:first-child,
p:first-child,
pre:first-child,
table:first-child,
address:first-child,
blockquote:first-child,
hr:first-child {
    margin-top: 0;
}
/*
|
|GENERAL
|
*/
/*titulos*/

h1 {
    color: #09F;
    font-size: 22px;
}

h1 + p {
    margin-top: 0px;
}

p {
    line-height: 120%;
}

h3 {
    color: #04a4e0;
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}
/*Botones*/

.plus {
    color: #01A6E0;
    font-size: 12px;
    display: block;
    margin-top: 10px;
}

.plus > span {
    position: relative;
    top: 1px;
}
/*colores*/

.gray {
    background: #333;
}

.blue {}
/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.header {}

#back-header {
    background: #333;
	position:relative;
	z-index:9999;
}

header figure {
    float: left;
    margin-top: 20px
}

header nav a.active,
header nav a:hover {
    color: #009EE6;
    border: 1px solid #333;
    border-bottom: 4px solid #09F;
}

header nav a:hover {
    border-top: 1px solid #09F;
    border-right: 1px solid #09F;
    border-bottom: 4px solid #333;
    border-left: 1px solid #09F;
}

header nav a:last-child {
    margin-right: 0;
}

header nav a ul {
    display: none;
}
/* MENU */

header nav {
    float: right;
    margin-top: 30px;
    margin-top: 65px;
}

header nav li a {
    display: block;
    font-size: 13px;
    color: #b7b7b7;
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid #333;
    border-bottom: 4px solid #333;
    transition: all .3s linear;
}

header ul > li {
    float: left;
}

header nav li > ul li a {
    border: none;
    color: #000;
    padding: 12px;
    transition-duration: .2s;
}

header nav li > ul li a:hover {
    border: none;
    color: #FFF;
    background: #04A4E0;
}

header nav li > ul {
    display: none;
    background-color: #E5E5E5;
    position: absolute;
    z-index: 999999999;
    width: 70%;
    top: 98px;
    left: 0;
    padding: 0 20%;
}

header nav li:hover > ul {
    display: block;
}
/*
|--------------------------------------------------------------------------
| Content
|--------------------------------------------------------------------------
*/

.content {}

#scroll {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 590px;
}

#tools {
    width: 9999em;
    position: absolute;
    height: 590px;
}

.tool {
    float: left;
    /*width:960px;*/

    height: 590px;
    text-align: center;
    position: relative;
}

.services-list {
    position: absolute;
    right: 0x;
    bottom: 80px;
    z-index: 9999;
    width: 98%;
    background: rgba(0, 0, 0, .4);
    margin: 10px auto;
    padding: 1%;
}

.services-list ul {
    margin-left: 40%;
    float: right;
}

.services-list li {
    text-align: right;
    float: right;
}

.services-list li a {
    color: white;
    display: block;
    font-size: 14px;
    font-weight: normal;
    text-shadow: 4px 0px 7px rgba(0, 0, 0, 1);
    transition: all .5s linear;
    padding: 1px 8px 2px 0;
}

.services-list li a:hover {
    background: #09F;
    color: white;
    text-shadow: none;
}

.services-list li a:before {
    content: '/';
    color: #09F;
    margin-right: 4px;
}

.details {
    font-size: 18px;
    color: #555;
    margin-top: -20px;
    background-color: transparent;
    padding: 5px 148px;
}

#thumbs {
    background: #333;
    height: 90px;
    position: absolute;
    bottom: 0px;
    width: 100%;
}

.t {
    padding: 0 !important;
    border: 0 !important;
}

.t a:last-child {
    border: none;
}

.t a {
    box-sizing: border-box;
    transition: all .5s linear;
    color: white;
    display: block;
    width: 25%;
    float: left;
    height: 90px;
    cursor: pointer;
    padding: 24px 50px;
    text-align: center;
    font-size: 15px;
    text-transform: uppercase;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.t a:hover {
    background: rgba(0, 158, 230, 0.8);
}

.t a.active {
    cursor: default !important;
    background: rgba(0, 158, 230, 0.8);
}

blockquote.box h1 {
    display: block;
    text-align: center;
    color: #fff;
    background: #333;
}

blockquote.boxsub h1 {
    font-size: 15px;
    border: 1px solid #aaa;
    color: #aaa;
    display: block;
    line-height: 16px;
    padding: 15px;
    text-align: left;
    border-left: 0;
}

blockquote.boxsub h1:hover {
    background-image: url(../images/boton_bg.jpg);
    background-repeat: repeat-y;
    color: #04a4e0;
}

blockquote.boxsub .activo {
    background-image: url(../images/boton_bg.jpg);
    background-repeat: repeat-y;
    color: #04a4e0;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    position: relative;
}

blockquote.boxsub a {
    display: block;
    height: 47px;
}

blockquote.boxsub .texto2lineas {
    display: block;
    height: 63px;
}

.boxsub {
    margin-bottom: 20px;
}

hr {
    background-color: #ccc;
    height: 3px;
    margin-bottom: 29px;
    margin-top: 5px;
}

.linea {
    border-left: 1px solid #aaa;
    margin-left: -21px;
    padding-left: 21px;
    float: left;
}

blockquote.box p {
    padding: 20px;
    background: #E5E5E5;
    margin-top: 0;
    height: 81px;
}

blockquote.gray h1 {
    background: #333!important;
}

blockquote.gray p {
    background: url(../images/iconos/banner.jpg) no-repeat;
    background-size: cover;
}
/*
.sombra {
    position:absolute;
    width:1447px;
    height:288px;
    background-image:url(../images/fondo.png);
    background-repeat:no-repeat;
    bottom:90px;
    right:0;
}
.sombra2 {
    position:absolute;
    width:1447px;
    height:288px;
    background-image:url(../images/fondo2.png);
    background-repeat:no-repeat;
    bottom:90px;
    right:0;
}*/

.numeros {
    list-style: decimal;
    margin-left: 35px;
    margin-bottom: 30px;
}

.numeros li {
    margin-bottom: 10px;
}

.lista {
    list-style: disc;
    margin-left: 35px;
    margin-bottom: 30px;
}

.lista li {
    margin-bottom: 10px;
}

.am-container{
    float:left;
    position:relative;
    overflow:hidden;
}
.am-wrapper img{

    outline:none;
}

/*Image Gallery*/
/*.am-container a:last-child { display: none!important;}*/


/*Loader*/

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgb(249,249,249);
}
/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

.footer {
    background: none repeat scroll 0 0 #04a4e0;
    bottom: 0;
    height: 140px;
    position: relative;
    margin-top: 60px;
    width: 100%;
    padding-top: 5px;
}

.redes {
    background: none repeat scroll 0 0 #333;
    height: 53px;
    position: relative;
    width: 100%;
    text-align: right;
    padding-top: 6px;
}

.submenu {
    position: relative;
    margin: 10px;
    float: left;
    color: #fff;
    padding-top: 14px;
    font-size: 14px;
}

.submenu a:hover {
    text-decoration: underline;
}

.pie {
    float: right;
    color: #fff;
    font-size: 14px;
    padding-top: 68px;
    text-align: right;
}

.accordion h2 {
  cursor: pointer;
}

/*
|--------------------------------------------------------------------------
| Media Queries
|--------------------------------------------------------------------------
*/

@media (max-width: 1023px) {
    header nav li > ul {
        padding: 0;
        width: 100%;
    }
    header nav li > ul li {
        border-bottom: 1px solid #333;
        width: 100%;
    }
    .t a {
        font-size: 13px;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    header nav li > ul {
        padding: 0;
        width: 100%;
    }
    .t a {
        font-size: 13px;
        padding: 24px 20px;
    }
}
