/* Utilities Start */

.site-main ul {
	font-size: inherit !important;
	line-height: 1.2;
	list-style: none;
	padding-left: 30px;
}

.site-main ul li {
	position: relative;
}

.site-main ul li::before {
	position: absolute;
	content:'';
	width:6px;
	height:6px;
	left: -20px;
	top: 7px;
	background: #0B9729;
}

.site-main ul li:not(:last-child) {
	margin-bottom: 23px;
}

.w-full{
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 auto !important;
}

.container-1200 {
	max-width: 1200px !important;
	width: 95% !important;
	margin: 0 auto;
}

.container-1440 {
	max-width: 1440px !important;
	width: 100% !important;
	margin: 0 auto;
}

/* Utilities End */

/* Certification Page Start */

.certified-text-list {
	list-style: none;
}

.certified-text-list li {
	position: relative;
}

.certified-text-list li::before {
	position: absolute;
	content:'';
	width:6px;
	height:6px;
	left: -20px;
	top: 12px;
	background: #0B9729;
}

.certified-text-list li:not(:last-child) {
	margin-bottom: 40px;
}

.certified-text-list {
	max-width: 820px;
}

@media screen and (max-width:1024px){
	.certified-text-list li:not(:last-child) {
		margin-bottom: 20px;
	}
}

/* Certification Page End */

/* Accordion Start */

.accordion-wrapper .wp-block-accordion-heading__toggle-title {
	font-family: 'Poppins' !important;
	color: #141429 !important;
	font-size: 24px !important;
	line-height: 1.5;
	font-weight: 700;
	margin: 0;
	text-decoration: none !important;
}

.accordion-wrapper .wp-block-accordion-heading__toggle[aria-expanded="true"] .wp-block-accordion-heading__toggle-title {
	color: #01508b !important;
}

.accordion-wrapper.wp-block-accordion {
	max-width: 1170px;
	width: 100%;
}

.accordion-wrapper .wp-block-accordion-heading {
	margin-bottom: 0;
}

.accordion-wrapper .wp-block-accordion-heading__toggle-icon {
	font-family: 'Poppins';
	font-weight:400 !important;
	color: #0B9729 !important;
}

.accordion-wrapper .wp-block-accordion-heading__toggle[aria-expanded="true"] .wp-block-accordion-heading__toggle-icon {
	color: #01508b !important;
}

.accordion-wrapper .wp-block-accordion-panel {
	width: calc(100% - 60px);
	margin: 0 auto 30px;
	font-size: 18px;
	line-height: 1.5;
}

.accordion-wrapper .wp-block-accordion-item {
	margin-bottom: 0;
	border-bottom: 1px solid #BDBDBD;
}

@media screen and (max-width:1024px){
	.accordion-wrapper .wp-block-accordion-heading__toggle-title {
		font-size: 20px !important;
	}
}

@media screen and (max-width:767px){
	.accordion-wrapper .wp-block-accordion-heading__toggle-title{
		font-size: 18px !important;
	}

	.accordion-wrapper .wp-block-accordion-panel{
		width: calc(100% - 30px);
		margin-bottom: 10px;
		font-size: 16px !important;
	}
}

/* Accordion End */

/* Service Card Shortcode Start */

.gr-services-grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.gr-services-grid .gr-service-card {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	max-width: calc(33.33% - 12px);
	width: 100%;
	aspect-ratio: 400/305;
	color: #fff;
	box-shadow: 0px 23px 46px 0px rgba(1, 80, 154, 0.15);
}

.gr-services-grid .gr-service-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	transition: all .3s ease-in-out;
}

.gr-service-card:hover .gr-service-bg {
	transform: scale(1.05);
}

.gr-services-grid .gr-service-content {
	position: relative;
	width: 100%;
	z-index: 9;
}

.gr-services-grid .gr-service-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg,rgba(0,80,139,0.13) 0%,#00508b 100%);
	z-index: 1;
}

.gr-services-grid .gr-service-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 16px 20px;
}

.gr-services-grid .gr-service-content .title {
	font-size: 30px;
	font-weight: 500;
	line-height: 1.4;
	color: #fff;
	letter-spacing: -0.6px;
	margin: 0;
}

.gr-services-grid .gr-service-content .gr-arrow{
	display: flex;
	transition: all .3s ease-in-out;
}

