﻿/*** CSS ***/

/*** 
====================================================================
	Fuentes Google
====================================================================
***/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800%7CShadows+Into+Light');
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,400italic,300italic');

/*** 
====================================================================
	Reset
====================================================================
***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

/*** 
====================================================================
	Global
====================================================================
***/

body {
    font-size: 13px;
    color: #292929;
    background: #ffffff;
    cursor: default;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #1d67b1;
}

    a:hover, a:focus, a:visited {
        text-decoration: none;
        outline: none;
    }

h1, h2, h3, h4, h5, h6 {
    position: relative;
    font-weight: normal;
}

input, button, select, textarea {
    resize: none;
}

a, input, button, select, textarea {
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

p {
    position: relative;
}

ul, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    border: 0;
}

/*** 
====================================================================
	Limpiar
====================================================================
***/

.limpiar:after, .limpiar:before {
    display: table;
    content: " ";
}

.limpiar:after {
    clear: both;
}

/*** 
====================================================================
	Comun
====================================================================
***/

.fondo {
    background: #1d67b1;
    color: #ffffff;
}

.color {
    color: #1d67b1;
}

.espacio {
    clear: both;
    height: 25px;
}

.separador {
    clear: both;
    margin-top: 20px;
    margin-bottom: 15px;
    border-top: 1px dotted #ccc;
    display: block;
}

.ocultar {
    display: none!important;
}

.alineado-izq {
    text-align: left!important;
}

.alineado-der {
    text-align: right!important;
}

.alineado-cen {
    text-align: center!important;
}

.lado-izq {
    position: relative;
    float: left;
}

.lado-der {
    position: relative;
    float: right;
}

.contenedor {
    position: relative;
    max-width: 1000px;
    padding: 0px 15px;
    margin: 0 auto;
}

.fila {
    margin-right: -15px;
    margin-left: -15px;
}

    .fila:before,
    .fila:after {
        display: table;
        content: " ";
        clear: both;
    }

[class*="col-"] {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    [class*="col-"] {
        float: left;
    }

    .col-12 {
        width: 100%;
    }

    .col-11 {
        width: 91.66666667%;
    }

    .col-10 {
        width: 83.33333333%;
    }

    .col-9 {
        width: 75%;
    }

    .col-8 {
        width: 66.66666667%;
    }

    .col-7 {
        width: 58.33333333%;
    }

    .col-6 {
        width: 50%;
    }

    .col-5 {
        width: 41.66666667%;
    }

    .col-4 {
        width: 33.33333333%;
    }

    .col-3 {
        width: 25%;
    }

    .col-2 {
        width: 16.66666667%;
    }

    .col-1 {
        width: 8.33333333%;
    }
}

.no-margin {
    margin: 0!important;
}

.no-padding {
    padding: 0!important;
}

