@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
	--gray: #f5f5f5;
	--black: #0e0e0e;
	--maroon: #cb3e23;
	--blue: #6944fd;
	--lightblue: #d8d8ff;
	--white: #ffffff;
	/* --lightviolet: ; */
}
* {
	margin: 0px;
	padding: 0px;
	outline: none;
	border: none;
	text-decoration: none;
	list-style: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-family: "Poppins", serif;
	background-color: var(--gray);
/* 	color: var(--white); */
	letter-spacing: 0.4px;
}
a {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
img {
	max-width: 100%;
	vertical-align: middle;
}
.clear {
	clear: both;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	text-transform: capitalize;
	em {
		font-style: normal;
	}
}
.blue_bg {
	background-color: var(--blue);
}
.lightblue_bg {
	background-color: var(--lightblue);
}
.maroon_bg {
	background-color: var(--maroon);
}
.blue{
	color: var(--blue);
}
.lightblue_bg {
	position: relative;
	z-index: 1;
	border-radius: 16px;
	padding-left: 32px;
	padding-right: 32px;
	&:before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background: url("./images/bg-pattern.webp") left top repeat;
		z-index: -1;
		opacity: 0.2;
	}
}
.blue_bg,
.maroon_bg {
	position: relative;
	z-index: 1;
	border-radius: 16px;
	&:before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background: url("./images/bg-pattern.webp") left top repeat;
		z-index: -1;
		opacity: 0.2;
	}
	h1,
	h2,
	h3,
	h4,
	h5 {
		color: var(--white);
	}
	p {
		color: var(--white);
	}
	.btn,
	.btn2 {
		color: var(--blue);
		background-color: var(--white);
		border: solid 2px var(--white);
	}
	.btn {
		&::after {
			background: url("../images/button-arrow.svg") center center no-repeat;
			filter: brightness(1) invert(0);
		}
	}
	.btn2 {
		color: var(--white);
		background-color: transparent;
		&::after {
			filter: brightness(0) invert(1);
		}
		&::hover {
			background-color: var(--maroon);
		}
	}
}
section, .section {
	width: 100%;
	float: left;
}
.p-t,
.p_t {
	padding-top: 60px;
}
.p-b,
.p_b {
	padding-bottom: 60px;
}
.pt-40 {
	padding-top: 40px;
}
.pb-40 {
	padding-bottom: 40px;
}
.center {
	text-align: center;
}
.align-left {
	text-align: left;
}
.wrapper,
.wp-block-column.wrapper {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto !important;
}
.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column.wrapper {
	-webkit-box-flex: unset !important;
	-ms-flex-positive: unset !important;
	flex-grow: unset !important;
	-ms-flex-preferred-size: unset !important;
	flex-basis: unset !important;
}
/* .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
flex-basis: unset !important;
} */
.main {
	width: 100%;
	float: left;
}
.section {
	width: 100%;
	float: left;
}
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flexwrap,
body .wp-block-columns.flexwrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap !important;
	flex-wrap: wrap !important;
	> div.wp-block-column {
		flex-basis: unset;
	}
}
.align-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.justify-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.justify-space-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.img-box {
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
    padding: 8px;
    background: #ffffff;
    border-radius: 16px;
	img{border-radius: 10px;}
}

