/*
Theme Name: Garino
Description: Sitio web Garino S.A.
Version: 1.0.4
Author: BadSalami
Author URI: http://badsalami.com
*/

/* Eric Meyer's reset */

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 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* 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-collapse: collapse;
    border-spacing: 0;
}


/* Clearfix */

.clearfix:after {
    content: '';
    display: table;
    clear: both;
}

/* ToDo: ie */


/* Styles */

html, body, select, option, button, input, textarea {
    font-family: 'Lato', Arial, Verdana, Helvetica, sans-serif;
    font-size: 100%;
    
    color: #666;
}

img, embed, object, video {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: #666;
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    -ms-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

a:hover {
    color: #00467f;
}

a.no-transition {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: color 0 ease-in;
    transition: none;
}

.page-container {
    position: relative;
    width: 100%;
}

.page-container:after {
    content: '';
    display: table;
    clear: both;
}

.page-container > div {
    width: 93.75%;
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
}

.two-cols > div {
    float: left;
    width: 48%;
}

.two-cols > div:first-child {
    float: right;
}

/* Buttons */

.std-button {
    display: block;
    
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background-color: #09f;
    padding: 1em;
    
    border-top: 1px solid #56bbff;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    
    cursor: pointer;
    
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: color 0 ease-in;
    transition: none;
}

.std-button:hover {
    background-color: #07c;
    color: #fff;
}


/* Header */

.header-container {
    border-bottom: 5px solid #ccc;
}

.header {
    height: 6.25em;
}

.header-logo {
    float: left; 
    margin-top: 1.75em;
}

.header-logo img {
    max-height: 35px;
}

.header-menu-list {
    float: right;
    font-size: 0.875em;
}

.header-menu-list > li {
    float: left;
}

.header-menu-list > li > a {
    display: block;
    margin-left: 2.75em;
    padding: 3.1em 0;
    text-transform: uppercase;
    color: #666;
}

.header-menu-list > li > a:hover {
    color: #09f;
}

.header-menu-list-home {
    display: none;
}

.header-menu-list-submenu {
    position: absolute;
    height: 0;
    overflow: hidden;
    opacity: 0;
    margin-left: 2.75em;
    background-color: #ccc;
    z-index: 1000;
    
    -webkit-transition: opacity 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out;
    -ms-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}

.header-menu-list > li:hover .header-menu-list-submenu {
    height: auto;
    opacity: 1;
}

.header-menu-list-submenu li a {
    display: block;
    padding: 1.5em 4em 1.5em 2.86em;
    color: #666;
    border-bottom: 1px solid #fff;
    
    background-image: url('images/header-submenu-bullet.png');
    background-position: 1.43em center;
    background-repeat: no-repeat;
}

.header-menu-list-submenu li a:hover {
    color: #09f;
    background-color: #d6d6d6;
    box-shadow: 0px 2px 2px #aaa;

}

.header-menu-dropdown {
    float: right;
    margin-top: 1.875em;
    padding: 0.7em 1em;
    
    background-color: #eee;
    
    font-size: 0.875em;
    text-transform: uppercase;
    color: #666;

    border: none;
    
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.header-menu-dropdown option span {
    padding: 0.7em 1em;
}

/* Content */

.title-container {
    background-color: #02204a;
    background-image: url('images/home-banner-background.png');
    background-position: center -210px;
    background-repeat: no-repeat;
    line-height: 5.9375em;
}

.content-title {
    height: 4.75em;
    font-size: 1.25em;
    color: #fff;
}

.content-sub-title {
    margin: 1.875em 0 2em;
    padding-bottom: 2em;
    font-size: 0.875em;
    text-transform: uppercase;
    color: #333;
    background-image: url('images/trabajos-hr.png');
    background-position: center bottom;
    background-repeat: repeat-x;
}

.content-sub-title-two-cols span {
    float: left;
    width: 48%;
}

.content-sub-title-two-cols span:first-child {
    float: right;
}


/* Footer */

.footer-container {
    margin-top: 3em;
    background-color: #eee;
    border-top: 1px solid #ccc;
}

.footer-info {
    padding: 2.5em 0;
}

.footer b {
    color: #004783;
}

.footer-contact-info {
    width: 31.25%;
    float: left;
    font-size: 0.8125em;
    line-height: 1.6em;
}

.footer-logo {
    display: block;
    margin-bottom: 0.8em;
}

.footer-extra {
    max-width: 400px;
    width: 60%;
    float: right;
}

.footer-contact-button {
    display: block;
    margin-bottom: 2em;
    padding: 1em 1.4em 1em 50px;
    
    background-image: url('images/footer-contact-icon.png');
    background-position: 1em;
    background-repeat: no-repeat;
    background-color: #fff;
    
    font-size: 0.875em;
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
    color: #004883;
    
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.footer-contact-button:hover {
    background-color: #999;
    background-image: url('images/footer-contact-icon-over.png');
    
    color: #fff;
    
    border-top-color: #666;
    border-left-color: #666;
}

.footer-unit {
    font-size: 0.6875em;
    line-height: 1.38em;
}

.footer-unit-logos {
    float: left;
    margin-right: 3.6%;
    margin-bottom: 0.3em;
}

.copyright-container {
    background-color: #021D42;
}

.copyright {
    font-size: 0.75em;
    color: #fff;
    padding: 1.4em 0;
}


/* Home */

.page-home-banner-container {
    background-color: #02204a;
    background-image: url('images/home-banner-background.png');
    background-position: center top;
    background-repeat: no-repeat;
}

.home-banner-container {
    width: 100%;
    max-width: 960px;
    
    margin-right: auto;
    margin-left: auto;
}

.home-banners {
    position: relative;
    width: 93.75%;
    opacity: 0;
}

.home-banner {
    position: relative;
    
    width: 100%;
    min-height: 25em;
}

.home-banner-text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    
    color: #fff;
}

.home-banner-text {
    width: 42%;
    font-size: 0.875em;
    line-height: 150%;    
}

.home-banner-text h2 {
    font-size: 2.286em;
    line-height: 1em;
    margin-top: 125px;
    margin-bottom: 20px;
}

.home-banner-button {
    display: inline-block;
    
    text-transform: uppercase;
    color: #fff;
    background-color: #09f;
    margin-top: 20px;
    padding: 1em;
    
    border-top: 1px solid #56bbff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.home-banner-button:hover {
    color: #09f;
    background-color: #fff;
    border-top: none;
}

.home-banner-image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 99;
}

.home-banner-subtitle-container {
    background-image: url('images/home-banner-subtitle-background.png');
    background-position: center top;
    background-repeat: no-repeat;
    
    padding-top: 20px;
    margin-top: -22px;
    
    z-index: 1000;
}

.home-banner-subtitle-container h2 {
    display: block;
    width: 90%;
    max-width: 600px;
    margin: 2em auto;
    
    font-size: 1.25em;
    line-height: 1.5em;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

/* bxSlider */
.bx-wrapper {
    position: relative;
    margin-bottom: 0;
}

.bx-wrapper .bx-prev {
    left: -140px;
    background: url(images/bx_controls.png) no-repeat 0 0;
}

.bx-wrapper .bx-next {
    right: -140px;
    background: url(images/bx_controls.png) no-repeat -40px 0;
}

.bx-wrapper .bx-prev:hover {
    background-position: 0 -40px;
}

.bx-wrapper .bx-next:hover {
    background-position: -40px -40px;
}

.bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    outline: 0;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
    display: none;
}

.bx-controls {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
}

.home-servicios-container {
    margin-top: 2.75em;
}

.home-servicios ul {
    width: 103.125% !important;
    max-width: 990px !important;
    margin: 0 -1.5151515% !important;
}

.home-servicios li {
    float: left;
    line-height: 1.25em;
    
    background-position: center top;
    background-repeat: no-repeat;
    
    width: 30.303030%;
    margin: 0 1.5151515% 2em;
       
    -webkit-transition: background 0.2s linear;
    -moz-transition: background 0.2s linear;
    -ms-transition: background 0.2s linear;
    -o-transition: background 0.2s linear;
    transition: background 0.2s linear;
}

.home-servicios li:hover {
    color: #fff;
    background-color: #09f;
}

.home-servicios-documentos { background-image: url('images/home-servicios-documentos-icon.png'); }
.home-servicios-documentos:hover { background-image: url('images/home-servicios-documentos-icon-over.png'); }
.home-servicios-seguridad { background-image: url('images/home-servicios-seguridad-icon.png'); }
.home-servicios-seguridad:hover { background-image: url('images/home-servicios-seguridad-icon-over.png'); }
.home-servicios-farma { background-image: url('images/home-servicios-farma-icon.png'); }
.home-servicios-farma:hover { background-image: url('images/home-servicios-farma-icon-over.png'); }
.home-servicios-envases { background-image: url('images/home-servicios-envases-icon.png'); }
.home-servicios-envases:hover { background-image: url('images/home-servicios-envases-icon-over.png'); }
.home-servicios-espectaculos { background-image: url('images/home-servicios-espectaculos-icon.png'); }
.home-servicios-espectaculos:hover { background-image: url('images/home-servicios-espectaculos-icon-over.png'); }
.home-servicios-promociones { background-image: url('images/home-servicios-promociones-icon.png'); }
.home-servicios-promociones:hover { background-image: url('images/home-servicios-promociones-icon-over.png'); }


.home-servicios li a {
    display: block;
    height: 6.7692em;
    overflow: hidden;
    padding: 68px 10% 2em;
    margin-bottom: 25px;
    
    font-size: 0.8125em;
    text-align: center;
    color: inherit;
}

.home-servicios li a span {
    display: block;
    margin: 1em auto 1.5em;
    font-size: 1.0769em;
    text-transform: uppercase;
    color: inherit;
}

.trabajos.trabajos-home {
    background-image: url('images/home-hr.png');
    background-position: center 0.4375em;
    background-repeat: repeat-x;
}


/* Portafolio */

.trabajos-container {
    margin: 1em 0 3.75em;
}

.trabajos-menu {
    margin-top: 1.875em;
    padding-bottom: 2em;
    background-image: url('images/trabajos-hr.png');
    background-position: center bottom;
    background-repeat: repeat-x;
}

.trabajos-menu li a {
    float: left;
    padding-left: 1.875em;
    
    font-size: 0.75em;
    text-transform: uppercase;
    color: #333;
}

.trabajos-menu li a:hover {
    color: #09f;
}

.trabajos-menu li a:before {
    content: '/';
    padding-right: 1.875em;
}

.trabajos-menu li:first-child a {
    padding-left: 0;
}

.trabajos-menu li:first-child a:before {
    content: '';
    padding-right: 0;
}

.trabajos-menu-selected {
    color: #09f;
}

.trabajos-menu-dropdown {
    margin-top: 1.875em;
    padding: 0.7em 1em;
    
    background-color: #eee;
    
    font-size: 0.875em;
    text-transform: uppercase;
    color: #666;
    
    border: none;
    
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.trabajos.trabajos-trabajos {
    padding-top: 1.875em;
}

.trabajos h3 {
    font-size: 0.875em;
    text-align: center;
    text-transform: uppercase;
    color: #333;
    
    width: 12em;
    margin: 0 auto 5em;
    padding: 0 2em;
    background-color: #fff;
}

.trabajos > ul {
    width: 103.125% !important;
    max-width: 990px !important;
    margin: 0 -1.5151515% !important;
}

.trabajos > ul > li {
    position: relative;
    float: left;
    overflow: hidden;
    
    background-position: center top;
    background-repeat: no-repeat;
    
    width: 30.303030%;
    margin: 0 1.5151515% 1em;
    
    overflow: hidden;
}

.trabajos-border {
    position: absolute;
}

.trabajos-imagen {
    position: absolute;
    background-color: #fff;
    z-index: 1;
}

.trabajos-imagen h5 {
    font-size: 0.75em;
    text-align: center;
    
    margin-top: 1.125em;
}

.trabajos-summary {
    position: relative;
    background-color: #02204a;
    padding: 1.875em;
    color: #fff;
}

.trabajos-summary h4 {
    font-size: 0.875em;
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

.trabajos-summary h6 {
    font-size: 0.75em;
    color: #09f;
    margin-bottom: 1.5em;
}

.trabajos-summary-text {
    font-size: 0.75em;
    line-height: 1.4em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trabajos-buttons {
    position: absolute;
    right: 0.9em;
    bottom: 0.9em;
    margin: 0 !important;
    width: 50% !important;
}

.trabajos-buttons li {
    float: right;
    width: 15px;
    margin-left: 2.2em;
}


/* Trabajo / Producto */

.trabajo {
    cursor: pointer;
}

.trabajo-container h2 {
    color: #333;
    text-transform: uppercase;
}

.trabajo-gallery {
    position: relative;
    float: right;
    width: 62.5%;
}

.trabajo-gallery img {
    position: absolute;
    width: 100% !important;
}

.trabajo-gallery .trabajos-border {
    z-index: 2;
}

.trabajo-summary {
    position: relative;
    float: left;
    width: 31.25%;
}

.trabajo-summary-full {
    width: 100% !important;
}

.trabajo-summary h3 {
    font-size: 0.875em;
    color: #09f;
    margin-bottom: 2em;
}

.trabajo-text {
    font-size: 0.8125em;
    line-height: 1.8em;
    margin-bottom: 2em;
}

.trabajo-navigation li {
    float: left;
    margin-right: 0.7%;
}


/* Servicios */

.servicios-menu > ul {
    float: left;
    width: 24.48%;
    margin-top: 3.625em;
}

.servicios-menu > ul > li {
    background-position: left 1em;
    background-repeat: no-repeat;
    
    -webkit-transition: background 0.2s linear;
    -moz-transition: background 0.2s linear;
    -ms-transition: background 0.2s linear;
    -o-transition: background 0.2s linear;
    transition: background 0.2s linear;
}

.servicios-menu-documentos { background-image: url('images/servicios-menu-documentos-icon.png'); }
.servicios-menu-documentos:hover { background-image: url('images/servicios-menu-documentos-icon-over.png'); }
.servicios-menu-seguridad { background-image: url('images/servicios-menu-seguridad-icon.png'); }
.servicios-menu-seguridad:hover { background-image: url('images/servicios-menu-seguridad-icon-over.png'); }
.servicios-menu-farma { background-image: url('images/servicios-menu-farma-icon.png'); }
.servicios-menu-farma:hover { background-image: url('images/servicios-menu-farma-icon-over.png'); }
.servicios-menu-envases { background-image: url('images/servicios-menu-envases-icon.png'); }
.servicios-menu-envases:hover { background-image: url('images/servicios-menu-envases-icon-over.png'); }
.servicios-menu-espectaculos { background-image: url('images/servicios-menu-espectaculos-icon.png'); }
.servicios-menu-espectaculos:hover { background-image: url('images/servicios-menu-espectaculos-icon-over.png'); }
.servicios-menu-promociones { background-image: url('images/servicios-menu-promociones-icon.png'); }
.servicios-menu-promociones:hover { background-image: url('images/servicios-menu-promociones-icon-over.png'); }

.servicios-menu > ul > li > a {
    display: block;
    padding: 1.5em 0 1.5em 36px;
    
    font-size: 0.8125em;
    color: #333;
    
    background-image: url('images/servicios-menu-hr.png');
    background-position: center bottom;
    background-repeat: repeat-x;
}

.servicios-menu > ul > li:first-child {
    background-position: left -0.20em;
}

.servicios-menu > ul > li:first-child > a {
    padding-top: 0;
}

.servicios-menu > ul > li > a > span {
    display: block;
    padding-right: 12px;
    
    background-image: url('images/servicios-menu-arrow-icon.png');
    background-position: right center;
    background-repeat: no-repeat;
}

.servicios-menu > ul > li.selected > a > span {
    background-image: url('images/servicios-menu-arrow-selected-icon.png');
}

.servicios-menu > ul > li > ul {
    background-image: url('images/servicios-menu-hr.png');
    background-position: center bottom;
    background-repeat: repeat-x;
    
    margin-top: 1em;
    padding-bottom: 1em;
}

.servicios-menu > ul > li > ul > li {
    font-size: 0.8125em;
    padding: 1em 0 1em 20px;
    
    background-image: url('images/servicios-menu-arrow-small-icon.png');
    background-position: left center;
    background-repeat: no-repeat;
}

.servicios-menu-dropdown {
    margin-top: 1.875em;
    padding: 0.7em 1em;
    
    background-color: #eee;
    
    font-size: 0.875em;
    text-transform: uppercase;
    color: #666;
    
    border: none;
    
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.servicios-content {
    float: right;
    width: 62.5%;
    margin-top: 3.625em;
}

.servicios-content h1 {
    margin-bottom: 2em;
    color: #333;
    text-transform: uppercase;
}

.servicios-content-intro {
    position: relative;
    
    font-size: 0.875em;
    
    margin-bottom: 2.625em;
    padding: 2em;
    
    background-color: #eee;
    border-bottom: 5px solid #ccc;
}

.servicios-content-text {
    line-height: 2em;
    min-height: 16em;
}

.servicios-content-intro img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.servicios-subcat {
    margin-bottom: 2.125em;
}

.servicios-subcat h2 {
    font-size: 0.875em;
    color: #fff;
    margin-bottom: 1.875em;
    padding: 1.4286em 0 1.4286em 50px;
    
    background-color: #02204a;
    background-image: url('images/servicios-subcat-logo.png');
    background-position: left center;
    background-repeat: no-repeat;
}

.servicios-subcat-text {
    margin-bottom: 2.125em;
    font-size: 0.8125em;
    line-height: 1.8em;
}

.servicios-subcat-extra {
    float: right;
    margin: 0 0 2.125em 2.125em;
    width: 48%;
}

.servicios-subcat-image {
    position: relative;
    width: 100%;
    margin-bottom: 1.875em;
}

.servicios-subcat-goup {
    position: relative;
    clear: both;
    text-align: right;
    height: 0.6875em;
    
    background-image: url('images/home-hr.png');
    background-position: left center;
    background-repeat: repeat-x;
}

.servicios-subcat-goup a {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 14px 0 10px;
    
    font-size: 0.6875em;
    text-transform: uppercase;
    
    background-color: #fff;
    background-image: url('images/goup.png');
    background-position: right center;
    background-repeat: no-repeat;
}


/* Contacto */

.contacto-data-container iframe {
    width: 100%;
    height: 20em;
    margin-bottom: 0.5em;
}

.contacto-data {
    font-size: 0.8125em;
    line-height: 2em;
}

.contacto-data h5 {
    margin-top: 2.5em;
    font-weight: bold;
    color: #00467f;
}

.contacto-form-container {
    margin-bottom: 4em; 
}

.contacto-form-container br {
    display: none;
    line-height: 0;
}

.contacto-form-container form {
    padding: 1.875em;
    background-color: #eee;
}

.contacto-form-container label {
    display: block;
    font-size: 0.8125em;
    font-weight: bold;
    margin-bottom: 0.25em;
}

.contacto-form-container input[type=text], .contacto-form-container input[type=email], .contacto-form-container select, .contacto-form-container textarea {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    
    margin-bottom: 1.85em;
    padding: 0.5em;
    
    font-size: 0.8125em;
    
    border-top: 1px solid #d9d9d9;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
}

.contacto-form-container textarea {
    height: 7.75em;
}

.contacto-form-container button, .contacto-form-container input[type=submit] {
    font-size: 0.875em;
    padding: 0.75em;
}

.contacto-form-container div.wpcf7-response-output {
    margin: 0;
}

.contacto-form-container span.wpcf7-not-valid-tip {
    border-width: 0;
    font-size: 0.8125em;
    text-align: center;
    left: 0;
    padding: 0;
    width: 100%;
    color: #f00;
}

.contacto-form-container .wpcf7-response-output {
    border-width: 1px;
    padding: 1em;
    font-size: 0.875em;
    text-align: center
}

.contacto-form-container .ajax-loader {
    display: block;
    margin: 1em auto 0 auto !important;
    width: auto;
}

.contacto-field-mensaje span.wpcf7-not-valid-tip {
    margin-top: -5em;
}

.contacto-form-title, .contacto-data-title {
    display: none;
    text-align: center;
}


/* Pages */

.pages-menu > ul {
    float: left;
    width: 24.48%;
    margin-top: 3.625em;
}


.pages-menu > ul > li > a {
    display: block;
    padding: 1.5em 0 1.5em;
    
    font-size: 0.8125em;
    color: #333;
    
    background-image: url('images/servicios-menu-hr.png');
    background-position: center bottom;
    background-repeat: repeat-x;
}

.pages-menu > ul > li:first-child > a {
    padding-top: 0;
}

.pages-menu > ul > li > a > span {
    display: block;
    padding-right: 12px;
    
    text-transform: uppercase;
    
    background-image: url('images/servicios-menu-arrow-icon.png');
    background-position: right center;
    background-repeat: no-repeat;
}

.pages-menu-dropdown {
    margin-top: 1.875em;
    padding: 0.7em 1em;
    
    background-color: #eee;
    
    font-size: 0.875em;
    text-transform: uppercase;
    color: #666;
    
    border: none;
    
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.pages-menu > ul > li.selected > a > span {}

.page-content {
    float: right;
    width: 62.5%;
    margin-top: 3.625em;
}

.page-content h1 {
    color: #333333;
    margin-bottom: 2em;
    text-transform: uppercase;
}

.page-content h1 {
    margin-bottom: 2em;
    color: #333;
    text-transform: uppercase;
}

.page-content-intro {
    position: relative;
    
    font-size: 0.875em;
    line-height: 2em;
    
    margin-bottom: 2.625em;
    padding: 2em;
    
    background-color: #eee;
    border-bottom: 5px solid #ccc;
}

.page-content p {
    font-size: 0.8125em;
    line-height: 2em;
    margin-bottom: 2em;
}

.page-content h2 {
    margin: 2em 0 1em;
    color: #09f;
    font-size: 0.8125em;
}

.page-content img.alignleft {
    float: left;
    margin: 2em 2em 2em 0;
}

.page-content img.alignright {
    float: right;
    margin: 2em 0 2em 2em;
}

.page-content img.aligncenter {
    display: block;
    margin: 2em auto 2em;
}

.page-content-client-list li {
    font-size: 0.8125em;
    
    width: 30%;
    float: left;
    padding: 1em 0 1em 20px;
    
    background-image: url('images/clientes-arrow-small-icon.png');
    background-position: left center;
    background-repeat: no-repeat;
}


/* Media queries */

@media screen and (max-width: 1240px) {
    .bx-wrapper .bx-prev {
        left: -50px;
    }

    .bx-wrapper .bx-next {
        right: -50px;
    }
}

@media screen and (max-width: 1064px) {
    .bx-wrapper .bx-prev {
        left: 0;
    }

    .bx-wrapper .bx-next {
        right: 0;
    }
}

@media screen and (min-width: 801px) {
    .header-menu-dropdown, .trabajos-menu-dropdown {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .header-menu-list, .trabajos-menu {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .servicios-menu-dropdown, .pages-menu-dropdown {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .home-banner-container {
        height: auto;
    }
    
    .home-banners {
        height: auto;
        background-image: none;
    }
    
    .home-banner {
        position: relative;
    }
    
    .home-banner-text {
        position: static;
        width: 100%;
        padding-top: 1.6em;
        text-align: center;
    }
    
    .home-banner-text {
        margin-bottom: 20px;
    }
    
    .home-banner-text h2 {
        margin-top: 0;
    }
    
    .home-banner-subtitle {
        position: relative;
        width: 111.154048221752326%;
        height: auto;
        margin: -24px -5.6% 0;
    }
    
    .home-banner-subtitle h2 {
        height: auto;
        margin: 0 auto;
        padding: 40px 1.2em 20px;
    }
    
    .home-banner-image {
        position: relative;
        width: 60%;
        margin: 0 20%;
    }
    
    .home-servicios ul {
        width: 102.840707336126696% !important;
        margin: 0 -1.381120088391686% !important;
    }

    .home-servicios li {
        width: 47.237759823216629%;
        margin: 0 1.381120088391686% 1em;
    }
    
    .trabajos > ul {
        width: 102.840707336126696% !important;
        margin: 0 -1.381120088391686% !important;
    }

    .trabajos > ul > li {
        width: 47.237759823216629%;
        margin: 0 1.381120088391686% 1em;
    }
    
    .trabajo-gallery, .trabajo-summary {
        float: none;
        width: 100%;
    }
    
    .trabajo-gallery {
        margin-top: 2em;
    }
    
    .servicios-menu, .pages-menu {
        display: none;
    }
    
    .servicios-content, .page-content {
        float: none;
        width: 100%;
    }
    
    .copyright {
        text-align: center;
    }   
}

@media screen and (max-width: 640px) {
    .page-content-client-list li {
        width: 42%;
    }
}

@media screen and (max-width: 540px) {
    .servicios-content-text {
        width: 100% !important;
    }
    
    .servicios-content-intro img {
        position: relative;
        width: 50%;
        margin: 0 auto;
        display: block;
    }
    
    .servicios-subcat-text {
        float: none;
        width: 100%;
    }
    
    .servicios-subcat-extra {
        float: none;
        width: 100%;
    }
    
    .servicios-subcat-image img {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .header {
        height: 128px;
    }
    
    .header-logo {
        display: block;
        float: none;
    }
    
    .header-logo img {
        display: block;
        margin: 0 auto;
    }
    
    .header-menu-dropdown, .trabajos-menu-dropdown, .servicios-menu-dropdown, .pages-menu-dropdown {
        display: block;
        float: none;
        width: 100%;
    }
    
    .home-banner {
        min-height: 0;
    }
    
    .content-title {
        text-align: center;
    }
    
    .footer-contact-info {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 2em;
    }
    
    .footer-extra {
        float: none;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-unit {
        text-align: center; 
    }
    
    .footer-unit-logos {
        display: block;
        float: none;
        margin: 0 auto 1.4em;
    }
    
    .two-cols > div {
        float: none;
        clear: both;
        width: 100%;
    }
    
    .content-sub-title-two-cols {
        display: none;
    }

    .contacto-form-title, .contacto-data-title {
        display: block;
    }
    
    .contacto-form-container button {
        display: block;
        margin: 0 auto;
    }
    
    .contacto-data {
        text-align: center;
    }
    
    .home-servicios li {
        width: 100% !important;
        margin: 0 0 1em !important;
    }
}

@media screen and (max-width: 420px) {
    .trabajos > ul {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
    
    .trabajos > ul > li {
        width: 100% !important;
        margin: 0 0 1em !important;
    }
}

@media screen and (max-width: 320px) {
    .footer-contact-button {
        font-size: 0.59em;
        padding: 1em 1em 1em 40px;
    }
    
    .home-servicios ul {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
    
    .page-content-client-list li {
        display: block;
        width: auto;
        float: none;
    }
}
