/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/


/** Filter CSS **/
	.project-filters select {
    -webkit-appearance: none; /* Remove default arrow on Safari */
    -moz-appearance: none; /* Remove default arrow on Firefox */
    appearance: none; /* Remove default arrow */
    
    padding-right: 35px; /* Ensure space for the arrow */
    border-radius: 6px;
    background-color: #ffffff;

    /* Custom arrow using background */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' fill='%23888'%3E%3Cpath d='M7 10l5 5 5-5z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center; /* Adjust arrow position */
    background-size: 16px;
		
	height: 100%;
	border-width: 0px;
}

    form.project-filters {
		display:grid;
        grid-template-columns: 3fr 3fr 3fr 1fr;
        align-items: center;
        gap: 30px;
        border-radius: 8px;
        max-width: 100%;
}
    .project-filters button {
        padding: 10px 20px;
        background-color: #e77a29; /* Orange */
        color: white;
        font-size: 18px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
		height: 42px;
		place-content: center;
		transition: all .2s linear;
    }

    .project-filters button:hover {
        background-color: #4a3327; /* Darker Orange */
		transition: all .2s linear;
    }

    .project-filters button span {
        font-weight: medium;
    }

    @media (max-width: 768px) {
        .project-filters {
            flex-wrap: wrap;
            justify-content: center;
			grid-template-columns: 1fr !important;
			gap: 10px !important;
        }

        .project-filters select {
            min-width: 100%;
        }
    }

/** End Filter CSS **/


/** Nearby Location CSS **/
	.nearby-location-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 20px;
		row-gap: 30px;
	}
	.nearby-location-item {
		display: flex;
		align-items: center;
		/*background: #f5f5dc;
		padding: 10px;
		border-radius: 8px;*/
	}
	.nearby-location-item img {
		width: 50px;
		height: 50px;
		margin-right: 10px;
		border-radius: 5px;
	}
	.nearby-location-info {
		display: flex;
		flex-direction: column;
	}
	.nearby-location-info strong, .nearby-location-info span{
		color: #4A3327;
		line-height: 1.4em;
	}

@media screen and (max-width: 786px) {
  .nearby-location-item {
	flex-direction: column;
	}
	.nearby-location-info {
    margin-top: 10px;
    align-items: center;
	}
	.nearby-location-info strong, .nearby-location-info span{
		text-align:center;
	}
}
/** End Nearby Location CSS **/


/** Facility List CSS**/
.acf-facilities-list {
    display: grid;
    gap: 20px;
    justify-content: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.acf-facility-item {
   background: #E7E2DB;
   padding: 20px;
   border-radius: 5px;
   display: grid;
   grid-template-columns: 1fr 3fr;
   align-items: center;
   text-align: center;
   gap: 15px;
}
.acf-facility-icon img {
   /*width: 50px;
   height: 50px;*/
   width: 100%;
   border-radius: 5px;
}
.acf-facility-content {
   font-size: 16px;
   color: #4A3327;
	text-align: left;
}
.acf-facility-content span {
   display: block;
   font-size: 14px;
   color: #4A3327;
}
@media screen and (max-width: 992px) {
  .acf-facilities-list {
	gap: 10px;
}
	.acf-facility-item {
   padding: 10px;
	gap: 10px;
	grid-template-columns: 1fr 2fr;
}
	.acf-facility-content {
   font-size: 14px;
}
	.acf-facility-content span {
   font-size: 13px;
}
}

@media screen and (max-width: 768px) {
  .acf-facilities-list {
	grid-template-columns: 1fr 1fr;
}
}
/** End Facility List CSS**/