/* .blue-bg {
background-color: var(--blue);
color: var(--black);
position: relative;
z-index: 1;
h1,
h2,
h3,
h4,
h5 {
color: var(--black);
span {
color: #fff;
}
&::after {
background-color: var(--black) !important;
}
}
} */
h1,
h2 {
	font-size: 48px;
	line-height: 58px;
	font-weight: bold;
	color: var(--black);
	margin-bottom: 20px;
	+ p{max-width: 900px; width: 100%; margin: 0 auto;}
	span {
		color: var(--blue);
	}
}
h3 {
	font-size: 38px;
	line-height: 48px;
	font-weight: bold;
	color: var(--black);
	margin-bottom: 20px;
}
.page-id-2 h2 {margin-bottom: 20px;}
h5 {
	font-size: 16px;
	line-height: 1.2;
	color: #7e7e7e;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 12px;
}
p {
	font-size: 18px;
	line-height: 28px;
	font-weight: 300;
	color: #262626;
}
body {
	.mt-0 {
		margin-top: 0;
	}
	.mb-0 {
		margin-bottom: 0;
	}
	.mt-24 {
		margin-top: 24px;
	}
	.mb-24 {
		margin-bottom: 24px;
	}
	.mt-32 {
		margin-top: 32px;
	}
	.mb-32 {
		margin-bottom: 32px;
	}
	.mt-40 {
		margin-top: 40px;
	}
	.mb-40 {
		margin-bottom: 40px;
	}
}
.button_list {
	gap: 12px;
	li {
		display: inline;
		margin: 3px;
	}
}
.btn,
.btn2 {
	display: inline-block;
	max-width: 200px;
	width: 100%;
	text-align: center;
	font-size: 16px;
	line-height: 26px;
	font-weight: 600;
	color: var(--white);
	background-color: var(--maroon);
	border: solid 2px var(--maroon);
	text-transform: uppercase;
	padding: 8px 16px;
	border-radius: 30px;
	span{
		font-size: 14px;
	}
	&.width-auto{max-width: none; width: auto;}
	&:after {
		content: "";
		display: inline-block;
		width: 28px;
		height: 12px;
		margin-left: 4px;
		background: url("../images/button-arrow-maroon.svg") center center no-repeat;
		filter: brightness(0) invert(1);
	}
}
.btn:hover {
	color: var(--white);
	background-color: #b12c12;
	border: solid 2px #b12c12;
	&:after {
		filter: brightness(0) invert(1);
	}
}
.btn2 {
	color: var(--maroon);
	background-color: transparent;
	&:after {
		filter: brightness(1) invert(0);
	}
	&:hover {
		color: var(--white);
		background-color: var(--maroon);
		border: solid 2px var(--maroon);
		&:after {
			filter: brightness(0) invert(1);
		}
	}
}
.btn.blue{
	background-color: var(--blue);
	border: solid 2px var(--blue);
	&:hover {
		background-color: #5633e1;
		border-color: #5633e1;
	}
}

.top_header {
	padding: 4px 0;
	.contact_details li {
		font-size: 13px;
		line-height: 1.2;
		font-weight: normal;
		color: var(--black);
		margin-right: 16px;
		a {
			color: var(--black);
		}
	}
	.social_icon {
		gap: 8px;
		position: relative;
		top: -2px;
		li a {
			opacity: 1;
			&:hover {
				opacity: 0.7;
			}
		}
	}
}
.header {
    position: sticky;
    top: 4px;
    z-index: 9999;
	margin-bottom: 20px;
	.flexwrap {
		background-color: var(--white);
		border-radius: 16px;
		padding: 12px 16px;
		box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
		gap: 8px;
	}
	.nav {
		display: flex;
		flex-wrap: wrap;
		gap: 14px;
		> li {
			position: relative;
			z-index: 1;
			a {
				font-size: 15px;
				line-height: 24px;
				font-weight: 500;
				color: #353535;
				&:hover {
					color: var(--maroon);
				}
			}
			&.menu-item-has-children {
				> a {
					background: url(../images/nav-arrow.svg) right 8px no-repeat;
					padding-right: 12px;
				}
				&::after {
					content: "";
					position: absolute;
					left: 0;
					right: 0;
					bottom: -6px;
					height: 10px;
					z-index: -1;
				}
			}
			&:hover .sub-menu {
				opacity: 1;
				visibility: visible;
			}
		}
		.sub-menu-toggle {
			display: none;
		}
		.sub-menu {
			position: absolute;
			left: 0;
			top: 32px;
			background-color: var(--white);
			box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.08);
			z-index: 99;
			width: 280px;
			padding: 10px 12px;
			border-radius: 8px;
			opacity: 0;
			visibility: hidden;
			transition: 200ms ease;
			li {
				width: 100%;
				a {
					display: inline-block;
					width: 100%;
					border-radius: 4px;
					margin: 4px 0;
					padding: 2px 4px 2px 24px;
					font-size: 14px;
					position: relative;
					&:before {
						content: "";
						position: absolute;
						left: 6px;
						top: 11px;
						width: 13px;
						height: 10px;
						background: url(../images/button-arrow.svg) left top no-repeat;
						background-size: contain;
						filter: brightness(0);
						opacity: 0.8;
					}
					&:hover {
						background-color: var(--gray);
					}
				}
			}
		}
	}
	.btn {
		background-color: var(--maroon);
		color: var(--white);
		padding: 8px 16px;
		font-size: 16px;
		line-height: 26px;
		font-weight: 500;
		text-transform: capitalize;
		border: none;
		&:after {
			display: none;
		}
		&:hover {
			background-color: #b32f16;
		}
	}
}
.banner {
	box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	background-color: var(--white);
	padding: 4px;
	border-radius: 16px;
	.flexslider {
		border-radius: 12px;
		overflow: hidden;
		margin: 0 !important;
		img {
			width: 100%;
			height: auto;
		}
	}
	.metaslider .flex-control-nav {
		bottom: 12px;
		li {
			a {
				width: 22px;
				height: 6px;
				background-color: var(--gray) !important;
				margin: 4px;
				&.flex-active {
					width: 32px;
					background-color: var(--maroon) !important;
				}
			}
		}
	}
	.metaslider.ms-theme-default-base .flexslider .flex-direction-nav li a:after {
		mask-size: 14px auto;
	}
}
.union-message {
	padding-left: 32px;
	padding-right: 32px;
	margin: 24px 0;
	h3 {
		font-size: 32px;
		line-height: 40px;
		font-weight: bold;
		color: var(--white);
		margin-bottom: 16px;
	}
	.button_list {
		margin-top: 32px;
	}
}
.icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	padding: 20px;
	background-color: #f1f1f1;
	border-radius: 90px;
}
.img_box {
	display: inline-block;
	max-width: 550px;
	width: 100%;
	background-color: var(--white);
	border-radius: 16px;
	box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.08);
	padding: 16px;
}
.title-description {
	max-width: 720px;
	width: 100%;
	margin: auto;
	font-size: 16px;
	line-height: 24px;
	color: #242424;
}

