body {
    box-sizing: border-box;

    /* ESTILOS DE MAQUETA ORIGINAL */
    font-family: 'Varela Round', sans-serif;
    font-size: 14px;
    line-height: 1.642857;
    font-weight: lighter;
    color: #727272;
    background: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

a,
a:link,
a:visited {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
}

.wrapper {
    overflow: hidden;
}

.clearfix::after {
    display: table;
    content: "";
    clear: both;
}

/* --- HELPERS --- */
.container {
    position: relative;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
}

.container-fluid {
    position: relative;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
}

img.responsive {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}

.relative-helper {
    width: 100%;
    height: 100%;
    position: relative;
}


/*  BOTÓN BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 0px;
    right: 20px;

    opacity: 0;
    visibility: hidden;

    transition: all .4s ease;

    z-index: 990;
}

.back-to-top.active {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}

.back-to-top__btn,
.back-to-top__btn:link,
.back-to-top__btn:visited {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;

    background-color: rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    font-size: 22px;

    transition: background-color .2s;
}

.back-to-top__btn:hover,
.back-to-top__btn:active {
    background-color: #cc0001;
}



/* --- HEADER NAVEGACIÓN SUPERIOR --- */

.header {
    position: fixed;
    top: -54px;
    left: 0;
    width: 100%;
    height: 52px;
    background-color: #000000;
    opacity: 0;
    z-index: 1000;

    transition: top .4s, opacity .4s;
}

.header.active {
    top: 0;
    opacity: 1;
}


a.menu-btn {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    display: block;
    background-color: #000000;
    line-height: 1;
    padding: 12px;
    transition: background-color .1s;
    color: #FFF !important;
}

a.menu-btn:hover,
a.menu-btn:active {
    background-color: #cc0001;
}


.logo {
    display: inline-block;
    margin-left: 60px;
}
.logo > a {
    height: 60px;
    line-height: 55px;
}
.logo > a > img {
    display: inline-block;
    height: 20px;
}


.leyenda {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: #FFFFFF;

}


.redes {
    float: right;
    height: 100%;

}
.redes > a {
    display: inline-block;
    height: 52px;
    line-height: 52px;
    padding: 0 8px;
    font-size: 18px;
}


/* MENU */
.menu-wrapper {
    position: fixed;
    top: 0;
    left: -280px;
    height: 100vh;
    width: 280px;

    z-index: 1100;

    transition: left .3s;
}
.menu-wrapper.active {
    left: 0;
}

.menu-background {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;

    z-index: 1090;

    visibility: hidden;
    opacity: 0;
    background: rgba(0,0,0,.4);

    transition: all .2s ease;
}
.menu-background.active {
    visibility: visible;
    opacity: 1;
}

.menu {
    position: relative;
    height: 100%;
    width: 100%;

    background-color: #212121;
}
.menu .close {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 10px;
    cursor: pointer;

    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #FFFFFF;
}
.menu > ul {
    /* LISTA */
    list-style: none;
    padding-top: 38px;
}
.menu > ul > li {
    /* ITEM */
    display: block;
}
.menu > ul > li > a {
    /* ANCHOR */
    display: block;
    padding: 8px 14px;

    font-size: 14px;
    font-weight: lighter;
    color: #FFFFFF;

    transition: .1s;
}
.menu > ul > li > a:active {
    color: #cc0001;
    background: #2e2e2e;
}


/* --- SECTIONS --- */
.section {
    margin-bottom: 60px;
}

/* Main Swipper */
.section.main {
    padding-top: 52px;
    background-color: #000000;
}

.section.destacado {
    margin-bottom: 0;
}

/* Intro */
.section.intro {

}

/* Donde Comprar */
.section.donde-comprar {
    padding-top: 72px;
    padding-bottom: 72px;
    background: linear-gradient(rgba(34, 34, 34, 0.85), rgba(34, 34, 34, 0.85)), url('../img/mapaDealers.jpg');
    margin-bottom: 0;
}



.section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 6px;
    word-break: break-word;
    color: #363738;

    margin-bottom: 40px;
}


/* --- MAIN SWIPER --- */
.swiper-main {
    position: relative;

}

.swiper-main .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84%;

    display: inline-block;
    vertical-align: middle;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 50px;
    line-height: 1;
    color: #fff;
    padding: 13px 0;
    margin-bottom: 38px;
    text-align: center;
}

.swiper-main .sw-button {
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    color:#102a3d;
    background: none;
    background-color: #FFFFFF;
    font-weight: lighter;
    box-shadow: 0 2px 7px rgba(50,50,50,.4);

    transition: color .4s, background-color .4s;
}

