.btn {
    white-space: normal !important;
}

h3.section-title {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Instrument Sans';
}

.btn-cta-container {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
}

.h3Title {
    font-family: 'Open Sans Bold';
    font-weight: 500;
    font-size: 24px;
    color: #fff;

}

.btn-cta {
    color: #fff;
    border-radius: 5px;
    background: var(--gray-100, #0E0E0E);
    padding: 8px 25px;
}

/* Estilos para la ventana modal */
sub {
    top: -0.25em !important;
}

.moreInfoBtnContainer {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.moreInfoBtnContainer .moreInfoBtn {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.moreInfoBtn div {
    width: 15px;
    margin: 0 10px 4px 0;
}

.moreInfoBtn div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.legales-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #00070c8a;
    padding-top: 60px;
}

.legales-modal .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 5px;
    max-width: fit-content;
}

.legales-modal .modal-header {
    padding: 2px 16px;
    color: #010a12;
    text-align: center;
    margin-bottom: 10px;
    border: none;
}

.legales-modal .modal-btns {
    padding: 2px 16px;
    text-align: center;
}

.legales-modal .modal-button {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    cursor: pointer;
}

.legales-modal .close-button {
    background-color: #000000;
    color: white;
    padding: 10px 30px;
    font-size: small;
    border-radius: 5px;
}

/*fin estilos modal*/





#works {
    & .carousel-items {
        .carousel-block {

            height: 640px !important;

        }
    }
}




.color-chip,
.color-chip:active {
    color: transparent !important;
}

.chip-name {
    font-size: x-small;
    color: #000;
    margin: 10px 0;
}

.terminos-legales-btn {
    cursor: pointer;
    color: #585a61;
}

.terminos-legales-btn:hover {
    color: #000;
}

.legales-tech {
    color: #585a61;
    font-style: italic;
}

#color-selector .section-title {
    font-size: large;
}

.carusels-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    height: auto;
    justify-items: center;
    gap: 55px;
    margin-top: 50px;
}

.tarjetas {
    width: 360px;
    height: 370px;
    margin: 0;
    perspective: 800px;
}

.tarjetas .section-title {
    margin-bottom: 35px;
    font-size: large;

}

.tarjetas .section-subtitle {
    padding: 1em 0.5em 1em 0.5em;
    font-size: medium;
}

.tarjetas__contenido {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(-182px) rotateY(0);
    transform: translateZ(-182px) rotateY(0);
    -webkit-animation: carrusel 10s infinite cubic-bezier(1, 0.015, 0.295, 1.225) forwards;
    animation: carrusel 10s infinite cubic-bezier(1, 0.015, 0.295, 1.225) forwards;
}

.tarjetas__elemento {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 360px;
    height: 285px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(223, 223, 227, 0.51);
    -moz-box-shadow: 0px 2px 10px 0px rgba(223, 223, 227, 0.51);
    box-shadow: 0px 2px 10px 0px rgba(223, 223, 227, 0.51);
}

.card-image-container {
    margin: 0;
    width: 100%;
    height: 210px;
}

.card-image-container img {
    width: 100%;
    border-radius: 5px 5px 0 0;
    height: 100%;
    object-fit: cover;
}

.tarjetas__elemento:nth-child(1) {
    background: #ffffff;
    -webkit-transform: rotateY(0) translateZ(182px);
    transform: rotateY(0) translateZ(182px);
}

.tarjetas__elemento:nth-child(2) {
    background: #ffffff;
    -webkit-transform: rotateY(120deg) translateZ(182px);
    transform: rotateY(120deg) translateZ(182px);
}

.tarjetas__elemento:nth-child(3) {
    background: #ffffff;
    -webkit-transform: rotateY(240deg) translateZ(182px);
    transform: rotateY(240deg) translateZ(182px);
}


/* Modales */

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    display: none;

    border-radius: 5px;

}

.modal img {
    max-width: 100%;
    max-height: 100%;
}

.modal .modal-content .modal-content-title {
    background-color: #1d5fc1;
    padding: 20px 20px 30px 20px;
    color: #fff;
    font-size: larger;
    display: flex;
    flex-direction: column-reverse;
}

.modal .close {
    color: #fff;
    opacity: 1;
}