.gr-services-grid .gr-service-card:hover .gr-arrow {
	transform: translateX(-10px);
}

@media screen and (max-width:1024px){
	.gr-services-grid .gr-service-card {
		max-width: calc(50% - 8px);
	}
}

@media screen and (max-width:767px){
	.gr-services-grid .gr-service-card {
		max-width: 400px;
	}
}

/* Service Card Shortcode End */

/* Service Single Tempalte Start */

.service-single-card {
	transition: all .3s ease-in-out;
}

/* .service-single-card:hover {
transform: translateY(-5px);
} */

.service-single-card .underline-title {
	position: relative;
}

/* 
.service-single-card .underline-title:before {
position: absolute;
content: '';
left: 0;
width: 0%;
height: 1px;
background: currentColor;
z-index: 99999;
bottom: -3px;
transition: all .3s ease-in-out;
}

.service-single-card:hover .underline-title:before {
width: 100%;
} */

.service-single-text-list {
	list-style: none;
	padding-left: 30px;
	column-count: 2;
	gap: 30px;
}

.service-single-text-list li {
	position: relative;
	font-size: 18px;
	line-height: 1.2;
}

.service-single-text-list li::before {
	position: absolute;
	content:'';
	width:6px;
	height:6px;
	left: -20px;
	top: 7px;
	background: #0B9729;
}

.service-single-text-list li:not(:last-child) {
	margin-bottom: 23px;
}

.leadership-contact-sec .container{
	max-width: 1230px;
	width: 95%;
	margin: 60px auto 0;
	display: flex;
	flex-direction: column;
	gap: 42px;
}

.leadership-contact-sec .title {
	font-size: 53px;
	line-height: 1.2;
	text-align: center;
	color: #141429;
	margin: 0;
}

.leadership-contact-sec .leadership-contact-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 34px;
}