.box3-design {
	gap: 24px;
	> div {
		width: calc(33.33% - 16px);
	}
	figure {
		margin-bottom: 20px;
	}
	h4 {
		font-size: 22px;
		line-height: 30px;
		font-weight: 600;
		color: var(--black);
		margin-bottom: 8px;
	}
	p {
		font-size: 15px;
		line-height: 22px;
		font-weight: normal;
		color: var(--black);
	}
}

.blue_bg {
	.box3-design {
		h4 {
			color: var(--white);
		}
		p {
			color: var(--white);
		}
	}
}

.why-choose-section {
	.why-choose-box-section {
		> div {
			background-color: var(--lightblue);
			padding: 24px 20px 32px;
			border-radius: 16px;
		}
		.icon-circle {
			background: #e8e8ff;
			box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
		}
		p {
			color: #292929;
		}
	}
}

.our-objective-section {
	.psac-post-carousel.psac-design-2 .psac-post-carousel-content {
		border: solid 1px #e2e2e2;
		padding: 6px;
		padding-bottom: 12px;
		background-color: var(--white);
		border-radius: 12px;
		position: relative;
		z-index: 1;
		&:after {
			content: "";
			position: absolute;
			left: 0;
			right: 0;
			top: 0;
			bottom: 0;
			z-index: 2;
		}
	}
	.psac-post-img-wrap {
		border-radius: 5px;
		overflow: hidden;
	}
	.owl-stage {
		display: flex;
		.psac-post-carousel-slide {
			height: 100%;
			&:hover .psac-post-carousel-content {
				border: solid 1px #e2e2e2;
			}
		}
		.psac-post-carousel-content {
			height: 100%;
		}
	}
	.psac-post-carousel.psac-design-2 .psac-post-image-bg {
		height: 200px;
	}
	.psac-post-carousel.psac-design-2 .psac-post-margin-content {
		padding: 0 8px;
		.psac-post-title {
			font-size: 22px;
			line-height: 28px;
			font-weight: 600;
			color: var(--black);
			margin: 16px 0 12px !important;
		}
		.psac-post-content {
			font-size: 14px;
			line-height: 22px;
			font-weight: normal;
			color: #292929;
			.psac-post-short-content {
				margin-bottom: 0;
			}
		}
	}
	.psac-slider-and-carousel .owl-dots {
		margin-top: 16px;
		.owl-dot {
			width: 32px !important;
			height: 6px !important;
			margin: 0 4px;
			border-radius: 20px;
			background: #bebebe;
			&.active {
				background: var(--blue);
			}
		}
	}
	.psac-readmorebtn {
		display: none;
	}
}

