body {
	font-family: "Inter", sans-serif;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	--site-header-height: 72px;
	/* max-width: 1300px;
	margin: 0 auto !important; */
}

a {
	text-decoration: none;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

a:hover {
	text-decoration: none;
}

@font-face {
	font-family: 'Knockout';
	src: url('../fonts/Knockout.otf') format('truetype');
	font-weight: normal;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
}

/* Header and topbar */
:root {
	--accent-1: #07b8a3;
	--accent-2: #81c66b;
	--accent-3: #ff7528;
	--accent-4: #de2779;
	--accent-5: #11A2D9;
	--footer-bg: #1d1d1d;
}

body {
	font-family: Inter, system-ui, Segoe UI, Roboto, Arial;
	margin: 0;
	color: #17202a;
}

/* Topbar - thin contact strip */
.topbar {
	font-weight: 600;
	padding: .35rem 0;
	color: #fff;
	background: linear-gradient(90deg,
			#81c66b 0%,
			#07b8a3 25%,
			#ff7528 70%,
			#de2779 100%);
}

/* .topbar-number{
	font-size: 18px;
	
} */
.topbar-number a {
	font-size: 18px;
	color: #fff;
	margin-left: 5px;
}

/* Header - logo row + colored nav row */
header.site-header {
	background: #fff;
	box-shadow: 0 6px 20px rgba(14, 20, 30, .06);
}

.header-top {
	display: flex;
	align-items: center;
	/* gap: 1rem; */
	padding: .6rem 0;
}

.logo-box {
	display: flex;
	align-items: center;
	gap: .6rem;
	background: #fff;
	padding: .35rem .6rem;
	border-radius: 6px;
}

.logo-box img {
	transition: transform .45s cubic-bezier(.22, .9, .35, 1);
	transform-origin: 50% 50%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	height: 60px;
}

/* One-time zoom effect applied to the image */
.logo-box img.logo-zoom {
	transform: scale(1.18);
}

/* Keep the rest of the header fixed/animation styles as before */
.site-header.fixed-active {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10);
}

.logo-box span {
	font-size: 15px;
	color: #000;
	line-height: 1.2;
	font-weight: 500;
	text-transform: uppercase;
}

/* Colored nav row fills full width under logo row */
.colored-nav .nav-link {
	color: #fff;
	font-weight: 700;
	text-align: center;
	padding: 15px 0;
	border-radius: 0;
	letter-spacing: .6px;
	font-size: 15px;
	min-width: 120px;
}

.navbar-toggler-icon {
	background-image: url('../images/burger-menu-right.svg');
	background-repeat: no-repeat;
	background-position: center;
	width: 1.5rem;
	height: 1.5rem;
}

.navbar-toggler {
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: transparent;
	padding: .25rem .5rem;
}

.header-top .btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
	background-color: #ff7a00 !important;
	border-color: #ff7a00 !important;
	color: #fff !important;
}

.header-top .btn:hover {
	background-color: #ff7a00 !important;
	border-color: #ff7a00 !important;
	color: #fff !important;
}

.colored-nav .nav-item {
	flex: 1;
}

.small {
	font-size: 16px !important;
	color: #fff !important;

}

.c-home {
	background: var(--accent-1);
	border-bottom: 4px solid #089a89;
	/* darker than #00d5ca */
}

.c-about {
	background: var(--accent-2);
	border-bottom: 4px solid #67a055;
	/* darker than #b6f368 */
}

.c-services {
	background: var(--accent-3);
	border-bottom: 4px solid #d9a810;
	/* darker than #fcc518 */
}

.c-gallery {
	background: var(--accent-5);
	border-bottom: 4px solid #0c8bbb;
	/* darker than #53cbfa */
}

.c-contact {
	background: var(--accent-4);
	border-bottom: 4px solid #af1b5d;
	/* darker than #ff7cd2 */
}

.c-home:hover {
	border-bottom-color: #00fff5;
}

.c-about:hover {
	border-bottom-color: #d4ff8a;
}

.c-services:hover {
	border-bottom-color: #ffd858;
}

.c-gallery:hover {
	border-bottom-color: #66a4bd;
}

.c-contact:hover {
	border-bottom-color: #ff9de0;
}

