.project-info {
    width: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: #fff;
    color: #333;
	position: sticky;
	top: 125px;
}
.project-info h2 {
    background: var(--primary-color);
    color: white;
    padding: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-size: 18px;
    text-align: center;
	margin-bottom: 10px;
}
.project-info .info-item {
	padding: 0 20px;
    display: flex;
    margin-bottom: 10px;
    font-size: 16px;
}
.project-info .info-item i {
    color: var(--primary-color);
    font-size: 16px;
    margin-right: 10px;
	margin-top:5px;
}
.project-info a {
    color: var(--primary-color);
    text-decoration: none;
}
.project-info a:hover {
    text-decoration: underline;
}
.large-30 {
	flex-basis: 30%;
	max-width: 30%;
}
.large-70 {
	flex-basis: 70%;
	max-width: 70%;
}
@media(max-width: 849px) {
	.project-info {
		position: relative;
		top:unset;
	}
	.large-30 {
		flex-basis: 100%;
		max-width: 100%;
	}
	.large-70 {
		flex-basis: 100%;
		max-width: 100%;
	}
}