@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    background-color: var(--dark-theme);
}

:root {
    --white: #FFFFFF;
    --text-color: #333;
    --dark-theme: #151515;
    --light-purple: #CCBEDF;
    --dark-purple: #575161;
    --medium-purple: #807391;
    --purple: #2B2632;
}

p {
    color: #151515
}

.container-pc {
    min-height: 100vh;
    width: 100vw;
    display: flex;
}

.container-mobile {
    display: none;
    min-height: 100vh;
    width: 100vw;
}

.pt,
.pt-form,
.toggle-pt {
    display: flex;

}

.eng,
.eng-form,
.toggle-eng {
    display: none;
}


/*----------------- FIRST TAB -----------------*/

.first-tab {
    background-color: var(--medium-purple);
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 29.25rem;
    height: 100vh;
    z-index: 1000;
    border-radius: 0 20px 20px 0;
}

.first-tab-back {
    width: 28rem;
    height: 100%;
    background-color: transparent;
}

.first-top {
    margin: 3rem;
    display: flex;
    align-items: center;
}

.language-change {
    width: 3.6rem;
    height: 3.6rem;
    background-image: url("/images/IconWindows.png");
    background-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    transform: scale(1);
    cursor: pointer;
}

.language-change:hover {
    transform: scale(1.1);
}

.language-change button {
    font-size: 1rem;
    font-weight: 800;
    color: var(--medium-purple);
    margin-top: 1.3rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/* https://uiverse.io/alexruix/splendid-liger-23 */
/* The switch - the box around the slider */
.switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 2em;
    margin-left: auto;
    transform: scale(1);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.switch:hover {
    transform: scale(1.05);
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--purple);
    transition: .5s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.4em;
    width: 1.4em;
    border-radius: 50%;
    left: 10%;
    bottom: 15%;
    box-shadow: inset 8px -4px 0px 0px var(--light-purple);
    background: var(--purple);
    transition: .5s;
}

input:checked+.slider {
    background-color: var(--purple);
}

input:checked+.slider:before {
    transform: translateX(100%);
    box-shadow: inset 15px -4px 0px 15px var(--light-purple);
}

.first-bottom {
    margin-top: auto;
    padding: 2rem;
}

.form-tab {
    display: flex;
    margin: 3rem;
    flex-direction: column;
    margin-bottom: auto;
}

.form-tab h3 {
    font-size: 16px;
    color: var(--white);
}

#form {
    flex-direction: column;
    gap: 0.5rem;
}

#form input,
textarea {
    background-color: var(--white);
    border-bottom: 2px solid var(--light-purple);
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    border-left: 2px solid transparent;
    border-radius: 5px 5px 0 0;
    box-shadow: none;
    outline: none;
}

#form input {
    height: 1.8rem;
    padding: 0 0.5rem;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: var(--dark-theme);
}

#form textarea {
    resize: none;
    height: 8.4rem;
    padding: 0.3rem 0.5rem;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: var(--light-purple);
}

#form input::placeholder,
textarea::placeholder {
    color: var(--light-purple);
}

#form button {
    width: 4.9rem;
    height: 1.8rem;
    border-radius: 5px;
    border: transparent;
    background-color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--medium-purple);
    margin-left: auto;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

#form button:hover {
    background-color: var(--purple);
    color: var(--white);
    transform: scale(1.05);

}

.copyright {
    display: flex;
    justify-content: center;
}

.copyright p {
    font-size: 12px;
    color: var(--white);
}

/*----------------- SECOND TAB -----------------*/

.second-tab {
    background-color: var(--dark-theme);
    width: 66rem;
    height: auto;
    border-right: 2px solid var(--dark-purple);

}

