:root {
	--primary-color: #2E51AB;
	--secondary-color: #FFB700;
	--paragraph: #000000;
}

body {
	padding-top: 0;
	font-family: "Poppins", sans-serif;
	font-size: 20px;
}

img {
	max-width: 100%;
}

p {
	font-size: 18px;
	font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
	color: var(--primary-color);
	text-transform: uppercase;
}

.padding-top-bottom {
	padding-top: 80px;
	padding-bottom: 80px;
}

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

a {
	color: var(--primary-color);
	text-decoration: none;
}

input,
select {
	border: 1px solid #737373;
	padding: 5px 10px;
	font-size: 16px;
	color: #000000;
}

/*================================Header Start================================*/
header {
	padding: 0;
}

.taskbar {
	background: #2E51AB;
	padding: 3px 0;
}

header nav {
	padding: 5px 0;
}

/*================================================================================================================================*/

.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 20px 0;
	box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
	padding: 10px 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.start-header.scroll-on .navbar-brand img {
	height: 24px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.navigation-wrap {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.navbar {
	padding: 0;
}

.navbar-brand img {
	height: 28px;
	width: auto;
	display: block;
	filter: brightness(10%);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}

.navbar-light .navbar-toggler-icon {
	width: 24px;
	height: 17px;
	background-image: none;
	position: relative;
	border-bottom: 1px solid #000;
	transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
	width: 24px;
	position: absolute;
	height: 1px;
	background-color: #000;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
	transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
	top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}

.nav-link {
	color: #212121 !important;
	font-weight: 500;
	transition: all 200ms linear;
}

.nav-item:hover .nav-link {
	color: #8167a9 !important;
}

.nav-item.active .nav-link {
	color: #777 !important;
}

.nav-link {
	position: relative;
	padding: 5px 0 !important;
	display: inline-block;
}

.nav-item:after {
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
	background-color: #8167a9;
	opacity: 0;
	transition: all 200ms linear;
}

.nav-item:hover:after {
	bottom: 0;
	opacity: 1;
}

.nav-item.active:hover:after {
	opacity: 0;
}

.nav-item {
	position: relative;
	transition: all 200ms linear;
}

/*================================================================================================================================*/


nav {
	width: 100%;
	background: #FFFFFF;
}

nav .container {
	position: relative;
	max-width: 1300px;
	padding: 0px 30px;
	height: 70px;
	line-height: 70px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.container .logo a {
	color: #f2f2f2;
	font-size: 30px;
	font-weight: 600;
	text-decoration: none;
}

.container .nav-links {
	display: inline-flex;
	margin-bottom: 0;
}

.nav-links li {
	list-style: none;
}

.nav-links li a {
	color: #000000;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 9px 10px;
	border-radius: 5px;
	transition: all 0.7s ease;
	position: relative;
}

.nav-links li a:hover {
	background: none;
	color: var(--primary-color);
}

.nav-links li a::after {
	content: '';
	display: block;
	width: 0;
	height: 3px;
	background: var(--primary-color);
	transition: width .7s;
	position: absolute;
	bottom: 0;
	left: 10px;
}

.nav-links li a:hover::after {
	width: 40px;
	transition: width .7s;
}

.nav-links li a.active {
	color: var(--primary-color);
}

.nav-links li a.active::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background: var(--primary-color);
	transition: width .7s;
	position: absolute;
	bottom: 0;
	left: 10px;
}

.nav-links li.nav_btn_1 a::after,
.nav-links li.nav_btn_2 a::after {
	content: inherit;
}

.nav-links li.nav_btn_1 a:hover::after,
.nav-links li.nav_btn_2 a:hover::after {
	width: inherit;
}

.nav-links li.nav_btn_1 a {
	margin: 0 2px;
	background-color: #224292;
	border-radius: 0;
	color: #FFFFFF;
}

.nav-links li.nav_btn_1 a:hover {
	background-color: var(--secondary-color);
	border-radius: 0;
	color: #000000;
}

.nav-links li.nav_btn_2 a {
	margin: 0 2px;
	background-color: #FFF;
	color: #000;
	border: 1px solid #C0C0C0;
	border-radius: 0;
	margin: 0 2px;
}

.nav-links li.nav_btn_2 a:after {
	content: inherit;
}

.nav-links li.nav_btn_2 a:hover {
	background-color: #5880E5;
	color: #fff;
	border: 1px solid #5880E5;
	border-radius: 0;
	margin: 0 2px;
}


.nav-links li ul li a {
	color: #000000;
}

.nav-links li ul li a:hover {
	color: var(--primary-color);
}

.nav-links .mobile-item {
	display: none;
}

.nav-links .drop-menu {
	position: absolute;
	background: #F2F2F2;
	border-radius: 5px;
	width: 310px;
	line-height: 45px;
	top: 85px;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.39);
	padding: 10px 0;
	z-index: 999;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
	transition: all 0.7s ease;
	top: 70px;
	opacity: 1;
	visibility: visible;
}

.drop-menu li a {
	width: 100%;
	display: block;
	padding: 5px 15px;
	font-weight: 400;
	border-radius: 0px;
	line-height: normal;
}

.nav-links li .drop-menu li a::after {
	content: inherit;
	display: block;
	width: 0;
	height: 2px;
	background: #000;
	transition: width .3s;
	position: absolute;
	bottom: 0;
	left: 10px;
}

.nav-links li .drop-menu li a:hover::after {
	width: inherit;
	transition: inherit;
}

.mega-box {
	position: absolute;
	left: 0;
	width: 100%;
	padding: 0 30px;
	top: 85px;
	opacity: 0;
	visibility: hidden;
}

.mega-box .content {
	background: #242526;
	padding: 25px 20px;
	display: flex;
	width: 100%;
	justify-content: space-between;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
	width: calc(25% - 30px);
	line-height: 45px;
}

.content .row img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.content .row header {
	color: #f2f2f2;
	font-size: 20px;
	font-weight: 500;
}

.content .row .mega-links {
	margin-left: -40px;
	border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
	padding: 0 20px;
}

.row .mega-links li a {
	padding: 0px;
	padding: 0 20px;
	color: #d9d9d9;
	font-size: 17px;
	display: block;
}

.row .mega-links li a:hover {
	color: #f2f2f2;
}

.container .btn {
	color: var(--primary-color);
	font-size: 20px;
	cursor: pointer;
	display: none;
}

.container .btn.close-btn {
	position: absolute;
	right: 10px;
	top: 10px;
}

@media screen and (max-width: 1191px) {
	.nav-links li a::after {
		content: inherit;
		display: block;
		width: 0;
		height: 2px;
		background: #000;
		transition: width .3s;
		position: inherit;
		bottom: inherit;
		left: inherit;
	}

	.nav-links li a:hover::after {
		width: inherit;
		transition: inherit;
	}

	.nav-links .drop-menu {
		padding: 0;
	}

	.nav-links .drop-menu a {
		padding: 10px 0;
	}

	.container .btn {
		display: block;
		color: #FFFFFF;
	}

	.container .btn {
		display: block;
		color: var(--primary-color);
	}

	.container .btn i.fa-times {
		color: #FFFFFF;
	}

	.nav-links li a {
		color: #FFFFFF;
	}

	.container .nav-links {
		position: fixed;
		height: 100vh;
		width: 100%;
		max-width: 350px;
		top: 0;
		left: -100%;
		background: #000;
		display: block;
		padding: 50px 10px;
		line-height: 50px;
		overflow-y: auto;
		box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
		transition: all 0.7s ease;
		z-index: 999;
	}

	/* custom scroll bar */
	::-webkit-scrollbar {
		width: 10px;
	}

	::-webkit-scrollbar-track {
		background: #242526;
	}

	::-webkit-scrollbar-thumb {
		background: #3A3B3C;
	}

	#menu-btn:checked~.nav-links {
		left: 0%;
	}

	#menu-btn:checked~.btn.menu-btn {
		display: none;
	}

	#close-btn:checked~.btn.menu-btn {
		display: block;
	}

	.nav-links li {
		margin: 15px 10px;
	}

	.nav-links li a {
		padding: 0 10px;
		display: block;
		font-size: 20px;
	}

	.nav-links .drop-menu {
		position: static;
		opacity: 1;
		top: 65px;
		visibility: visible;
		padding-left: 20px;
		width: 100%;
		max-height: 0px;
		overflow: hidden;
		box-shadow: none;
		transition: all 0.7s ease;
	}

	#showDrop:checked~.drop-menu,
	#showMega:checked~.mega-box {
		max-height: 100%;
	}

	.nav-links .desktop-item {
		display: none;
	}

	.nav-links .mobile-item {
		display: block;
		color: #f2f2f2;
		font-size: 20px;
		font-weight: 500;
		padding-left: 10px;
		cursor: pointer;
		border-radius: 5px;
		transition: all 0.7s ease;
	}

	.nav-links .mobile-item:hover {
		background: #3A3B3C;
	}

	.drop-menu li {
		margin: 0;
	}

	.drop-menu li a {
		border-radius: 5px;
		font-size: 18px;
	}

	.mega-box {
		position: static;
		top: 65px;
		opacity: 1;
		visibility: visible;
		padding: 0 20px;
		max-height: 0px;
		overflow: hidden;
		transition: all 0.7s ease;
	}

	.mega-box .content {
		box-shadow: none;
		flex-direction: column;
		padding: 20px 20px 0 20px;
	}

	.mega-box .content .row {
		width: 100%;
		margin-bottom: 15px;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.mega-box .content .row:nth-child(1),
	.mega-box .content .row:nth-child(2) {
		border-top: 0px;
	}

	.content .row .mega-links {
		border-left: 0px;
		padding-left: 15px;
	}

	.row .mega-links li {
		margin: 0;
	}

	.content .row header {
		font-size: 19px;
	}
}

