/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/


.header-list-link a,
.header-list-link-dark a {
    width: fit-content;
    font-family: 'Lora', serif;
    font-weight: 500;
    line-height: 1;
    position: relative;
}

.header-list-link a {
	color: #F8F7F4 !important;
}

.header-list-link-dark a {
	color: #153b3a !important;
}

.header-list-link a::before,
.header-list-link-dark a::before {
    content: '';
    width: 0; /* Commencer avec une largeur de 0 */
    height: 1px;
    border-radius: 2px;
    position: absolute;
    bottom: -.25rem;
    left: 0;
    background-color: currentColor;
    transition: all 0.4s ease-in-out;
}

.header-list-link a:hover::before,
.header-list-link-dark a:hover::before {
    width: 100%;
}