/* mdaminuldev */

.gyc-events-box.gyc-events-box {
	display: inline-flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
	margin: 20px auto 50px;
	padding: 14px;
	background: #25282c;
	border-radius: 15px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	font-family: 'Poppins', sans-serif;
}

.gyc-events-box .gyc-events-box__label {
	display: block;
	width: 100%;
	margin-bottom: 44px;
	padding: 10px 24px;
	background: #f0c35b;
	border-radius: 15px;
	color: #172333;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.35;
	text-align: left;
	text-transform: uppercase;
}

.gyc-events-box__label-text {
	display: inline-block;
}

.gyc-events-box__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	padding: 2px 6px;
	background: #f11919;
	border-radius: 3px;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	flex-shrink: 0;
	animation: gyc-events-new-blink 900ms ease-in-out infinite;
}


.gyc-events-box__empty {
	padding: 18px 35px;
	color: #f0c35b;
	font-size: 18px;
	text-align: left;
}

.gyc-events-box .gyc-events-box__marquee {
	box-sizing: border-box;
	display: block;
	position: relative;
	width: 100%;
	height: 170px;
	padding-left: 44px;
	overflow: hidden;
}

.gyc-events-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gyc-events-box .gyc-events-list {
	animation: gyc-events-scroll-up 8s linear infinite;
	transform: translateY(0);
}

.gyc-events-box .gyc-events-box__marquee:hover .gyc-events-list {
	animation-play-state: paused;
}

.gyc-events-list__item {
	color: #f0c35b;
	font-size: 18px;
	line-height: 1.3;
	list-style: none;
}

.gyc-events-list__link {
	display: flex;
	flex-wrap: nowrap;
	color: #f0c35b;
	gap: 8px 14px;
	align-items: center;
	min-height: 72px;
	color: inherit;
	border: 0 !important;
	box-shadow: none !important;
	outline: 0 !important;
	text-decoration: none !important;
}

.gyc-events-list__link:hover,
.gyc-events-list__link:focus,
.gyc-events-list__link:active {
	color: #ffffff;
	border: 0 !important;
	box-shadow: none !important;
	outline: 0 !important;
	text-decoration: none !important;
}
.gyc-events-list__link:hover .gyc-events-list__title,
.gyc-events-list__link:focus .gyc-events-list__title {
	border-bottom: 0 !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.gyc-events-list__title {
	border: 0 !important;
	box-shadow: none !important;
	font-family: "Trebuchet MS", sans-serif ;
	font-weight: 500;
	outline: 0 !important;
	text-decoration: none !important;
	font-size: 20px !important;
}

.gyc-events-list__title:hover,
.gyc-events-list__title:focus,
.gyc-events-list__title:active {
	border: 0 !important;
	box-shadow: none !important;
	outline: 0 !important;
	text-decoration: none !important;
}

.gyc-events-list__title::before,
.gyc-events-list__title::after,
.gyc-events-list__link::before,
.gyc-events-list__link::after {
	display: none !important;
	content: none !important;
}

.gyc-events-list__date,
.gyc-events-list__location {
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	line-height: 1.3;
}

.gyc-events-page-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin: 26px 0;
	font-family: "Poppins", "Trebuchet MS", Arial, sans-serif;
}

.gyc-events-page-list__empty {
	grid-column: 1 / -1;
	padding: 24px;
	background: #f6f8fa;
	border: 1px solid rgba(24, 56, 79, 0.12);
	border-radius: 8px;
	color: #53616c;
	text-align: center;
}

.gyc-event-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-width: 0;
	background: #ffffff;
	border: 1px solid rgba(24, 56, 79, 0.12);
	border-radius: 8px;
	box-shadow: 0 14px 32px rgba(31, 41, 51, 0.08);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gyc-event-card:hover {
	transform: translateY(-3px);
	border-color: rgba(240, 195, 91, 0.55);
	box-shadow: 0 18px 40px rgba(31, 41, 51, 0.13);
}

.gyc-event-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #d8dee4;
}

.gyc-event-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.gyc-event-card:hover .gyc-event-card__image img {
	transform: scale(1.04);
}

.gyc-event-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px;
}

.gyc-event-card__meta {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px 12px;
	margin-bottom: 10px;
	color: #b58121;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	text-transform: uppercase;
}

.gyc-event-card__title {
	margin: 0 0 10px;
	color: #18384f;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0;
}

.gyc-event-card__title a {
	color: inherit;
	text-decoration: none;
}

.gyc-event-card__title a:hover,
.gyc-event-card__title a:focus {
	color: #b58121;
	text-decoration: none;
}

.gyc-event-card__content {
	margin: 0 0 18px;
	color: #53616c;
	font-size: 15px;
	line-height: 1.65;
}