.swiper-main .sw-button:hover,
.swiper-main .sw-button:active {
    color:#FFFFFF;
    background-color: #cc0001;
}


/* --- DESTACADOS --- */
.destacado {
    position: relative;
    top: -50px;
    z-index: 900;
    text-align: center;
}
.destacado::after {
    display: table;
    content: ' ';
    clear: both;
}

.destacado-item {
    /*float: left;*/
    width: calc(calc(100% - 60px) / 3);
    padding: 16px 40px;
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(50,50,50,.2);
    cursor: pointer;
    display: inline-block;
}
.destacado-item:not(:last-child) {
    /*margin-right: 30px;*/
}

.destacado-item .img-wrapper {
    position: relative;
    line-height: .8;
    overflow: hidden;
    margin-bottom: 10px;
    /*min-height: 190px;*/
    max-height: 190px;
}
.destacado-item .img-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.4);
    opacity: 0;
    z-index: 100;
    transition: opacity .4s;
}

.destacado-item .img-wrapper > img {
    display: inline-block;
    width: 100%;
    transition: transform .4s;
}

.destacado-item .img-wrapper > img.destacado-on-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: transform .4s, opacity .4s;
    transition-delay: 0s;
}

.destacado-item h4 {
    color: #7b7c7c;
    font-size: 16px;
    font-weight: lighter;
    text-align: center;
}

/* DESTACADO HOVER EFFECT */
.destacado-item:hover .img-wrapper::after {
    opacity: 1;
}
.destacado-item:hover .img-wrapper > img {
    transform: scale(1.2);
}
.destacado-item:hover .img-wrapper > img.destacado-on-hover-img {
    opacity: 1;
    transition: opacity .4s;
    transition-delay: .2s;
}

/* --- INTRO --- */
.intro {
    font-family: 'Varela Round', sans-serif;
    font-size: 14px;
    line-height: 1.642857;
    font-weight: lighter;
    color: #727272;
    text-align: center;
}


/* --- PRODUCTOS --- */
.productos-container {
    /* display: inline-block; */
    text-align: center;
}
.productos-container::after {
    display: table;
    content: ' ';
    clear: both;
}

.productos-item {
    display: inline-block;
    width: 32.8%;
    overflow: hidden;
}

.producto {
    display: block;
    width: 100%;
    padding: 10px;
}

.producto .modelo {
    position: relative;
}

.producto .modelo > img {
    display: block;
    width: 100%;
}

.producto .modelo > .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    visibility: hidden;
    opacity: 0;

    z-index: 990;

    transition: visibility .4s, opacity .4s;
}

.producto .modelo > .overlay .ov-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background-color: #cc0001;
    color: #FFFFFF;
    height: 42px;
    width: 130px;
    line-height: 42px;
    text-align: center;
    border-radius: 2px;

    font-weight: 400;
    font-size: 16px;

}

.producto > h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.642857;
    color: #cc0001;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;

    height: 29px;
}

/* HOVER */
.producto .modelo:hover .overlay,
.producto .modelo:active .overlay {
    visibility: visible;
    opacity: 1;
}



/* --- SWIPER PRODUCTOS --- */
.swiper-producto {
    visibility: hidden;
    height: 0;
}

.swiper-producto .producto {
    padding: 0 0 40px 0;
}

.swiper-producto .swiper-pagination-bullets {
    height: 23px !important;
}

.swiper-producto .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 8px !important;
}
.swiper-producto .swiper-pagination-bullet-active {
    opacity: 1;
    background: #363738;
}





/* --- DONDE LO COMPRO --- */
.donde-comprar-wrapper {
    position: relative;
}


.map-module-left {
    float: left;
    width: 400px;
    height: 540px;
    overflow-y: auto;
    padding-right: 20px;
}
.map-module-right {
    float: left;
    width: calc(100% - 400px);
    height: 540px;
}
.map {
    width: 100%;
    height: 100%;
}


.donde-comprar-intro {
    color: #FFFFFF;
    margin-bottom: 20px;
}
.donde-comprar-intro h3 {
    font-size: 30px;
    font-weight: lighter;


}


