@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html {
	font-size: 16px;
	overflow-x: hidden;
}

body {
	position: relative;
	font-family: 'roboto', sans-serif;
	background: #fff;
}

/*.container {
    max-width: 1170px;
}*/

:root {
	--white: #ffffff;
	--black: #000;
	--gary-color: #727272;
	--lightgary-color: #b2b9bd;
	--theme-color: #202f66;
	--primary-color: #93292d;
	--kumbh: "Kumbh Sans", sans-serif;
	--nunito: "Nunito", sans-serif;
}

p {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5;
	color: #666B68;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #000;
}

.img-auto {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

a,
button {
	text-decoration: none !important;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a:hover,
button:hover {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

figure {
	margin: 0;
}

section {
	padding: 5rem 0;
}

/* loader */
.preLoader {
	width: 100%;
	height: 100%;
	z-index: 1111;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.preLoader.black {
	background-color: #fff;
	z-index: 11113;
}
.preLoader.black img {
  width: 300px;
}
.preLoader.white {
	z-index: 11112;
	background-color: #879CCC;
}

/* loader */

/* Cursor Start */

.mouse-cursor {
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	border-radius: 50%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	visibility: hidden;
}

.cursor-inner {
	margin-left: 2px;
	margin-top: 2px;
	width: 7px;
	height: 7px;
	z-index: 10000001;
	background-color: var(--primary);
	-webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	-o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
	margin-left: -10px;
	margin-top: -10px;
	width: 30px;
	height: 30px;
	background-color: var(--primary);
	opacity: 0.3;
}

/* Cursor End */

/* btn css */

.themeBtn {
	background: white;
	font-size: 1rem;
	color: #0F0F0F;
	text-transform: capitalize;
	font-weight: 700;
	display: inline-block;
	padding: 1rem 3rem;
	border-radius: 100px;
	line-height: normal;
}

.themeBtn:hover {
	background-color: #0F0F0F;
	color: white;
}

.themeBtn.borderBtn {
	background: transparent;
	border: 1px solid #fff;
	padding: 1rem;
}

/* btn css */

/* mouse animation css  */

.bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
	from {
		transform: translateY(0px);
	}

	to {
		transform: translateY(-15px);
	}
}

@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}

	to {
		transform: translateY(-15px);
	}
}

.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
}

/* mouse animation css  */

/* navigation css */

.navbar-nav {
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	gap: 2rem;
}

.navbar-nav .nav-item .nav-link {
	font-size: 1.3rem;
	color: var(--white);
	text-transform: capitalize;
	font-weight: 500;
	padding: 0 0;
	display: inline-block;
}
.navbar-brand img {
  width: 123px;
}

/* .navbar-nav .nav-item:last-child .nav-link {
	background: var(--theme-color);
	font-size: 1rem;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	border-radius: 0;
	padding: 1.04em 1.56em;
	border-radius: 0;
} */
.an-navbar {
	padding: 1.35rem 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
}

.navbar ul li {
	margin: 0;
	list-style: none;
}

.navbar ul li a {
	font-size: 20px;
	color: white;
}

.navbar .themeBtn {
	flex-shrink: 0;
	color: white;
	padding: 1rem 2rem;
}

.navbar .themeBtn:hover {
	background-color: white;
	color: #0F0F0F;
}

/* Dropdown */

.navbar .nav-item.drop-down {
	position: relative;
	z-index: 1;
}

.navbar .drop-down>a:after {
	content: "\f0d7";
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	padding-left: 5px;
	color: var(--primary-color);
}

.navbar .drop-down ul {
	display: block;
	position: absolute;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
	transition: 0.3s;
}

.navbar .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .drop-down li {
	min-width: 200px;
	position: relative;
	list-style: none;
}

.navbar .drop-down ul a {
	padding: 0.5em 1.125em;
	font-size: 1rem;
	font-weight: 400;
	color: #151515;
	display: block;
	text-transform: capitalize;
}

.navbar .drop-down ul a:hover {
	background: var(--primary-color);
	color: #fff;
}

.social-links {
	display: flex;
	gap: 2rem;
	margin: 0 3rem;
}

/* navigation css */

/* slider css */

.mainSlider {
	height: 940px;
	position: relative;
	z-index: 1;
}

