/* =========================================================
Copyright © 2024 Tharun Enterprises. All Rights Reserved.

Design and Developed by Memstech
=========================================================  */
/**
* Bootstrap v4.5.3
*/
/**
* Bootstrap Icons v1.11.3
*/

/*=================================================================
  Products Section Starts
==================================================================*/
.products-filter {
	margin-bottom: 40px;
	text-align: center;
}

.products-filter button {
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	padding: 8px 20px;
	text-transform: uppercase;
	background: var(--color-primary);
	border: none;
	color: #fff;
	outline: none;
	margin: 6px 4px;
}

.products-filter button.active {
	box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.1);
	background: #fff;
	color: var(--color-primary);
	border-radius: 20px;
}

.product-detail {
	border: 1px solid #eee;
	box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.1);
	margin: 20px;
	transition: all 0.3s ease 0s;
}

.product-title {
	color: #000;
	text-align: center;
	font-weight: 700;
	padding: 10px 0;
	margin: 0;
	background-color: var(--color-bright-blue);
	color: #fff;
}

.products-block {
	position: relative;
	padding: 10px;
}

.products-block img {
	width: 100%;
	height: 100%;
}

.products-block:before {
	transition: all 0.3s ease-in-out;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	content: '';
}

.products-block:hover:before {
	opacity: 1;
}

.products-block:hover .caption {
	opacity: 1;
	top: 55%;
}

.products-block .caption {
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);
	z-index: 9;
	transition: all 0.3s ease-in-out;
	text-align: center;
	width: 90%;
}

.products-block .caption .search-icon {
	background: var(--color-primary);
	color: #fff;
	display: inline-block;
	height: 45px;
	width: 45px;
	font-size: 17px;
	border-radius: 30px;
	margin-bottom: 20px;
	text-align: center;
	line-height: 47px;
}

/*=================================================================
  Products Section Ends
==================================================================*/