.titulo {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

    .titulo h4 {
        position: relative;
        font-size: 16px;
        line-height: 16px;
        font-weight: bold;
        text-transform: uppercase;
        display: inline-block;
        z-index: 2;
        padding-bottom: 5px;
    }

.linea {
    position: relative;
    height: 1px;
    width: 17px;
    left: 9px;
    margin-bottom: 1px;
    background-color: #1d67b1;
}

    .linea:before {
        position: absolute;
        content: '';
        left: -9px;
        top: 0px;
        height: 1px;
        width: 7px;
        background-color: #1d67b1;
    }

.linea-b {
    position: relative;
    height: 1px;
    width: 17px;
    left: 9px;
    margin-bottom: 1px;
    background-color: #ffffff;
}

    .linea-b:before {
        position: absolute;
        content: '';
        left: -9px;
        top: 0px;
        height: 1px;
        width: 7px;
        background-color: #ffffff;
    }

/*** 
====================================================================
	Carga
====================================================================
***/

.precarga {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.9;
}

.proceso {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-position: center center;
    background-repeat: no-repeat;
}

.cargando {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    z-index: 100;
    font-size: 34px;
    line-height: 50px;
    color: #ccc;
    padding-right: 20px;
}

.cargando-contenedor {
    width: 100%;
    height: 46px;
    text-align: center;
}

.cargando-efecto {
    width: 46px;
    height: 46px;
    margin: 0 auto;
    border: 4px solid #1d67b1;
    border-radius: 50%;
    border-left-color: #e1e2e2;
    border-right-color: #e1e2e2;
    border-bottom-color: #1d67b1;
    animation: cssload-spin 1s infinite linear;
    -o-animation: cssload-spin 1s infinite linear;
    -ms-animation: cssload-spin 1s infinite linear;
    -webkit-animation: cssload-spin 1s infinite linear;
    -moz-animation: cssload-spin 1s infinite linear;
}

/*** 
====================================================================
	Formulario
====================================================================
***/

.form-control {
    margin-bottom: 10px;
}

    .form-control label {
        display: block;
        margin-bottom: 5px;
    }

    .form-control .ui-textbox {
        width: 100%;
        border: 2px solid #c6c6c6;
        border-radius: 5px;
        padding: 8px;
        color: #000000;
    }

        .form-control .ui-textbox:focus {
            border-color: #1d67b1;
        }

    .form-control .ui-dropdownlist {
        width: 100%;
        border: 2px solid #c6c6c6;
        border-radius: 5px;
        padding: 5px 7px 8px 7px;
        color: #000000;
    }

        .form-control .ui-dropdownlist:focus {
            border-color: #1d67b1;
        }

    .form-control .ui-requerido {
        color: #f44336;
        font-weight: bold;
        font-size: 14px;
    }

    .form-control .ui-mensaje-error {
        width: 100%;
        border-radius: 5px;
        border-left: 2px solid #f44336;
        background: #fff4f4;
        padding: 10px;
    }

    .form-control .ui-mensaje-ok {
        width: 100%;
        border-radius: 5px;
        border-left: 2px solid #00a92d;
        background: #f4fff5;
        padding: 10px;
    }

    .form-control .ui-botones {
        width: 100%;
    }

        .form-control .ui-botones .btn1 {
            padding: 6px 16px;
            background: #1d67b1;
            color: #ffffff;
            border: 2px solid #1d67b1;
            font-size: 13px;
            border-radius: 50px;
            display: inline-block;
            font-weight: bold;
            text-transform: uppercase;
        }

            .form-control .ui-botones .btn1:hover {
                background: #ffffff;
                color: #1d67b1;
            }

/*** 
====================================================================
	Superior Info
====================================================================
***/

.superior-info {
    position: relative;
}

    .superior-info ul.enlace-der li, .superior-info ul.enlace-der a {
        color: #ffffff;
    }

    .superior-info ul.enlace-izq,
    .superior-info ul.enlace-der {
        padding-top: 3px;
        padding-bottom: 3px;
    }

        .superior-info ul.enlace-izq > li {
            position: relative;
            float: left;
            margin-right: 30px;
            line-height: 24px;
            color: #ffffff;
        }

            .superior-info ul.enlace-izq > li .icon,
            .superior-info ul.enlace-der > li .icon {
                line-height: 24px;
                font-size: 14px;
                color: #ffffff;
            }

/*** 
====================================================================
	Superior Identidad
====================================================================
***/

.superior-identidad {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

    .superior-identidad .logo {
    }

    .superior-identidad .logo-externo {
        position: relative;
        float: left;
        top: -3px;
        margin-left: 15px;
        padding-left: 15px;
        border-left: 1px solid #e6e6e6;
    }

    .superior-identidad .info {
        position: relative;
        float: left;
        min-height: 50px;
        margin-left: 20px;
        margin-top: 10px;
        font-size: 13px;
        color: #222222;
        padding: 0px 40px 0px 0px;
    }

        .superior-identidad .info .info-icon {
            position: absolute;
            width: 35px;
            height: 35px;
            right: 0px;
            top: 0px;
            color: #ffffff;
            font-size: 18px;
            border-radius: 50%;
            text-align: center;
            background-color: #1d67b1;
        }

            .superior-identidad .info .info-icon:before {
                position: absolute;
                content: '';
                left: -5px;
                top: 50%;
                margin-top: -5px;
                border-top: 5px solid transparent;
                border-right: 6px solid #1d67b1;
                border-bottom: 5px solid transparent;
            }

            .superior-identidad .info .info-icon .fa-phone {
                font-size: 22px;
                padding-top: 7px;
            }

            .superior-identidad .info .info-icon .fa-envelope {
                font-size: 18px;
                padding-top: 9px;
            }

        .superior-identidad .info li {
            position: relative;
            margin: 0px 0px;
            font-size: 13px;
        }

            .superior-identidad .info li strong {
                display: block;
                font-weight: 800;
                color: #1d67b1;
                font-size: 12px;
                text-transform: uppercase;
            }

/*** 
====================================================================
	Superior Menu
====================================================================
***/

.superior-menu {
    position: relative;
}

    .superior-menu .menuenlace {
        border-top: 1px solid #ececec;
    }

    .superior-menu .menu {
        float: left;
        z-index: 80000;
    }

    .superior-menu .enlace {
        float: right;
    }

        .superior-menu .enlace li {
            float: left;
            margin-left: 10px;
            margin-top: 10px;
            margin-bottom: 9px;
        }

        .superior-menu .enlace .btn {
            padding: 6px 16px;
            background: #1d67b1;
            color: #ffffff;
            border: 2px solid #1d67b1;
            font-size: 13px;
            border-radius: 50px;
            display: block;
            font-weight: bold;
            text-transform: uppercase;
        }

            .superior-menu .enlace .btn:hover {
                background: #ffffff;
                color: #1d67b1;
            }

/*** 
====================================================================
	Superior Slider
====================================================================
***/

.superior-slider {
    position: relative;
    width: 100%;
}

    .superior-slider .slider {
        width: 100%;
    }

    .superior-slider .slider-imagen {
        position: relative;
        z-index: 1;
        height: 200px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }

    .superior-slider .slider-sombra {
        position: absolute;
        top: 0px;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.40) !important;
        z-index: 2;
        text-align: center;
    }

    .superior-slider .slider .slider-titulo {
        position: absolute;
        top: 25%;
        width: 100%;
        padding: 0 50px;
        z-index: 2;
        text-align: center;
        transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -webkit-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
    }

        .superior-slider .slider .slider-titulo h2 {
            font-size: 30px;
            line-height: 30px;
            font-weight: bold;
            color: #ffffff;
        }

    .superior-slider .slider .slider-botones {
        position: absolute;
        bottom: 25%;
        width: 100%;
        padding: 0 50px;
        z-index: 3;
        text-align: center;
        transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -webkit-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
    }

    .superior-slider .slider .btn1, .superior-slider .slider .btn2 {
        padding: 8px 30px;
        font-size: 14px;
        border-radius: 50px;
        font-weight: bold;
        text-transform: uppercase;
        margin: 5px;
    }

    .superior-slider .slider .btn1 {
        background: #1d67b1;
        color: #ffffff;
        border: 2px solid #1d67b1;
    }

    .superior-slider .slider .btn2 {
        background: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }

        .superior-slider .slider .btn1:hover, .superior-slider .slider .btn2:hover {
            background-color: rgba(0,0,0,0.40) !important;
            color: #ffffff;
        }

/*** 
====================================================================
	Contenido Titulos
====================================================================
***/

.contenido-titulo {
    position: relative;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #252728;
    background-position: left;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-image: url(../Img/elementos/fondo-1.jpg);
}

    .contenido-titulo h2 {
        color: #ffffff;
        font-size: 20px;
        font-weight: bold;
    }

    .contenido-titulo .ruta {
        margin-top: 10px;
    }

        .contenido-titulo .ruta li {
            float: left;
            color: #ffffff;
            font-size: 11px;
            font-style: italic;
        }

            .contenido-titulo .ruta li:after {
                color: #ffffff;
                font-family: "FontAwesome";
                content: "\f105";
                margin-left: 5px;
                margin-right: 5px;
            }

            .contenido-titulo .ruta li:last-child:after {
                content: " ";
                margin: 0;
            }

    .contenido-titulo span {
        color: #ffffff;
        font-size: 12px;
        font-weight: bold;
    }

/*** 
====================================================================
	Contenido Productos y Categoría
====================================================================
***/

.contenido-categoriacontenido {
    position: relative;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
}

.categorias {
    position: relative;
    z-index: 10;
    border: 1px solid #1d67b1;
    border-radius: 10px;
    background: #1d67b1;
}

    .categorias .relleno {
        margin: 10px 15px;
    }

    .categorias .titulo {
        margin-bottom: 5px;
    }

        .categorias .titulo h4 {
            color: #ffffff;
            font-size: 16px;
            line-height: 16px;
            display: block;
        }

    .categorias .opciones > li {
        border-bottom: 1px solid #397ec3;
    }

        .categorias .opciones > li:last-child {
            border-bottom: 0;
        }

    .categorias .opciones ul {
        display: none;
    }

    .categorias .opciones li {
        position: relative;
    }

    .categorias .opciones span {
        display: inline-block;
        padding: 7px 22px 7px 7px;
        color: #ffffff;
        font-size: 13px;
        transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -webkit-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
    }

        .categorias .opciones span:before {
            position: absolute;
            content: '';
            left: 0;
            top: 15px;
            height: 1px;
            width: 2px;
            background-color: #ffffff;
            transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -webkit-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
        }

        .categorias .opciones span:hover {
            padding-left: 15px;
        }

            .categorias .opciones span:hover:before {
                width: 9px;
            }

    .categorias .opciones li.activo > a > span {
        text-decoration: underline;
    }

    .categorias .opciones button {
        position: absolute;
        right: 0;
        top: 7px;
        width: 20px;
        cursor: pointer;
        background: #3c7ebf;
        border: 1px solid #2261a0;
        border-radius: 3px;
    }

        .categorias .opciones button i {
            font-size: 12px;
            color: #ffffff;
        }

    .categorias .opciones li ul {
        padding-left: 10px;
        border-left: 1px dashed #397ec3;
        margin: 2px 0;
    }

        .categorias .opciones li ul span {
            font-size: 12px;
        }

.solicitud {
    position: relative;
    z-index: 10;
    border: 2px solid #1d67b1;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
}

    .solicitud .icono {
        float: left;
        width: 30px;
        padding: 5px;
    }

        .solicitud .icono i {
            color: #1d67b1;
            font-size: 30px;
        }

    .solicitud .total {
        float: left;
        margin-left: 20px;
        padding-top: 12px;
        font-weight: bold;
    }

.producto-catalogo .producto-item {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #d7d7d7;
}

.producto-catalogo .producto-etiqueta {
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    line-height: 1;
    z-index: 5;
    text-align: center;
}

    .producto-catalogo .producto-etiqueta + .producto-etiqueta {
        top: 40px;
    }

    .producto-catalogo .producto-etiqueta span {
        display: block;
        position: relative;
        padding: 5px;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        border-radius: 4px;
    }

        .producto-catalogo .producto-etiqueta span.destacado {
            background-color: #f44336;
        }

        .producto-catalogo .producto-etiqueta span.nuevo {
            background-color: #f44336;
        }

.producto-catalogo .producto-boton {
    position: absolute;
    top: 40%;
    z-index: 11;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

    .producto-catalogo .producto-boton .btn1 {
        padding: 5px 10px;
        background: #1d67b1;
        color: #ffffff;
        border: 2px solid #1d67b1;
        font-size: 11px;
        border-radius: 10px;
        font-weight: bold;
        text-transform: uppercase;
        margin-right: 1px;
        opacity: 0;
    }

    .producto-catalogo .producto-boton .btn2 {
        padding: 5px 7px;
        background: #f44336;
        color: #ffffff;
        border: 2px solid #f44336;
        font-size: 11px;
        border-radius: 10px;
        font-weight: bold;
        text-transform: uppercase;
        margin-left: 1px;
        opacity: 0;
    }

    .producto-catalogo .producto-boton .btn1:hover {
        background: #ffffff;
        color: #1d67b1;
    }

    .producto-catalogo .producto-boton .btn2:hover {
        background: #ffffff;
        color: #f44336;
    }

.producto-catalogo:hover .producto-boton .btn1,
.producto-catalogo:hover .producto-boton .btn2,
.producto-catalogo:hover .producto-boton .btn1,
.producto-catalogo:hover .producto-boton .btn2 {
    opacity: 1;
}

.producto-catalogo .producto-imagen {
    position: relative;
}

    .producto-catalogo .producto-imagen .imagen {
        display: block;
    }

        .producto-catalogo .producto-imagen .imagen img {
            display: block;
            width: 100%;
            height: auto;
        }

.producto-catalogo .producto-categoria {
    color: #777;
    font-size: 10px;
    text-transform: uppercase;
    margin-top: 10px;
}

    .producto-catalogo .producto-categoria a {
        color: #777;
    }

        .producto-catalogo .producto-categoria a:hover {
            color: #1d67b1;
            text-decoration: none;
        }

.producto-catalogo .producto-nombre {
    color: #000;
    font-size: 13px;
    font-weight: bold;
}

    .producto-catalogo .producto-nombre a {
        color: #000;
        padding-right: 10px;
        padding-top: 2px;
        padding-bottom: 2px;
        display: block;
    }

        .producto-catalogo .producto-nombre a:hover {
            color: #1d67b1;
            text-decoration: none;
        }

.producto-catalogo .producto {
    position: relative;
}

.producto .imagen img {
    display: block;
    width: 100%;
    height: auto;
}

.producto .seccion {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #f44336;
}

.producto .division {
    margin: 15px auto;
    height: 3px;
    display: block;
    background: #e4e4e4;
    width: 30px;
    text-align: center;
}

.producto .borde {
    height: 1px;
    display: block;
    border-top: 1px dashed #e4e4e4;
    margin: 15px 0 10px 0;
}

.producto .descripcion {
	font-size: 13px;
    line-height: 22px;
}

.producto .cotizar {
    display: block;
    text-align: center;
    margin: 10px 0;
}

    .producto .cotizar .ui-cantidad {
        width: 100px;
        display: inline-block;
    }

    .producto .cotizar .btn {
        padding: 7px 25px;
        background: #f44336;
        color: #ffffff;
        display: inline-block;
        border: 2px solid #f44336;
        font-size: 18px;
        border-radius: 10px;
        font-weight: bold;
        text-transform: uppercase;
        margin-left: 1px;
    }

        .producto .cotizar .btn:hover {
            background: #ffffff;
            color: #f44336;
        }

.producto .categoria {
    font-size: 12px;
    text-align: center;
}

    .producto .categoria a {
        font-size: 12px;
        text-align: center;
    }

/*** 
====================================================================
	Contenido Detalle
====================================================================
***/

.contenido h2 {
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.contenido p {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 15px;
}

.contenido ul {
    margin-bottom: 15px;
}

.contenido li {
    font-size: 13px;
    line-height: 20px;
    list-style: disc;
    margin-left: 15px;
}

.contenido p.map-marker {
    font-size: 11px;
    line-height: 14px;
    font-weight: bold;
    margin: 0;
}

.contenido table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.contenido img {
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contenido td {
    border: 1px solid #ddd;
    padding: 3px;
}

.contenido .info {
    position: relative;
    margin-bottom: 15px;
    min-height: 36px;
}

    .contenido .info .icono {
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #1d67b1;
        color: #ffffff;
        font-size: 20px;
    }

        .contenido .info .icono i.fa-map-marker {
            padding-left: 15px;
            padding-top: 10px;
        }

        .contenido .info .icono i.fa-phone {
            padding-left: 12px;
            padding-top: 11px;
        }

        .contenido .info .icono i.fa-user {
            padding-left: 13px;
            padding-top: 10px;
        }

        .contenido .info .icono i.fa-clock-o {
            padding-left: 11px;
            padding-top: 10px;
        }

    .contenido .info .texto {
        margin-left: 50px;
    }

.contenido .mapa_titulo {
    display: block;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    line-height: 14px;
    background: #1d67b1;
    border: 3px solid #1d67b1;
    border-radius: 4px;
    padding: 5px;
}

.contenido .mapa_flecha {
    left: 50%;
    margin-left: -16px;
    width: 0;
    height: 0;
    position: absolute;
}

    .contenido .mapa_flecha.sup {
        bottom: -15px;
        border-left: 16px solid transparent;
        border-right: 16px solid transparent;
        border-top: 16px solid #1d67b1;
    }

    .contenido .mapa_flecha.inf {
        top: -15px;
        border-left: 16px solid transparent;
        border-right: 16px solid transparent;
        border-bottom: 16px solid #1d67b1;
    }

/*** 
====================================================================
	Contenido Servicios
====================================================================
***/

.contenido-servicios {
    position: relative;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #252728;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-image: url(../Img/elementos/fondo-1.jpg);
}

    .contenido-servicios .titulo h4 {
        font-size: 16px;
        line-height: 16px;
        color: #ffffff;
    }

.servicios {
    position: relative;
    margin-bottom: 10px;
}

    .servicios .servicio-area {
        position: relative;
        overflow: hidden;
        z-index: 20;
        border-radius: 10px;
    }

        .servicios .servicio-area .servicio-producto-imagen {
            position: relative;
        }

            .servicios .servicio-area .servicio-producto-imagen img {
                position: relative;
                width: 100%;
                display: block;
            }

    .servicios .servicio-area {
        position: relative;
        overflow: hidden;
    }

        .servicios .servicio-area .servicio-texto-area {
            width: 100%;
            background-color: #ffffff;
            border-top: 3px solid #207fdd;
            transition: all 0.9s ease;
            -moz-transition: all 0.9s ease;
            -webkit-transition: all 0.9s ease;
            -ms-transition: all 0.9s ease;
            -o-transition: all 0.9s ease;
            display: block;
        }

            .servicios .servicio-area .servicio-texto-area .servicio-texto-icono {
                float: left;
                color: #ffffff;
                font-size: 25px;
                line-height: 25px;
                background-color: #207fdd;
                width: 55px;
                text-align: center;
                padding: 6px;
            }

            .servicios .servicio-area .servicio-texto-area h3 {
                padding-top: 10px;
                padding-left: 60px;
                font-size: 14px;
                font-weight: 700;
                color: #333333;
                text-transform: uppercase;
            }

        .servicios .servicio-area .servicio-accion-area {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 100%;
            display: block;
            color: #ffffff;
            opacity: 0;
            background-size: cover;
            transition: all 500ms ease;
            -webkit-transition: all 500ms ease;
            -ms-transition: all 500ms ease;
            -o-transition: all 500ms ease;
            -moz-transition: all 500ms ease;
            -webkit-transform: scaleX(0);
            -ms-transform: scaleX(0);
            -o-transform: scaleX(0);
            -moz-transform: scaleX(0);
            transform: scaleX(0);
        }

            .servicios .servicio-area .servicio-accion-area .servicio-accion-capa {
                position: absolute;
                left: 0px;
                top: 0px;
                width: 100%;
                height: 100%;
                display: table;
                vertical-align: middle;
                padding: 10px 20px;
                text-align: center;
                background: rgba(32,127,211,0.85);
            }

                .servicios .servicio-area .servicio-accion-area .servicio-accion-capa .servicio-accion-contenido {
                    position: relative;
                    display: table-cell;
                    vertical-align: middle;
                }

            .servicios .servicio-area .servicio-accion-area .servicio-accion-contenido .icon {
                font-size: 36px;
                margin-bottom: 20px;
            }

            .servicios .servicio-area .servicio-accion-area .servicio-accion-contenido h3 {
                position: relative;
                font-weight: 700;
                font-size: 15px;
                text-transform: uppercase;
            }

                .servicios .servicio-area .servicio-accion-area .servicio-accion-contenido h3 a {
                    color: #ffffff;
                    transition: all 500ms ease;
                    -webkit-transition: all 500ms ease;
                    -ms-transition: all 500ms ease;
                    -o-transition: all 500ms ease;
                }

                    .servicios .servicio-area .servicio-accion-area .servicio-accion-contenido h3 a:hover {
                        color: #207fdd;
                    }

            .servicios .servicio-area .servicio-accion-area .servicio-accion-contenido .servicio-accion-texto {
                color: #ffffff;
                font-weight: 400;
                margin-top: 20px;
                margin-bottom: 20px;
            }

        .servicios .servicio-area:hover .servicio-texto-area {
            bottom: -100%;
        }

        .servicios .servicio-area:hover .servicio-accion-area {
            top: 0px;
            opacity: 1;
            -webkit-transform: scaleX(1);
            -ms-transform: scaleX(1);
            -o-transform: scaleX(1);
            -moz-transform: scaleX(1);
            transform: scaleX(1);
        }

    .servicios .btn1, .servicios .btn2 {
        padding: 8px 30px;
        border-radius: 50px;
        font-weight: bold;
        text-transform: uppercase;
        margin: 5px;
    }

    .servicios .btn1 {
        background: #1d67b1;
        color: #ffffff;
        border: 2px solid #1d67b1;
    }

    .servicios .btn2 {
        background: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }

        .servicios .btn1:hover, .servicios .btn2:hover {
            background-color: rgba(0,0,0,0.40) !important;
            color: #ffffff;
        }

/*** 
====================================================================
	Contenido Clientes y Marca
====================================================================
***/

.contenido-clientemarca {
    position: relative;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
}

/*** 
====================================================================
	Inferior Info
====================================================================
***/

.inferior-info {
    position: relative;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    background: #1e1e1e;
    color: #ffffff;
}

    .inferior-info .info {
        position: relative;
    }

    .inferior-info .titulo {
        font-size: 18px;
        line-height: 18px;
        font-weight: 700;
        text-transform: uppercase;
        color: #ffffff;
        background: #1e1e1e;
        margin-bottom: 33px;
    }

    .inferior-info .logo {
        position: relative;
        margin-bottom: 15px;
    }

    .inferior-info .descripcion {
        margin-bottom: 20px;
        font-size: 11px;
        line-height: 20px;
        color: #ffffff;
    }

    .inferior-info .mapa {
        text-align: center;
    }

    .inferior-info li {
        position: relative;
        margin-bottom: 0;
        margin-top: 15px;
    }

        .inferior-info li i.icono {
            position: absolute;
            top: 6px;
        }

        .inferior-info li p {
            padding-left: 15px;
            line-height: 24px;
        }

            .inferior-info li p span {
                color: #cccccc;
                display: inline-block;
                padding-right: 10px;
            }

    .inferior-info .formulario {
    }

    .inferior-info .campo {
        margin-bottom: 10px;
        text-align: center;
    }

    .inferior-info input[type="text"] {
        position: relative;
        display: block;
        width: 100%;
        padding: 9px;
        font-size: 14px;
        background: #303030;
        color: #ffffff;
        border: 1px solid transparent;
        transition: all 0.9s ease;
        -moz-transition: all 0.9s ease;
        -webkit-transition: all 0.9s ease;
        -ms-transition: all 0.9s ease;
        -o-transition: all 0.9s ease;
    }

        .inferior-info input[type="text"]:hover, .inferior-info input[type="text"]:focus {
            border-color: #1d67b1;
        }

    .inferior-info textarea {
        color: #ffffff;
        font-size: 14px;
        background: #303030;
        height: 60px;
        width: 100%;
        resize: none;
        padding: 9px;
        border: 1px solid transparent;
        transition: all 0.9s ease;
        -moz-transition: all 0.9s ease;
        -webkit-transition: all 0.9s ease;
        -ms-transition: all 0.9s ease;
        -o-transition: all 0.9s ease;
    }

        .inferior-info textarea:hover, .inferior-info textarea:focus {
            border-color: #1d67b1;
        }

    .inferior-info .btn1 {
        padding: 8px 30px;
        border-radius: 50px;
        font-weight: bold;
        text-transform: uppercase;
        margin: 5px;
    }

    .inferior-info .btn1 {
        background: #1d67b1;
        color: #ffffff;
        border: 2px solid #1d67b1;
    }

        .inferior-info .btn1:hover {
            background-color: rgba(0,0,0,0.40) !important;
            color: #ffffff;
        }

/*** 
====================================================================
	Inferior Copyright
====================================================================
***/

.inferior-copyright {
    position: relative;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    background: #000000;
}

    .inferior-copyright .texto {
        text-align: center;
        color: #ffffff;
    }

/*** 
====================================================================
	Componente Owl Carousel
====================================================================
***/

.owl-carousel .owl-nav {
    position: absolute;
    top: -48px;
    width: auto;
    right: 0;
    margin: 0;
    line-height: 1;
}

    .owl-carousel .owl-nav .disabled {
        opacity: .5;
        cursor: default;
    }

    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
        position: static;
        left: auto;
        right: auto;
        width: auto;
        height: auto;
        background-color: transparent !important;
        font-size: 18px;
        line-height: 1;
        min-width: 22px;
        color: #1d67b1 !important;
        padding: 0;
        margin: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

        .owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-prev:focus,
        .owl-carousel .owl-nav .owl-next:hover,
        .owl-carousel .owl-nav .owl-next:focus {
            background-color: transparent !important;
            color: #78a0c7 !important;
        }

    .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
        display: inline-block;
        position: absolute;
        width: 30px;
        height: 30px;
    }

    .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
        position: static;
        left: auto;
        right: auto;
        width: auto;
        height: auto;
        background-color: transparent !important;
        font-size: 18px;
        line-height: 1;
        min-width: 22px;
        color: #1d67b1 !important;
        padding: 0;
        margin: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

        .owl-carousel .owl-nav .owl-next:before {
            font-family: FontAwesome;
            content: "\f054";
            position: relative;
            left: 2px;
            top: 1px;
        }

        .owl-carousel .owl-nav .owl-prev:before {
            font-family: FontAwesome;
            content: "\f053";
            position: relative;
            left: -1px;
            top: 1px;
        }