.homeSlider.swiper-container {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
	/* overflow: hidden; */
}

.homeSlider .slide-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 10rem;
}

.slideContent p {
	color: var(--white);
	font-size: 25px;
}
.slideContent h3,
.slideContent h4{
	color: var(--white);

}

.homeSlider.swiper-container .swiper-button-next {
	width: auto;
	height: auto;
	background: none;
	right: 33px;
	font-weight: 800;
	color: #fff;
	transform: rotate(90deg);
	margin-top: 20px;
	overflow: hidden;
}

.homeSlider.swiper-container .swiper-button-next * {
	-webkit-transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-ms-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}

.homeSlider.swiper-container .swiper-button-next span {
	position: relative;
	display: inline-block;
}

.homeSlider.swiper-container .swiper-button-next span:before {
	position: absolute;
	top: 100%;
	content: attr(data-hover);
}

.homeSlider.swiper-container .swiper-button-next span:before {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.homeSlider.swiper-container .swiper-button-next:hover span {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%);
	color: var(--theme-color);
}

.homeSlider.swiper-container .swiper-button-prev {
	width: auto;
	height: auto;
	background: none;
	left: auto;
	right: 33px;
	font-weight: 800;
	color: #fff;
	transform: rotate(90deg);
	margin-top: -40px;
	overflow: hidden;
}

.homeSlider.swiper-container .swiper-button-prev * {
	-webkit-transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-ms-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}

.homeSlider.swiper-container .swiper-button-prev span {
	position: relative;
	display: inline-block;
}

.homeSlider.swiper-container .swiper-button-prev span:before {
	position: absolute;
	top: 100%;
	content: attr(data-hover);
}

.homeSlider.swiper-container .swiper-button-prev span:before {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.homeSlider.swiper-container .swiper-button-prev:hover span {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%);
	color: var(--theme-color);
}

.homeSlider.swiper-container .swiper-pagination-fraction {
	width: auto;
	position: absolute;
	left: auto;
	right: 5rem;
	bottom: 0;
	color: #fff;
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: center;
	top: 0;
	justify-content: center;
	gap: 6rem;
}

.homeSlider.swiper-container .swiper-pagination-fraction .swiper-pagination-current {
	font-size: 4.375rem;
	font-weight: 400;
	color: var(--color);
}

.homeSlider.swiper-container .swiper-pagination-fraction .swiper-pagination-total {
	font-size: 2.5rem;
	font-weight: 400;
	opacity: 50%;
	color: #fff;
}

.mainSlider h2 {
	margin: 0 0 1.5rem;
}

.homeSlider .swiper-button-next:after,
.homeSlider .swiper-rtl .swiper-button-prev:after {
	display: none;
}

.homeSlider .swiper-button-prev:after,
.homeSlider .swiper-rtl .swiper-button-next:after {
	display: none;
}

.headingOne {
	font-size: 1.75rem;
	color: var(--white);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.4rem;
	margin: 0 0 1rem;
}

.headingTwo {
	font-size: 4rem;
	color: var(--white);
	font-weight: 700;
	text-transform: capitalize;
	line-height: 1.2;
	letter-spacing: -2px;
}

.headingThre {
	font-size: 2.8125rem;
	font-weight: 500;
	color: var(--white);
}

.topLogo {
	padding: 10px 0;
}

.topLogo .clrBtn {
	background: var(--primary-color);
}

.topLogo .d-flex {
	justify-content: flex-end;
	gap: 1rem;
}

.sliderSocial {
	position: absolute;
	left: 4rem;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 11;
	flex-direction: column;
	gap: 2rem;
}

.sliderSocial li a {
	font-size: 1.2rem;
	color: var(--white);
}

.rounded-btn {
	width: 250px;
	height: 250px;
	border-radius: 100%;
	font-size: 25px;
	font-weight: 600;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 5px solid white !important;
}

.rounded-btn:hover {
	background-color: white;
	color: #0F0F0F;
}

.second-content h3 {
	color: #0F0F0F;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1rem;
}

.second-content h3 span {
	color: #FFBA00;
}

.second-wrap {
	position: relative;
}

.second-wrap-content h4 {
	color: #FFF;
	font-size: 32px;
	font-weight: 600;
	letter-spacing: -1px;
}

