body{
    margin: 0%;
    padding: 0%;
    display: flex;
    flex-direction: column;
}

main{
    border-top: solid 2px #00000024;
}

.navbar-mobile{
    background-color: #ffffff !important;
}

.navbar-mobile a{
    width: 30vw;
}
.navbar-mobile img{
    width: 100%;
}

@media (min-width:750px){
    .container-fluid{
        padding: 1%;
        height: 15vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #ffffff;
    }
    .lenz-logo{
        height: 80%;
        width: fit-content;
        overflow:hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .lenz-logo img{
        height: 100%;
        width: auto;
        object-fit: cover;
    }
    
    #navbarNav{
        width: 600px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .navbar-nav{
        height: 60px;
        padding: 0%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        list-style: none;
    }
    .nav-item{
        border-style: none;
        min-width: fit-content;
        height: fit-content;
        margin-right: 2%;
        margin-left: 2%;
        padding-top: .5%;
        padding-bottom: .5%;
        padding-right: 3%;
        padding-left: 3%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nav-item a{
        text-decoration: none;
        font-size:x-large;
        font-weight: 500;
        color: #030351;
    }
        /* FIN NAV  */
    
}



.div-carousel{
    width: 100vw;
}

#carouselExampleSlidesOnly{
    height: 100%;
    width: 100%;
}

.carousel-item{
    width: 100vw;
}

.div-contenido-carousel{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100%;    
}

.div-imagen-carousel{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.div-imagen-carousel img{
    width: 100%;
    object-fit: contain;
}

#form-solicitar-presupuesto{
    margin-top: 10vh;
    margin-bottom: 10vh;    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lbl-input{
    display:flex;
    flex-direction: column;
    margin: 2vh;
    width: 80%;
    max-width: 800px;
}

.lbl-input label{
    font-weight: 600;
    font-size: large;
}

.lbl-input input{
    border-radius: 15px;
    border-style: hidden;
    background-color: #acaed9;
    height: 5vh; 
}

.lbl-input textarea{
    border-radius: 15px;
    border-style: hidden;
    background-color: #acaed9;
    min-height: 15vh;
}

#form-solicitar-presupuesto button{
    margin-top: 2vh;
    border-radius: 15px;
    border-style: hidden;
    background-color: #0b1844;
    height: 6vh;
    width: 60%;
    color: #ffffff;
    font-weight: 600;
}




/* Footer */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    max-height: fit-content;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .footer-links li {
    margin: 0;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }