/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Marquee family. This enables the ability to
	a family of widgets in a single update without touching the structure of the widget and without needing
	to duplicate efforts across several widget-specific CSS files.
*/
.marquee {
	--radial-gradient-green: radial-gradient(circle, #74c044 25%, #528B2E 100%);
	--border-horizontal-short: var(--border-featured-events-2);
	--border-horizontal-long: var(--border-featured-events-3);
	--border-vertical-long: var(--border-featured-events-1);
	max-width: 1370px;
	margin: 0 auto 70px;
	overflow: hidden;
}

.marquee .widget-header {
    padding: 0;
    margin: 0;
	max-width: none;
}

.marquee .widget-header.desktop {
	display: none;
	max-width: 360px;
}

@media (min-width: 64em) {
	.marquee .widget-header.desktop {
		display: block;
	}

	.marquee .widget-header.mobile {
		display: none;
	}
}

.marquee .widget-header-inner {
	display: flex;
	padding: 0;
	flex-direction: column;
	justify-content: unset;
	align-items: unset;
	flex-wrap: unset;
	border: none;
}

.marquee .heading-cont h2,
.marquee .widget-title.upper,
.marquee .widget-view-all {
	font-family: 'closeone';
}

.marquee .widget-view-all {
	display: flex;
	align-items: center;
	font-size: 20px;
	font-weight: normal;
	color: white;
	padding: 0;
	margin: 0;
	background: transparent;
}

.marquee .widget-view-all img {
	max-width: 26px;
	margin-left: 10px;
}

.marquee .widget-title.lower,
.marquee .slide .slide-title {
	color: white;
	font-family: Bevan, sans-serif;
}

.marquee .heading-cont {
	position: relative;
	text-align: center;
	padding: 40px 10px 55px;
	width: 100%;
	border-top: 1px solid white;
}

.marquee .widget-header.mobile .heading-cont {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 35vw;
}

.marquee .widget-header.mobile .title-bg {	
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 60vw;
	min-height: 280px;
}

.marquee .widget-header.mobile .heading-cont:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--radial-gradient-green);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 70%);
    z-index: -1;
}

.marquee .heading-cont h2 {
	color: white;
	margin: 0;
	font-size: 30px;
	line-height: 30px;
}

.marquee .title-bg {
	position: relative;
	padding: 40px 25px 55px;
	width: 100%;
}

.marquee .widget-header.mobile .title-bg:before {
	content: "";
	position: absolute;
	top: -16%;
	right: 0;
	bottom: 0px;
	left: 0;
	background: linear-gradient(2deg, #212121 98%, white 99%);
	clip-path: polygon(0% 0%, 100% 13%, 100% 100%, 0 100%);
	z-index: -1;
}

.marquee .slide.promoted:after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 0%;
    right: 0%;
    height: 20px;
    background-image: var(--border-horizontal-short);
    background-repeat: no-repeat;
    background-size: 101% 100%;
    background-position-x: 50%;
    z-index: 11;
}

.marquee .widget-title.upper {
	color: var(--orange);
	font-size: 30px;
	line-height: 30px;
	font-weight: normal;
	margin: 0;
}

.marquee .widget-title.lower {
	color: white;
	font-size: 40px;
	line-height: 40px;
	font-weight: normal;
	margin: 0 0 20px;
}

.marquee .widget-header.mobile {
	position: relative;
}

.marquee .widget-header.mobile > .border,
.marquee .slides .top-cont > .border {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 12;
	pointer-events: none;
}

.marquee .widget-header.mobile > .border .border-top {
	position: absolute;
	top: -10px;
	left: -1%;
	right: -1%;
}

.marquee .widget-header.mobile > .border .border-top:before {
	content: "";
	display: block;
	width: 100%;
	height: 20px;
	background-image: var(--border-horizontal-short);
	background-repeat: no-repeat;
	background-size: 101% 100%;
	background-position-x: 50%;
}

