@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

.float{
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    bottom: 40px;
    right: 40px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 0px 3px #fff;
    z-index: 999;
}
.fa-whatsapp{
    font-size: 60px;
}
.float:hover{
    background-color: #fff;
}
.float:hover .fa-whatsapp {
    color: #25d366;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 20%;
    /*background: #11141a; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent;
    transition: background 0.3s ease-in-out;
}

header.scrolled {
    background: #11141a; /* Color sólido cuando se desplaza */
}

@media (max-width: 768px) {
    header {
        padding: 20px;
        background-color: #11141a;
    }
}
.logo {
    width: 250px;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 20px;
    transition: .3s;
}

nav a:hover,
nav a.active {
    color: #D9B814;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
}

.flag-icon {
    width: 40px;
    height: auto;
}

.alquilar-btn {
    background-color: #D9B814;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 10px 20px;
    color: #11141a;
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.alquilar-btn:hover {
    background-color: #fff;
    color: #D9B814;
    border-color: #D9B814;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #878787;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.carousel-slide {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-image {
    
    height: 100%;
    /*object-fit: cover;*/
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem;
    cursor: pointer;
    border: none;
    z-index: 10;
}

.prev-button {
    left: 1rem;
}

.next-button {
    right: 1rem;
}

/*.carousel-indicators {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #D9B814;
}
*/
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.button-group {
    margin-top: 20px;
}

.button-group .btn {
    margin: 10px;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.alquilar-btn,
.nuestros-autos-btn {
    color: #fff;
    background-color: #D9B814;
    border: 2px solid transparent;
}

.nuestros-autos-btn.transparent-btn {
    background-color: transparent;
    border: 2px solid #D9B814;
}

.nuestros-autos-btn.transparent-btn:hover {
    background-color: #D9B814;
    color: #fff;
}

.alquilar-btn:hover,
.nuestros-autos-btn:hover {
    background-color: #fff;
    color: #D9B814;
    border-color: #D9B814;
}

.social-icons {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 1;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.8em;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #D9B814;
    transform: translateY(-3px);
}

/* catologo carousel*/

#Catalogo2 {
    text-align: center;
    background-color: #fff;/* f5efd7*/
    overflow-x: hidden; /* Evita el scroll horizontal */
}

.catalogo-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* Para centrar el contenedor */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.catalogo {
    display: flex;
    transition: transform 0.5s ease;
}
.catalogo-item {
    flex: 0 0 33.33%;
    padding: 10px;
    box-sizing: border-box;
    transition: all 0.5s ease;
}
.catalogo-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all 0.5s ease;
    user-select: none;
    -webkit-user-drag: none;
}
.catalogo-item.left, .catalogo-item.right {
    transform: scale(0.8);
}
.catalogo-item.center {
    transform: scale(1.2);
    z-index: 2;
}
.catalogo-item.center img {
    opacity: 1;
}
.catalogo-item:not(.center) img {
    opacity: 0.6;
}
.catalogo-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    z-index: 3;
}
.catalogo-button.prev {
    left: 10px;
}
.catalogo-button.next {
    right: 10px;
}

.carros {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    gap: 30px;
}

.carro-link {
    text-decoration: none;
    cursor: pointer;
    display: block;
    width: 100%;
}

.carro {
    flex: 0 0 30%;
    text-align: center;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carro:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.carro-imagen img {
    width: 250px;
    height: auto;
    margin-bottom: 10px;
}

.carro p {
    font-weight: bold;
    margin: 0;
    font-size: 18px;
    color: #000;
}

.carro-link:hover p {
    color: #333;
}

.ver-catalogo-btn {
    display: inline-block;
    background-color: #D9B814;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.ver-catalogo-btn:hover {
    background-color: #fff;
    color: #D9B814;
    border-color: #D9B814;
}


/* xdddddddddddd*/

.partners-section {
    background-color: #fff;/* f5efd7*/
    padding: 50px 0;
    text-align: center;
}

.partners-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.partners-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track-logos {
    display: flex;
    will-change: transform;
}

.carousel-image-logos {
    max-width: 100px;
    max-height: 100px;
    flex-shrink: 0;
    object-fit: contain;
    margin: 0 25px;
}

.fade-left, .fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 1;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, #f7f7f7 0%, rgba(247, 247, 247, 0) 100%);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, #f7f7f7 0%, rgba(247, 247, 247, 0) 100%);
}


