.projects-top{
	padding: 40px 28px;
	border-radius: 8px;
	background-color: var(--light-grey);
}
.projects-top-title h2{
	color: var(--near-black);
	font-family: var(--font-roboto);
	font-size: 60px;
	font-weight: bold;
	padding-bottom: 60px;
	line-height: 60px;
}
.projects-top-content{
	display: flex;
	justify-content: space-between;
	gap: 24px;
}
.project-section-actions{
	background: var(--light-grey);
	padding: 28px;
	border-radius: var(--border-radius);
	margin-bottom: 52px;
	display: flex;
	justify-content: space-between;
	gap: 10px;
}
.projects-section-title h2{
	font-size: 32px;
	font-family: var(--font-roboto);
	color: var(--near-black);
	padding-bottom: 52px;
}
.projects-section-search {
    position: relative;
    display: flex;
}
.projects-section-search-icon {
    position: absolute;
    left: 12px;
    /*top: 50%;*/
    transform: translateY(43%);
    pointer-events: none;
}
.project-section-search__input {
    padding-left: 40px !important; 
	width: 368px;
	border: 1px solid var(--grey-hover) !important;
	border-radius: var(--border-radius) !important;
	height: 40px;
}
.section-empty {
	background-color: var(--light-grey);
	border-radius: var(--border-radius);
	padding: 28px;
}
.section-empty-title {
	font-family: var(--font-roboto);
	font-weight: bold;
	font-size: 32px;
	color: var(--blue-corp);
	line-height: 40px;
}
.section-empty-text {
	font-family: var(--font-inter);
	font-size: 20px;
	font-weight: bold;
	color: var(--blue-corp);
	line-height: 28px;
}
.section-empty-action {
	padding-top: 80px;
	display: flex;
	gap: 20px;
}
.section-empty-action-item {
	padding: 16px 23px;
	border: 1px solid var(--blue-corp);
	font-weight: bold;
	font-family: var(--font-roboto);
	transition: 0.5s;
	border-radius: var(--border-radius);
	width: max-content;
	cursor: pointer;
}
.section-empty-action-item--all {
	background-color: var(--blue-corp);
	color: #fff;
}
.section-empty-action-item--help {
	color: var(--blue-corp);
	width: 260px;
	text-align: center;
}
@media (min-width: 992px) {
}
@media screen {
	.section-empty-action-item--all:hover {
		background-color: #fff;
		color: var(--blue-corp);
	}
	.section-empty-action-item--help:hover {
		background-color: var(--blue-corp);
		color: #fff;
	}
}
@media(max-width: 1349px) {
	.projects-top-content {
		flex-direction: column-reverse;
	}
	.projects-top-title h2 {
		margin-bottom: 0 !important;
		padding-bottom: 32px;
	}
}
@media(max-width: 992px) {
	.project-section-search__input {
		height: 48px;
	}
	.project-section-actions {
		align-items: start;
	}
	.projects-section-search-icon {
        top: 0;    
		transform: translateY(60%);
    }
}
@media(max-width: 600px) {
	.projects-top-title h2 {
		font-size: 40px;
		line-height: 40px;
	}
	.projects-top {
		padding: 40px 16px;
	}
}
@media(max-width: 768px) {
	.project-section-search__input {
		width: 100%;
	}
	.projects-section-search {
		width: 100%;
		max-width: 48%;
	}
	.project-section-actions {
		padding: 16px 28px;
	}
}
@media(max-width: 630px) {
	.project-section-actions {
		flex-direction: column-reverse;
	}
	.projects-section-search {
		max-width: 100% !important;
		width: 100%;
	}
	.project-section-actions {
		padding: 16px;
	}
}