.modal .modal-content .modal-content-title p {
    margin: 10px 0 0 0;
    font-size: large;
}

.modal .modal-content .modal-content-title span {
    font-size: x-large;
    text-align: right;
    cursor: pointer;
}

.modal .modal-content .modal-content-title span:hover {
    color: #0d274e;
}

.modal .modal-content .modal-content-text {
    padding: 20px;
    overflow-y: scroll;
    max-height: 50vh;
}



.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}



/* End modals */
body {
    background: #ffffff;
}

@-webkit-keyframes carrusel {

    0%,
    17.5% {
        -webkit-transform: translateZ(-182px) rotateY(0);
        transform: translateZ(-182px) rotateY(0);
    }

    27.5%,
    45% {
        -webkit-transform: translateZ(-182px) rotateY(-120deg);
        transform: translateZ(-182px) rotateY(-120deg);
    }

    55%,
    72.5% {
        -webkit-transform: translateZ(-182px) rotateY(-240deg);
        transform: translateZ(-182px) rotateY(-240deg);
    }

    82.5%,
    100% {
        -webkit-transform: translateZ(-182px) rotateY(-360deg);
        transform: translateZ(-182px) rotateY(-360deg);
    }
}

@keyframes carrusel {

    0%,
    17.5% {
        -webkit-transform: translateZ(-182px) rotateY(0);
        transform: translateZ(-182px) rotateY(0);
    }

    27.5%,
    45% {
        -webkit-transform: translateZ(-182px) rotateY(-120deg);
        transform: translateZ(-182px) rotateY(-120deg);
    }

    55%,
    72.5% {
        -webkit-transform: translateZ(-182px) rotateY(-240deg);
        transform: translateZ(-182px) rotateY(-240deg);
    }

    82.5%,
    100% {
        -webkit-transform: translateZ(-182px) rotateY(-360deg);
        transform: translateZ(-182px) rotateY(-360deg);
    }
}


@media (min-width: 999px) {
    .carusels-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px 20px;
    }
}

@media (min-width: 1200px) and (max-width: 1600px) {
    .carusels-container {
        padding: 0 100px;
    }
}

@media (min-width: 1601px) and (max-width: 1899px) {
    .carusels-container {
        padding: 0 200px;
    }
}

@media (min-width: 1900px) {
    .carusels-container {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 20px;
    }
}





/*Precios */
.slider {
    position: relative;
    left: -66px;
    margin-left: 20%;
}

.slider-ul {
    white-space: nowrap;
    overflow: visible;
    position: relative;
    left: 0;
    transition: left 1s;
    display: flex;
    flex-direction: row;
}

.slider-ul-item {
    border: 1px solid #E7E9EA;
    justify-content: space-between;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    cursor: pointer;
    height: auto;
    transition: height 1s, opacity 0.5s, margin-top 1s;
    opacity: 0.6;
    padding: 0 50px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(223, 223, 227, 0.51);
    -moz-box-shadow: 0px 2px 10px 0px rgba(223, 223, 227, 0.51);
    box-shadow: 0px 2px 10px 0px rgba(223, 223, 227, 0.51);
}

.slider-ul-item.active {
    margin-top: 0;
    opacity: 1;
}

.precios-specs ul {
    text-wrap: balance;
    width: 300px;
    padding: 0;
}

.precios-specs ul li {
    margin: 3px 0;
}

/*New Styles*/
#works {
    .section-title-paragraph {
        text-align: center;
    }

    .tipo-motor {
        color: #585A61;
    }

    .precios-titulo {
        border-bottom: 1px solid #d7d7d7;
        margin-top: 15px;
    }

    .precio-text {
        margin-bottom: 25px;
    }

    /* Quitar justify-content: center; si se agregan mÃ¡s versiones */

    .carousel {
        max-width: 1200px;
        margin: 50px auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-wrapper {
        /** se cambio a auto 
    margin: 10px 30px; **/
        margin: auto;
        overflow: hidden;
        position: relative;
    }

    /* cambiar width a 10000px si hay mÃ¡s de 2 versiones. ColoquÃ© auto porque solo hay*/

    .carousel-items {
        width: auto;
        position: relative;

        .carousel-block {
            transition: all .5s ease-out;
            float: left;
            display: flex;
            height: 500px;
            overflow: hidden;

            .work {
                justify-content: safe;
                width: 399px;
                display: flex;
                flex-direction: column;
                align-items: center;
                /** margin: 20px; **/
                cursor: pointer;
                height: auto;
                transition: height 1s, opacity 0.5s, margin-top 1s;
                padding: 0 50px;
                border-radius: 5px;
                -webkit-box-shadow: 0px 2px 10px 0px rgba(223, 223, 227, 0.51);
                -moz-box-shadow: 0px 2px 10px 0px rgba(223, 223, 227, 0.51);
                box-shadow: 0px 2px 10px 0px #dfdfe382;
            }
        }
    }
}

