/* Project.css */

.project-filter{
	margin-bottom: 40px;
}

.project-filter-item:not(:last-child){
	margin-bottom: 10px;
}

.project-filter-item input, .project-filter-item .easy-select, .project-filter-item button{
	--es-height: 49px;
	width: 100%;
	height: 50px;
}

.project-filter-item .btn-project-submit{
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.project-item-inner {
	position: relative;
	border-radius: var(--adt-border-radius);
	border: 1px solid var(--adt-border-color);
	overflow: hidden;
	height: 100%;
}

.project-item-info {
	position: relative;
	padding: 20px 30px;
}

.project-item-tax {
	margin-bottom: 4px;
}

.project-item-tax a {
	color: var(--adt-link-color);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}

.project-item-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 0;
	color: var(--adt-primary-color);
}

.project-item-title a {
	color: currentColor;
	display: block;
	display: -webkit-box;
	max-width: 100%;
	min-height: 43px;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.project-item-excerpt {
	display: block;
	display: -webkit-box;
	margin-top: 10px;
	max-width: 100%;
	min-height: 43px;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.project-item-link {
	margin-top: 20px;
}

.project-item-link a {
	font-size: 16px;
	font-weight: 600;
	color: var(--adt-primary-color);
	text-transform: uppercase;
}

.blog-list .project-item-info {
	text-align: center;
}

.blog-list .project-item-excerpt,
.blog-list .project-item-link {
	display: none !important;
}

/* Single */

.main-single-proj .page-header-logo img {
	width: auto;
	height: 150px;
	margin-bottom: 10px;
}

.main-single-proj .page-header-background .page-header-info {
	text-align: left;
}

.main-single-proj .page-header-description {
	font-size: 20px;
	color: #fff;
}

.main-single-proj .page-header-btn {
	margin-top: 20px;
	display: flex;
	align-items: center;
}

.proj-info-item:nth-child(2n) .row {
	flex-direction: row-reverse;
}

.proj-info-item-image {
	position: relative;
	height: 100%;
}

.proj-info-item-info {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #f2f2f2;
	height: 100%;
	padding-top: var(--adt-gap);
	padding-bottom: var(--adt-gap);
	padding-right: calc((100vw - 8px - var(--adt-container-width)) / 2 + var(--adt-grid-gap));
	padding-left: var(--adt-gap);
}

.proj-info-item:nth-child(2n) .proj-info-item-info {
	padding-right: var(--adt-gap);
	padding-left: calc((100vw - 8px - var(--adt-container-width)) / 2 + var(--adt-grid-gap));
}

.proj-info-item-info .sec-title {
	margin-bottom: 20px;
}

.proj-info-item-info .sec-title .title {
	font-size: 32px;
}


.proj-info-item-content tr,
.proj-info-item-content tr td {
	border: none;
}

.proj-info-item-content tr {
	border-bottom: 1px solid var(--adt-border-color) !important;
}

.proj-info-item-content tr td {
	padding-left: 0;
}

.proj-info-item-content tr:nth-child(even) {
	background: transparent;
}

.proj-utilities {
	background: #f2f2f2;
}

.proj-utilities .sec-title {
	margin-bottom: 20px;
}

.proj-utilities .sec-description {
	margin-bottom: 46px;
	text-align: center;
	font-size: 18px;
	max-width: 1030px;
	margin-left: auto;
	margin-right: auto;
}

.proj-utilities-image {
	padding-top: 75%;
	border-radius: var(--adt-border-radius);
}

.proj-gallery-title .title {
	font-size: 20px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 0;
	margin-top: 16px;
}

.proj-video-image {
	padding-top: 56.25%;
}

.proj-video-image span.play-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: #064d92db;
	color: #fff;
	border-radius: 100%;
}

.proj-video-image span.play-video::after {
	content: "";
	position: absolute;
	z-index: -1;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 100px;
	height: 100px;
	background-color: #015ba6;
	opacity: 0.8;
	border-radius: 50%;
	-webkit-animation: pulse-border 2000ms ease-out infinite;
	animation: pulse-border 2000ms ease-out infinite;
	transition: all 0.2s ease-in-out;
}

.proj-video-image span.play-video svg {
	fill: currentColor;
}

@keyframes pulse-border {
	0% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}

.proj-gallery-image,
.proj-video-image {
	border-radius: var(--adt-border-radius);
}

.proj-related {
	background: #f2f2f2;
}

.proj-related .project-item-info {
	background: #fff;
	text-align: center;
}

.proj-related .project-item-excerpt,
.proj-related .project-item-link {
	display: none !important;
}

@media only screen and (max-width: 1280px) {
	.project-item-info {
		padding: 10px 15px;
	}

	.proj-video-image span.play-video {
		width: 60px;
		height: 60px;
	}

	.proj-video-image span.play-video::after {
		width: 80px;
		height: 80px;
	}
}

@media only screen and (min-width: 1025px) and (max-width: 1280px) {
	.project-item-title {
		font-size: 18px;
	}
}

@media only screen and (max-width: 1024px) {
	.proj-info-item-info {
		padding-left: var(--adt-grid-gap) !important;
		padding-right: var(--adt-grid-gap) !important;
	}

	.proj-utilities .sec-description {
		font-size: 16px;
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767px) {
	.sec-title .title::after {
		width: 60px
	}

	.project-item-title {
		font-size: 18px;
	}

	.main-single-proj .page-header-image {
		height: 360px;
	}

	.main-single-proj .page-header-logo img {
		height: 100px;
	}

	.main-single-proj .page-header-description {
		font-size: 18px;
	}

	.proj-info-item-info .sec-title .title {
		font-size: 24px;
	}

	.project-filter-item input, .project-filter-item .easy-select, .project-filter-item button{
		--es-height: 45px;
		width: 100%;
		height: 46px;
	}
}