
/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.past-project-filter-form {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.project-search-bar {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	width: 35%;
}

.project-search-bar input {
	padding: 8px;
	flex: 1;
}

.project-search-bar button {
	color: #fff !important;
	border: none !important;
	background-color: var(--e-global-color-890f2b3) !important;
	padding: 15px;
	border-radius: 5px !important;
}

.project-search-bar button:hover {
	background: var(--e-global-color-890f2b3) !important;
	color: #fff !important;
}

.past-project-filter-form select {
	width: 25%;
}

.past-project-filter-form select:focus {
	border-color: var(--e-global-color-890f2b3) !important;
	outline: 0 !important;
	box-shadow: none !important;
}

.past-project-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.project-card {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 12px 12px 9px;
}

.project-card .project-link {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
}

.project-card .project-link .project-left {
	width: 30%;
}

.project-card .project-link .project-left img {
	width: 100% !important;
	height: 100 !important;
	object-fit: cover;
	object-position: center;
}

.project-card .project-right {
	width: 70%;
	display: flex;
	flex-direction: column;
	gap: 0px;
	justify-content: flex-start;
	align-items: flex-start;
}

.project-card .project-right .project-title {
	font-size: 20px !important;
	color: #333;
	margin: 0px !important;
	white-space: normal;
}

.project-card .project-right .project-term {
	background: #eee;
	color: #333;
	font-size: 16px !important;
	padding: 5px 10px;
	border-radius: 20px;
	margin: 10px 0;
}

.project-card .project-right .project-city {
	font-size: 16px !important;
	color: #333;
}

.load-more-btn-projects {
	padding: 12px 25px;
	color: #fff !important;
	border: none !important;
	background-color: var(--e-global-color-890f2b3) !important;
	border-radius: 5px !important;
	cursor: pointer !important;
	opacity: 1 !important;
}

/*Responsive styles */
@media (max-width: 769px) {
	.past-project-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.past-project-filter-form select.employee-select {
		display: none;
	}
	
	.past-project-filter-form select.city-select {
		width: 47%;
	}
	
	.project-search-bar {
		width: 47%;
	}
}

@media (max-width: 575px) {
	.past-project-grid {
		grid-template-columns: 1fr;
	}
	
	.past-project-filter-form select.city-select {
		width: 100%;
	}
	
	.project-search-bar {
		width: 100%;
	}
	
	.project-search-bar button {
		padding: 8px 20px !important;
	}
}