.statistic-section {
	background-color: var(--black);
	border-radius: 16px;
	padding-left: 40px;
	padding-right: 40px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	&:before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background: url("./images/statistic-bg.png") center center no-repeat;
		background-size: cover;
		z-index: -1;
	}
	h2,
	h3,
	h4,
	p {
		color: var(--white);
	}
	.statistic_boxes {
		max-width: 872px;
		width: 100%;
		margin: 40px auto 0 auto;
		gap: 24px;
		> div {
			background: rgba(255, 255, 255, 0.1);
			box-shadow: -1px -1px 0px rgba(255, 255, 255, 0.25), 1px 1px 4px rgba(0, 0, 0, 0.32);
			backdrop-filter: blur(8px);
			border-radius: 16px;
			padding: 24px 12px;
			flex: 1 !important;
		}
		h4 {
			font-size: 40px;
			line-height: 40px;
			font-weight: 600;
			text-transform: capitalize;
			margin: 20px 0 4px;
		}
		p {
			font-size: 18px;
			line-height: 26px;
			font-weight: 400;
			text-transform: capitalize;
		}
	}
}

.testimonial_slider {
	background-color: var(--white);
	max-width: 1000px;
	width: 100%;
	margin: auto;
	border-radius: 16px;
	padding: 20px 20px 30px;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
	.slider-container {
		max-width: 700px;
		width: 100%;
		margin: 0 auto;
	}
	.wpmtst-testimonial-image {
		float: none !important;
		max-width: 100% !important;
	}
	.strong-view.wpmtst-default .wpmtst-testimonial {
		border: none;
		text-align: center;
	}
	.strong-view.wpmtst-default .wpmtst-testimonial-inner {
		border: none;
		padding: 0;
		text-align: center;
	}
	.strong-view.wpmtst-default .wpmtst-testimonial-image img {
		width: 80px !important;
		height: 80px !important;
		border-radius: 80px;
		border: none;
		padding: 0;
		box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.25);
	}
	.testimonial-content {
		padding-top: 15px;
	}
	.wpmtst-testimonial-inner p {
		font-size: 16px;
		line-height: 24px;
		font-weight: 400;
		color: #242424;
		margin: 20px 0 !important;
	}
	.testimonial-name {
		text-align: center !important;
		font-size: 20px;
		line-height: 28px;
		font-weight: 600;
		color: var(--black);
	}
	.testimonial-company {
		text-align: center !important;
		font-weight: 400;
		font-size: 14px;
		line-height: 22px;
		color: #424242;
	}
	.strong-view.pager-style-buttons .wpmslider-pager-link:before {
		display: none !important;
	}
	.strong-view .wpmslider-controls {
		padding-bottom: 0 !important;
		a {
			display: inline-block;
			width: 32px;
			height: 6px;
			border-radius: 10px;
			background-color: var(--black) !important;
			margin: 4px;
			&.active {
				background-color: var(--blue) !important;
			}
		}
	}
}

.gallery_section {
	.photo-gallery {
		.ngg-galleryoverview {
			margin: 0;
		}
		max-width: 1100px;
		width: 100%;
		margin: 0 auto;
		.ngg-gallery-thumbnail a {
			margin: 12px;
			background: var(--black);
			border: solid 2px var(--white);
			border-radius: 16px;
			filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2));
			img {
				border-radius: 14px;
				transition: 300ms ease;
			}
		}
		.ngg-galleryoverview.default-view .ngg-gallery-thumbnail-box {
			width: 33.33%;
		}
	}
}

