/* Global Styles */
:root {
    --primary-color: #1e5128;
    --secondary-color: #4e9f3d;
    --accent-color: #d8973c;
    --dark-color: #191a19;
    --light-bg: #f5f5f5;
    --text-dark: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: white;
    padding: 10px 0;
    width: 100%;
    max-width: 100%;
}

.top-bar .container {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--accent-color);
}

.top-contact {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Set font size for spans in top bar */
.top-bar span {
    font-size: 0.9rem;
}

.social-link {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    transition: all 0.3s;
}

/* Social link icons - make icons bigger */
.social-link i {
    font-size: 1.2rem !important;
}

/* Top bar social icons - force proper size on all screens */
.top-bar .social-link i,
.top-bar a.social-link i {
    font-size: 1.2rem !important;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background-color: var(--primary-color) !important;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--primary-color);
    color: white;
}

.btn-book {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-book:hover {
    background-color: #c07d2a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
}

.hero-slider .carousel-item {
    height: 600px;
}

.hero-slider .carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.7);
}

.hero-slider .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
}

.hero-slider h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.hero-slider .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Quick Actions */
.action-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.icon-circle {
    width: 100px;
    height: 100px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Featured Events */
.featured-events {
    background-color: white;
}

.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.event-date {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: center;
}

.event-date .month {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
}

.event-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-content {
    padding: 20px;
    flex-grow: 1;
}

.event-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.newsletter-form .form-control {
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
}

.newsletter-form .btn {
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 3px;
    min-width: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-slider {
        height: 400px;
    }

    .hero-slider .carousel-item {
        height: 400px;
    }

    .hero-slider h1 {
        font-size: 2rem;
    }

    .hero-slider .lead {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .top-bar {
        text-align: center;
        padding: 6px 0;
    }
    
    /* Make text smaller on mobile, but not icons */
    .top-bar .top-contact,
    .top-bar span {
        font-size: 0.7rem;
    }
    
    /* Keep top bar items side by side on small screens */
    .top-bar .row {
        margin: 0;
    }
    
    .top-bar .col-md-6 {
        padding: 0 5px;
    }
    
    .top-bar .col-12 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    /* Left align phone, right align social icons */
    .top-bar .col-12:first-child {
        text-align: left !important;
    }
    
    .top-bar .col-12:last-child {
        text-align: right !important;
    }
    
    /* Make text smaller and more compact on tiny screens */
    .top-contact {
        font-size: 0.7rem;
        margin-right: 0;
    }
    
    /* Hide address text on very small screens, keep phone */
    .top-bar .row > div:first-child span:last-child {
        display: none;
    }
}
/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    margin: 0;
}

/* Content Blocks */
.content-block {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Stat Boxes */
.stat-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-box h4 {
    color: var(--primary-color);
    margin-top: 10px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.sidebar-widget h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Pricing Table */
.pricing-table {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.pricing-table table {
    margin: 0;
}

/* Membership Cards */
.membership-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.membership-header {
    background: var(--primary-color);
    color: white;
    padding: 25px;
    text-align: center;
}

.membership-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.membership-price {
    background: var(--light-bg);
    padding: 30px;
    text-align: center;
}

.membership-price h2 {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.membership-price p {
    margin: 5px 0 0;
    color: #666;
}

.membership-description {
    padding: 20px 25px;
}

.membership-benefits {
    padding: 0 25px 20px;
    flex-grow: 1;
}

.benefit-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item i {
    margin-right: 10px;
}

.membership-card .btn {
    margin: 0 25px 25px;
}

/* Event Cards Full */
.event-card-full {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.event-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.event-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.event-content-full {
    padding: 25px;
}

.event-date-badge {
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 15px;
}

.event-date-badge .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-date-badge .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date-badge .year {
    display: block;
    font-size: 0.85rem;
}

.event-time, .event-location {
    color: #666;
    margin-bottom: 10px;
}

/* Contact Info Boxes */
.contact-info-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.contact-info-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-box a {
    color: var(--text-dark);
    text-decoration: none;
}

.contact-info-box a:hover {
    color: var(--primary-color);
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 81, 40, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* List Styled */
.list-styled {
    list-style: none;
    padding: 0;
}

.list-styled li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.list-styled li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Map Container */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header {
        padding: 60px 0 40px;
    }

    .membership-price h2 {
        font-size: 2rem;
    }
}
/* Gallery Album Styles - ADD THIS TO THE END OF css/style.css */

/* Album Cards */
.album-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.album-cover {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.album-placeholder {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.album-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.album-info p {
    color: #666;
    flex-grow: 1;
    margin-bottom: 15px;
}

.album-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
    color: var(--primary-color);
    font-weight: 600;
}

.album-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.album-card:hover .album-arrow {
    transform: translateX(5px);
}

/* Breadcrumb styling */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
}

/* Gallery Grid in Album View */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 81, 40, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    color: white;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.gallery-overlay p {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .album-cover {
        height: 250px;
    }

    .album-info h3 {
        font-size: 1.25rem;
    }

    .gallery-item img {
        height: 250px;
    }
}
/* Video Slider Styles - ADD THIS TO css/style.css */

/* Video in slider */
.slider-video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Ensure video plays smoothly on carousel transition */
.carousel-item video {
    position: relative;
}

/* Play video when slide becomes active */
.carousel-item.active video {
    display: block;
}

/* Pause video when slide is not active */
.carousel-item:not(.active) video {
    display: block;
}

/* Responsive video height */
@media (max-width: 768px) {
    .slider-video {
        height: 400px;
    }
}
/* Mobile Navigation - Bootstrap-friendly */
@media (max-width: 1199px) {
    /* Remove ALL navbar padding on mobile - override Bootstrap */
    .navbar {
        padding: 0 !important;
        min-height: auto !important;
    }
    
    /* Remove container padding on mobile navbar */
    .navbar > .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        min-height: auto !important;
    }
    
    /* Reduce logo size on mobile */
    .navbar-brand .logo {
        height: 45px;
        margin: 0;
    }
    
    /* Remove navbar-brand padding - override Bootstrap defaults */
    .navbar-brand {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
        margin: 0 !important;
        line-height: 1 !important;
    }
    
    /* Tighten up navbar toggler */
    .navbar-toggler {
        padding: 0.25rem 0.5rem !important;
        font-size: 1rem;
        margin: 0 !important;
        line-height: 1 !important;
    }
    
    /* Mobile menu styling */
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-radius: 8px;
    }

    /* Mobile nav items */
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1.5rem !important;
    }

    /* Mobile dropdown menus */
    .navbar-nav .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.2);
        border: none;
        margin: 0;
        padding: 0;
    }

    .navbar-nav .dropdown-item {
        color: white;
        padding: 0.75rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item:focus {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--accent-color);
    }
    
    /* Book button on mobile */
    .btn-book {
        display: block;
        width: 100%;
        margin: 1rem 1.5rem 0.5rem 1.5rem;
        max-width: calc(100% - 3rem);
    }
}

    /* Top bar mobile adjustments */
    .top-bar {
        padding: 8px 0;
    }
    
    /* Make text smaller on mobile, but not icons */
    .top-bar .top-contact,
    .top-bar span {
        font-size: 0.75rem;
    }

    .top-bar .row > div:first-child {
        margin-bottom: 5px;
    }
}

