/* -- Header container -- */
.header {
    width: 100%;
    /* -- */
    top: 0;
    left: 0;
    z-index: 1000;
    position: fixed;
    /* -- */
    color: var(--text-w);
    background: var(--element-l);
    transition: all 0.3s ease-in-out;
}
header.scrolled {
    color: var(--text-b);
    background: var(--bg);
    box-shadow: var(--shadow-b);
}
header nav a {
    color: var(--text-w);
    transition: color 0.3s ease;
}
header nav a.scrolled-link {
    color: var(--text-b);
}
    .header-container {
        background: inherit;
        transition: var(--transition);
    }
    .header-container.scroled {
        background: var(--bg);
        transition: var(--transition);
    }
        .desktop-header {
            display: flex;
            align-items: center;
            flex-direction: row;
        }
            .logotype {
                font-size: 1rem;
                font-weight: 600;
                line-height: 2rem;
            }
            .nav-list {
                gap: 2rem;
                display: flex;
                align-items: center;
                flex-direction: row;
            }
/* -- Main container -- */
.main {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.main-container {
    margin: 0 auto;
    /* -- */
}
    .description {
        display: flex;
        flex-direction: column;
    }
        .name {
            font-weight: 500;
            line-height: 3rem;
        }
        .text-weight {
        font-weight: 500; 
        }
        .link-text {
            font-weight: 500;
        }
/* -- Footer container -- */
.footer {
    width: 100%;
    padding: 1.5rem 0;
    color: var(--text-w);
    background: var(--element-l);
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}
    .footer-container {
        margin: 0 auto;
        flex-direction: column;
    }
    .desktop-version {
        flex-direction: column;
    }
        .footer-toggle {
            width: 100%;
            padding: 1rem 0;
            border: none;
            outline: none;
            /* -- */
            text-align: left;
            background: none;
            color: var(--text-w);
            font-size: 1.5rem;
            font-weight: 500;
            /* -- */
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
            .footer-menu {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                /* -- */
                gap: 1.5rem;
                display: flex;
                flex-direction: column;
            }
        /* ---- */
        .top-side {
            gap: 4rem;
            display: flex;
            flex-direction: row;
        }
            .footer-list {
                gap: 0.5rem;
                display: flex;
                flex-direction: column;
            }
                .list-name {
                    font-size: 1.5rem;
                }
                    .list-item {
                        margin-left: 0.5rem;
                    }
    /* -- Additional -- */
    .decore-line {
        width: 100%;
        margin: 1.5rem 0;
        height: 0.125rem;
        background: var(--bg);
    }