.second-wrap-content p {
	color: #FFF;
	font-size: 18px;
	font-weight: 300;
}

.second-wrap-content a {
	color: #FFF;
	font-family: "Epilogue", sans-serif;
	font-size: 16px;
	font-weight: 700;
	border-bottom: 1px solid white;
	padding-bottom: 5px;
}
.second-wrap.no-image .second-wrap-content {
  position: relative;
}
.second-wrap-content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 40px;
}

.second-wrap::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #0000005C;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 30px;
}

.sub-hd {
	color: #FFF;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.mainHead {
	color: #FFF;
	font-size: 62px;
	font-weight: 700;
	letter-spacing: -2px;
	text-transform: capitalize;
}

.third-hd {
	color: #FFF;
	font-size: 33px;
	font-weight: 700;
	text-transform: capitalize;
}

ul li {
	color: #FFF;
	font-size: 24px;
	font-weight: 500;
	list-style: disc;
	margin-left: 20px;
	padding: 0.5rem 0;
}

.light-color-wrapper {
	background-color: #9FB3E0;
	border-radius: 30px;
}

.community-sec {
	background-color: #879CCC;
	border-radius: 30px;
	padding: 2rem 1rem 1rem;
}

.watch-wrap {
	max-width: 100%;
	height: auto;
}

.watch-tabs {
	border: none;
	justify-content: center;
}

.watch-tabs .nav-link {
	border-radius: 100px;
	background-color: #ECCE68;
	color: #0F0F0F;
	font-size: 16px;
	font-weight: 700;
	padding: 1rem 3rem;
}

.watch-tabs li {
	list-style: none;
}

.watch-tabs .nav-link.active {
	background-color: #0F0F0F;
	color: white;
}

.text-black {
	color: #000000;
}

.watch-sec {
	position: relative;
}
.watch-sec {
  display: none;
}
.watch-sec::before {
	content: "";
	width: 100%;
	height: 60%;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #183135;
	border-radius: 50px;
}

.gallery-sec {
	background-color: #899FD4;
	margin-top: -3rem;
	padding-top: 8rem;
	border-radius: 0 0 50px 50px;
}

.text-white {
	color: white;
}

.gallery-btn .rounded-btn {
	margin-left: auto;
}

.logoSlider {
	margin: 0 -10rem;
}

.galler-img-wrap {
	position: relative;
}

.galler-img-wrap img {
	border-radius: 30px;
}

.galler-img-wrap::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #0000004D;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 30px;
}

.galler-img-wrap-content {
	position: absolute;
	top: 0;
	left: 0;
	padding: 2rem;
}

.galler-img-wrap-content h6 {
	color: #FFF;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -1px;
}

.amount-options {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 20px;
}

.amount-options input[type="radio"] {
	display: none;
}

.amount-options label {
	background-color: #f6dd8b;
	border: 2px solid white;
	border-radius: 25px;
	padding: 12px 20px;
	min-width: 110px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
	text-align: center;
	width: 100%;
}

.amount-options>div {
	width: 33.33%;
	padding: 0.4rem;
}

.amount-options input[type="radio"]:checked+label {
	background-color: #000;
	color: white;
}

.custom-input-wrap input {
	margin-bottom: 20px;
	width: 100%;
	background-color: white;
	border: none;
	padding: 1rem;
	border-radius: 30px;
}

.donate-btn {
	background-color: #000;
	color: white;
	border: none;
	border-radius: 25px;
	padding: 15px 30px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
}

.donate-btn:hover {
	background-color: #fff;
	border-color: #fff !important;
	color: #0F0F0F;
}

.support-wrapper {
	background-color: #ECCE68;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1rem 13%;
	text-align: center;
	border-radius: 0 50px 50px 0;
}

.support-content p {
	font-weight: 500;
	margin: 1rem 0;
}

/*.note {
	padding: 20px 50px 20px 40px;
	background-color: #F9F9F9;
	border-left: 4px solid #FFBA00;
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.13);
	position: relative;
	text-align: left;
	font-size: 18px;
	color: #333;
	margin-bottom: 2rem;
}

.note span {
	font-weight: 600;
	color: black;
}

.note::before {
	content: "";
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background-color: #FFBA00;
	position: absolute;
	left: -15px;
	top: 50%;
	transform: translateY(-50%);
}

.support-img img {
	border-radius: 50px 0 0 50px;
}*/

