@media screen and (max-width:1350px) {
    .nav-links {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .nav-links {
        background-color: #000;
        height: 100vh;
        z-index: 10;
    }
}

@media screen and (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }

    .nav-right {
        display: none;
    }

    .nav-item img,.dropdown-menu{
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -1000px;
        width: 100vw;
        height: 100vh;
        background: #000;
        padding-top: 80px;
        transition: left 0.4s ease;
        z-index: 1500;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-left: 30px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-toggle span {
        width: 15px;
    }

    .revolution-content-wrapper,
    .launch-content-wrapper,
    .internet-content-wrapper {
        padding: 0 40px;
    }
}


/* max-width: 768px */
@media screen and (min-width:600px),
(max-width: 959.98px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .hero-text-container,
    .mars-content,
    .revolution-content-wrapper,
    .launch-content-wrapper,
    .advancing-human-section,
    .internet-content-wrapper {
        padding: 0 24px 60px 24px !important;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .launch-content {
        position: relative;
        bottom: 0;
        max-width: 100%;
    }

    .revolution-content {
        left: 0;
        max-width: 100%;
    }

    .hero-content-section {
        height: 100vh;
        margin-top: -100vh;
        padding-bottom: 60px;
    }

    .hero-title,
    .mars-title,
    .revolution-title,
    .launch-title,
    .internet-title {
        font-size: 32px !important;
        margin-bottom: 20px;
    }

    .hero-date {
        font-size: 14px;
    }

    .mars-description,
    .revolution-description,
    .launch-description,
    .section-desc,
    .internet-description {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .footer-links {
        flex-direction: row;
        gap: 10px;
        text-align: center;
        font-size: 10px;
    }

    .footer-links li a {
        display: block;
        padding: 5px;
    }

}

@media screen and (max-width:600px) {
    .footer-container {
        flex-direction: column !important;
        text-align: center;
        gap: 25px;
        padding: 10px 10px;
    }

    .footer-left {
        order: 10;
    }
}

/* (max-width: 480px) */
@media screen and (max-width: 480px) {
    .navbar {
        height: 60px;
    }

    .logo img {
        width: 110px;
    }

    .nav-time {
        padding: 0 15px;
    }

    .video-overlay,
    .mars-overlay,
    .revolution-overlay,
    .launch-overlay,
    .internet-overlay {
        background: rgba(0, 0, 0, 0.45);
    }

    .hero-title,
    .mars-title,
    .revolution-title,
    .launch-title,
    .internet-title {
        font-size: 28px !important;
    }

    .bg-video,
    .mars-bg-video,
    .launch-bg-video,
    .internet-bg-video {
        object-position: center;
    }

    .primary-button {
        padding: 10px;
    }

    .mars-content .primary-button {
        width: 150px;
        padding: 10px;
    }
}

@media screen and (max-height: 500px) and (orientation: landscape) {

    .hero-content-section,
    .mars-section,
    .revolution-section,
    .launch-service-section,
    .advancing-human-section,
    .internet-section {
        min-height: 120vh;
    }

    .navbar {
        position: absolute;
    }
}