.inner__slice {
    width: 100%;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    background-repeat: no-repeat;
}

/* PROFILE */
.profile {}

.profile__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5%;
    width: 77%;
    margin: 9em auto 0 auto;
}

.profile__slice{
    top: 0%;
    left: 0%;
    transform: translate(-50%,-50%);
    z-index: -1;
}

.profile__portrait {
    width: 40%;
    height: 100%;
    aspect-ratio: 3/5;
    border: 2px solid var(--text-color);
}

.profile__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile__wrapper {
    width: 50%;
}

.profile__nav-text-box {
    line-height: 1.1;
    padding: 0 0.3em;
    width: fit-content;
    height: fit-content;
    color: var(--background-base);
    font-weight: 300;
    background-color: var(--text-color);
}

.profile__text {
    margin-top: 1em;
    line-height: 1.7;
}

.profile__questionnaire {
    width: 54%;
    margin: 3em auto 0 auto;
}



/* CONTACT */
.contact {}

.contact__inner {
    max-width: 1300px;
    margin: 0 auto;
    width: 77%;
    margin: 9em auto 5em auto;
}

.contact__nav-text-box {
    line-height: 1.1;
    margin: 0 auto 0 0;
    padding: 0 0.3em;
    width: fit-content;
    height: fit-content;
    color: var(--background-base);
    font-weight: 300;
    background-color: var(--text-color);
}

.contact__text {
    margin-top: 1.7em;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .profile__inner {
        width: 90%;
        margin: 7em auto 0em auto;
        flex-direction: column;
    }

    .profile__slice{
        top: 0%;
        left: auto;
        right: 0%;
        transform: translate(0%,-50%);
        z-index: -1;
    }

    .profile__portrait{
        order: 1;
        width: 100%;
        margin-top: 1em;
    }

    .profile__wrapper{
        order: 0;
        width: 100%;
    }

    .profile__questionnaire{
        width: 90%;
        margin-top: 3em;
    }

    /* CONTACT */
    .contact__inner {
        width: 90%;
        margin: 5em auto 5em auto;
    }
}