
/* ============================================
   MENU & FOOTER STYLES
   ============================================ */

:root {
  --nd-bg-color: #ffffff;
  --nd-bg-dark: #0a1628;
  --nd-text-primary: #1a1a1a;
  --nd-text-secondary: #4a5568;
  --nd-accent-primary: #D69E2E;
  --nd-accent-secondary: #0044cc;
  --nd-glass-border: rgba(0, 0, 0, 0.1);
  --nd-font-heading: 'Space Grotesk', sans-serif;
  --nd-font-body: 'Outfit', sans-serif;
  --nd-gradient-gold: linear-gradient(135deg, #D69E2E 0%, #B7791F 100%);
}


/* ============================================
   FLOATING NAVIGATION
   ============================================ */

.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 0.8rem 3rem;
    border-radius: 50px;
    border: 1px solid var(--nd-glass-border);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 900px;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.floating-nav:hover {
    background: #ffffff;
    border-color: var(--nd-accent-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.nav-logo {
    font-family: var(--nd-font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--nd-text-primary);
    text-decoration: none;
}



.nav-logo:hover {
    color: var(--nd-accent-primary);
}

.nav-items {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-items > a {
    text-decoration: none;
    color: var(--nd-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-items > a.active,
.nav-items > a:hover {
    color: var(--nd-accent-primary);
}

.nav-items > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--nd-accent-primary);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-items > a:hover::after {
    width: 100%;
    left: 0;
}

.nav-cta {
    background: var(--nd-gradient-gold);
    color: #000;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-left: 1rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile Menu Toggle (hidden on desktop) */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--nd-text-primary);
    padding: 0.5rem;
}

/* Language Selector in Floating Nav */
.floating-nav .language-selector {
    position: relative;
    cursor: pointer;
}

.floating-nav .selected-language {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    margin: 0 auto;
    color: var(--nd-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.3rem 0.4rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.floating-nav .selected-language:hover {
    color: var(--nd-accent-primary);
    background: rgba(212, 175, 55, 0.1);
}

.floating-nav .selected-language i.fa-globe {
    font-size: 1rem;
}

.floating-nav .selected-language i.fa-caret-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.floating-nav .language-selector:hover .fa-caret-down {
    transform: rotate(180deg);
}

.floating-nav .language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.8rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--nd-glass-border);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 1001;
    max-height: 300px;
    overflow-y: auto;
}

.floating-nav .language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-nav .language-dropdown li {
    margin: 0;
}

.floating-nav .language-dropdown a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--nd-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.floating-nav .language-dropdown a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--nd-accent-primary);
}

.floating-nav .language-dropdown a::after {
    display: none;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: -1rem;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: -100px;
    padding-top: 1rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    min-width: 600px;
    z-index: 1001;
    border: 1px solid var(--nd-glass-border);
    text-align: left;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
    background: transparent;
}

.nav-dropdown:hover .dropdown-content {
    display: grid;
}

.dropdown-section {
    text-align: left;
}

.dropdown-section h6 {
    font-family: var(--nd-font-heading);
    font-size: 0.85rem;
    color: var(--nd-accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--nd-glass-border);
    text-align: left;
}

.dropdown-section a {
    display: block;
    padding: 0.5rem 0;
    color: var(--nd-text-secondary) !important;
    font-size: 0.9rem;
    transition: color 0.2s, padding-left 0.2s;
    text-decoration: none;
}

.dropdown-section a:hover {
    color: var(--nd-accent-primary) !important;
    padding-left: 5px;
}

.dropdown-section a::after {
    display: none !important;
}

.dropdown-section a i {
    width: 20px;
    margin-right: 0.5rem;
    color: var(--nd-text-secondary);
}

.dropdown-section a:hover i {
    color: var(--nd-accent-primary);
}


/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--nd-glass-border);
}

.mobile-logo {
    font-family: var(--nd-font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--nd-text-primary);
    text-decoration: none;
}

.mobile-menu-close {
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--nd-text-secondary);
    padding: 0.5rem;
}

.mobile-menu-close:hover {
    color: var(--nd-accent-primary);
}

.mobile-menu-content {
    padding: 1rem 2rem 3rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--nd-glass-border);
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--nd-text-primary);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-nav-links a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--nd-accent-primary);
}

.mobile-nav-links a i {
    width: 24px;
    text-align: center;
    color: var(--nd-accent-primary);
}

.mobile-menu-section {
    margin-bottom: 1.5rem;
}

.mobile-menu-section-title {
    font-family: var(--nd-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nd-accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--nd-accent-primary);
}

.mobile-menu-section a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    font-size: 1rem;
    color: var(--nd-text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-menu-section a:hover {
    color: var(--nd-accent-primary);
    padding-left: 0.5rem;
}

.mobile-menu-section a i {
    width: 20px;
    text-align: center;
    color: var(--nd-accent-primary);
}

.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--nd-glass-border);
    text-align: center;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nd-accent-primary);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.mobile-language-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    color: var(--nd-text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.mobile-language-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--nd-accent-primary);
}


