/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    width: 100%;
}

.header.scrolled .container {
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-brand a {
    line-height: 1;
}

.logo {
    height: 80px;
    width: auto;
    border-radius: 4px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.header.scrolled .brand-text {
    color: #2563eb;
    text-shadow: none;
}

.header nav {
    flex: 1;
    /* display: flex;
    justify-content: center; */
    margin-left: 2rem;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
        justify-content: space-around;
}

.nav-list li:last-child {
    margin-left: auto;
}

.nav-link,
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
    text-decoration: none;
    /*color: white;*/
    /*font-weight: 500;*/
    /*transition: color 0.3s ease;*/
    /*position: relative;*/
    /*white-space: nowrap;*/
    /*text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);*/
    
    color: #000;

    transition: color 0.3s ease;
   
    font-weight: 500;
    text-transform: uppercase;
  

}

#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
    background: none;
    color: #000000;
}

#mega-menu-wrap-main-menu .mega-menu-toggle {
    background: none;
}

.header.scrolled .nav-link {
    color: #374151;
    text-shadow: none;
}

.nav-link:hover {
    color: #60a5fa;
}

.header.scrolled .nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.header.scrolled .nav-link::after {
    background: #2563eb;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-link {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: none;
}

.header.scrolled .cta-link {
    background: #2563eb;
    border: none;
    backdrop-filter: none;
}

.cta-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.header.scrolled .cta-link:hover {
    background: #1d4ed8;
}

.cta-link::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #0066a5;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

#mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
#mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
#mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    background: #0066a5;
}

.header.scrolled .mobile-menu-btn span {
    background: #374151;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.4);*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*color: white;*/
    padding: 0;
}

.slide-content .container {
    width: 100%;
}

 .banner-text {
    width: 55%;
    padding: 30px;
    text-align: left;
    background: rgb(255 255 255 / 90%);
}

.slide-content h1 {
    color: #202c45;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn,
.wpcf7-form-control.wpcf7-submit {
    display: inline-block;
    padding: 12px 24px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
}

.wpcf7-form-control.wpcf7-submit {
    background: #78ca10;
    color: white;
}

.btn:hover,
.wpcf7-form-control.wpcf7-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary {
    background: #2563eb;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #78ca10;
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
        width: 40px;
    height: 40px;
    display: flex
;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    /*max-width: 600px;*/
    margin: 0 auto;
}

/* About Section */
/* .about {
    background: white;
} */

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
        text-align: center;
}

.about-text p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.about-text .btn {
    background: #2563eb;
    color: white;
}

.about-text .btn:hover {
    background: #1d4ed8;
}

/* .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
} */

.about-image {
    height: 100%;
}

