.page-content{
    padding: 0rem;
}

.project-header{
    display: flex;
    flex-direction: row;
    margin: 7.5rem 0rem 10.6rem 0rem;
}

.header-highlight{
    background-color: #9CFFD9;
    width: 0.6rem;
    height: inherit;
}

.header-content{
    padding: 0rem 0rem 0rem 6.2rem;
}

.project-title{
    font-size: 4rem;
    margin: 0rem 0rem 0.6rem 0rem;
}

.project-subtitle{
    font-size: 1.1rem;
    font-weight: 100;
    color: #A5A5A5;
}

.project-pages-list{
    display: flex;
    flex-direction: row;
    margin: 1.5rem 0rem;
}

.project-page{
    margin: 0rem 0.6rem 0rem 0rem;
    padding: 0.1rem 0.4rem;
    border: #9CFFD9 solid 0.06rem;
    cursor: pointer;
}

.project-page.selected{
    background-color: #9CFFD9;
    cursor: initial;
    user-select: none;
}

.project-page:hover.selected{
    box-shadow: none;
}

.project-page:hover{
    box-shadow: 0rem 0rem 0.3rem #9CFFD9;
}

.project-section{
    margin: 0rem 7.6rem;
}

.project-section-divider{
    margin: 0rem 0rem 7rem 0rem;
}

.section-title{
    font-size: 2rem;
}

.section-subtitle{
    font-size: 1.4rem;
    font-weight: 500;
    margin: 2.8rem 0rem 1.3rem 0rem
}

.section-text{
    font-weight: 100;
}

.section-team{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1.2rem 0rem;
}

.team-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 5.5rem;
    height: 5.5rem;
    font-weight: 100;
}

.team-card.odd{
    background-color: rgb(156, 255, 217, 0.5);
}

.team-card.pair{
    background-color: #9CFFD9;
}

.team-counter{
    font-size: 2rem;
}

.team-role{
    font-size: 1rem
}

.image-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem 0rem;
    padding: 0rem 4.5rem;
    background: #FFFFFF;
    box-shadow: 0rem 0rem 0.8rem 0.6rem rgba(234, 234, 234, 0.25);
    border-radius: 1.2rem;
}

.image-section>label{
    padding: 1rem 0rem 1rem 0rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.image-section .full-width{
    width: 100%;
}

.image-section .border{
    border: #f4f4f4 solid 0.06rem;
}

.image-section .image-row{
    display: flex;
    flex-direction: row;
    margin: 1rem 0rem 2rem 0rem;
}

.figma-section{
    display: flex;
    flex-direction: row;
    align-items: center;
    /* margin: 1rem 0rem 2rem 0rem; */
    cursor: pointer;

    align-items: center;
    /* margin: 3rem 17rem; */
    padding: 1rem 1.5rem;
    background: #FFFFFF;
    box-shadow: 0rem 0rem 0.8rem 0.6rem rgba(234, 234, 234, 0.25);
    border-radius: 1.2rem;
    max-width: 22%;
    border: 0.01rem solid #F51E8A;
}

.figma-section:hover span{
    transition: color 0.3s;
    -webkit-transition: color 0.3s;
    color: #F51E8A;
}

.figma-section:hover .open-link-image{
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
    opacity: 1;
}

.figma-section:hover .open-link-image{
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
    opacity: 1;
}

.figma-link{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
}

.figma-link span{
    font-size: 1em;
    font-weight: bold;
    margin-left: 0.5rem;
}

.figma-link img{
    max-height: 10%;
    max-width: 10%;
}

.open-link-image{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 20%;
    opacity: 0;
}

.open-link-image img{
    max-height: 50%;
    max-width: 50%;
}

.image-section .image-cell{
    padding: 0rem 0.7rem;
    cursor: pointer;
}

#expand-image-layer { 
    display: flex;
    justify-content: center;
    z-index: 10; 
    width: 100%; 
    height: 100%; 
    background: rgb(32 ,35 ,42 , 50%); 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: fixed; 
    top: 0%;
    left: 0%;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all 1s ease;
    cursor: pointer;
}

#expand-image-layer.is-visible{
    visibility: visible;
    opacity: 1;
}

#expand-image-container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0rem;
    z-index: 11;
}

#expand-image{
    display: flex;
    height: inherit;
    max-height: 90%;
    max-width: 85%;
    cursor: initial;
    z-index: 12;
}

#prev-img-button{
    display: flex;
    padding: 1.5rem 1rem 1.5rem 1.5rem;
    width: 2rem;
    height: 2rem;
    background: url(../assets/common/prev-img.svg) no-repeat center;
    z-index: 12;
    opacity: 0;
}
#prev-img-button.is-visible{
    visibility: visible;
    opacity: 1;
}
#prev-img-button.disable{
    background: url(../assets/common/prev-img-disable.svg) no-repeat center;
    cursor: initial;
}
#prev-img-button:hover{
    transform: translateX(-0.2rem);
    transition: 0.3s ease;
}
#prev-img-button:hover.disable{
    transform: none;
}
#next-img-button{
    display: flex;
    padding: 1.5rem 1rem 1.5rem 1.5rem;
    width: 2rem;
    height: 2rem;
    background: url(../assets/common/next-img.svg) no-repeat center;
    z-index: 12;
    opacity: 0;
}
#next-img-button.is-visible{
    visibility: visible;
    opacity: 1;
}
#next-img-button:hover{
    transform: translateX(0.2rem);
    transition: 0.3s ease;
}
#next-img-button:hover.disable{
    transform: none;
}
#next-img-button.disable{
    background: url(../assets/common/next-img-disable.svg) no-repeat center;
}

@media only screen and (max-width: 812px) {
    .project-header{
        margin: 5.5rem 0rem 3.5rem 0rem;
    }

    .header-content{
        padding: 0rem 4rem 0rem 4rem;
    }

    .project-title{
        font-size: 3rem;
        margin: 0rem 0rem 0.6rem 0rem;
    }

    .project-section{
        margin: 0rem 3rem;
    }

    .project-section-divider{
        margin: 0rem 0rem 3.5rem 0rem;
    }
}

@media only screen and (max-width: 568px) {
    .project-header{
        margin: 5.5rem 0rem 3.5rem 0rem;
    }

    .header-content{
        padding: 0rem 2.5rem 0rem 2.5rem;
    }

    .project-title{
        font-size: 2.5rem;
        margin: 0rem 0rem 0.6rem 0rem;
    }

    .project-section{
        margin: 0rem 2rem;
    }

    .project-section-divider{
        margin: 0rem 0rem 2.5rem 0rem;
    }

    .team-card{
        width: 3rem;
        height: 3rem;
    }

    .team-counter{
        font-size: 1.3rem;
    }

    .team-role{
        font-size: 0.8rem;
    }

    .image-section{
        padding: 0rem 2rem;
    }

    .image-section .image-row{
        margin: 0rem 0rem 1.5rem 0rem;
    }
}

@media only screen and (max-width: 414px) {
    #expand-image{
        max-width: 75%;
    }
}

@media only screen and (max-width: 320px) {
    .project-section{
        margin: 0rem 1rem;
    }   

    .team-card{
        width: 2.8rem;
    }
}