body{
    background-color: rgb(5, 4, 25);
}
#encabezado{
    color: white;
    font-size: 40px !important;
    font-weight: bold;
    background-image: url(../img/servicios.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;

}
#content-page{
    margin-top: 10vh;
    min-height: 90vh;
}
#titulo-servicios{
    color: white;
    text-align: center;
    font-size: 35px;
}

.servicio{
    display: flex;
    justify-content: center;
    padding: 20px;
    padding-bottom: 50px;
}
#apartado-servicios{
    padding: 20px 12%;
}

.card{
    background-color: transparent;
    border-radius: 0px;
    color: white;
    padding-bottom: 10px;
    overflow-x: hidden;
    /* background-color: rgb(15, 13, 48); */
    background-color: #0a0a24;
    width: 100% !important;
}

.card-title{
    width: fit-content;
    padding-right: 15px;
    border-bottom: 4px solid rgb(30, 200, 230);
    font-weight: bold;
    margin-bottom: 15px;
}

.card-img-top{
    border-radius: 0;
    height: 250px;
    width:fit-content ;
    min-width: 100%;
    filter:saturate(80%);
}

.card-text{
    padding-bottom: 30px;
}

.btn-custom{
    background-color: rgb(30, 200, 230);
    color: rgb(5,4,25);
    border: none;
    font-weight: bold;
    padding: 7px 20px;
    text-decoration: none;
}

.btn-custom:hover{
    background-color: white;
    transition: 0.5s;
}

.btn-custom i{
    padding-left: 5px;
}

.card-body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.justified{
    text-align: justify;
}