﻿html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.buscador-vehiculos {
    display: none;
}

.vehiculos-carousel {
    padding-top: 1vh;
}

.TextoNegroSecundario {
    display: none;
}

.TextoNegroDnone {
    color: black;
}

.bottom-card-vehiculos-carousel {
    max-height: 20%;
    text-align: center;
    padding: 0vh 2vh 1vh 2vh;
    font-size: .8rem;
}

.lbl-nombre-vehiculo-carousel {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lbl-precio-vehiculo-carousel {
    font-size: 1.3rem;
}

.row-carousel {
    padding: 2vh 10vw 5vh 10vw;
}

.img-search-car {
    position: absolute;
    bottom: -170px; /* sobresale hacia abajo */
    right: -80px; /* sobresale hacia la derecha */
    max-width: 800px;
    z-index: 1;
    pointer-events: none;
    
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

    .img-search-car:hover {
        transform: rotate(-1deg) scale(1.1);
    }

.div-search {
    position: relative;
    width: 100%;
    display: flex;
    z-index: 2;
    grid-template-columns: 1fr;
    padding: 1rem 5rem 1rem;
}

.div-search-img {
    width: 3%;
    background-color: #fff;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown-results {
    position: absolute;
    top: 6.5vh;
    width: 29%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    list-style-type: none;
    transform: translateX(-1.5vh) translateY(1.2vh);
    margin: 0rem 1rem;

}

    .dropdown-results li {
        padding: 10px;
        cursor: pointer;
        border-bottom: 1px solid #eee;
    }

        .dropdown-results li:hover {
            background-color: #f1f1f1;
        }

.search-container {
    position: relative;
    height: 55vh;
    overflow: hidden;
    margin: 4vh 10vh 2vh 10vh;
    border-radius: 1rem;
    display: flex;    
    flex-wrap: wrap;
    align-content: center;
}

/* Estilos generales */
.image-container {
    position: relative;
    height: 55vh;
    overflow: hidden;
    margin: 4vh 10vh 2vh 10vh;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cropped-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 80%;
    transform: scale(1.15);
    position: absolute;
    top: 0;
    left: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slidertexto {    
    z-index: 2;
    text-align: left;
    padding: 1rem 5rem 1rem;
    color: #fff;
    font-size: MAX(MIN(CALC(100vw / 24), 4.5rem), 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #1e1e1e;
}

/* Container general */
.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

    .container div {
        display: grid;
        margin: 1rem auto;
    }

    .container img {
        max-width: 60px;
        margin: auto;
    }

.QuienesSomos {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem;
    background-color: #ebebeb;
    color: #000;
    font-size: 2.5rem;
    text-align: center;
}

/* Sección Nosotros */
.Nosotros {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.Nosotros2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.NosotrosText {
    font-size: 1.3rem;
}

.imgNosotros {
    display: flex;
    justify-content: center;
}

    .imgNosotros img {
        padding: 2rem;
        max-width: 100%;
    }

.imgPreguntas {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .imgPreguntas img {
        padding: 2rem;
        max-width: 70%;
    }

.containerNosotros {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 2rem 1rem;
}

.modal-body img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.InterSell-section {
    text-align: center;
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flags img {
    width: 100px;
    height: auto;
    margin: 0 10px;
    border: solid black 1px;
}

#btnContacto {
    display: block;
    margin: 20px auto 0;
}


/* Sección TraeTuVehiculo */
.TraeTuVehiculo {
    padding: 1.5rem;
    background-color: red;
    text-align: center;
}

    .TraeTuVehiculo h2 {
        color: white;
        font-size: 2rem;
        line-height: 2.2rem;
        margin: 1rem 0;
    }

    .TraeTuVehiculo p {
        color: white;
        margin: 0 auto;
        font-size: 1rem;
        line-height: 1.2rem;
        padding: 0 1rem;
    }

/* Botón Vende Hoy */
.btnVendeHoy {
    margin-top: 25px;
    margin: auto;
    display: flex;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

    .btnVendeHoy:hover {
        transform: scale(1.05);
    }

    .btnVendeHoy:active {
        transform: scale(0.95);
    }

/* Sección Contacto */
.containerContacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.left-content {
    width: 100%;
    margin-bottom: 1rem;
}

    .left-content h2 {
        font-size: 1.5rem;
        color: #000;
    }

.contact-button {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.form-container {
    display: grid;
    width: 40%;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 5px;
}

    .form-container .submit-button {
        margin-top: 1rem;
    }

/* Footer */
.footer {
    display: flex;
    padding: 1rem;
    text-align: center;
    width: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 1rem;
}

/* Cards Vehículos */
.card-vehiculos-carousel {
    box-shadow: 0px 0px 76px -21px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #fff;
    width: 100%;
}

    .card-vehiculos-carousel:hover {
        background-color: rgba(0, 0, 0, 0.04);
    }

.info-card-vehiculos-carousel {
    display: grid;
    max-height: 20%;
    text-align: left;
    padding: 1vh 2vh 1vh 2vh;
}

.img-card-vehiculos-carousel {
    display: flex;
    justify-content: center;
    height: 250px;
}


.img-card-vehiculos-carousel-destacados img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.btn-vende {
    text-align: center;
    letter-spacing: .5px;
    position: fixed;
    bottom: 30px;
    left: 0;
    background-color: #ff0000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0;
    z-index: 1050;
    font-size: 16px;
    margin: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, letter-spacing 0.3s ease;
}

#ModalFormularioVenta .modal-content {
    background-color: #f9f9f9;
    border-radius: 0;
    overflow: hidden;
}

/* Imagen de fondo */
#ModalFormularioVenta .modal-header-image {
    background: url('../img/hascarLogoW.png') no-repeat;
    background-size: contain;
    background-position: center;
    height: 100px;
    position: relative;
    margin-top: 1rem;
}

/* Estilo para el botón de cierre sobre la imagen */
#ModalFormularioVenta .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    border-radius: 50%;
}

/* Estilo del título */
#ModalFormularioVenta .modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px 0;
}

/* Estilos del formulario */
#ModalFormularioVenta .form-label {
    font-weight: bold;
    color: #333;
}

#ModalFormularioVenta .form-control {
    border: none;
    border-bottom: 2px solid #333;
    border-radius: 0;
    box-shadow: none;
}

    #ModalFormularioVenta .form-control:focus {
        box-shadow: none;
        border-color: #d9534f;
    }

/* Estilo del botón de enviar */
#ModalFormularioVenta .btn-danger {
    background-color: #d9534f;
    border: none;
    width: 100%;
    padding: 10px;
    font-size: 1.1rem;
}

    #ModalFormularioVenta .btn-danger:hover {
        background-color: #c9302c;
    }