@media (max-width: 768px) {
    #works .work {
        width: 90%;
        max-width: 320px;
        padding: 20px 15px;
        margin: 10px 0px;
    }
}

.precios-specs ul {
    list-style: circle;
}

.precios-specs ul li {
    color: #64666c;
}

.work .precio-text {
    color: #58595b;
}

.carousel-block:hover {
    transform: scale(1.1)
}

/*********** BUTTONS ***********/
.carousel-button-left,
.carousel-button-right {
    a {
        width: 50px;
        height: 50px;
        position: relative;
        top: 150px;
        cursor: pointer;
        text-decoration: none;
    }
}

.carousel-button-left {
    width: 40px;
    height: 40px;
    padding: 20px;
    border: none;
    background-color: transparent;
    float: left;
    background: url("https://cdn3.iconfinder.com/data/icons/faticons/32/arrow-left-01-128.png");
    background-size: cover;
}

.carousel-button-right {
    width: 40px;
    height: 40px;
    padding: 20px;
    border: none;
    background-color: transparent;
    float: right;
    background: url("https://cdn3.iconfinder.com/data/icons/faticons/32/arrow-left-01-128.png");
    background-size: cover;
    transform: rotate(180deg);
}



/* form */
/*#inventoryContactForm div:nth-child(3) .form-group div{
    display: none !important;
    }*/

#inventoryContactForm div:nth-child(4) .form-group {
    display: flex;
    flex-direction: column;
}

#inventoryContactForm .row:nth-child(2),
#inventoryContactForm .row:nth-child(4) {
    margin-top: 20px;
}

#inventoryContactForm .row:nth-child(3),
#inventoryContactForm .row:nth-child(4) .form-group .col-sm-6:nth-child(1) {
    visibility: hidden;
    position: absolute;
    top: 0;
    z-index: -999999;
}

#inventoryContactForm label[for="inventoryContactModels"],
#inventoryContactForm #inventoryContactModels {
    display: block !important;
}

/* end form*/



.quotation-btn-container {
    display: flex;
    justify-content: center;
}

#modal-terminos-legales {
    cursor: pointer;
}

.car-image {
    display: flex;
    justify-content: center;
}

.modal-body .section-title {
    margin-bottom: 40px;
}

.relative {
    position: relative;
}

.hero-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
}

#hero-video {
    height: calc(100vh - 64px);
    width: 100%;
    overflow: hidden;
}

.btn-gac {
    border: 1px solid #0f1218;
    color: #0f1218;
    background-color: transparent !important;
}

.btn-gac-white {
    border-radius: 5px;
    font-weight: 500;
    background: 0;
    border: 1px solid #fff;
    padding: 12px 50px;
    color: #fff;
    transition: background .5s ease;
}

.btn-gac-white:hover {
    color: #000;
    background: #fff;
    border: 1px solid #fff;
}

.icono-gac {
    width: 90px;
    height: auto;
    padding: 15px;
    margin: 0 auto;
}

.slick-prev {
    left: 10px;
    z-index: 100;
}

.slick-next {
    right: 10px;
    z-index: 100;
}

.tipo-motor {
    font-size: 14px;
    text-transform: uppercase;
}

.modal-header {
    border-bottom: none !important;
}

#color-selector {
    transition: background-color 0.3s;
    background: linear-gradient(180deg, rgba(204, 189, 138, 1) 0%, rgba(216, 201, 152, 1) 30%, rgba(201, 186, 135, 1) 50%, rgba(61, 172, 244, 0) 100%);
    background-color: #fff !important;
}