nav input {
	display: none;
}

/*================================Header End================================*/

/*================================Banner Start================================*/
.banner {
	background: url(../img/banner.jpg);
	padding: 14% 0;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.banner h1 {
	font-size: 85px;
	color: #fff;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
	text-transform: uppercase;
}

.banner h2 {
	font-size: 50px;
	color: #FFFFFF;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
	font-weight: 500;
	text-transform: inherit;
}

.become-a-member {
	background-color: #2E51AB;
	color: #fff;
	font-size: 22px;
	text-decoration: none;
	padding: 20px 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 70px;
	margin-top: 20px;
	box-shadow: 0 6px 6px rgba(0, 0, 0, 0.3);
	transition: all 0.4s ease;
}

.become-a-member:hover {
	background-color: var(--secondary-color);
	color: #000000;
	transform: scale(1.05);
}

/*================================Banner Start================================*/

.member-benefit {
	text-align: center;
}

.member-benefit h3 {
	font-size: 30px;
	color: var(--primary-color);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.member-benefit h3::after {
	background-color: #2E51AB;
	width: 133px;
	height: 5px;
	content: "";
	display: block;
	margin: 5px auto 0 auto;
}

.benefit-box {
	background-color: #FFFFFF;
	padding: 20px 15px;
	box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1);
	height: 100%;
	margin-bottom: 20px;
}

.benefit-box span {
	width: 115px;
	height: 115px;
	background-color: var(--primary-color);
	border-radius: 50%;
	display: inline-grid;
	align-items: center;
	justify-items: center;
	margin-bottom: 20px;
}

.benefit-box h4 {
	font-weight: 600;
	color: #000000;
	text-transform: capitalize;
	font-size: 18px;
}

.benefit-box p {
	font-weight: 500;
	font-size: 16px;
	color: #424242;
}

.button {
	margin-top: 40px;
	text-align: center;
}

.button .btn_application,
.button a {
	background-color: #224292;
	padding: 18px 60px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
	position: relative;
	transition: all 0.7s ease;
	display: inline-block;
	cursor: pointer;
}

/* .button .btn_application::after,
.button a::after {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 100%;
	height: 100%;
	border: 1px solid #5880E5;
	z-index: 0;
	transition: all 0.7s ease;
} */

.button .btn_application:hover,
.button a:hover {
	background-color: var(--secondary-color);
	color: #000000;
	transform: scale(1.03);
}

.button .btn_application:hover::after,
.button a:hover::after {
	border: 1px solid var(--secondary-color);
}

.tabordion .button a:hover {
	background-color: #FFF;
	color: #000;
}

.tabordion .button a:hover::after {
	border: 1px solid var(--secondary-color);
}

.happenings h3::after {
	background-color: #2E51AB;
	width: 100px;
	height: 5px;
	content: "";
	display: block;
	margin: 5px 0 0 0;
}

.upcoming-event {
	background: url(../img/upcoming-event.webp);
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}

.upcoming-event h3 {
	text-align: center;
	color: #FFFFFF;
	margin-bottom: 50px;
}

.upcoming-event h3::after {
	background-color: #fff;
	width: 100px;
	height: 5px;
	content: "";
	display: block;
	margin: 5px auto 0 auto;
}

.upcoming-event .blog-desc {
	background-color: #FFFFFF;
	box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1);
	padding: 45px 15px 15px 15px;
	position: relative;
	margin-top: -25px;
	width: 80%;
	min-height: 175px;
}

