
:root {
    --main-bg-color: #ffff;
    --main-text-color: #333;
    --button-bg-color: #ff6300;
}

body {
    font-family: 'Tahoma', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--main-bg-color);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 0.5em;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 1em;
}

.footer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 80vw;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 30%;
    margin: 1em;
}

.footer-section h3 {
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

#logo-container {
    display: flex;
    align-items: center;
}

#logo {
    width: 8vw;
    height: auto;
    margin: 0.15em 0.6em 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80vw;
    background-color: var(--main-bg-color);
    padding: 0.5em;
    border-radius: 0.5em;
    margin-left: 2em;
}

#nav-list {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

#navbar li {
    margin-left: 0.5em;
}

#navbar a {
    text-decoration: none;
    font-size: 1.2em;
    color: var(--main-text-color);
    padding: 0.5em;
    margin: 0 1.5em;
    transition: background-color 0.3s;
}

#navbar a:hover {
    color: #ff6300;
    border-radius: 0.5em;
}

#navbar a.active {
    color: #ff6300;
}

#hamburger {
    display: none;
    cursor: pointer;
    margin-right: 0.9em;
    margin-top: 0.2em;
}

.body-overlay {
    position: relative;
    width: 100%;
    height: 60%;
    overflow: hidden;
    margin-top: 4em;
}

.container-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.leftandin, .leftandin2 {
    display: flex;
    width: 100%;
    position: relative;
}
.outer-left {
    position: absolute;
    top: 2em;
    left: 2em;
    right: 10em;
    z-index: 1;
    color: #fff;
}

.outer-left h1 {
    font-size: 3.5em;
    margin-block-end: 0.3em;
    margin-block-start: 0.3em;
}

.outer-left h3 {
    font-size: 2em;
    margin-block-end: 0.3em;
    margin-block-start: 0.3em;
}

.cta {
    padding: 0 2em;
    margin-right: 1em;
    border: none;
    background-color: var(--button-bg-color);
    color: #ffff;
    border-radius: 0.5em;
    cursor: pointer;
    height: 100%;
    line-height: 2em;
    box-sizing: border-box;
    font-size: 1em;
    margin-top: 1em;
}

.cta:hover {
    background-color: #ff8100;
}

.inner {
    flex: 1 1 auto;
    background-size: cover;
    background-position: center;
    position: relative;
}

.toggler {
    position: absolute;
    bottom: 50%;
    right: 20px;
    z-index: 2;
}

.background-image-1 {
    background-image: url('../img/5.avif');
    width: 100vw;
    height: 60vh;
    background-size: cover;
    background-position: center;
}

.background-image-2 {
    background-image: url('../img/2.jpg');
    width: 100vw;
    height: 60vh;
}

.displaynone {
    display: none;
}

.description {
    margin-top: 0.1em;
}

#content {
    margin-top: 5em;
    padding: 0 2%;
}

#welcome-section, #welcome-section2 {
    display: flex;
    align-items: center;
    padding: 1%;
    background-color: var(--main-bg-color);
}

#welcome-image2, #welcome-image {
    max-width: 45%;
    height: auto;
    border-radius: 10%;
    padding: 0.5%;
}

#welcome-text, #welcome-text2 {
    max-width: 55%;
    padding: 2%;
    text-align: justify;
    font-size: 1.35rem;
}

#inicio-container {
    padding: 1%;
    background-color: var(--main-bg-color);
    margin-top: 1em;
}

#inicio-container h1 {
    font-size: 1.8rem;
    margin: 0.05em;
    text-align: center;
}

#inicio-container p {
    font-size: 1.3rem;
    padding: 0 2em;
    margin-bottom: 1em;
    text-align: justify;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 4.1em;
}

.carousel-inner {
    display: flex;
    transition: transform 1.5s ease;
}

.carousel-item {
    min-width: 100%;
}

.carousel img {
    width: 100%;
    height: 25em;
    object-fit: cover;
    display: block;
}

.carousel-control {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 0.5em;
    cursor: pointer;
    z-index: 0;
    border-radius: 0.3em;
}

.carousel-control.prev {
    left: 1em;
}

.carousel-control.next {
    right: 1em;
}
#servicios-container {
    background-color: #ffff;
    width: 100%;
}

