/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.vti__dropdown-item {
    color:black;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Star ratings for testimonials */
.stars {
    color: #ffc107;
    font-size: 1.2em;
    margin-right: 8px;
    display: inline-block;
}

/* Enhanced testimonials styling for better visibility */
.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    border-left: 4px solid #ff6b35;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.profit {
    font-weight: bold;
    color: #4CAF50;
    margin: 8px 0;
    font-size: 1.1em;
}

/* Breadcrumb navigation for better SEO */
.breadcrumb {
    background: transparent;
    padding: 80px 0 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #ccc;
    text-decoration: none;
    margin-right: 8px;
}

.breadcrumb a:hover {
    color: #ff6b35;
}

.breadcrumb span {
    color: #ff6b35;
    margin: 0 8px;
}

/* Enhanced heading hierarchy for better SEO */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 16px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b35;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .testimonial {
        padding: 16px;
    }
}

/* Mobile-first responsive container */
@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(51, 51, 51, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    z-index: 1000;
    border-top: 2px solid #ff6b35;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.cookie-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 44px; /* Touch-friendly */
}

.cookie-btn.details {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn.details:hover {
    background-color: #fff;
    color: #333;
}

.cookie-btn.accept {
    background-color: #ff6b35;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #e55a2b;
    transform: translateY(-1px);
}

.cookie-banner.hidden {
    display: none;
}

/* Desktop cookie banner */
@media (min-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }

    #benefits-image-srn {
        display: none;
    }
    
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .cookie-content p {
        margin-right: 20px;
        font-size: 14px;
    }
    
    .cookie-buttons {
        justify-content: flex-end;
    }
}

