* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
          body {
            background: #000;
            margin: 0;
        }

/* Intro*/

        .tv-container {

            display: flex;
            align-items: center;
            justify-content: center;
        }
        .tv-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: block;
            z-index: 1; /* TV frame is above the video */
        }
        .tv-video, .tv-content {
            position: absolute;
            /* Adjust these values to fit the TV screen area */
            left: 15%; top: 18%; width: 70%; height: 60%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .tv-video video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;      /* Increase as needed to fill the TV */
            height: 100%;     /* Increase as needed to fill the TV */
            flex-shrink: 0;
            aspect-ratio: 1051/591;
            object-fit: cover;
            border-radius: 20px;
            margin-left: -110px; /* Adjust to center horizontally */
            z-index: 0;  
            clip-path: inset(0 0 0 100px);/* Ensure it's behind the TV frame */
        }
        .tv-content {
            position: absolute;
            left: 15%;
            top: 18%;
            width: 70%;
            height: 60%;
            display: none;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            background: none;
            border-radius: 12px;
            padding: 20px;
            overflow: hidden;
            margin-left: -240px; /* Adjust this value as needed */
        }
        .logo {
            width: 845px;
            height: 475px;
            flex-shrink: 0;
            aspect-ratio: 169/95;
            margin-right: -170px; /* Reduced to bring logo and list closer */
            object-fit: contain;
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
            clip-path: inset(0 0 0 100px);
        }
        .glitch {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            border-radius: 15%;
            pointer-events: none;
            opacity: 0.2;
            clip-path: inset(0 0 0 200px); /* Crops 200px from the left, adjust as needed */
        }
        .menu-list {
            color: var(--Cinza-Claro, #A9A9A9);
            text-align: center;
            font-family: Inter;
            font-size: 40px;
            font-style: normal;
            font-weight: 800;
            line-height: 25px; /* 62.5% */
            list-style: none; /* Remove dots */
            padding: 0;       /* Remove default padding */
            margin: 0;        /* Remove default margin */
        }
        .menu-list li {
            margin-bottom: 60px; /* Increase for more vertical space */
        }
        .menu-link {
    color: var(--Cinza-Claro, #A9A9A9);
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.2s;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    outline: none;
    z-index: 2;
}

/* Glitch effect on hover */
.menu-link:hover, .menu-link:focus {
    animation: glitch 0.4s linear;
    color: #fff;
}

@keyframes glitch {
    0% { text-shadow: 2px 0 red, -2px 0 blue; }
    20% { text-shadow: -2px 0 red, 2px 0 blue; }
    40% { text-shadow: 2px 2px lime, -2px -2px magenta; }
    60% { text-shadow: -2px 2px lime, 2px -2px magenta; }
    80% { text-shadow: 2px 0 red, -2px 0 blue; }
    100% { text-shadow: none; }
}

/* Tremble effect on click */
.menu-link:active {
    animation: tremble 0.8s;
}

@keyframes tremble {
    0% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
    100% { transform: translateX(0); }
}

.menu-list {
    position: relative;
    z-index: 2;
}

/* NAVBAR */

.main-navbar {
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 70px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar-logo {
    color: #A9A9A9;
    font-family: 'Bodoni Moda', serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.2s;
}

.navbar-logo:hover,
.navbar-logo:focus {
    animation: glitch 0.4s linear;
    color: #fff;
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 36px;
    margin: 0;
    padding: 0;
}

.navbar-link {
    color: #A9A9A9;
    text-align: right;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    text-decoration: none;
    transition: color 0.2s;
    padding: 8px 16px;
    border-radius: 4px;
    position: relative;
}

.navbar-link::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #A9A9A9; /* Use your desired color */
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.navbar-link:hover::after,
.navbar-link:focus::after {
    transform: translateX(-50%) scaleX(1);
}

    .navbar-link ul li ::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #fff;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li :hover::after {
    width: 100%;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sub-header {
    flex: 1 0 auto; /* Allow main content to grow and push footer down */
}

/* FOOTER */

.bottom-bar {
    width: 100%;
    background: #000;
    color: #A9A9A9;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 48px 24px 24px 24px; /* More top, less bottom padding */
    box-sizing: border-box;
    gap: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    position: relative;
    margin-top: 40px;
    min-height: 120px;
}

.footer-title {
    font-weight: 700;
    font-size: 20px; /* smaller title */
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #fff;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
}

.footer-list a {
    color: #A9A9A9;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-list a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    gap: 20px; /* Increase gap between icons */
    margin-top: 6px;
}

.footer-socials img {
    width: 22px;
    height: 22px;
    display: block;
}
.footer-socials img:hover,
.footer-socials img:focus {
    transform: scale(1.1);
    transition: transform 0.2s;
    filter: brightness(1.2);
}

.footer-socials img[alt="YouTube"] {
    width: 32px;   /* Make YouTube icon wider */
    height: 22px;  /* Keep height consistent */
}

.newsletter-desc {
    color: #A9A9A9;
    font-family: 'Fira Mono', 'Consolas', 'Courier New', monospace;
    font-size: 15px;
    font-weight: 400;
    margin: 8px 0 12px 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.newsletter-form {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #A9A9A9;
    border-radius: 8px;
    background: #D9D9D9;
    color: #222;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: border 0.2s;
}

.newsletter-form input[type="email"]::placeholder {
    color: #A9A9A9;
    opacity: 1;
    font-size: 14px;
}

.newsletter-form button {
    padding: 0 16px;
    background: transparent;
    color: #A9A9A9;
    border: 1px solid #A9A9A9;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    height: 36px;
}

.newsletter-form button:hover {
    background: #A9A9A9;
    color: #000;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
}

/* ABOUT US */

.about-main {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/aboutfundo.png') no-repeat center center;
    background-size: cover;
    position: relative;
    /* Remove or reduce padding-top if present */
    padding-top: 0;
    margin: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.about-heading {
    font-family: 'Imperial Script', cursive;
    font-size: 6rem;           /* Bigger */
    color: #111;
    margin-bottom: 36px;
    margin-top: -40px;         /* Move a bit higher */
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.about-center-text {
    color: #A9A9A9;
    -webkit-text-stroke: 1px #6D6D6D;
    text-shadow: 1px #6D6D6D;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    font-family: 'Bodoni Moda', serif;
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: 0.5px;
    line-height: 1.5;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.about-section-2 {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/aboutfundo3.png') no-repeat top center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    margin-top: -100px; /* Overlap the previous section by 60px */
}

.about-section-2-content {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center vertically */
    background: transparent;
    margin: 0;
    flex-shrink: 0;
    padding-top: 130px; /* Remove any top padding */
}

.about-section-2-p {
    color: #111;
    font-family: 'Fira Mono', 'Consolas', 'Courier New', monospace;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.5;
    max-width: 1000px;
    letter-spacing: 1px;
    font-weight: 700; /* Make text more bold */
}

/* MISSION */

.mission-main {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4A4A4A;
    background-image: url('../img/misionfundo.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 380vh; /* Makes the image much taller than the viewport */
    position: relative;
    /* Allow vertical scrolling if content is taller than viewport */
}

.mission-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 100%;
    margin-top: 0;           /* Remove previous margin-top */
    margin-bottom: 170px;     /* Add space before footer */
}

.mission-title {
    font-family: 'Imperial Script', cursive;
    font-size: 6rem;
    color: #fff;
    margin-top: 150px;      /* Move title down */
    margin-bottom: 48px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.mission-text-block {
    color: #fff;
    font-family: 'Fira Mono', 'Consolas', 'Courier New', monospace;
    font-weight: 400;
    font-size: 1.5rem; /* Bigger text */
    width: 90vw;
    max-width: 1252px;
    margin: 0 auto;
    text-align: left;
}

.mission-text-block p {
    margin-bottom: 32px;
    line-height: 1.7;
}

.mission-text-block p:last-child {
    margin-bottom: 0;
}


/* PROD */

.prod-main {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(74,74,74,0.55), rgba(74,74,74,0.55)),
        url('../img/missionfundo.png') no-repeat center center;
    background-size: cover;
    position: relative;
}

.prod-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.prod-image-quote-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.prod-img {
    display: block;
    max-width: 1100px;
    width: 75vw;
    height: auto;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.prod-quote-block {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;      /* Center vertically */
    align-items: flex-start;      /* Align left */
    pointer-events: none;
    padding: 0 80px 0 80px;
    box-sizing: border-box;
    background: none;
    border: none;
    box-shadow: none;
}

.prod-quote {
    color: #4A4A4A;
    font-family: 'Imperial Script', cursive;
    font-size: 4rem;         /* Bigger */
    font-style: normal;
    font-weight: 500;           /* Bolder */
    line-height: 1.5;
    text-align: left;
    max-width: 85%;             /* Less width */
    margin-bottom: 100px;       /* More space before author */
    text-shadow: 0 2px 8px rgba(255,255,255,0.18);
    padding-left: 20px;
    padding-top: 20px;
}

.prod-author {
    color: #4A4A4A;
    font-family: 'Imperial Script', cursive;
    font-size: 5rem;          /* Bigger */
    font-style: normal;
    font-weight: 500;           /* Bolder */
    line-height: 1.5;
    text-align: right;
    width: 100%;
    text-shadow: 0 2px 8px rgba(255,255,255,0.18);
    padding-right: 40px;
    padding-bottom: 20px;
}

.prod-coming-soon {
    margin-top: -100px;
    margin-bottom: 80px;   /* Less space above the footer */
    align-self: flex-end;
    color: #4A4A4A;        /* Updated color */
    font-family: 'Fira Mono', 'Consolas', 'Courier New', monospace;
    font-size: 3.5rem;     /* Bigger text */
    border: none;
    border-radius: 0;
    padding: 12px 36px;
    font-weight: 700;
    letter-spacing: 2px;
    background: transparent;
    margin-right: 8vw;
    box-shadow: none;
}

.prod-paper-bg {
    background: url('../img/prodimg.png') no-repeat center center;
    background-size: cover;
    width: 1500px;
    height: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; 
    padding: 50px 300px 200px 300px;
    box-sizing: border-box;
    margin: 170px auto 0 auto;  /* Increased top margin for more space from navbar */
    position: relative;
    overflow: hidden;
    border-radius: 24px; /* optional */
}


/* OLD TOWN */

.town-main {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../img/oldfundo.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.town-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(120, 90, 60, 0.28); /* Faint brownish overlay */
    z-index: 9999;
    pointer-events: none;
}

.town-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.town-title {
    font-family: 'Imperial Script', cursive;
    font-size: 5rem;
    color: #A39380; /* fill color */
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    opacity: 1;
    text-transform: none;
}

.town-coming-soon {
    font-family: 'Bodoni Moda', serif;
    font-size: 7rem;
    color: #6C5740; /* fill color */
    font-weight: 700;
    letter-spacing: 0.15em;
    text-shadow:
        -2px -2px 0 #6C5740,
         2px -2px 0 #6C5740,
        -2px  2px 0 #6C5740,
         2px  2px 0 #6C5740,
         0px  0px 5px #6C5740; /* mimic stroke */
    opacity: 0.6;
    text-transform: uppercase;
    stroke-width: 5px; /* has no effect in CSS, but left for clarity */
    stroke: #6C5740;   /* has no effect in CSS, but left for clarity */
}

/* CONTACT */

.contact-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;   /* Center vertically */
    padding: 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 100px; /* Space from top */
}

.contact-title {
    font-family: 'Imperial Script', cursive;
    font-size: 6rem;
    color: #6D6D6D;           /* fill */
    font-weight: 400;
    font-style: normal;
    margin-bottom: 20px;
    /* Mimic stroke with text-shadow */
    text-shadow:
        -1px -1px 0 #A9A9A9,
         1px -1px 0 #A9A9A9,
        -1px  1px 0 #A9A9A9,
         1px  1px 0 #A9A9A9;
         fill: #6D6D6D;
}

.contact-subtitle {
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem;
    color: #bdbdbd;
    margin-top: 0;
    margin-bottom: 100px;
}

.contact-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0px; /* Adjust as needed */
    width: 100%;
    max-width: 1300px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
    color: #fff;
    font-size: 1.35rem;
    margin-top: 130px;
    margin-left: 40px;
    max-width: 420px; /* Make the info block itself wider */
    width: 100%;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    font-family: 'Fira Mono', 'Consolas', 'Courier New', monospace;
    font-size: 1.35rem; /* Bigger text */
}

.contact-info-item i {
    font-size: 1.7rem; /* Bigger icon */
    width: 32px;
    text-align: center;
}

.contact-info-item span {
    letter-spacing: 0.04em; /* Slightly wider letters */
    display: inline-block;
    width: 100%;
    word-break: break-word; /* Ensures long lines wrap */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 520px;      /* Increased from 420px */
    max-width: 650px;      /* Increased from 520px */
    width: 100%;
    margin-left: 300px;
    margin-bottom: 50px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-size: 1.15rem;
    padding: 16px 14px;
    box-sizing: border-box;
}

.contact-form label {
    color: #444;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.contact-form input,
.contact-form textarea {
    font-size: 1.15rem;    /* Bigger text */
    padding: 16px 14px;    /* More padding */
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;     /* Taller textarea */
}

.contact-form button {
    width: 120px;
    padding: 8px 0;
    background: #444;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #222;
}

.screen-blink {
    position: fixed;
    inset: 0;
    background: #000;
    opacity: 0.7;
    z-index: 99998;
    pointer-events: none;
    animation: blink-flash 0.15s linear;
}
@keyframes blink-flash {
    0% { opacity: 0.7; }
    100% { opacity: 0; }
}

@media (max-width: 1600px) and (min-width: 800px) {
            .logo {
            width: 700px;
            height: 405px;
            flex-shrink: 0;
            aspect-ratio: 169/95;
            margin-right: -170px; /* Reduced to bring logo and list closer */
            object-fit: contain;
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
            padding: 0 0 0 40px;
            clip-path: inset(0 0 0 100px);
        }
        .glitch {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            border-radius: 15%;
            pointer-events: none;
            opacity: 0.2;
            clip-path: inset(0 0 0 200px); /* Crops 200px from the left, adjust as needed */
        }
        .menu-list {
            color: var(--Cinza-Claro, #A9A9A9);
            text-align: center;
            font-family: Inter;
            font-size: 32px;
            font-style: normal;
            font-weight: 600;
            line-height: 25px; /* 62.5% */
            list-style: none; /* Remove dots */
            padding: 0 0 0 40px;       /* Remove default padding */
            margin: 0;        /* Remove default margin */
        }
        .menu-list li {
            margin-bottom: 60px; /* Increase for more vertical space */
        }
        .menu-link {
    color: var(--Cinza-Claro, #A9A9A9);
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.2s;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    outline: none;
    z-index: 2;
}

/* Glitch effect on hover */
.menu-link:hover, .menu-link:focus {
    animation: glitch 0.4s linear;
    color: #fff;
}
 
}

/* Responsive: Logo and Menu List */
@media (max-width: 1530px) {
    .logo {
        width: 620px;
        height: auto;
        padding: 0 0 0 80px;
    }
}

@media (max-width: 1390px) and (min-width: 800px) {
    .logo {
        width: 540px;
        height: auto;
        padding: 0 0 0 100px;
    }
    .menu-list {
        font-size: 26px;
        padding: 0 0 0 100px; /* Adjust padding for smaller screens */
        color: var(--Cinza-Claro, #A9A9A9);
        text-align: center;
        font-family: Inter;
        font-style: normal;
        font-weight: 600;
        line-height: 25px; /* 62.5% */
        list-style: none; /* Remove dots */
    }
    .menu-list li {
        margin-bottom: 52px;
        letter-spacing: 1.5px;
    }
    .tv-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;      /* Increase as needed to fill the TV */
    height: 100%;     /* Increase as needed to fill the TV */
    flex-shrink: 0;
    aspect-ratio: 1051/591;
    object-fit: cover;
    border-radius: 20px;
    margin-left: -90px; /* Adjust to center horizontally */
    z-index: 0;  
    clip-path: inset(0 0 0 100px);/* Ensure it's behind the TV frame */
    }
    
}
@media (max-width: 1320px) and (min-width: 800px) {
    .logo {
        width: 440px;
        height: auto;
        padding: 0 0 0 80px;
        margin-right: -170px;
    }
    .menu-list {
        font-size: 26px;
        color: var(--Cinza-Claro, #A9A9A9);
        text-align: center;
        font-family: Inter;
        font-style: normal;
        font-weight: 600;
        line-height: 25px; /* 62.5% */
        list-style: none; /* Remove dots */
        padding-left: 100px;
    }
    .menu-list li {
        margin-bottom: 52px;
        letter-spacing: 1.5px;

    }
}
@media (max-width: 1255px) and (min-width: 800px) {
    .logo {
        width: 440px;
        height: auto;
        padding: 0 0 0 80px;
        margin-right: -170px;
    }
    .menu-list {
        font-size: 22px;
        color: var(--Cinza-Claro, #A9A9A9);
        text-align: center;
        font-family: Inter;
        font-style: normal;
        font-weight: 600;
        line-height: 25px; /* 62.5% */
        list-style: none; /* Remove dots */
        padding-left: 100px;
    }
    .menu-list li {
        margin-bottom: 52px;
        letter-spacing: 1.5px;

    }
}





