.project-item {
    border: 1px solid #ddd;
    padding: 15px;
    padding-bottom: 0;
    margin-bottom: 20px;
    background-color: #fff;
    height: 100%;
    box-sizing: border-box;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
}

.project-item:hover, .project-item:focus {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-decoration: none;
    transform: scale(1.01);
}

.project-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 8px;
}

.project-item h2 {
    font-size: 1.5rem;
}


.project-item p {
    margin: 0;
}


.project-pictures-gallery-holder {
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 0;
}

.project-pictures-gallery img {
    width: 100%;
    display: block;
}

.project-steps-holder {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0;
    position: relative;
}

.project-steps-holder:before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ddd;
    position: absolute;
    top: calc(50% + 3px);
    right: 0;
}

.project-steps {
    display: flex;
    gap: 10px;
    margin: 0 auto;
    width: fit-content;
}

.project-steps .line {
    height: 100px;
    position: relative;
}

.project-steps .line:before {
    content: '';
    display: block ;
    width: 2px;
    height: 100%;
    background-color: var(--web-primary-color);
    position: absolute;
    top: 0;
    right: 50%;
}

.project-steps .line:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--web-primary-color);
    position: absolute;
    top: calc(50% - 10px);
    right: calc(50% - 9px);
}

.project-steps .bubble {
    background-color: var(--web-primary-color);
    color: #fff;
    position: relative;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    border-radius: 5px;
    padding: 5px 10px;
}

.project-steps .bubble.top {
    min-width: 200px;
}

.project-steps .project-step {
    position: relative;
}

.project-steps .project-step .time {
    transform: translateY(70px);
    white-space: nowrap;
}

/**/


/**/

.projects-header {
	background-color: #f1f1f1;
	border-bottom: 1px solid #ddd;
	margin-top: -1.5rem;
	margin-right: -1.5rem;
	margin-left: -1.5rem;
	margin-bottom: 1.5rem;
	padding: 1.5rem;
}

.projects-header .form-control {
	border-radius: 2rem;
}

.projects-header .btn {
	border-radius: 2rem;
}

@media (max-width: 991px) {
	.projects-header {
		text-align: center;
	}
	.projects-header .btn-group {
		margin-bottom: 15px;
	}
	
}

/**/

#filtering {
	background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
    border-radius: 30px;
    padding: 20px;
    padding-bottom: 5px;
}