:root {
	--bg: #fff6ea;
	/* page background */
	--text: #121826;
	/* base text color */
	--muted: #6b7280;
	/* muted text */
	--primary: #4d6bff;
	/* brand blue */
	--primary-2: #7ba2ff;
	/* brand blue (light) */
	--card: #ffffff;
	/* white card */
	--shadow: 0 10px 25px rgba(27, 51, 150, 0.12);
}

body {
	background: var(--bg);
	color: var(--text);
}

/* Section spacing */
.section {
	padding: 2rem 0;
}

/* Small pill/kicker */
.kicker {
	display: inline-block;
	padding: .35rem .9rem;
	font-weight: 600;
	font-size: .9rem;
	border-radius: 999px;
	background: rgba(77, 107, 255, .1);
	color: var(--primary);
	border: 1px solid rgba(77, 107, 255, .25);
	backdrop-filter: blur(4px);
}

/* Title with subtle gradient fill */
.gradient-text {
	background: linear-gradient(90deg, var(--primary), var(--primary-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lead-sm {
	color: var(--muted);
	font-size: 1.05rem;
}

/* Check-list styling */
.tick i {
	font-size: 1rem;
}

.tick {
	gap: .6rem;
}

/* CTA button */
.btn-cta {
	--bs-btn-padding-x: 1.25rem;
	--bs-btn-padding-y: .7rem;
	--bs-btn-font-weight: 700;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--primary), var(--primary-2));
	border: none;
	box-shadow: var(--shadow);
}

.btn-cta:hover {
	filter: brightness(.95);
}

/* Right visual card with layered accents */
.visual-wrap {
	position: relative;
}

.visual-card {
	background: var(--card);
	border-radius: 1.25rem;
	box-shadow: var(--shadow);
	padding: 1.1rem;
	position: relative;
	z-index: 1;
}

.device {
	border-radius: 1rem;
	border: 3px solid #0b1040;
	overflow: hidden;
	aspect-ratio: 4/5;
	/* keeps a nice ratio even before image loads */
	background: #eef2ff;
}

.device img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Blue slanted accent behind */
.accent-blob {
	position: absolute;
	inset: -10% -8% auto auto;
	width: 66%;
	height: 78%;
	background: var(--primary);
	border-radius: 1rem 3rem 1rem 1rem;
	transform: rotate(-7deg);
	filter: blur(.25px);
	z-index: 0;
	opacity: .9;
}

/* Sparkle dots */
.sparkle {
	position: absolute;
	right: 10px;
	top: 14px;
	font-size: 1.2rem;
	opacity: .65;
}

.sparkle.bottom {
	left: 12px;
	bottom: 12px;
	top: auto;
	right: auto;
}

@media (max-width: 991.98px) {
	.section {
		padding: 3.5rem 0;
	}

	.title {
		font-size: 1.85rem;
	}
}


.bsclor {
	background-color: #fdf7ec;
}


.info-section {
	padding: 60px 0;
}

.info-img {
	background: linear-gradient(135deg, #0a0c2b, #1a1c3c);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.info-img img {
	max-width: 100%;
	border-radius: 15px;
}

.info-title {
	font-size: 2rem;
	font-weight: 700;
}

.info-title span {
	color: #4a6cf7;
	/* gradient-like blue */
}

.info-list {
	list-style: none;
	padding: 0;
}

.info-list li {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.info-list li::before {
	content: "✔";
	color: #4a6cf7;
	font-weight: bold;
	margin-right: 10px;
}


.co-section {
	padding: 26px 0;
	background: #f6f8ff;
}

.co-title {
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 24px;
}

.co-card {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	position: relative;
	transition: all 0.3s ease;
	z-index: 11;
}

.co-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.co-number {
	position: absolute;
	top: -1px;
	font-size: 19px;
	font-weight: 700;
	color: #4a6cf7;
	opacity: 0.8;
}

.co-image-stack {
	position: relative;
	text-align: center;
}

.co-image-stack img.main {
	max-width: 100%;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.co-image-stack img.overlay {
	max-width: 70%;
	border-radius: 12px;
	position: absolute;
	bottom: -30px;
	right: 10%;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.co-card p {
	margin-top: 8px;
}


.adv-section {
	padding: 23px 0;
	background: #fff;
}

.adv-title {
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 70px;
}

.adv-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 30px;
}

.adv-icon {
	width: 50px;
	height: 50px;
	border: 2px solid #4a6cf7;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #4a6cf7;
	font-size: 20px;
	flex-shrink: 0;
}

.adv-text {
	flex: 1;
	font-size: 1rem;
	line-height: 1.5;
}

.adv-img {
	text-align: center;
}

.adv-img img {
	max-width: 100%;
}


.mrttop {
	margin-top: 0px !important;
}


.roadmap-section {
	padding: 80px 0;
	background: linear-gradient(180deg, #f7f8fc, #eaf0ff);
	background-image: url(../../img/sdg-img/bcimg.jpg);
}


.roadmap-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 30px;
}

.roadmap-card {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: flex-start;
	gap: 15px;
	transition: all 0.3s ease;
}

.roadmap-card.blue {
	background: #4a6cf7;
	color: #fff;
}

.roadmap-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.roadmap-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #eef2ff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	color: #4a6cf7;
	flex-shrink: 0;
}

.roadmap-card.blue .roadmap-icon {
	background: #fff;
	color: #4a6cf7;
}

.roadmap-text {
	flex: 1;
	font-size: 0.95rem;
	line-height: 1.5;
}

.roadmap-img {
	text-align: center;
}

.roadmap-img img {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


:root {
	--brand-blue: #1565D8;
	/* main brand */
	--card-bg: #eef3fb;
	/* light card */
	--text-dark: #0f172a;
	/* slate-900 */
	--muted: #6b7280;
}

.focus-section {
	padding: 72px 0;
	background: #fff;
}

.focus-title {
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.02em;
}

.focus-sub {
	color: var(--muted);
}

.focus-list {
	margin-top: 28px;
}

.focus-item {
	background: #f3f6fd;
	border-radius: 16px;
	padding: 22px 22px;
	box-shadow: 0 6px 18px rgba(15, 23, 42, .06);
	border: 1px solid #e7eefc;
	transition: transform .2s ease, box-shadow .2s ease;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 16px;
}

.focus-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(15, 23, 42, .10);
}

.focus-item.primary {
	background: var(--brand-blue);
	color: #fff;
	border-color: rgba(255, 255, 255, .2);
}

.focus-item.primary .focus-icon {
	background: #fff;
	color: var(--brand-blue);
}

.focus-icon {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: #e7edfb;
	color: var(--brand-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 40px;
	font-size: 18px;
}

.focus-text {
	font-weight: 700;
	font-size: 1.02rem;
	line-height: 1.5;
}

/* Right image panel */
.focus-image {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(15, 23, 42, .18);
}

.focus-image img {
	width: 100%;
	height: auto;
	display: block;
}


.funding-box {
	display: flex;
	align-items: center;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 2rem;
	transition: transform 0.3s ease;
}


.funding-box:hover {
	transform: translateY(-5px);
}

.funding-img {
	flex: 0 0 280px;
	max-width: 500px;
	height: 100%;
	object-fit: cover;
}

.funding-text {
	padding: 1.5rem;
	font-size: 1rem;
	font-weight: 500;
	color: #0d1b2a;
}


.roadmapfund {
	padding: 0px 0;
	background: linear-gradient(180deg, #f7f8fc, #eaf0ff);
	background-image: url(../../img/sdg-img/bcmain.jpg);
}


.slanted-box {
	width: 900px;
	height: 110px;
	background: #fff;
	border-radius: 8px;
	clip-path: polygon(20px 0, 100% 0, 100% 100%, 0% 100%);
	position: relative;
	left: -42px;
	padding-left: 120px;
}


.slanted-box1 {
	width: 900px;
	height: 110px;
	background: #fff;
	border-radius: 8px;
	clip-path: polygon(20px 0, 100% 0, 100% 100%, 0% 100%);
	position: relative;
	left: -42px;
	padding-left: 120px;
}

.slanted-box2 {
	width: 900px;
	height: 110px;
	background: #fff;
	border-radius: 8px;
	clip-path: polygon(20px 0, 100% 0, 100% 100%, 0% 100%);
	position: relative;
	left: 60px;
	padding-left: 120px;
}


.section-bg {
	background: #f1f7fd;
	/* light background */
	position: relative;
	overflow: hidden;
	padding: 80px 20px;
}

/* Blue wave effect */
.wave {
	position: absolute !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 330px !important;
	background: #0d47a1 !important;
	border-top-left-radius: 50% 100% !important;
	border-top-right-radius: 50% 100% !important;
	z-index: 1;
}

.content-box {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
	padding: 30px;
	z-index: 2;
	position: relative;
	height: 334px;
}

h2 {
	font-weight: 600;
	margin-bottom: 50px;
}

h5 {
	font-weight: 700;
}

.content-box p {
	margin-bottom: 12px;
	text-align: left;
}


.benefits-section {
	padding: 60px 0;
}

.benefits-title {
	font-weight: 600;
	font-size: 2rem;
	color: #1c1c2c;
}

.benefit-item {
	display: flex;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

.benefit-item:last-child {
	border-bottom: none;
}

.benefit-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #1e40af;
	/* dark blue */
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	font-size: 18px;
	flex-shrink: 0;
}

.benefit-text {
	font-size: 14px;
	color: #333;
}

.benefits-image img {
	border-radius: 5px;
	width: 100%;
	height: auto;
	object-fit: cover;
}


.circle-center {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1.2rem;
	text-align: center;
	margin: 0 auto;
	position: relative;
}

.point {
	display: flex;
	align-items: center;
	margin: 30px 0;
}

.point-number {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #4f46e5, #3b82f6);
	color: #fff;
	font-weight: bold;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 15px;
	flex-shrink: 0;
}

.point-text {
	background: #f1f5ff;
	padding: 15px;
	border-radius: 8px;
	font-size: 0.95rem;
	color: #111827;
	max-width: 300px;
}

.conclusion {
	background: #eef3ff;
	padding: 25px;
	border-radius: 10px;
	margin-top: 40px;
}

.conclusion h5 {
	font-weight: 700;
	margin-bottom: 10px;
}


.imgwidth {
	width: 80% !important;
}


.bar-container {
	position: relative;
	width: 100%;
	max-width: 800px;
	height: 30px;
	z-index: 1;
	top: 20px;
}

.barc {
	position: absolute;
	left: 0;
	right: 0;
	height: 30px;
	border-radius: 15px 15px 0px 0px;
}

.bar1c {
	background-color: #a5b4fc;
	z-index: 1;
}

.bar2c {
	background-color: #c7d2fe;
	top: -6px;
	z-index: 0;
}

.bar3c {
	background-color: #e0e7ff;
	top: -12px;
	z-index: -1;
}

.vvwidth {
	width: 31px;
	height: 31px;
}


.focus-item:hover {
	background-color: #1565d8;
	/* Bootstrap primary blue */
	color: white;
}

.focus-item:hover strong {
	color: white;
}


.roadmap-card:hover {
	background-color: #4a6cf7;
	/* Bootstrap primary blue */
	color: white;
}

.roadmap-card:hover strong {
	color: white;
}


.college-section {
	padding: 60px 0;
	background: linear-gradient(180deg, #f7f8fc, #eaf0ff);
	background-image: url(../../img/sdg-img/bcforcollegefund.jpg);
	background-size: cover;
	background-position: bottom;
}


.imgwidth2 {
	width: 70% !important;
}

.bg-light1 {
	background-color: #0077b6;
}

.bg-light2 {
	background-color: #0096c7;
}


.bg-light3 {
	background-color: #00b4d8;
}

.bg-light1 h4 {
	color: #fff;
}

.bg-light1 h4,
.bg-light1 p {
	color: #fff !important;
}

.bg-light3 h4,
.bg-light3 p {
	color: #fff !important;
}


.bg-light2 h4,
.bg-light2 p {
	color: #fff !important;
}


.bgcs {
	background-color: #fdfbfb;
}


.pt5 {
	padding-top: 3rem !important;
}

@media screen and (min-device-width: 320px) and (max-device-width: 388px) {
	
.roadmap-section {
	padding: 41px 0;
}

	.exvent-hero-section-03 {
		height: 177px !important;
		z-index: 1;
		border: 7px solid #96261d;
	}

	.info-section {
	padding: 18px 0;
}

.imgwidther22 {
	width: 100%;
	padding-top: 0px !important;
}

.content-box {
	height: 100%;
}

	.imgwidther{ width: 100%; padding-top: 0px !important;}

.padmobzero{margin-top: 0 !important;}

}
@media screen and (min-device-width: 388px) and (max-device-width: 480px) {

	.content-box {
	height: 100%;
}
	
	.imgwidther{ width: 100%; padding-top: 0px !important ;}

	.imgwidther22 {
	width: 100%;
	padding-top: 0px !important;
}

.padmobzero{margin-top: 0 !important;}
	.exvent-hero-section-03 {
		position: relative;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		height: 189px !important;
		z-index: 1;
		border: 7px solid #96261d;
	}

}

@media only screen and (min-width: 320px) and (max-width: 660px) {
.py5{    padding-top: 0rem !important;
    padding-bottom: 0rem !important;}
}


@media screen and (min-device-width: 320px) and (max-device-width: 480px) {

	.focus-section {
	padding: 22px 0;
	background: #fff;
}

.roadmap-card {
	display: flow-root;

}



	.mrttop {
		margin-top: 0px !important;
	}

	.imgwidth {
		width: 80% !important;
		text-align: center;
		margin: auto;
		display: flex;
	}

	.roadmap-title {
	font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
	}

	.display-6 {
		font-size: calc(1.375rem + 1.5vw);
		font-weight: 300;
		line-height: 1.2;
		text-align: center;
	}

	.funding-box {
		display: inherit !important;
		align-items: center;
		border-radius: 12px;
		overflow: hidden;
		margin-bottom: 0rem;
		transition: transform 0.3s ease;
	}

	.pt5 {
		padding-top: 0rem !important;
		padding-right: 0 !important;
	}

	.slanted-box1 {
		width: auto;
		height: auto;
		background: #fff;
		border-radius: 8px;
		clip-path: inherit;
		position: relative;
		left: 0px;
		padding-left: 10px;
	}

	.funding-img {
		flex: 0 0 280px;
		max-width: 380px;
		height: 100%;
		object-fit: cover;
	}

	.slanted-box2 {
		width: auto;
		height: auto;
		background: #fff;
		border-radius: 8px;
		clip-path: inherit;
		position: relative;
		left: 0px;
		padding-left: 10px;
	}

	.slanted-box3 {
		width: auto;
		height: auto;
		background: #fff;
		border-radius: 8px;
		clip-path: inherit;
		position: relative;
		left: 0px;
		padding-left: 10px;
	}

	.section-bg {
		background: #f1f7fd;
		position: relative;
		overflow: hidden;
		padding: 18px 20px;
	}

	.roadmapfund {
		padding: 0px 0;
		background: linear-gradient(180deg, #f7f8fc, #eaf0ff);
		background-image: url(../../img/sdg-img/bcmain.jpg);
	}

	.content-box {
		background: #fff;
		border-radius: 12px;
		box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
		padding: 22px;
		z-index: 2;
		position: relative;
	}

	.college-section {
		padding: 30px 0;
		background: linear-gradient(180deg, #f7f8fc, #eaf0ff);
		background-image: url(../../img/sdg-img/bcforcollegefund.jpg);
		background-size: cover;
		background-position: bottom;
	}

	.benefits-title {
		font-weight: 600;
		font-size: 2rem;
		color: #1c1c2c;
		text-align: center;
	}

	.imgwidth2 {
		width: 70% !important;
		text-align: center;
		margin: auto;
		display: flex;
	}

	.slanted-box {
		width: auto !important;
		height: auto !important;
		background: #fff;
		border-radius: 8px;
		clip-path: inherit;
		position: relative;
		left: 0px !important;
		padding-left: 16px !important;
	}
}


.exvent-hero-section-03 {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	/* background-size: 100% !important;  */
	z-index: 1;
}

.exvent-hero-section-03 {
    position: relative;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    height: 690px;
    z-index: 1;
    border: 7px solid #a4436d;
    border-top: 0px;
}


/*================================================
Go Top CSS
=================================================*/
.go-top {
	position: fixed;
	cursor: pointer;
	top: 0;
	right: 15px;
	color: #ffffff;
	background-color: #2f5bea;
	z-index: 4;
	width: 40px;
	text-align: center;
	height: 40px;
	line-height: 40px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .9s;
	transition: .9s;
	border-radius: 50%;
	border: 1px solid #2f5bea;
}

.go-top.active {
	top: 98%;
	-webkit-transform: translateY(-98%);
	transform: translateY(-98%);
	opacity: 1;
	visibility: visible;
}

.go-top i {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	font-size: 16px;
}

.go-top i:last-child {
	opacity: 0;
	visibility: hidden;
	top: 60%;
}

.go-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: #000000;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	border-radius: 50%;
}

.go-top:hover,
.go-top:focus {
	color: #ffffff;
}

.go-top:hover::before,
.go-top:focus::before {
	opacity: 1;
	visibility: visible;
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
	opacity: 0;
	top: 0;
	visibility: hidden;
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
	opacity: 1;
	visibility: visible;
	top: 50%;
}

/*# sourceMappingURL=style.css.map */

.switch-box {
	display: none;
}


.container,
.row {
	margin-left: auto !important;
	margin-right: auto !important;
}


.ptls{padding-top: 100px;}





.logocon{    margin-left: 11px;
    margin-top: 12px;
}



    .pricing-table {
      margin-top: 40px;
    }
    .pricing-table .card {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      height: 100%;
    }
    .pricing-table .card-header {
      background: #a91e2c;
      color: #fff;
      font-weight: bold;
      text-align: center;
      padding: 12px;
    }
    .pricing-table .list-group-item {
      font-size: 15px;
      border: none;
      border-bottom: 1px solid #f0f0f0;
    }
    .pricing-table .highlight {
      background-color: #ffeef0;
      font-weight: 500;
    }
    .pricing-title {
      text-align: center;
      margin-bottom: 30px;
    }



	   	.bcmember {
		padding: 30px 0;
		background: linear-gradient(180deg, #f7f8fc, #eaf0ff);
		background-image: url(../../img/rh-images/bcmember.jpg);
		background-size: cover;
	}


	.imgwidther{ width: 100%; padding-top: 160px ;}

		.imgwidther22{ width: 100%; padding-top: 80px;}



		.section-title p {
	max-width: 100% !important;
	margin: auto;
	/* line-height: 1.8; */
	text-align: left;
}

a:hover, a:focus {
	text-decoration: none;
	color: #1b0cf6 !important;
	outline: 0;
}

.blink-hard a {
	color: #03179d;
	text-decoration: none;
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}



.bg-dark {
    --bs-bg-opacity: 1;
    background-color: #000!important;
}

.fft img {
    width: 23px;
    margin-right: 10px;
}

.cct img {
    width: 23px;
    margin-right: 10px;
}

.ppt img {
    width: 23px;
    margin-right: 10px;
}

.phonesear {
    text-align: center;
    margin-right: 46px;
}

.mrgtype{width: 89%;
  color: #fff;
  margin: auto;
    margin-bottom: auto;
  margin-bottom: 10px;}

  .gallrt {
	background-color: #eeecec;
	padding: 16px;
	margin-top: 20px;
}




.py5{    padding-top: 3rem ;
    padding-bottom: 0rem ;}




	
         
         .gallery-item{
            margin-bottom:5px;
         }
         .inaug-video{
            background-color:#ad2e2e !important;
         }
         .btn-watch-video {
            line-height: 30px;
            height: 37px;
            border-radius: 22px;
            display: inline-block;
            background: rgba(0, 0, 0, 0.4);
            color: white;
            text-decoration: none;
            padding: 4px 46px 5px 20px;
            position: relative;
            box-sizing: border-box;
            text-transform: uppercase;
            font-size: 13px;
            font-weight: bold;
            letter-spacing: 1px;
            transition: all 200ms ease-in;
            margin-bottom: 10px;
         }
         .btn-watch-video .fa {
            width: 32px;
            height: 32px;
            line-height: 32px;
            text-align: center;
            border-radius: 50%;
            border: solid 1px white;
            position: absolute;
            top: 3px;
            right: 4px;
            text-indent: 4px;
         }
         .btn-watch-video:hover {
         padding-right: 50px;
         padding-left: 24px;
         }
         .somanath-video{
            background-color:#fff !important;
            color:#111 !important;
         }
         .somanath-video .fa{
            border:solid 1px black;
         }
         .pan-dis {
            text-align:left !important;
         }
         .mode{
            text-align:justify !important;
         }
         .panel-list{
            color:#af4656;
         }
         .dis-sess{
            text-align:left !important;
         }
         .title {
            color: #111 !important;
         }
         .footer{
            margin-top:0px !important;
         }
         .sec-bg{
         background: url(../../img/sdgwalk/sec-bg.jpg) !important; 
         }
         .you-vid{
            border-radius:10px;
         }
         .title div span {
            background: linear-gradient(135deg, #00b894, #0984e3);
            display: inline-block;
            height: 10px;
            width: 10px;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0, 184, 148, 0.5);
            margin: 0 3px;
         } 
         .walk-gallery img{
            width:100% !important;
            height:200px !important;
         }
         .hmda{
            width:80%;
         }
         .titlehead{
            text-align:center !important;
            margin-bottom:10px !important;
         }
         .wehubh2 {
            font-size: 15px !important;
            text-align: center !important;
            border-bottom: 1px dashed #a19d9dcc;
         }
         .partner{
            padding-bottom:18px !important;
         }
         .title div span::before {
            border: 1px solid #d8d8d8 !important;
            content: "";
            position: absolute !important;
            right: 15px !important;
            top: 3px !important;
            width: 20px !important;
         }
         .title div span::after {
            border: 1px solid #d8d8d8 !important;
            content: "";
            left: 15px !important;
            position: absolute !important;
            top: 3px !important;
            width: 20px !important;
         }
         .grey-bg {
            background-color: #f1f3ff !important;
         }
         .mfp-img {
    max-height: 540px !important;
}
 /* Gallery Styles */
.gallery_container {
  /* max-width: 1200px; */
  margin: 0 auto;
}

@media (min-width: 1300px) and (max-width: 2560px) {
  .popup-gallery {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

@media (min-width: 700px) and (max-width: 1299px) {
  .popup-gallery {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (min-width: 300px) and (max-width: 699px) {
  .popup-gallery {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

.gallery_item {
  margin-bottom: 5px;
  overflow: hidden;
}

.popup-gallery a {
  display: block;
  width: 100%;
  border: 1px solid #fff;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.popup-gallery a:hover {
  transform: scale(1.05);
  border-color: #fff;
}

.popup-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
  min-height: 250px;
  max-height: 250px;
}




.image-containerimg {
  width: 100%;
  transition: transform 0.4s ease;
}

.image-containerimg:hover {
  transform: scale(1.2);
}

@media (min-width: 320px) and (max-width: 480px) {
.sdgpageres{
margin-bottom: 9px;
  margin-top: 10px;
}
}