    @font-face {
        font-family: 'Calluna';
        src: url('/fonts/Calluna Regular.woff2') format('woff2');
        font-weight: 300;
        font-style: normal;
        font-display: swap; /* évite le FOIT */
    }
    @font-face {
        font-family: 'Calluna';
        src: url('/fonts/Calluna Semibold.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        font-display: swap; /* évite le FOIT */
    }
    @font-face {
        font-family: 'Calluna';
        src: url('/fonts/Calluna Bold.woff2') format('woff2');
        font-weight: 600;
        font-style: normal;
        font-display: swap; /* évite le FOIT */
    }
    @font-face {
        font-family: 'Calluna Sans';
        src: url('/fonts/Calluna-sans-light.woff2') format('woff2');
        font-weight: 200;
        font-style: normal;
        font-display: swap; /* évite le FOIT */
    }
    /* ── Variables ─────────────────────────────────────────────────────── */
    :root {
        --primary-green: #7CB342;
        --primary-green-dark: #5d8e2e;
        --primary-red: #C94B24;
        --primary-green-light: #a8d46a;
        --dark: #1e1e1e;
        --text-gray: #5a5a5a;
        --light-bg: #f7f8fa;
        --border-light: #e8e8e8;
        --brand-cream: #fdf8f0;
        --radius-card: 12px;
        --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.10);
        --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
        --shadow-hover: 0 10px 35px rgba(0, 0, 0, 0.10);
        --radius: 12px;
        --spacing: 0.25rem;
        --font-heading: 'Calluna', serif;
        --font-body: 'Calluna Sans', sans-serif;
        --header_background: #f0f6e8;
        --h1-color: #445132;
        --hn-color: #364127;
        --red: #D9362B;
        --red-dark: #b52a20;
        --green-accent: #2E7D5E;
        --text-dark: #1a1a1a;
        --text-muted: #6b7280;
        --card-radius: 14px;
        --shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
        --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
        --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
        --radius-sm: 8px;
        --radius-md: 16px;
        --radius-lg: 24px;
        --radius-xl: 32px;  
        --layout_padding: 12px;
        font-family: var(--font-body);
        font-size: 16px;
        font-weight: 300;
    }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body {
        font-family: var(--font-body);
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        color: var(--dark);
        background-color: #fff;
        line-height: 1.5;
    }
    html {
        scroll-behavior: smooth;
    }
    p {
        font-size: 1.125rem;
    }
    h1,h2,h3,h4,h5,h6 {
        font-family: var(--font-heading);
        font-weight: 600;
        color: var(--hn-color);
        letter-spacing: -0.02em;
    }
    h1 {
        color: var(--h1-color);
    }
    a {
        text-decoration: none;
        color: inherit;
        transition: 0.25s;
    }
    .zindex-20 {
        z-index: 20;
    }
    .text-green {
        color: var(--primary-green);
    }
    .bg-green {
        background-color: var(--primary-green);
    }
    .btn-green {
        background-color: var(--primary-green);
        color: #fff;
        border: none;
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.9rem;
        padding: 0.6rem 1.8rem;
        transition: all 0.3s ease;
        font-family: var(--font-body);
    }
    .btn-green:hover {
        background-color: var(--primary-green-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(124, 179, 66, 0.35);
    }
    .btn-outline-green {
        background-color: transparent;
        color: var(--primary-green);
        border: 2px solid var(--primary-green);
        border-radius: 6px;
        font-weight: 600;
        padding: 0.5rem 1.8rem;
        transition: all 0.3s ease;
        font-family: var(--font-body);
    }
    .btn-outline-green:hover {
        background-color: var(--primary-green);
        color: #fff;
        border-color: var(--primary-green);
    }
    .section-padding {
        padding: 35px 0;
    }
    .section-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    .section-subtitle {
        color: var(--text-gray);
        font-size: 0.95rem;
        font-weight: 300;
        font-family: var(--font-body);
        padding-left: calc(5px + var(--spacing) * 3);
    }
    .top-bar {
        padding-bottom: 0;
        margin-right: 12px;
    }
    body.scrolled .top-bar {
        box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
        background-color: var(--header_background);
    }
    /* ── Navbar ─────────────────────────────────────────────────────────── */
    .navbar {
        z-index: 1050;
        margin: 0 auto;
        padding: 0;
    }

    .navbar-brand {
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 1.6rem;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
        padding: 0;
    }
    .nav_menu {
        background-color: var(--header_background);
        margin-left: 12px;
        margin-right: 12px;
        padding-bottom: 5px;
    }
    /* Mega menu */
    .navbar-nav .dropdown-menu {
        border: none;
        border-radius: 0 0 var(--radius-card) var(--radius-card);
        box-shadow: var(--shadow-lg);
        padding: 0;
        margin: 0;
        background: #fff;
        position: fixed;
        left: 0;
        width: 100vw;
        max-width: 100vw;
        top: 68px;
        transform: translateY(10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }
    .navbar-nav .dropdown-menu.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-item a {
        text-decoration: none;
        color: #333;
        color: rgba(0, 0, 0, 0.65);
        font-size: 18px;
        padding-bottom: 4px;
        position: relative;
        display: inline-block;
        transition: color 0.3s ease;
    }
    .navbar-nav .nav-link {
        color: rgba(0, 0, 0, 0.65);
    }
    .navbar-expand-lg .navbar-collapse {
        margin-top: 20px;
    }
    .nav-item {
        display: flex;
        align-items: flex-end;
    }
    .nav-item a {
        line-height: 100%;
    }
    .nav-item a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 4px;
        -webkit-transition: width 0.3sease;
        -moz-transition: width 0.3sease;
        -o-transition: width 0.3sease;
        transition: width 0.3sease;
    }
    .nav-item a.loisirs.active::after,
    .nav-item a.loisirs:hover::after {
        background-color: #f5a623;
    }
    .nav-item a.aventure.active::after,
    .nav-item a.aventure:hover::after {
        background-color: #2e7d32;
    }
    .nav-item a.sport.active::after,
    .nav-item a.sport:hover::after {
        background-color: #e53935;
    }
    .nav-item a.bien-etre.active::after,
    .nav-item a.bien-etre:hover::after {
        background-color: #ab47bc;
    }
    .nav-item a.sortir.active::after,
    .nav-item a.sortir:hover::after {
        background-color: deeppink;
    }
    .nav-item a.tourisme.active::after,
    .nav-item a.tourisme:hover::after {
        background-color: #26c6da;
    }
    .nav-item a.terroir.active::after,
    .nav-item a.terroir:hover::after {
        background-color: #8d5524;
    }
    .nav-item:has(a:hover) a.active:not(:hover)::after {
        background-color: #1a1a1a;
    }
    .hide-active::after {
        background: none !important;
    }
    .navbar-nav .nav-link {
        font-size: 18px;
        font-size: clamp(1.0rem, 1.7vw, 1.5rem);
        font-weight: 500;
        margin: 0 10px 0 10px;
        margin-right: clamp(0px, 0.5vw, 10px);
        margin-left: clamp(0px, 0.5vw, 10px);
        text-wrap: nowrap;
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-nav li {
        font-size: inherit;
        padding-bottom: 10px;
    }
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.1rem;
    } 
    #scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        width: 0%;
        background: linear-gradient(90deg, var(--primary-green), var(--red));
        z-index: 9999;
        transition: width 0.1s linear;
    }
    .hero {
        position: relative;
        margin-top: 82px;
    }
    .hero-breadcrumb {
        color: #494949;
        font-size: clamp(0.8rem, 1.5vw, 1.2rem);
        position: absolute;
        top: 0; left: 0;
        display: none;
        margin: 0 0 0 15px;
        padding: 10px;
        z-index: 1000;
    }

    .hero-breadcrumb a {
        color: inherit;
        font-size: inherit;
    }
    .hero-title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        gap: 8px;
        margin-top: 25px;
        margin-left: 10px;
        z-index: 1000;
    }
    .hero div.wrapper {
        border-radius: 0 0 15px 15px;
    }
    .hero div.wrapper h1 {
        font-size: clamp(1.5rem, 2.8vw, 3.5rem);
        font-weight: 400;
        line-height: normal;
        border-radius: 15px;
        margin-top: 10px;
    }
    .hero div.wrapper h1 span {
        font-size: clamp(1.0rem, 1.5vw, 2.0rem);
        font-weight: 200;
        color: #93ad59;
        line-height: 2rem;
        display: block;
    }
    .hero div.wrapper h1 span::first-letter {
        text-transform: uppercase;
    }
    .hero div.wrapper p {
        font-size: clamp(0.7rem, 1.2vw, 1.0rem);
        color: #4b5563;
        margin-bottom: 0;
    }
    .hero-eyebrow {
        font-family: var(--font-body);
        font-size: clamp(1.0rem, 1.5vw, 2.0rem);
        font-weight: 400;
        letter-spacing: 0.12em;
        color: var(--red);
        text-transform: uppercase;
        margin-left: 0;
        display: none;
    }
    .hero-bloc {
        margin-top: 80px;
    }
    .blob-2{
        width:240px;
        height:240px;
        background:#e7f0d8;
        bottom:-40px;
        left:-60px;
    }

    .blob-3{
        width:180px;
        height:180px;
        background:#cadcae;
        top:260px;
        right:140px;
        opacity:.25;
    }
    .wrapper {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch; 
        width: 100%;
        margin-top:0;
        background-color: var(--header_background);
        padding-bottom: 30px;
    }
    .hero .img-wrap {
        max-height: 300px;
        min-height: 150px;
        aspect-ratio: 492 / 390;
        width: 100%;                  
        overflow: hidden;
        box-shadow: 0px 0px 11px 9px rgb(246 249 241 / 65%);
        display: none;
        -webkit-mask-image:
            linear-gradient(to bottom, transparent 0px, black 50px), 
            linear-gradient(to top, transparent 0px, black 50px), 
            linear-gradient(to right, transparent 0px, black 50px), 
            linear-gradient(to left, transparent 0px, black 50px);
        mask-image: 
            linear-gradient(to bottom, transparent 0px, black 50px), 
            linear-gradient(to top, transparent 0px, black 50px), 
            linear-gradient(to right, transparent 0px, black 50px), 
            linear-gradient(to left, transparent 0px, black 50px);
        -webkit-mask-composite: source-in;
        mask-composite: intersect;
    }
    .hero .img-wrap img { 
        width: 100%; height: 100%; object-fit: cover; 
        box-shadow: 0px 0px 11px 9px rgb(246 249 241 / 65%);
    }
    .search-bar-wrapper {
        background: #fff;
        box-shadow: 0 4px 28px rgba(0, 0, 0, 0.12);
        position: relative;
        z-index: 10;
        max-width: 800px;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        margin: -10px auto 0;  
    }
    .search-field {
        flex: 1 1 100%;
        display: flex; 
        align-items: center;
        gap: 12px;
        padding: 5px 10px;
        border-right: 1px solid #eee;
        cursor: pointer;
    }
    .input-field {
        width:100%;
    }
    .input-field input {
        font-size:0.9375rem;
        margin:0;
        padding:0;
        border:none;
        width:100%;
    }  
    .input-field input[type="text"]:focus {
        outline: none;
        border: none;
        border-bottom: 2px solid var(--primary-green);
    }  
    .search-field:last-of-type {
        border-right: none;
    }
    .search-field .icon-wrap {
        width: 36px;
        height: 36px;
        background: #f5f5f5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .search-field .icon-wrap i {
        color: var(--red);
        font-size: 1rem;
    }
    .search-field .field-label {
        font-weight: 600;
        font-size: 0.9375rem;
        color: var(--text-dark);
        display: block;
        margin-bottom: 2px;
    }
    .search-field .field-hint {
        font-size: 0.78rem;
        color: var(--text-muted);
    }
    .btn-search {
        background: var(--red);
        color: #fff;
        border: none;
        padding: 0 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        font-size: 0.93rem;
        cursor: pointer;
        transition: background 0.2s;
        border-radius: 0 0 14px 14px;
        width: 100%;
        justify-content: center;
        padding: 8px;
    }
    .btn-search:hover {
        background: var(--red-dark);
    }
    h2,h3 {
        line-height: 2rem;
        padding-left: calc(var(--spacing) * 3);
    }
    .left-border-red {
        border-left: 5px solid var(--primary-red);
    }
    .left-border-green {
        border-left: 5px solid var(--primary-green);
    }
    /* .left-left-border-red {
        border-left: 5px solid var(--primary-red);
        padding-left: calc(var(--spacing)*3);
    } */
    .border-red {
        border-left: 5px solid var(--primary-red);
    }
    .border-green {
        border-left: 5px solid var(--primary-green);
    }

    .trust-bar {
        background: #fff;
        border-top: 1px solid #f0f0f0;
        padding: 24px 0;
        margin-top: 3.5rem;
    }
    .trust-item {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .trust-icon {
        width: 46px;
        height: 46px;
        flex-shrink: 0;
        color: var(--green-accent);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .trust-icon i {
        font-size: 1.6rem;
    }
    .trust-label {
        font-weight: 600;
        font-size: 0.88rem;
        margin-bottom: 2px;
    }
    .trust-desc {
        font-size: 0.78rem;
        color: var(--text-muted);
    }
    .ad-container {
        width: 100%;
        margin-right: 0;
        margin: 3rem auto;
        height: auto;
        text-align: center;
    }
    .idea-card {
        border-radius: var(--radius);
        overflow: hidden;
        position: relative;
        height: 320px;
        box-shadow: var(--shadow-sm);
        transition: all 0.35s ease;
        cursor: pointer;
        display: block;
    }
    .idea-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }
    .idea-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .idea-card:hover img {
        transform: scale(1.05);
    }
    .idea-card .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem 1.2rem 1.2rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        color: #fff;
    }
    .idea-card .overlay h5 {
        font-size: 1.1rem;
        margin: 0;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.20);
    }
    .circle-item {
        text-align: center;
        transition: 0.3s;
    }
    .circle-item:hover {
        transform: translateY(-4px);
    }
    .circle-item .circle {
        width: 88px;
        height: 88px;
        border-radius: 50%;
        background: #f0f2f5;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
        font-size: 2rem;
        color: var(--dark);
        transition: 0.3s;
        border: 2px solid transparent;
    }
    .circle-item:hover .circle {
        border-color: var(--primary-green);
        background: #eaf5de;
        color: var(--primary-green);
    }
    .circle-item .label {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--dark);
    }
    .pop-card {
        border-radius: var(--radius);
        overflow: hidden;
        position: relative;
        height: 340px;
        box-shadow: var(--shadow-sm);
        transition: all 0.35s ease;
    }
    .pop-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }
    .pop-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .pop-card:hover img {
        transform: scale(1.04);
    }
    .pop-card .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.8rem 1.5rem 1.5rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        color: #fff;
    }
    .pop-card .overlay h5 {
        font-size: 1.2rem;
        margin: 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    }
    .hero .mag-card {
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-light);
        transition: all 0.35s ease;
        height: 100%;
        background: #fff;
    }
    .hero .mag-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }
    .hero .img-wrap {
        overflow: hidden;
    }
    .hero .mag-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 1.3;
        padding-left:0;
    }
    .hero .img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .hero .mag-card:hover .img-wrap img {
        transform: scale(1.04);
    }
    .hero .mag-card .card-body {
        padding: 1.2rem 1.2rem 1.5rem;
    }
    .hero .mag-card .card-body .tag {
        color: var(--primary-green);
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: var(--font-body);
    }
    .hero .mag-card .card-body h4 {
        font-size: 1.3rem;
        margin: 0.3rem 0 0.5rem;
    }
    .hero .mag-card .card-body p {
        font-family: var(--font-body);
        font-size: 0.85rem;
        color: var(--text-gray);
        margin-bottom: 0.8rem;
    }
    .hero .mag-card .card-body .meta {
        font-size: 0.75rem;
        color: #999;
        font-family: var(--font-body);
    }


    .lemag .mag-card {
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-light);
        transition: all 0.35s ease;
        height: 100%;
        background: #fff;
    }
    .lemag .mag-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }
    .lemag .img-wrap {
        overflow: hidden;
    }
    .lemag .mag-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 1.3;
        padding-left:0;
    }
    .lemag .img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .lemag .mag-card:hover .img-wrap img {
        transform: scale(1.04);
    }
    .lemag .mag-card .card-body {
        padding: 1.2rem 1.2rem 1.5rem;
    }
    .lemag .mag-card .card-body .tag {
        color: var(--primary-green);
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: var(--font-body);
    }
    .lemag .mag-card .card-body h4 {
        font-size: 1.3rem;
        margin: 0.3rem 0 0.5rem;
    }
    .lemag .mag-card .card-body p {
        font-family: var(--font-body);
        font-size: 0.85rem;
        color: var(--text-gray);
        margin-bottom: 0.8rem;
    }
    .lemag .mag-card .card-body .meta {
        font-size: 0.75rem;
        color: #999;
        font-family: var(--font-body);
    }
    .lemag .img-wrap {
        max-height: 300px;
        min-height: 150px;
        aspect-ratio: 492 / 390;
        width: 100%;                  
        overflow: hidden;
        box-shadow: 0px 0px 11px 9px rgb(246 249 241 / 65%);
        -webkit-mask-image:
            linear-gradient(to bottom, transparent 0px, black 50px), 
            linear-gradient(to top, transparent 0px, black 50px), 
            linear-gradient(to right, transparent 0px, black 50px), 
            linear-gradient(to left, transparent 0px, black 50px);
        mask-image: 
            linear-gradient(to bottom, transparent 0px, black 50px), 
            linear-gradient(to top, transparent 0px, black 50px), 
            linear-gradient(to right, transparent 0px, black 50px), 
            linear-gradient(to left, transparent 0px, black 50px);
        -webkit-mask-composite: source-in;
        mask-composite: intersect;
    }
    .lemag .img-wrap img { 
        width: 100%; height: 100%; object-fit: cover; 
        box-shadow: 0px 0px 11px 9px rgb(246 249 241 / 65%);
    }

    .banner-cta {
        background: #eef5e8;
        padding: 60px 0;
    }
    .banner-cta h2 {
        font-size: 2.2rem;
        margin-bottom: 0.3rem;
    }
    .banner-cta p {
        color: var(--text-gray);
        margin-bottom: 0;
        font-size: 1rem;
        font-family: var(--font-body);
    }
    .stat-item {
        text-align: center;
    }
    .stat-item .number {
        font-size: 2.4rem;
        font-weight: 600;
        color: var(--dark);
        font-family: var(--font-heading);
    }
    .stat-item .number .green {
        color: var(--primary-green);
    }
    .stat-item .label {
        font-size: 0.85rem;
        color: var(--text-gray);
        font-weight: 400;
        font-family: var(--font-body);
    }
    .stat-item .icon {
        font-size: 1.6rem;
        color: var(--primary-green);
        margin-bottom: 6px;
    }
    .footer {
        padding: 30px 0 0;
        margin-top: 30px;
        border-top: 1px solid var(--border-light);
    }
    .footer .brand {
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 1.4rem;
        color: var(--dark);
    }
    .footer .brand i,
    .footer .brand span {
        color: var(--primary-green);
    }
    .footer p,
    .footer li a,
    .footer li {
        font-family: var(--font-body);
        color: var(--text-gray);
        font-size: 0.9rem;
    }
    .footer h6 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer ul li {
        margin-bottom: 0.4rem;
    }
    .footer ul li a {
        color: var(--text-gray);
        font-size: 0.9rem;
        transition: 0.2s;
    }
    .footer ul li a:hover {
        color: var(--primary-green);
    }
    .social-icons a {
        display: inline-block;
        width: 34px;
        height: 34px;
        line-height: 34px;
        text-align: center;
        background: #e8eaed;
        border-radius: 50%;
        color: #555;
        margin-right: 6px;
        transition: 0.3s;
        font-size: 0.85rem;
    }
    .social-icons a:hover {
        background: var(--primary-green);
        color: #fff;
    }
    .footer-bottom {
        padding-top: 10px;
        margin-top: 10px;
        font-size: 0.8rem;
        color: #999;
        font-family: var(--font-body);
    }
    .footer-bottom a {
        color: #999;
    }
    .footer-bottom a:hover {
        color: var(--primary-green);
    }
    @media screen and (min-width: 768px) {
        .top-bar {
            margin-right: 0;
        }
        .navbar-container {
            border-bottom: none;
        }
        .wrapper {
            grid-template-columns: 1fr 1fr;
            padding-bottom: 10px;
        }
        .hero .img-wrap {
            max-height: 390px;  
            display: block;
        }
        .hero-title {
            margin-left: 20px;
        }
        .hero-breadcrumb {
            padding-left: 20px;
            display: inline-block;
        }        
        .nav_menu {
            padding-bottom: 15px;
        }
        .hero-eyebrow {
            display: block;
        }
        .navbar-expand-lg .navbar-collapse {
            margin-top: 40px;
        }
        .search-field {
            flex: 1 1 45%;
        }
    }
    @media (min-width: 992px) {
        .navbar-nav li {
            padding-bottom: 0;
        }
        .search-bar-wrapper {
            margin: -25px auto 0;
            border-radius: 14px;
        }
        .btn-search {
            flex-shrink: 0;
            width: auto;
            border-radius: 0 14px 14px 0;
        }
        .nav-item a::after {
            left: 8px;
            bottom: -5px;
            width: calc(100% - 16px);
        }
        .search-field {
            flex: 1;
        }
    }