.marquee .widget-header.mobile > .border .border-bottom {
	position: absolute;
	bottom: -10px;
	left: 0%;
	right: 0%;
}

.marquee .widget-header.mobile > .border .border-bottom:before {
	content: "";
	display: block;
	width: 100%;
	height: 20px;
	background-image: var(--border-horizontal-short);
	background-repeat: no-repeat;
	background-size: 101% 100%;
	background-position-x: 50%;
}

.marquee .widget-header.mobile .heading-cont > .border {
	position: absolute;
	bottom: 10%;
	left: -1%;
	right: -1%;
	height: 20px;
	background-image: var(--border-horizontal-short);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transform: rotateZ(5.5deg);
	transform-origin: center center;
	z-index: 11;
}

.marquee .widget-header.mobile .heading-cont > .border:after,
.marquee .widget-header.mobile > .border .border-top:after, 
.marquee .widget-header.mobile > .border .border-bottom:after {
	content: "";
	height: 50%;
	width: 100%;
	background: rgba(255 255 255 / 75%);
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.marquee.core-marquee .slide.promoted .img-cont::after {
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

.marquee .slides {
	padding: 0;
	max-width: none;
}

.marquee .slide:not(.promoted) .content-section {
	position: relative;
	flex: 1 1 calc(100% - 200px);
}

.marquee .slide .category {
	color: var(--yellow);
	font-family: 'closeone';
	margin-bottom: 15px;
    font-size: 25px;
}

.marquee .slide .time {
	display: flex;
	align-items: center;
	color: white;
	font-weight: normal;
	font-size: 14px;
}

.marquee .slide .time i {
	color: var(--yellow);
	margin-right: 7px;
    font-size: 20px;
}

.marquee .slide:not(.promoted) {
	padding: 10px;
	max-width: 440px;
}

.marquee .slide:not(.promoted) .inner {
	display: flex;
	align-items: center;
}

.marquee .slide:not(.promoted) .img-cont {
	width: 150px;
	height: 150px;
	border-radius: 100%;
	overflow: hidden;
}

.marquee .slide .slide-title {
	font-weight: normal;
	margin-bottom: 22px;
	text-transform: none;
	font-size: 24px;
	line-height: 30px;
}

.marquee.core-marquee .slide .content-section {
	padding: 20px 20px 30px;
}

.marquee.core-marquee .slide.promoted .content-section {
	max-width: 670px;
}

.marquee .slide:not(.promoted) .slide-title,
.marquee .slide:not(.promoted) .time {
	color: var(--black);
}

.marquee .slide:not(.promoted) .slide-title {
	font-size: 15px;
	line-height: 20px;
	margin-bottom: 18px;
}

.marquee.core-marquee .slide:not(.promoted) .content-section {
	padding: 0 20px;
}

.marquee.core-marquee .slide:not(.promoted) .img-cont img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.marquee .slide.promoted .inner {
	position: relative;
}

.marquee .top-cont {
	position: relative;
}

.marquee .top-cont .top-bottom-edge {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

@media (min-width: 40em) {
	.marquee .title-bg::before {
		top: 6px;
	}
	.marquee .widget-header.mobile .heading-cont:before {
		clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 75%);
	}
	.marquee .widget-header.mobile .heading-cont {
		padding: 30px 10px 55px;
		height: 22vw;
	}
	.marquee .widget-header.mobile .title-bg {
		height: 35vw;
	}
	.marquee .slide.promoted:after,
	.marquee .widget-header.mobile > .border .border-top:before,
	.marquee .widget-header.mobile > .border .border-bottom:before,
	.marquee .widget-header.mobile .heading-cont > .border {
		background-image: var(--border-horizontal-long);
	}
	.marquee .widget-header.mobile .heading-cont > .border {
		transform: rotateZ(3.1deg);
		bottom: 9%;
	}
}

@media (min-width: 61.25em) {
	.marquee.core-marquee[data-layout="vertical"] .slides {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 64em) {
	.marquee {
		margin-bottom: 100px;
		padding: 0 20px;
	}

	.marquee .slides {
		position: relative;
	}

	.marquee .slide.promoted:after {
		display: none;
	}

	.marquee .slides .top-cont > .border .border-top {
		position: absolute;
		top: -10px;
		left: 0%;
		right: 0%;
	}

	.marquee .slides .top-cont > .border .border-top:before {
		content: "";
		display: block;
		width: 100%;
		height: 20px;
		background-image: var(--border-horizontal-long);
		background-repeat: no-repeat;
		background-size: 101% 100%;
		background-position-x: 50%;
	}

	.marquee .slides .top-cont > .border .border-bottom {
		position: absolute;
		bottom: -10px;
		left: 0%;
		right: 0%;
	}

	.marquee .slides .top-cont > .border .border-bottom:before {
		content: "";
		display: block;
		width: 100%;
		height: 20px;
		background-image: var(--border-horizontal-long);
		background-repeat: no-repeat;
		background-size: 101% 100%;
		background-position-x: 50%;
	}

	.marquee .slides .top-cont > .border .border-top:after, .marquee .slides .top-cont > .border .border-bottom:after {
		content: "";
		height: 35%;
		width: 100%;
		background: rgba(255 255 255 / 80%);
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.marquee .slides .top-cont > .border .border-right {
		position: absolute;
		top: 0%;
		bottom: 0%;
		right: -10px;
	}

	.marquee .slides .top-cont > .border .border-right:before {
		content: "";
		display: block;
		width: 20px;
		height: 100%;
		background-image: var(--border-vertical-long);
		background-repeat: no-repeat;
		background-size: 100% 101%;
		background-position-y: 50%;
	}

	.marquee .slides .top-cont > .border .border-left {
		position: absolute;
		top: 0%;
		bottom: 0%;
		left: -10px;
	}

	.marquee .slides .top-cont > .border .border-left:before {
		content: "";
		display: block;
		width: 20px;
		height: 100%;
		background-image: var(--border-vertical-long);
		background-repeat: no-repeat;
		background-size: 100% 101%;
		background-position-y: 50%;
	}

	.marquee .slides .top-cont > .border .border-left:after, .marquee .slides .top-cont > .border .border-right:after {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		display: block;
		width: 35%;
		height: 100%;
		background: rgba(255 255 255 / 80%);
		transform: translateX(-50%);
	}

	.marquee .slides .inner > .border {
		position: absolute;
		top: 0%;
		bottom: 0%;
		left: auto;
		right: 4%;
		width: 20px;
		height: 100%;
		background-image: var(--border-vertical-long);
		background-repeat: no-repeat;
		background-size: 100% 100%;
		transform: rotateZ(4deg);
		transform-origin: center right;
		z-index: 12;
	}

	.marquee .slides .inner > .border:before {
		content: "";
		position: absolute;
		left: 50%;
		display: block;
		width: 50%;
		height: 100%;
		background: rgba(255 255 255 / 80%);
		transform: translateX(-50%);
		z-index: 11;
	}

	.marquee .slides .top-cont {
		display: flex;
		min-height: 575px;
	}

	.marquee .widget-header-inner {
		position: relative;
		clip-path: polygon(0 0, 100% 0%, 86% 100%, 0% 100%);
		padding-bottom: 0;
	}

	.marquee .slide {
		position: relative;
	}

	.marquee .slide.promoted {
		position: relative;
		margin-left: 0px;
		height: 100%;
		width: 100%;
		left: 0%;
	}

	.marquee .slide.promoted .inner {
		position: absolute;
		top: 0;
		right: 0;
		left: -8%;
		bottom: 0;
	}

	.marquee .slide.promoted .img-cont.promoted {
		height: 100%;
		padding: 0;
	}

	.marquee .img-cont.promoted img {
		height: 100%;
		object-fit: cover;
	}

	.marquee .title-bg {
		position: relative;
		padding: 60px 60px 70px;
		clip-path: none;
		background: linear-gradient(2deg, #212121 98%, white 99%);
		background: transparent;
		overflow: visible;
		height: auto;
	}

	.marquee .title-bg:before {
		content: "";
		position: absolute;
		top: -9%;
		right: 0;
		bottom: 0px;
		left: 0;
		background: linear-gradient(2deg, #212121 98%, white 99%);
		clip-path: polygon(0% 0%, 100% 8.5%, 100% 100%, 0 100%);
		z-index: -1;
	}

	.marquee .heading-cont {
		position: relative;
		padding: 40px 15px 70px;
		margin: 0;
		clip-path: none;
		background: transparent;
		margin-bottom: 0px;
	}

	.marquee .heading-cont:before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: var(--radial-gradient-green);
		clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 73%);
		z-index: -1;
	}

	.marquee .heading-cont:after {
		content: "";
		position: absolute;
		bottom: 7%;
		left: 0;
		right: 0;
		height: 20px;
		background-image: var(--border-horizontal-short);
		background-repeat: no-repeat;
		background-size: 100% 100%;
		transform: rotateZ(6.5deg);
		transform-origin: center center;
		z-index: 11;
	}

	.marquee .heading-cont h2 {
		font-size: 40px;
		line-height: 40px;
	}

	.marquee .widget-title.upper {
		font-size: 40px;
		line-height: 55px;
	}

	.marquee .widget-title.lower {
		font-size: 50px;
		line-height: 55px;
		margin-bottom: 50px;
	}

	.marquee .widget-view-all {
		font-size: 30px;
	}

	.marquee .top-cont .top-bottom-edge::before {
		content: "";
		position: absolute;
		top: 0;
		left: -6px;
		width: 12px;
		height: 100%;
		background: var(--border-accent-side);
		z-index: 1;
	}

	.marquee .top-cont .top-bottom-edge::after {
		content: "";
		position: absolute;
		top: 0;
		right: -6px;
		width: 12px;
		height: 100%;
		background: var(--border-accent-side);
		z-index: 1;
	}

	.marquee .bottom-cont {
		display: grid;
    	grid-template-columns: repeat(3, 1fr);
	}

	.marquee.core-marquee[data-layout="vertical"] .slide:nth-child(1) {
		grid-column: 1 / span 1;
	}

	.marquee .slide:not(.promoted) {
		position: relative;
		padding: 10px 30px;
	}

	.marquee .slide:not(.promoted):nth-child(1)::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		height: 80%;
		width: 2px;
		background-color: var(--light-blue);
	}

	.marquee .slide:not(.promoted):nth-child(1)::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		height: 80%;
		width: 2px;
		background-color: var(--green);
	}

	.marquee .slide:not(.promoted):nth-child(2)::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		height: 80%;
		width: 2px;
		background-color: var(--firebrick);
	}

	.marquee .slide:not(.promoted):nth-child(3)::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		height: 80%;
		width: 2px;
		background-color: var(--yellow);
	}

	.marquee .widget-header.desktop > .inner {
		height: 100%;
		position: relative;
		z-index: 10;
	}

	.marquee .slide.promoted .slide-title {
		font-size: 35px;
		line-height: 40px;
	}

	.marquee .slide.promoted .content-section {
		padding-left: calc(8% + 65px);
		padding-bottom: 50px;
	}

	.marquee .widget-view-all img {
		transition: transform 0.5s;
	}
}

@media (hover: hover) {
	.marquee a:hover {
		text-decoration: none !important;
	}

	.marquee .slide.promoted:hover .slide-title > a {
		color: #06aea8;
	}

	.marquee.core-marquee .slide:not(.promoted) .slide-title > a:hover {
		color: var(--black);
	}

	.marquee.core-marquee .slide:not(.promoted):hover .img-cont img {
		transform: scale(1.08);
	}

	.marquee .widget-view-all:hover img {
		transform: translateX(15px);
	}
}