.stories-and-article-box {
	display: flex;
	gap: 2rem;
	align-items: center;
	margin: 1rem 0;
}

.stories-and-article-box-content small {
	color: #9F9F9F;
	font-size: 14px;
}
.staff-card {
  padding: 15px;
  text-align: center;
  height: 400px;
  box-shadow: 0px 17px 8px #e3e3e3;
}
.staff-card img {
  width: 320px;
  margin-bottom: 10px;
}
.capsule {
	display: inline-block;
	padding: 5px 10px 3px;
	background-color: #87A7F0;
	color: #FFF;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 30px;
	margin-right: 1rem;
}

.stories-and-article-box-content h3 {
	color: #0F0F0F;
	font-size: 32px;
	font-weight: 600;
	letter-spacing: -1px;
	margin-top: 1rem;
}

.stories-and-article-box-content a {
	color: #0F0F0F;
	font-size: 16px;
	font-weight: 700;
	border-bottom: 1px solid #0F0F0F;
	padding-bottom: 5px;

}

.testimonial-sec {
	background-image: url(../images/bg1.png);
	background-size: cover;
	background-position: center;
	padding: 10rem 0;
	border-radius: 50px;
}

.testimonial-content {
	padding: 0 10rem;
	text-align: center;
}

.testimonial-content p {
	color: #FFF;
	font-size: 30px;
	font-style: italic;
	font-weight: 500;
	line-height: 1.4;
}

.testimonial-content h6 {
	color: #FFF;
	font-size: 30px;
	font-style: italic;
	font-weight: 500;
	text-transform: capitalize;
	margin-top: 2rem;
}

.industrySlider .swiper-button {
	width: 60px;
	height: 60px;
	border: 3px solid white;
	color: white;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}

.industrySlider .swiper-button::after {
	font-size: 16px;
	font-weight: 700;
}

.social-imgs {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.bg-black {
	background-color: #0F0F0F;
	border-radius: 50px 50px 0 0;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid #DDD;
	padding: 15px 20px;
	color: #666;
	font-size: 16px;
	letter-spacing: 0.8px;
	background-color: transparent;
	margin-bottom: 2rem;
}

.form-wrap {
	background-color: white;
	padding: 30px;
	border-radius: 30px;
}

.form-wrap h2 {
	font-size: 42px;
	color: #0F0F0F;
	font-weight: 700;
	margin-bottom: 1rem;
}

.contact-form .themeBtn {
	background-color: #0F0F0F;
	color: white;
	border: 0;
}

.contact-form .themeBtn:hover {
	background-color: #ECCE68;
	border-color: #ECCE68 !important;
	color: #0F0F0F;
}

.map-wrap {
	height: 100%;
}

.map-wrap iframe {
	height: 100%;
	border-radius: 30px;
}
footer .container {
  padding: 0px 25px;
}
.quickList h2 {
	color: #FFF;
	font-size: 42px;
	font-weight: 700;
	letter-spacing: -1px;
	text-transform: capitalize;
}

.quickList ul li a,
.quickList ul li span {
	color: #CFCFCF;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	display: flex;
}
.quickList ul li br {
  display: none;
}

.quickList ul li a:hover,
.quickList ul li span:hover {
	color: #ECCE68;
}

.quickList ul li span strong,
.quickList ul li a i,
.quickList ul li span i {
	color: #ECCE68;
	margin-top: 3px;
	margin-right: 14px;
}

.quickList ul li {
	list-style: none;
	margin: 0;
}

.copyRight {
	border-top: 1px solid #989898;
	padding: 1rem 0;
	margin-top: 3rem;
}

.copyRight p {
	color: rgba(255, 255, 255, 0.80);
	font-size: 14px;
}

.copyRight ul {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
}

.copyRight ul li {
	list-style: none;
}

.copyRight ul li a {
	color: var(--white);
}

.gallery-sec .swiper-button {
	width: 60px;
	height: 60px;
	border: 3px solid white;
	background-color: white;
	color: #0F0F0F;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}

.gallery-sec .swiper-button::after {
	font-size: 16px;
	font-weight: 700;
}

.gallery-sec .swiper-button-next {
	right: 20px;
}

.gallery-sec .swiper-button-prev {
	left: 20px;
}

/* Inner Pages Start */
.innerBann {
	height: 740px;
}

.support-inner {
	padding: 0 1rem;
}

.about-cont {
	padding: 6rem 0 0;
}

.about .mainHead {
	color: var(--black);
	margin-bottom: 1.5rem;
}

.about-cont p {
	margin-bottom: 2rem;
}

.faq-section #accordion .card {
	margin: 0;
	border: none;
}

/* .faq-section */
.faq-section #accordion .card {
	margin: 0;
	border: none;
}

