 #portfolio-filter {
    display: flex;
    flex-direction: column;
}

#category-lists ul {
    list-style-type: none;
    padding: 0;
    display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
    gap: 15px;
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    #category-lists ul  {
        justify-content: center;
        gap: 10px;
    }


}

#category-lists li {
    margin-bottom: 10px;
	display: inline-block;

}

#category-lists a {
    padding: 0;
    margin: 0;
    display: block;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #2a5173;
    padding: 5px 20px;
    background-color:#2a5173;
	font-size: 12px;
	transition: all .2s;
}

#category-lists a:hover {
    background: transparent;
    color: #2a5173 !important;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
}

.custom-event-meta {
    display: flex;
	justify-content: flex-start;
}

#portfolio-items {
    display: flex; /* veya grid */
    flex-wrap: wrap; /* Flexbox için */
    gap: 30px; /* Aralarındaki boşluğu ayarlayabilirsiniz */
	width: 100%;
}
@media screen and (max-width: 1024px) {
    #portfolio-items {
        padding: 0 20px;
    }
}

.in-portfolio-item {
	width: 31%;
    margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
    #portfolio-items .in-portfolio-item {
        width: 100%;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
    #portfolio-items .in-portfolio-item {
        width: 45%;
    }
    #portfolio-items {
        justify-content: center;
        
    }
}

.in-portfolio-item .in-image {
	overflow: hidden;
    border-radius: 5px;
}
.in-portfolio-item img {
	transition: all .35s ease-in-out;
    backface-visibility: hidden;
    filter: brightness(1);
    transform: scale(1.02);
	width: 100%;
    display: block;
    border-radius: 5px;
}

.in-portfolio-item img:hover {
	 transform: scale(1.1);
    filter: brightness(0.7);
}

.in-title {
	margin-top: 20px;
}

.in-title h3 {
	font-size: 19px;
	font-weight: 700;
	transition: all .2s;
	line-height: 26px;
}
.in-title a:hover h3 {
	color: #2a5173 !important;
}




.in-portfolio-item p {
	color: #777;
	font-size: 13px;
	line-height: 1.7;
	margin-top: 20px;
}

.in-portfolio-item .custom-event-cat {
    padding: 5px 15px;
    border-radius: 25px;
    font-weight: 500;
    color: #FFFFFF;
	background:#2a5173;
	
}

.in-portfolio-item .custom-event-cat a {
    color: #FFFFFF;
	font-size: 12px;
	font-weight:500;
	text-transform: uppercase;
}
.in-portfolio-item .custom-event-date {
	display: flex;
	align-items: center;
	color: #777;
	font-size: 12px;
}

.in-portfolio-item .custom-event-date svg {
	width: 16px;
	margin-right: 8px;
	stroke: #777;
}
 button#load-more {
	    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 60px auto 0;
    text-align: center;
    min-height: 40px;
	 color: #777;
	 background: transparent;
	 border: 1px solid #eaeaea !important;
	 font-size: 12px;
	 line-height: 28px;
	 transition: all .2s;
	 display:inline-block;
	 padding: 5px 25px !important;
	 display: flex;
}
button#load-more:hover {
	background: #2a5173 !important;
	color: #fff !important;
}

.more-btn {
    position: relative;
}

.more-btn:focus {
    background-color: #2a5173;
    color: #fff !important;
    
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.hidden-categories ul {
    display: flex;
    flex-direction: column;
}


.hidden-categories ul li a{
    background-color: transparent !important;
}

.hidden-categories .category-btn {
    display: block;
    width: 100%;
    margin: 0;
    padding: 10px;
    text-align: left;
}

@media (max-width: 768px) {
    .categories-wrapper {
        flex-direction: column;
    }

    .visible-categories {
        justify-content: space-between;
        width: 100%;
    }
}   @media screen and (max-width: 768px) {
    .dropdown-content {
        width: 100%;
        left: 0;
        right: 0;
    }
}

/* Kategorileri varsayılan olarak gizliyoruz */
.category-item {
    display: none;
}

li.more-button {
    position:relative;
}


/* Dropdown menüsü stilleri */
.more-button .dropdown-content {
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    list-style: none;
    padding: 12px;
    margin: 0;
    border-radius: 4px;
    display: none;
    position: absolute;
    margin-top: 5px;
    right:0;
    left:0;
    border-top: 2px solid #2a5173;
}

.dropdown-content li {
    padding: 5px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.dropdown-content li:last-child {
    border-bottom: none;
}

.dropdown-content li a {
    color: black;
    text-decoration: none;
    display: block;
    
    text-transform: normal;
}

.dropdown-content li a:hover {
    background-color: #f1f1f1;
}



.category-btn {
    padding: 0;
    margin: 0;
    display: block;
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #86947d;
    padding: 7px 20px;
    background:#2a5173;
}

.more-btn {
   
    border: 1px solid #2a5173 !important;
}

.more-btn:hover {
    background:transparent;
    color: #2a5173 !important;
}



.hidden-categories {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 10px;
}

.hidden-categories li{
    display: inline-block;
    width: 100%;
    text-align: center;
}

.hidden-categories  a {
    display: inline-block !important;
    background-color: transparent !important;
    color: #333 !important;
    border: 0 !important;
}

.hidden-categories a:hover {
    color: #2a5173 !important;
}

@media screen and (max-width: 768px) {
    .dropdown {
        display: block; /* Sadece mobilde göster */
    }
}
 