.leadership-contact-sec .leaderships-wrap {
	max-width: 458px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.leadership-contact-sec .leadership-item {
	background: #00508B;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.leadership-contact-sec .leadership-item .title {
	font-size: 25px;
	line-height: 1.2;
	color: #fff;
	margin: 0;
	text-align: left;
}

.leadership-contact-sec .leadership-item .title a{
	color: #fff;
}

.leadership-contact-sec .leadership-item .link {
	font-size: 16px;
	line-height: 1.2;
	color: #fff;
	text-decoration: underline;
}

.leadership-contact-sec .leadership-item .inner-wrap {
	padding: 20px;
}

.leadership-contact-sec .leadership-item .leader-img {
	aspect-ratio: 1;
	object-fit: cover;
	object-position: top;
	max-width: 150px;
	width: 100%;
	height: auto;
}

.leadership-contact-sec .contactus-wrap {
	background: #F5F5F5;
	padding: 44px;
	max-width: 714px;
	width: 100%;
	align-self: stretch;
}

.leadership-contact-sec .contactus-wrap .content {
	font-size: 28px;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 40px;
}

.leadership-contact-sec .contactus-wrap .form-wrapper form {
	margin: 0 !important;
}

.service-content-wrapper .divider {
	background: #E0E0E0;
	max-width: 1230px;
	width: 100%;
	margin: 60px auto;
}

.services-sec .container{
	max-width: 1230px;
	width: 95%;
	margin: 0 auto 90px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.services-sec .title {
	font-size: 38px;
	line-height: 1.2;
	text-align: center;
	color: #141429;
	margin: 0;
}

.services-sec .service-item .title{
	font-size: 24px;
	line-height: 1.3;
	letter-spacing: -0.48px;
	color: #00508B;
	transition: all .3s ease-in-out;
}

.services-sec .services-list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
}

.services-sec .service-item {
	display: flex;
	align-self: stretch;
	align-items: center;
	justify-content: center;
	padding: 16px 25px;
	background: #fff;
	box-shadow: 0 23px 46px 0 #01509A19;
	max-width: calc(25% - 12px);
	width: 100%;
}

.services-sec .service-item:hover .title {
	color: #0B9729;
}

@media screen and (max-width:1024px){
	.service-single-text-list  li:not(:last-child) {
		margin-bottom: 10px;
	}

	.leadership-contact-sec .contactus-wrap .content {
		font-size: 20px;
		margin-bottom: 30px;
	}

	.leadership-contact-sec .leadership-item .title {
		font-size: 20px;
	}

	.leadership-contact-sec .contactus-wrap {
		padding: 26px;
	}

	.leadership-contact-sec .title {
		font-size: 40px;
	}

	.services-sec .title{
		font-size: 30px;
	}

	.services-sec .service-item {
		padding: 10px;
		max-width: calc(33.33% - 12px);
	}

	.services-sec .service-item .title {
		font-size: 20px;
	}

	.service-content-wrapper .divider{
		margin: 50px auto;
	}

	.leadership-contact-sec .container{
		margin: 50px auto 0;
	}

	.services-sec .container{
		margin: 0 auto 70px;
	}
}

@media screen and (max-width:991px){
	.leadership-contact-sec .leadership-contact-wrapper {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.leadership-contact-sec .contactus-wrap {
		margin: 0 auto;
	}

	.leadership-contact-sec .leaderships-wrap {
		max-width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}

	.leadership-contact-sec .leadership-item {
		max-width: calc(50% - 10px);
		width: 100%;
		align-items: self-end;
	}

	.leadership-contact-sec .leadership-item .inner-wrap {
		max-width: calc(100% - 120px);
	}

	.services-sec .service-item {
		max-width: calc(50% - 8px);
	}
}

@media screen and (max-width:767px){
	.service-single-text-list {
		column-count: 1;
	}

	.leadership-contact-sec .leaderships-wrap {
		flex-direction: column;
	}

	.leadership-contact-sec .leadership-item {
		max-width: 500px;
		align-items: center;
	}

	.services-sec .service-item {
		max-width: 400px;
	}

	.service-content-wrapper .divider{
		margin: 40px auto;
	}

	.services-sec .container{
		margin: 0 auto 50px;
	}

	.leadership-contact-sec .container{
		margin: 40px auto 0;
	}
}

@media screen and (max-width:450px) {
	.leadership-contact-sec .leadership-item {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0;
	}

	.leadership-contact-sec .leadership-item .inner-wrap {
		max-width: 100%;
	}

	.leadership-contact-sec .leadership-item .title,
	.leadership-contact-sec .leadership-item .link{
		text-align: center;
	}
}
/* Service Single Tempalte End */

/* knowledge center index shortcode Start */

.gr-knowledge-center--shortcode-wrapper {
	margin: 60px auto;
}

/* Container */
.gr-knowledge-center {
	position: relative;
}

/* FILTERS SECTION */
.gr-kc-filters {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	gap: 20px;
	flex-wrap: wrap;
}

.gr-kc-filters.flex-end {
	justify-content: flex-end;
}

.gr-kc-filter-left {
	display: flex;
	align-items: center;
	gap: 15px;
}

.gr-kc-filter-right {
	flex: 1;
	max-width: 500px;
}

/* Category Select */
.gr-kc-category-filter {
	flex: 1;
	min-width: 200px;
	height: 44px;
	padding: 10px 30px 10px 16px;
	font-size: 16px;
	border: 1px solid #00508B;
	border-radius: 0;
	background: #fff url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22m6%209%206%206%206-6%22%2F%3E%3C%2Fsvg%3E") no-repeat right 15px center / 20px;
	appearance: none;
	cursor: pointer;
	transition: border-color 0.3s ease;
}

.gr-kc-category-filter:hover {
	border-color: #0073aa;
}

.gr-kc-category-filter:focus {
	outline: none;
	border-color: #0073aa;
	box-shadow: 0 0 0 1px #0073aa;
}

/* Reset Filter Button */
.gr-kc-reset-filter {
	flex: 1;
	width: max-content;
	font-size: 16px;
	color: #0093FF;
	background: transparent;
	border: none;
	cursor: pointer;
	text-decoration: underline;
	transition: color 0.3s ease;
}

/* Search Wrapper */
.gr-kc-search-wrapper {
	position: relative;
	width: 100%;
}

.gr-kc-search {
	width: 100% !important;
	padding: 18px 30px 18px 20px !important;
	font-size: 16px !important;
	border: none !important;
	border-radius: 0 !important;
	background: #F5F5F5 !important;
	height: 62px !important;
}

.gr-kc-search-btn {
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	padding: 0;
	color: #01508b;
	transition: color 0.3s ease;
	line-height: 1;
}

.gr-kc-search-btn:hover {
	color: #0B9729;
}

/* RESULTS HEADER */
.gr-kc-results-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 28px;
}

.gr-kc-results-header h2 {
	margin: 0;
	color: #141429;
}

.gr-kc-results-count {
	color: #424242;
}

/* LOADING OVERLAY */
.gr-kc-loading {
	/* 	position: absolute;
	top: 180px;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.9);
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 100px;
	z-index: 100; */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.9);
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 100px;
	z-index: 100;
	height: 100%;
	width: 100%;
}