/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1200px) {


    .nav-logo img {
    transform: translate(-0px, 3px) !important;
}
    
    .floating-nav {
        min-width: auto;
        padding: 0.6rem 1.5rem;
        gap: 1rem;
    }

    .nav-items {
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .floating-nav {
        padding: 0.6rem 1.5rem;
    }

    .nav-items {
        display: none;
    }

    .nav-dropdown {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 1rem;
        padding: 0.6rem 1.2rem;
        min-width: auto;
        width: calc(100% - 2rem);
        max-width: 400px;
    }

    .floating-nav .language-selector {
        display: none;
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}


/* ============================================
   BUTTON STYLES
   ============================================ */

.competition-button-index {
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
    transition: all 0.3s ease !important;
    display: inline-block;
    color: #000;
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
    font-family: var(--nd-font-body);
    font-weight: 600;
    margin: 5px 10px;
    border-radius: 8px;
    overflow: hidden;
}

.competition-button-index div {
    color: #000;
    background: var(--nd-gradient-gold);
    padding: 12px 24px;
    border: none;
    position: relative;
    z-index: 1;
}

.competition-button-index div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #B7791F 0%, #D69E2E 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.competition-button-index:hover {
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.4);
    transform: translateY(-2px) !important;
    cursor: pointer;
}

.competition-button-index:hover div::before {
    opacity: 1;
}

.button_wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.button_wrapper .competition-button-index {
    display: inline-block;
}

.competition-button, input[type='submit'] {
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
    color: #000 !important;
    text-align: center;
    letter-spacing: 0.5px;
    font-family: var(--nd-font-body);
    font-weight: 600;
    background: var(--nd-gradient-gold);
    padding: 14px 28px !important;
    margin: 0 20px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease !important;
    text-shadow: none;
    outline: none;
    text-decoration: none !important;
}

.competition-button:hover, input[type='submit']:hover {
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.4);
    transform: translateY(-2px) !important;
    cursor: pointer;
}

input, select {
    border: 1px solid var(--nd-glass-border);
    background: rgba(255, 255, 255, 0.95);
    color: var(--nd-text-primary);
    font-family: var(--nd-font-body);
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    box-shadow: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

input:focus, select:focus {
    border-color: var(--nd-accent-primary);
    box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.15);
}

@media only screen and (max-width: 1200px) {
    .competition-button, input {
        border: none;
        font-size: 5vw;
    }
    .competition-button {
        display: inline-block;
    }
}


/* ============================================
   FOOTER STYLES
   ============================================ */

footer {
    float: left;
    width: 100%;
    /* text-align: center; */
    font-family: var(--nd-font-body);
    font-weight: 300;
}

footer a {
    color: inherit !important;
    font-weight: inherit !important;
    border: none !important;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--nd-accent-primary) !important;
    text-decoration: none;
}

/* Modern Footer */
.modern-footer {
    background: var(--nd-bg-dark);
    color: rgba(255, 255, 255, 0.7);
}