/* .c-home:hover,
.c-about:hover,
.c-services:hover,
.c-contact:hover .c-contact:hover {
	transform: translateY(-3px);
	transition: 0.3s ease;
} */

/* Make header sticky when it reaches top */
header.site-header.sticky-top {
	position: sticky;
	top: 0;
	z-index: 1030;
}

/* Header fixed state */

.site-header.fixed-active {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10);
}

/* Keyframes for fadeInDown (include WebKit prefix for older iOS/Safari) */
@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -20%, 0);
		transform: translate3d(0, -20%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -20%, 0);
		transform: translate3d(0, -20%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

/* ...existing code... */

/* Hero banner */
/* .hero {
	height: 100%;
	min-height: 303px;
	background-image: url('../images/hero-banner.jpg');
	background-size: cover;
	background-position: center;
} */
/* .hero {
	height: 100%;
    height: 303px;
    background-image: url(../images/hero-banner.jpg);
    background-size: inherit;
    background-position: top center;
} */

/* .hero {
    height: 303px; 
    background-image: url(../images/hero-banner.jpg);
    background-size: 100% 100%; 
    background-position: center top;
    background-repeat: no-repeat;
} */

.hero img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* .hero {
    height: 303px; 
    background-image: url(../images/hero-banner.jpg);
    background-size: 100% 100%; 
    background-position: center top;
    background-repeat: no-repeat;
} */

/* about section style */
.about-heading {
	color: #ffffff;
	text-align: center;
}

.about-heading h2 {
	font-size: 80px;
	/* font-weight: 800; */
	text-transform: uppercase;
	margin-bottom: 0px;
	letter-spacing: 1px;
	font-family: 'Knockout', Times, serif;
}

@media (max-width: 576px) {
	.about-heading h2 {
		font-size: 50px;
		line-height: 45px;

	}
}

.about-heading span {
	display: inline-block;
	font-weight: 500;
	opacity: 0.9;
}

.about-heading p {
	font-size: 20px;
	margin-top: 10px;
	opacity: 0.85;
}
.about-heading p a{
	color: #fff;
	text-decoration: none;
	font-weight: 800 !important;
}

.about-para {
	font-size: 20px;
	margin-top: 10px;
}

.feature {
	background: #07b8a3;
	color: #fff;
	padding: 3.5rem 0;
	overflow: visible;
	padding-bottom: 180px;
}

.feature-about {
	background: #81c66b !important;
	padding-bottom: 210px;

}

.feature-gallery {
	background: #11A2D9 !important;
	padding-bottom: 280px !important;

}

.feature-services {
	background: #ff7528 !important;
	padding-bottom: 210px;

}

.feature-contact {
	background: #de2779 !important;
	padding-bottom: 210px;

}

.feature .play-img {
	width: 100%;
}

.feature p {
	opacity: .95;
}

.feature .fa-ul {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}

.feature .fa-ul li {
	position: relative;
	padding-left: 20px;
	margin-bottom: .5rem;
	color: #ffffff;
	text-align: left;
	font-size: 20px;
}

.feature .fa-li {
	position: absolute;
	left: 0;
	top: 0.15rem;
	width: 1.6rem;
	text-align: center;

	display: inline-block;
	width: 10px;
	height: 10px;
	background: #ffffff;
	border-radius: 50%;
	margin-right: 10px;
	margin-top: 7px;
}

.feature .fa-li .fa {
	font-size: 1.15rem;
	color: #fff;
}

.feature .fa-ul li strong {
	color: #ffffff;
}

.button-orenge {
	display: inline-block;
	background: #ff7528;
	/* bright orange */
	color: #ffffff;
	font-weight: 600;
	font-size: 14px;
	padding: 12px 28px;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	border: none;
	box-shadow: 0px 6px 0px #d05d1f;
	transition: all 0.2s ease-in-out;
	margin-top: 15px;
}

.button-orenge:hover {
	transform: translateY(-2px);
	box-shadow: 0px 8px 0px #c7511a;
}

/* Click effect */
.button-orenge:active {
	transform: translateY(2px);
	box-shadow: 0px 3px 0px #b74617;
}

@media (max-width:767.98px) {
	.feature .fa-li {
		top: 0.1rem;
	}

	.feature .fa-ul li {
		padding-left: 20px;
	}
}

/* Footer */

/* ---------------------------
   Footer background image behind footer (::before)
   --------------------------- */
.list-unstyled li a {
	color: #fff;
	text-decoration: none;
}

footer.site-footer {
	position: relative;
	z-index: 2;
	background: transparent;
	overflow: visible;
}

/* make sure container content stays above overlay/background */
footer.site-footer .footer-container {
	position: relative;
	z-index: 3;
}

/* background image behind footer (and visible above previous section) */
footer.site-footer::before {
	content: "";
	position: absolute;
	left: 0;
	top: -210px;
	width: 100%;
	height: calc(100% + 160px);
	background-image: url('../images/footer-bg.png');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	z-index: 0;
	pointer-events: none;
}

/* optional overlay to improve text contrast (toggle opacity as needed) */
footer.site-footer::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #1D1D1D;
	z-index: 1;
	pointer-events: none;
}