.gr-kc-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #0B9729;
	border-radius: 50%;
	animation: gr-spin 1s linear infinite;
}

@keyframes gr-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* CONTENT GRID */
.gr-kc-content {
	min-height: 400px;
	position: relative;
}

.gr-kc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 45px 16px;
}

.gr-card-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* Card Styles */
.gr-kc-card {
	position:relative;
	background: #00508B;
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 23px 46px #01509A1A;
}

.gr-kc-card-image {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #fff;
}

.gr-kc-card-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 400 / 236;
}

.gr-kc-card-content {
	padding: 16px 30px;
	background: #00508B;
}

.gr-kc-card-title {
	color: #fff;
	margin: 0;
	font-family: 'Poppins', sans-serif !important;
	font-size: 20px;
	font-weight: 400 !important;
	line-height: 1.4;
	width: 100%;
}

.gr-kc-card-title a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.gr-kc-card-title a:hover {
	color: #fff;
}

/* No Results */
.gr-kc-no-results {
	text-align: center;
	padding: 80px 20px;
	font-size: 18px;
	color: #666;
}

/* Error Message */
.gr-kc-error {
	text-align: center;
	padding: 80px 20px;
	font-size: 18px;
	color: #d32f2f;
}

/* PAGINATION */
.gr-kc-pagination {
	margin-top: 50px;
}

.gr-kc-pagination-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.gr-kc-page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 15px;
	font-size: 16px;
	font-weight: 600;
	color: #14142996;
	background: #fff;
	border-bottom: 2px solid transparent;
	border-radius: 0;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.gr-kc-page-link:hover:not(.disabled):not(.active) {
	border-color: #00508B;
	color: #00508B;
}

.gr-kc-page-link.active {
	border-color: #00508B;
	color: #00508B;
	cursor: default;
}

.gr-kc-page-link.disabled {
	color: #ccc;
	cursor: not-allowed;
	opacity: 0.6;
}

/* Pagination dots */
.gr-kc-page-dots {
	display: inline-flex;
	align-items: center;
	padding: 0 5px;
	color: #999;
}

/* Prev/Next specific styling */
.gr-kc-prev,
.gr-kc-next {
	border: none;
}

/* RESPONSIVE DESIGN */

