/* ------------------------------------------------------------gallery sub start------------------------------------------------------------ */
.section-gallery {
  width: 100%;
  height: 100%;
  padding-top: 75px;
	padding-bottom: 75px;
  background-color: rgb(255, 255, 255);
}

.gallery-root {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-main-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.gallery-all {
	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-all:hover {
	box-shadow: 5px 5px 5px rgba(78, 78, 78, 0.573);
	img {
		border: solid 2px rgb(4, 35, 86);
		opacity: 0.75;
	}
}
/* ------------------------------------------------------------gallery sub end------------------------------------------------------------ */