.upcoming-event .blog-desc h2 {
	font-size: 18px;
	color: #000000;
	text-transform: capitalize;
	margin: 0;
	font-weight: 600;
	text-align: left;
}

.upcoming-event .blog-desc a.read-more {
	color: var(--secondary-color);
	text-decoration: none;
	font-family: "Rajdhani", sans-serif;
	margin-top: 20px;
	display: block;
}

.upcoming-event .blog-desc a.read-more:hover {
	color: var(--primary-color);
}

.upcoming-event .blog-desc a.read-more i {
	color: var(--primary-color);
	font-size: 18px;
}

.upcoming-event .blog-desc::before {
	content: "";
	background-color: #2E51AB;
	width: calc(100% - 165px);
	height: 5px;
	position: absolute;
	top: 0;
	right: 0;
	margin: 10px;
}

.upcoming-event .blog-desc .date {
	background-color: #2E51AB;
	font-size: 16px;
	position: absolute;
	left: 0;
	top: -24px;
	padding: 12px 34px;
	color: #fff;
	font-weight: 500;
}

.upcoming-event .button a {
	padding: 6px 11px;
	font-size: 16px;
}

.announcement h3 {
	font-size: 30px;
	color: #2E51AB;
	text-transform: uppercase;
	margin-bottom: 20px;
	text-align: center;
}

.announcement h3::after {
	background-color: #2E51AB;
	width: 133px;
	height: 5px;
	content: "";
	display: block;
	margin: 5px auto 0 auto;
}

.announcement .announcement-right {
	background-color: #FFFFFF;
	border: 1px solid #9C9C9C;
	height: 505px;
	overflow: auto;
}

.announcement .announcement-right ul li {
	position: relative;
	border-bottom: 1px solid #0003;
}

.announcement .announcement-right ul li a {
	padding: 10px 33px 10px 15px;
	display: block;
	font-size: 16px;
	color: #000;
	text-decoration: none;
	font-weight: 500;
}

.announcement .announcement-right ul li a:hover {
	background-color: var(--primary-color);
	color: #FFFFFF;
}

.announcement .announcement-right ul li a.active {
	background-color: var(--primary-color);
	color: #FFFFFF;
}

.announcement .announcement-right ul li a i {
	position: absolute;
	right: 13px;
	top: 50%;
	transform: translate(0, -50%);
	color: #A3A3A3;
}

.announcement .announcement-right ul li a:hover i,
.announcement .announcement-right ul li a.active i {
	color: #FFFFFF;
}

.announcement .announcement-desc {
	background-color: #000000;
	padding: 25px 30px;
}

.announcement .announcement-desc h4 {
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 600;
}

.announcement .announcement-desc p {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 500;
}

.announcement .button {
	margin-top: 40px;
	text-align: center;
}

.announcement .button a {
	background-color: #224292;
	padding: 10px 15px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	position: relative;
	transition: all 0.7s ease;
	display: inline-block;
}

.announcement .button a::after {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 100%;
	height: 100%;
	border: 1px solid #224292;
	z-index: 0;
	transition: all 0.7s ease;
}

.announcement .button a:hover {
	background-color: #FFFFFF;
	color: #000000;
}

.announcement .button a:hover::after {
	border: 1px solid #FFFFFF;
}

.announcement-desc-column {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: left;
	margin-left: 20px;
}

.announcement-desc-column span {
	background-color: #2E51AB;
	padding: 10px 15px;
	font-size: 16px;
	color: #fff;
	margin-top: -16px;
	width: 85px;
	text-align: center;
}

.announcement-desc-column p {
	font-size: 16px;
	color: #000000;
	margin-bottom: 0;
	margin-left: 10px;
}

