﻿@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../fonts/Montserrat-Regular.otf') format('otf'), url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /*cambio*/
}

@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('../fonts/Montserrat-SemiBold.otf') format('otf'), url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /*cambio*/
}

@font-face {
    font-family: 'OpenSans-Regular';
    src: url('../fonts/OpenSans-Regular.otf') format('otf'), url('../fonts/OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /*cambio*/
}

@font-face {
    font-family: 'OpenSans-Semibold';
    src: url('../fonts/OpenSans-Regular.ttf') format('ttf'), url('../fonts/OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /*cambio*/
}
/*generales*/

/*SEMINUEVOS*/
/*.content-semi{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}*/
/*POPUP SEMINUEVOS*/
/* Fondo semitransparente */
    #popupSeminuevos {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        animation: fadeIn 0.4s ease;
        flex-direction: column;
    }

    /* Contenedor del popup */
    .popup {
      background: #fff;
      border-radius: 12px;
      width: 90%;
      max-width: 500px;
      text-align: center;
      padding: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
      animation: slideIn 0.3s ease;
    }

    /* Título */
    .popup h2 {
      margin-top: 0;
      color: #333;
    }

    /* Imagen clicable */
    .popup a img {
      width: 100%;
      border-radius: 8px;
      margin-top: 10px;
    }
    /* Botón de cierre */
.btnPopupSemi {
    margin-top: 15px;
    padding: 0 10px;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    width: 95%;
    text-align: right;
    max-width: 500px;
}
    .btnPopupSemi img{width:35px;}


    /* Animaciones */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes slideIn {
      from { transform: translateY(-30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }


/***** --- iconos whatsapp --- *****/
.icon-whatsapp {
    position: fixed;
    z-index: 19;
    left: 50px;
    bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #54C050;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

    .icon-whatsapp i {
        color: #fff;
        font-size: 20px;
    }

    .icon-whatsapp .ico-close {
        display: none;
    }

    .icon-whatsapp.active .ico-close {
        display: block;
    }

    .icon-whatsapp.active .ico-open {
        display: none;
    }

/* iconos whatsapp body */
.icon-whatsapp-body {
    position: fixed;
    z-index: 51;
    bottom: 125px;
    left: 45px;
    width: 158px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

    .icon-whatsapp-body .wrap {
        position: relative;
    }

        .icon-whatsapp-body .wrap ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .icon-whatsapp-body .wrap ul li {
                margin-bottom: 0;
            }

        .icon-whatsapp-body .wrap a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #fff;
            text-decoration: none;
            line-height: 1;
            background-color: #54C050;
            margin-bottom: 5px;
            padding: 10px 20px;
            border-radius: 50px;
            font-family: 'OpenSans-Regular';
        }

        .icon-whatsapp-body .wrap .name {
            font-size: 14px;
        }

            .icon-whatsapp-body .wrap .name small {
                font-size: 12px;
                display: block;
            }

        .icon-whatsapp-body .wrap a img {
            width: 20px;
        }

    .icon-whatsapp-body.active {
        bottom: 120px;
        opacity: 1;
        visibility: visible;
    }

.pulse-button {
    /* position: relative; */
    border: none;
    /* box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7); */
    box-shadow: 0 0 0 0 #54C050;
    border-radius: 50%;
    cursor: pointer;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 35px rgba(84,192,80, 0);
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 35px rgba(84,192,80, 0);
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 35px rgba(84,192,80, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 35px rgba(84,192,80, 0);
    }
}


#imgMapa {
    height: 400px;
}

.redes-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

h2.titleModel {
    color: #0f2832;
    margin: 0 0 40px 0;
    font-size: 24px;
    line-height: normal;
    position: relative;
    font-family: 'Montserrat-SemiBold';
}

    h2.titleModel:after {
        content: "";
        display: block;
        height: 3px;
        width: 60px;
        background-color: #017fff;
        position: absolute;
        bottom: -15px;
        left: 0;
    }

.redes-header i {
    font-size: 23px;
    color: #fff;
}

.versiones {
    background-color: #f5f6f7;
}

.ctnsem .btn {
    background-color: #017fff;
    color: #fff;
    border-radius: 25px;
    margin-left: 10px;
    font-size: 15px;
    padding: 5px 15px;
}

.ctnsem .img-div {
    min-height: 220px;
}
/*.item-semi{
	width: 23%;
}*/
.imgclose {
    width: 50px;
    position: absolute;
    z-index: 4;
    right: 45px;
    margin-top: -37px;
    cursor: pointer;
}

.cendiv {
    margin: 0 auto;
    width: 90%;
    padding: 21px;
    margin-top: 10%;
    text-align: justify;
}

.backLoadP, .backLoadP2 {
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    background-color: transparent;
    background-color: rgba(0,0,0,0.76);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CC000000,endColorstr=#CC000000);
    color: white;
    font-size: 18px;
    overflow-x: hidden;
    overflow-y: auto;
}

.datos-semi {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .datos-semi span {
        display: block;
        font-size: 14px;
    }

    .datos-semi font {
        font-size: 16px;
    }

.content-semi .item-semi {
    padding: 15px;
}

.content-semi .card-body {
    padding: 1.25rem 1.25rem 0;
}

    .content-semi .card-body a {
        margin: 20px auto;
        display: block;
    }

.content-semi .card {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 10px;
    border-radius: 5px;
    border: none;
    min-height: 390px;
}

    .content-semi .card h5 {
        font-size: 18px;
        height: 40px;
    }

/*.content-semi .card h5 span {
        }*/

.btn-inventario {
    margin: 35px auto;
    text-align: center;
}

    .btn-inventario .btn {
        width: auto;
        padding: .7rem 4.5rem;
        background-color: transparent;
    }
/*.ctnsem h2{
    text-align:center;
}*/
/*Seminuevos End*/
a, a:hover {
    text-decoration: none;
}

h3 {
    font-size: 24px;
    color: #0f2832;
    font-weight: 600;
    margin-bottom: 15px;
}

.btnSuzuki {
    color: #017fff;
    border: 1px solid #017fff;
    height: 45px;
    width: 250px;
    border-radius: 50px;
    padding: 9px 10px;
    margin: 20px 0;
}

.btnSuzukiW {
    color: #fff;
    border: 1px solid #fff;
    height: 45px;
    width: 250px;
    border-radius: 50px;
    padding: 9px 10px;
    margin: 20px 0;
}

    .btnSuzukiW:hover {
        color: #fff;
    }

section {
    overflow: hidden;
}

/*home*/

.bgColor01 {
    background-color: #ECF1F4;
}

.bgColor02 {
    background-color: #fff;
}

.bgColor03 {
    background-color: #0F2832;
}

.bgColor04 {
    background-color: #4B5E65;
}

.contentHome {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    padding-right: 100px;
}

.contentHome2 {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    padding-left: 100px;
}

.imgHome {
    width: 60%;
}

    .imgHome img {
        width: 100%;
        height: auto;
    }

.txtHome {
    max-width: 280px;
    width: 100%;
}

.txtWhite .txtHome {
    color: #fff;
}

.txtWhite h3 {
    color: #fff;
}

.bannersSU {
    margin: 0 auto;
    padding: 50px 0;
    max-width: 1250px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.divBanners p {
    color: #0f2832;
}

.divBanners a {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    color: #0f2832;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

    .divBanners a img {
        margin-bottom: 10px;
    }

.divBanners {
    width: 30%;
    text-align: center;
    padding: 30px;
}

/*header*/
header {
    background: linear-gradient(rgba(0,0,0,1),transparent);
    top: 0;
    width: 100%;
    z-index: 9;
    padding: 0 0 10px 0;
    position: absolute;
}

    header.fixed-menu {
        transition: background-color 250ms ease-in-out;
        position: fixed;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        -moz-backdrop-filter: blur(15px);
        -ms-backdrop-filter: blur(15px);
    }


.linkMovil {
    display: none;
}

.divSR {
    scrollbar-width: thin;
    scrollbar-color: #017fff #fff;
}

    /* Works on Chrome, Edge, and Safari */
    .divSR::-webkit-scrollbar {
        width: 10px;
    }

    .divSR::-webkit-scrollbar-track {
        background: transparent;
    }

    .divSR::-webkit-scrollbar-thumb {
        background-color: rgba(1, 127, 255, 0.2);
        border-radius: 20px;
        border: 3px solid transparent;
    }

/*slider home*/
.infoModelo {
    text-align: center;
    padding-bottom: 30px;
}

    .infoModelo span {
        font-size: 16px;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin: 0;
        font-weight: 400;
        text-align: center;
        display: block;
    }

    .infoModelo font {
        font-size: 60px;
        line-height: 70px;
        font-weight: 500;
        margin: 0;
        color: #0f2832;
        text-align: center;
        display: block;
        margin-top: 15px;
        font-family: 'Montserrat-Regular';
        font-weight: 600;
    }

        .infoModelo font sup {
            font-size: 33px;
            font-weight: 700;
        }

    .infoModelo p {
        padding: 20px;
        font-size: 20px;
        color: #017fff;
        text-align: center;
        margin: 0;
    }

    .infoModelo h2 {
        font-size: 38px;
        line-height: 38px;
        font-weight: 500;
        margin: 0;
        color: #4b5e65;
        text-align: center;
        margin-bottom: 10px;
        opacity: 0.9;
        font-family: 'Montserrat-SemiBold';
    }

.imgSliderS {
    width: 700px;
    height: 500px;
    margin: 0 auto;
}

    .imgSliderS .logoModelo {
        width: 400px !important;
        margin: 120px auto -30px;
    }

.backVideo {
    position: absolute;
    top: 0;
    z-index: -1;
}

.btnSuzukiB {
    border: 2px solid #FFF;
    width: 150px;
    border-radius: 25px;
    height: 50px;
    padding: 11px;
    color: #fff !important;
    letter-spacing: 0.5px;
    /*font-weight: 700;*/
    margin: 0 10px;
    background-color: #017fff;
    cursor: pointer !important;
}

    .btnSuzukiB:hover {
        color: #fff !important;
    }

.btnSuzukiBW {
    border: 2px solid #017fff;
    width: 150px;
    border-radius: 25px;
    height: 50px;
    padding: 11px;
    color: #017fff;
    letter-spacing: 0.5px;
    /*font-weight: 700;*/
    margin: 0 10px;
}

    .btnSuzukiBW:hover {
        color: #017fff;
    }

.slider-p-home.owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    background-color: #017fff;
    border-radius: 25px;
    width: 40px;
    display: flex;
    height: 40px;
    justify-content: center;
    align-items: center;
}

    .slider-p-home.owl-theme .owl-nav [class*=owl-]:hover {
        background-color: #017fff;
    }

.owl-next {
    top: 28%;
    right: 30%;
}

.owl-prev {
    top: 28%;
    left: 30%;
}

.backGradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,1),transparent);
    z-index: 10;
    position: absolute;
    top: 0;
}

/*MENU SUZUKI*/
.menu-suzuki {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    position: relative;
}

    .menu-suzuki .menuMas {
        position: absolute;
        left: 50%;
        width: 900px;
        top: 80px;
        transform: translate(-50%, 0%);
    }

    .menu-suzuki img.logo {
        /*width: 150px;*/
        width: 185px;
        height: 83px;
    }

    .menu-suzuki .divSR a.item-menu {
        color: #fff;
        padding: 7px 10px;
        border-radius: 11px;
        font-size: 15px;
        font-weight: 500;
    }

        .menu-suzuki .divSR a.item-menu:hover {
            background-color: rgba(255, 255, 255, 0.15);
        }

    .menu-suzuki .divSR {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        list-style: none;
        padding-left: 0;
        align-items: center;
        margin-bottom: 0;
    }

    .menu-suzuki ul li {
        font-size: 14px;
    }

    .menu-suzuki .btn {
        background-color: #017fff;
        color: #fff;
        border-radius: 25px;
        margin-left: 10px;
        font-size: 15px;
        padding: 5px 15px;
    }

.menu-movil {
    display: none;
}

/*MENU AUTOS*/
#menuAutos .modal-dialog {
    width: 100%;
    max-width: 1000px;
}

.content-models-menu {
    display: flex;
    flex-wrap: wrap;
}

.item-model {
    width: 25%;
    text-align: center;
    padding: 2%;
}

    .item-model img {
        width: 100%;
        margin-bottom: 10px;
        transition: transform .5s ease;
    }

    .item-model a:hover img {
        transform: scale(1.1);
    }

    .item-model h4 {
        font-size: 18px;
        margin-bottom: 5px;
        line-height: 20px;
        color: #0f2832;
    }

    .item-model p {
        color: #4b5e65;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .item-model span {
        display: block;
        font-size: 13px;
        color: #0f2832;
        /*font-weight: 800;*/
        font-family: 'OpenSans-Semibold';
    }

.divMas {
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    overflow: hidden;
    position: relative;
}

.cerrarMenu {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
}

    .cerrarMenu img {
        width: 35px;
        height: 35px;
        border-radius: 50px;
        padding: 5px;
        border: 1px solid #fff;
        cursor: pointer;
    }

.imgMas {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
}

.side02,
.side01 {
    width: 50%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.imgBack02 {
    height: 33.3%;
    background-image: url(/assets/img/atencion.png);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.side01 div {
    height: 33.3%;
    overflow: hidden;
    position: relative;
}

.imgBack03 {
    height: 33.3%;
    background-image: url(/assets/img/services.jpg);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.imgBack04 {
    height: 33.3%;
    background-image: url(/assets/img/comentarios.png);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.side01 a {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 5px;
    width: 100%;
    height: 100%;
    display: flex;
    transition: all ease 0.5s;
}

    .side01 a:hover,
    .side02 a:hover {
        transform: rotate(2deg) scale(1.2);
    }

.side02 a {
    width: 100%;
    height: 100%;
    display: flex;
    background-image: url(/assets/img/cotiza.bc454696.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;
    transition: all ease 0.5s;
}

.side02 span,
.side01 span {
    text-shadow: 0px 0px 2px #bdbcbc;
    font-size: 18px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    font-weight: 600;
    line-height: 28px;
    color: #fff;
    position: absolute;
    bottom: 5px;
    z-index: 1;
    width: auto;
    text-align: center;
    left: 50px;
}

.linksMas {
    width: 40%;
    padding: 25px;
}

    .linksMas span {
        font-weight: 600;
        font-size: 18px;
    }

    .linksMas ul {
        display: block;
        margin-bottom: 15px;
        list-style: none;
        padding: 0;
    }

        .linksMas ul li a {
            color: #000;
            font-size: 16px;
            padding-left: 20px;
            line-height: 40px;
        }

            .linksMas ul li a:hover {
                color: #017fff;
                text-decoration: none;
            }

.redes-header a img {
    width: 15px;
}

.imgMas {
    width: 60%;
}

.menu-button {
    display: none;
}

header .container {
    /*max-width: 1250px;*/
    max-width: 1336px;
    padding: 0 25px;
}

.btnClose {
    text-align: right;
    display: none;
}

    .btnClose img {
        width: 35px;
        height: 35px;
        background-color: #000;
        border-radius: 50px;
        padding: 5px;
        cursor: pointer;
    }

.cerrarMenu2 {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
}

    .cerrarMenu2 img {
        width: 35px;
        height: 35px;
        border-radius: 50px;
        padding: 5px;
        border: 1px solid #000;
        cursor: pointer;
    }
/*header info*/
.menu-top {
    background-color: #017fff;
    height: 35px;
}

    .menu-top .container {
        display: flex;
        /*justify-content: space-between;*/
        justify-content: flex-end;
        align-items: center;
        padding: 0 15px;
        height: 35px;
    }

.redes-header a {
    color: #fff;
    margin: 0 10px;
    font-size: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.tels {
    display: flex;
    align-items: center;
}

.tels2 {
    display: none;
}

.tels a {
    color: #fff;
    margin: 0 8px;
    display: flex;
    align-items: center;
    font-size: 12px;
}

    .tels a span {
        margin-left: 5px;
    }

    .tels a img {
        width: 15px;
        margin-right: 5px;
    }

    .tels a i {
        font-size: 15px;
        margin-right: 5px;
    }

.tels-movil {
    background-color: #017fff;
    padding: 10px;
    width: 300px;
    left: -15px;
    top: 31px;
    position: absolute;
}


.btn-movil {
    color: #fff;
    display: flex;
    align-items: center;
}

    .btn-movil:hover {
        color: #fff;
    }

    .btn-movil i {
        margin: 0 10px;
    }

.tels-movil a {
    color: #fff;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
    border-bottom: solid 1px #4aa4ff;
    padding-bottom: 5px;
    padding-top: 5px;
}

    .tels-movil a i {
        margin-right: 10px;
    }

    .tels-movil a img {
        width: 15px;
        margin-right: 10px;
    }

.tels2 {
    position: relative;
}

/*footer*/
.copy a {
    color: #fff;
}

footer {
    background-color: #030b0f;
    color: #fff;
    padding-top: 30px;
}

    footer .container {
        max-width: 1440px;
        padding: 0 30px;
    }

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 15px;
}

.footerItem {
    width: 25%;
}

    .footerItem span {
        font-size: 12px;
        line-height: 15px;
        display: block;
    }

/*.footerItem p {
    }*/

footer h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.separadorDiv {
    width: 100%;
    background-color: #0e313e;
    height: 1px;
    display: block;
    margin: 0 0 20px;
}

.columns {
    columns: 4;
    -webkit-columns: 4;
    -moz-columns: 4;
}

.menuFooter {
    width: 66.6%;
}

.columns {
    list-style: none;
    padding: 0;
}

    .columns li {
        margin-bottom: 8px;
    }

        .columns li a {
            color: #fff;
        }

footer a:hover {
    color: #017fff;
    text-decoration: none;
}

.footerItem a {
    color: #fff;
    display: flex;
    margin-bottom: 8px;
}

.redes {
    padding: 0;
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

    .redes li a {
        color: #fff;
        display: flex;
        width: 25px;
        height: 25px;
        /*background-color: #fff;*/
        border-radius: 30px;
        justify-content: center;
        align-items: center;
        margin: 0;
    }

/*.redes li a img{
    width: 20px;
    height: 20px;
    padding: 4px;
}*/

/*CRM*/
/*CRM*/
.menu-list-back {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
    .menu-list-back.show {
        visibility: initial;
        opacity: 1;
    }
    .menu-list-back.hide {
        visibility: hidden;
        opacity: 0;
    }
.menu-list {
    position: fixed;
    z-index: 25;
    bottom: 0;
    right: 10px;
    width: auto;
    background: transparent;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
    .menu-list.hidden {
        opacity: 0;
        visibility: hidden;
    }
    .menu-list.show {
        opacity: 1;
        bottom: 90px;
    }

    .menu-list a {
        display: flex;
        align-items: center;
        color: #fff;
        font-size: 14px;
        margin-bottom: 0;
        padding: 10px 10px;
        width: 150px;
        height: 50px;
        border-radius: 30px;
        border: none;
        background: #017fff;
        margin-top: 10px;
        text-decoration: none;
        line-height: 1;
    }
    .menu-list a i {
  display: inline-block;
  width: 15px;
  font-size: 25px;
  margin-right: 20px;
  margin-left: 10px;
}

.menu-icon {
    position: fixed;
    z-index: 30;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    display:none;

}
.menu-open.show {
    display: flex;
}
.menu-close.hide {
    display: none;
}
.menu-close.show {
    display: flex;
}
.menu-open.hide {
    display: none;
}

.menu-icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: #001D50;
    font-size: 18px;
    text-decoration: none;
    background: #017fff;
    border-radius: 50%;
}
.menu-icon a img{width:36px;}


.crm {
    position: fixed;
    top: calc(88% - 150px);
    right: 10px;
    width: 60px;
    z-index: 50;
}

    .crm > a {
        position: relative;
        display: flex;
        width: 50px;
        height: 50px;
        color: #fff;
        margin-bottom: 15px;
    }

    .crm a article {
        display: flex;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: #017fff;
        padding-left: 4px;
        border-radius: 30px;
        overflow: hidden;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .crm a article i {
            margin-right: 10px;
            margin-left: 10px;
        }

        .crm a article span {
            width: 150px;
            font-size: 14px;
            line-height: 1;
            white-space: nowrap;
            padding-left: 10px;
        }

    .crm a:hover article {
        position: absolute;
        right: 0;
        width: 200px;
        height: 50px;
    }


.footer-fin {
    background-color: #030b0f;
    color: #fff;
}

.divLink {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    max-width: 1440px;
    margin: 0 auto;
}

.link-xs a {
    color: #fff;
}

.linksHeader {
    scrollbar-width: thin;
    scrollbar-color: #001c71 #ff5100;
}

    /* Works on Chrome, Edge, and Safari */
    .linksHeader::-webkit-scrollbar {
        width: 10px;
    }

    .linksHeader::-webkit-scrollbar-track {
        background: transparent;
    }

    .linksHeader::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        border: 3px solid transparent;
    }

.logoFooter img {
    width: 150px;
}

.modelLink a font {
    margin-left: 5px;
    font-weight: 500;
}

/*modelos*/

.menu-suzuki .menuModelos {
    position: absolute;
    left: 50%;
    width: 100%;
    top: 80px;
    transform: translate(-50%, 0%);
    background-color: #fff;
    border-radius: 10px;
    padding: 50px 70px 15px 70px;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}


.divModelos {
    height: 75vh;
    overflow-x: hidden;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.5s ease-in-out;
    overflow-y: scroll;
    padding-bottom: 25px;
    z-index: 10;
}

    /* Works on Chrome, Edge, and Safari */
    .divModelos::-webkit-scrollbar {
        width: 10px;
    }

    .divModelos::-webkit-scrollbar-track {
        background: transparent;
    }

    .divModelos::-webkit-scrollbar-thumb {
        background-color: rgba(1, 127, 255, 0.2);
        border-radius: 20px;
        border: 3px solid transparent;
    }


.divItem {
    width: 21%;
    margin-bottom: 15px;
}

    .divItem span {
        line-height: 20px;
        color: #0f2832;
        text-align: center;
        display: block;
        margin-bottom: 5px;
        font-weight: 700;
    }

    .divItem p {
        text-align: center;
        color: #4b5e65;
        font-size: 14px;
        margin-bottom: 5px;
    }

.menuModelos h3 {
    margin-bottom: 0;
}

.divItem font {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #0f2832;
    line-height: 18px;
    font-weight: 500;
}

.divItem img {
    width: 100%;
}

.divModelos {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    /*justify-content: flex-start;*/
    justify-content: space-evenly;
}

/*COTIZACION*/

.selectModelo {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.modelC {
    width: 21%;
    margin: 0 2%;
    cursor: pointer;
}

    .modelC img {
        width: 100%;
    }

    .modelC p {
        text-align: center;
        text-transform: uppercase;
    }

        .modelC p:hover {
            color: blue;
        }

.tipoCotizacion label:first-child {
    margin-right: 15px;
    margin-top: 10px;
}

.tipoCotizacion .custom-control {
    display: inline-block;
    margin-right: 15px;
}

.title-border-blue {
    font-size: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

    .title-border-blue span {
        font-size: 20px;
        font-weight: 500;
    }

    .title-border-blue:before {
        margin: 0 20px 8px 0;
        height: 3px;
        content: " ";
        left: 0;
        position: absolute;
        text-shadow: none;
        z-index: -1;
        top: 50%;
        background-color: #017fff;
        width: 100%;
    }

.divForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 40px;
}

    .divForm .form-group {
        width: 100%;
    }

    .divForm .midSize {
        width: 48%;
    }

.titleForm {
    height: 65px;
    background-color: #017fff;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 10px;
    font-size: 24px;
    letter-spacing: 1px;
}

.custom-select,
.form-control {
    height: 45px;
}

.form-controltextarea {
    height: auto;
}

.modelC.filterColor img {
    filter: unset;
    -webkit-filter: unset;
    -moz-filter: unset;
    -ms-filter: unset;
    -o-filter: unset;
}

.modelC.grayColor img {
    filter: url(#grayscale);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: Gray();
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.finForm .custom-control label a {
    color: #017fff;
    font-weight: 500;
    cursor: pointer;
}

.custom-control-label {
    font-size: 14px;
}

.CotCredito div {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .CotCredito div .form-control,
    .CotCredito div .custom-select {
        width: 30%;
    }

/*cita de servicio*/

.formBlock {
    width: 24%;
}

    .formBlock .four-size {
        width: 100% !important;
    }

.form-control.four-size {
    width: 24%;
    margin-bottom: 1rem;
}

.selectAuto {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .selectAuto .custom-select {
        width: 32%;
        background-color: aliceblue;
    }

.divFechaCS,
.divServicios {
    width: 48%;
}

    .divFechaCS .fechaDato {
        margin-bottom: 1rem;
    }

    .divFechaCS .selHorarios {
        margin-bottom: 1rem;
    }

.legalSuzuki {
    font-size: 12px;
}

.divServicios textarea {
    margin-bottom: 1rem;
}

/*prueba de manejo*/
.midSize .fechaDato {
    margin-bottom: 1rem;
}

.midSize #Selhorario {
    margin-bottom: 1rem;
}

/*contacto*/

.divForm2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 40px;
}

    .divForm2 .form-group {
        width: 24%;
    }

    .divForm2 .custom-select {
        width: 49%;
        margin-bottom: 1rem;
    }

    .divForm2 .widhtCom {
        width: 49%;
    }

    .divForm2 .finForm {
        width: 49%;
    }

    .divForm2 .btn {
        margin: 20px auto 0;
    }

.frameMapa iframe {
    width: 100%;
}

.btnDist {
    max-width: 250px;
    margin: 25px auto 0;
}

    .btnDist .btn {
        width: 100%;
        margin: 15px 0 0;
    }

.container.divContacto {
    max-width: 1250px;
}

.horariosDiv {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .horariosDiv ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

.datosDist p {
    text-align: center;
    margin: 0;
}

    .datosDist p a {
        color: #017fff;
    }

.itemHorario {
    width: 25%;
}

    .itemHorario ul li {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

/*garantia suzuki*/
.sectionSuzuki {
    padding-top: 110px;
}

    .sectionSuzuki h1 {
        color: #0f2832;
        margin: 0 0 40px 0;
        font-size: 34px;
        line-height: normal;
        position: relative;
        font-family: 'Montserrat-SemiBold';
        margin-top: 50px;
    }

.contentGarantia.container {
    max-width: 1250px;
    padding: 0 20px;
}

.cardsGrantia {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 0;
}

.cardItemG {
    width: 48%;
    padding: 40px 35px;
    box-shadow: rgb(0 0 0 / 8%) 0px 8px 25px;
    border-radius: 5px;
    margin-bottom: 25px;
    text-align: center;
    min-height: 325px;
}

    .cardItemG p {
        font-size: 14px;
        margin: 0px;
        font-weight: 400;
        line-height: 23px;
        text-align: justify;
        font-family: 'OpenSans-Regular';
    }

    .cardItemG img {
        margin-bottom: 25px;
    }

    .cardItemG h5 {
        margin-bottom: 25px;
        font-family: 'OpenSans-Regular';
        color: #4b5e65;
    }

.infoSec01 p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: justify;
}

.infoSec01 span {
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    line-height: 28px;
    max-width: 450px;
    margin-top: 20px;
    margin-bottom: 50px;
    font-family: 'Montserrat-Regular';
    display: block;
}

.slideGarantia .nav-link {
    font-size: 14px;
    line-height: 1.715em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9e9e9e;
    font-family: 'OpenSans-Regular';
    padding: 10px 0 5px 0;
    margin-right: 20px;
}

    .slideGarantia .nav-link.active {
        color: #017fff;
        border-bottom: 2px solid #017fff;
    }

.slideGarantia {
    padding: 30px 0 40px;
}

    .slideGarantia .nav {
        margin-bottom: 20px;
    }

    .slideGarantia p {
        font-size: 15px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        text-align: justify;
    }

    .slideGarantia h6 {
        font-size: 1.25rem;
        font-family: 'Montserrat-Regular';
        font-weight: 600;
        line-height: normal;
        margin: 30px 0;
    }

    .slideGarantia ul li {
        font-size: 15px;
    }

/*protección*/

.divSection {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: justify;
}

    .divSection img {
        margin-top: -80px;
        margin-left: 35px;
    }

.infoProtec {
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.itemProteccion {
    width: 45%;
    margin-bottom: 25px;
}

.ulStyle,
.ulStyle2 {
    padding: 30px 0px 0px 35px;
    margin: 0;
    list-style: none;
    text-align: justify;
    counter-reset: li;
}

    .ulStyle li::before {
        content: counter(li) ".";
        color: #017fff;
        font-weight: 600;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

    .ulStyle li,
    .ulStyle2 li {
        counter-increment: li;
        color: #4b5e65;
        font-family: OpenSans-Regular;
        line-height: 32px;
        font-size: 16px;
        font-weight: 500;
        padding-bottom: 10px;
    }

        .ulStyle2 li::before {
            content: "\2022";
            color: #017fff;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

.txtSectionP {
    counter-increment: li;
    color: #4b5e65;
    font-family: OpenSans-Regular;
    line-height: normal;
    text-align: justify;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 15px;
}

.headerTxt {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    padding: 80px;
    text-align: center;
    margin: 25px 0;
    color: #4b5e65;
    line-height: 30px;
    font-size: 21px;
    font-weight: 600;
}

.videoTec {
    width: 100%;
    box-shadow: rgb(0 0 0 / 16%) 0px 5px 10px;
    border-radius: 5px;
}

.txtVideoTec {
    max-width: 575px;
    text-align: justify;
    margin: 25px auto;
}

    .txtVideoTec p {
        color: #4b5e65;
        text-align: justify;
        font-family: OpenSans-Regular;
        font-size: 14px;
    }

@media (max-width: 1400px) {
    .owl-next {
        right: 15%;
    }

    .owl-prev {
        left: 15%;
    }
}

@media (max-width: 1200px) {

    .menu-suzuki .divSR a.item-menu {
        padding: 7px 5px;
        font-size: 13px;
    }

    .menu-suzuki .btn {
        font-size: 13px;
    }

    .itemHorario {
        width: 30%;
    }

    /*proteccion*/

    .divSection span {
        max-width: 100%;
    }

    .divSection img {
        margin: 0;
    }
}


@media (max-width: 991px) {
    .divModelos {
        height: unset;
    }

    .imgSliderS {
        width: 650px;
        height: 450px;
    }

    .owl-next {
        right: 5%;
    }

    .owl-prev {
        left: 5%;
    }

    .imgSliderS .logoModelo {
        margin: 100px auto -10px;
    }

    /*footer*/

    .footerItem {
        width: 45%;
        margin-bottom: 20px;
    }

    /*menu*/

    .itemMenuResponsive {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        padding: 50px 25px;
        margin: 0;
        z-index: 3;
        width: 500px;
        height: 100vh;
        transform: translate3d(0,0,0);
        transition: right .4s ease-in-out .1s;
        background-color: #fff;
        transform: translate3d(0px, 0px, 0px);
    }

        .itemMenuResponsive.open {
            right: 0;
        }

    .menu-suzuki .divSR {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: flex-start;
        height: 75vh;
        overflow-x: hidden;
        -webkit-transition: all 0.6s ease-in-out;
        transition: all 0.5s ease-in-out;
        overflow-y: scroll;
        padding-bottom: 25px;
    }

        .menu-suzuki .divSR a.item-menu {
            font-size: 16px;
            color: #000;
        }

    .menu-button {
        display: block;
    }

        .menu-button i {
            font-size: 31px;
            color: #fff;
            margin-top: 7px;
            display: block;
            cursor: pointer;
        }

    header .container {
        max-width: 1440px;
        padding: 0 25px;
    }

    .btnClose {
        display: block;
        color: #017fff;
    }

    .menu-suzuki .menuMas {
        position: relative;
        left: unset;
        width: 100%;
        top: unset;
        transform: unset;
    }

    .linksMas {
        width: 100%;
        padding: 10px 25px;
    }

    .side01 {
        display: none;
    }

    .side02 {
        width: 100%;
        border-radius: 10px;
    }

    .imgMas {
        width: 100%;
        height: 200px;
    }

    .divMenu {
        width: 100%;
    }

    .side02 a {
        background-position-y: 32%;
    }

    .menu-suzuki .divSR a.item-menu {
        font-weight: 500;
        font-size: 18px;
        margin-bottom: 4px;
        display: inline-block;
    }

    .menu-suzuki .menuModelos {
        position: relative;
        left: unset;
        width: 100%;
        top: unset;
        transform: unset;
        padding: 0 25px;
        box-shadow: none;
    }

    .divItem {
        width: 46%;
        margin-bottom: 5px;
    }

    .menuModelos h3 {
        display: none;
    }

    .divItem p {
        display: none;
    }

    .menu-suzuki .btn {
        font-size: 14px;
        width: 45%;
        margin: 0;
        height: 45px;
        padding: 10px;
    }

    .divMas {
        padding-bottom: 10px;
        box-shadow: none;
    }

    .linkMovil {
        display: block;
    }

    .linksMas ul li a {
        line-height: 35px;
    }

    .cerrarMenu, .cerrarMenu2 {
        display: none;
    }

    .modelC {
        width: 30%;
        margin: 0 1.65%;
    }

    /*contacto*/
    .itemHorario {
        width: 45%;
        margin-bottom: 20px;
    }

    /*proteccion*/
    .itemProteccion {
        width: 100%;
        margin-bottom: 35px;
    }
}

@media (max-width: 768px) {

    .imgSliderS {
        width: 100%;
        height: 440px;
    }

        .imgSliderS .logoModelo {
            width: 200px !important;
            margin: 100px auto -30px;
        }

    .txtHome {
        max-width: none;
        width: 100%;
        order: 2;
        padding: 0 5% 20px;
        margin: 0 auto;
    }

    .imgHome {
        width: 100%;
        height: auto;
    }

    .divBanners {
        width: 48%;
    }

    .contentHome, .contentHome2 {
        padding-right: 0;
        padding-left: 0;
    }

    /*footer*/
    .logoFooter {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    /*header*/
    .tels a span {
        display: none;
    }

    /*cotizacion*/

    .modelC {
        width: 33.3%;
        margin: 0;
    }

    .divForm .midSize {
        width: 100%;
    }

    /*cita de servicio*/

    .form-control.four-size {
        width: 49%;
    }

    .formBlock {
        width: 49%;
    }

    .selectAuto .custom-select {
        width: 49%;
        margin-bottom: 1rem;
    }

    .divFechaCS, .divServicios {
        width: 100%;
    }

    /*Promociones*/
    .itemPromos {
        width: 100% !important;
        margin: 0 0 20px;
    }

    /*contacto*/
    .divForm2 .form-group {
        width: 49%;
    }

    .divForm2 .widhtCom {
        width: 100%;
    }

    .divForm2 .finForm {
        width: 100%;
    }


    /*garantia*/
    .cardItemG {
        width: 100%;
    }
}

@media (max-width: 575px) {

    .menu-icon {display: block;}
    .crm{display: none;}

    .infoModelo h2 {
        font-size: 30px;
    }

    .infoModelo font {
        font-size: 50px;
    }

    .imgSliderS .logoModelo {
        margin: 150px auto 10px;
    }

    .imgSliderS {
        width: 90%;
        /*height: 360px;*/
        height: 260px
    }

    .divBanners p {
        display: none;
    }

    .divBanners a {
        font-size: 14px;
    }

    .divBanners {
        width: 33.3%;
        border-right: 1px solid #ddd;
        padding: 20px 10px 5px;
    }


    .bannersSU {
        padding: 0;
    }

    .infoModelo font sup {
        font-size: 28px;
    }

    .slider-p-home.owl-theme .owl-nav [class*=owl-] {
        width: 30px;
        height: 30px;
    }

    .owl-next {
        right: 2%;
    }

    .owl-prev {
        left: 2%;
    }

    .divBanners a img {
        width: 55px;
        height: 55px;
    }

    /*footer*/

    .footerItem {
        width: 100%;
    }

    .divLink {
        justify-content: center;
    }

    .itemMenuResponsive {
        width: 100%;
    }

    /*header*/
    .menu-top .container {
        padding: 0;
    }

    /*COTIZACION*/
    .modelC {
        width: 50%;
    }

    .finForm .btnSuzukiB {
        width: 100%;
        margin: 0;
    }

    .CotCredito div .form-control,
    .CotCredito div .custom-select {
        width: 100%;
        margin-bottom: 1rem;
    }

    /*cita de servicio*/

    .form-control.four-size {
        width: 100%;
    }

    .formBlock {
        width: 100%;
    }

    .selectAuto .custom-select {
        width: 100%;
    }

    .tels a {
        margin: 0 5px;
        font-size: 10px;
    }


    /*contacto*/

    .itemHorario {
        width: 100%;
    }

    .divForm2 .form-group {
        width: 100%;
    }

    .divForm2 .custom-select {
        width: 100%;
    }

    .divForm2 .btn {
        width: 100%;
    }

    .btnDist {
        max-width: 100%;
        padding: 0 25px;
    }

    /*protección*/
    .divSection img {
        width: 100%;
    }

    .headerTxt {
        padding: 60px 20px;
        line-height: 28px;
        font-size: 19px;
    }
}

@media (max-width: 481px) {


    .imgHome {
        padding: 0 15px;
    }
}


/*promociones*/

.PromosCont {
    display: flex;
    flex-wrap: wrap;
}

.divHF {
    margin-top: 1rem;
}

.itemPromos {
    width: 48%;
    margin: 0 1% 20px;
}

    .itemPromos img {
        width: 100%;
    }

.infoPromo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

    .infoPromo p {
        margin-bottom: 0;
    }

    .infoPromo .btn {
        margin: 0;
    }

.btnPromos {
    background-color: #fff;
    color: #000;
    height: 45px;
    width: 100%;
    margin: 0 auto;
    font-size: 14px;
    padding: 12px;
    letter-spacing: 1px;
    border-top: 1px solid #017fff;
    display: block;
    margin-top: 10px;
    text-align: center;
    cursor: pointer;
}

.btn-typage .btn:hover {
    color: #fff;
}

.btnSuzukiRed {
    border: 2px solid #FFF;
    width: 150px;
    border-radius: 25px;
    height: 50px;
    padding: 11px;
    color: #fff !important;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin: 0 10px;
    background-color: #E50013;
    cursor: pointer !important;
}

@media (max-width: 768px) .itemPromos {
    width: 100%;
    margin: 0 0 20px;
}

.backLoadP, .backLoadP2 {
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    background-color: transparent;
    background-color: rgba(0,0,0,0.76);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CC000000,endColorstr=#CC000000);
    color: white;
    font-size: 18px;
    overflow-x: hidden;
    overflow-y: auto;
}

#dvLoading {
    display: none;
}

.txtLeg_Priv {
    margin: 0 auto;
    width: 90%;
    height: auto;
    padding: 21px;
    margin-top: 10%;
    text-align: justify;
}

.imgclose {
    width: 50px;
    position: absolute;
    z-index: 4;
    right: 45px;
    margin-top: -37px;
    cursor: pointer;
}

.btn-wa-movil {
    display: none;
}
