/* Place your css here */
.mega-menu .mega-menu__item {
    top: 40px;
    width: 50vw;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 2px 15px 2px rgba(0,0,0,0.75);
}

.mega-menu .nav-item {
    position: relative;
}

    .mega-menu .nav-item .mega-menu__item {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.1s ease;
    }

        .mega-menu .nav-item .mega-menu__item.show {
            visibility: visible;
            opacity: 1;
            display: flex;
        }


/*Location Widget Styles*/
.sf-location-widget {
    position: relative;
}

.sf-location-title {
    font-size: 1.75rem;
    font-weight: 600;
}

.sf-location-address {
    font-size: 0.95rem;
}

.sf-location-map-wrapper {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.sf-location-map {
    width: 100%;
}

/*Location Widget Styles*/

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        border-color: #c8102e; /* MHG red */
    }

/*Styles for the counter at home*/

.stats-section {
    background-color: #f8f9fa;
}

    .stats-section .counter {
        font-size: 3rem;
        line-height: 1.1;
    }

    .stats-section p {
        font-size: 1rem;
        color: #555;
    }
/*Styles for the counter at home*/