.contact-section {
	background-color: var(--black);
	border-radius: 16px;
	overflow: hidden;
	padding-left: 40px;
	padding-right: 40px;
	position: relative;
	z-index: 1;
	&:before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background: url(./images/contactc-section-bg.png) center center no-repeat;
		background-size: cover;
		z-index: -1;
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	p {
		color: var(--gray);
	}
	p {
		font-size: 16px;
		line-height: 24px;
	}
	.address_sec {
		max-width: 360px;
		width: 100%;
		margin: 40px 0;
		li {
			margin-bottom: 16px;
			a {
				color: var(--gray);
				&:hover {
					text-decoration: underline;
				}
			}
		}
		h5 {
			font-size: 20px;
			font-weight: 600;
			text-transform: capitalize;
		}
	}
	.social_icon {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 12px;
		img {
			width: 30px;
		}
	}
	.contact-box {
		max-width: 540px;
		width: 100%;
		margin: 0 auto;
		background: rgba(217, 217, 217, 0.1);
		box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.32);
		backdrop-filter: blur(12px);
		border-radius: 16px;
		padding: 24px 40px;
		h4 {
			font-size: 32px;
			line-height: 40px;
			font-weight: 600;
			color: var(--gray);
			text-transform: capitalize;
		}
		form {
			label {
				display: none;
			}
			.wpforms-field {
				padding: 4px 0;
			}
			input,
			textarea {
				max-width: 100%;
				border-radius: 4px;
				background-color: var(--lightblue);
			}
			.wpforms-submit {
				width: 100%;
				font-size: 15px;
				line-height: 23px;
				text-transform: uppercase;
				background-color: var(--maroon) !important;
				&:after {
					content: "";
					display: inline-block;
					width: 28px;
					height: 12px;
					margin-left: 4px;
					background: url(../images/button-arrow.svg) center center no-repeat;
					filter: brightness(0) invert(1);
					background-size: 21px;
				}
			}
			.wpforms-error {
				display: none;
			}
		}
	}
}

.getintouch_section {
	justify-content: space-between;
	> div {
		width: auto !important;
		flex-basis: unset !important;
		flex-grow: unset !important;
	}
	h2 {
		margin-bottom: 16px;
		font-size: 32px;
		line-height: 36px;
	}
	p {
		font-size: 16px;
		line-height: 26px;
		color: #373737;
	}
	.btn {
		font-size: 22px;
		font-weight: 600;
		max-width: unset;
		padding: 12px 28px;
		&:after {
			width: 34px;
			height: 20px;
			background-size: contain;
			top: 3px;
			position: relative;
			margin-left: 4px;
		}
	}
}

.footer {
	.footer_grid {
		border-radius: 16px;
		padding: 40px 40px 0;
		margin-bottom: 8px;
		.grid {
			display: grid;
			grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
			gap: 24px;
			p {
				font-size: 14px;
				line-height: 22px;
				font-weight: normal;
				color: var(--white);
				max-width: 320px;
				width: 100%;
			}
		}
		.foot_logo {
			display: inline-block;
			background-color: var(--gray);
			padding: 8px 12px;
			border-radius: 6px;
			margin-bottom: 12px;
		}
		h3 {
			font-size: 22px;
			line-height: 30px;
			font-weight: 600;
			color: var(--white);
			margin-bottom: 12px;
		}
		ul li {
			font-size: 14px;
			line-height: 24px;
			font-weight: normal;
			color: var(--white);
			margin-bottom: 6px;
			a {
				color: var(--white);
			}
		}
		.links li a {
			background: url(images/arrow-icon.svg) left 6px no-repeat;
			padding-left: 20px;
			&:hover {
				text-decoration: underline;
			}
		}
		.social_icon {
			margin-top: 24px;
			gap: 8px;
			a {
				display: inline-block;
				opacity: 1;
				&:hover {
					opacity: 0.6;
				}
			}
		}
		.address {
			li {
				&:nth-child(1) {
					background: url("./images/footer-marker-icon.svg") left 4px no-repeat;
				}
				&:nth-child(2) {
					background: url("./images/footer-phone-icon.svg") left 3px no-repeat;
				}
				&:nth-child(3) {
					background: url("./images/footer-mail-icon.svg") left 3px no-repeat;
				}
				padding-left: 24px;
				margin-bottom: 10px;
			}
		}
	}
	.copyright {
		width: 100%;
		float: left;
		font-size: 12px;
		line-height: 22px;
		border-top: solid 1px #c2503a;
		padding: 8px 0;
		margin-top: 20px;
	}
}