.gyc-event-card__read-more {
	align-self: flex-start;
	margin-top: auto;
	padding: 10px 18px;
	background: #18384f;
	border: 1px solid #18384f;
	border-radius: 6px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.gyc-event-card__read-more:hover,
.gyc-event-card__read-more:focus {
	background: #f0c35b;
	border-color: #f0c35b;
	color: #18384f;
	text-decoration: none;
}

.gyc-events-page-pagination {
	display: flex;
	justify-content: center;
	margin: 28px 0 8px;
}

.gyc-events-page-pagination .page-numbers {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	min-height: 72px;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	padding: 9px 12px;
	border: 1px solid rgba(24, 56, 79, 0.16);
	border-radius: 6px;
	color: #18384f;
	font-weight: 700;
	text-decoration: none;
}

.gyc-events-page-pagination .page-numbers.current,
.gyc-events-page-pagination a.page-numbers:hover,
.gyc-events-page-pagination a.page-numbers:focus {
	background: #18384f;
	border-color: #18384f;
	color: #ffffff;
	text-decoration: none;
}

@keyframes gyc-events-new-blink {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.35;
	}
}

@keyframes gyc-events-scroll-up {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-42px);
	}
}

@keyframes gyc-events-pulse {
	0% {
		box-shadow: 0 0 0 0 rgb(255, 255, 255);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(248, 191, 90, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(248, 191, 90, 0);
	}
}

.gyc-single-event {
	font-family: 'Poppins', sans-serif;
}

.gyc-single-event__banner {
	position: relative;
	isolation: isolate;
	width: 100%;
	aspect-ratio: 1280 / 541;
	min-height: 360px;
	max-height: 448px;
	background-position: center;
	background-size: cover;
	color: #ffffff;
	overflow: hidden;
}

.gyc-single-event__banner::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.08));
	content: "";
}

.gyc-single-event__banner-inner {
	display: grid;
	grid-template-columns: minmax(0, 58%);
	justify-content: end;
	align-items: center;
	min-height: 72px;
	width: 100%;
	height: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 42px 78px 42px 88px;
}

.gyc-single-event__banner-copy {
	padding-top: 14px;
	text-align: center;
}

.gyc-single-event__banner-copy p {
	margin: 0 0 18px;
	color: #ffffff;
	font-size: 35px;
	font-weight: 800;
	line-height: 1.15;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

.gyc-single-event__banner-copy h1 {
	margin: 0;
	color: #f0c35b;
	font-size: 45px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 0;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.gyc-single-event__article {
	max-width: 1114px;
	min-height: 0;
	margin: 74px auto 74px;
	background: #ffffff;
	border-radius: 7px;
	box-shadow: 0 0 18px rgba(20, 24, 29, 0.12);
	overflow: hidden;
}

.gyc-single-event__body {
	min-height: 0;
	padding: 30px;
}

.gyc-single-event__image-card {
	width: 200px;
	margin: 0;
	display: flex;
	flex-direction: column;
	background: transparent;
}

.gyc-single-event__image-link {
	display: block;
	width: 200px;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0;
	box-shadow: none !important;
	line-height: 0;
	outline: 0 !important;
	cursor: pointer;
}

.gyc-single-event__image-link:hover,
.gyc-single-event__image-link:focus,
.gyc-single-event__image-link:active {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	outline: 0 !important;
}

.gyc-single-event__image-link img {
	display: block;
	width: 200px;
	height: auto;
	object-fit: contain;
}

.gyc-single-event__caption {
	display: block;
	position: static;
	clear: both;
	margin-top: 10px;
	color: #172333;
	font-family: var(--gyc-font-nav) !important;
	font-size: 16px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.35;
}

.gyc-single-event__caption span {
	display: block;
}

@media (max-width: 767px) {
	.gyc-single-event__banner {
		aspect-ratio: auto;
		min-height: 330px;
		max-height: none;
	}

	.gyc-single-event__banner-inner {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 34px 20px;
		text-align: center;
	}

.gyc-single-event__banner-copy {
		padding-top: 0;
	}

	.gyc-single-event__banner-copy p {
		font-size: 28px;
	}

	.gyc-single-event__banner-copy h1 {
		font-size: 33px;
	}

	.gyc-single-event__article {
		margin: 38px 14px 48px;
	}

	.gyc-single-event__body {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.gyc-single-event__image-link {
		height: 230px;
	}

}
/* Responsive shared page/banner typography */
.gyc-single-event__banner-copy {
	font-family: "Trebuchet MS", Tahoma, sans-serif;
}

.gyc-single-event__banner-copy p {
	font-family: "Trebuchet MS", Tahoma, sans-serif;
	font-size: 35px;
	font-weight: 600;
}

.gyc-single-event__banner-copy h1 {
	font-family: "Trebuchet MS", Tahoma, sans-serif;
	font-size: 45px;
	font-weight: 600;
}

@media (max-width: 767px) {
	.gyc-single-event__banner {
		height: 285px;
		min-height: 285px;
		max-height: 285px;
		background-position: center right;
		background-size: cover;
	}

	.gyc-single-event__banner-inner {
		padding: 0 18px;
	}

	.gyc-single-event__banner-copy p {
		font-size: 28px;
		margin: 0 0 12px;
		font-weight: 600;
	}

	.gyc-single-event__banner-copy h1 {
		font-size: 33px;
		font-weight: 600;
	}
}
@media (max-width: 767px) {
	.gyc-single-event__article {
		overflow: visible;
	}

	.gyc-single-event__body {
		display: block;
		padding: 16px;
	}

	.gyc-single-event__image-card {
		width: 200px;
		max-width: 100%;
		margin: 0;
	}

	.gyc-single-event__image-link {
		width: 100%;
		height: auto;
	}

	.gyc-single-event__image-link img {
		width: 100%;
		height: auto;
	}
}