.precio-text {
    font-size: 24px;
}

.precio-text-small {
    font-size: 12px;
}

.precios-container {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.precios-titulo {
    background-color: rgba(255, 255, 255, 0.1);
    padding-top: 5px;
    padding-bottom: 5px;
}

.precios-specs {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}

#content-description {
    display: none;
}

@media (min-width: 993px) {
    #color-selector {
        width: 100%;
        height: auto;
    }

    #myVideo {
        width: auto;
        object-fit: cover;
        height: auto;
        /* siguientes lineas para recorte proporcional ambos lados del video */
        min-height: 100%;
        width: 100vw;
    }

    .carousel-control {
        top: 50%;
    }

    .carousel-control.right {
        right: -50px;
        z-index: 5;
    }

    .carousel-control.left {
        left: -50px;
        z-index: 5;
    }

    .modal-body {
        padding-left: 80px;
        padding-right: 80px;
        padding-top: 40px;
        padding-bottom: 100px;
    }

    #color-picker-container {
        height: 500px;
        max-height: 500px;
    }

    .display-flex {
        display: flex;
    }

    .vertical-center {
        align-items: center;
    }

    .justify-center {
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    #color-selector {
        height: auto;
    }
}

@media (max-width: 992px) {
    #tabla-specs {
        height: 400px;
        width: 100%;
    }

    #color-selector {
        width: 100%;
        height: auto;
    }

    .disclaimer-color-selector {
        position: relative;
    }

    #myVideo {
        height: 100%;
        width: auto;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
    }

    .carousel-control {
        top: 30px;
    }

    .carousel-control.right {
        right: 0px;
    }

    .carousel-control.left {
        left: 0px;
    }

    .modal-body {
        padding-left: 15px;
        padding-left: 15px;
        padding-top: 0px;
        padding-bottom: 50px;
    }

    #color-picker-container {
        height: auto;
    }

    .display-flex {
        display: block;
    }
}

/* Inicia Color picker */

#img-360 {
    pointer-events: none;
}

#img-360,
.color-chip {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: -webkit-center;
}

#color-chips {
    display: flex;
    justify-content: center;
    padding: 3em 0;
}

#color-chips ul {
    width: 400px;
    display: flex;
    justify-content: space-evenly;
}

.color-chip img {
    display: inline;
    margin: 0 auto;
    height: 100%;
    width: auto;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-radius: 50%;
    padding: 5px;
}

.color-chip:hover,
.color-chip:active,
.color-chip.active>.color-chip-crop {
    border: 1px solid #ffffffe0;
    -webkit-box-shadow: 0 2px 10px 0 rgba(223, 223, 227, 0.51);
    -moz-box-shadow: 0 2px 10px 0 rgba(223, 223, 227, 0.51);
    box-shadow: 0 2px 10px 0 rgb(249 249 249 / 69%);
}

.color-chip-crop {
    width: 35px;
    height: 35px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

/*Amarillo ?mbar*/

#color-chip-1 {
    background-image: linear-gradient(to bottom, #feffd7, #fcf1bd, #dcc790, #a39a73);
}

/*Blanco Nevado*/

#color-chip-2 {
    background-image: linear-gradient(to bottom, #ffffff, #fafafa, #f2f2f2, #f0f0f0);
}

/*Negro ?bano*/

#color-chip-3 {
    background-image: linear-gradient(to bottom, #474747, #282728, #0f0f0f, #000000);
}

/*Plata Siberia*/

#color-chip-4 {
    background-image: linear-gradient(to bottom, #eaedee, #d1d3d3, #bdbdbd, #999999);
}

/*Gris Titanio*/

#color-chip-5 {
    background-image: linear-gradient(to bottom, #c5d1d5, #96a0a3, #454849, #4c5052);
}

/*Gris Perlado*/

#color-chip-6 {
    background-image: linear-gradient(to bottom, #f4f9ff, #dae0ec, #a8b1b8, #50575f);
}

#color-picker .btn br {
    display: none;
}

@media (min-width: 992px) and (max-width: 1440px) {
    #color-picker .btn br {
        display: inline;
    }
}

/* Fin Color picker */

.color-chip:hover,
.color-chip:active {
    border: none;
}<!--ºÄÊ±1782483808.3585Ãë-->