.banner {
    width: 100%;
    height: 16.3rem;
    background-color: var(--light-purple);
    position: relative;
    display: flex;
    justify-content: start;
    align-items: flex-end;
    background-image: url("/images/banner.png");
    background-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pfp {
    width: 22.25rem;
    height: 22.25rem;
    margin: 0 3rem;
    position: absolute;
    bottom: -60%;
    left: 1rem;
}

.pfp img {
    width: 100%;
    height: 100%;
}

.under-banner {
    width: 100%;
    height: 6.3rem;
}

.description {
    margin: 0 0 0 7rem;
    width: 80%;
}

.description p {
    font-size: 0.9rem;
    text-align: justify;
    hyphens: auto;
}

.description h1 {
    font-size: 1.5rem;

}

.description-links {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.work-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-left: auto;
}

.description-links a,
i,
p,
h1 {
    color: white;
    text-decoration: none;

}

.description-links p,
i,
a {
    font-size: 0.8rem;
    cursor: pointer;
}

.cv {
    display: flex;
    flex-direction: row;
}

.cv a {
    font-weight: 600;
    transform: scale(1);
    text-decoration: underline;
}

.work-links p {
    font-weight: 600;
    transform: scale(1);
}

.cv a:hover,
.work-links p:hover {
    transform: scale(1.1);
}

.menu {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    border-bottom: 0.125rem solid var(--dark-purple);
}

.box {
    width: 5rem;
    height: auto;
}

.box,
.menu p {
    margin-bottom: auto;
}

.menu p {
    cursor: pointer;
    padding: 0.5rem;
    font-weight: 700;
    z-index: 2;
    margin-bottom: -0.125rem;
}

.menu a {
    text-decoration: none;
}

.team {
    color: var(--light-purple);
    box-shadow: inset 0 -0.125rem 0 0 var(--light-purple);

}

.port,
.about {
    color: var(--dark-purple);
    transform: scale(1);

}

.menu .port:hover,
.about:hover {
    transform: scale(1.1);
}

/*----------------- SECOND TAB POSTS -----------------*/

.content {
    display: flex;
    flex-direction: column;
    width: 75%;
    margin: 0 0 0 5rem;
    padding: 2rem;
    gap: 0.65rem;
}

.title-box {
    width: 100%;
    display: flex;
    padding: 0 0 0 4rem;
    margin-left: auto;
    background-color: transparent;
    border-bottom: solid 0.125rem var(--medium-purple);
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    font-size: 0.6rem;
}

.content-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 1rem 1rem 1rem 0;
    border-radius: 0.625rem;
    gap: 3rem;
}

.member {
    width: 7rem;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: var(--light-purple) 0.2rem 0.2rem;
}

.member h3 {
    color: var(--light-purple);
    font-size: 0.8rem;
    margin: 0;
    margin: 1rem 0 0 0;
    text-align: center;
}

/*----------------- THIRD TAB -----------------*/