/* Newsletter Banner */
.footer-newsletter-banner {
    background: linear-gradient(135deg, rgba(214, 158, 46, 0.1) 0%, rgba(10, 22, 40, 0) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0;
}

.footer-newsletter-banner .footer-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.footer-newsletter-banner h3 {
    font-family: var(--nd-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.footer-newsletter-banner p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-size: 1rem;
}

.newsletter-form-modern {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form-modern input[type="email"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    width: 320px;
    font-size: 15px;
    box-shadow: none;
}

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

.newsletter-form-modern input[type="email"]:focus {
    border-color: var(--nd-accent-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.2);
}

.newsletter-form-modern input[type="submit"] {
    background: var(--nd-gradient-gold);
    color: #000 !important;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.newsletter-form-modern input[type="submit"]:hover {
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.4);
    transform: translateY(-2px);
}

/* Main Footer */
.footer-main {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: inherit;
    text-align: left;
}

.footer-main .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

@media only screen and (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media only screen and (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.footer-brand {
    text-align: left;
}

@media only screen and (max-width: 600px) {
    .footer-brand {
        text-align: center;
    }
}

.footer-brand-logo {
    width: 80px;
    height: auto;
    filter: invert(1);
    margin-bottom: 20px;
}

.footer-brand-name {
    font-family: var(--nd-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-brand-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

@media only screen and (max-width: 600px) {
    .footer-social-links {
        justify-content: center;
    }
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: var(--nd-accent-primary);
    color: #000 !important;
    transform: translateY(-3px);
}

.footer-links-section h4,
.footer-resources-section h4,
.footer-contact-section h4 {
    font-family: var(--nd-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-section ul,
.footer-resources-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-section li,
.footer-resources-section li {
    margin-bottom: 12px;
}

.footer-links-section a,
.footer-resources-section a {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links-section a:hover,
.footer-resources-section a:hover {
    color: var(--nd-accent-primary) !important;
    transform: translateX(3px);
}

.footer-contact-info {
    margin-bottom: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

@media only screen and (max-width: 600px) {
    .footer-contact-item {
        justify-content: center;
    }
}

.footer-contact-item i {
    color: var(--nd-accent-primary);
    width: 16px;
    text-align: center;
    margin-top: 3px;
}

.footer-partners {
    margin-top: 25px;
}

.footer-partners h5 {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-partner-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media only screen and (max-width: 600px) {
    .footer-partner-logos {
        justify-content: center;
    }
}

.footer-partner-logos img {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    filter: grayscale(100%) brightness(1.3);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

@media only screen and (max-width: 600px) {
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--nd-accent-primary) !important;
}


/* ============================================
   LEGACY FOOTER STYLES
   ============================================ */

.footer-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

h5 {
    font-size: 16px;
    margin: 0;
    font-family: var(--nd-font-heading);
    color: #fff;
}

@media only screen and (max-width: 1200px) {
    h5 {
        font-size: 5vw;
    }
}

.footer-section .content-wrapper {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    display: inline-block;
}

@media only screen and (max-width: 1200px) {
    .footer-section .content-wrapper {
        font-size: 4.5vw;
    }
}

#footer-footer, .footer-section {
    float: left;
    width: 100%;
    text-align: center;
}

#footer-newsletter  { background: var(--nd-bg-dark); }
#footer-team        { background: #071220; }
#footer-links       { background: #050e1a; }
#footer-footer      { background: #030a12; }

footer input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

footer input[type='submit'] {
    background: var(--nd-gradient-gold);
    color: #000 !important;
    border: none;
}

@media only screen and (max-width: 1200px) {
    footer input, footer input[type='submit'] {
        font-size: 3.5vw;
        padding: 1.5vw 2vw;
    }
    footer input[type='email'] {
        width: 80vw;
        font-size: 4vw;
        margin-bottom: 4vw;
    }
}

#footer-team img {
    width: 60px;
    height: 60px;
    margin: 5px;
    border-radius: 50%;
    filter: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#footer-team img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media only screen and (max-width: 1200px) {
    #footer-team img {
        width: 20vw;
        height: 20vw;
    }
}

.team-wrapper {
    text-align: left;
    display: inline-block;
    width: 180px;
    margin: 15px 25px;
    font-size: 14px;
    line-height: 22px;
}

.team-wrapper b {
    color: var(--nd-accent-primary);
    font-weight: 600;
}

@media only screen and (max-width: 1200px) {
    .team-wrapper {
        width: 90%;
        font-size: 4.5vw;
        line-height: 7.5vw;
        text-align: center;
    }
}

.footer-column {
    float: left;
    width: 200px;
    text-align: left;
    font-size: 14px;
    line-height: 32px;
}

@media only screen and (max-width: 1200px) {
    .footer-column {
        width: 100%;
        text-align: center;
        font-size: 4.5vw;
        line-height: 10vw;
    }
}

h6 {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    font-family: var(--nd-font-heading);
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media only screen and (max-width: 1200px) {
    h6 {
        font-size: 5vw;
        margin-top: 15vw;
    }
}

#footer-column-3 span {
    line-height: 10px;
}

#footer-column-0 {
    width: 170px;
}

@media only screen and (max-width: 1200px) {
    #footer-column-0 {
        text-align: center;
        width: 100%;
    }
}

#footer-column-0 img {
    width: 80px;
    margin-top: 11px;
}

@media only screen and (max-width: 1200px) {
    #footer-column-0 img {
        width: 30%;
        margin-top: 1vw;
    }
}

#footer-column-3 img {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    filter: grayscale(100%) brightness(1.3);
    opacity: 0.7;
    transition: all 0.3s ease;
}

#footer-column-3 img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media only screen and (max-width: 1200px) {
    #footer-column-3 img {
        width: 12vw;
        height: 12vw;
        margin: 1vw;
    }
}

#footer-footer {
    margin: 0;
    padding: 20px 40px;
    padding: 10px 10px;
    font-size: 13px;
    text-align: left;
    color: rgba(255, 255, 255, 0.4);
}

@media only screen and (max-width: 1200px) {
    #footer-footer {
        display: block;
        text-align: center;
        padding: 15px;
    }
}

#footer-footer span {
    float: right;
}

@media only screen and (max-width: 1200px) {
    #footer-footer span {
        float: none;
        display: block;
        margin-top: 10px;
    }
}

.last-center-block {
    margin-right: 20px;
}

@media only screen and (max-width: 1200px) {
    .last-center-block {
        margin-right: 0;
    }
}
