html {
    scroll-behavior: smooth;
}

body {
    font-family: "Lato", sans-serif;
    overflow-x: hidden
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    height: 100%;
    object-fit: cover;
}

.hero-logo-container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

.hero-logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.7));
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 4 !important;
    position: absolute !important;
    top: 80px;
}

.hero-buttons {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    gap: 1rem;
}

.btn-hero {
    pointer-events: auto; /* Permette solo ai bottoni di ricevere i clic */
    background-color: #fff;
}

    .btn-hero:hover {
        background-color: #3e6424;
        color: #fff;
    }

#scrollHeader {
    background: transparent !important;
    box-shadow: none !important;
    color: white;
    max-height: 92px;
    transition: background-color 0.3s ease;
}

    #scrollHeader a,
    #scrollHeader .nav-link,
    #scrollHeader .navbar-toggler-icon,
    #scrollHeader i {
        color: white !important;
    }

/* ===================== */
/*      NAVBAR MENU      */
/* ===================== */

/* Navbar generale */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Spazio tra i link */
}

    .navbar-nav .nav-item {
        margin: 0;
    }

    /* Link della navbar - versione desktop */
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
        font-weight: 600;
        color: #000;
        white-space: nowrap; /* Impedisce l'andata a capo */
        transition: color 0.3s ease;
    }

        .navbar-nav .nav-link:hover {
            color: #2f4e1b; /* verde elegante */
            text-decoration: underline;
        }

/* Hamburger icon */
.navbar-toggler-icon {
    font-size: 1.5rem;
}

/* =============================== */
/*     NAVBAR RESPONSIVE (MOBILE) */
/* =============================== */

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.85); /* effetto glass bianco */
        backdrop-filter: blur(6px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 12px 12px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        gap: 0; /* link sovrapposti verticalmente */
    }

        .navbar-nav .nav-link {
            padding: 12px 0;
            font-size: 16px;
            color: #2f4e1b !important;
            text-align: center;
        }

            .navbar-nav .nav-link:hover {
                color: #000 !important;
            }
}

/* Mobile menu alternativo */
.mobile-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .mobile-menu {
        flex-direction: column;
        gap: 1rem;
        padding-left: 0;
        padding-right: 0;
    }

        .mobile-menu .nav-link {
            padding: 0.4rem 0.2rem;
            font-size: 13px;
        }
}

