.content {
    max-height: 100px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Nombre de lignes à afficher avant de tronquer */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.invalid-feedback {
    color: #ffffff;
}
.content.expanded {
    max-height: none;
    -webkit-line-clamp: unset;
    overflow: inherit;
}
.bg-blue {
    background-color: var(--section-bg-color)
}
.objectif {
    margin-bottom: 100px !important;
}
.navbar {
    position: sticky;
    top: 0;
    background-image: url('../images/bg-menu.jpg');
    background-size: cover;
}
.section-title {
    background: var(--custom-btn-bg-color);
    color: #FFFFFF;
}
.section-title-wrap::after {

    background: var(--custom-btn-bg-color);
}
#btn-send {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
}
#spinner-content {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    height: 100%;
    width: 100%;
    align-items: center;
    z-index: 99999999;
    background-color: rgba(0, 0, 0, 0.388);
}

@media (max-width: 768px) {
    .mobile{
        padding-top: 250px;
    }
}