.headerContainerPROJ{
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 10vh;
}

/* Back button */
.backBtn{
    position: absolute;
    left: 1.5rem;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #3371d4;
    border-radius: 10px;

    text-decoration: none;

    color: white;
    font-size: 1.5rem;
    font-weight: bold;

    transition: 0.2s ease;

    cursor: pointer;
}

.backBtn:hover{
    background-color: #3b82f6;
    color: white;
}

.title{
    margin: 0;
}

.backIcon{
    margin: 0;
    line-height: 1;
    font-size: 32px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/*Main part*/
.mainContainerPROJ{
    margin-top: 5vh;
    padding: 0 5vw;
    display: flex;
    flex-direction: row;
    min-height: 80vh;
}

.LeftPart{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.RightPart{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.projectImagePROJ{
    width: 80%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.description{
    max-width: 600px;
    font-size: 24px;
    margin: 0 0 10px 0;
}

.subTitle{
    max-width: 600px;
    font-size: 24px;
    margin: 10px 0 0 0;
}

.listItem{
    font-size: 20px;
    margin: 0;
}

.galleryTitle{
    display: none;
    font-size: 32px;
}

@media (max-width: 768px){
    .mainContainerPROJ{
        flex-direction: column;
        align-items: center;
    }

    .description, .subTitle{
        font-size: 20px;
    }

    .listItem{
        font-size: 16px;
    }

    .LeftPart{
        order: 2;
    }

    .RightPart{
        order: 1;
    }

    .galleryTitle{
        display: block;
    }
}

@media (max-width: 1200px){
    .description, .subTitle{
        font-size: 18px;
    }

    .listItem{
        font-size: 14px;
    }
}