.announcement .announcement-left {
	display: none;
}

.announcement .announcement-left.active {
	display: initial;
}

.innovation {
	background: url(../img/innovation.jpg);
	background-size: cover;
	background-position: center;
	padding: 78px 0;
	position: relative;
	display: flex;
	align-items: center;
	text-align: center;
}

.innovation::after {
	content: "";
	margin: 0;
	background-color: rgba(0, 0, 0, 0.7);
	position: absolute;
	height: 100%;
	width: 100%;
}

.innovation h4 {
	margin-bottom: 0;
	font-size: 30px;
	font-weight: 700;
	color: #FFFFFF;
	position: relative;
	z-index: 1;
}

.sponsors h3 {
	font-size: 30px;
	color: #2E51AB;
	text-transform: uppercase;
	margin-bottom: 20px;
	text-align: center;
}

.sponsors h3::after {
	background-color: #2E51AB;
	width: 133px;
	height: 5px;
	content: "";
	display: block;
	margin: 5px auto 0 auto;
}

.sponsors .sponsors-column {
	box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1);
	padding: 30px 20px 30px 20px;
	text-align: center;
	height: 100%;
	position: relative;
	min-height: 205px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sponsors .sponsors-column img {
	max-height: 100px;
	margin-bottom: 30px;
	max-width: 250px;
}

.sponsors .sponsors-column p {
	background-color: var(--primary-color);
	font-size: 16px;
	font-weight: 600;
	color: #FFFFFF;
	padding: 10px 20px;
	width: 100%;
	margin-bottom: 0;
	position: absolute;
	bottom: 0;
}

.footer {
	background: url(../img/footer-bg.webp);
	background-size: cover;
}

.footer h4 {
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer p {
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
}

.footer input {
	font-size: 16px;
	font-weight: 600;
	padding: 14px 15px;
	width: 100%;
	background: #FFF;
	color: #000;
	transition: all 0.4s ease;
}

.footer input:hover {
	background: #224292;
	color: #fff;
	border-color: #fff;
}

.footer .button a {
	width: 100%;
	background: #FFFFFF;
	color: #000000;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
}

.footer .button a::after {
	border: 1px solid #FFFFFF;
}

.footer .button a:hover {
	background: var(--secondary-color);
}

.footer .button a:hover::after {
	border: 1px solid var(--secondary-color);
}

.footer ul li {
	margin-bottom: 10px;
}

.footer ul li a,
.footer ul li {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 16px;
}

.footer ul li span {
	width: 35px;
	display: inline-block;
	text-align: center;
}

.footer hr {
	opacity: 0.3;
	color: #0D2768;
}

.footer .terms-link a {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 16px;
	border-right: 1px solid #FFF;
	padding-right: 10px;
	padding-left: 10px;
}

.footer .terms-link a:last-child {
	border-right: none;
	padding-right: 0;
}


/*===========Membership Page Start===========*/
.banner.member-ship-banner {
	background: url(../img/member-ship-banner.jpg);
	padding: 9% 0;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.banner.member-ship-banner h1 {
	font-size: 60px;
}

.banner.member-ship-banner h2 {
	font-size: 30px;
	text-transform: none;
}

.tab-design {}

/*.tab-design ul li button { font-size:16px; font-weight:500; color:#000000;}*/

.tab-design .nav-tabs .nav-link {
	font-size: 16px;
	font-weight: 500;
	color: #000000;
	border-radius: 0;
	border: 1px solid #737373;
	margin-right: 10px;
}

.tab-design .nav-tabs .nav-link.active {
	color: #FFF;
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
}


.tab-design .accordion-item {
	border-radius: 0;
	border: 1px solid #D2D2D2;
	background: #FFFFFF;
	border-top: 3px solid var(--primary-color);
	box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1);
}

#myTabContent {
	margin-top: -2px;
}

.tab-design .accordion-body h4 {
	font-size: 20px;
	margin-bottom: 20px;
}

.tab-design .accordion-body ul {
	list-style-type: disc;
	padding-left: 30px;
}

.tab-design .accordion-body ul li {
	color: #000000;
	font-size: 18px;
	margin-bottom: 10px;
}

.tab-design .accordion-body ul li ol {
	list-style-type: circle;
}

.tab-design .accordion-body {
	text-align: left;
	font-size: 16px;
}

@media (max-width: 991px) {
	.tab-design .tab-content>.tab-pane {
		display: block;
		opacity: 1;
	}
}

/*===========Membership Page End===========*/

/*===========Membership Information Form===========*/
.member-information {
	border: 1px solid #B7B7B7;
	padding: 40px 20px;
}

.member-information input {
	border: 1px solid #737373;
	color: #000000;
	font-size: 16px;
	width: 100%;
	padding: 7px 10px;
}

.member-information .fees {
	font-size: 16px;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.member-information .total {
	font-size: 26px;
	color: #000000;
	font-weight: 600;
	margin-bottom: 5px;
	border-top: 1px solid #000;
	display: inline-block;
	border-bottom: 1px solid #000;
	padding: 10px 0;
	margin-top: 10px;
}

.member-information .total span {
	color: #04A316;
}


/*============*/

.upcoming-event-banner {
	background: url(../img/upcoming-event-banner.jpg);
	padding: 9% 0;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.upcoming-event-banner h1 {
	font-size: 60px;
}

.upcoming-event-banner h2 {
	font-size: 30px;
	text-transform: none;
}

#vertical-tab {
	padding: 0;
}

#vertical-tab .vertical-tab {
	height: 100%;
	background: #FFFFFF;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
}

