/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Colors */
    --primary-blue: #1a365d;
    --primary-red: #69a341;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    /* Spacing */
    --container-max: 1280px;
    --header-height: 140px;
}



body {
    color: var(--dark-gray);
    font-size: 15px;
    line-height: 1.5;
}

ul{
    padding-left: 18px;
    list-style: disc;
}
.pad-15-lr{
    padding: 0 15px;
}
header.site-header{
    margin-bottom: 20px;
}
.header-container, .mobile-container, .footer-container {
    padding: 0 20px;
    max-width: 1310px;
    margin: 0 auto;
    position: relative;
    font-family: "Roboto Flex", sans-serif;
}

/* Top Bar */
.top-bar {
    background-color: var(--light-gray);
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.date-weather {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--medium-gray);
}

.current-date {
    font-weight: 500;
    text-transform: none;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    top: -1px;
}

.weather-icon {
    width: 18px;
    height: 18px;
    color: #fbbf24;
    line-height: 1;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--medium-gray);
    transition: all 0.2s ease;
}

.social-links a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-links svg {
    width: 16px;
    height: 16px;
}

/* Main Header */
.main-header {
    background-color: var(--white);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    font-family: 'Inter', sans-serif;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Logo and Branding */
.brand {
    text-align: center;
    max-width: 120px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    letter-spacing: -0.02em;
}

.tagline {
    font-family: "Roboto Flex", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin:0;
}

/* Navigation */
.main-nav {
    justify-self: center;
}

ul.nav-list {
    margin: 0;
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: "Roboto Flex", sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-list.top-bar-nav .nav-link{
    font-family: "myrad-pro-regular", Sans-serif;
    font-size: 13px;
    color: #7A7A7A;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 4px;
}
.nav-list.top-bar-nav .nav-link:hover,
.nav-link:hover {
    background-color: var(--light-gray);
    color: #C8B08D;
}

.dropdown-icon {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    list-style: none;
    max-height: 400px;
    overflow-y: auto;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--dark-gray);
    font-size: 0.875rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-btn,
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.search-btn:hover,
.menu-toggle:hover {
    background-color: var(--light-gray);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
}

.hamburger span {
    display: block;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Hide nav-close and nav-footer on desktop */
.nav-close {
    display: none;
}

.nav-footer {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-close {
        display: flex;
    }

    .nav-footer {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 60px 20px 40px;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 1000;
        display: flex;
        flex-direction: column;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        color: var(--dark-gray);
        transition: all 0.2s ease;
    }

    .nav-close:hover {
        background-color: var(--light-gray);
        border-radius: 50%;
    }

    .nav-close svg {
        width: 24px;
        height: 24px;
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
        flex: 1;
    }

    .nav-footer {
        margin-top: auto;
        padding-top: 40px;
        border-top: 1px solid var(--light-gray);
        text-align: center;
    }

    .nav-social {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-bottom: 20px;
    }

    .nav-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--light-gray);
        border-radius: 50%;
        color: var(--medium-gray);
        transition: all 0.3s ease;
    }

    .nav-social a:hover {
        background-color: var(--primary-blue);
        color: var(--white);
        transform: translateY(-2px);
    }

    .nav-social svg {
        width: 20px;
        height: 20px;
    }

    .nav-copyright {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--dark-gray);
        margin-bottom: 8px;
    }

    .nav-info {
        font-size: 0.75rem;
        color: var(--medium-gray);
        margin: 0;
    }

    .nav-link {
        padding: 14px 20px;
        font-size: 1rem;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--light-gray);
        margin-top: 4px;
        display: none;
    }

    .nav-item.expanded .dropdown-menu {
        display: block;
    }

    .menu-toggle {
        display: block;
    }
}

