.main-content {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

.section-link {
    text-decoration: none;
    color: #888;
}

.menu {
    display: flex;
    width: auto;

    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin-left: 15%;
}

.menu.animated {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu {
    display: none;
}

.header-button-underline-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 23%;
    height: auto;
}


.header-button.active .header-button-underline-container {
    display: block;
}

.header-button-underline {
    height: 2px;
    color: white;
    background: linear-gradient(to right, rgb(124, 75, 250), rgb(255, 67, 135));
}

.header-buttons {
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    text-align: center;
}

.header-buttons button.active {
    background: linear-gradient(to right, #7e4eff, #ff4185);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-button {
    border: none;
    padding: 10px 20px;
    background-color: transparent;
    color: #888;
    cursor: pointer;
    font-size: 1.5vw;
    position: relative;
}


@media (max-width: 970px) {
    .menu {
        display: none !important;
    }

    .main-title {
        padding-bottom: 10%;
    }

    .mobile-menu {
        display: block;
        position: absolute;
        top: 2%;
        right: 10.5%;
        z-index: 1000;
    }
}

.first-section {
    overflow: hidden;
    position: relative;
    padding-bottom: 1vw;
}

.image-wrapper {
    position: absolute;
    width: 100%;
    height: auto;
}

.background-image {
    width: 100% !important;
    object-fit: contain;
    height: auto !important;
    display: block;
    max-height: none !important;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
}

.development-bg {
    mask-image: linear-gradient(to top,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 20%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 20%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0) 100%);
    width: 50% !important;
    height: 100% !important;
    z-index: 0;
    object-fit: cover;
    max-height: none !important;
}

.development-bg-wrapper {
    position: absolute;
    width: 100%;
    overflow: hidden;
}

.development-bg-container {
    width: 200%;
    height: 100%;
}

.main-title {
    margin-top: 10%;
    margin-bottom: 10%;
    display: flex;
    flex-direction: column;
    text-align: left;
    width: auto;
    font-family: 'Optika';
}

.title-span {
    font-size: 8vw;
    color: white;
    text-align: left;
    display: block;
    width: 70%;
    font-weight: bold;
    opacity: 0;
    animation: slideIn 0.8s ease-in-out forwards;
}

.subtitle-delay {
    animation-delay: 0.4s;
}

@keyframes slideIn {
    from {
        transform: translateX(-100vw);
        filter: blur(10px);
    }

    to {
        transform: translateX(0);
        filter: blur(0);
        opacity: 1;
    }
}

.title-hint {
    font-size: 3vw;
    color: white;
    text-align: left;
    display: block;
    width: 70%;
    animation: slideDown 0.8s ease-in-out forwards;
    opacity: 0;
    animation-delay: 1s;
}

@keyframes slideDown {
    from {
        transform: translateY(-10vh);
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-content img {
    max-width: 100%;
    height: auto;
    max-height: 800px;
    width: auto;
}

.main-content .container {
    position: relative;
}

.main-content .container>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-content p {
    color: #fff;
    font-size: 24px;
}

.main-content .talk-to-us {
    margin-right: 20%;
}


.down-button {
    background-color: transparent;
    border: transparent;
    cursor: pointer;
}

.arvr {
    width: 100%;
    margin-top: 40%;
    position: relative;
}

.mid-section {
    background-image: url("/assets/spaceship.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    top: 0;
    position: relative;
}

.final-section {
    background-image: url("/assets/tunel.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    top: 0;
    position: relative;
}