#vertical-tab .vertical-tab-wrapper {
	box-shadow: none;
	background: none;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab {
	padding: 12px 30px 12px 15px;
	background-color: #FFF;
	border-bottom: 1px solid #004A71;
	position: relative;
	cursor: pointer;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab .fa-angle-right {
	font-size: 20px;
	color: #000;
	position: absolute;
	right: 15px;
	top: calc(50% - 10px);
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active .fa-angle-right {
	color: #fff;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab .title {
	font-weight: 600;
	display: block;
	width: 100%;
	color: #FFFFFF;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab .title p {
	margin-bottom: 0;
	font-weight: 500;
	color: #FFFFFF;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab .title p.date {
	font-size: 16px;
	margin-bottom: 2px;
	color: #000;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab .title p.event-title {
	font-size: 16px;
	color: #FFFFFF
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab:hover {
	background-color: #224292;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active {
	background-color: #004A71;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active p.date,
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active .title p.event-title {
	color: #fff;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active .title {
	color: #1c2a51;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab:hover .title p.date,
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab:hover .title p.event-title {
	color: #fff;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab:hover .fa-angle-right {
	color: #fff;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content {
	display: none;
	padding: 15px;
	background: #FFFFFF;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
	height: 100%;
	position: relative;
	padding-bottom: 100px;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content h3 {
	font-size: 20px;
	font-weight: 700;
	color: #2E51AB;
	margin: 0 0 10px;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content p {
	font-weight: 500;
	color: #1c2a51;
	font-size: 18px;
	color: #000000;
	margin: 0 0 10px;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content p span {
	font-weight: 600;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content .grey-bg {
	background-color: #D5D5D5;
	padding: 5px 15px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	font-size: 18px;
	color: #000;
	font-weight: 500;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content .grey-bg a {
	color: #000;
	transition: all 0.4s ease;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content .grey-bg a:hover {
	color: #2E51AB;
}

/* Event Details Styling */
#vertical-tab .vertical-tab-wrapper .vertical-tab-content .event-price {
	font-weight: 700;
	color: #2E51AB;
	font-size: 20px;
	margin: 15px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 12px 16px;
	border-left: 5px solid #2E51AB;

	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content .event-time
{
	font-weight: 600;
	color: #495057;
	font-size: 16px;
	margin: 12px 0;
	background: #fff3cd;
	padding: 10px 14px;

	border-left: 4px solid #ffc107;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content .event-datetime {
	font-weight: 500;
	color: #000;
	font-size: 16px;
	margin: 12px 0;
	padding: 8px 12px;
	background: #f8f9fa;

	border-left: 3px solid #6c757d;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content .event-datetime span {
	font-weight: 700;
	color: #2E51AB;
	text-transform: uppercase;
	font-size: 14px;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content .event-location {
	font-weight: 500;
	color: #000;
	font-size: 16px;
	margin: 12px 0;
	padding: 8px 12px;
	background: #f8f9fa;

	border-left: 3px solid #6c757d;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content .event-location span {
	font-weight: 700;
	color: #2E51AB;
	text-transform: uppercase;
	font-size: 14px;
}

/* Enhanced event content styling */
#vertical-tab .vertical-tab-wrapper .vertical-tab-content {
	padding: 25px;
	background: #FFFFFF;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	position: relative;
	padding-bottom: 100px;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content h3 {
	font-size: 24px;
	font-weight: 700;
	color: #2E51AB;
	margin: 0 0 15px;
	text-transform: uppercase;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content p {
	font-weight: 500;
	color: #1c2a51;
	font-size: 16px;
	color: #000000;
	margin: 0 0 12px;
	line-height: 1.6;
}

/* Event image styling */
#vertical-tab .vertical-tab-wrapper .vertical-tab-content img {

	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content img:hover {
	transform: scale(1.02);
}

/* Read More button styling */
#vertical-tab .vertical-tab-wrapper .vertical-tab-content .button a {
	background-color: #5880E5;
	padding: 18px 60px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
	position: relative;
	transition: all 0.7s ease;
	display: inline-block;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content .button a:hover {
	background-color: var(--secondary-color);
	color: #000000;
}

/* Event description styling */
#vertical-tab .vertical-tab-wrapper .vertical-tab-content p:first-of-type {
	font-size: 18px;
	font-weight: 500;
	color: #495057;
	line-height: 1.6;
	margin-bottom: 20px;
	padding: 15px;
	background: #f8f9fa;
	border-left: 4px solid #2E51AB;
}

/* Responsive event styling */
@media (max-width: 768px) {
	#vertical-tab .vertical-tab-wrapper .vertical-tab-content {
		padding: 20px 15px;
	}

	#vertical-tab .vertical-tab-wrapper .vertical-tab-content h3 {
		font-size: 20px;
	}

	#vertical-tab .vertical-tab-wrapper .vertical-tab-content .event-price {
		font-size: 18px;
		padding: 10px 12px;
	}

	#vertical-tab .vertical-tab-wrapper .vertical-tab-content .button a {
		padding: 10px 20px;
		font-size: 13px;
	}
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content.active {
	display: block;
}

#vertical-tab .mobile-vertical-tab {
	display: none;
	position: relative;
	box-shadow: 0px 0px 5.88px 0.12px rgba(0, 0, 0, 0.14);
}

#vertical-tab .mobile-vertical-tab .vertical-tab-header .each-tab-header .each-tab {
	padding: 16px;
	background-color: #5d9ccc;
	border-bottom: 1px solid #fff;
	position: relative;
	text-align: center;
}

#vertical-tab .mobile-vertical-tab .vertical-tab-header .each-tab-header .each-tab .title {
	font-size: 1.375rem;
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 600;
	line-height: 1.1;
	color: #f7dd4b;
}

.about-the-chambers {}

.about-the-chambers {
	background: url(../img/member.jpg);
	padding: 210px 0 165px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover !important;
	text-align: center;
}

.about-the-chambers h1 {
	font-size: 60px;
}

.about-the-chambers h2 {
	font-size: 30px;
	text-transform: none;
}

.com-left {
	background-color: #FFFFFF;
	box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1);
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.com-left img {
	max-width: 250px;
}

.com-right h3::after {
	margin: 0;
}

.member-filter label {
	font-size: 16px;
	color: #000000;
	margin-right: 10px;
}

.member-filter input {
	width: 250px;
	margin-right: 10px;
}

select {
	font-size: 16px;
	color: #000000;
	width: 250px;
	background-color: #FFFFFF;
}

.directory-box {
	background-color: #FFF;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
	font-size: 16px;
	padding: 40px 20px 20px 20px;
	margin-bottom: 20px;
	text-align: center;
}

.directory-box h5 {
	font-size: 16px;
	font-weight: 600;
}

.directory-box i {
	color: #00689F;
	font-size: 18px;
}

.directory-box a {
	font-size: 16px;
	margin-top: 5px;
	display: block;
	color: #424242;
}

.directory-box .img-border {
	width: 170px;
	height: 140px;
	border: 1px solid #424242;
	padding: 0;
	margin: 0 auto 20px auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination {}

.pagination span {
	color: #000000;
	border: 1px solid #737373;
	padding: 5px 10px;
	font-size: 18px;
	margin: 0 3px;
}

.pagination span.active {
	color: #000000;
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: #FFFFFF;
}

@media screen and (max-width: 767px) {
	.flex_direction {
		flex-direction: column-reverse;
	}
}

#gallery {
	padding-top: 40px;
}

@media screen and (min-width: 991px) {
	#gallery {
		padding: 60px 30px 0 30px;
	}
}

.img-wrapper {
	position: relative;
	margin-top: 15px;
}

.img-wrapper img {
	width: 100%;
}

.img-overlay {
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
}

.img-overlay i {
	color: #fff;
	font-size: 3em;
}

#overlay {
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#overlay img {
	margin: 0;
	width: 80%;
	height: auto;
	object-fit: contain;
	padding: 5%;
}

@media screen and (min-width: 768px) {
	#overlay img {
		width: 60%;
	}
}

@media screen and (min-width: 1200px) {
	#overlay img {
		width: 50%;
	}
}

#nextButton {
	color: #fff;
	font-size: 2em;
	transition: opacity 0.8s;
}

#nextButton:hover {
	opacity: 0.7;
}