/* Mobile-specific visibility classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Tablet-specific Media Queries */
@media (min-width: 641px) and (max-width: 1024px) {
    /* Show mobile top bar on tablets too */
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    /* Adjust header for tablets */
    .main-header {
        padding: 16px 0;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .tagline {
        display: block;
        font-size: 0.75rem;
    }
    
    /* Fix button alignment */
    .header-actions {
        display: flex;
        gap: 12px;
        align-items: center;
    }
    
    .search-btn,
    .menu-toggle {
        width: 48px;
        height: 48px;
    }
    
    /* Center newsletter/contact text */
    .newsletter-text {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .newsletter-form {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Optimize footer grid for tablets */
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 600px;
        margin: 0 auto 30px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Fix footer spacing on tablets */
    .site-footer {
        margin-top: 60px;
    }
    
    .footer-main {
        padding: 50px 0 30px;
    }
}

/* Mobile Top Bar Styles */
.mobile-top-bar {
    background-color: var(--light-gray);
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
    font-size: 0.75rem;
    position: sticky;
    top: 0;
    z-index: 98;
}

.mobile-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-date {
    font-weight: 500;
    color: var(--medium-gray);
}

.mobile-weather {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--medium-gray);
}

.mobile-weather-emoji {
    font-size: 1rem;
}

.mobile-weather-text {
    font-weight: 500;
}

@media (max-width: 640px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    header.site-header {
        position: relative;
        margin-bottom: 0px;
    }

    .main-header {
        padding: 12px 0;
        background-color: var(--white);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .site-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .tagline {
        display: block;
        font-size: 0.5rem;
        margin-top: 1px;
        line-height: 1;
        white-space: nowrap;
    }

    .search-btn {
        display: flex;
        margin-right: 0;
    }

    .header-actions {
        display: flex;
        gap: 0px;
        align-items: center;
    }

    /* Hide sticky header on mobile */
    .sticky-header {
        display: none;
    }
}

/* Sticky Header Styles (Desktop Only) */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--white);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.sticky-header.show {
    transform: translateY(0);
}

.sticky-header .header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Sticky Date */
.sticky-date {
    text-align: left;
    width: 40%;
}

.sticky-current-date {
    font-size: 14px;
    font-weight: 500;
    color: var(--medium-gray);
    text-transform: initial;
}

/* Sticky Brand */
.sticky-brand {
    text-align: center;
    width: 150px;
}

.sticky-logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.sticky-site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    margin: 0 0 2px 0;
    letter-spacing: -0.02em;
}

.sticky-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 2px 0;
    line-height: 1;
}

/* Sticky Actions */
.sticky-actions {
    /* text-align: right; */
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.sticky-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    color: var(--dark-gray);
    text-decoration: none;
}

.sticky-search-btn:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue);
}

.sticky-search-btn svg {
    width: 20px;
    height: 20px;
}

/* Hide sticky header on tablet and mobile */
@media (max-width: 1024px) {
    .sticky-header {
        display: none !important;
    }
}

@media (max-width: 640px) {
    /* Ensure touch targets are at least 44px */
    .search-btn,
    .menu-toggle {
        width: 44px;
        height: 44px;
        padding: 10px;
        margin-right: -10px
    }
}

/* Demo Content Section */
.demo-content {
    padding: 60px 0;
}

.demo-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.demo-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
}

@media (max-width: 768px) {
    .demo-content {
        padding: 40px 0;
    }
    
    .demo-content h2 {
        font-size: 2rem;
    }
    
    .demo-content p {
        font-size: 1rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--white);
    margin-top: 20px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2563eb 100%);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    transform: rotate(-45deg);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    color: var(--white);
}

.newsletter-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"],
.newsletter-form textarea {
    padding: 14px 20px;
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    min-width: 250px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.newsletter-form input[type="email"]::placeholder,
.newsletter-form input[type="text"]::placeholder,
.newsletter-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="text"]:focus,
.newsletter-form textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-form textarea {
    resize: vertical;
    height: 100px;
}

.wpcf7-submit {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
}

.wpcf7-submit:hover {
    background-color: #578a35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(105, 163, 65, 0.4);
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

.newsletter-privacy svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.newsletter-privacy a {
    color: var(--white);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.newsletter-privacy a:hover {
    opacity: 0.8;
}

/* Main Footer Content */
.footer-main {
    background-color: var(--white);
    color: var(--dark-gray);
    padding: 60px 0 40px;
    border-top: 1px solid var(--light-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
	font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

/* Footer About Column */
.footer-about {
    padding-right: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-gray);
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: -0.72px;
}

.footer-tagline {
    font-size: 15px;
    color: var(--primary-red);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.075px;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 16px;
}

.footer-contact-text {
    margin-bottom: 24px;
}

.footer-contact-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-text a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.footer-contact-text svg {
    width: 18px;
    height: 18px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    color: var(--medium-gray);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Footer Links */
.footer-widget ul {
    list-style: none;
	margin: 0;
    padding: 0;
}

.footer-widget li {
    margin-bottom: 12px;
}

.footer-widget a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-widget a:hover {
    color: var(--primary-blue);
}
.wpcf7-form p:last-of-type{
	margin-bottom: 0;
}
.wpcf7-spinner{
	display:none;
}
/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.5;
}

.contact-item a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #333333;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-legal {
}

.footer-legal p {
    margin: 0;
    font-size: 15px;
    color: #9ca3af;
}

.legal-links {
    list-style: none;
}

.legal-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--white);
}
.aeon-dm-toggle-icon .aeon-dm-icon-sun i {
    color: #6b7280!important;
}