/* small screens: reduce the 'peek' so it doesn't take too much space */
@media (max-width: 768px) {
	footer.site-footer::before {
		top: -125px;
		height: calc(100% + 80px);
		background-position: center top;
	}
}

/* if you want the image to be less tall on very small phones */
@media (max-width: 420px) {
	footer.site-footer::before {
		top: -145px;
		height: calc(100% + 60px);
	}
}

/* Logo + About in one row */
.footer-about {
	display: flex;
	align-items: flex-start;
}

.footer-logo {
	max-width: 130px;
}

/* Titles */
.footer-title {
	color: #fff !important;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

/* Social icons */
.socials {
	display: none;
}

.socials a {
	display: inline-flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	color: #fff !important;
	margin-left: 8px;
}

/* COPYRIGHT + SOCIALS SAME LINE */
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 15px;
}

/* Mobile fixes */
@media (max-width: 768px) {
	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}

	.socials a {
		margin-left: 6px;
	}
}

/* Responsive tweaks */
@media (max-width:767.98px) {
	/* .colored-nav {
		display: none;
	} */

	.header-top {
		align-items: center;
	}

	.feature .play-img {
		/* width: 60%; */
		transform: none;
		margin: 0 auto;
	}

}

/* Animated active background for colored nav links */
.colored-nav .nav-link,
#mobileNav a {
	transition: transform .18s ease, box-shadow .25s ease, color .15s ease;
	color: #fff !important;
	background-size: 200% 100%;
}

/* Apply the provided 4-stop gradient and animate when active/hover/focus */
.colored-nav .nav-link.active,
.colored-nav .nav-link:focus,
.colored-nav .nav-link:hover,
.colored-nav .nav-link[aria-current="page"],
#mobileNav a.active,
#mobileNav a:focus,
#mobileNav a:hover {
	/* background-image: linear-gradient(90deg,
			#81c66b 0%,
			#07b8a3 25%,
			#ff7528 70%,
			#de2779 100%); */
	/* animation: gradientShift 3s linear infinite; */
	transform: translateY(-3px);
	/* box-shadow: 0 8px 24px rgba(2, 6, 23, .12); */
	color: #fff !important;
}

/* Keyframes: slide gradient left↔right */
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

/* Smaller subtle lift for mobile */
@media (max-width:767.98px) {

	#mobileNav a.active,
	#mobileNav a:focus,
	#mobileNav a:hover {
		transform: translateY(-1px);
		box-shadow: 0 6px 18px rgba(2, 6, 23, .10);
		animation-duration: 3.2s;
	}
}

/* ...existing code... */

/* Service cards inside container */
.service-card {
	background: #07b8a3;
	/* border-radius:8px; */
	overflow: hidden;
	box-shadow: 0 12px 36px rgba(2, 6, 23, .06);
	display: flex;
	flex-direction: column;
	height: 100%;
	border-bottom: 8px solid #03907f;
	padding-top: 20px;
}

.card-white {
	background: #fff;
	border-bottom: 8px solid #feddcb;
	padding: 10px 24px;

}

.card-two {
	background: #81c66b !important;
	border-bottom: 8px solid #61a34b !important;

}

.card-three {
	background: #de2779 !important;
	border-bottom: 8px solid #b4195e !important;

}

.card-four {
	background: #019ed8 !important;
	border-bottom: 8px solid #027dab !important;

}

/* media / image area */
.service-media img {
	display: block;
	width: 100%;
	height: 180px;
	object-fit: cover;
}

