/* INICIO*/
.bg__breadcrumb{
    /* background: var(--Celeste, #F7F9FC); */
    padding: 10px 0;
}
.breadcrumb-item{
    color: #000;

    font-family: 'Oswald';
    font-size: 13px;
    font-style: normal;
    font-weight: 250;
    line-height: normal;
}

.breadcrumb-item .active{
    color: grey !important;
    font-family: 'Oswald';
    font-size: 13px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: normal;
}

.breadcrumb-titulo{
    color: var(--Azul, #37567F);
    font-family: 'Oswald';
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;          
}
.carousel-video-wrapper {
    position: relative;
    width: 100%;
    height: 640px;
}

.carousel-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 640px;
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    mix-blend-mode: multiply;
    z-index: 1;
}

.carousel-video {
    width: 100%;
    height: 640px;
    object-fit: cover;
}
.carousel-imagen{
    width: 100%;
    height: 640px;
    object-fit: cover;
}
.carousel-caption {
    position: absolute;
    bottom: 160px;
 
    z-index: 2;
}

.titulo-destacados{
    color: var(--Negro, #111);

    /* Heading/H3 */
    font-family: Oswald;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
}
.carousel__titulo {
    color: #FFF;
    font-family: 'Oswald', sans-serif;
    font-size: 46px;
    font-weight: 600;
    text-transform: uppercase;
}

.carousel__descripcion {
    color: var(--Blanco, #FFF);
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 33px; 
}

.contenido__titulo{
    color: black;

    /* Heading/H3 */
    font-family: 'Oswald';
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contenido__descripcion{
    color: black;

    /* Body/Regular/Body 16 */
    font-family: 'Oswald';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}

.btn__azul{
    font-family: 'Oswald';
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.4px;
    border: 1px solid #37567F;
    color: #fff;
    cursor: pointer;
 
    padding: 10px 20px;
    background-color: #37567F; /* Color base del botón */
    transition: 0.5s ease-in-out; /* Transición suave del efecto de sombra */
}

.clientes-section {
    background-color: #fff;
}

.cliente-card {
    height: 184px;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cliente-logo {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.cliente-card:hover .cliente-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.cliente-card:hover {
    border-color: #ddd;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

#clientesCarousel .carousel-control-prev,
#clientesCarousel .carousel-control-next {
    width: 5%;
}

.custom-carousel-icon {
    filter: invert(1) grayscale(100%);
    background-size: 70% 70%;
}

@media (max-width: 767.98px) {
    .cliente-card {
        height: 140px;
        padding: 15px;
    }

    .cliente-logo {
        max-height: 90px;
    }
}


.cliente-card {
    height: 200px;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #dcdcdc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cliente-logo {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.cliente-card:hover .cliente-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.cliente-card:hover {
    border-bottom: 1px solid #bdbdbd;
}

@media (max-width: 768px) {
    .cliente-card {
        height: 140px;
        padding: 15px;
    }

    .cliente-logo {
        max-height: 80px;
    }
}


.seccion-nosotros {
    background: #f3f3f3;
}

.contenido-imagen-full {
    min-height: 600px;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contenido-box {
    width: 100%;
    padding: 60px;
}

.contenido__titulo {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
}

.contenido__descripcion {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

.contenido__descripcion p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .contenido-imagen-full {
        min-height: 420px;
    }

    .contenido-box {
        padding: 40px 30px;
    }

    .contenido__titulo {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
    .contenido-imagen-full {
        min-height: 280px;
    }

    .contenido-box {
        padding: 30px 20px;
    }

    .contenido__titulo {
        font-size: 28px;
    }

    .contenido__descripcion {
        font-size: 15px;
        line-height: 1.7;
    }
}
.btn__azul:hover{
    font-family: 'Oswald';
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.4px;
    border: 1px solid #37567F;
    color: #37567F;
    cursor: pointer;
 
    padding: 10px 20px;
    background-color: #fff; /* Color base del botón */
    transition: 0.5s ease-in-out; /* Transición suave del efecto de sombra */
}

.titulo-inicio{
    color: var(--Negro, #000);
    text-align: center;
    font-family: 'Oswald';
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.empresa-descripcion {
    color: var(--Text, #5A5754);
font-family: "Oswald";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 23px; /* 143.75% */
}
/* PRODUCTOS*/


/* Productos*/
   /* Card Container */
   .product-card {
    border: 1px solid #e0e0e0;
   
    overflow: hidden;
    /* transition: box-shadow 0.3s ease, transform 0.3s ease; */
    text-align: left;
    background-color: #fff;
}

/* Hover Effects */
.product-card:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    /* transform: translateY(-5px); */
}

/* Image Styling */
.image-container {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.image-container img {
    width: 85%;
    max-height: 90%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .image-container img {
    transform: scale(1.05);
}  
.bg-productos{
    background-color: #37567F;
    
    } 
    
.bg-productos-inicio{
background-color: #37567F;
height: 65px;

}
.product-title {
    padding: 15px;
}

.product-title h2 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    /* transition: color 0.3s ease; */
}

.categoria-menu{
    color: var(--Gris-oscuro, #252627);
font-family: 'Oswald';
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 27px */
}

.subcategoria-menu{
    color: var(--Gris-oscuro, #252627);
font-family: 'Oswald';
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 24px */
}
.subcategoria-menu:hover{
    color: #37567F;
font-family: 'Oswald';
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 24px */
}
.accordion-button:not(.collapsed){
    color: var(--Gris-oscuro, #252627) !important;
font-family: 'Oswald';
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 27px */
}

.card-link .card {
    transition: transform 0.3s;
}

.card-link:hover .card {

}

.card-link:hover .card .card-title {
    font-family: 'Oswald';
    color: #37567F; /* Cambia el color al pasar el mouse */
  
}

.titulo-destacado{
    color: var(--Negro, #111);
    /* Heading/H3 */
    font-family: 'Oswald';
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
}

.categoria-item-wrapper {
    overflow: hidden;
}

	
.list-group-item {
    color: var(--Gris, #252525) !important;
    font-family: 'Oswald';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    border: none !important; /* Eliminar borde */
    padding: 0;
  }

  .list-group-item a {
    text-decoration: none;
    color: var(--Gris, #252525) !important;
  }

  .categoriaActiva {
    color: var(--Gris, #252525) !important;
    font-family: 'Oswald';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
  }

  .list-group-item.active a {
    color: #fff !important; /* Asegurar que el texto del link también sea blanco en el activo */
  }

  .producto-item {
    position: relative;
    overflow: hidden; /* To ensure the overlay stays within the item */
}

.producto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(145, 144, 144, 0.2); /* Color of the overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.producto-item:hover .producto-overlay {
    opacity: 1;
}


  .card-producto-categoria{
    color: var(--rojo, #37567F);

/* Body/Bold/Body 16 */
font-family: 'Oswald';
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 24px */
  }

  .card-producto-titulo{
    color: var(--Negro, #111);

    /* Heading/H5 */
    font-family: 'Oswald';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 24px */
  }


  .producto-categoria{
    color: var(--rojo, #37567F);
    font-family: 'Oswald';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 33px; /* 206.25% */
  }
  .producto-titulo{
    color: var(--Negro, #111);

    /* Heading/H3 */
    font-family: 'Oswald';
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
  }

  .producto-texto{
    color: var(--Gris, #252525);
    /* Body/Regular/Body 16 */
    font-family: 'Oswald';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
  }
/* APLICACIONES*/
.aplicaciones-titulo{
    color: var(--Verde, #37567F);
font-family: 'Oswald';
font-size: 30px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.image-container {
    position: relative;
    margin-right: 10px;
    margin-bottom: 10px;
}

.gallery-image {
    max-width: 100%; /* Adjust the size as needed */
}

.bg-grey{
    background: #F5F5F5;
}
.brand-section {
    padding: 20px 0px;
margin-top: 5rem;
margin-bottom: 5rem;
}

.bg__card{
    background: var(--Blanco, #FFF);
    height: 350px;
    padding: 30px;
}


.bg__card__inicio{
    height: 350px;
    padding: 30px;
}


.card__titulo{
    color: var(--Gris, #252525);
    font-family: 'Oswald';
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 150% */

}

.card__texto{
    color: var(--Gris, #252525);

    /* Body/Regular/Body 16 */
    font-family: 'Oswald';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}


.custom-list ul {
    list-style-type: none;
    padding: 0;
}

.custom-list ul li {
    display: flex; /* Para alinear el ícono y el texto en línea */
    align-items: center; /* Para centrar verticalmente el contenido */
    margin-bottom: 10px; /* Espacio entre cada elemento de la lista */
}

.custom-list ul li::before {
    content: ''; /* Contenido generado antes del texto del li */
    display: inline-block; /* Convertir en un bloque en línea */
    width: 24px; /* Ancho del ícono */
    height: 24px; /* Altura del ícono */
    margin-right: 8px; /* Espacio entre el ícono y el texto */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg clip-path='url(%23clip0_4006_1047)'%3E%3Cpath d='M5.99992 7.99998L7.33325 9.33331L9.99992 6.66665M14.6666 7.99998C14.6666 11.6819 11.6818 14.6666 7.99992 14.6666C4.31802 14.6666 1.33325 11.6819 1.33325 7.99998C1.33325 4.31808 4.31802 1.33331 7.99992 1.33331C11.6818 1.33331 14.6666 4.31808 14.6666 7.99998Z' stroke='%2#37567F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4006_1047'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat; /* Evitar la repetición del ícono */
    padding: 10px;
}

.custom-video {
    width: auto;
    height: 100%;
}


.card {
    position: relative;
    overflow: hidden;
}
.card-overlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(145, 144, 144, 0.2); /* Color del overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
}
.card:hover .card-overlay {
    opacity: 1;
}
.card-text{
    color: var(--Celeste, #37567F);
    font-family: 'Oswald';
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%; /* 21px */
    text-transform: uppercase;
}

.card-title{
    color: var(--Tipografa, #302C2D);
font-family: 'Oswald';
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 150%; /* 30px */
}

.card-text-corto{
    color: var(--Tipografa, #252B2F) !important;
font-family: 'Oswald';
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 24px */
}

.card-fecha{
    color: rgba(37, 43, 47, 0.50);

    /* Body/Bold/Body 16 */
    font-family: 'Oswald';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
}

.calidad-titulo{
    color: var(--Negro, #111);

    /* Heading/H3 */
    font-family: "Oswald";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
}

.calidad-descripcion{
    color: #000;
    font-family: 'Oswald';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}

.titulo-contacto{
    color: var(--rojo, #37567F);

/* Heading/H3 */
font-family: 'Oswald';
font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 38.4px */
}

.info-contact {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Adjust spacing as needed */
}

.item-contact {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.item-contact svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.item-contact a {
    color: #000;
    font-family: 'Oswald';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.item-contact a:hover {
    color: #37567F;
    font-family: 'Oswald';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.form-label{
    color: var(--Negro, #000);
    font-family: 'Oswald';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }


  .titulo__presupuesto{
    color: var(--000000, #000);
    font-family: 'Oswald';
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-left: 10px; /* Ajusta el espacio entre el SVG y el texto si es necesario */
        line-height: 35px; /* Ajusta la altura de línea para alinear verticalmente con el SVG */
    }

    .contenedor {
        display: flex;
        align-items: center; /* Alinea verticalmente el contenido */
        border-bottom: 1px solid #ccc; /* Estilo del borde inferior */
        padding-bottom: 10px; /* Espacio opcional bajo el borde */
        margin-bottom: 20px; /* Espacio opcional debajo del contenedor */
    }

    
    .custom-file-button input[type=file]::-webkit-file-upload-button {
        display: none;
      }
      .custom-file-button input[type=file]::file-selector-button {
          display: none;
      }
      .custom-file-button:hover label {
          cursor: pointer;
       
      }
        #inputGroupFile {
          /* border-radius: 6px; */
          border-top-left-radius: 6px !important;
          border-bottom-left-radius: 6px !important;
        
          border-right: none !important;
          border-top-right-radius: 0px !important;
          border-bottom-right-radius: 0px !important;
          font-family: 'Oswald';
          font-style: normal;
          font-weight: 400;
          font-size: 15px;

          color: rgba(0, 0, 0, 0.5);
        }

        .btn__ficha{
            font-family: 'Oswald';
            font-size: 15px;
            font-style: normal;
            font-weight: 500;
            line-height: 32px;
            border: 1px solid #37567F;
            color: #37567F;
            cursor: pointer;
         
            padding: 10px 20px;
            background-color: #fff; /* Color base del botón */
            transition: 0.5s ease-in-out; /* Transición suave del efecto de sombra */
        }
        
        
        .btn__ficha:hover{
            font-family: 'Oswald';
            font-size: 15px;
            font-style: normal;
            font-weight: 500;
            line-height: 32px;
            border: 1px solid #37567F;
            color: #fff;
            cursor: pointer;
         
            padding: 10px 20px;
            background-color: #37567F; /* Color base del botón */
            transition: 0.5s ease-in-out; /* Transición suave del efecto de sombra */
        }


        .btn__consultar{
            font-family: 'Oswald';
            font-size: 15px;
            font-style: normal;
            font-weight: 500;
            line-height: 32px;
            border: 1px solid #37567F;
            color: #fff;
            cursor: pointer;
         
            padding: 10px 20px;
            background-color: #37567F; /* Color base del botón */
            transition: 0.5s ease-in-out; /* Transición suave del efecto de sombra */
        }
        
        
        .btn__consultar:hover{
            font-family: 'Oswald';
            font-size: 15px;
            font-style: normal;
            font-weight: 500;
            line-height: 32px;
            border: 1px solid #37567F;
            color: #37567F;
            cursor: pointer;
         
            padding: 10px 20px;
            background-color: #fff; /* Color base del botón */
            transition: 0.5s ease-in-out; /* Transición suave del efecto de sombra */
        }
        th{
            color: var(--Gris-oscuro, #464646);
    font-family: "Oswald";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
        }
        td{
            color: var(--Gris-oscuro, #464646);
        font-family: "Oswald";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px; /* 137.5% */
        }
        
        .form-label{
            color: var(--Text, #5A5754);
    font-family: "Oswald";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
        }

        .form-control{
            border:1px solid #EFEFEF;
        }