/* Footer Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet-specific footer layout */
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        align-items: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .form-group {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        align-items: center;
    }

    .form-group {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
        min-width: auto;
    }

    .btn-primary {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-text h2 {
        font-size: 1.75rem;
    }

    .newsletter-text p {
        font-size: 1rem;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-about {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-contact-text {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
    
    .footer-column:nth-child(4) {
        display: none;
    }
    
    .footer-logo {
        font-size: 2.25rem;
    }

    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-badges {
        flex-direction: column;
        align-items: center;
    }
}



.qc-cmp-cleanslate{
    z-index: 999999999999!important;
}
#onesignal-popover-container, #onesignal-slidedown-container {
	z-index: 99999!important;
}
.sticky-nav {
    transform: translatey(-100px);
    -moz-transition: all .3s ease!important;
    -webkit-transition: all .3s ease!important;
    transition: all .3s ease!important;
}

.mobile-sticky-nav {
transform: translatey(-100px);
-moz-transition: all .3s ease!important;
-webkit-transition: all .3s ease!important;
transition: all .3s ease!important;
}
.elementor-sticky--effects.mobile-sticky-nav{
height: auto!important;
transform: translatey(0px);
}
.elementor-sticky--effects.mobile-header{
    display: none!important;
}

.widget{
    margin-bottom: 20px;
    font-style: normal;
}
.above_comment.aeon-news-widget,
.nyd-target, .aeon-news-widget, .third-col .widget.sidebar-ads{
    text-align: center;
}
.aeon-news-ads-widget{
	text-align: center;
}
.aeon-news-ads-adlabel{
    line-height: 1;
    margin-bottom: 4px;
    font-size: 10px;
    text-transform: uppercase;
    display: block;
}
.nyd-target iframe {
	position: initial !important;
}
.nyd-target .content-video {
	 position: relative;
	 padding-top: 0; 
     padding-bottom: 0;
	 height: auto;
	 overflow: hidden;
}

.informationsruta em, .serif blockquote em,  .serif blockquote p{
	font-family: 'Publico Text Web';
	font-style: italic;
}
.serif em {
  font-family: 'Publico Text Web';
  font-style: italic;
  font-weight: 400;
}
.serif strong em{
    font-weight: 700;
}
.nyd-inside-content-after-paragraph{
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}
#qc-cmp2-container{
	z-index: 99999;
    position: relative;
}

/*-- BTC pay Btn --*/
.btcpay-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btcpay-form input{
    width:initial;
    padding:0;
}
.btcpay-form--inline {
    flex-direction: row;
}

.btcpay-form--block {
    flex-direction: column;
}

.btcpay-form--inline .submit {
    margin-left: 15px;
}

.btcpay-form--block select {
    margin-bottom: 10px;
}

.btcpay-form .btcpay-custom-container {
    text-align: center;
}

.btcpay-custom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btcpay-form .plus-minus {
    cursor: pointer;
    font-size: 25px;
    line-height: 25px;
    background: #DFE0E1;
    height: 30px;
    width: 45px;
    border: none;
    border-radius: 60px;
    margin: auto 5px;
    display: inline-flex;
    justify-content: center;
}

.btcpay-form select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    color: currentColor;
    background: transparent;
    border: 1px solid transparent;
    display: block;
    padding: 1px;
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    cursor: pointer;
    text-align: center;
}

.btcpay-form select:hover {
    border-color: #ccc;
}

.btcpay-form option {
    color: #000;
    background: rgba(0, 0, 0, .1);
}

.btcpay-input-price {
    -moz-appearance: textfield;
    border: none;
    box-shadow: none;
    text-align: center;
    font-size: 25px;
    margin: auto;
    border-radius: 5px;
    line-height: 35px;
    background: #fff;
}

.btcpay-input-price::-webkit-outer-spin-button,
.btcpay-input-price::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.btcpay-form input[type="image"]{
    border:none;
    padding:0;
}
.wp-dark-mode-active .ajax-load-more-wrap.infinite>.alm-btn-wrap .alm-load-more-btn.more {
    background-image: url(./img/alm-spinner-nyd-dark.gif) !important;
}
.ajax-load-more-wrap.infinite>.alm-btn-wrap .alm-load-more-btn.more {
    background-image: url(./img/alm-spinner-nyd-light.gif) !important;
}
.search-page{
	width:72%;
	float:left;
    padding: 50px 15px;
}
.search-search-form{
    display: flex;
}
.search-submit {
    /* width: 32px; */
    background: #c6b18b;
    color: #fff;
    border: 1px solid #c6b18b;
    border-radius: 0 5px 5px 0;
    padding: 10px;
    cursor: pointer;
    height: 100%;
}
.search-submit:focus{
	background: #c6b18b;
}
.spacer30{
    height: 30px;
}
.search-search-form input[type="search"]{
    margin:0 0 30px 0;
    border-radius: 5px 0 0 5px;
    border: 1px solid #ccc;
    padding: 10px;
    width: 95%;
    box-sizing: border-box;
}
.search-search-form input[type="search"]:focus{
    outline: none;
}