.main-projects {
    overscroll-behavior: none;
}
.main-projects > div {
    width: 50vw;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: none;
}
.project_infos {
    float: left;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 1rem;
}
.project_images {
    float: right;
}

@media screen and (width < 700px) {
    .main-projects > div {
        width: 100vw;
        float: left;
    }
    .project_infos {
        position: relative;
        margin-top: var(--logoHeight);
    }
}

.project_infos > div > h2 {
    font-size: var(--font-size-60);
    font-weight: inherit;
    margin-left: -0.3rem;
    margin-block: 1rem;
    line-height: 98%;
}

.tabs-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.tabs-nav li a {
    color: inherit;
    text-decoration: none;
}

.tabs-nav a.tab-active {
    font-family: "HAL-Medium";
}

.project_images img {
    width: 100%;
}

#tab-2 {
    columns: 2;
}
@media screen and (width < 700px) {
    #tab-2 {
        columns: 1;
    }
}

.tabs-stage {
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: var(--font-size-16);
}