body.stop-scrolling {
    height: 100%;
    overflow: hidden;
}
.sweet-overlay {
    background-color: black;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    background-color: rgba(0,0,0,0.4);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    z-index: 10000;
}
.sweet-alert {
    background-color: white;
    width: 478px;
    padding: 17px;
    border-radius: 5px;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -256px;
    margin-top: -200px;
    overflow: hidden;
    display: none;
    z-index: 99999;
}
@media all and (max-width: 540px) {
    .sweet-alert {
        width: auto;
        margin-left: 0;
        margin-right: 0;
        left: 15px;
        right: 15px;
    }
}
.sweet-alert h2 {
    color: #575757;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 25px 0;
    padding: 0;
    line-height: 40px;
    display: block;
}
.sweet-alert p {
    color: #797979;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    position: relative;
    text-align: inherit;
    float: none;
    margin: 0;
    padding: 0;
    line-height: normal;
}
.sweet-alert fieldset {
    border: none;
    position: relative;
}
.sweet-alert .sa-error-container {
    background-color: #f1f1f1;
    margin-left: -17px;
    margin-right: -17px;
    overflow: hidden;
    padding: 0 10px;
    max-height: 0;
    webkit-transition: padding 0.15s, max-height 0.15s;
    transition: padding 0.15s, max-height 0.15s;
}
.sweet-alert .sa-error-container.show {
    padding: 10px 0;
    max-height: 100px;
    webkit-transition: padding 0.2s, max-height 0.2s;
    transition: padding 0.25s, max-height 0.25s;
}
.sweet-alert .sa-error-container .icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ea7d7d;
    color: white;
    line-height: 24px;
    text-align: center;
    margin-right: 3px;
}
.sweet-alert .sa-error-container p {
    display: inline-block;
}
.sweet-alert .sa-input-error {
    position: absolute;
    top: 29px;
    right: 26px;
    width: 20px;
    height: 20px;
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}
.sweet-alert .sa-input-error::before,
.sweet-alert .sa-input-error::after {
    content: "";
    width: 20px;
    height: 6px;
    background-color: #f06e57;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: 50%;
    margin-left: -9px;
}
.sweet-alert .sa-input-error::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.sweet-alert .sa-input-error::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.sweet-alert .sa-input-error.show {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.sweet-alert input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    height: 43px;
    margin-top: 10px;
    margin-bottom: 17px;
    font-size: 18px;
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.06);
    padding: 0 12px;
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.sweet-alert input:focus {
    outline: none;
    box-shadow: 0px 0px 3px #c4e6f5;
    border: 1px solid #b4dbed;
}
.sweet-alert input:focus::-moz-placeholder {
    transition: opacity 0.3s 0.03s ease;
    opacity: 0.5;
}
.sweet-alert input:focus:-ms-input-placeholder {
    transition: opacity 0.3s 0.03s ease;
    opacity: 0.5;
}
.sweet-alert input:focus::-webkit-input-placeholder {
    transition: opacity 0.3s 0.03s ease;
    opacity: 0.5;
}
.sweet-alert input::-moz-placeholder {
    color: #bdbdbd;
}
.sweet-alert input:-ms-input-placeholder {
    color: #bdbdbd;
}
.sweet-alert input::-webkit-input-placeholder {
    color: #bdbdbd;
}
.sweet-alert.show-input input {
    display: block;
}
.sweet-alert button {
    background-color: #AEDEF4;
    color: white;
    border: none;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    -webkit-border-radius: 4px;
    border-radius: 5px;
    padding: 10px 32px;
    margin: 26px 5px 0 5px;
    cursor: pointer;
}
.sweet-alert button:focus {
    outline: none;
    box-shadow: 0 0 2px rgba(128,179,235,0.5), inset 0 0 0 1px rgba(0,0,0,0.05);
}
.sweet-alert button:hover {
    background-color: #a1d9f2;
}
.sweet-alert button:active {
    background-color: #81ccee;
}
.sweet-alert button.cancel {
    background-color: #D0D0D0;
}
.sweet-alert button.cancel:hover {
    background-color: #c8c8c8;
}
.sweet-alert button.cancel:active {
    background-color: #b6b6b6;
}
.sweet-alert button.cancel:focus {
    box-shadow: rgba(197,205,211,0.8) 0px 0px 2px, rgba(0,0,0,0.0470588) 0px 0px 0px 1px inset !important;
}
.sweet-alert button::-moz-focus-inner {
    border: 0;
}
.sweet-alert[data-has-cancel-button=false] button {
    box-shadow: none !important;
}
.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
    padding-bottom: 40px;
}
.sweet-alert .sa-icon {
    width: 80px;
    height: 80px;
    border: 4px solid gray;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    margin: 20px auto;
    padding: 0;
    position: relative;
    box-sizing: content-box;
}
.sweet-alert .sa-icon.sa-error {
    border-color: #F27474;
}
.sweet-alert .sa-icon.sa-error .sa-x-mark {
    position: relative;
    display: block;
}
.sweet-alert .sa-icon.sa-error .sa-line {
    position: absolute;
    height: 5px;
    width: 47px;
    background-color: #F27474;
    display: block;
    top: 37px;
    border-radius: 2px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 17px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 16px;
}
.sweet-alert .sa-icon.sa-warning {
    border-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-warning .sa-body {
    position: absolute;
    width: 5px;
    height: 47px;
    left: 50%;
    top: 10px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    margin-left: -2px;
    background-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-warning .sa-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-left: -3px;
    left: 50%;
    bottom: 10px;
    background-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-info {
    border-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-info::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 29px;
    left: 50%;
    bottom: 17px;
    border-radius: 2px;
    margin-left: -2px;
    background-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-info::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -3px;
    top: 19px;
    background-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-success {
    border-color: #A5DC86;
}
.sweet-alert .sa-icon.sa-success::before,
.sweet-alert .sa-icon.sa-success::after {
    content: '';
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 120px;
    background: white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success::before {
    -webkit-border-radius: 120px 0 0 120px;
    border-radius: 120px 0 0 120px;
    top: -7px;
    left: -33px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
}
.sweet-alert .sa-icon.sa-success::after {
    -webkit-border-radius: 0 120px 120px 0;
    border-radius: 0 120px 120px 0;
    top: -11px;
    left: 30px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0px 60px;
    transform-origin: 0px 60px;
}
.sweet-alert .sa-icon.sa-success .sa-placeholder {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(165,220,134,0.2);
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-fix {
    width: 5px;
    height: 90px;
    background-color: white;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line {
    height: 5px;
    background-color: #A5DC86;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
    width: 25px;
    left: 14px;
    top: 46px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
    width: 47px;
    right: 8px;
    top: 38px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-custom {
    background-size: contain;
    border-radius: 0;
    border: none;
    background-position: center center;
    background-repeat: no-repeat;
}
@keyframes showSweetAlert {
    0% {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
@keyframes hideSweetAlert {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
    100% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
    }
}
.row {
    max-width: 1140px;
}
.column,
.columns {
    padding-left: 20px;
    padding-right: 20px;
}
.row .row {
    margin-left: -20px;
    margin-right: -20px;
}
.bgcover {
    background-position: center;
    background-size: cover;
}
.block {
    display: block;
    text-indent: -3000px;
    font-size: 0;
    overflow: hidden;
}
.absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.clearul {
    margin: 0;
    padding: 0;
}
.clearul li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.accordion .accordion-navigation > .content,
.accordion dd > .content {
    max-height: 0;
    display: block;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
}
.accordion .accordion-navigation > .content.active,
.accordion dd > .content.active {
    max-height: 1000px;
    opacity: 1;
}
p:last-child {
    margin-bottom: 0;
}
.valignout {
    display: table;
    height: 100%;
    width: 100%;
    table-layout: fixed;
}
.valignin {
    vertical-align: middle;
    height: 100%;
    width: 100%;
    display: table-cell;
}
figure {
    padding: 0;
    margin: 0;
}
.op0 {
    opacity: 0;
}
.parallax {
    background-attachment: fixed;
    background-repeat: no-repeat;
}
#cboxOverlay {
    background-color: rgba(8,48,84,0.95);
}
#colorbox,
#cboxOverlay,
#cboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
}
#cboxWrapper {
    max-width: none;
}
#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
    clear: left;
}
#cboxContent {
    position: relative;
}
#cboxLoadedContent {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#cboxTitle {
    margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
    cursor: pointer;
}
.cboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block;
    max-width: none;
    -ms-interpolation-mode: bicubic;
}
.cboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
}
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    -webkit-transition-property: -webkit-transform, left, top;
    -webkit-transition-duration: 0s;
    -webkit-transform: translate3d(0px,0,0);
    -webkit-transition-timing-function: ease;
    -moz-transition-property: -moz-transform, left, top;
    -moz-transition-duration: 0s;
    -moz-transform: translate3d(0px,0,0);
    -moz-transition-timing-function: ease;
    -o-transition-property: -o-transform, left, top;
    -o-transition-duration: 0s;
    -o-transform: translate3d(0px,0,0);
    -o-transition-timing-function: ease;
    -o-transform: translate(0px,0px);
    -ms-transition-property: -ms-transform, left, top;
    -ms-transition-duration: 0s;
    -ms-transform: translate3d(0px,0,0);
    -ms-transition-timing-function: ease;
    transition-property: transform, left, top;
    transition-duration: 0s;
    transform: translate3d(0px,0,0);
    transition-timing-function: ease;
}
.swiper-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}
.swiper-slide {
    float: left;
}
.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
}
.font1 {
    font-family: 'Lato', sans-serif;
}
h2,
h3,
h4,
h5 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}
body {
    font-family: 'Lato', sans-serif;
}
hr {
    margin: 40px 0;
}
.button,
button {
    background: #DC241B;
    color: #fff;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    padding: 12px 25px;
    font-size: 14px;
}
.button:hover,
.button:focus,
button:hover,
button:focus {
    background: #a90000;
}
.button.pdf,
button.pdf {
    padding-left: 50px;
}
.button.pdf:before,
button.pdf:before {
    width: 20px;
    height: 22px;
    content: '';
    display: block;
    background: url(img/pdf-ico.png) no-repeat;
    position: absolute;
    top: 10px;
    left: 15px;
}
.button.prev,
button.prev {
    padding-left: 40px;
}
.button.prev:before,
button.prev:before {
    width: 9px;
    height: 19px;
    content: '';
    display: block;
    background: url(img/prev.png) no-repeat;
    position: absolute;
    top: 10px;
    left: 15px;
}
.button.next,
button.next {
    padding-right: 40px;
}
.button.next:before,
button.next:before {
    width: 9px;
    height: 19px;
    content: '';
    display: block;
    background: url(img/next.png) no-repeat;
    position: absolute;
    top: 10px;
    right: 15px;
}
header {
    border-top: 2px solid #285A8F;
    height: 110px;
}
header h1 {
    margin: 0;
    position: absolute;
    top: 10px;
    left: 20px;
}
header h1 a {
    display: block;
    text-indent: -3000px;
    font-size: 0;
    overflow: hidden;
    background: url(img/logo.png) no-repeat;
    width: 224px;
    height: 94px;
}
header .tel {
    text-align: right;
    max-width: 50%;
    position: absolute;
    top: 10px;
    right: 20px;
    color: #DC241B;
    font-size: 20px;
    font-weight: bold;
}
header .cart {
    position: absolute;
    top: 60px;
    right: 20px;
}
header .cart .c {
    background: url(img/ico-pedido.png) no-repeat left;
    font-size: 14px;
    color: #285A8F;
    display: inline-block;
    text-transform: uppercase;
    padding-left: 30px;
}
header .cart .items {
    display: inline-block;
    margin-left: 20px;
}
nav {
    /*height: 50px !important;*/
    /*position: relative !important;*/
    background: #285A8F !important;
    /*margin: 0 !important;*/
    /*z-index: 100 !important;*/
}
nav ul{
    background: #285A8F !important;
}
nav ul li{
    background: #285A8F !important;
}
nav ul li a{
    background: #285A8F !important;
}
/*nav:before {
  content: '';
  display: block;
  background: #377AC4;
  width: 100%;
  height: 1px;
  top: 1px;
  position: absolute;
}*/
/*nav ul {
  margin: 0;
  padding: 0;
  float: left;
}
nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul.rightnav {
  float: right;
}
nav ul.rightnav li {
  margin-left: 1px;
}
nav ul.rightnav li a {
  background: #204671;
}
nav ul li {
  float: left;
  position: relative;
  transition: all 0.3s ease-out;
}
nav ul li a {
  display: block;
  line-height: 48px;
  padding: 0 20px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  height: 50px;
  transition: all 0.3s ease-out;
}
nav ul li a:hover {
  color: #fff;
  background-color: #204671;
}
nav ul li.dd >a {
  padding-right: 30px;
  background: url(img/dd.png) no-repeat right 10px center;
}
nav ul li.dd >a:hover {
  background-color: #204671;
}
nav ul li:hover {
  background-color: #204671;
}
nav ul li:hover >ul>li {
  max-height: 60px;
}
nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0px;
  background: #285A8F;
  margin: 0;
  padding: 0;
}
nav ul li ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li ul li {
  float: none;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
}
nav ul li ul li ul {
  top: 0;
  left: 100%;
  background-color: #204671;
}
nav ul li ul li:hover {
  overflow: visible;
}
nav ul li ul li:hover ul li {
  max-height: 60px;
}
nav ul li ul li:hover ul li a {
  line-height: 40px;
}
nav ul li ul a {
  text-transform: none;
  height: auto;
  padding: 5px auto;
  white-space: nowrap;
}
nav ul li form {
  position: relative;
  height: 50px;
  margin-top: 10px;
  width: 250px;
  margin: 0;
}
nav ul li form:before {
  height: 22px;
  top: 13px;
  left: 0;
  width: 1px;
  background: #fff;
  opacity: .7;
  position: absolute;
  content: '';
  display: block;
}
nav ul li form input[type="text"] {
  background: none;
  border: none;
  color: #fff;
  height: 50px;
  padding: 10px 50px 10px 20px;
  box-shadow: none;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
}
nav ul li form input[type="text"]:focus {
  background: rgba(255,255,255,0.2);
}
nav ul li form .send {
  background: url(img/search.png) no-repeat center;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  box-shadow: none;
}*/
.hero {
    position: relative;
}
.hero ul {
    margin: 0;
    padding: 0;
}
.hero ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.hero li {
    position: relative;
    height: 450px;
}
.hero li .bg {
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero li .bg:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.hero li .figure {
    width: 100%;
    max-width: 1100px;
    left: 50%;
    transform: translateX(-50%);
    background-position: right bottom;
    background-repeat: no-repeat;
    position: absolute;
    height: 100%;
}
.hero li .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero li .text h2 {
    color: #fff;
    font-size: 42px;
    text-transform: uppercase;
    font-weight: 900;
}
.hero li .text h2 span {
    display: block;
    font-size: 36px;
    text-transform: none;
    font-weight: 400;
}
.hero li .text p {
    color: #fff;
}
.hero .bx-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 10;
}
.hero .bx-controls .bx-pager {
    max-width: 1100px;
    margin: 0 auto;
}
.hero .bx-controls .bx-pager .bx-pager-item {
    float: left;
    margin-right: 5px;
}
.hero .bx-controls .bx-pager .bx-pager-item a {
    width: 12px;
    height: 12px;
    display: block;
    text-indent: -3000px;
    font-size: 0;
    overflow: hidden;
    background: #fff;
    border: 2px solid #fff;
}
.hero .bx-controls .bx-pager .bx-pager-item a.active {
    background: #DC241B;
}
.marcas {
    height: 90px;
    background: #EEEEEE;
}
.marcas .columns,
.marcas .row {
    height: 100%;
}
.marcas label {
    font-family: 'Lato', sans-serif;
    text-align: right;
    color: #333333;
    font-size: 16px;
    font-weight: 900;
    display: block;
    text-transform: uppercase;
}
.marcas img {
    display: inline-block;
    margin: 5px 10px;
}
.content {
    padding: 50px 0;
}
.content h3 {
    color: #285A8F;
    font-size: 22px;
    font-weight: 900;
}
.content h3.text-center {
    text-transform: uppercase;
    margin-bottom: 50px;
}
.dest.alt {
    margin: 0 -20px 10px;
}
.dest.alt .in {
    margin-bottom: 30px;
}
.destacados {
    position: relative;
    margin: 0;
    padding: 0;
}
.destacados li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.destacados li {
    box-sizing: border-box;
}
.destacados .in {
    padding: 0 20px;
}
.destacados a {
    border: 1px solid #CCCCCC;
    display: block;
    padding: 0 15px 15px;
    background: #EEEEEE;
    margin: 10px 0px 10px;
    box-shadow: 0 2px #CCCCCC;
    transition: all .3s ease-out;
}
.destacados a figure {
    height: 160px;
    background: #fff;
    margin: 0 -15px 15px;
    text-align: center;
}
.destacados a figure img {
    max-height: 160px;
}
.destacados a .h2 {
    color: #DC241B;
    display: block;
    font-weight: 900;
    font-size: 18px;
}
.destacados a .h2 span {
    display: block;
    font-size: 16px;
    font-weight: normal;
}
.destacados a p {
    font-size: 13px;
    color: #333;
}
.destacados a:hover {
    transform: translateY(-10px);
    border: 1px solid #285A8F;
    box-shadow: 0 2px #285A8F, 0 5px 30px rgba(0,0,0,0.3);
}
.dest {
    position: relative;
}
.dest .bx-prev,
.dest .bx-next {
    background: url(img/arrow.png) no-repeat;
    width: 45px;
    height: 88px;
    display: block;
    text-indent: -3000px;
    font-size: 0;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    opacity: .3;
    transition: all .3s ease-out;
}
.dest .bx-prev:hover,
.dest .bx-next:hover {
    opacity: .7;
}
.dest .bx-next {
    left: auto;
    right: -60px;
    transform: translateY(-50%) scaleX(-1);
}
.acerca {
    height: 400px;
    position: relative;
    text-align: center;
}
.acerca .bg {
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.acerca h3 {
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    text-transform: uppercase;
}
.acerca p {
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 10px;
}
.acerca .button {
    border: 1px solid #fff;
    background: none;
    margin: 0 5px 10px;
}
.acerca .button:hover {
    background: #fff;
    color: #285A8F;
}
.acerca .buttons {
    padding-top: 20px;
}
footer {
    padding: 30px 0;
    border-top: 10px solid #285A8F;
}
.home footer {
    border-top: none;
}
footer .footerlogo {
    width: 140px;
    height: 60px;
    background: url(img/logo.png) no-repeat;
    background-size: 100% auto;
    margin-bottom: 15px;
    display: block;
}
footer .copy {
    font-size: 13px;
}
footer h4 {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}
footer p {
    font-size: 15px;
    margin-bottom: 5px;
}
footer .tel {
    font-size: 22px;
    color: #DC241B;
    font-weight: bold;
}
.breadcrumb {
    height: 50px;
    background: #EEEEEE;
}
.breadcrumb ul {
    margin: 0;
    padding: 0;
}
.breadcrumb ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb ul li {
    display: inline-block;
    padding-right: 20px;
    margin-right: 10px;
    background: url(img/breadcrumb.png) no-repeat right;
    font-size: 16px;
    color: #333333;
    line-height: 48px;
}
.breadcrumb ul li a {
    color: #333333;
}
.breadcrumb ul li a:hover {
    color: #285A8F;
}
.breadcrumb ul li:last-child {
    background: none;
}
.detalle {
    padding: 50px 0;
}
.detalle h2 {
    font-size: 42px;
    color: #DC241B;
    font-weight: 900;
}
.detalle h2 span {
    display: block;
    text-transform: none;
    font-weight: normal;
    font-size: 36px;
}
.detalle .addbox {
    position: relative;
    height: 50px;
    background: #DDDDDD;
}
.detalle .addbox .button {
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 48px;
    padding-top: 0;
    padding-bottom: 0;
}
.detalle .addbox input {
    height: 40px;
    position: absolute;
    top: 5px;
    right: 210px;
    border: none;
    width: 60px;
}
.detalle .addbox label {
    position: absolute;
    top: 15px;
    right: 290px;
    text-transform: uppercase;
}
.detalle .gal {
    border: 1px solid #ddd;
    position: relative;
}
.detalle .gal li {
    margin-right: 40px;
    height: 360px;
    text-align: center;
}
.detalle .gal .bx-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100%;
    z-index: 10;
}
.detalle .gal .bx-controls .bx-pager .bx-pager-item {
    float: left;
    margin-right: 5px;
}
.detalle .gal .bx-controls .bx-pager .bx-pager-item a {
    width: 12px;
    height: 12px;
    display: block;
    text-indent: -3000px;
    font-size: 0;
    overflow: hidden;
    background: #ddd;
    border: 2px solid #ddd;
}
.detalle .gal .bx-controls .bx-pager .bx-pager-item a.active {
    background: #DC241B;
}
.detalle h3 {
    font-size: 22px;
    color: #DC241B;
}
.detalle .opcionales {
    margin: 0;
}
.detalle .opcionales li.accordion-navigation {
    position: relative;
    background: #eee;
    margin-bottom: 5px !important;
}
.detalle .opcionales li.accordion-navigation input {
    width: 60px;
    border: none;
    position: absolute;
    top: 5px;
    right: 60px;
}
.detalle .opcionales li.accordion-navigation label {
    position: absolute;
    top: 13px;
    right: 140px;
    text-transform: uppercase;
}
.detalle .opcionales li.accordion-navigation >a {
    font-size: 20px;
    color: #285A8F;
    height: 50px;
    padding: 0 20px;
    line-height: 48px;
    font-family: 'Lato', sans-serif;
}
.detalle .opcionales li.accordion-navigation >a:after {
    width: 25px;
    height: 13px;
    background: url(img/acc.png) no-repeat;
    display: block;
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
}
.detalle .opcionales li.accordion-navigation.active >a {
    background: none;
}
.detalle .opcionales li.accordion-navigation.active >a:after {
    transform: rotate(180deg);
}
.detalle .opcionales li.accordion-navigation.active .content {
    padding: 20px;
}
.detalle .opcionales li.accordion-navigation .content {
    background: none;
    padding: 0 20px;
    font-size: 14px;
}
.detalle .opcionales li.accordion-navigation .content p {
    font-size: 14px;
}
.detalle h4.text-center {
    color: #285A8F;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 40px;
}
.pageheader {
    height: 110px;
    margin-bottom: 40px;
    position: relative;
}
.pageheader .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}
.pageheader .bg:after {
    background: rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
}
.pageheader h2 {
    color: #fff;
    font-weight: 900;
    font-size: 42px;
}
.pageheader h2 span {
    display: block;
    font-weight: normal;
    font-size: 36px;
}
.pageheader+.content {
    padding-top: 0;
}
.content h3 {
    color: #DC241B;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.content .intro {
    padding-bottom: 50px;
}
.inst {
    height: 400px;
    padding: 0 30px 0 430px;
    position: relative;
}
.inst p {
    font-size: 14px;
}
.inst .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background-position: center;
    background-size: cover;
}
.inst.alt {
    background: #EEEEEE;
    text-align: right;
    padding: 0 430px 0 30px;
}
.inst.alt .img {
    left: auto;
    right: 0;
}
@media only screen and (max-width: 1100px) {
    .hero .bx-controls .bx-pager {
        padding: 0 20px;
    }
    .hero li .figure {
        width: 50%;
        left: 50%;
        background-position: bottom;
        background-size: contain;
        transform: none;
    }
    .dest {
        padding: 0 40px;
        margin: 0 -10px;
    }
    .dest .bx-next {
        right: 0;
        width: 30px;
    }
    .dest .bx-prev {
        left: 0;
        width: 30px;
    }
    .marcas {
        height: 110px;
    }
}
@media only screen and (max-width: 768px) {
    header .cart {
        right: 70px;
    }
    /*  .mobilemenu {
        width: 32px;
        height: 32px;
        display: block;
        top: 60px;
        right: 20px;
        z-index: 1501;
        position: fixed;
        padding: 0 7px;
        padding-top: 8px;
        transition: all .1s ease-out;
        background: #285A8F;
      }
      .mobilemenu span {
        display: block;
        height: 3px;
        background: #fff;
        margin-bottom: 4px;
        transform-origin: 50% 50%;
        transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
      }
      .menuopen .mobilemenu span:nth-child(1) {
        transform: rotate(45deg) translateX(5px) translateY(5px);
      }
      .menuopen .mobilemenu span:nth-child(2) {
        transform: rotate(-45deg) translateX(0px) translateY(0px);
      }
      .menuopen .mobilemenu span:nth-child(3) {
        opacity: 0;
      }
      .scroll .mobilemenu {
        top: 20px;
      }
      nav {
        height: 100%;
        left: -50%;
        width: 50%;
        background: #285A8F;
        position: fixed;
        overflow-y: auto;
        overflow-x: hidden;
        transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
        z-index: 1500;
        top: 0 !important;
        padding: 30px 0;
        box-shadow: 0 0 0 1000px rgba(0,0,0,0);
      }
      .menuopen nav {
        left: 0;
        box-shadow: 0 0 0 1000px rgba(0,0,0,0.5);
      }
      nav ul {
        float: none;
      }
      nav ul.rightnav {
        float: none;
      }
      nav ul li {
        float: none;
        padding: 0 20px;
        display: block;
        margin-bottom: 20px;
        height: auto !important;
      }
      nav ul li form {
        width: auto;
        background: rgba(255,255,255,0.1);
      }
      nav ul li form:before {
        display: none;
      }
      nav ul li a {
        padding: 10px 10px;
        line-height: 130% !important;
        color: #fff;
        height: auto !important;
        display: block;
      }
      nav ul li.dd>a {
        background: none;
      }
      nav ul li ul {
        position: relative;
        top: auto;
        left: auto;
      }
      nav ul li ul li {
        max-height: 1000px;
        padding-left: 20px;
      }
      nav ul li.quote a {
        padding: 10px 0;
        width: 100%;
        text-align: center;
      }*/
}
@media only screen and (max-width: 640px) {
    /*  nav {
        left: -75%;
        width: 75%;
      }
      nav .columns {
        padding: 0;
      }*/
    header {
        height: 130px;
    }
    header h1 {
        left: 5px;
    }
    header h1 a {
        width: 150px;
        background-size: 150px auto;
        height: 60px;
    }
    header .tel {
        font-size: 20px;
        right: 15px;
    }
    header .cart {
        top: 80px;
        left: 20px;
    }
    /*  .mobilemenu {
        top: 80px;
      }*/
    .hero li .text h2 {
        font-size: 24px;
    }
    .hero li .text h2 span {
        font-size: 20px;
    }
    .hero li .text p {
        font-size: 13px;
    }
    .hero li .figure {
        width: 80%;
        left: 10%;
    }
    .hero .valignout {
        height: auto;
        display: block;
        padding-top: 20px;
    }
    .marcas {
        height: auto;
        text-align: center;
        padding: 20px 0;
    }
    .marcas label {
        text-align: center;
        font-size: 14px;
    }
    .marcas label br {
        display: none;
    }
    .marcas img {
        margin: 5px;
    }
    .marcas .columns {
        padding: 0 10px;
    }
    .content h3 {
        font-size: 18px;
    }
    .content h3.text-center {
        margin-bottom: 20px;
    }
    .dest {
        padding: 0 30px;
    }
    .dest .in {
        padding: 0 10px;
    }
    .acerca {
        height: auto;
        padding: 20px 0;
    }
    .acerca p {
        font-size: 14px;
    }
    footer h4 {
        margin-top: 30px;
    }
    .breadcrumb {
        height: auto;
        padding: 10px 0;
    }
    .breadcrumb ul li {
        line-height: 160%;
        font-size: 13px;
        padding-right: 15px;
        margin-right: 5px;
    }
    .detalle {
        padding: 30px 0;
    }
    .detalle h2 {
        font-size: 26px;
    }
    .detalle h2 span {
        font-size: 20px;
    }
    .detalle .addbox input {
        right: 125px;
    }
    .detalle .addbox label {
        right: 195px;
    }
    .detalle h3 {
        font-size: 18px;
    }
    .detalle .opcionales li.accordion-navigation > a {
        height: auto;
        padding: 10px;
        font-size: 15px;
        padding-right: 80px;
        line-height: 150%;
    }
    .detalle .opcionales li.accordion-navigation > a:after {
        display: none;
    }
    .detalle .opcionales li.accordion-navigation input {
        right: 10px;
        width: 55px;
    }
    .detalle .opcionales li.accordion-navigation label {
        width: 39px;
        overflow: hidden;
        right: 70px;
        display: none;
    }
    .pageheader {
        height: 160px;
    }
    .pageheader h2 {
        font-size: 30px;
    }
    .pageheader h2 span {
        font-size: 24px;
    }
    .listanavi .button {
        font-size: 13px;
    }
    .listanavi .button.next {
        padding-left: 10px;
        padding-right: 35px;
    }
    .listanavi .button.prev {
        padding-right: 10px;
        padding-left: 35px;
    }
    .inst,
    .inst.alt {
        padding: 0 0px 20px;
        height: auto;
        text-align: left;
    }
    .inst .valignout,
    .inst.alt .valignout {
        padding: 0 20px;
    }
    .inst .img,
    .inst.alt .img {
        position: relative;
        width: 100%;
        height: auto;
        padding-bottom: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
    }
}