/* Accordion */
.sucursal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    color: #FFF;
    padding: 5px 0 5px 10px;
    background-color: rgba(255,255,255,.1);

    cursor: pointer;
    transition: .2s;

    margin-bottom: 10px;
}
.sucursal-title.ui-state-active {
    color: #FF0000;
    background-color: rgba(255,255,255,.2);
}
.sucursal-title:focus,
.sucursal-title:active {
    outline: none;
}
.sucursal-content {
    padding: 10px 10px 10px 15px;
    background-color: rgba(255,255,255,.2);

    transform: translateY(-10px);
}
.sucursal-content ul {
    list-style: none;
}
.sucursal-content li {
    color: #FFF;
    padding-bottom: 6px;
    padding-top: 6px;

}
.sucursal-content li:not(:last-child) {
    border-bottom: solid 1px rgba(255,255,255,.4);
}
.sucursal-content li span:first-child{
    font-weight: bold;
    padding-right: 10px;
}
.sucursal-content li span:last-child{

}



.donde-comprar-container {
    color: #FFFFFF;
}

.donde-comprar-container .row {
    margin-bottom: 10px;
}
.donde-comprar-container .row::after {
    display: table;
    content: ' ';
    clear: both;
}

.donde-comprar-container .zona {
    float: left;
    width: calc(50% - 20px);
    text-align: right;

}

.donde-comprar-container .zona > span {
    display: inline-block;
    max-width: 165px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: bold;
    color: #FF0000;
    font-family: 'Montserrat', sans-serif;
}

.donde-comprar-container .lugar,
.donde-comprar-container .direccion {
    float: left;
    width: calc(50% - 20px);
}

.donde-comprar-container .lugar {
    margin-right: 20px;

    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    text-align: right;
    font-family: 'Varela Round', sans-serif;
}

.donde-comprar-container .direccion {
    font-weight: 300;
    font-size: 15px;
    font-family: 'Varela Round', sans-serif;
}




/* --- FOOTER --- */
.footer {
    padding: 46px 0 0 0;
}

.footer-top {
    margin-bottom: 30px;
}
.footer-bot {
    margin-bottom: 24px;
}

.footer-logo {

}
.footer-logo img {
    height: 22px;
}

.footer-redes {
    float: right;
}
.footer-redes a,
.footer-redes a:link,
.footer-redes a:visited {
    display: inline-block;
    padding: 0 8px;
    font-size: 18px;
}

.footer-copy {
    font-size: 12px;
    line-height: 1.642857;
    font-weight: lighter;
    color: #727272;
}


@media (max-width:1200px) {
    .container {
        width: 970px;
    }

    .donde-comprar-intro {
        /* width: 320px; */
    }
}

@media (max-width: 992px) {
    /* AJUSTE MAPA */
    .donde-comprar-wrapper {
        max-width: 680px;
        margin: 0 auto;
    }
    .map-module-left {
        width: 100%;
        height: auto;
        padding-right: 0px;
        margin-bottom: 20px;
        overflow-y: auto;
    }
    .map-module-right {
        float: left;
        width: 100%;
        height: 500px;
    }



    .container {
        width: 750px;
    }


    .leyenda {
        display: none;
    }

    /* --- SECTIONS --- */
    .section-title {
        font-size: 22px;
    }

    /* --- MAIN SWIPER --- */
    .swiper-main .caption {
        font-size: 40px;
    }


    /* --- DESTACADOS --- */
    .destacado {
        top: 0;
        margin-bottom: 60px;
    }

    /* --- DONDE COMPRAR --- */
    .donde-comprar-intro {
        position: initial;
        max-width: initial;
        width: auto;
        margin-bottom: 8px;
    }

    .donde-comprar-container .zona,
    .donde-comprar-container .lugar,
    .donde-comprar-container .direccion {
        width: 100%;
        text-align: left;
    }

    .donde-comprar-container .zona > span {
        max-width: initial;
    }

    .donde-comprar-container .lugar {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
    }

    /* --- MAIN SWIPER --- */
    .swiper-main .caption {
        font-size: 30px;
    }

    /* --- DESTACADOS --- */
    .destacado-item {
        width: 60%;
        margin-left: 20%;
        margin-right: 0 !important;

        margin-bottom: 10px;
    }
}

@media (max-width: 660px) {
    /* --- LOGO --- */
    .logo {
        margin-left: 40px;
    }
    .logo > a > img {
        height: 14px;
    }

    /* --- MAIN SWIPER --- */
    .swiper-main .caption {
        display: none;
    }

    .swiper-main .sw-button {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 12px;
    }




}


@media (max-width: 520px) {

    /* --- DESTACADOS --- */
    .destacado-item {
        width: 80%;
        /*margin-left: 10%;*/
        margin-left: 0 !important;
        margin-right: 0 !important;

        margin-bottom: 10px;
    }

    /* --- PRODUCTOS & SWIPPER PRODUCTOS --- */
    .productos-container {
        display: none;
    }

    .swiper-producto {
        visibility: visible;
        height: auto;
    }
}