@media screen and (min-width: 768px) {
	#nextButton {
		font-size: 3em;
	}
}

#prevButton {
	color: #fff;
	font-size: 2em;
	transition: opacity 0.8s;
}

#prevButton:hover {
	opacity: 0.7;
}

@media screen and (min-width: 768px) {
	#prevButton {
		font-size: 3em;
	}
}

#exitButton {
	color: #fff;
	font-size: 2em;
	transition: opacity 0.8s;
	position: absolute;
	top: 15px;
	right: 15px;
}

#exitButton:hover {
	opacity: 0.7;
}

@media screen and (min-width: 768px) {
	#exitButton {
		font-size: 3em;
	}
}

.lightboxpreview {
	transition: all .3s linear;
	padding-top: 60%;
	cursor: pointer;
	background-size: cover;
}

.lightbox-content {
	max-height: 75svh;
	height: 75svh;
}

.lightbox-close {
	cursor: pointer;
	margin-left: auto;
	position: absolute;
	right: -30px;
	top: -30px;
	color: white;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}

.modalscale {
	transform: scale(0);
	opacity: 0;
}



.lightbox-container,
.lightbox-btn,
.lightbox-image-wrapper,
.lightbox-enabled {
	transition: all .4s ease-in-out;
}

.lightbox_img_wrap {
	padding-top: 65%;
	position: relative;
	overflow: hidden;
}

.lightbox-enabled:hover {
	transform: scale(1.1)
}

.lightbox-enabled {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	object-fit: cover;
	cursor: pointer;
	left: 0;
}

.lightbox-container {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, .6);
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
}


.lightbox-container.active {
	opacity: 1;
	pointer-events: all;
}

.lightbox-image-wrapper {
	display: flex;
	transform: scale(0);
	align-items: center;
	justify-content: center;
	max-width: 90vw;
	max-height: 90vh;
	position: relative;
}

.lightbox-container.active .lightbox-image-wrapper {
	transform: scale(1);
}

.lightbox-btn,
#close {
	color: white;
	z-index: 9999999;
	cursor: pointer;
	position: absolute;
	font-size: 50px;
}

.close {
	font-size: 0 !important;
}

.label-gallery {
	background-color: rgba(0, 0, 0, 0.6);
	padding: 10px 15px;
	position: absolute;
	bottom: 10px;
	width: 80%;
	text-align: left;
	color: #FFF;
	font-size: 18px;
	font-weight: 600;
}

.left {
	left: 50px;
}

.right {
	right: 50px;
}

#close {
	top: 50px;
	right: 50px;
}

.lightbox-image {
	width: 100%;
	max-height: 95vh;
	object-fit: cover;
}

@keyframes slideleft {
	33% {
		transform: translateX(-300px);
		opacity: 0;
	}

	66% {
		transform: translateX(300px);
		opacity: 0;
	}
}


.slideleft {
	animation-name: slideleft;
	animation-duration: .5s;
	animation-timing-function: ease;
}

@keyframes slideright {
	33% {
		transform: translateX(300px);
		opacity: 0;
	}

	66% {
		transform: translateX(-300px);
		opacity: 0;
	}
}


