/*--- PAGE CONTENT ---*/
.page-content {
    margin: calc(var(--header-height) + 20px) 0 0 0; /* Récupére la hauteur du header + une marge */
}


/*--- BREADCRUM NAVIGATION ---*/
.breadcrumb-navigation .link-breadcrumb {
    font-size: 14px;
    color: var(--blue-color);
    text-decoration: underline;
}

.breadcrumb-navigation .link-breadcrumb:nth-last-child(1) {
    color: var(--green-color);
}

.breadcrumb-navigation a:hover {
    color: var(--green-color);
}

/*--- PROJECT TITLE ---*/
.project-title {
    text-align: center;
    margin: 3rem 0 0 0;
    display: flex;
    justify-content: center;
}

.project-title .project-categorie {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFF;
    background-color: var(--green-color);
    padding: .25rem 1rem;
}

.project-title .title {
    margin: 1rem 0 0 0;
}

.project-title .subtitle {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subtitle .bx-down-arrow-alt {
    font-size: 27px;
    color: var(--green-color);
}


/*--- PROJECT VISUAL ---*/
.project-visual {
    margin: 3rem 0 0 0;
}

.project-visual img {
    width: 100%;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    margin: 0 0 1rem 0;
    scale: 1;
    transition: all .3s ease-out;
}

.project-visual img:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    scale: .95;
}


/*--- PROJECT LINK ---*/
.project-link  {
    text-align: center;
}

.project-link ul li a {
    font-size: 14px;
    text-decoration: underline;
    color: var(--grey-color);
}

.project-link a:hover  {
    color: var(--green-color);
}



/*--- PROJECT TEXT ---*/
.project-text {
    margin: 2rem 0 0 0;
}

.text {
    border-bottom: 1px solid var(--grey-line-color);
}

.text:nth-last-child(1) {
    border: none;
} 

.text-title {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.text-title .bxs-chevron-down {
    font-size: 2em;
    color: var(--green-color);
}

.text-title.active .arrow {
    rotate: -90deg;
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.title .cercle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--green-color);
    margin: 0 5px 0 0;
}

.text-content {
    padding: 0 0 1.5rem 0;
}


/*--- RESPONSIVE  ---*/
@media (min-width: 1200px) {
    .breadcrumb-navigation .link-breadcrumb {
        font-size: 16px;
    }

    .project-title .project-categorie {
        font-size: 18px;
    }

    .project-title .subtitle {
        font-size: 18px;
    }

    .project-link ul li a {
        font-size: 16px;
    }

    .text-content {
        font-size: 1.09em;
    }
}