.third-tab {
    background-color: var(--dark-theme);
    width: 28.125rem;
    height: 100%;
    right: 0;
    z-index: 1000;
    padding: 4rem 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.third-box {
    width: 17.4rem;
    height: auto;
    padding: 1rem 2rem;
    background-color: var(--purple);
    border-radius: 20px;
    box-shadow: var(--medium-purple) 0.5rem 0.5rem;
}

.third-box h3 {
    color: var(--white);
    font-size: 16px;
}

.third-box p {
    font-size: 0.8rem;
}

.box-content img {
    width: 16.4rem;
    height: auto;
    margin: 0;
}


/*------------------- MOBILE -------------------*/

@media only screen and (max-width: 480px) and (orientation: portrait) {
    .container-mobile {
        display: flex;
    }

    .container-pc {
        display: none;
    }

    nav {
        width: 95%;
        padding: 0.2rem 2rem 0 2rem;
        height: 4rem;
        display: flex;
        align-items: center;
        position: fixed;
        background-color: var(--medium-purple);
        z-index: 1000;
    }

    .description-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-links {
        gap: 1.5rem;
        margin-left: 0.2rem;
    }


    .on-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-size: 2rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .menu-toggle i {
        font-size: 2rem;
    }

    .off-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        display: none;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem 1rem 2rem;
        z-index: 1000;
        box-sizing: border-box;
    }

    .off-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .mobile-top {
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
        align-items: center;
        width: 10rem;
        height: 2rem;
        margin-left: auto;
        transform: scale(1);
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .language-change button {
        font-size: 0.8rem;
        font-weight: 800;
        color: var(--medium-purple);
        margin-top: 1.3rem;
        background-color: transparent;
        border: none;
    }

    .mobile-menu {
        display: none;
        width: 100%;
        padding: 5rem 0 2rem 0;
        max-height: 100vh;
        background-color: var(--purple);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .profile-mobile {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .top-profile-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner {
        height: 13rem;
    }

    .pfp {
        width: 12rem;
        height: 12rem;
        bottom: -35%;
        margin: 0 1rem;
    }

    .under-banner {
        height: 3rem;
    }

    .description {
        margin: 0;
    }

    .box {
        width: 0.8rem;
    }

    .project-profile {
        width: 20%;
    }

    .mobile-team {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content {
        margin: 0 0 0 0.2rem;
        width: 80%;
    }

    .content-box {
        gap: 3rem 2rem;
    }

    .member {
        width: 5.7rem;
    }

    .boxes-mobile {
        width: 80%;
    }

    .third-box {
        width: 100%;
        margin: 0 0 0 0;
        background-color: transparent;
        box-shadow: transparent 0.2rem 0.2rem;
        padding: 1rem 0;
    }

    .box-content img {
        width: 14rem;
    }

    .skills {
        width: 4.5rem;
    }
}

@media only screen and (max-width: 480px) and (orientation: landscape) {
    .container-mobile {
        display: flex;
    }

    .container-pc {
        display: none;
    }

    nav {
        width: 95%;
        padding: 0.2rem 2rem 0 2rem;
        height: 4rem;
        display: flex;
        align-items: center;
        position: fixed;
        background-color: var(--medium-purple);
        z-index: 1000;
    }

    .description-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-links {
        gap: 1.5rem;
        margin-left: 0.2rem;
    }


    .on-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-size: 2rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .menu-toggle i {
        font-size: 2rem;
    }

    .off-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        display: none;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem 1rem 2rem;
        z-index: 1000;
        box-sizing: border-box;
    }

    .off-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .mobile-top {
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
        align-items: center;
        width: 10rem;
        height: 2rem;
        margin-left: auto;
        transform: scale(1);
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .language-change button {
        font-size: 0.8rem;
        font-weight: 800;
        color: var(--medium-purple);
        margin-top: 1.3rem;
        background-color: transparent;
        border: none;
    }

    .mobile-menu {
        display: none;
        width: 100%;
        padding: 5rem 0 2rem 0;
        max-height: 100vh;
        background-color: var(--purple);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .profile-mobile {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .banner {
        height: 13rem;
    }

    .pfp {
        width: 12rem;
        height: 12rem;
        bottom: -35%;
        margin: 0 1rem;
    }

    .under-banner {
        height: 3rem;
    }

    .description {
        margin: 0 0 0 2rem;
    }

    .box {
        width: 0.2rem;
    }

    .project-profile {
        width: 20%;
    }

    .content {
        margin: 0 0 0 0.2rem;
        width: 80%;
    }

    .content-box {
        gap: 3rem 2rem;
    }

    .member {
        width: 5rem;
    }

    .third-box {
        width: 80%;
        margin: 0 0 0 2rem;
        background-color: transparent;
        box-shadow: transparent 0.2rem 0.2rem;
        padding: 1rem 0;
    }

    .skills {
        width: 4.5rem;
    }

}

@media only screen and (min-width: 480px) and (orientation: portrait) {
    .container-mobile {
        display: flex;
    }

    .container-pc {
        display: none;
    }

    nav {
        width: 95%;
        padding: 0.2rem 2rem 0 2rem;
        height: 4rem;
        display: flex;
        align-items: center;
        position: fixed;
        background-color: var(--medium-purple);
        z-index: 1000;
    }

    .description-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-links {
        gap: 1.5rem;
        margin-left: 0.2rem;
    }


    .on-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-size: 2rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .menu-toggle i {
        font-size: 2rem;
    }

    .off-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        display: none;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem 1rem 2rem;
        z-index: 1000;
        box-sizing: border-box;
    }

    .off-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .mobile-top {
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
        align-items: center;
        width: 10rem;
        height: 2rem;
        margin-left: auto;
        transform: scale(1);
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .language-change button {
        font-size: 0.8rem;
        font-weight: 800;
        color: var(--medium-purple);
        margin-top: 1.3rem;
        background-color: transparent;
        border: none;
    }

    .mobile-menu {
        display: none;
        width: 100%;
        padding: 5rem 0 2rem 0;
        max-height: 100vh;
        background-color: var(--purple);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .profile-mobile {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .banner {
        height: 15rem;
    }

    .pfp {
        width: 12rem;
        height: 12rem;
        bottom: -35%;
        margin: 0 2rem;
    }

    .under-banner {
        height: 4rem;
    }

    .description {
        margin: 0 0 0 3rem;
    }

    .box {
        width: 1rem;
    }

    .project-profile {
        width: 20%;
    }

    .content {
        margin: 0 0 0 1rem;
        width: 80%;
    }

    .content-box {
        gap: 3rem 2rem;
    }

    .member {
        width: 6rem;
    }

    .third-box {
        width: 80%;
        margin: 0 0 0 3rem;
        background-color: transparent;
        box-shadow: transparent 0.2rem 0.2rem;
        padding: 1rem 0;
    }

    .skills {
        width: 5rem;
    }
}

@media only screen and (min-width: 480px) and (orientation: landscape) {
    .container-mobile {
        display: flex;
    }

    .container-pc {
        display: none;
    }

    nav {
        width: 95%;
        padding: 0.2rem 2rem 0 2rem;
        height: 4rem;
        display: flex;
        align-items: center;
        position: fixed;
        background-color: var(--medium-purple);
        z-index: 1000;
    }

    .description-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-links {
        gap: 1.5rem;
        margin-left: 0.2rem;
    }


    .on-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-size: 2rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .menu-toggle i {
        font-size: 2rem;
    }

    .off-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        display: none;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem 1rem 2rem;
        z-index: 1000;
        box-sizing: border-box;
    }

    .off-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .mobile-top {
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
        align-items: center;
        width: 10rem;
        height: 2rem;
        margin-left: auto;
        transform: scale(1);
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .language-change button {
        font-size: 0.8rem;
        font-weight: 800;
        color: var(--medium-purple);
        margin-top: 1.3rem;
        background-color: transparent;
        border: none;
    }

    .mobile-menu {
        display: none;
        width: 100%;
        padding: 5rem 0 2rem 0;
        max-height: 100vh;
        background-color: var(--purple);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .profile-mobile {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .banner {
        height: 15rem;
    }

    .pfp {
        width: 12rem;
        height: 12rem;
        bottom: -35%;
        margin: 0 2rem;
    }

    .under-banner {
        height: 4rem;
    }

    .description {
        margin: 0 0 0 3rem;
    }

    .box {
        width: 1rem;
    }

    .project-profile {
        width: 20%;
    }

    .content {
        margin: 0 0 0 1rem;
    }

    .content {
        margin: 0 0 0 1rem;
        width: 80%;
    }

    .content-box {
        gap: 3rem 2rem;
    }

    .member {
        width: 6rem;
    }

    .third-box {
        width: 80%;
        margin: 0 0 0 3rem;
        background-color: transparent;
        box-shadow: transparent 0.2rem 0.2rem;
        padding: 1rem 0;
    }

    .skills {
        width: 5rem;
    }



}

@media only screen and (min-width: 600px) and (orientation: portrait) {
    .container-mobile {
        display: flex;
    }

    .container-pc {
        display: none;
    }

    nav {
        width: 95%;
        padding: 0.2rem 2rem 0 2rem;
        height: 4rem;
        display: flex;
        align-items: center;
        position: fixed;
        background-color: var(--medium-purple);
        z-index: 1000;
    }

    .description-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-links {
        gap: 1.5rem;
        margin-left: 0.2rem;
    }


    .on-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-size: 2rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .menu-toggle i {
        font-size: 2rem;
    }

    .off-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        display: none;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem 1rem 2rem;
        z-index: 1000;
        box-sizing: border-box;
    }

    .off-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .mobile-top {
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
        align-items: center;
        width: 10rem;
        height: 2rem;
        margin-left: auto;
        transform: scale(1);
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .language-change button {
        font-size: 0.8rem;
        font-weight: 800;
        color: var(--medium-purple);
        margin-top: 1.3rem;
        background-color: transparent;
        border: none;
    }

    .mobile-menu {
        display: none;
        width: 100%;
        padding: 5rem 0 2rem 0;
        max-height: 100vh;
        background-color: var(--purple);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .project-profile {
        width: 10%;
    }

    .profile-mobile {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .pfp {
        width: 17rem;
        height: 17rem;
        bottom: -50%;
        margin: 0 2rem;
    }

    .under-banner {
        height: 6.3rem;
    }

    .description {
        margin: 0 0 0 4rem;
    }

    .box {
        width: 2rem;
    }

    .project-profile {
        width: 20%;
    }

    .content {
        margin: 0 0 0 2rem;
    }

    .member {
        width: 7rem;
    }

    .third-box {
        width: 80%;
        margin: 0 0 0 4rem;
        background-color: transparent;
        box-shadow: transparent 0.2rem 0.2rem;
        padding: 1rem 0;
    }

    .skills {
        width: 5rem;
    }
}

@media only screen and (min-width: 600px) and (orientation: landscape) {
    .container-mobile {
        display: flex;
    }

    .container-pc {
        display: none;
    }

    nav {
        width: 95%;
        padding: 0.2rem 2rem 0 2rem;
        height: 4rem;
        display: flex;
        align-items: center;
        position: fixed;
        background-color: var(--medium-purple);
        z-index: 1000;
    }

    .description-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-links {
        gap: 1.5rem;
        margin-left: 0.2rem;
    }


    .on-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-size: 2rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .menu-toggle i {
        font-size: 2rem;
    }

    .off-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        display: none;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem 1rem 2rem;
        z-index: 1000;
        box-sizing: border-box;
    }

    .off-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .mobile-top {
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
        align-items: center;
        width: 10rem;
        height: 2rem;
        margin-left: auto;
        transform: scale(1);
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .language-change button {
        font-size: 0.8rem;
        font-weight: 800;
        color: var(--medium-purple);
        margin-top: 1.3rem;
        background-color: transparent;
        border: none;
    }

    .mobile-menu {
        display: none;
        width: 100%;
        padding: 5rem 0 2rem 0;
        max-height: 100vh;
        background-color: var(--purple);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .profile-mobile {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .pfp {
        width: 17rem;
        height: 17rem;
        bottom: -50%;
        margin: 0 2rem;
    }

    .description {
        margin: 0 0 0 4rem;
    }

    .box {
        width: 2rem;
    }

    .project-profile {
        width: 20%;
    }

    .content {
        margin: 0 0 0 2rem;
    }

    .member {
        width: 7rem;
    }

    .third-box {
        width: 80%;
        margin: 0 0 0 4rem;
        background-color: transparent;
        box-shadow: transparent 0.2rem 0.2rem;
        padding: 1rem 0;
    }

    .skills {
        width: 5rem;
    }
}

@media only screen and (min-width: 768px) and (orientation: portrait) {
    .container-mobile {
        display: flex;
    }

    .container-pc {
        display: none;
    }

    nav {
        width: 95%;
        padding: 0.2rem 2rem 0 2rem;
        height: 4rem;
        display: flex;
        align-items: center;
        position: fixed;
        background-color: var(--medium-purple);
        z-index: 1000;
    }

    .description-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-links {
        gap: 1.5rem;
        margin-left: 0.2rem;
    }


    .on-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-size: 2rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .menu-toggle i {
        font-size: 2rem;
    }

    .off-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        display: none;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem 1rem 2rem;
        z-index: 1000;
        box-sizing: border-box;
    }

    .off-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .mobile-top {
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
        align-items: center;
        width: 10rem;
        height: 2rem;
        margin-left: auto;
        transform: scale(1);
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .language-change button {
        font-size: 0.8rem;
        font-weight: 800;
        color: var(--medium-purple);
        margin-top: 1.3rem;
        background-color: transparent;
        border: none;
    }

    .mobile-menu {
        display: none;
        width: 100%;
        padding: 5rem 0 2rem 0;
        max-height: 100vh;
        background-color: var(--purple);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .profile-mobile {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .pfp {
        width: 20rem;
        height: 20rem;
        bottom: -50%;
        margin: 0 2rem;
    }

    .description {
        margin: 0 0 0 5rem;
    }

    .box {
        width: 3rem;
    }

    .content {
        margin: 0 0 0 3rem;
    }

    .third-box {
        width: 80%;
        margin: 0 0 0 5rem;
        background-color: transparent;
        box-shadow: transparent 0.2rem 0.2rem;
        padding: 1rem 0;
    }

    .skills {
        width: 6rem;
    }
}

@media only screen and (min-width: 768px) and (orientation: landscape) {
    .container-mobile {
        display: flex;
    }

    .container-pc {
        display: none;
    }

    nav {
        width: 95%;
        padding: 0.2rem 2rem 0 2rem;
        height: 4rem;
        display: flex;
        align-items: center;
        position: fixed;
        background-color: var(--medium-purple);
        z-index: 1000;
    }

    .description-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-links {
        gap: 1.5rem;
        margin-left: 0.2rem;
    }


    .on-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-size: 2rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .menu-toggle i {
        font-size: 2rem;
    }

    .off-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        display: none;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem 1rem 2rem;
        z-index: 1000;
        box-sizing: border-box;
    }

    .off-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .mobile-top {
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
        align-items: center;
        width: 10rem;
        height: 2rem;
        margin-left: auto;
        transform: scale(1);
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .language-change button {
        font-size: 0.8rem;
        font-weight: 800;
        color: var(--medium-purple);
        margin-top: 1.3rem;
        background-color: transparent;
        border: none;
    }

    .mobile-menu {
        display: none;
        width: 100%;
        padding: 5rem 0 2rem 0;
        max-height: 100vh;
        background-color: var(--purple);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .profile-mobile {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .pfp {
        width: 20rem;
        height: 20rem;
        bottom: -50%;
        margin: 0 2rem;
    }

    .description {
        margin: 0 0 0 5rem;
    }

    .box {
        width: 3rem;
    }

    .content {
        margin: 0 0 0 3rem;
    }

    .third-box {
        width: 80%;
        margin: 0 0 0 5rem;
        background-color: transparent;
        box-shadow: transparent 0.2rem 0.2rem;
        padding: 1rem 0;
    }

    .skills {
        width: 6rem;
    }
}

@media only screen and (min-width: 992px) and (orientation: portrait) {
    .container-mobile {
        display: flex;
    }

    .container-pc {
        display: none;
    }

    nav {
        width: 95%;
        padding: 0.2rem 2rem 0 2rem;
        height: 4rem;
        display: flex;
        align-items: center;
        position: fixed;
        background-color: var(--medium-purple);
        z-index: 1000;
    }

    .description-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-links {
        gap: 1.5rem;
        margin-left: 0.2rem;
    }


    .on-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-size: 2rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .menu-toggle i {
        font-size: 2rem;
    }

    .off-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        display: none;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem 1rem 2rem;
        z-index: 1000;
        box-sizing: border-box;
    }

    .off-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .mobile-top {
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
        align-items: center;
        width: 10rem;
        height: 2rem;
        margin-left: auto;
        transform: scale(1);
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .language-change button {
        font-size: 0.8rem;
        font-weight: 800;
        color: var(--medium-purple);
        margin-top: 1.3rem;
        background-color: transparent;
        border: none;
    }

    .mobile-menu {
        display: none;
        width: 100%;
        padding: 5rem 0 2rem 0;
        max-height: 100vh;
        background-color: var(--purple);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .profile-mobile {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .pfp {
        width: 20rem;
        height: 20rem;
        bottom: -50%;
    }

    .description {
        margin: 0 0 0 6rem;
    }

    .box {
        width: 4rem;
    }

    .content {
        margin: 0 0 0 4rem;
    }

    .third-box {
        width: 80%;
        margin: 0 0 0 6rem;
        background-color: transparent;
        box-shadow: transparent 0.2rem 0.2rem;
        padding: 1rem 0;
    }

    .skills {
        width: 6rem;
    }
}

@media only screen and (min-width: 992px) and (orientation: landscape) {
    .container-mobile {
        display: flex;
    }

    .container-pc {
        display: none;
    }

    nav {
        width: 95%;
        padding: 0.2rem 2rem 0 2rem;
        height: 4rem;
        display: flex;
        align-items: center;
        position: fixed;
        background-color: var(--medium-purple);
        z-index: 1000;
    }

    .description-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-links {
        gap: 1.5rem;
        margin-left: 0.2rem;
    }


    .on-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-size: 2rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .menu-toggle i {
        font-size: 2rem;
    }

    .off-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        display: none;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem 1rem 2rem;
        z-index: 1000;
        box-sizing: border-box;
    }

    .off-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 1.6rem;
        font-weight: 800;
        color: var(--medium-purple);
        background-color: transparent;
        border: none;
    }

    .mobile-top {
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
        align-items: center;
        width: 10rem;
        height: 2rem;
        margin-left: auto;
        transform: scale(1);
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .language-change button {
        font-size: 0.8rem;
        font-weight: 800;
        color: var(--medium-purple);
        margin-top: 1.3rem;
        background-color: transparent;
        border: none;
    }

    .mobile-menu {
        display: none;
        width: 100%;
        padding: 5rem 0 2rem 0;
        height: 100vh;
        background-color: var(--purple);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .profile-mobile {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .pfp {
        width: 20rem;
        height: 20rem;
        bottom: -50%;
    }

    .description {
        margin: 0 0 0 6rem;
    }

    .box {
        width: 4rem;
    }

    .content {
        margin: 0 0 0 4rem;
    }

    .third-box {
        width: 80%;
        margin: 0 0 0 6rem;
        background-color: transparent;
        box-shadow: transparent 0.2rem 0.2rem;
        padding: 1rem 0;
    }

    .skills {
        width: 6rem;
    }
}

/*------------------- pc -------------------*/

@media only screen and (min-width: 1024px) and (orientation: portrait) {

    .container-pc {
        display: flex;
    }

    .container-mobile {
        display: none;
    }

    .first-tab {
        width: 15rem;
    }

    .form-tab {
        margin: 1rem;
    }

    .first-tab-back {
        max-width: 15%;
    }

    .second-tab {
        width: 65%;
    }

    .pfp {
        width: 20rem;
        height: 20rem;
        margin: 0 4rem;
        bottom: -55%;
    }

    .under-banner {
        height: 6.3rem;
    }

    .third-tab {
        width: 20%;
    }

    .third-box {
        width: 6rem;
        margin: 0 0 0 6rem;
        background-color: var(--purple);
        box-shadow: var(--medium-purple) 0.5rem 0.5rem;
        padding: 1rem 2rem;
        margin: 0;
    }

    .load-box {
        justify-content: center;
    }

    .box-content img {
        width: 7rem;
    }

}

@media only screen and (min-width: 1024px) and (orientation: landscape) {
    .container-pc {
        display: flex;
    }

    .container-mobile {
        display: none;
    }

    .first-tab {
        width: 15rem;
    }

    .form-tab {
        margin: 1rem;
    }

    .first-tab-back {
        max-width: 15%;
    }

    .second-tab {
        width: 65%;
    }

    .pfp {
        width: 20rem;
        height: 20rem;
        margin: 0 4rem;
        bottom: -55%;
    }

    .under-banner {
        height: 6.3rem;
    }

    .third-tab {
        width: 20%;
    }

    .third-box {
        width: 6rem;
        margin: 0 0 0 6rem;
        background-color: var(--purple);
        box-shadow: var(--medium-purple) 0.5rem 0.5rem;
        padding: 1rem 2rem;
        margin: 0;
    }

    .load-box {
        justify-content: center;
    }

    .box-content img {
        width: 7rem;
    }
}

@media only screen and (min-width: 1200px) and (orientation: portrait) {
    .container-pc {
        display: flex;
    }

    .container-mobile {
        display: none;
    }

    .first-tab {
        width: 20rem;
    }

    .form-tab {
        margin: 1rem;
    }

    .first-tab-back {
        max-width: 20%;
    }

    .second-tab {
        width: 60%;
    }

    .pfp {
        width: 20rem;
        height: 20rem;
        margin: 0 4rem;
        bottom: -55%;
    }

    .under-banner {
        height: 6.3rem;
    }

    .description {
        margin: 0 0 0 7rem;
    }

    .box {
        width: 5rem;
    }

    .content {
        margin: 0 0 0 5rem;
    }

    .third-tab {
        width: 20%;
    }

    .third-box {
        width: 10rem;
        margin: 0 0 0 6rem;
        background-color: var(--purple);
        box-shadow: var(--medium-purple) 0.5rem 0.5rem;
        padding: 1rem 2rem;
        margin: 0;
    }

    .load-box {
        justify-content: flex-start;
    }

    .skills {
        width: 4.5rem;
    }

    .box-content img {
        width: 10rem;
    }
}

@media only screen and (min-width: 1200px) and (orientation: landscape) {
    .container-pc {
        display: flex;
    }

    .container-mobile {
        display: none;
    }

    .first-tab {
        width: 20rem;
    }

    .form-tab {
        margin: 1rem;
    }

    .first-tab-back {
        max-width: 20%;
    }

    .second-tab {
        width: 60%;
    }

    .pfp {
        width: 20rem;
        height: 20rem;
        margin: 0 4rem;
        bottom: -55%;
    }

    .under-banner {
        height: 6.3rem;
    }

    .description {
        margin: 0 0 0 7rem;
    }

    .box {
        width: 5rem;
    }

    .content {
        margin: 0 0 0 5rem;
    }

    .third-tab {
        width: 20%;
    }

    .third-box {
        width: 10rem;
        margin: 0 0 0 6rem;
        background-color: var(--purple);
        box-shadow: var(--medium-purple) 0.5rem 0.5rem;
        padding: 1rem 2rem;
        margin: 0;
    }

    .load-box {
        justify-content: flex-start;
    }

    .skills {
        width: 4.5rem;
    }

    .box-content img {
        width: 10rem;
    }
}

@media only screen and (min-width: 1440px) and (orientation: portrait) {
    .container-pc {
        display: flex;
    }

    .container-mobile {
        display: none;
    }

    .first-tab {
        width: 29rem;
    }

    .first-tab-back {
        max-width: 29%;
    }

    .second-tab {
        width: 51%;
    }

    .pfp {
        width: 20rem;
        height: 20rem;
        margin: 0 4rem;
        bottom: -55%;
    }

    .under-banner {
        height: 6.3rem;
    }

    .description {
        margin: 0 0 0 6rem;
    }

    .box {
        width: 4rem;
    }

    .content {
        margin: 0 0 0 4rem;
    }

    .third-tab {
        width: 20%;
    }

    .third-box {
        width: 11rem;
        margin: 0 0 0 6rem;
        background-color: var(--purple);
        box-shadow: var(--medium-purple) 0.5rem 0.5rem;
        padding: 1rem 2rem;
        margin: 0;
    }

    .load-box {
        justify-content: flex-start;
    }

    .skills {
        width: 5rem;
    }

    .box-content img {
        width: 11rem;
    }
}

@media only screen and (min-width: 1440px) and (orientation: landscape) {
    .container-pc {
        display: flex;
    }

    .container-mobile {
        display: none;
    }

    .first-tab {
        width: 29rem;
    }

    .first-tab-back {
        max-width: 29%;
    }

    .second-tab {
        width: 51%;
    }

    .pfp {
        width: 20rem;
        height: 20rem;
        margin: 0 4rem;
        bottom: -55%;
    }

    .under-banner {
        height: 6.3rem;
    }

    .description {
        margin: 0 0 0 6rem;
    }

    .box {
        width: 4rem;
    }

    .content {
        margin: 0 0 0 4rem;
    }

    .third-tab {
        width: 20%;
    }

    .third-box {
        width: 11rem;
        margin: 0 0 0 6rem;
        background-color: var(--purple);
        box-shadow: var(--medium-purple) 0.5rem 0.5rem;
        padding: 1rem 2rem;
        margin: 0;
    }

    .load-box {
        justify-content: flex-start;
    }

    .skills {
        width: 5rem;
    }

    .box-content img {
        width: 11rem;
    }

}

@media only screen and (min-width: 1600px) and (orientation: portrait) {
    .container-pc {
        display: flex;
    }

    .container-mobile {
        display: none;
    }

    .first-tab {
        width: 25rem;
    }

    .first-tab-back {
        max-width: 20%;
    }

    .second-tab {
        width: 55%;
    }

    .pfp {
        width: 20rem;
        height: 20rem;
        margin: 0 4rem;
        bottom: -55%;
    }

    .under-banner {
        height: 6.3rem;
    }


    .description {
        margin: 0 0 0 8rem;
    }

    .box {
        width: 6rem;
    }

    .content {
        margin: 0 0 0 6rem;
    }

    .third-tab {
        width: 25%;
    }

    .third-box {
        width: 17rem;
        margin: 0 0 0 6rem;
        background-color: var(--purple);
        box-shadow: var(--medium-purple) 0.5rem 0.5rem;
        padding: 1rem 2rem;
        margin: 0;
    }

    .load-box {
        justify-content: flex-start;
    }

    .skills {
        width: 5rem;
    }

    .box-content img {
        width: 14.4rem;
    }
}

@media only screen and (min-width: 1600px) and (orientation: landscape) {
    .container-pc {
        display: flex;
    }

    .container-mobile {
        display: none;
    }

    .first-tab {
        width: 25rem;
    }

    .first-tab-back {
        max-width: 20%;
    }

    .second-tab {
        width: 55%;
    }

    .pfp {
        width: 20rem;
        height: 20rem;
        margin: 0 4rem;
        bottom: -55%;
    }

    .under-banner {
        height: 6.3rem;
    }


    .description {
        margin: 0 0 0 8rem;
    }

    .box {
        width: 6rem;
    }

    .content {
        margin: 0 0 0 6rem;
    }

    .third-tab {
        width: 25%;
    }

    .third-box {
        width: 17rem;
        margin: 0 0 0 6rem;
        background-color: var(--purple);
        box-shadow: var(--medium-purple) 0.5rem 0.5rem;
        padding: 1rem 2rem;
        margin: 0;
    }

    .load-box {
        justify-content: flex-start;
    }

    .skills {
        width: 5rem;
    }

    .box-content img {
        width: 14.4rem;
    }

}

@media only screen and (min-width: 1900px) and (orientation: portrait) {
    .container-pc {
        display: flex;
    }

    .container-mobile {
        display: none;
    }

    .first-tab {
        width: 29rem;
    }

    .first-tab-back {
        max-width: 25%;
    }

    .second-tab {
        width: 55%;
    }

    .pfp {
        width: 20rem;
        height: 20rem;
        margin: 0 4rem;
        bottom: -55%;
    }

    .under-banner {
        height: 6.3rem;
    }

    .third-tab {
        width: 25%;
    }

    .third-box {
        width: 17rem;
        margin: 0 0 0 6rem;
        background-color: var(--purple);
        box-shadow: var(--medium-purple) 0.5rem 0.5rem;
        padding: 1rem 2rem;
        margin: 0;
    }

    .load-box {
        justify-content: flex-start;
    }

    .skills {
        width: 5rem;
    }

    .box-content img {
        width: 16rem;
    }
}

@media only screen and (min-width: 1900px) and (orientation: landscape) {
    .container-pc {
        display: flex;
    }

    .container-mobile {
        display: none;
    }

    .first-tab {
        width: 29rem;
    }

    .first-tab-back {
        max-width: 25%;
    }

    .second-tab {
        width: 55%;
    }

    .pfp {
        width: 20rem;
        height: 20rem;
        margin: 0 4rem;
        bottom: -55%;
    }

    .under-banner {
        height: 6.3rem;
    }

    .third-tab {
        width: 20%;
    }

    .third-box {
        width: 17rem;
        margin: 0 0 0 6rem;
        background-color: var(--purple);
        box-shadow: var(--medium-purple) 0.5rem 0.5rem;
        padding: 1rem 2rem;
        margin: 0;
    }

    .load-box {
        justify-content: flex-start;
    }

    .skills {
        width: 5rem;
    }

    .box-content img {
        width: 16rem;
    }


}