/* Header */
.header {
    background-color: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo img {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px;

    width: auto;
    border-radius: 10px;
}

.nav-links {
    display: none; /* Hidden on mobile by default */
    gap: 24px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-links a:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(42, 42, 42, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-mobile a:hover,
.nav-mobile a:last-child {
    border-bottom: none;
}

.nav-mobile a:hover {
    color: #ff6b35;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .header {
        padding: 16px 0;
    }
    
    .logo img {
        height: 70px;
    }
    
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}



/* Hero Section */
.hero {
    background-image: url(../images/main.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%); */
    padding: 100px 0 60px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #ff6b35;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-container {
    margin-bottom: 32px;
}

.countdown-timer {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.countdown-text {
    color: #cccccc;
    font-size: 0.875rem;
    line-height: 1.4;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.cta-button:active {
    transform: translateY(0);
}

/* Tablet and Desktop Hero */
@media (min-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 40px;
    }
    
    .countdown-timer {
        font-size: 1.5rem;
        padding: 16px 32px;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 18px 40px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.375rem;
    }
}

/* Steps Section */
.steps {
    padding: 60px 0;
    background-color: #2a2a2a;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.step1 {
    text-align: center;
    padding: 24px 16px;
    background: linear-gradient(135deg, #333, #3a3a3a);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.step-number {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step1 p {
    color: #cccccc;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .steps {
        padding: 80px 0;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .step1 {
        padding: 32px 24px;
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* CEO Section */
.ceo-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.ceo-info {
    text-align: center;
}

.ceo-info h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.ceo-title {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.ceo-message p {
    margin-bottom: 16px;
    color: #cccccc;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .ceo-section {
        padding: 80px 0;
    }
    
    .ceo-content {
        grid-template-columns: 1fr 2fr;
        gap: 48px;
        align-items: start;
    }
    
    .ceo-info {
        text-align: left;
    }
    
    .ceo-info h3 {
        font-size: 1.75rem;
    }
    
    .ceo-message p {
        margin-bottom: 20px;
    }
}

/* Benefits Section */
.benefits {
    padding: 60px 0;
    background-color: #2a2a2a;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.75rem;
    color: #ff6b35;
    font-weight: 700;
    line-height: 1.3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit {
    background: linear-gradient(135deg, #333, #3a3a3a);
    padding: 24px 16px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.benefit h4 {
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .benefits {
        padding: 80px 0;
    }
    
    .benefits h2 {
        font-size: 2rem;
        margin-bottom: 60px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .benefit {
        padding: 32px 24px;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Calculator Section */
.calculator {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.calculator h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.75rem;
    color: #ff6b35;
    font-weight: 700;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.calculator-left h3,
.calculator-right h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.amount-btn {
    padding: 12px 16px;
    background-color: #333;
    color: #fff;
    border: 2px solid #444;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-height: 48px;
}

.amount-btn:hover {
    background-color: #444;
    border-color: #ff6b35;
}

.amount-btn.active,
.amount-btn:focus {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-color: #ff6b35;
    color: #fff;
}

.slider-container {
    margin-bottom: 24px;
}

#investment-slider {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    outline: none;
    margin-bottom: 8px;
}

#investment-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
}

#investment-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: #cccccc;
    font-size: 0.875rem;
}

.calculator-right {
    text-align: center;
    background: linear-gradient(135deg, #333, #3a3a3a);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.weekly-earning {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

@media (min-width: 768px) {
    .calculator {
        padding: 80px 0;
    }
    
    .calculator h2 {
        font-size: 2rem;
        margin-bottom: 60px;
    }
    
    .calculator-content {
        grid-template-columns: 2fr 1fr;
        gap: 48px;
    }
    
    .amount-buttons {
        gap: 12px;
    }
    
    .amount-btn {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .weekly-earning {
        font-size: 2.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: #2a2a2a;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.75rem;
    color: #ff6b35;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.testimonial {
    background: linear-gradient(135deg, #333, #3a3a3a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-2px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stock-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.investor-name {
    font-weight: 600;
    color: #fff;
}

.amount {
    color: #ff6b35;
    font-weight: 600;
}

.stock {
    color: #cccccc;
    font-size: 0.875rem;
}

.time {
    color: #999;
    font-size: 0.75rem;
}

.profit {
    color: #4ade80;
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial-content h4 {
    color: #ff6b35;
    margin-bottom: 8px;
    font-weight: 600;
}

.result {
    color: #4ade80;
    font-weight: 600;
    margin-bottom: 12px;
}

.testimonial-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 12px;
}

.testimonials-subtitle {
    text-align: center;
    color: #cccccc;
    font-style: italic;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 60px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .testimonial {
        padding: 24px;
    }
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(135deg, #333, #3a3a3a);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
}

.faq-item:hover {
    background: linear-gradient(135deg, #3a3a3a, #444);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ff6b35;
}

.faq-item.active .faq-question {
    color: #ff6b35;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ff6b35;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Increased for longer content */
    padding: 20px;
    opacity: 1;
}

/* Ensure FAQ items are clickable */
.faq-question,
.faq-item {
    cursor: pointer !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Prevent any interference from other styles */
.faq-question * {
    pointer-events: none;
}

.faq-question {
    pointer-events: auto;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .faq {
        padding: 80px 0;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .faq-question {
        padding: 24px;
        font-size: 1.125rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 24px 24px;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #2a2a2a;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.75rem;
    color: #ff6b35;
    font-weight: 700;
    line-height: 1.3;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.contact-left h3,
.contact-right h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input {
    padding: 16px;
    background-color: #333;
    border: 2px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    min-height: 52px;
}

.contact-form input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form input::placeholder {
    color: #999;
}

.contact-info {
    background: linear-gradient(135deg, #333, #3a3a3a);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-info p {
    color: #cccccc;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact h2 {
        font-size: 2rem;
        margin-bottom: 60px;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

.footer p {
    text-align: center;
    color: #999;
    margin-bottom: 8px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-links {
    text-align: center;
    margin-top: 16px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-links span {
    color: #666;
    margin: 0 8px;
}

/* Animations and Transitions */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch improvements for mobile */
@media (max-width: 767px) {
    button, .amount-btn, .faq-item {
        min-height: 48px; /* Better touch targets */
    }
    
    .step1 {
        margin-bottom: 16px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: block;
    }
}

/* High-resolution display improvements */
@media (min-resolution: 2dppx) {
    .hero-title,
    .benefits h2,
    .calculator h2,
    .testimonials h2,
    .contact h2 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
.amount-btn:focus,
.nav-links a:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

#inscriere {
    background-image: url(../images/footer.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;

}

/* Print styles */
@media print {
    .header,
    .cookie-banner,
    .countdown-container,
    .cta-button {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Mob Main */
@media (max-width: 768px) {
    
    .logo img {
        height: 70px;
    }
    #inscriere {
        background-image: url(../images/footer.jpg);
        background-size: contain;

    
    }

    /* .hero {
        background-image: url(../images/main_m.png);
        background-size: contain;

        
    } */
}