.btn-vende:hover {
    background-color: #d10000;
    color: white;
    letter-spacing: 1px;
}

.btnVendeHoy {
    margin-top: 1rem;
}


.input-buscador {
    width: 100%;
    height: 6vh;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: none !important;
    padding-left: 2vh;
}


.container-vender-auto {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 20px auto;
}

.container-vender-auto-img {
    display: flex;
    justify-content: center;
    max-width: 700px;
    max-height: 350px;
    margin: 20px auto;
}

.sell-section {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .sell-section p {
        font-size: 16px;
        color: #666;
        margin-bottom: 20px;
    }

.btn-consignar-vender-auto {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
}

#NuevosIngresos {
    padding-top: 1rem;
    background-color: white !important;
}

.container-nuevosIngresos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 90%;
    width: 90%;
    margin: 0 auto;
}

    .container-nuevosIngresos > div {
        display: flex;
        width: 90%;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

.card-nuevosIngresos {
    margin: 1rem;
}

.container-seguinos-img {
    width: 100%;
}

@media screen and (max-width:400px) {

    .img-card-vehiculos-carousel {
        max-height: 150px;
    }

    .dropdown-results {
        margin: 0rem -1rem;
    }

    .img-search-car {
        position: absolute;
        bottom: -40px; /* sobresale hacia abajo */
        right: -20px; /* sobresale hacia la derecha */
        max-width: 180px;
        z-index: 1;
        pointer-events: none;
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
        transition: transform 0.3s ease;
    }

    .input-buscador {
        width: 50%;
    }


    .carousel-indicators {
        display: none;
    }

    .container-vender-auto-img {
        display: flex;
        justify-content: center;
        max-width: 400px;
        max-height: 200px;
        margin: 20px auto;
    }

    .container-seguinos-img {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 20px auto;
    }

    .container {
        justify-content: center;
    }

        .container > * {
            flex: 0 0 48%;
            max-width: 48%;
            box-sizing: border-box;
        }

    .search-container {
        height: 40vh;
        margin: 0vh 0vh 0vh 0vh;
    }

    .Nosotros {
        display: block;
    }

    .Nosotros2 {
        display: flex;
        flex-direction: column-reverse;
    }

    .NosotrosText {
        font-size: 1.2rem;
    }

    .imgNosotros img {
        max-height: 45vh;
    }

    .imgPreguntas img {
        max-height: 45vh;
    }

    .container-nuevosIngresos {
        display: grid;
        grid-template-columns: 50% 50%;
        padding: 0;
    }

    .card-nuevosIngresos {
        margin: 1rem;
        height: auto;
        width: 80%;
        padding: 0 !important;
    }

    .lbl-precio-vehiculo-carousel {
        font-size: initial;
    }

    .carousel-item.active {
        display: grid;
        gap: 1rem;
    }

    .cropped-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: scale(1);
        position: absolute;
        top: 0;
        left: 0;
    }

    .image-container {
        MARGIN: 0;
        border-radius: 0;
    }

    .input-buscador {
        width: 100%;
    }

    .slidertexto {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0rem 0rem 0rem;
        color: #fff;
        font-size: MAX(MIN(CALC(100vw / 24), 3.5rem), 2.5rem);
        margin-bottom: 0.5rem;
        text-shadow: 0 0 10px #1e1e1e;
    }

    .container div {
        width: 40%;
        justify-content: center;
    }

    .container img {
        max-width: 30px;
    }

    .container span {
        font-size: 12px;
    }

    .QuienesSomos {
        font-size: 3rem;
    }

    .TraeTuVehiculo p {
        line-height: 1.4rem;
    }

    .left-content h2 {
        font-size: 2rem;
    }

    .btnVendeHoy {
        padding-top: 0.5rem;
    }

    .form-container {
        display: grid;
        width: 90%;
    }

    .footer {
        display: grid;
        width: 100%;
        margin: 0;
    }



    .img-card-vehiculos-carousel-destacados img {
        height: 12vh;
    }

    .bottom-card-vehiculos-carousel {
        padding: 0vh 0vh 1vh 1vh;
        text-align: left;
    }

    .div-search-img {
        width: 10%;
    }

    .dropdown-results {
        width: 85% !important;
    }

    .card-vehiculos-carousel {
        width: 25vh;
    }

    .carousel-control-prev {
        display: none;
    }

    .carousel-control-next {
        display: none;
    }

    @media screen and (max-width:399px) {
        .container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 1rem;
            margin-bottom: 0rem;
            margin-top: 0rem;
        }

        .img-card-vehiculos-carousel {
            height: 150px;
        }

            .container > * {
                display: block;
            }

            .container img {
                max-width: 30px;
            }

        .TextoNegroDnone {
            display: none;
        }

        .TextoNegroSecundario {
            display: block;
        }

        .search-container {
            height: 30vh;
        }

        .card-vehiculos-carousel {
            width: 25vh;
        }

        .sell-section {
            width: 100px;
        }
    }

    @media screen and (min-height:840px) and (max-height:1000px) {
        .card-vehiculos-carousel {
            width: 25vh;
        }

        .img-card-vehiculos-carousel {
            height: 150px;
        }

        .container-nuevosIngresos {
            display: grid;
            grid-template-columns: 100%;
            padding: 0;
            justify-self: center;
        }

        .img-search-car {
            position: absolute;
            bottom: -75px;
            right: -30px;
            max-width: 350px;
            pointer-events: none;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
            transition: transform 0.3s ease;
        }

        .input-buscador {
            width: 50%;
        }
    }
}