@media screen and (max-width: 1024px) {

	.gr-knowledge-center--shortcode-wrapper {
		margin: 50px auto;
	}

	.gr-kc-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 767px) {

	.gr-knowledge-center--shortcode-wrapper {
		margin: 40px auto;
	}

	.gr-kc-search {
		padding: 10px !important;
		height: 42px !important;
	}

	.gr-kc-search-btn {
		right: 14px;
	}

	.gr-kc-filters {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.gr-kc-filter-left {
		flex-direction: column;
		width: 100%;
	}

	.gr-kc-category-filter {
		width: 100%;
		height: 40px;
		padding: 8px 10px;
		background-position-x: right 10px;
	}

	.gr-kc-filter-right {
		max-width: 100%;
	}

	.gr-kc-results-header {
		flex-direction: row;
		align-items: flex-start;
		gap: 10px;
	}

	.gr-kc-results-header h2 {
		font-size: 24px;
	}

	.gr-kc-card-content{
		padding: 12px;
	}

	.gr-kc-card-title {
		font-family: 'Poppins', sans-serif !important;
		font-size: 18px;
	}

	.gr-kc-page-link {
		min-width: 35px;
		height: 35px;
		font-size: 14px;
		padding: 0 10px;
	}

	.gr-kc-pagination{
		margin-top: 30px;
	}
}

@media screen and (max-width: 600px) {
	.gr-kc-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media screen and (max-width: 480px) {

	.gr-kc-results-header {
		flex-direction: column;
	}

	.gr-kc-page-link {
		min-width: 32px;
		height: 32px;
		font-size: 13px;
	}

	.gr-kc-prev,
	.gr-kc-next {
		font-size: 13px;
		min-width: 40px;
	}
}
/* knowledge center index shortcode End */

/* Single Post Start */

.single-post-wrapper .single-banner{
	position: relative;
	display: flex;
	align-items: center;
	min-height: 230px;
	padding: 60px 0;
}

.single-post-wrapper .single-banner:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #00508B;
	background: linear-gradient(50deg,rgba(0, 80, 139, 1) 0%, rgba(0, 80, 139, 0.8) 100%);
	z-index: 0;
}

.single-post-wrapper .single-banner .sub-title {
	position:relative;
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 5px;
	color: #fff;
	font-family: "Poppins" , sans-serif !important;
	font-weight: 400;
	z-index: 1;
}

.single-post-wrapper .single-banner .title {
	position:relative;
	font-size: 2.5rem;
	line-height: 1.4;
	color: #fff;
	z-index:1;
}

.single-post-wrapper .gr-single-post-content ul {
	list-style: none !important;
}

.single-post-wrapper .gr-single-post-content ol {
	list-style: auto !important;
}

.single-post-wrapper .gr-single-post-content ol li::marker {
	color:#0B9729;
}

.single-post-wrapper .divider {
	margin: 35px auto;
	background: #BDBDBD;
}

.single-post-wrapper .featured-post-wrap{
	margin-bottom: 80px;
}

.single-post-wrapper .featured-post-wrap .title {
	font-size: 53px;
	line-height: 1.4;
	text-align: center;
	color: #141429;
	margin-bottom: 35px;
}

.single-post-wrapper .featured-post-wrap .latest-post-title,
.single-post-wrapper .featured-post-wrap .latest-post-title a{
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
	font-family: 'Poppins', sans-serif !important;
	font-weight: 400;
}

.single-post-wrapper .gr-single-post-content{
	margin: 60px auto;
}

.single-post-wrapper .gr-single-post-content *:last-child {
	margin-bottom: 0;
}

@media screen and (max-width:1024px){
	.single-post-wrapper .single-banner .title {
		font-size: 2rem;
	}

	.single-post-wrapper .single-banner {
		min-height: 130px;
	}

	.single-post-wrapper .single-banner{
		padding: 50px 0;
	}

	.single-post-wrapper .gr-single-post-content{
		margin: 50px auto;
	}

	.single-post-wrapper .featured-post-wrap .title {
		font-size: 42px;
	}
}

@media screen and (max-width:767px){
	.single-post-wrapper .single-banner .title {
		font-size: 1.5rem;
	}

	.single-post-wrapper .single-banner{
		padding: 40px 0;
	}

	.single-post-wrapper .gr-single-post-content{
		margin: 40px auto;
	}

	.single-post-wrapper .single-banner {
		min-height: 130px;
	}

	.single-post-wrapper .featured-post-wrap .title {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.single-post-wrapper .featured-post-wrap,
	.single-post-wrapper .latest-posts-arrows{
		margin-bottom: 40px;
	}
}
/* Single Post End */

/* FAQ Shortcode Start */
.faqs-wrap {
	margin: 60px 0;
}

.faqs-wrap .title {
	font-size: 53px;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 36px;
	color: #141429;
}

.faq-item {
	border-bottom: 1px solid #bdbdbd;
	padding: 24px 0;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	gap: 20px;
}

.faq-question h3 {
	font-size: 24px;
	font-weight: 700;
	margin: 0;
	color: #141429;
	transition: color 0.3s ease;
	font-family: "Poppins",sans-serif !important;
}

.faq-item.active .faq-question h3 {
	color: #00508B; /* Change to your brand color */
}

.faq-toggle {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	position: relative;
	color: #0B9729; /* Green color for icons */
}

.faq-item.active .faq-toggle{
	color: #00508B;
}

.faq-toggle svg {
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.3s ease;
}

.faq-toggle .icon-minus {
	opacity: 0;
}

.faq-item.active .faq-toggle .icon-plus {
	opacity: 0;
}

.faq-item.active .faq-toggle .icon-minus {
	opacity: 1;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding-top: 26px;
	max-width: 1170px;
	width: 95%;
	margin: 0 auto;
}

.faq-answer p {
	font-size: 19px;
	line-height: 1.6;
	color: #4D4D4D;
	margin: 0;
}

/* Responsive */

@media screen and (max-width: 1024px) {
	.faqs-wrap {
		margin: 50px 0;
	}

	.faqs-wrap .title {
		font-size: 42px;
		margin-bottom: 20px;
	}

	.faq-item {
		padding: 20px 0;
	}

	.faq-item.active .faq-answer {
		padding-top: 10px;
	}

	.faq-question h3 {
		font-size: 20px;
	}

	.faq-answer p {
		font-size: 18px;
	}
}

@media screen and (max-width: 767px) {
	.faqs-wrap {
		margin: 40px 0;
	}

	.faqs-wrap .title {
		font-size: 32px;
	}

	.faq-question h3 {
		font-size: 18px;
	}

	.faq-answer p {
		font-size: 16px;
	}
}
/* FAQ Shortcode End */

/* Featured Media Shortcode Start */

.gr-featured-media .gr-featured-media__container {
	display: flex;
	gap: 40px;
	align-items: center;
}

.gr-featured-media .gr-featured-media__image {
	flex: 0 0 45%;
	position: relative;
	overflow: hidden;
}

.gr-featured-media .gr-featured-media__image img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 400 / 240;
	object-fit: cover;
}

.gr-featured-media .gr-featured-media__play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 68px;
	transition: transform 0.3s ease;
}

