/* General Styling */


/* Portfolio Grid Styling */
.grid {
    width: 100%;
}

/* Clear fix for floated items */
.grid:after {
    content: '';
    display: block;
    clear: both;
}

/* Grid items and sizer for a 3-column layout on medium screens and up */
.grid-sizer,
.grid-item {
    width: 25%; /* 3 columns */
    padding: 10px;
}

.portfolio_fullimage img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio_fullimage a:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .grid-sizer,
    .grid-item {
        width: 50%; /* 2 columns */
    }
}

@media (max-width: 575px) {
    .grid-sizer,
    .grid-item {
        width: 100%; /* 1 column */
    }
}

/* Styling for the active filter button */
#portfolio-filters .btn.active {
    background-color: unset;
    color: #ff4328;
    border-bottom: 2px solid #ff4328 !important;
    border: none;
    border-radius: 0px;
}


#portfolio-filters .btn:hover {
	background-color: unset; 
    /* color: #ff4328; */
     border-bottom: 2px solid #ff4328 !important; 
    border: none;
    border-radius: 0px;
    /* background-color: #ff4328; */
    color: #ff4328;
}
	
#portfolio-filters .btn {
		
   /* border: 1px solid #ff4328 !important;*/
	 border-radius: 0px;
	 margin-bottom: 10px;
}



.sidebar_mobile_menu a {
    text-decoration: none !important;
}

a, a:hover, a:focus {
    text-decoration: none !important;
}



/* == KEY CHANGE 2 == */
/* Responsive for Tablets & Mobiles: 2 columns */
@media (max-width: 991px) {
    .grid-sizer,
    .grid-item {
        width: 50%; 
    }
}