@media screen and (max-width:424px) and (min-width:401px) {

    .carousel-indicators {
        display: none;
    }

    .img-card-vehiculos-carousel {
        height: 50px;
    }

    .container-vender-auto-img {
        display: flex;
        justify-content: center;
        max-width: 400px;
        max-height: 200px;
        margin: 20px auto;
    }

    .container-seguinos-img {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 20px auto;
    }

    .search-container {
        height: 40vh;
        margin: 0vh 0vh 0vh 0vh;
    }

    .Nosotros {
        display: block;
    }

    .Nosotros2 {
        display: flex;
        flex-direction: column-reverse;
    }

    .NosotrosText {
        font-size: 1.2rem;
    }

    .imgNosotros img {
        max-height: 45vh;
    }

    .imgPreguntas img {
        max-height: 45vh;
    }

    .container-nuevosIngresos {
        display: grid;
        grid-template-columns: 50% 50%;
        padding: 0;
    }

    .card-nuevosIngresos {
        margin: 1rem;
        height: auto;
        width: 80%;
        padding: 0 !important;
    }

    .lbl-precio-vehiculo-carousel {
        font-size: initial;
    }

    .carousel-item.active {
        display: grid;
        gap: 1rem;
    }

    .cropped-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 90%;
        transform: scale(1);
        position: absolute;
        top: 0;
        left: 0;
    }

    .image-container {
        MARGIN: 0;
        border-radius: 0;
    }

    .input-buscador {
        width: 100%;
    }

    .slidertexto {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0rem 0rem 0rem;
        color: #fff;
        font-size: MAX(MIN(CALC(100vw / 24), 3.5rem), 2.5rem);
        margin-bottom: 0.5rem;
        text-shadow: 0 0 10px #1e1e1e;
    }

    .container div {
        width: 40%;
        justify-content: center;
    }

    .container img {
        max-width: 30px;
    }

    .container span {
        font-size: 12px;
    }

    .QuienesSomos {
        font-size: 3rem;
    }

    .TraeTuVehiculo p {
        line-height: 1.4rem;
    }

    .left-content h2 {
        font-size: 2rem;
    }

    .btnVendeHoy {
        padding-top: 0.5rem;
    }

    .form-container {
        display: grid;
        width: 90%;
    }

    .footer {
        display: grid;
        width: 100%;
        margin: 0;
    }


    .img-card-vehiculos-carousel-destacados img {
        height: 12vh;
    }

    .bottom-card-vehiculos-carousel {
        padding: 0vh 0vh 1vh 2vh;
        text-align: left;
    }

    .div-search-img {
        width: 10%;
    }

    .dropdown-results {
        width: 77% !important;
    }

    .card-vehiculos-carousel {
        width: 20vh;
    }

    .carousel-control-prev {
        display: none;
    }

    .carousel-control-next {
        display: none;
    }
}