.faq-section #accordion .card .btn-link {
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 1.875rem;
	padding: 1.125em;
	background: #F2F2F2;
	color: var(--black);
	font-size: 1.5rem;
	font-weight: bold;
}

.faq-section #accordion .card .btn-link i {
	margin-left: auto;
	color: var(--white);
	font-size: 1rem;
	width: 30px;
	height: 30px;
	display: grid;
	place-content: center;
	background: var(--black);
	border-radius: 50%;
}

.faq-section #accordion .card .btn-link i::before {
	content: "\f106";
}

.faq-section #accordion .card .btn-link.collapsed i::before {
	content: "\f107";
}

.faq-section #accordion .card+.card {
	margin-top: 0;
}

.faq-section #accordion .card .card-body {
	padding: 0 2rem 1rem;
	font-size: 1.125rem;
}

.faq-section #accordion .card .card-body p {
	color: var(--black);
	font-size: 1.125rem;
	margin: -.75rem 0 0;
	line-height: 2;
}

.faq-content {
	margin: 6rem 0;
}

.faq-content h6 {
	font-size: 0.875rem;
	font-weight: bold;
	margin-bottom: 2.375rem;
	text-align: end;
}

.faq-content h5 {
	color: #C21216;
	font-size: 1rem;
	font-weight: bold;
}

.acordian-list li {
	color: var(--black);
	font-size: 1rem;
}

.sunday-serv {
	color: var(--primary);
}

/* Calender Page Start */

.calender .mainHead {
	color: var(--black);
	margin-bottom: 4rem;
}

.serch-events {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #CBCED3;
	padding: .6rem 1rem;
}

.serch-events-right {
	width: 31%;
	display: flex;
}

.serch-btns input {
	border: 0;
	outline: none;
}

.findBtn {
	color: var(--white);
	background: #899FD4;
	padding: 0.8rem 1.625rem;
	border-radius: 28px;
	font-family: var(--kumbh);
}

.nav-tabs {
	border-bottom: 0;
}

.serch-events .nav {
	justify-content: end;
}

