@media screen and (max-width: 1025px) {
    .opening {
        display: flex;
        flex-direction: column;
        overflow: auto;
        gap: 80px;
        padding: 100px 20px 80px;
        justify-content: flex-start;
        overflow-x: hidden;
    }

    .header-logo-mobile {
        position: absolute;
        top: 20px;
        left: 20px;
        height: 36px;
        object-fit: initial;
        background-image: url(../images/dist/logo.svg);
        background-position: left;
        background-repeat: no-repeat;
        background-size: contain;
        width: 100%;
    }

    .title-h1.opening-title.show-opening-title {
        font-size:36px;
        line-height: 42px;
        width: 100%;
    }

    .opening-pics {
        background-size: contain;
        background-position: center;
    }

    .opening-pics-top {
        scale: 0.7;
    }

    .opening-pics-bottom {
        scale: 0.7;
    }

    .header-links {
        flex-direction: column;
        gap: 32px;
    }

    .header {
        position: fixed;
        padding: 10px 20px;
        top: 0;
        height: 70px;
        border-radius: 0 0 30px;
        background-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .opening-pics-logo.show-opening-photo-pics {
        height: 40px;
    }

    .header-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 85vw;
        height: 100vh;
        background:white;
        z-index: 100;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding: 80px 20px 20px;
        align-items: flex-start;
        justify-content: flex-start;

    }

    .header-links-link {
        font-size: 24px !important;
    }

    .header-links.menu-open {
        transform: translateX(0);
    }

    .menu-close-btn {
        position: absolute;
        top: 20px;
        right: 10px;
        height: 40px;
        width: 40px;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 101;
    }

    .menu-close-btn svg {
        height: 40px;
        width: 40px;
    }

    .header-links-button.show-header-link-button {
        margin-left: 0;
    }

    .header-links-button.show-header-link-button .desc-1 {
        font-size: 24px;
    }

    .header-links-button.show-header-link-button svg {
        display: none;
    }

    .button-menu svg {
        height: 40px;
        width: 40px;
    }

    .header.scrolled {
        border-radius: 0 0 30px;
        background-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    .line{
        height: 1px;
        background: black;
        width: 100%;
        margin: 0;
        padding: 0;
    }

}

@media screen and (min-width: 1025px) {
    .line,
    .header-logo-mobile,
    .button-menu,
    .menu-close-btn {
        display: none !important;
    }

}
