.db-alert-box {
    position: fixed;
    z-index: 9999;
}

.db-highlight {
    display: inline-block;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--base-color);
    text-underline-offset: 3px;
}

.bg-base-color-light {
  background-color: var(--base-color-light);
}

header .toggle-icon .navbar-toggler-line {
    background: var(--base-color) !important;
}
.menu-item .nav-link,
.header-light .menu-item-list .nav-link {
    color: var(--base-color);
}
.menu-item.active .nav-link {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--base-color-light);
    text-underline-offset: 7px;
    opacity: 1;
}
.menu-item:not(.active) .nav-link {
    font-weight: normal;
    color: #b2b2b2;
}
.menu-item.db-cta {
    display: flex !important;
    justify-content: center;
}
.menu-item.db-cta a {
    padding: 5px 25px !important;
    color: var(--white) !important;
    width: unset;
    background-color: var(--base-color);
    border-radius: 2em;
}
.menu-item.db-cta.active .nav-link {
    text-decoration: none;
}

#bienvenue a.btn,
#prendre-rv button.btn {
    border-radius: 2em;
    border: 2px white solid;
}
#bienvenue .container .col-xxl-8 {
    flex-direction: column;
    height: 100%;
}
#bienvenue .container h3 {
    font-size: 1.2em;
    text-align: right;
    font-style: italic;
    color: var(--base-color-light);
    line-height: 1.5;
}

#temoignages {
    position: relative;
}
#temoignages i {
    color: var(--base-color);
}
#temoignages #random-testimonial h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
}
#temoignages .db-progress {
    position:absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 0;
    background: var(--base-color);
}
#temoignages .db-progress.animate {
    animation: progressbar var(--db-duration) linear forwards;
}

@keyframes progressbar {
    from { width: 0%; }
    to { width: 100%; }
}

#outils-reconstruction #db-portfolio-items li.grid-item div.portfolio-image a {
    display: block;
    width: 100%;
    aspect-ratio: 800 / 635;

    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    overflow: hidden; 
}