* {
    box-sizing: border-box;
}

body {
    background-color: rgb(5, 4, 25);
    overflow-x: hidden;
    color: white;
    /* padding-top: 100px; */
}

.title-text{
    width: fit-content;
    padding-right: 15px;
    border-bottom: 4px solid rgb(30, 200, 230);
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 45px !important;
}


#encabezado{
    color: white;
    font-size: 40px !important;
    font-weight: bold;
    background-image: url(../img/nosotros.jpg);
    background-size: cover;
    background-position: bottom;
    height: 90vh;
    margin-bottom: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#encabezado>div{
    z-index: 1;
    padding-bottom: 20px;
}

#fondo-gradient{
    background-image: linear-gradient(to top, rgba(4,5,25,1),rgba(4,5,25,0));
    height: 90vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;

}

.img-container{
    border-radius: 10px;
    overflow: hidden;
    height: 80%;
    width: 100%;
}
.imagen{
    min-width: 100%;
    min-height: 100%;
    max-height: 80vh;
    position: relative;
    left: -25%;
}

#content-page{
    padding: 10px 60px;
}

.text-container, .col-imagen{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col-imagen{
    align-items: center;
}

.apartado{
    /* padding-bottom: 60px; */
    min-height: 100vh;
}

#values{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

#values>.row{
    width: 80%;
}

#description{
    width: 70%;
    text-align: center;
    padding-bottom: 50px;
}

.icono{
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 90px; */
}

.icono i{
    color: rgb(30, 200, 230);
    font-size: 50px;
}

.title-value{
    font-weight: bold;
    font-size: 20px;
    color: rgb(30, 200, 230);
    /* border-bottom: 4px solid rgb(30, 200, 230); */
}

#titulo-values{
    font-weight: bold;
    font-size: 30px;
}

#img-vision-2{
    display: none;
}

.brand{
    padding: 100px 70px;
    font-size: 18px;
}

.justified{
    text-align: justify;
}

@media only screen and (max-width: 768px){
    #img-vision-1{
        display: none;
    }
    #img-vision-2{
        display: block;
    }
    #content-page{
        padding: 10px 40px;
    }
    .brand{
        padding: 100px 20px;
        text-align: justify !important;
    }
}

@media only screen and (max-width: 576px){
    .title-value, .text-value{
        text-align: center;
    }
    #content-page{
        padding: 10px 20px;
    }
    
}

@media only screen and (min-height: 750px){
    .apartado{
        /* padding-bottom: 60px; */
       min-height: 50vh;
    }    
}