@media screen and (max-width:700px) and (min-width:425px) {

    .carousel-indicators {
        display: none;
    }

    .img-card-vehiculos-carousel {
        height: 150px;
    }

    .container-vender-auto-img {
        display: flex;
        justify-content: center;
        max-width: 400px;
        max-height: 200px;
        margin: 20px auto;
    }

    .container-seguinos-img {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 20px auto;
    }

    .search-container {
        height: 40vh;
        margin: 0vh 0vh 0vh 0vh;
    }

    .Nosotros {
        display: block;
    }

    .Nosotros2 {
        display: flex;
        flex-direction: column-reverse;
    }

    .NosotrosText {
        font-size: 1.2rem;
    }

    .imgNosotros img {
        max-height: 45vh;
    }

    .imgPreguntas img {
        max-height: 45vh;
    }

    .container-nuevosIngresos {
        display: grid;
        grid-template-columns: 50% 50%;
        padding: 0;
    }

    .card-nuevosIngresos {
        margin: 1rem;
        height: auto;
        width: 80%;
        padding: 0 !important;
    }

    .lbl-precio-vehiculo-carousel {
        font-size: initial;
    }

    .carousel-item.active {
        display: grid;
        gap: 1rem;
    }

    .cropped-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 90%;
        transform: scale(1);
        position: absolute;
        top: 0;
        left: 0;
    }

    .image-container {
        MARGIN: 0;
        border-radius: 0;
    }

    .input-buscador {
        width: 100%;
    }

    .slidertexto {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0rem 0rem 0rem;
        color: #fff;
        font-size: MAX(MIN(CALC(100vw / 24), 3.5rem), 2.5rem);
        margin-bottom: 0.5rem;
        text-shadow: 0 0 10px #1e1e1e;
    }

    .container div {
        width: 40%;
        justify-content: center;
    }

    .container img {
        max-width: 30px;
    }

    .container span {
        font-size: 12px;
    }

    .QuienesSomos {
        font-size: 3rem;
    }

    .TraeTuVehiculo p {
        line-height: 1.4rem;
    }

    .left-content h2 {
        font-size: 2rem;
    }

    .btnVendeHoy {
        padding-top: 0.5rem;
    }

    .form-container {
        display: grid;
        width: 90%;
    }

    .footer {
        display: grid;
        width: 100%;
        margin: 0;
    }


    .bottom-card-vehiculos-carousel {
        padding: 0vh 0vh 1vh 2vh;
        text-align: left;
    }

    .div-search-img {
        width: 10%;
    }

    .dropdown-results {
        width: 77% !important;
    }

    .carousel-control-prev {
        display: none;
    }

    .carousel-control-next {
        display: none;
    }

    .info-card-vehiculos-carousel {
        display: grid;
        max-height: 20%;
        text-align: left;
        padding: 1vh 2vh 1vh 2vh;
        min-height: 12vh;
    }

}
@media screen and (min-width:700px) and (max-width:1000px) {
    .container-nuevosIngresos {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        padding: 0;
    }

    .img-card-vehiculos-carousel {
        height: 200px;
    }
}

@media screen and (max-width:870px) and (min-width:400px) {
    .img-search-car {
        position: absolute;
        bottom: -75px; 
        right: -30px; 
        max-width: 350px;
        pointer-events: none;
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
        transition: transform 0.3s ease;
    }

    .input-buscador {
        width: 50%;
    }
}


@media screen and (max-width:1070px) and (min-width:870px) {
    .img-search-car {
        position: absolute;
        bottom: -95px; 
        right: -50px; 
        max-width: 450px;
        pointer-events: none;
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
        transition: transform 0.3s ease;
    }

    .input-buscador {
        width: 50%;
    }
}

@media screen and (max-width:1251px) and (min-width:1070px) {
    .img-search-car {
        position: absolute;
        bottom: -95px;
        right: -50px;
        max-width: 500px;
        pointer-events: none;
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
        transition: transform 0.3s ease;
    }

    .input-buscador {
        width: 50%;
    }
}





    .vehiculos-carousel-scroll {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem 0;
    }

    .vehiculo-card-carousel {
        scroll-snap-align: center;
        flex: 0 0 48%; /* ancho para 2 ítems visibles */
        max-width: 48%;
    }

    /* Si querés que las cards mantengan el estilo .card-vehiculos-carousel */
    .card-vehiculos-carousel {
        width: 100%; /* que ocupe todo el ancho del contenedor flex (48%) */
        margin: 0;
    }


@media screen and (min-width: 768px) {
    .vehiculos-carousel-scroll {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 3rem;
        padding: 1rem;
        align-items: center;
    }

    .vehiculo-card-carousel {
        scroll-snap-align: center;
        flex: 0 0 20%; /* ancho para 2 ítems visibles */
        max-width: 20%;
        
    }

    /* Si querés que las cards mantengan el estilo .card-vehiculos-carousel */
    .card-vehiculos-carousel {
        width: 100%; /* que ocupe todo el ancho del contenedor flex (48%) */
        margin: 0;
        
    }
}
    .carousel-control-prev {
        display: none;
    }

    .carousel-control-next {
        display: none;
    }
 

 