
/*	gallery */

.gallery-title{
    font-size: 36px;
    color: #3F6184;
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}
.filter-button{
    font-size: 18px;
    border: 2px solid #3F6184;
	padding:5px 10px;
    text-align: center;
    color: #3F6184;
    margin-bottom: 30px;
	background:transparent;
}
.filter-button:hover,
.filter-button:focus,
.filter-button.active{
    color: #ffffff;
    background-color:#3F6184;
	outline:none;
}
.gallery_product{
    margin: 0px;
	padding:0;
	position:relative;
}
.gallery_product .img-info{
	position: absolute;
    background: rgba(0,0,0,0.5);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
	overflow:hidden;
	color:#fff;
	top:0;
	display:none;
	   -webkit-transition: 2s;
    transition: 2s;
}

.gallery_product:hover .img-info{
	display:block;
   -webkit-transition: 2s;
    transition: 2s;
}

/*	end gallery */






/* filter */


.products-card {
    cursor: pointer;
    background-color: #fff;
    text-align: center;
    border-radius: 0.5rem;
    box-shadow: 0 0 5px 2.5px var(--text-color);
    margin-bottom: 2rem;
    transition: 0.4s;
}

.products-filter-card.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 5px 2.5px rgba(4, 42, 91, 0.7);
}

.products-filter-card {
    cursor: pointer;
    background-color: #fff;
    text-align: center;
    text-align: center;
    border-radius: 0.5rem;
    box-shadow: 0 0 5px 2.5px var(--text-color);
    padding: 1.5rem;
    transition: 0.4s;
}

.product-title-section {
    background-color: green;
    display: flex
;
    align-items: center;
    padding: 0.5rem;
    height: 65px;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}
/* .product-title-section {
    background-color: var(--primary-color);
    display: flex
;
    align-items: center;
    padding: 0.5rem;
    height: 65px;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
} */

/* .box{
    border: 1px solid black;
    gap: 10px;
    border-radius: 10px;
} */
.products-card-content {
    width: 100%;
    height: 150px;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary-color);
    padding: 1.5rem 1rem;
    text-align: center;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.products-card-button {
    width: 100%;
    background-color: green;
    color: #ffffff;
    font-size: 1.09rem;
    text-transform: capitalize;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    font-weight: 600;
    padding: 0.5rem;
}

.img-fluid{
    width: 60%;
    
}