.respo_menu {
	display: none;
	float: right;
	background-color: var(--white);
	padding: 10px 18px 9px 12px;
	border: solid 1px #d9d9d9;
	background: #f5f5f5;
	border-radius: 44px;
	color: var(--black);
	font-size: 14px;
	font-weight: 600;
}
.respo_menu span {
	display: inline-block;
	width: 16px;
	height: 3px;
	background: var(--black);
	position: relative;
	margin: 4px 6px 4px 10px;
}
.respo_menu span:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -7px;
	height: 3px;
	background: var(--black);
}
.respo_menu span:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -7px;
	height: 3px;
	background: var(--black);
}

/* About Page CSS */

.grid-box {
	gap: 16px; margin: 16px 0;
	> div{
		background-color: #fff; border-radius: 16px; border: dashed 2px var(--black); padding: 16px; display: flex ; align-items: center; justify-content: center; text-align: center;
		&:hover{border-style: solid;}
	}
	h4{color: var(--black); font-weight: 600; font-size: 18px;}
}
.btn_list {
	display: flex; justify-content: space-between; gap: 20px;
	li{width: 100%; display: contents;}
	a{
		max-width: 100%;display: flex; align-items: center; justify-content: center; flex-direction: column; font-size: 20px;
		&:after{display: none;}
	}
}

.member_list{
	gap: 20px;
	> div{
		box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
        padding: 6px;
        background: #fff;
        border-radius: 16px;
		text-align: center;
		padding-bottom: 20px;
	}
	figure{border-radius: 10px; overflow: hidden; margin-bottom: 8px;}
	h4{font-size: 22px; font-weight: 600; color: var(--black);}
	p{font-size: 16px; color: #525050;}
}

.get-involved-section{
	figure{max-width: 320px; width: 100%; margin: auto;}
}

/* FAQ CSS */
#rank-math-faq .rank-math-list-item {
	position: relative;
	z-index: 1;
	margin-bottom: 16px;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	text-align: left;
    background-color: #ffffff;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}
.rank-math-list-item .rank-math-answer {
	display: none;
	padding: 16px 24px;
}
.rank-math-list-item .rank-math-answer p {
	color: #000;
}
.rank-math-list-item.active .rank-math-answer {
	display: block;
}
#rank-math-faq .rank-math-question {
	font-size: 22px;
	line-height: 32px;
    font-weight: 600;
	cursor: pointer;
	position: relative;
	width: 100%;
	padding: 16px 24px 16px 52px;
	margin: 0;
}
.rank-math-list-item .rank-math-question::before {
	content: "";
	position: absolute;
	left: 24px;
	top: 22px;
	width: 18px;
	height: 18px;
	-webkit-filter: brightness(0);
	filter: brightness(0);
	background: url("/wp-content/uploads/2025/09/plus-minus-441edd.svg") 2px 4px no-repeat;
	background-size: 36px;
}
.rank-math-list-item.active .rank-math-question::before {
	-webkit-filter: brightness(1);
	filter: brightness(1);
}
.rank-math-list-item .rank-math-question::after {
	content: "";
	position: absolute;
	left: 20px;
	top: 20px;
	width: 23px;
	height: 23px;
	border-radius: 20px;
	background-color: var(--white);
	z-index: -1;
}
.rank-math-list-item.active .rank-math-question::before {
	background-position: -24px center;
}
#rank-math-faq .rank-math-question strong {
	font-weight: 600;
}

#rank-math-faq .rank-math-list-item.active {
    background-color: #ffffff;
}
#rank-math-faq .rank-math-list-item.active .rank-math-question {
    color: #ffffff;
    background-color: var(--maroon);
}
.rank-math-list-item.active .rank-math-question::after {
	background-color: #000;
	background-image: none;
}
/* .rank-math-list-item.active .rank-math-question::before {
-webkit-filter: brightness(1);
filter: brightness(1);
} */
#rank-math-faq .rank-math-list-item:hover:before {
	opacity: 0.2;
}


label.wpforms-field-label{
	margin-bottom: 4px !important;
    font-weight: 600 !important;
    color: #3e3e3e !important;
}
.wpforms-container .wpforms-field{
	padding: 8px 0 !important;
}
.wpforms-field-container{
	textarea{height: 100px !important;}
}
div.wpforms-container-full button[type=submit]{
	background-color: var(--blue) !important;
	padding: 16px 32px !important;
	height: auto;
	border-radius: 40px;
	font-size: 20px;
}