.slideright {
	animation-name: slideright;
	animation-duration: .5s;
	animation-timing-function: ease;
}

.happenings .slick-slide img {
	width: 100%;
	padding-right: 15px;
}

.happenings .navigatio_sldr {
	position: absolute;
	right: -32px;
	bottom: 15px;
	background: #224292;
	border: 2px solid #fff;
}

.happenings .navigatio_sldr button.slick-prev {
	border-right: 1px solid #0003;
}

.happenings .navigatio_sldr button {
	background: transparent;
	border: 0;
	width: 57px;
	height: 57px;
}

.footer .wpcf7-not-valid-tip {
	color: #ffb5b5;
}

.banner.inner {
	position: relative;
}

.banner.inner .container {
	position: relative;
	z-index: 9;
}

.banner.inner::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.5;
}

.tabs {
	width: 100%;
}

.tab-links {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 3px solid #2E51AB;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 10px;
}

.tab-links li {
	padding: 10px 20px;
	cursor: pointer;
	border: 1px solid #ccc;
	border-bottom: none;
	background-color: #fff;
	margin-right: 2px;
	font-weight: 500 !important;
	font-size: 16px;
	transition: all 0.4s ease;
}

.tab-links li.active,
.tab-links li:hover {
	background-color: #2E51AB;
	color: white;
}

.tab-links li:hover {
	background-color: #5880E5;
	color: white;
}

.tab-content {
	border: 1px solid #ccc;
	padding: 20px;
	background: #fff;
	box-shadow: 0 10px 20px 0 #0000000D;
}

.tab {
	display: none;
}

.tab.active {
	display: block;
}

.member-tab .tab-content .tb_dtl_ttl {
	color: #000000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}

.member-tab .tab-content ul {
	padding-left: 15px;
	list-style: disc;
}

.member-tab .tab-content ul li ul li {
	list-style: none;
}

.member-tab .tab-content ul li,
.member-tab .tab-content p {
	font-size: 18px;
	color: #000000;
	font-weight: 500;
}

.button.btn_white {
	position: relative;
	z-index: 99;
	margin-top: 80px;
}

.button.btn_white a {
	background-color: #FFF;
	color: #000;
	border: 1px solid #C0C0C0;
}

.button.btn_white a::after {
	border: 1px solid #C0C0C0;
	z-index: -1;
	top: 5px;
	left: 5px;
}

.button.btn_white a:hover {
	background-color: #2E51AB;
	color: #fff;
	border: 1px solid #2E51AB;
}

.button.btn_white a:hover::after {
	border: 1px solid #2E51AB;
}

#memberapp .button {
	margin-bottom: 50px;
}


.member_application .btn_white {
	background-color: #fff;
	border: 1px solid #C0C0C0;
	padding: 10px 33px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	color: #000;
	position: relative;
	transition: all 0.7s ease;
	display: inline-block;
	cursor: pointer;
	margin: 0 7px 0 3px;
}

.member_application .btn_white::after {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 100%;
	height: 100%;
	border: 1px solid #C0C0C0;
	z-index: -1;
	transition: all 0.7s ease;
}

.member_application .btn_white.active {
	background-color: #224292;
	padding: 10px 33px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
	position: relative;
	transition: all 0.7s ease;
	display: inline-block;
	cursor: pointer;
	margin: 0 7px 0 3px;
}

.member_application .btn_white.active::after {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 100%;
	height: 100%;
	border: 1px solid #224292;
	z-index: 0;
	transition: all 0.7s ease;
}


.member_application .first_box {
	text-align: left;
	border: 1px solid #B7B7B7;
	padding: 30px 20px;
	margin-bottom: 30px;
}

.member_application .first_box .col-form-label {
	color: #000000;
	font-size: 18px;
	font-weight: 500;
}

.member_application .second_box .col-form-label {
	color: #000000;
	font-size: 18px;
	font-weight: 500;
}

.member_application .second_box .form-group {
	text-align: left;
}

.member_application .second_box .form-group .form-control {
	box-shadow: initial !important;
	border-color: #737373;
	border-radius: 0;
	padding: 10px;
	font-size: 16px;
	color: #000;
	font-weight: 500;
	margin-bottom: 15px;
}

.member_application .error-msg {
	background: #ffe2e2;
	padding: 20px;
	margin-bottom: 15px;
	border-radius: 15px;
	border: 1px solid #ec7676;
	text-align: left;
	font-size: 18px;
	line-height: 30px;
}

.member_application #intake,
#sponsor-intake,
#volunteer-intake {
	text-align: left;
	border: 1px solid #B7B7B7;
	padding: 20px 5px;
}

#event_form .form-control,
.member_application #intake .form-control,
#sponsor-intake .form-control,
#volunteer-intake .form-control {
	box-shadow: initial !important;
	border-color: #737373;
	border-radius: 0;
	padding: 10px;
	font-size: 16px;
	color: #000;
	font-weight: 500;
}

#intake .form-group,
#sponsor-intake .form-group,
#volunteer-intake .form-group {
	padding-bottom: 20px;
}

.member_application .cart-content-totals h4 {
	font-size: 16px;
	font-weight: 500;
	color: #2E51AB;
	text-transform: initial;
}

.member_application .cart-content-totals h2 {
	font-size: 26px;
	color: #000000;
	margin: 0;
}

.member_application .cart-content-totals h2 #total {
	color: #04A316 !important;
}

.member_application .read_trm {
	font-size: 16px;
	color: #000 !important;
	font-weight: 500;
	text-transform: inherit;
}

.member_application .read_trm a {
	font-size: 16px;
	font-weight: 500;
	text-transform: inherit;
	text-decoration: underline;
}

