@media screen and (min-width: 1024px) {
    .loader{
        font-family: 'Dune';
        font-size: 120px;
    }

    .hamburger {
        display: none;
    }
    .main-menu-items {
        display: flex;
        gap: 20px;
        margin-left: 20px;
    }
    .main-menu-items .menu-item {
        opacity: 1;
        transform: none;
        margin: 0;
    }
    .main-menu-items .menu-item a {
        font-size: 16px;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
    }
    
    .nav-item a{
        color: #ffffff;
        font-weight: 750;
        text-decoration: none;
        margin-left: 20px;
        margin-right: 20px;
    }

    .about-imgs img{
        max-width: 325px;
        border-radius: 75%;
    }

    .box {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .box.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .cosmic-search-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .cosmic-search-box {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .contact-form {
        height: 800px;
        width: 95%;
    }
}

