.back-video{
    width: 80%; /* Adjust width as needed */
    max-width: vw; /* Maximum width */
    aspect-ratio: 16 / 9; /* Maintain aspect ratio */
    overflow: hidden; /* Ensures no overflow */
    position: relative;
    background: #000;
    max-height: 100vh;

    display: flex;
    flex-direction: row;
   
}

.vertical {
    display: none;
}

.back-video {
    width: 100%; 
    height: 100%;
    object-fit: cover; /* Ensures it fills the div properly */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(250, 113, 0, 0.15) /* 50% opacity */;
    pointer-events: none; /* Prevents interference with video controls */
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    z-index: 2; /* Ensure text is above overlay */
    text-align: center;
    width: 100%;
}

.overlay-text p {
    color:white !important;
    margin-left: 0 !important;
}

.new-logo {
   position: absolute;
   width: 100vw;

   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   margin-top:20px;
   margin-bottom:20px;

    
}
#desktop-hide {
    display: none !important;
}

.new-logo img {
    max-width: 500px!important;
 
}

@media (max-width: 600px) {

    .back-video{
        width: 100%; /* Adjust width as needed */
        max-width: vw; /* Maximum width */
        aspect-ratio: 16 / 9; /* Maintain aspect ratio */
        overflow: hidden; /* Ensures no overflow */
        position: relative;
        background: #000;
        height: 100vh !important;
    
        display: flex;
        flex-direction: column;
       
    }
    
    .back-video video {
        width: 100%; 
        height: 100%;
        object-fit: cover; /* Ensures it fills the div properly */
    }
    
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:rgba(250, 113, 0, 0.15) /* 50% opacity */;
        pointer-events: none; /* Prevents interference with video controls */
    }
    
    .overlay-text {
        position: absolute;
        bottom:35%;
       
        color: white;
        font-size: 20px;
        font-weight: bold;
        z-index: 2; /* Ensure text is above overlay */
       
    }

    /* .overlay-text {
        position: absolute;
        bottom:35%;
        left: 10px;
        color: white;
        font-size: 20px;
        font-weight: bold;
        z-index: 2;
        margin-left:5%;
    } */
    
    .overlay-text p {
        color:white !important;
        margin-right: 20px !important;
    }
    
    .new-logo {
       position: absolute;
       width: 100vw;
    
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
       margin-top:20px;
       margin-bottom:20px;
    
        
    }
    
    .new-logo img {
    width: 50%;
     
    }

    .horizontal-video {
        display: none;
    }

    .vertical {
        display: block;
    }

    #mobile-show {
        display: none;
    }
    #desktop-hide {
        display: block !important;
     
    }
}


.swiper-container {
    width: 100%;
    max-width:600px;
    height: 400px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
  }
  

  .g-6 {
    --bs-gutter-x: 4rem; /* Adjust horizontal spacing */
    --bs-gutter-y: 4rem; /* Adjust vertical spacing */
  }


  .whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Pegado al lado izquierdo */
    z-index: 1000;
}

.whatsapp-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; /* Ajusta el tamaño del icono */
    height: 60px;
    background-color: #25D366; /* Color oficial de WhatsApp */
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-icon a:hover {
    transform: scale(1.1);
}

.whatsapp-icon img {
    width: 35px;
    height: 35px;
}