#servicios-container h1 {
    font-size: 2.25em;
    padding-left: 1em;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
}

#servicios-container p {
    font-size: 1em;
    padding:0 1em;
    margin-top: 0.2em;
}

#imagen-bienvenida {
    width: 100%;
    height: 25em;
    margin-top: 4em;
    object-fit: cover;
}

.navbaricon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #ffff;
    transition: top 0.3s;
}

.fixed {
    position: sticky;
    top: 3.4em;
    left: 0;
    width: 100%;
    height: 15%;
    z-index: 1000;
}

.cardicon {
    flex: 1;
    margin: 0.5em 0.8em;
    width: 100%;
    background-color: #ff6300;
    border-radius: 0.5em;
    padding: 0.2em 1em;
    text-align: center;
    transition: transform 0.7s;
}

.fixed .cardicon {
    transform: scale(0.8);
}

.cardicon:hover {
    transform: scale(1.08);
    background-color: #ff7c0a;
}

.icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icon-img {
    width: 2em;
    height: 2em;
    object-fit: contain;
}

.icon-name {
    margin-top: 0.5em;
    text-align: center;
    color: #000;
}

#secciones-servicios {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25em;
    margin: 1.25em;
}

.card {
    background-color: #ffff;
    border-radius: 0.3em;
    padding: 1.5em;
    text-align: left;
    transition: transform 0.7s;
    display: flex;
    justify-content: center;
}

.card:hover {
    transform: scale(1.02);
    background-color: #fef6eb;
}

.imagen-servicio {
    width: 31.25em;
    height: 21.875em;
    object-fit: cover;
    border-radius: 0.3em;
    margin: 1.5em;
}

.texto-servicio {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.texto-servicio p {
    font-size: 1.2em;
    text-align: justify;
}

.texto -servicio h2 {
    font-size: 1.5em;
    text-align: center;
}

.btn1-solicitar {
    width: 60%;
    margin: 0 auto;
    background-color: #ff6300;
    color: #000;
    border: none;
    padding: 0.5em 1.2em;
    border-radius: 0.5em;
    cursor: pointer;
    margin-top: 0.6em;
    font-size: 1em;
}

.btn1-solicitar:hover {
    background-color: #ff7c0a;
}

.prod-header {
    background-image: url('../img/4.jpg');
    background-size: cover;
    background-position: center;
    height: 16em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4em;
}

.prod-search-container {
    width: 60%;
    margin-top: 10em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-search-input {
    width: 80%;
    padding: 0.7em;
    font-size: 1em;
    border: none;
    border-radius: 0.4em;
}

#prod-search-button {
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 0.4em;
    padding: 0.7em;
    cursor: pointer;
}
.prod-container {
    display: flex;
}

.prod-left-column {
    width: 25%;
    height: 90vh;
    padding: 1em;
    position: sticky;
    top: 3.5em;
    overflow-y: auto;
    background-color: #ffffff;
    border-radius: 0.5em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-title, .filter-title {
    color: #ff6300;
    font-size: 1.5em;
    margin-bottom: 1em;
    text-align: center;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.7em;
    position: relative;
}

.prod-category-link {
    display: block;
    padding: 0.5em;
    background-color: #f9f9f9;
    color: #333;
    text-decoration: none;
    border-radius: 0.3em;
    transition: background-color 0.3s, color 0.3s;
}

.prod-category-link:hover {
    background-color: #ff6300;
    color: #ffffff;
}

.sub-category-list {
    display: none;
}

.sub-category-list.visible {
    display: block;
}

.category-list li:hover .sub-category-list {
    display: block;
}

#min-price, #max-price {
    width: calc(100% - 1em);
    margin-bottom: 1em;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 0.3em;
}

#filter-price {
    padding: 0.5em 1em;
    border: none;
    background-color: #ff6300;
    color: #ffffff;
    border-radius: 0.5em;
    cursor: pointer;
    transition: background-color 0.3s;
}

#filter-price:hover {
    background-color: #b37642;
}

.selected-category {
    background-color: #ff6300;
    color: #ffffff;
}

.prod-right-column {
    width: 80%;
    padding: 1em;
}

.prod-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8em;
}