.member_application .cart-content-footer .button {
	text-align: right;
}

.member_application .cart-content-footer .button .btn_application {
	padding: 0px;
}

.member_application .cart-content-footer .button .btn_application input {
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	padding: 18px 20px;
}

.member_application .cart-content-footer .button .btn_application:hover input {
	color: #000;
}

/* Inline validation styles */
input.is-invalid {
    border-color: #dc3545 !important;
}
.field-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
}


.foogallery {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.foogallery .fg-item {
	width: calc(33% - 16px);
	margin: 0 !important;
}

.foogallery .fg-item .fg-item-inner {
	border: 0;
	box-shadow: initial;
}

.foogallery .fg-item .fg-item-inner .fg-image-wrap .fg-image {
	height: 271px;
	object-fit: cover;
}

.foogallery .fg-item .fg-item-inner .fg-caption {
	visibility: visible;
	opacity: 1;
	background: transparent;
}

.foogallery .fg-item .fg-item-inner .fg-caption .fg-caption-inner {
	background: #00000080;
	width: 85%;
	bottom: 10px;
	top: auto;
	transform: initial;
	padding: 11px 13px;
	align-items: baseline;
}

.foogallery .fg-item .fg-item-inner .fg-caption .fg-caption-inner .fg-caption-title {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 700;
	white-space: initial;
	height: auto;
}

.foogallery .fg-item .fg-item-inner .fg-caption .fg-caption-inner::before {
	display: none;
}

.fg-paging-container {
	text-align: center;
}


.fg-paging-container .fg-dot-item .fg-dot-link {
	background: #fff !important;
	width: 30px;
	height: 30px;
	border-radius: 0;
	border-color: #737373 !important;
	color: #737373;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 30px;
}

.fg-paging-container .fg-dot-item.fg-selected .fg-dot-link {
	background: #2E51AB !important;
	width: 30px;
	height: 30px;
	border-radius: 0;
	border-color: #2E51AB !important;
	color: #fff;
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 30px;
}

.fg-paging-container .fg-dot-item .fg-dot-link::before,
.fg-paging-container .fg-dot-item .fg-dot-link .fg-sr-only {
	display: none;
}


.hide {
	display: none !important;
}

@media screen and (max-width: 1024px) {
	.foogallery {
		gap: 20px;
	}

	.foogallery .fg-item {
		width: calc(33% - 15px) !important;
	}
}

@media screen and (max-width: 767px) {
	nav .container {
		padding: 3px 15px 4px;
		height: 76px;
	}

	.happenings .slick-slide img {
		padding-right: 0;
	}

	.happenings .navigatio_sldr {
		right: 25px;
		bottom: 10px;
	}

	.banner h1 {
		font-size: 36px;
	}

	.banner h2 {
		font-size: 30px;
	}

	.about-the-chambers h1 {
		font-size: 30px;
	}

	.about-the-chambers h2 {
		font-size: 22px;
		line-height: 30px;
	}

	.upcoming-event .blog-desc {
		width: 90%;
	}

	.footer form p {
		margin-bottom: 0;
	}

	.footer .copyright p {
		text-align: center;
	}

	.about-the-chambers {
		padding: 100px 20px;
	}

	.com-left {
		margin-bottom: 15px;
	}

	.com-left img {
		max-width: 150px;
	}

	.member-benefit h3 {
		text-align: center;
	}

	.member-benefit h3::after {
		margin: 5px auto 0 auto;
	}

	.member-benefit .com-right p {
		text-align: center;
		font-size: 16px;
		line-height: 26px;
	}

	#vertical-tab .vertical-tab-wrapper .vertical-tab-content {
		padding: 20px 0 15px;
	}

	.tab-links li {
		width: 47%;
		border: 1px solid #ccc;
	}

	.member-tab .button.btn_white {
		margin-top: 40px;
	}

	.member_application .first_box .btn_white {
		margin-bottom: 15px;
	}

	.foogallery .fg-item {
		width: calc(50% - 16px) !important;
		margin: 0 !important;
		min-width: calc(50% - 16px) !important;
		max-width: calc(50% - 16px) !important;
	}

	#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab .fa-angle-right {
		transform: rotate(90deg);
	}
}

@media screen and (max-width: 480px) {
	.tab-links li {
		width: 100%;
		border: 1px solid #ccc;
	}

	.foogallery .fg-item {
		width: 100% !important;
		margin: 0 !important;
		min-width: 100% !important;
		max-width: 100% !important;
	}

	.fg-default.fg-gutter-10 {
		padding-right: 10px;
	}
}


.modal-dialog .form-control {
	box-shadow: initial !important;
	border-color: #737373;
	border-radius: 0;
	padding: 10px;
	font-size: 16px;
	color: #000;
	font-weight: 500;
}

.formtxtarea {
	height: 100px;
}

/*.page-template-page-contact-us .wpcf7-spinner{*/
/*    display: none !important;*/
/*}*/

.page-template-page-contact-us .contactbtn {
	margin-top: 0;
}


.page-template-page-events-php .wpcf7-response-output {
	text-align: center;
}

.event-time
{
	font-weight: 600;
	color: #495057;
	font-size: 16px;
	margin: 12px 0;
	background: #fff3cd;
	padding: 10px 14px;

	border-left: 4px solid #ffc107;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-links .menu-item.menu-item-has-children .mobile-item {position: relative;}
.nav-links .menu-item.menu-item-has-children .mobile-item svg {transform: rotate(90deg);position: absolute;right: 10px;top: 20px;}

@media screen and (max-width: 1190px) {
	.nav-links .menu-item.active ul.drop-menu {max-height: fit-content;}
}