/* Top bar alignment - right align social icons on all screens */
.top-bar .col-md-6:last-child {
    text-align: right !important;
}

/* Tablet breakpoint */
@media (min-width: 768px) and (max-width: 1199px) {
    .navbar-nav .nav-link {
        font-size: 0.9rem;
    }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .navbar-toggler {
        -webkit-tap-highlight-color: transparent;
    }
}
/* ===== SLIDER IMPROVEMENTS - Remove ADA Visual Artifacts ===== */

/* Remove focus outlines on carousel controls */
.carousel-control-prev:focus,
.carousel-control-next:focus,
.carousel-indicators button:focus {
    outline: none;
    box-shadow: none;
}

/* Remove orange/blue focus rings from buttons */
.carousel-control-prev:focus-visible,
.carousel-control-next:focus-visible {
    outline: none;
}

/* Smoother control button appearance */
.carousel-control-prev,
.carousel-control-next {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    width: 5%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Improve control icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 30px 30px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 10px;
}

/* Remove any flicker on hover */
.carousel-item {
    transition: none;
}

.carousel-item.active {
    display: block;
}

/* Ensure smooth fade without flicker */
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Remove indicator button focus styles */
.carousel-indicators button {
    border: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
}

/* Prevent screen flicker on hover */
.hero-slider:hover {
    cursor: default;
}

/* Clean up control button interactions */
.carousel-control-prev:active,
.carousel-control-next:active {
    opacity: 1;
}

/* Remove any Bootstrap default focus/active styles */
.carousel-control-prev:focus:not(:focus-visible),
.carousel-control-next:focus:not(:focus-visible) {
    outline: 0;
}

/* Ensure video elements don't cause flicker */
.slider-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FOOTER LINK FIXES - Ensure links always visible ===== */
.footer .row:last-child .col-md-6 {
    display: block !important;
    visibility: visible !important;
}

.footer .row:last-child a {
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #aaa !important;
    text-decoration: none;
}

.footer .row:last-child a:hover {
    color: var(--accent-color) !important;
    text-decoration: underline;
}

/* Mobile footer links - stack vertically on small screens */
@media (max-width: 767px) {
    .footer .row:last-child .col-md-6 {
        text-align: center !important;
        margin-bottom: 10px;
    }
    
    .footer .row:last-child .col-md-6:last-child {
        margin-bottom: 0;
    }
    
    .footer .row:last-child a {
        display: inline-block !important;
        margin: 5px 8px !important;
        font-size: 0.85rem !important;
    }
}

/* ===== RECAPTCHA BADGE HIDDEN (Compliance with Google policy change April 2026) ===== */
.grecaptcha-badge {
    visibility: hidden !important;
}