.prod-product-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 0em;
    margin: 0.2em;
    transition: transform 0.1s;
    height: auto;
}

.prod-product-card:hover {
    transform: scale(1.05);
}

.prod-product-image {
    max-width: 100%;
    height: auto;
    margin: 0;
    border-radius: 0.4em;
    align-items: center;
}

.textprod {
    flex-grow: 1;
}

.precioProducto {
    font-size: 1.2em;
    color: #25D500;
}

.infoProducto {
    display: none;
}
.tarjeta-flotante {
    display: none;
    position: fixed;
    justify-items: center;
    top: 55%;
    left: 50%;
    border-radius: 1em;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 0.05em solid #777;
    box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 1em;
    width: 70vw;
    max-width: 90%;
    box-sizing: border-box;
}

.flex-container {
    display: flex;
    align-items: center;
}

#imagenProducto {
    max-width: 50%;
    height: auto;
    margin-right: 1.5em;
}

.texto {
    flex: 1;
    font-size: 1.3rem;
}

.cerrar {
    cursor: pointer;
    float: right;
    font-size: 1.5em;
}

#precioProducto {
    padding: 0.7em 0;
    color: #25D500;
}

.comprarBtn {
    border: 0.05em solid #777;
    background-color: #25D500;
    color: #f0f0f0;
    border-radius: 0.3em;
    cursor: pointer;
    transition: transform 0.3s;
    padding: 0.8em;
    font-size: 1.3rem;
}

.comprarBtn:hover {
    transform: scale(1.08);
    background-color: #25D366;
}

.contenido {
    margin-top: 1px;
}

.tools-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4em;
    margin-bottom: 1em;
    width: 100%;
}

.tools-card1 {
    border: 0.0625em solid #ff6300;
    border-radius: 0.5em;
    padding: 1em;
    width: 45%;
    box-shadow: 0 0.125em 0.3125em rgba(0, 0, 0, 0.1);
    margin: 1em 0.2em;
    background-color: #fff;
}

.tools-card1 h1 {
    text-align: center;
    color: #ff6300;
    margin-bottom: 1em;
    font-size: 1.5em;
}

.tools-card1 h2 {
    margin-bottom: 0.625em;
    color: #333;
    font-size: 1.2rem;
}

.input-container {
    display: flex;
    justify-content: space-between;
    margin-top: 0.625em;
}

.input-container input {
    width: 98%;
}

.input-container2 input {
    width: 97%;
}

#coverage-expectation2 {
    width: 92%;
}

.input-group {
    flex: 1;
    margin-right: 0.3125em;
}

.input-group:last-child {
    margin-right: 0;
}

label {
    display: block;
    margin-top: 0.625em;
    color: #555;
}

input {
    width: 89%;
    padding: 0.625em;
    margin-top: 0.3125em;
    border: 0.0625em solid #ccc;
    border-radius: 0.25em;
    font-size: 1em;
}

select {
    width: 99%;
    padding: 0.625em;
    margin-top: 0.3125em;
    border: 0.0625em solid #ccc;
    border-radius: 0.25em;
    font-size: 1em;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 0.625em;
}

.btn-tools {
    flex: 1;
    padding: 0.625em;
    margin-right: 0.3125em;
}

.btn-tools:last-child {
    margin-right: 0;
}