.gr-featured-media .gr-featured-media__play-button:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

.gr-featured-media .gr-featured-media__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.gr-featured-media .gr-featured-media__label {
	color: #0B9729;
	font-size: 18px;
	line-height: 1.5;
}

.gr-featured-media .gr-featured-media__title,
.gr-featured-media .gr-featured-media__title a{
	color: #00508B;
	font-size: 26px;
	line-height: 1.3;
	margin-bottom: 0;
}

.gr-featured-media .gr-featured-media__excerpt {
	color: #424242;
	font-size: 19px;
	line-height: 1.6;
}

.gr-featured-media .gr-featured-media__button,
.gr-media .gr-featured-media__button{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: max-content;
	color: #00A651;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 8px;
	transition: gap 0.3s ease;
}

.gr-media .gr-featured-media__button {
	color: #fff;
	position: absolute;
	bottom: 26px;
	right: 18px;
}

.gr-featured-media .gr-featured-media__button svg,
.gr-media .gr-featured-media__button svg{
	width: 16px;
	height: 16px;
}

.gr-media .gr-kc-card-image img {
	aspect-ratio: 296 / 158;
}

.gr-media .gr-media-card-content {
	padding: 16px 16px 50px;
}

.gr-media .gr-media-card-content .event-category {
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
}

.gr-media .gr-kc-grid {
	grid-template-columns: repeat(4,1fr);
	gap: 24px 16px;
}

.gr-media .gr-media-card-content .gr-event-date {
	font-size: 18px;
	color: #fff;
	margin: 0;
}

.gr-media .gr-media-card-content .gr-event-location {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.gr-media .gr-media-card-image .play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 38px;
	height: 38px;
	object-fit: cover;
	aspect-ratio: unset;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
	.gr-media .gr-kc-grid {
		grid-template-columns: repeat(3,1fr);
	}
}

@media screen and (max-width: 991px) {
	.gr-media .gr-kc-grid {
		grid-template-columns: repeat(2,1fr);
	}
}

@media screen and (max-width: 767px) {
	.gr-featured-media .gr-featured-media__container {
		flex-direction: column;
		gap: 24px;
	}

	.gr-featured-media .gr-featured-media__image {
		flex: 0 0 100%;
	}

	.gr-featured-media .gr-featured-media__title {
		font-size: 24px;
	}
}

@media screen and (max-width: 580px) {
	.gr-media .gr-kc-grid {
		grid-template-columns: 1fr;
	}
}

/* Featured Media Shortcode End */

/* Media Post Single Start */

.mediapost-wrapper .video-embbed-wrap {
	margin-bottom: 20px;
}

.mediapost-wrapper .event-info .event-title {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 600;
	border-bottom: 2px solid;
	width: max-content;
}

.mediapost-wrapper .event-info .item .event-label {
	font-weight: 600;
}

/* Media Post Single End */