.history_line{
    position: relative;
}

.history_line::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid gray;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
}
.history_line.end::after{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid gray;
    border-radius: 100%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: white;
}

.grayscale-image {
    filter: grayscale(100%);
}
.label_ask-for-advice{
    margin-top: 2.5rem;
}
.input_ask-for-advice:focus{
    outline: none;
    border-bottom: 1.7px solid black;
}

@media (min-width: 992px){
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-inline: 1.25rem;
    }
}