.empresa-section {
    padding: 50px 0;
    background: #fff;/* f5efd7*/
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.empresa-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.empresa-left, .empresa-right {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

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

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

.empresa-image {
    width: 45%;
    height: auto;
    margin: 0 10px;
    box-sizing: border-box;
}

.empresa-text {
    width: 45%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.empresa-text h3 {
    font-size: 3em;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.empresa-text p {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 20px;
}

.contactanos-btn,
.trabaja-btn {
    background-color: #D9B814;
    color: #ffffff;
    border: 2px solid #D9B814;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    display: inline-block;
    margin-top: 20px;
}

.contactanos-btn:hover,
.trabaja-btn:hover {
    background-color: #fff;
    color: #D9B814;
    border-color: #D9B814;
}

.trabaja-btn.transparent-btn {
    background-color: transparent;
    border: 2px solid #D9B814;
}

.trabaja-btn.transparent-btn:hover {
    background-color: #D9B814;
    color: #fff;
}
.servicios-section {
    background-color: #11141A;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.servicios-section h2 {
    margin-bottom: 40px;
    font-size: 2em;
    color: #fff;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 40px;
    max-width: 65%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ... existing code ... */
.servicio {
    width: 100%;
    transition: transform 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative; /* Added to position the label */
}

.servicio img {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    max-width: 100%;
    display: block;
    margin-bottom: 40px;
}

.servicio:hover {
    transform: scale(1.5);
}
.servicio:hover .service-label {
    opacity: 1;
}

/* New styles for the service label */
.servicio::after {
    content: attr(data-label);
    position: absolute;
    bottom: 15px;
    left: 0%;
    transform: translateX(-50%);
    background-color: white;
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

/* ... existing code ... */
@media (max-width: 768px) {
    .servicios-grid {
        grid-template-columns: 1fr; /* Stack items vertically on mobile */

        max-width: 90%;
        gap: 0px;
    }

    .servicio:hover {
        transform: scale(1.2); /* Smaller scale on mobile */
    }
}

@media (max-width: 480px) {
    .servicios-grid {
        grid-template-columns: 1fr; /* Stack items vertically on mobile */
        gap: 0px; /* Reduce gap for mobile */
    }
    
    .servicio {
        margin-bottom: 20px; /* Add some bottom margin to each service */
    }
}
/*.servicios {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 75px; /* Aumenta el espaciado entre las tarjetas 
     flex-wrap: wrap;
    padding: 40px 0;
} */

/* .servicio {
    text-align: center;
    max-width: 290px;
    transform: scale(1.25);
    transition: transform 0.3s;
}

.servicio img {
    width: 120%;
    border-radius: 10px;
    transition: transform 0.3s;
} */

.footer-section {
    background-color: #11141A;
    color: #fff;
    padding: 0px 20px;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.newsletter {
    margin-bottom: 20px;
}

.newsletter h3 {
    margin-top: 10px;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 10px;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 25px 0 0 25px;
}

.newsletter-form button {
    background-color: #FDC500;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}

.privacy-policy {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.privacy-policy input {
    margin-right: 5px;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.contact-info, .footer-links {
    flex-basis: 48%;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info i {
    margin-right: 10px;
    width: 20px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: underline;
    display: inline-block;
}

.footer-bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-logo {
    max-width: 150px;
}

.map-responsive {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

/* Tamaño por defecto para pantallas grandes */
.map-responsive iframe {
    width: 1200px;
    height: 300px;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
    .map-responsive iframe {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .map-responsive iframe {
        width: 100%;
        height: 200px;
    }
}


@media (max-width: 768px) {
    .carro {
        flex: 0 0 45%; /* Ajuste para tabletas */
        padding: 30px; /* Reducir el padding */
    }

    .carro-imagen img {
        width: 100px; /* Ajustar el tamaño de la imagen */
    }

    .ver-catalogo-btn {
        padding: 8px 16px;
    }
}
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
    }

    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #111;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        padding: 80px 20px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 15px 0;
        font-size: 22px;
        border-bottom: 1px solid #333;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }


.map-button:hover {
    background-color: #357ae8;
}
/* Opcional: agregar bordes redondeados */
#map {
    height: 250px;
    width: 100%;
    border-radius: 10px; /* Opcional: agregar bordes redondeados */
}
/* Opcional: agregar bordes redondeados */


    .alquilar-btn {
        width: 80%;
        margin-top: 20px;
        text-align: center;
    }

    .nav-toggle svg {
        width: 30px;
        height: 60px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"],
    .newsletter-form button {
        width: 100%;
        border-radius: 25px;
        margin-bottom: 10px;
    }

    .footer-info {
        flex-direction: column;
    }
    
    .contact-info, .footer-links {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
    .empresa-section {
        min-height: auto; /* Elimina el min-height en pantallas pequeñas */
        padding: 20px 0; /* Ajusta el padding para pantallas pequeñas */
    }

    .empresa-image {
        display: none; /* Oculta las imágenes en pantallas pequeñas */
    }

    .empresa-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center; /* Centra el texto */
        padding: 10px;
    }

    .empresa-left, .empresa-right {
        width: 100%;
        margin-bottom: 20px;
    }

    .empresa-text {
        width: 100%;
        padding: 10px;
    }

    .empresa-text h3 {
        font-size: 2em; /* Ajusta el tamaño del encabezado para móviles */
    }

    .empresa-text p {
        font-size: 1.2em; /* Ajusta el tamaño del texto para móviles */
    }

    .contactanos-btn,
    .trabaja-btn {
        text-align: center;
        margin-top: 15px; /* Añade espacio superior entre el botón y el texto */
    }
    }.servicios {
         /* Reducir el espaciado entre las tarjetas */
    }

    .servicio {
        max-width: 250px; /* Reducir el tamaño de las tarjetas en pantallas medianas */
        transform: scale(1.05); /* Reducir el efecto de hover */
    }

    .servicio:hover {
        transform: scale(1.25);
    }
@media (max-width: 480px) {
    .carros {
        flex-direction: column; /* Cambiar a columna en móviles */
        align-items: center;
    }

    .carro {
        width: 100%; /* Cajas ocupan todo el ancho en móviles */
        padding: 20px;
    }

    .carro-imagen img {
        width: 80px;
    }

    .ver-catalogo-btn {
        padding: 6px 12px;
    }
    .empresa-text h3 {
        font-size: 1.5em; /* Reduce el tamaño del encabezado en pantallas muy pequeñas */
    }

    .empresa-text p {
        font-size: 1em; /* Reduce el tamaño del texto en pantallas muy pequeñas */
    }

    .empresa-section {
        padding: 15px 0;
    }
    .servicios {
        flex-direction: column; /* Cambiar a columna para móviles */
        gap: 20px;
    }
    .servicio {
        max-width: 90%; /* Aumentar el ancho en móviles */
        transform: scale(1.1); /* Reducir aún más el efecto */
    }

    .servicio:hover {
        transform: scale(1.2);
    }

    .servicio img {
        width: 90%;
    }
}
@media screen and (max-width: 768px) {
    .hero-section {
        height: 42vh; /* Aumentamos la altura para el carrusel */
        margin-bottom: 0; /* Eliminamos margen inferior */
    }

    .carousel-container {
        height: 100%; /* Altura completa del hero section */
    }

    .carousel-image {
        width: 100%; /* Ancho completo */
        height: 100%;
        object-fit: cover;
        padding-top: 101px;
    }

    .search-section {
        position: relative; /* Cambiamos a posición relativa */
        margin: 0; /* Eliminamos márgenes negativos */
        padding: 30px 0;
        background: #11141A;
        width: 100%;
        z-index: 10;
    }

    .search-bar-container {
        position: relative; /* Aseguramos posición relativa */
        flex-direction: column;
        padding: 20px;
        width: 90%;
        margin: 0 auto;
        transform: none; /* Eliminamos cualquier transformación */
    }

    /* Aseguramos que la siguiente sección empiece después de la barra de búsqueda */
    #Catalogo2 {
        margin-top: 0;
        padding-top: 30px;
    }
}

/* Ajuste específico para pantallas muy pequeñas */
@media screen and (max-width: 480px) {
    .hero-section {
        height: 42vh; /* Altura más compacta para móviles pequeños */
    }

    .search-section {
        padding: 20px 0;
    }

    .search-bar-container {
        width: 95%;
        padding: 15px;
    }
}

/* Ocultar la imagen 2, 3, 12, 13, 22, 23, 32 y 33 en pantallas móviles */
@media screen and (max-width: 768px) {
    .carousel-image:nth-child(9),
    .carousel-image:nth-child(19),
    .carousel-image:nth-child(29),
    .carousel-image:nth-child(39),
    .carousel-image:nth-child(38) {
        display: none; /* Oculta las imágenes seleccionadas */
    }
}

/* Nuevo estilo para el formulario de reserva */
.reservation-container {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.reservation-container h2 {
    color: #11141a;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    color: #11141a;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #D9B814;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #11141a;
    box-shadow: 0 0 0 2px rgba(217, 184, 20, 0.2);
}

.reservation-container button {
    width: 100%;
    padding: 1rem;
    background: #D9B814;
    color: #11141a;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reservation-container button:hover {
    background: #11141a;
    color: #D9B814;
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
    .reservation-container {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 2rem auto;
        width: 90%;
    }
}

/* Nueva sección de búsqueda independiente */
.search-section {
    padding: 40px 0;
    background: #ffffff; /* Mismo color que el header */
    position: relative;
    z-index: 10;

}

.search-bar-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    transform: translateY(0); /* Para animación */
    transition: transform 0.3s ease;
}

.search-group {
    flex: 1;
    min-width: 200px;
}

.search-group label {
    display: block;
    color: #11141a;
    margin-bottom: 8px;
    font-size: 0.95em;
    font-weight: 500;
}

.search-group input,
.search-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.search-group input:focus,
.search-group select:focus {
    outline: none;
    border-color: #D9B814;
    box-shadow: 0 0 0 2px rgba(217, 184, 20, 0.1);
}

.search-button {
    background: #D9B814;
    color: #11141a;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    height: 45px;
}

.search-button:hover {
    background: #11141a;
    color: #D9B814;
    border: 1px solid #D9B814;
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .search-bar-container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .search-section {
        margin: 0;
        padding: 30px 0;
        background: #11141A;
    }

    .search-bar-container {
        flex-direction: column;
        padding: 20px;
        width: 90%;
        margin: 0 auto;
    }

    .search-group {
        width: 100%;
    }

    .search-button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .carousel-button {
        top: 65%;
    }
}