/* body area with gradient and white text */
.service-body {
	/* background: #07b8a3; */
	color: #fff;
	flex: 1 1 auto;

}

.service-body h3 {
	font-family: 'Knockout', Times, serif;
	font-size: 30px;
}

.card-white-body {
	background: #fff;
	color: #000;
}

.card-white-body p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.35;
}

/* headings and list */
.service-body h3 {
	color: #fff;
}

.service-body ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.service-body ul li {
	position: relative;
	padding-left: 18px;
	margin-bottom: .6rem;
	line-height: 1.35;
}

/* simple white bullet using pseudo-element (font-awesome not required) */
.service-body ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}

/* responsive adjustments */
@media (max-width:991.98px) {
	.service-media img {
		height: 180px;
	}

	.service-card {
		border-width: 4px;
	}
}

@media (max-width:575.98px) {
	.service-media img {
		height: 160px;
	}

	.service-card {
		border-width: 3px;
	}
}

/* ...existing code... */

/* Outer wrapper full width */
.form-frame {
	padding: 10px;
	position: relative;
	background: url(../images/formbg.png) no-repeat;
	background-size: 100% 100%;
	width: 100%;
}

/* White form box */
.contact-form-wrap {
	position: relative;
	padding: 28px;
}

/* Remove old ::before / ::after border */
.contact-form-wrap::before,
.contact-form-wrap::after {
	display: none !important;
}

/* -------------------------
   ICON INSIDE INPUT FIELD
--------------------------*/
.input-with-icon {
	position: relative;
}

.icon-inside {
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translateY(-50%);
	font-size: 18px;
	color: #b7b7b7;
	pointer-events: none;
}

.textarea-icon {
	top: 16px;
	transform: none;
}

/* Input Styling */
.input-with-icon .form-control {
	padding-left: 46px !important;
	height: 46px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	font-size: 0.95rem;
}

.input-with-icon textarea.form-control {
	min-height: 150px;
	padding-top: 14px;
	padding-left: 46px !important;
}

/* Placeholder */
.form-control::placeholder {
	color: #c7c7c7;
}

/* Labels */
.col-form-label {
	font-weight: 600;
	color: #1f1f1f;
	display: inline-block;
}

.contact-details-item i {
	font-size: 22px;
}

.contact-details-item div {
	font-size: 18px;
	line-height: 1.4;
}

/* Button */
.btn-send {
	background: linear-gradient(180deg, #17c3a4, #0ea88d);
	padding: 10px 34px;
	border-radius: 30px;
	border: 0;
	color: #fff;
	font-weight: 700;
	box-shadow: 0 10px 20px rgba(0, 150, 120, 0.18);
	letter-spacing: .5px;
}

/* Extra Button */
.button-green {
	display: inline-block;
	background: #07b8a3;
	color: #ffffff;
	font-weight: 600;
	font-size: 14px;
	padding: 12px 28px;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: none;
	box-shadow: 0px 6px 0px #067c70;
	transition: all 0.2s ease-in-out;
	margin-top: 15px;
}

.button-green:hover {
	transform: translateY(-2px);
	box-shadow: 0px 8px 0px #067c70;
}

/* Responsive */
@media (max-width: 576px) {
	.contact-form-wrap {
		padding: 20px;
	}

	.btn-send {
		width: 100%;
	}
}

/* End of contact-form styles --- */

/* ---------- Gallery (reference-style) ---------- */
.gallery-section {
	padding: 3rem 1rem;
}

.gallery-section h2 {
	font-weight: 600;
	margin-bottom: 1.5rem;
}

/* Masonry: columns approach for waterfall layout */
/* .masonry {
	columns: 3;
	column-gap: 22px;
} */

.masonry-item {
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	margin-bottom: 22px;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(18, 24, 40, 0.08);
	transition: transform .22s ease, box-shadow .22s ease;
	background: #f8fafc;
	cursor: pointer;
}

.masonry-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 45px rgba(18, 24, 40, 0.12);
}

.masonry-item img {
	width: 100%;
	display: block;
	object-fit: cover;
	border-radius: 14px;
}

/* size variants to emulate the reference layout */
.masonry-item.small img {
	height: 160px;
}

.masonry-item.medium img {
	height: 240px;
}

