body{
    font-family: "Roboto", "sans-serif";
}

/*Imagen circular */
.image-profile {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 20px; 

    object-fit: cover;
    object-position: center right;
}

/* Background-img*/
#Hero-Section {
    background-image: url("/assets/img/bg-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

/*White-Line*/
.divider-custom {
    margin: 1.25rem 0 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.divider-custom .divider-custom-line {
    width: 100%;
    max-width: 7rem;
    height: 0.25rem;
    background-color: black;
    border-radius: 1rem;
    border-color: black;
}
.divider-custom .divider-custom-line:first-child {
    margin-right: 1rem;
}
.divider-custom .divider-custom-line:last-child {
    margin-left: 1rem;
}
.divider-custom .divider-custom-icon {
    color: black;
    font-size: 2rem;
}
.divider-custom.divider-light .divider-custom-line {
    background-color: #fff;
}
.divider-custom.divider-light .divider-custom-icon {
    color: #fff;
}