.btn-tools {
    width: 100%;
    padding: 0.625em;
    margin-top: 0.625em;
    background-color: #ff6300;
    color: white;
    border: none;
    border-radius: 0.25em;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.btn-tools:hover {
    background-color: #e55a00;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
}

th, td {
    padding: 0.625em;
    text-align: center;
    border-bottom: 0.0625em solid #ddd;
}

th {
    background-color: #ff6300;
    color: white;
}

tbody tr:hover {
    background-color: #f1f1f1;
}

ul {
    list-style-type: none;
    padding: 0;
}

.tools-card2 {
    border: 0.0625em solid #ff6300;
    border-radius: 0.5em;
    padding: 1em;
    width: 45%;
    box-shadow: 0 0.125em 0.3125em rgba(0, 0, 0, 0.1);
    margin: 1em 0.2em;
    background-color: #fff;
}

.tools-card2 h1 {
    text-align: center;
    color: #ff6300;
    margin-bottom: 1em;
}

.input-container2 {
    display: flex;
    justify-content: space-between;
    margin-top: 0.625em;
}

.input-group2 {
    flex: 1;
    margin-right: 0.3125em;
}

.input-group2:last-child {
    margin-right: 0;
}

label {
    display: block;
    margin-top: 0.625em;
    color: #555;
    width: 100%;
}

input[type="range"] {
    width: 95%; /* Ancho completo para la barra de rango */
    margin-top: 0.3125em;
    color-scheme: var(--button-bg-color);
}

output {
    margin-top: 0.5em; /* Espaciado superior */
    font-weight: bold; /* Negrita para el valor */
    text-align: center; /* Centrar el texto */
    width: 100%; /* Asegurarse de que el span ocupe el ancho completo */
}

.btn-tools {
    background-color: #ff6300; /* Color de fondo del botón */
    color: white; /* Color del texto del botón */
    border: none; /* Sin borde */
    cursor: pointer; /* Cambiar cursor al pasar el mouse */
    transition: background-color 0.3s;
    width: 99%;
}

.btn-tools:hover {
    background-color: #e55a00; /* Color de fondo al pasar el mouse */
}

.result-cards2 {
    display: flex; /* Usar flexbox para alinear las tarjetas */
    justify-content: center; /* Espacio entre las tarjetas */
    margin-top: 1em; /* Espaciado superior */
}

.result-card2 {
    border: 1px solid #ff6300; /* Borde gris claro */
    border-radius: 0.5em; /* Bordes redondeados */
    padding: 1em;
    margin: 0.2em;
    width: 48%; /* Ancho de cada tarjeta */
    box-shadow: 0 0.125em 0.3125em rgba(0, 0, 0, 0.1); /* Sombra */
    text-align: center; /* Centrar texto */
    background-color: #fff;
}

.result-card2 h2 {
    font-size: 1.2em; /* Tamaño de fuente */
    margin-bottom: 0.5em;
    color: #ff6300; /* Color del texto */
}

.result-card2 p {
    font-size: 1.5em; /* Tamaño de fuente para resultados */
    color: #ff6300; /* Color del texto */
}

.tools-card3 {
    border: 0.0625em solid #ff6300;
    border-radius: 0.5em;
    padding: 1em;
    width: 50%;
    box-shadow: 0 0.125em 0.3125em rgba(0, 0, 0, 0.1);
    margin: 1em 0.2em;
    background-color: #fff;
}

.tools-card3 h1 {
    text-align: center; /* Centrar el título */
    color: #ff6300; /* Color del título */
    margin-bottom: 1em; /* Espaciado inferior */
}

.input-group3 {
    margin-bottom: 1em; /* Espaciado inferior entre grupos de entrada */
}

.input-group3 label {
    display: block; /* Hacer que las etiquetas ocupen toda la línea */
    margin-bottom: 0.5em; /* Espaciado inferior */
}

.input-group3 input {
    width: 98.5%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 0.25em;
}

.input-group3 select {
    width: 99.6%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 0.25em;
}

.custom-project .project-type-options {
    display: flex; /* Usar flexbox para alinear las opciones */
    justify-content: space-between; /* Espacio entre las opciones */
}

.custom-project .project-type {
    border: 1px solid #ff6300;
    border-radius: 0.5em;
    padding: 1em;
    margin: 0.2em;
    box-shadow: 0 0.125em 0.3125em rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #fff;
    flex: 1;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-project .project-type:hover {
    background-color: #e55a00; /* Color de fondo al pasar el mouse */
}

.custom-project .project-type.selected {
    background-color: #ff6300;
    color: white; /* Color del texto cuando está seleccionado */
}

.custom-project .project-type img {
    width: 3.5em; /* Ancho del icono */
    height: auto; /* Mantener proporciones */
}

.custom-project .project-type p {
    margin: 0.2em 0 0;
}

#proyectos-container {
    text-align: left;
    margin-bottom: 1em;
    margin-top: 4em;
}
#proyectos-container h1 {
    font-size: 1.8em;
    margin-bottom: 0.7em;
    padding-left: 0.6em;
}
#proyectos-container p {
    font-size: 1.2em;
    margin-bottom: 1.2em;
    padding-left: 1.2em;
}
#proyectos {
    width: 100%;
}
#imagen-proyectobiem {
    width: 100%;
    height: 25em;
    object-fit: cover;
}
.projects-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2em;
    padding: 1.2em;
    grid-auto-rows: minmax(9.375em, auto);
}
.project-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #ccc;
    border-radius: 0.5em;
    padding: 0.7em;
    box-shadow: 0 0.1em 0.3em rgba(0, 0, 0, 0.1);
    height: auto;
    transition: transform 0.5s;
}
.project-card:hover {
    transform: scale(1.05);
    background-color: #fef6eb;
}
.project-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 0.5em;
}
.project-card h2 {
    font-size: 1.2em;
    margin-bottom: 1em;
}
.client-name {
    font-size: 1em;
    margin-bottom: 0.1em;
}
.project-description {
    font-size: 0.8em;
    margin-bottom: 1.5em;
}
.whatsapp-button {
    position: fixed;
    right: 1em;
    bottom: 1em;
    z-index: 9999;
    background-color: #25D320;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.7s, box-shadow 0.3s;
    padding: 5px;
}
.whatsapp-button img {
max-width: 4em;
display: block;
}
.whatsapp-button:hover {
transform: scale(1.1);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


@media (max-width: 767px) {
    header {
        justify-content: start;
        height: 3em;
        width: 100%;
    }
    #logo {
        width: 23vw;
    }
    #navbar{
        margin-left: 0;
        width: 100%;
    }
    #nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: white;
        width: 100%;
        top: 3.5em;
        left: 0;
        line-height: 2em;
    }
    #hamburger {
        display: block;
        margin-right: 0.9em;
        margin-top: 0.2em;
        
    }
    #navbar a {
        font-size: 1.1em;
        margin: 0 2em;
    }
    
    .background-image-1, .background-image-2 {
        width: 100%;
        height: 45vh;
        object-fit: cover;
    }
    .body-overlay{
        height: 100%;
    }
    .carousel-control{
        position:absolute;
        top: 26%;
    }
    .outer-left {
        position:static;
        width: 95%;
        margin-left: 1em;
        padding-bottom: 2em;
    }
    .outer-left h1 {
        font-size: 1.8em;
        margin-top: 1em;
        
    }

    .outer-left h3 {
        font-size: 1.3em;
    }
    .outer-left p {
        font-size: 1em;
        width: 85%;
    }

    .cta {
        margin-top: 1em;
        padding:0.2em 1em;
        font-size: 0.95em;
    }
    .cta p{
        width: 100%;
    }
    #content {
        padding: 3%;
    }
    #welcome-section, #welcome-section2 {
        flex-direction: column;
        align-items: center;
    }
    #welcome-image, #welcome-image2 {
        width: 90vw;
        height: 25vh;
        object-fit: cover;
        border-radius: 5%;
    }

    #welcome-text, #welcome-text2 {
        font-size: 1rem;
        padding: 0.5em 0.5em 0;
        max-width: 90%;
    }
    #inicio-container{
        margin-top: 1em;
    }
    #inicio-container h1 {
        font-size: 1rem;
    }

    #inicio-container p {
        font-size: 0.6rem;
        margin-bottom: 0;
        padding: 0.8em 1.7em;
    }
    .footer-container{
        width: 95%;
    }
    .footer-section {
        flex: 1 1 100%;
    }
    #content {
        padding: 0 5%;
    }

    #welcome-image, #welcome-image2 {
        max-width: 100%;
    }

    #welcome-text, #welcome-text2 {
        font-size: 1rem;
        padding: 2%;
    }

    #inicio-container h1 {
        font-size: 1.5rem;
    }

    #inicio-container p {
        font-size: 1rem;
        padding: 0 1em;
    }
    .carousel-inner{
        width: 100%;
    }
    .carousel img {
        height: 40vh;
        width: 100vw;
    }

    #servicios-container h1 {
        font-size: 2em;
    }

    #servicios-container p {
        font-size: 1em;
    }
    .navbaricon {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        flex-direction: column;
        justify-items: center;
        background-color: rgba(0, 0, 0, 0);
    }
    .cardicon {
        width: 30vw;
        margin: 0.2em;
        padding: 0.05em;
        justify-content:center;
    }
    .cardicon:hover {
        transform: scale(1.02);
        background-color: #ff7c0a;
    }
    .fixed {
        display:grid;
        grid-template-columns: repeat(3, 1fr);
        position:sticky;
        height: 12%;
        top: 3.7em;
        background-color: #fff;
        z-index: inherit;
    }
    .fixed .cardicon{
        width: 33vw;
        margin: 0.2em 0;
        justify-content: center;
    }
    .icon-img {
        width: 2em;
        height: 2em;
        margin-left: 0.1em;
        display: none;
    }
    .icon-name {
        margin: 0.1em;
        text-align: center;
    }
    .fixed .icon-name {
        margin: 0.1em 0.2em;
        text-align: center;
        
    }
    #secciones-servicios {
        display: flex;
        flex-direction: column;
        justify-self:center;
        gap: 1em;
    }
    #servicios{
        margin: 0 auto;

    }
    .card {
        flex-direction: column;
        width: 80vw;
        align-items: center;
        padding: 0;
    }
    .card:hover{
        transform: none;
    }
    .imagen-servicio {
        width: 80vw;
        height: 25vh;
        object-fit: cover;
        order: 1;
    }
    .texto-servicio {
        order: 2;
    }
    .btn1-solicitar {
        width: 60vw;
    }
    .prod-header {
        height: 12em;
    }
    .prod-search-container {
        width: 90%;
        margin-top: 5em;
    }
    .prod-search-input {
        width: 100%;
    }

    .prod-left-column {
        height: 90vh;
        width: 45%;
        top: 4em;
        padding: 0.7em;
        font-size: 0.75rem;
    }

    .prod-right-column {
        width: 100%;
        padding: 1em;
    }

    .prod-product-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .prod-product-card {
        margin: 0.5em 0;
    }
    
    .flex-container {
        flex-direction: column;
        align-items: center;
    }
    .tarjeta-flotante{
        height: 75vh;
        width: 90%;
        max-width: 100%;
        overflow-y: auto;
        padding: 0.5em;
        border-radius: 0.8em;
    }
    #imagenProducto {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 1em;
    }
    .comprarBtn {
        width: 100%;
        margin-bottom: 1em;
    }
    .cerrar{
        position: sticky;
        top: 0.05em;
        right: 0.05em;
    }
    .tools-card-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 4em;
    }
    
    .tools-card1, .tools-card2, .tools-card3 {
        width: 95vw;
        margin: 0.5em;
        padding: 0.5em;
        font-size: 0.9rem;
    }
    th,td{
        font-size: 0.7rem;
        padding: 0.01em;
    }

    td button{
        font-size: 0.6rem;
        padding: 0 0.4em;
    }
    .button-container{
        width: 99%;
    }
    .input-container, .input-container2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .input-group {
        margin-right: 0;
        width: 100%;
    }
    .input-group2{
        margin-right: 0;
        width: 98.5%;
    }
    .input-group input{
        width: 92%;
    }
    #monthly-consumption2{
        width: 93%;
    }
    .tools-card2 select{
        width: 100%;
    }
    .tools-card2 input[type="range"]{
        width: 100%;
    }
    .tools-card3 input{
        width: 94%;
    }
    .btn-tools {
        width: 98%;
        margin-top: 0.5em;
    }
    .result-card2 {
        width: 80%;
        padding: 0.5em;
    }
    .result-card2 p{
        font-size: 0.8rem;
    }
    .result-card2 h2{
        font-size: 0.7rem;
    }
    #proyectos-container h1 {
        font-size: 1.5em;
    }

    #proyectos-container p {
        font-size: 1em;
    }

    #imagen-proyectobiem {
        height: 15em;
    }

    .projects-cards-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .custom-project .project-type{
        padding: 0.5em;
    }
    .custom-project .project-type img{
        width: 2em;
    }
    .project-card {
        padding: 0.5em;
    }
    .project-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-bottom: 0.5em;
    }
    .whatsapp-button {
        right: 1em;
        bottom: 1em;
    }
    .whatsapp-button img{
        max-width: 3.5em;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    header {
        justify-content: start;
        width: 100vw;
    }
    #logo {
        width: 11vw;
    }
    #navbar{
        margin-left: 0;
        width: 100vw;
    }
    #nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: white;
        width: 100%;
        top: 3em;
        left: 0;
        line-height: 2em;
    }
    #hamburger {
        display: block;
        margin-right: 0.9em;
        margin-top: 0.2em;
        
    }
    #navbar a {
        font-size: 1.1em;
        margin: 0 2em;
    }
    
    .background-image-1, .background-image-2 {
        width: 100%;
        height: 80%;
    }
    .body-overlay{
        height: 100%;
    }
    .carousel-control{
        position:absolute;
        top: 26%;
    }
    .outer-left {
        position:static;
        width: 87%;
        margin-left: 3em;
        padding-bottom: 2em;
    }
    .outer-left h1 {
        font-size: 2.5em;
        margin-top: 1em;
        
    }

    .outer-left h3 {
        font-size: 1.5em;
    }
    .outer-left p {
        font-size: 1em;
        width: 70%;
    }

    .cta {
        margin-top: 1em;
        padding:0.5em 2em;
        font-size: 0.95em;
    }
    .cta p{
        width: 100%;
    }
    #content {
        padding: 3%;
    }
    #welcome-section, #welcome-section2 {
        flex-direction: column;
        align-items: center;
    }
    #welcome-image, #welcome-image2 {
        max-width: 70%;
    }

    #welcome-text, #welcome-text2 {
        font-size: 1rem;
        padding: 0.5em 0.5em 0;
        max-width: 90%;
    }
    #inicio-container{
        margin-top: 1em;
    }
    #inicio-container h1 {
        font-size: 1.5rem;
    }

    #inicio-container p {
        font-size: 1rem;
        margin-bottom: 0;
        padding: 0.8em 1.7em;
    }
    footer{
        justify-items: center;
    }

    .carousel img {
        height: 20em;
    }

    #servicios-container h1 {
        font-size: 2em;
    }

    #servicios-container p {
        font-size: 1em;
    }
    .navbaricon {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        flex-direction: column;
        justify-items: center;
        background-color: rgba(0, 0, 0, 0);
    }
    .cardicon {
        width: 30vw;
        margin: 0.2em;
        padding: 0.05em;
        justify-content:center;
    }
    .fixed {
        display:grid;
        grid-template-columns: repeat(6, 1fr);
        position:sticky;
        background-color: #fff;
        z-index: inherit;
    }
    .fixed .cardicon{
        width: 17vw;
        margin: 1em 0;
        justify-content: center;
    }
    .icon {
        flex-direction:column;
        justify-content: center;
    }
    .icon-img {
        width: 2em;
        height: 2em;
        margin-left: 0.1em;
        display: none;
    }
    .icon-name {
        margin: 0.5em;
        margin-left: 0.3em;
        text-align: center;
    }
    #secciones-servicios {
        flex-direction: column;
        align-self: center;
        gap: 0;
    }
    .card {
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 0;
    }
    .card:hover{
        transform: none;
    }
    .imagen-servicio {
        width: 80vw;
        height: 35vh;
        object-fit: cover;
        order: 1;
    }
    .texto-servicio {
        order: 2;
    }
    .btn1-solicitar {
        width: 50%;
    }
    .prod-header {
        height: 14em;
    }
    .prod-search-container {
        width: 80%;
        margin-top: 8em;
    }
    .tarjeta-flotante{
        width: 90vw;
    }
    .prod-left-column {
        width: 30%;
        height: 90vh;
    }
    .prod-right-column {
        width: 70%;
    }
    .prod-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .comprarBtn {
        width: auto;
    }
    .tools-card-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .tools-card1, .tools-card2, .tools-card3 {
        width: 95vw;
        margin: 0.5em;
        padding: 1em;
        font-size: 1.2rem;
    }
    .input-container, .input-container2 {
        flex-direction: column;
    }
    .input-group{
        margin-right: 0;
        width: 100%;
    }
    .input-group2 {
        margin-right: 0;
        width: 98.5%;
    }
    .input-group input{
        width: 99%;
    }
    #monthly-consumption2{
        width: 100%;
    }
    .tools-card2 select{
        width: 100%;
    }
    .tools-card2 input[type="range"]{
        width: 100%;
    }
    .tools-card3 input{
        width: 100%;
    }
    .button-container{
        width: 99%;
    }
    .btn-tools {
        width: 98%;
        margin-top: 0.5em;
    }
    .result-card2 {
        width: 80%;
        padding: 0.5em;
    }
    #proyectos-container h1 {
        font-size: 1.6em;
    }
    #proyectos-container p {
        font-size: 1.1em;
    }
    #imagen-proyectobiem {
        height: 20em;
    }
    .projects-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-card {
        padding: 0.8em;
    }
    .project-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-bottom: 0.5em;
    }
}
@media (min-width: 1920px) {
    #logo {
        width: 7vw;
    }

    #navbar a {
        font-size: 2em;
        margin: 0 2.5em;
    }

    .outer-left {
        margin: 5em 0 0 3em;
    }

    .outer-left h1 {
        font-size: 6em;
    }

    .outer-left h3 {
        font-size: 4em;
    }

    .outer-left p {
        font-size: 2em;
    }

    .cta {
        padding: 1em 3em;
    }

    #content {
        padding: 0 10%;
    }

    #welcome-section, #welcome-section2 {
        padding: 0 2.4%;
    }

    #welcome-image, #welcome-image2 {
        max-width: 35%;
    }

    #welcome-text, #welcome-text2 {
        max-width: 65%;
        font-size: 2.5rem;
    }

    #inicio-container h1 {
        font-size: 2.5rem;
    }

    #inicio-container p {
        font-size: 2.5rem;
        padding: 0 1.5em;
    }

    .footer-container p {
        font-size: 1.5rem;
    }

    .footer-container h3 {
        font-size: 1.5rem;
    }

    .footer-container a {
        font-size: 1.5rem;
    }

    .footer-container ul {
        font-size: 1.5rem;
    }

    .footer-container li {
        font-size: 1.5rem;
    }

    .footer-bottom p {
        font-size: 1.5rem;
    }

    .carousel img {
        height: 50vh;
    }

    #servicios-container h1 {
        font-size: 4rem;
    }

    #servicios-container p {
        font-size: 2.2rem;
    }

    .navbaricon {
        font-size: 1.8rem;
        height: min-content;
    }

    .fixed {
        top: 3em;
    }

    .cardicon {
        margin: 0.5em;
    }

    .cardicon:hover {
        transform: scale(1.01);
        background-color: #ff7c0a;
    }

    .imagen-servicio {
        width: 40%;
        height: auto;
    }

    .texto-servicio h2 {
        font-size: 2.2rem;
    }

    .texto-servicio p {
        font-size: 2rem;
    }

    .btn1-solicitar {
        width: 40%;
        font-size: 2rem;
    }

    .prod-header {
        height: 20em;
    }

    .prod-search-container {
        width: 50%;
        margin-top: 12em;
    }

    .prod-search-input {
        font-size: 1.5rem;
    }

    .tarjeta-flotante {
        width: 60%;
    }

    .prod-left-column {
        font-size: 1.5rem;
        width: 20%;
    }

    .prod-right-column {
        font-size: 1.5rem;
        width: 80%;
    }

    .prod-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .texto {
        font-size: 2rem;
    }

    .cerrar {
        font-size: 3rem;
    }

    .comprarBtn {
        width: auto;
        font-size: 1.5rem;
    }

    .tools-card1, .tools-card2, .tools-card3 {
        width: 45%;
        padding: 1.2em;
        margin-top: 2.2em;
        font-size: 1.5rem;
    }

    .result-card2 {
        width: 48%;
    }

    .input-container input {
        width: 99%;
    }

    .input-container2 input {
        width: 97%;
    }

    #coverage-expectation2 {
        width: 98%;
    }

    #proyectos-container h1 {
        font-size: 2.2em;
    }

    #proyectos-container p {
        font-size: 1.3em;
    }

    #imagen-proyectobiem {
        height: 30em;
    }

    #proyectos-container {
        margin-top: 6em;
    }

    #proyectos-container p {
        font-size: 1.5rem;
    }

    .projects-cards-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .project-card {
        padding: 1em;
        font-size: 1.5rem;
    }

    .project-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-bottom: 0.5em;
    }

    .whatsapp-button img {
        height: 5em;
    }
}