.masonry-item.large img {
	height: 360px;
}

/* responsiveness */
@media (max-width: 992px) {
	.masonry {
		/* columns: 2; */
		column-gap: 18px;
	}
}

@media (max-width: 576px) {
	.masonry {
		columns: 1;
		column-gap: 12px;
	}

	.masonry-item.small img {
		height: 140px;
	}

	.masonry-item.medium img {
		height: 200px;
	}

	.masonry-item.large img {
		height: 280px;
	}
}

/* Modal image */
.modal-img {
	width: 100%;
	height: auto;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 10px;
}

.modal-dialog-centered .modal-content {
	background: transparent;
	border: none;
	box-shadow: none;
}

/* container width similar to reference */
.gallery-section .container {
	max-width: 1100px;
}

@media (max-width: 767px) {

	.about-heading span,
	.about-heading p {
		text-align: left !important;
	}

	#aboutTitle,
	.about-para,
	.headng-about {
		text-align: left !important;
	}
}

/* 11-12-25 css chnages */
/* .colored-nav, .hero, .feature, .gallery-section{
	max-width: 1300px;
	margin:0 auto;
} */
/* .feature .fa-ul li {
	padding-left: 0px !important;
} */

.imageicon {
	width: 35px;
	height: 35px;
}

@media (max-width: 576px) {
	#masonryGrid {
		display: flex;
		flex-direction: column;
	}

	#masonryGrid .masonry-item:nth-child(1) {
		order: 1;
	}

	#masonryGrid .masonry-item:nth-child(2) {
		order: 2;
	}

	#masonryGrid .masonry-item:nth-child(3) {
		order: 3;
	}

	#masonryGrid .masonry-item:nth-child(4) {
		order: 4;
	}

	#masonryGrid .masonry-item:nth-child(5) {
		order: 6;
	}

	#masonryGrid .masonry-item:nth-child(6) {
		order: 5;
	}

	#masonryGrid .masonry-item:nth-child(7) {
		order: 9;
	}

	#masonryGrid .masonry-item:nth-child(8) {
		order: 10;
	}

	#masonryGrid .masonry-item:nth-child(9) {
		order: 8;
	}

	#masonryGrid .masonry-item:nth-child(10) {
		order: 7;
	}

	.logo-box span {
		font-size: 13px !important;
	}
}

@media (max-width: 991px) {

	.card-service-wrapper {
		display: flex;
		flex-direction: column;
	}

	.card-1 {
		order: 1;
	}

	.card-3 {
		order: 2;
	}

	.card-2 {
		order: 3;
	}

	.card-4 {
		order: 4;
	}

	.card-5 {
		order: 5;
	}

	.card-7 {
		order: 6;
	}

	.card-6 {
		order: 7;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.about-para {
		text-align: left !important;
	}

	#aboutTitle {
		text-align: left !important;
	}
	/* .masonry img{
		
	} */
	 .masonry img{
    object-fit: fill !important;
    min-height: 320px !important;
}
	 
}

/* ------------------------------------------ */
a.nav-link {
	padding: 8px 14px !important;
	border-radius: 10px !important;
}

.colored-nav .nav-item {
	flex: unset !important;
	margin: 0 6px;
}

.header-top {
	justify-content: space-between !important;
}

.masonry img {
	cursor: pointer;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	width: 100%;
	height: 100%;
	max-height: 350px;
	/* object-fit: cover; */
	object-fit: fill;
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.feature .fa-ul li {
		font-size: 16px;
	}

	.ourofferforfam {
		margin-top: 0px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.colored-nav .nav-link {
		font-size: 13px;
	}

	.feature .fa-ul li {
		font-size: 16px;
	}

	.ourofferforfam {
		margin-top: -190px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.colored-nav .nav-link {
		font-size: 10px;
	}

	.logo-box img {
		height: 45px;
	}

	.logo-box span {
		font-size: 11px;
	}

	.colored-nav .nav-item {
		flex: unset !important;
		margin: 0 2px;
	}
	.colored-nav .nav-link{
		min-width: 90px !important;
	}
	.logo-box{
		padding: .25rem .4rem;
		gap: 0;
	}
}

/*title style for gallery */
.gallery-item {
	display: block;
}

.gallery-item .img-title {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: .35rem;
	display: block;
}