.page-title{
	text-align: center;
	color: var(--blue);
    margin-bottom: 32px;
}
.category_boxes{
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	article{width: calc(33.33% - 16px);}
	.post-thumbnail img{background: #fff; padding: 6px; border-radius: 16px; box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.12);}
	h3{
		font-size: 22px; line-height: 26px; font-weight: 600; margin: 2px 0 8px;
		a{color:var(--maroon);}
	}
	.post_date{display: inline-block; font-size: 13px; color: #6c6c6c;margin-top: 12px; }
	p{font-size: 16px; line-height: 24px;}
	a.post-link{
		display: inline-block; font-size: 14px; background: var(--blue); color: #fff; padding: 4px 12px; border-radius: 6px; margin-top: 12px;
		&:hover{background: #4725cf;}
	}
}
body.single {
	.entry-title{
		font-size: 40px;
		line-height: 50px;
		color: var(--maroon);
	}
	.post-thumbnail img {
		background: #fff;
		padding: 6px;
		border-radius: 16px;
		box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.12);
		margin-bottom: 24px;
	}
}

.flash-anim{
	-webkit-animation:2s infinite flash;
	animation:2s infinite flash;
}

@-webkit-keyframes flash{
	0%,100%,50%{opacity:1}
	25%,75%{opacity:0}
}
@keyframes flash{
	0%,100%,50%{opacity:1}
	25%,75%{opacity:0}
}

.entry-header {
	text-align: center;
	.entry-title{font-size: 40px;
		line-height: 50px;
		color: var(--maroon);
	}
}
form.mepr-signup-form, form.mepr-form{
	max-width: 700px;
	width: 100%;
	margin: auto;
	background: #fff;
	padding: 24px;
	border-radius: 16px;
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}
input[type="submit"]{display: inline-block; width: 100%; text-align: center; font-size: 16px; line-height: 26px; font-weight: 600; color: var(--white); background-color: var(--maroon); border: solid 2px var(--maroon); text-transform: uppercase; padding: 8px 16px; border-radius: 30px;}
.mp-form-label{
	font-size: 14px;
    color: #444444;
	margin-bottom: 2px;
}

@media (max-width: 1240px) {
	.respo_menu {
		display: inline-block;
	}
	.navigation {
		position: relative;
	}
	.menu-main-menu-container {
		position: absolute;
		right: 0;
		top: 50px;
		z-index: 9;
		background: #fff;
		width: 280px;
		padding: 16px;
		box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.07);
		border-radius: 8px;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: 200ms ease;
		-o-transition: 200ms ease;
		transition: 200ms ease;
	}
	.navigation.active .menu-main-menu-container {
		opacity: 1;
		visibility: visible;
	}
	.header {
		.logo {
			flex: 1;
		}
		.nav {
			flex-direction: column;
			gap: 8px;
			li.menu-item-has-children {
				> a {
					background: no-repeat;
					padding: 0;
				}
			}
			.sub-menu {
				display: none;
				position: static;
				visibility: visible;
				opacity: 1;
				box-shadow: none;
				background: #f7f7f7;
				& li a {
					margin: 2px 0;
					font-size: 13px;
				}
			}
		}
		.sub-menu-toggle {
			display: inline-block !important;
			float: right;
			&[aria-expanded="false"] .icon-minus {
				display: none;
			}
			&[aria-expanded="true"] {
				.icon-plus {
					display: none;
				}
				.icon-minus {
					display: block;
				}
				& + .sub-menu {
					display: block;
				}
			}
		}
	}
}
@media (max-width: 980px) {
	.footer {
		& .footer_grid {
			.grid {
				grid-template-columns: 1fr;
			}
			.content {
				flex-direction: column;
				align-items: baseline;
			}
			.address {
				max-width: 320px;
				width: 100%;
			}
		}
	}
}
@media (max-width: 600px) {
	.p-b,
	.p_b {
		padding-bottom: 40px;
	}
	.p-t,
	.p_t {
		padding-top: 40px;
	}
	h1,
	h2 {
		font-size: 32px;
		line-height: 38px;
	}
	.top_header {
		.contact_details li:first-child {
			display: none;
		}
	}
}
@media (max-width: 480px) {
	.respo_menu {
		font-size: 0;
		padding: 15px 4px 14px 3px;
	}
}