.mobile-menu .nav-link {
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

    .mobile-menu .nav-link:hover,
    .mobile-menu .nav-link.active {
        color: #a7c95f !important;
        text-decoration: underline !important;
    }

/* Navbar in modalità "menu" bianco */
.menu .nav-link {
    background-color: white;
    color: #000;
    font-weight: 600;
    margin: 0 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-link.fs-5 {
    color: white !important;
}

.logo {
    height: 60px;
    object-fit: contain;
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    #attractionsParagraph {
        padding: 7%;
    }
}

.btn-attraction-section {
    background-color: #ffffff;
    color: #2f4e1b;
    border: 2px solid #2f4e1b;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 50px;
    min-width: 200px;
    text-align: center;
    cursor: pointer;
}

    .btn-attraction-section:hover {
        background-color: #2f4e1b;
        color: #ffffff;
        border-color: #2f4e1b;
        transform: scale(1.03);
    }

@media (max-width: 768px) {
    .btn-attraction-section {
        width: 80%;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .btn-attraction-section {
        width: 60%;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-slide {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.invisible {
    opacity: 0;
    transform: translateY(-10px);
}

/* Fade in/out per lo scroll header */
.fade-transition {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.logo img {
    max-width: 120px;
}

.border-green {
    border: 4px solid #558b2f;
}

.mobile-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .mobile-menu {
        flex-direction: column;
        gap: 1rem;
        padding-left: 0;
        padding-right: 0;
    }
}

.mobile-menu .nav-link {
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

    .mobile-menu .nav-link:hover,
    .mobile-menu .nav-link.active {
        color: #a7c95f !important;
        text-decoration: underline !important;
    }

.nav-link.fs-5 {
    color: white !important;
}

.menu .nav-link {
    background-color: white;
    color: #000;
    font-weight: 600;
    margin: 0 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active {
    color: #a7c95f !important;
    text-decoration: underline !important;
}

.btn-aspro {
    background-color: #2f4e1b;
    color: #fff;
    border: none;
}

    .btn-aspro:hover {
        background-color: #3e6424;
        color: #fff;
    }

.section-green {
    background-color: #2f4e1b;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.section-green-sm {
    background-color: #2f4e1b;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.section-green-lg {
    background-color: #2f4e1b;
    color: white;
    padding: 110px 0;
    text-align: center;
}

/* Zoom su hover per le immagini nella sezione eventi */
.container .row img.zoom {
    transition: transform 0.4s ease, filter 0.3s ease;
    will-change: transform;
}

    .container .row img.zoom:hover {
        cursor: pointer;
        transform: scale(1.05);
        filter: brightness(1.05);
        z-index: 2;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

.event-section {
    background-color: #F8F8F8;
}

.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

    .card-link:hover .event-card {
        transform: scale(1.02);
        transition: transform 0.3s ease;
        cursor: pointer;
    }

.event-card {
    transition: transform 0.3s ease;
}

#goToShopBtn:hover {
    background-color: #2f4e1b;
}

footer {
    background-color: #EBEBEB;
}

    footer > .container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

.footer-links {
    font-size: 14px;
}

    .footer-links a {
        text-decoration: none;
        color: #000;
        line-height: 38px;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: white;
        color: #2f4e1b; /* stesso verde dello sfondo */
        font-size: 20px;
        transition: background-color 0.3s, color 0.3s;
        text-decoration: none;
    }

        .social-icons a:hover {
            background-color: #2f4e1b;
            color: white;
        }

/* Responsive padding bottom for better spacing on mobile */
@media (max-width: 576px) {
    footer > .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-links a {
        line-height: 28px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    /* Hero Buttons migliorati */
    .hero-buttons {
        top: 70%;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .btn-hero {
        width: 100%;
        font-size: 16px;
        padding: 12px;
    }

    /* Logo ridimensionato */
    .hero-logo {
        width: 70%;
        max-width: 250px;
    }

    .hero-logo-container {
        top: 30%;
    }

    /* Carosello frecce: abbassate e più piccole */
    .carousel-control-prev,
    .carousel-control-next {
        top: auto;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }

    /* Sezione Eventi e Prodotti: padding interno e centratura */
    .event-section .container .row > div {
        margin-bottom: 1rem;
    }

    .event-section img {
        max-width: 100%;
        height: auto;
    }

    .section-green h2,
    .section-green-lg h2 {
        font-size: 1.5rem;
    }

    /* Footer spacing */
    footer > .container {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-links {
        margin-top: 1rem;
    }

        .footer-links a {
            font-size: 13px;
            line-height: 24px;
        }

    /* Scroll Hint e Back to Top */
    #scrollDownHint i {
        font-size: 1.5rem;
    }

    #backToTop {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Scroll header mobile: avvicina i link tra loro */
    .mobile-menu {
        gap: 0.5rem;
        font-size: 13px;
    }

        .mobile-menu .nav-link {
            padding: 0.4rem 0.2rem;
        }
}



/* =============================== */
/*     FINE CSS DEL LAYOUT E INIZIO CSS DELLE INDEX     */
/* =============================== */




.event-section-full {
    background-color: #F8F8F8;
    width: 100vw; /* Estende lo sfondo a tutta la viewport */
    margin-left: calc(-1 * ((100vw - 100%) / 2)); /* Compensa padding/margin esterni */
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.event-section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.index-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

    .index-card:hover {
        transform: scale(1.01);
    }

/*.index-card-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}*/

.index-card-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
    position: relative;
}

.index-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.index-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.index-card-body {
    flex-grow: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.index-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2f4e1b;
}

.index-card-text {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 0.75rem;
}

.index-card-date {
    font-size: 0.85rem;
    color: #666;
}

.EventCardBtn {
    background-color: #2f4e1b;
    color: white;
    border: none;
}

    .EventCardBtn:hover {
        background-color: #4a782a;
        color: #fff;
    }

@media (max-width: 576px) {
    .index-card-title {
        font-size: 1.1rem;
    }

    .index-card-text {
        font-size: 0.9rem;
    }

    .index-card-date {
        font-size: 0.8rem;
    }
}

/* =============================== */
/*     PAGINATION     */
/* =============================== */

/* PAGINAZIONE MODERNA TONDA (Numeri e frecce identici) */
.custom-pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.custom-pagination {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    padding-left: 0;
}

    .custom-pagination .page-item {
        display: inline;
    }

    .custom-pagination .page-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border-radius: 50%;
        color: #2f4e1b;
        background-color: #fff;
        border: 1px solid #ccc;
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 0;
        font-weight: 500;
    }

        /* Hover effetto */
        .custom-pagination .page-link:hover {
            background-color: #e8f0e0;
            color: #2f4e1b;
        }

    /* Stato attivo */
    .custom-pagination .page-item.active .page-link {
        background-color: #2f4e1b;
        color: white;
        font-weight: bold;
        border-color: #2f4e1b;
    }

    /* Disabilitato */
    .custom-pagination .page-item.disabled .page-link {
        color: #aaa;
        background-color: transparent;
        border: none;
        cursor: default;
    }

    .custom-pagination .page-item:first-child .page-link,
    .custom-pagination .page-item:last-child .page-link {
        border-radius: 50% !important;
    }

/* VERSIONE MOBILE */
@media (max-width: 576px) {
    .custom-pagination .page-link {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}




/* =============================== */
/*     NAVBAR SEZIONE PRODOTTI (bianca e fissa)     */
/* =============================== */

.products-pagination {
    margin-bottom: 6rem; /* spazio per evitare che la navbar fissa copra i numeri */
    position: relative;
    z-index: 1;
}

.products-navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
    z-index: 999;
}

    /* Link desktop */
    .products-navbar .nav-link {
        color: #2f4e1b;
        font-weight: 600;
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
        transition: color 0.3s ease;
    }

        .products-navbar .nav-link:hover {
            color: #000;
            text-decoration: underline;
        }

        .products-navbar .nav-link.active {
            color: #000000;
            text-decoration: underline;
        }

/* Responsive Collapse - Mobile */
@media (max-width: 991px) {
    .products-navbar .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(6px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
    }

    .products-navbar .navbar-nav {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .products-navbar .nav-link {
        font-size: 16px;
        padding: 12px 0;
        text-align: center;
        color: #2f4e1b !important;
    }

        .products-navbar .nav-link:hover {
            color: #000 !important;
        }
}

#attrazioni {
    padding-top: 3rem;
}

/* Carosello responsive con altezza fissa */
#productsCarousel {
    margin-top: 87px !important; /* Spazio sotto la navbar fissa */
}

    #productsCarousel .carousel-item img {
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

@media (max-width: 768px) {
    #productsCarousel .carousel-item img {
        height: 300px;
    }
}

.attraction-hero-img-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin-top: 80px; /* spazio per la navbar fissa */
}

.attraction-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-top: 7px;
}

@media (max-width: 768px) {
    .attraction-hero-img-wrapper {
        height: 300px;
    }
}

.attraction-header img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.attraction-description {
    padding-left: 5%;
    font-size: larger;
}

    .attraction-description h2 {
        font-size: 1.8rem;
        font-weight: 600;
    }

    .attraction-description p {
        margin-bottom: 0.5rem;
        color: #555;
    }

    .attraction-description .highlight {
        font-weight: 700;
        color: #000;
    }

#addToCartBtn {
    background-color: #2f4e1b;
}

    #addToCartBtn:hover {
        background-color: #4f8d36; /* verde più chiaro */
    }

.custom-gallery-carousel {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 6.5rem !important;
}

.gallery-carousel-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden; /* Blocca lo scroll verticale indesiderato */
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 0 2rem;
}

    .gallery-carousel-track::-webkit-scrollbar {
        display: none;
    }

.carousel-img {
    flex: 0 0 auto;
    width: calc((100% - 4rem) / 3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    height: auto;
    min-height: 280px;
}

    .carousel-img img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }

    .carousel-img:hover {
        transform: scale(1.05);
    }

.event-title {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #333;
    text-align: center;
    padding: 0 0.5rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* VISIONE MOBILE */
@media (max-width: 768px) {
    .carousel-img {
        width: 80vw;
        scroll-snap-align: center;
    }

        .carousel-img img {
            height: 160px;
            object-fit: cover;
        }

    .event-title {
        font-size: 0.95rem;
        height: auto;
        padding: 0.5rem;
        min-height: 2.5rem;
    }

    .gallery-carousel-track {
        scroll-snap-type: x mandatory;
        padding-left: calc((100vw - 80vw) / 2); /* centra la prima card */
        padding-right: calc((100vw - 80vw) / 2); /* centra anche l’ultima */
    }
}

.gallery-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
}

.gallery-divider-full {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 4px;
    background-color: #2f4e1b;
    margin: 2rem 0;
}

.gallery-nav {
    background-color: transparent;
    border: none;
    font-size: 2rem;
    color: #2f4e1b;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

    .gallery-nav:hover {
        color: #000;
    }

.gallery-img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .gallery-img:hover {
        transform: scale(1.02);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

.gallery-container {
    row-gap: 2rem;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 5vh;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content-img {
    width: auto;
    height: auto;
    max-width: 98vw;
    max-height: 98vh;
    margin: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    animation: zoomIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

    .close-modal:hover {
        color: #ccc;
    }

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

body.modal-open .products-navbar {
    display: none !important;
}

/* CALENDARIO FRONTOFFICE */

#freeDay:hover {
    background-color: #3e6424 !important;
}

.blocked-day i.fa-ban {
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none; /* così non interferisce con il cursore */
    margin-left: 0.2rem;
}

.blocked-day:hover i.fa-ban {
    opacity: 1;
}

.blocked-day:hover {
    background-color: #7a2f2f; /* rosso scuro, a scelta */
    color: #fff;
    cursor: not-allowed; /* per rafforzare il messaggio visivo */
}

.link-card-wrapper {
    position: relative;
}

    .link-card-wrapper .stretched-link {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
        text-indent: -9999px; /* Nasconde il testo */
        overflow: hidden;
    }

.section-green-lg>a {
    text-decoration: none;
    color: #fff;
}

.event-filters {
    border-radius: 12px;
    padding: 0rem 1rem;
    margin-top: 0 !important;
}

.sort-link {
    font-weight: 600;
    color: #2f4e1b;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

    .sort-link:hover {
        color: #4a782a;
        text-decoration: underline;
    }

.event-search-input {
    max-width: 250px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: border-color 0.3s;
}

    .event-search-input:focus {
        border-color: #2f4e1b;
        box-shadow: 0 0 0 2px rgba(47, 78, 27, 0.2);
    }

@media (max-width: 768px) {
    .event-filters {
        text-align: center;
    }

    .event-search-input {
        width: 100%;
        max-width: 320px !important;
    }

    .event-filters form {
        align-items: stretch;
    }

    #searchProductBar {
        width: 65%;
    }
}

.fa-caret-right, .fa-caret-left {
    color: #2f4e1b;
}

.noWrapPers {
    word-break: break-word;
    font-size: 14px;
}

.tableDay {
    font-size: 13px;
}

/* VIEW CART */
#confermaOrdineBtn:hover {
    background-color: #3e6424 !important;
}

/* TimeLine*/
<style >
.timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    position: relative;
    padding: 0 10px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    height: 2px;
    background-color: #d3d3d3;
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    font-size: 0.9rem;
    color: #6c757d;
}

    .timeline-step::before {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        margin: 0 auto 6px;
        border-radius: 50%;
        background-color: #d3d3d3;
        border: 2px solid white;
    }

    .timeline-step.active::before {
        background-color: #2f4e1b;
    }

    .timeline-step.active {
        font-weight: 600;
        color: #2f4e1b;
    }

</style >