.serch-events .nav-tabs .nav-link {
	color: #28282E;
	font-size: 0.8125rem;
	font-weight: bold;
	font-family: var(--kumbh);
	background: 0;
	border: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	outline: 0;
	position: relative;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active::before {
	content: "";
	width: 25px;
	height: 1px;
	background: var(--black);
	position: absolute;
	top: 3.2rem;
	left: 30%;
}

.event-dates {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
}

.left-right-arrow i {
	font-size: 1.5rem;
	border: 1px solid var(--black);
	padding: .5rem;
	border-radius: 50%;
}

.event-dates .findBtn {
	width: 105px;
	text-align: center;
}

.upcomming-dats-events {
	margin-top: 2rem;
}

.upcomming-dats-events h4 {
	color: #28282E;
	font-size: 1.125rem;
	font-weight: bold;
	position: relative;
	margin-bottom: 2rem;
}

.upcomming-dats-events h4::before {
	content: "";
	width: 92.5%;
	height: 1px;
	background: #CBCE;
	position: absolute;
	top: 50%;
	left: 95px;
}

.upcomming-dats-events h6 {
	color: #28282E;
	font-size: 0.8125rem;
	font-weight: bold;
	font-family: var(--kumbh);
	margin-bottom: 0;
}

.upcomming-dats-events h5 {
	color: #28282E;
	font-size: 1.65625rem;
	font-weight: bold;
	font-family: var(--kumbh);
}

.event-time-date span {
	color: #999CA7;
	font-size: 0.875rem;
	font-weight: 400;
	font-family: var(--nunito);
	margin-bottom: 1.1875rem;
}

.event-time-date span i {
	color: var(--black);
	margin-right: .5rem;
}

.event-time-date h3 {
	color: #28282E;
	font-size: 1.65625rem;
	font-weight: bold;
	font-family: var(--kumbh);
	letter-spacing: -0.35px;
	margin: 0.625rem 0 0.9375rem;
}

.event-time-date h6 {
	color: #28282E;
	font-size: 1.0625rem;
	font-weight: 600;
	font-family: var(--nunito);
	letter-spacing: 0.1px;
}

.event-time-date p {
	color: #858689;
	font-size: 1.0625rem;
	font-weight: 400;
	font-family: var(--nunito);
	margin-top: 0.875rem;
}

.event-time-date h5 {
	color: #28282E;
	font-size: 1.25rem;
	font-weight: bold;
	font-family: var(--kumbh);
}

.bd-top {
	border-top: 1px solid #CBCED3;
	padding-top: 2rem;
	margin-top: 3rem;
}

.previousEvents {
	color: #999CA7;
	font-size: 1rem;
	font-weight: bold;
	font-family: var(--kumbh);
	display: flex;
	align-items: center;
}

.previousEvents i {
	margin-right: .5rem;
	font-size: 1.5rem;
}

.nextEvents {
	color: #28282E;
	font-size: 1rem;
	font-weight: bold;
	font-family: 'Kumbh Sans';
	display: flex;
	align-items: center;
	justify-content: end;
}

.nextEvents i {
	margin-left: .5rem;
	font-size: 1.5rem;
}

.subscribe-calendarBtn {
	color: var(--white);
	margin-top: 3rem;
	background: #899FD4;
	border-radius: 20px;
	padding: .5rem 1rem;
}

.connect-social .mainHead {
	color: var(--black);
	text-align: center;
}

.connect-social p {
	text-align: center;
	margin: 1rem 0 2rem;
}

/* Calender Page end */
/* Inner Pages End */

.history .mainHead {
	color: var(---black);
	font-size: 32px;
	letter-spacing: 1px;
	word-spacing: -5px;
}

.history-container {
	display: flex;
	max-width: 100%;
	margin: 50px auto;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.history-titles {
	width: 35%;
	background-color: #2e3b55;
	color: #fff;
	list-style: none;
	padding: 0;
	margin: 0;
}

.history-titles li {
	padding: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	cursor: pointer;
	transition: background 0.3s;
	background: var(--secondary);
}

.history-titles li:hover,
.history-titles li.active {
	background-color: var(--primary);
}

.history-content {
	width: 65%;
	padding: 30px;
	background-color: #fff;
}

.history-section {
	display: none;
	animation: fadeIn 0.3s ease-in-out;
}

.history-section.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


/* Contact Page Start */
.contact .contact-quicklist h2 {
	color: var(--black);
}

.contact .contact-quicklist strong {
	color: var(--black);
	font-size: 1.2rem;
}

.contact .contact-quicklist span {
	color: var(--black);
	font-size: 1rem;
}

.contact .contact-quicklist ul {
	margin-bottom: 2rem;
}

.contact .contact-form {
	padding: 3rem;
	box-shadow: 0px 0px 14px 4px #00000020;
}

/* Contact Page end */

/* event calander */

.history-cont h4 {
	font-size: 1.125rem;
	margin-bottom: .8rem;
}

.history-cont h6 {
	font-size: 1.120rem;
	margin: 1rem 3rem;
}

.history-cont h5 {
	margin: 1rem 0;
}

.info {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.info span i {
	color: #ECCE68;
}

.info h3 {
	color: #ECCE68;
	font-size: 1.4rem;
}

.info p {
	color: #CFCFCF;
	font-size: 1rem;
	text-transform: capitalize;
}

.sdsds {
	text-decoration: underline;
}

.are-you-ready {
	list-style: disc;
}

.are-you-ready li {
	margin-bottom: 0px;
	color: #000;
	padding-bottom: 0px;
	font-size: 18px;
}

.ens {
	margin-top: 35px;
}

.ens p {
	color: #000;
	width: 55%;
	font-weight: 500;
}

.ens h3 {
	text-decoration: underline;
}

.enzxzs {
	width: 55%;
}
.first-img img{
	width: 600px;
	height: 400px;
}
.coleodm p {
	color: #000;
}