.about-image img {
       width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Products Section */
.products {
    background: #0066a5;
    position: relative;
}

.products:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url(https://clearworld.com.ua/wp-content/themes/blankslate-child/assets/img/system.png) no-repeat 0 0 / cover fixed;
}

.products-content,
.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.products-text h2 {
        font-size: 2.5rem;
    font-weight: 700;
    color: #78ca10;
    margin-bottom: 1rem;
}

.products-text p {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.products-text .btn {
    background: #78ca10;
    color: white;
}

.products-text .btn:hover {
    background: #1d4ed8;
}

/* .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
} */

.products-image {
    height: 100%;
}

.products-image img {
       width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .products {
    background: #f9fafb;
}

.products-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.products-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.product-card p {
    color: #6b7280;
    line-height: 1.6;
} */

/* Markets Section */
.markets {
    background: #EEF6FD;
}

.markets .container {
    max-width: 100%;
    padding: 0;
}

.markets-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));*/
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.market-card {
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.market-card:hover {
    transform: scale(1.02);
    z-index: 10;
}

.market-image {
    height: 400px;
    overflow: hidden;
    
        display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(49, 51, 53, 0.4);
        text-align: center;
}

.market-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    object-fit: fill;
    transition: transform 0.3s ease;
}

.market-card:hover .market-image img {
    transform: scale(1.1);
}

.market-content {
    padding: 40px;
    background: white;
}

.market-image h3 {

    
        font-size: 30px;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 500;
}

.market-content p {
    color: #6b7280;
    margin-bottom: 20px;
}

.market-content ul {
    list-style: none;
}

.market-content li {
    color: #4b5563;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.market-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Applications Section */
.applications {
    overflow: hidden;
}

.applications-carousel {
    position: relative;
}

.carousel-container {
    overflow: hidden;
    margin: 0;
}

.carousel-track {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    gap: 30px;
    transition: transform 0.5s ease;
    width: max-content;
}

.application-card {
    width: 232px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
        transform: translateY(-3px);
    transition: .5s;
    padding: 30px;
    text-align: center;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.application-card img {
    width: 80px;
    height: auto;
    /* object-fit: cover; */
}

.application-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0 10px;
    min-height: 50px;
}

.application-card a {
        color: #000;
    padding: 5px 0;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 2px solid #78ca10;
    text-decoration: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #78ca10;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #78ca10;
}

.carousel-btn.prev {
    left: -10px;
}

.carousel-btn.next {
    right: -10px;
}

/* About Page Specific Styles */

/* About Page Layout */
.about-page {
    padding-top: 0;
}

/* About Banner */
.about-banner {
    position: relative;
    height: 200px;
    /* background: rgba(0, 125, 165, 0.5), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1920&h=400&fit=crop');
    background-size: cover;
    background-position: center; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 110px;
}

/* .about-banner-content {
 background: rgb(0 102 165 / 70%);
} */

.about-banner-content h1 {
    color: white;
    font-size: 4rem;
    /* font-weight: 700; */
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
    letter-spacing: 2px;
    /* text-align: center; */
   
}

/* About Main Content */
.about-main {
    padding: 80px 0;
    background: white;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 2.5rem;
}

/* .about-content-wrapper + .about-content-wrapper {
    margin-top: 80px;
} */

.about-images {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 20px;
    position: relative;
        height: 100%;
}

.about-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    /* border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.fluid-image img {
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
    /* width: auto;
    height: auto; */
}

.about-double-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-small-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text-content p,
.about-text-content ul {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
}

.about-text-content ul {
        list-style: disc;
    margin-left: 1rem;
}

.about-text-content p {
    
    
    margin-bottom: 25px;
    
    text-align: justify;
}

@media (max-width: 1200px) {
    #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
        font-size: 16px;
    }
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-banner-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-double-images {
        grid-template-columns: 1fr;
    }
    
    .about-text-content h2 {
        font-size: 2rem;
    }
    
    .hero {
        height: 75vh;
    }

    .quote-content {
        display: block;
    }

    .quote-img {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-banner {
        height: 300px;
    }
    
    .about-banner-content h1 {
        font-size: 2rem;
    }
    
    .about-main {
        padding: 60px 0;
    }
    
    .about-text-content h2 {
        font-size: 1.75rem;
    }
    
    .about-text-content p {
        font-size: 1rem;
    }
}

/* Quote Section */
.quote {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    
    background: rgb(83,187,233);
background: -moz-linear-gradient(90deg, rgba(83,187,233,1) 0%, rgba(26,96,126,1) 80%);
background: -webkit-linear-gradient(90deg, rgba(83,187,233,1) 0%, rgba(26,96,126,1) 80%);
background: linear-gradient(90deg, rgba(83,187,233,1) 0%, rgba(26,96,126,1) 80%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#53bbe9",endColorstr="#1a607e",GradientType=1);

    color: white;
}

.quote-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.quote-img img {
        position: absolute;
    left: 0;
    bottom: -80px;
    max-width: 100%;
}

.quote .section-header {
    text-align: left;
    margin: 0;
}

.quote .section-header h2 {
    color: white;
        line-height: 1.2;
}

.quote .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.quote-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ffffff;
    border-radius: 0;
    font-size: 1rem;
    background: transparent;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder,
.form-group select option:first-child {
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2563eb;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section p {
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2563eb;
}

.footer-bottom {
    /* border-top: 1px solid #374151; */
    padding-top: 20px;
    text-align: center;
    padding-bottom: 20px;
    background: #222;
    position: relative;
}

.footer-bottom::before {
    background: #222;
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
}

.footer-bottom::after {
    background: #222;
    content: '';
    position: absolute;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .products-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .products:before {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-track {
        grid-template-rows: 1fr;
        grid-auto-flow: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .carousel-container {
        margin: 0 20px;
    }
    
    .slider-btn {
        display: none;
    }
    
    .carousel-btn {
        display: none;
    }

    .banner-text {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .quote-form {
        padding: 30px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading state */
.loading {
    opacity: 0.7;
    pointer-events: none;
}


@media only screen and (min-width: 769px) {
    #mega-menu-wrap-main-menu {
        background: none;
    }

    #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
        color: #000000;

    }

    #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
        text-decoration: none;
        color: #000;
        font-size: 18px;
        transition: color 0.3s ease;
        height: auto;
        font-weight: 500;
        text-transform: uppercase;
        /* line-height: 104px; */
    }

    #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:focus {
        background: none;
        color: #000;
    }
}