/* ------------------------------------------------------------gallery start------------------------------------------------------------ */
.section-gallery {
  padding: 75px 0px 50px 0px;
  background-color: rgb(255, 255, 255);
}

.gallery-root {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-sub-title {
  display: flex;
  align-items: center;
	margin-bottom: 5px;
  h3 {
    font-weight: 700;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
  }
}

.gallery-category {
	margin-top: 50px;
}

.gallery-title {
	display: flex;
	margin-bottom: 10px;
	h2 {
    font-weight: 700;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
  }
}

.gallery-preview {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	a {
		font-weight: 600;
		text-transform: capitalize;
		color: rgb(4, 35, 86);
		transition: 0.5s;
	}
}

.gallery-preview-image {
	position: relative;
	overflow: hidden;
	width: 200px;
	height: 200px;
	border-radius: 10px;
	box-shadow: 5px 5px 5px rgba(78, 78, 78, 0.278);
	transition: 0.5s;
	img {
		overflow: hidden;
		width: 200px;
		height: 200px;
		object-fit: cover;
		object-position: center;
		border-radius: 10px;
		border: solid 2px rgb(255, 255, 255);
		transition: 0.5s;
	}
}

.gallery-preview-image:hover {
	box-shadow: 5px 5px 5px rgba(78, 78, 78, 0.573);
	img {
		border: solid 2px rgb(4, 35, 86);
		opacity: 0.75;
	}
}
/* ------------------------------------------------------------gallery end------------------------------------------------------------ */