* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background-color: #121212;
	color: #ffffff;
	overflow-x: hidden;
}

/* ---------------------------------------------------------- shared */
.social-icons {
	display: flex;
	gap: 8px;
	align-items: center;
}

 .social-text {
	font-size: 16px;
	color: #ffffff;
	margin-right: 8px;
}
 .social-text.footer-text {
	display: none;
	color: #777;
}

 .social-btn {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	border: 1px solid #ffffff;
	background: transparent;
	cursor: pointer;
	transform: scale(1);
	transition: all 0.2s;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
}

.social-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.4) 50%,
		transparent 100%
	);
	animation: shineSlide 3s ease-in-out infinite;
	pointer-events: none;
}

 .social-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

 .social-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

 .social-btn img {
	width: 20px;
	height: 20px;
}

.initializationFadeInAnimation {
	opacity: 0.001;
	animation: initializationFadeInAnimation 0.2s ease-in-out forwards;
	animation-delay: var(--animation-delay, 0.1s);
}

@keyframes initializationFadeInAnimation {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ---------------------------------------------------------- main */
.container {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

/* Top Promotion Bar */
.container .promo-section .top-promotion-bar {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 11px;
	background: 
		linear-gradient(90deg, rgba(255, 28, 172, 0.2) 0%, rgba(255, 28, 172, 0.2) 100%),
		url('data:image/svg+xml;utf8,<svg viewBox="0 0 1920 46" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><rect x="0" y="0" height="100%" width="100%" fill="url(%23grad)" opacity="0.2"/><defs><radialGradient id="grad" gradientUnits="userSpaceOnUse" cx="0" cy="0" r="10" gradientTransform="matrix(-6.0553e-14 9.9 -413.22 1.1567e-7 960 -2.6873e-7)"><stop stop-color="rgba(205,42,219,1)" offset="0"/><stop stop-color="rgba(154,32,164,0.75)" offset="0.25"/><stop stop-color="rgba(103,21,110,0.5)" offset="0.5"/><stop stop-color="rgba(51,11,55,0.25)" offset="0.75"/><stop stop-color="rgba(0,0,0,0)" offset="1"/></radialGradient></defs></svg>'),
		linear-gradient(90deg, rgb(23, 23, 23) 0%, rgb(23, 23, 23) 100%);
	position: relative;
	z-index: 12;
	text-decoration: none;
	transition: filter 0.3s ease;
}
.container .promo-section .top-promotion-bar:hover {
	filter: brightness(1.3);
}
.container .promo-section .top-promotion-bar:visited {
	text-decoration: none;
}

.container .promo-section .top-promotion-bar .top-promotion-text {
	font-family: 'Onest', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #ffffff;
	text-align: center;
	letter-spacing: 0px;
	margin: 0;
}

/* Promo Section */
.container .promo-section {
	position: relative;
	width: 100%;
	height: 100vh;
	background-color: #121212;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0;
}

.container .promo-section .bg-image {
	position: absolute;
	top: -25%;
	left: -25%;
	width: 150%;
	height: 150%;
	object-fit: cover;
	z-index: 0;
}

.container .promo-section .bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, #121212 100%);
	z-index: 1;
}

.container .promo-section .bg-overlay-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('/images/promo-bg-overlay.png');
	background-size: cover;
	z-index: 2;
	opacity: 0.5;
}

/* Header */
.container .promo-section .header {
	position: relative;
	width: 100%;
	z-index: 11;
	padding: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Hero Content */
.container .promo-section .promo-section-content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1440px;
	height: 100%;
	padding: 0 16px;
	z-index: 10;
	margin-top: 50px;
}

@keyframes brightnessLoop {
	0%, 100% {
		filter: brightness(1);
	}
	50% {
		filter: brightness(2);
	}
}

@keyframes bounceScale {
	0%, 100% {
		scale: 1;
	}
	25% {
		scale: 1.02;
	}
	50% {
		scale: 1;
	}
	75% {
		scale: 1.01;
	}
}

@keyframes shineSlide {
	0% {
		transform: translateX(-150%);
		opacity: 0;
	}
	25% {
		opacity: 1;
	}
	50% {
		transform: translateX(150%);
		opacity: 0;
	}
	100% {
		transform: translateX(150%);
		opacity: 0;
	}
}

.container .promo-section .promo-section-content .promo-images {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}

.container .promo-section .promo-section-content .promo-image {
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 11;
	animation: brightnessLoop 4s ease-in-out infinite;
	mask-image: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,1), rgba(0,0,0,0.7));
	-webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,1), rgba(0,0,0,0.7));
	transition: transform 0.3s ease;
	cursor: pointer;
	transform-origin: center;
	transform-style: preserve-3d;
	transition: margin-left 0.3s ease, margin-right 0.3s ease, scale 1s ease;
}

.container .promo-section .promo-section-content .promo-image:hover {
	animation: brightnessLoop 4s ease-in-out infinite, bounceScale 0.3s ease-out;
}
.container .promo-section .promo-section-content .promo-image.image-1 {
	margin-left: -420px;
	margin-top: -26px;
	z-index: 3;
}
.container .promo-section .promo-section-content .promo-image.image-2 {
	margin-left: -650px;
	margin-top: -40px;
	z-index: 2;
}
.container .promo-section .promo-section-content .promo-image.image-3 {
	margin-left: -560px;
	margin-top: 85px;
	z-index: 1;
}
.container .promo-section .promo-section-content .promo-image.image-4 {
	margin-left: 215px;
	margin-top: -125px;
	z-index: 1;
}
.container .promo-section .promo-section-content .promo-image.image-5 {
	margin-left: 350px;
	margin-top: 35px;
	z-index: 6;
}
.container .promo-section .promo-section-content .promo-image.image-6 {
	margin-left: 315px;
	margin-top: 75px;
	z-index: 2;
}

.container .promo-section .promo-section-content .promo-title {
	font-family: 'Rubik', sans-serif;
	font-weight: 900;
	font-size: 58px;
	text-transform: uppercase;
	font-style: italic;
	user-select: none;
	display: flex;
	flex-direction: column;
	gap: 0;
	text-shadow: 0px 1.935px 1.935px rgba(0, 0, 0, 0.25);
	margin-bottom: 36px;
	z-index: 5;
}

.container .promo-section .promo-section-content .promo-title .promo-title-line-1 {
	color: #fff;
	display: block;
	position: relative;
}


.container .promo-section .promo-section-content .promo-title .promo-title-line-2-wrapper {
	position: relative;
	display: inline-block;
	padding: 0 20px;
	margin-left: 40px;
}

.container .promo-section .promo-section-content .promo-title .promo-title-line-2-wrapper .promo-title-line-2 {
	display: inline-block;
	position: relative;
	z-index: 1;
	background: linear-gradient(184deg, #FFF 49.77%, #F991D3 82.54%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.container .promo-section .promo-section-content .promo-title .promo-title-line-2-wrapper .promo-title-line-2-bg {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 105%;
	height: 54.194px;
	z-index: -1;
	overflow: hidden;
}

@keyframes shineSlideRTL {
	0% {
		transform: translateX(150%);
		opacity: 0;
	}
	25% {
		opacity: 1;
	}
	50% {
		transform: translateX(-150%);
		opacity: 0;
	}
	100% {
		transform: translateX(-150%);
		opacity: 0;
	}
}

.container .promo-section .promo-section-content .subscribe-form-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	max-width: 710px;
	margin-bottom: 100px;
	z-index: 6;
	position: relative;
}

.container .promo-section .promo-section-content .subscribe-form-wrapper form .form-row {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: stretch;
	width: 100%;
}

.container .promo-section .promo-section-content .subscribe-form-wrapper form .form-row .email-input {
	flex: 1;
	padding: 12px 16px;
	background: linear-gradient(135deg, #28272F 0%, #040404 100%);
	border: 1px solid #ffffff;
	border-radius: 8px;
	color: #777;
	font-size: 16px;
	outline: none;
	transition: all 0.3s;
	box-shadow: 0px 0px 13.55px 0px rgba(255, 255, 255, 0.4);
	position: relative;
	overflow: hidden;
	width: 100%;
}

.container .promo-section .promo-section-content .subscribe-form-wrapper form .form-row .email-input::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.3) 50%,
		transparent 100%
	);
	animation: shineSlide 4s ease-in-out infinite;
	pointer-events: none;
	border-radius: 8px;
}

.container .promo-section .promo-section-content .subscribe-form-wrapper form .form-row .email-input:focus {
	color: #ffffff;
	box-shadow: 0px 0px 13.55px 0px rgba(255, 28, 172, 0.5);
}

.container .promo-section .promo-section-content .subscribe-form-wrapper form .form-row .email-input.success {
	border-color: #00FF40;
}

.container .promo-section .promo-section-content .subscribe-form-wrapper form .form-row .email-input.error {
	border-color: #FF4949;
}

.container .promo-section .promo-section-content .subscribe-form-wrapper form .form-row .btn-primary {
	width: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 18px;
	background: #FF1CAC;
	border: none;
	border-radius: 8px;
	color: #ffffff;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0px 0px 10px 0px rgba(255, 99, 216, 0.4),
				inset 0px 1px 0px 0px rgba(255, 255, 255, 0.2),
				inset 0px -3px 0px 0px rgba(0, 0, 0, 0.15),
				inset 0px 0px 15px 0px rgba(142, 15, 110, 1);
	position: relative;
	overflow: hidden;
}

.container .promo-section .promo-section-content .subscribe-form-wrapper form .form-row .btn-primary::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.4) 50%,
		transparent 100%
	);
	filter: brightness(2);
	animation: shineSlide 5s ease-in-out infinite;
	pointer-events: none;
	border-radius: 8px;
}

.container .promo-section .promo-section-content .subscribe-form-wrapper form .form-row .btn-primary:hover {
	background: #E0179A;
	transform: translateY(-2px);
}

.container .promo-section .promo-section-content .subscribe-form-wrapper form .form-row .btn-primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	background: #777;
	box-shadow: none;
}

.container .promo-section .promo-section-content .subscribe-form-wrapper form .message {
	position: absolute;
	width: 100%;
	display: none;
	padding: 8px;
	border-radius: 4px;
	font-size: 14px;
	text-align: left;
	bottom: -40px;
}

.container .promo-section .promo-section-content .subscribe-form-wrapper form .message.success {
	background: rgba(0, 255, 64, 0.1);
	color: #00FF40;
}

.container .promo-section .promo-section-content .subscribe-form-wrapper form .message.error {
	background: rgba(255, 73, 73, 0.1);
	color: #FF4949;
}

.container .promo-section .promo-section-content .subscribe-form-wrapper .waitlist-info {
	display: flex;
	align-items: center;
	gap: 6px;
	opacity: 0;
	transition: opacity 0.3s;
}

.container .promo-section .promo-section-content .subscribe-form-wrapper .waitlist-info .status-dot {
	width: 8px;
	height: 8px;
	background: #FF4949;
	border-radius: 50%;
	box-shadow: 0px 0px 12px 0px rgba(133, 0, 0, 1);
}

.container .promo-section .promo-section-content .subscribe-form-wrapper .waitlist-info .waitlist-text {
	font-size: 12px;
	color: #FFF0C6;
	text-shadow: 0px 0px 8px rgba(255, 94, 0, 0.7);
	letter-spacing: 0.67%;
}

/* Events */
.container .promo-section .promo-section-content .events-section {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	gap: 16px;
	width: 100%;
	z-index: 7;
}
.container .promo-section .promo-section-content .events-section .events-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	flex: 1 1 auto;
	width: 100%;
	max-width: 500px;
}

.container .promo-section .promo-section-content .events-section .events-group .event-card {
	--hover-transition-duration: 0.5s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 18px;
	box-shadow: 0px 16px 36px rgba(0, 0, 0, 0.45);
	min-height: 176px;
	width: 100%;
	flex: 1 1 auto;
	position: relative;
	justify-content: space-between;
	z-index: 1;
	background: linear-gradient(160deg, rgba(30, 30, 32, 0.95) 0%, rgba(12, 12, 14, 0.95) 100%);
	transition: transform var(--hover-transition-duration) ease , border var(--hover-transition-duration) ease;
}
.container .promo-section .promo-section-content .events-section .events-group .event-card:hover {
	transform: translateY(-3px);
}


.container .promo-section .promo-section-content .events-section .events-group .event-card .bg {
	position: absolute;
	left: -2px;
	top: -2px;
	right: -2px;
	bottom: -2px;
	border-radius: 12px;
	background: linear-gradient(160deg, rgba(30, 30, 32, 0.95) 0%, rgba(12, 12, 14, 0.95) 100%);
	z-index: 0;
	transition: background var(--hover-transition-duration) ease;
}

.container .promo-section .promo-section-content .events-section .events-group .event-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 120% at 80% 20%, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 55%),
		radial-gradient(80% 80% at 10% 90%, rgba(85, 97, 245, 0.12) 0%, rgba(85, 97, 245, 0) 50%);
	pointer-events: none;
	transition: background var(--hover-transition-duration) ease;
}


.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 16px;
	z-index: 1;
	transition: filter var(--hover-transition-duration) ease;
}
.container .promo-section .promo-section-content .events-section .events-group .event-card:hover .event-card-body {
	filter: brightness(1.2) contrast(1.1);
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy {
	display: flex;
	flex-direction: column;
	max-width: 60%;
	padding: 8px 0;
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-title {
	width: 75%;
	color: var(--Color-Text-text-primary, #FFF);
	font-family: Rubik;
	font-size: var(--Font-size-md, 24px);
	font-style: italic;
	font-weight: 700;
	line-height: var(--Line-height-md, 32px); /* 133.333% */
	letter-spacing: var(--LetterSpacing-lg, -0.16px);
	text-transform: uppercase;
	transition: color var(--hover-transition-duration) ease, text-shadow var(--hover-transition-duration) ease;
}


.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-subtitle {
	color: var(--Color-Text-text-secondary, #A3A3A3);
	/* Alias/Font/Body/Regular/Short */
	font-family: var(--Font-family-font-family-body, Onest);
	font-size: var(--Font-size-xs, 16px);
	font-style: normal;
	font-weight: 400;
	line-height: var(--Alias-Typescale-LineHeight-Body-Short, 24px); /* 150% */
	letter-spacing: var(--Alias-Typescale-LetterSpacing-Body-Short, 0);
	margin-bottom: 16px;
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-date {
	color: var(--Color-Text-text-secondary, #A3A3A3);
	/* Alias/Font/Body/Regular/Short */
	font-family: var(--Font-family-font-family-body, Onest);
	font-size: var(--Font-size-xs, 14px);
	font-style: normal;
	font-weight: 400;
	line-height: var(--Alias-Typescale-LineHeight-Body-Short, 24px); /* 150% */
	letter-spacing: var(--Alias-Typescale-LetterSpacing-Body-Short, 0);
	color: #c6c6c6;
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-date .event-card-date-strong {
	color: var(--Color-Text-text-primary, #FFF);
	/* Alias/Font/Headline/Lower/5 */
	font-weight: 700;
	letter-spacing: var(--LetterSpacing-sm, 0);
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art {
	border-radius: 5.405px;
	border-top: 1px solid rgba(88, 88, 88, 1.00);
	border-right: 2px solid rgba(88, 88, 88, 1.00);
	border-bottom: 1px solid rgba(88, 88, 88, 1.00);
	background: linear-gradient(270deg, rgba(88, 88, 88, 0.20) -4.28%, rgba(0, 0, 0, 0.00) 104.28%);
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 150px;
	width: 150px;
	transition: border-color var(--hover-transition-duration) ease, background var(--hover-transition-duration) ease;
	overflow: hidden;
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art::before {
	content: '';
	position: absolute;
	inset: 0;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	top: -2px;
	left: -2px;
	z-index: 1;
	background: linear-gradient(90deg, rgba(30, 30, 30, 1) 25%, rgba(30, 30, 30, 0) 100%);
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art .reward {
	padding: 10px;
	width: 100%;
	height: 100%;
	z-index: 2;
	position: absolute;
	cursor: pointer;
}

.container .promo-section .promo-section-content .events-section .events-group .event-card.active .event-card-body .event-card-art .reward {
	animation: rewardActivePulse 2s ease-in-out infinite;
}
@keyframes rewardActivePulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.025);
	}
	100% {
		transform: scale(1);
	}
}
.container .promo-section .promo-section-content .events-section .events-group .event-card.active .event-card-body .event-card-art .reward .reward-image {
	animation: rewardActiveImagePulse 2s ease-in-out infinite;
}
@keyframes rewardActiveImagePulse {
	0% {
		filter: brightness(1);
	}
	50% {
		filter: brightness(1.5);
	}
	100% {
		filter: brightness(1);
	}
}

@keyframes rewardClickAnimation {
	0% {
		transform: scale(1);
		filter: brightness(1) saturate(1) hue-rotate(0deg);
	}
	15% {
		transform: scale(1.15);
		filter: brightness(1.5) saturate(1.5) hue-rotate(10deg);
	}
	30% {
		transform: scale(0.95);
		filter: brightness(1.3) saturate(1.8) hue-rotate(-5deg);
	}
	45% {
		transform: scale(1.08);
		filter: brightness(1.6) saturate(2) hue-rotate(15deg);
	}
	60% {
		transform: scale(0.98);
		filter: brightness(1.4) saturate(1.6) hue-rotate(-3deg);
	}
	75% {
		transform: scale(1.04);
		filter: brightness(1.2) saturate(1.3) hue-rotate(5deg);
	}
	90% {
		transform: scale(0.99);
		filter: brightness(1.1) saturate(1.1) hue-rotate(-2deg);
	}
	100% {
		transform: scale(1);
		filter: brightness(1) saturate(1) hue-rotate(0deg);
	}
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art .reward.clicked {
	animation: rewardClickAnimation 1s ease-out;
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art .reward::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('/images/events/reward-bg-icon.svg') center/contain no-repeat;
	opacity: 0.5;
	transition: opacity var(--hover-transition-duration) ease, background var(--hover-transition-duration) ease;
}
.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art .reward::before {
	filter: saturate(0);
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art .reward::after {
	content: '';
	position: absolute;
	inset: -50%;
	background: radial-gradient(ellipse at center, 
		rgba(255, 255, 255, 0.2) 0%, 
		rgba(255, 255, 255, 0.1) 25%, 
		rgba(255, 255, 255, 0) 50%);
	transform: translate(-100%, 100%) scale3d(2, 1, 1);
	pointer-events: none;
	z-index: 3;
}
.container .promo-section .promo-section-content .events-section .events-group .event-card:hover .event-card-body .event-card-art .reward::after,
.container .promo-section .promo-section-content .events-section .events-group .event-card.active .event-card-body .event-card-art .reward::after {
	background: radial-gradient(ellipse at center, 
		rgba(255, 50, 50, 0.3) 0%, 
		rgba(255, 50, 50, 0.15) 25%, 
		rgba(255, 50, 50, 0) 50%);
}

@keyframes shimmerSlide {
	0% {
		transform: translate(-100%, 100%) scale3d(2, 1, 1);
		opacity: 0;
	}
	25% {
		opacity: 1;
	}
	50% {
		transform: translate(100%, -100%) scale3d(2, 1, 1);
		opacity: 0;
	}
	100% {
		transform: translate(100%, -100%) scale3d(2, 1, 1);
		opacity: 0;
	}
}

.container .promo-section .promo-section-content .events-section .events-group.group-1 .event-card .event-card-body .event-card-art .reward::after {
	animation: shimmerSlide 8s ease-in-out infinite;
	animation-delay: 0.5s;
}

.container .promo-section .promo-section-content .events-section .events-group.group-2 .event-card .event-card-body .event-card-art .reward::after {
	animation: shimmerSlide 10s ease-in-out infinite;
	animation-delay: 3.66s;
}

.container .promo-section .promo-section-content .events-section .events-group.group-3 .event-card .event-card-body .event-card-art .reward::after {
	animation: shimmerSlide 9s ease-in-out infinite;
	animation-delay: 1.33s;
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art .reward .reward-name {
	z-index: 4;
	position: absolute;
	left: 10px;
	bottom: 10px;
	right: 10px;
	color: var(--Color-Text-text-secondary, #A3A3A3);
	font-family: var(--Font-family-font-family-body, Onest);
	font-size: 9px;
	font-style: normal;
	font-weight: 400;
	line-height: 14px; /* 155.556% */
	user-select: none;
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art .reward .reward-image {
	padding: 10px;
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 2;
	position: relative;
	transition: filter var(--hover-transition-duration) ease, transform var(--hover-transition-duration) ease;
}
.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art .reward .reward-image {
	filter: saturate(0);
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art:hover .reward::before {
	animation: rewardArtBeforeHoverBrightness 0.6s ease-in-out;
}
.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art:hover .reward .reward-image {
	transform: scale(1.2);
	animation: rewardImageHoverBrightness 0.6s ease-in-out;
}

@keyframes rewardArtBeforeHoverBrightness {
	0% {
		filter: brightness(1) saturate(1);
	}
	50% {
		filter: brightness(2) saturate(2);
	}
	100% {
		filter: brightness(1) saturate(1);
	}
}
@keyframes rewardImageHoverBrightness {
	0% {
		filter: brightness(1);
		transform: scale(1);
	}
	50% {
		filter: brightness(2);
		transform: scale(1.25);
	}
	100% {
		filter: brightness(1);
		transform: scale(1.2);
	}
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-btn {
	margin-top: 14px;
	width: 100%;
	border: none;
	outline: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	cursor: pointer;
	--hover-transition-duration: 0.2s;
	transition: transform var(--hover-transition-duration) ease, 
	box-shadow var(--hover-transition-duration) ease, 
	background var(--hover-transition-duration) ease;
	z-index: 1;
	position: relative;
	overflow: hidden;
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.4) 50%,
		transparent 100%
	);
	filter: brightness(2);
	animation: shineSlide 5s ease-in-out infinite;
	pointer-events: none;
	border-radius: 9px;
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-btn a {
	text-decoration: none;
	color: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	gap: 8px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 12px;
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-btn .event-card-btn-icon {
	width: 16px;
	height: 16px;
	object-fit: contain;
}
.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-btn .event-card-btn-icon.faceit {
	margin-top: -2px;
	width: 24px;
	height: 24px;
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-btn-discord {
	background: #5561F5;
	color: #ffffff;
	box-shadow: 0px 10px 22px rgba(85, 97, 245, 0.35);
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-btn-discord:hover {
	background: #4653e0;
	transform: translateY(-2px);
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-btn-twitter {
	background: #ffffff;
	color: #0f0f10;
	box-shadow: 0px 10px 22px rgba(255, 255, 255, 0.12);
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-btn-twitter:hover {
	background: #f2f2f2;
	transform: translateY(-2px);
}

.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-btn-twitter .event-card-btn-icon {
	filter: grayscale(1) invert(1);
}

/* ---------------------------------------------------------------------------- active event */
.container .promo-section .promo-section-content .events-section .events-group .event-card.active {
	border: 1px solid rgba(255, 224, 136, 0.4);
}
.container .promo-section .promo-section-content .events-section .events-group .event-card.active .bg {
	background: linear-gradient(90deg, rgba(30, 30, 30, 0) 25%, rgba(30, 30, 30, 1) 100%);
}
.container .promo-section .promo-section-content .events-section .events-group .event-card.active::after {
	border-radius: 12px;
	background: radial-gradient(
		60% 60% at -2% 50%, 
		rgba(255, 224, 136, 0.20) 0%, 
		rgba(0, 0, 0, 0.00) 100%
	), #171717;
}
.container .promo-section .promo-section-content .events-section .events-group .event-card.active .event-card-body .event-card-copy .event-card-title,
.container .promo-section .promo-section-content .events-section .events-group .event-card:hover .event-card-body .event-card-copy .event-card-title {
	color: #FFF0C6;
	text-shadow: 0px 0px 8px rgba(255, 94, 0, 0.7);
}
.container .promo-section .promo-section-content .events-section .events-group .event-card.active .event-card-body .event-card-art,
.container .promo-section .promo-section-content .events-section .events-group .event-card:hover .event-card-body .event-card-art {
	border-top: 1px solid rgba(255, 100, 100, 1.00);
	border-right: 2px solid rgba(255, 100, 100, 1.00);
	border-bottom: 1px solid rgba(255, 100, 100, 1.00);
	background: linear-gradient(270deg, rgba(255, 100, 100, 0.20) -4.28%, rgba(0, 0, 0, 0.00) 104.28%);
}
.container .promo-section .promo-section-content .events-section .events-group .event-card.active .event-card-body .event-card-art .reward::before,
.container .promo-section .promo-section-content .events-section .events-group .event-card:hover .event-card-body .event-card-art .reward::before {
	background: url('/images/events/reward-bg-icon-active.svg') center/contain no-repeat;
	filter: saturate(1);
	opacity: 1;
}
.container .promo-section .promo-section-content .events-section .events-group .event-card.active .event-card-body .event-card-art .reward .reward-image,
.container .promo-section .promo-section-content .events-section .events-group .event-card:hover .event-card-body .event-card-art .reward .reward-image {
	filter: saturate(1);
}

/* ---------------------------------------------------------------------------- discord-giveaway-4 custom layout */
.container .promo-section .promo-section-content .events-section .events-group #discord-giveaway-4 {
	position: relative;
}

.container .promo-section .promo-section-content .events-section .events-group #discord-giveaway-4 .event-card-body .event-card-title {
	font-size: 16px;
}
.container .promo-section .promo-section-content .events-section .events-group #discord-giveaway-4 .event-card-body .event-card-subtitle {
	font-size: 14px;
}

#discord-giveaway-4 .knives-out-label {
	position: absolute;
	top: 8px;
	right: 0;
	height: 24px;
	display: flex;
	align-items: center;
	overflow: hidden;
	z-index: 10;
}

#discord-giveaway-4 .knives-out-label .label-arrow {
	position: absolute;
	width: 10px;
	left: -1px;
	top: -1px;
	height: 26px;
	background: #FF1CAC;
	clip-path: polygon(0 0, 100% 0, 0 100%);
	transform: rotate(180deg) scaleY(-1);
	z-index: 1;
}

#discord-giveaway-4 .knives-out-label .label-text {
	position: relative;
	left: 8px;
	top: 0;
	height: 100%;
	background: #FF1CAC;
	color: #ffffff;
	font-family: 'Onest', sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 0.08px;
	padding: 2px 12px 2px 4px;
	white-space: nowrap;
	z-index: 2;
}

/* ---------------------------------------------------------------------------- reward carousel */
.reward-carousel {
	display: flex;
	flex-direction: row;
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease-in-out;
	overflow: hidden;
}

.reward-carousel .reward {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: translateX(100%);
	transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.reward-carousel .reward.active {
	opacity: 1;
	transform: translateX(0);
}

.reward-carousel .reward.exit {
	opacity: 0;
	transform: translateX(-100%);
}


/* ---------------------------------------------------------------------------- arrow button */
.container .promo-section .arrow-section {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 8;
}

.container .promo-section .arrow-section .arrow-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 29.8px;
	height: 48.18px;
	border: 2.11px solid #ffffff;
	border-radius: 20.5px;
	background: transparent;
	cursor: pointer;
	transition: all 0.3s;
	transform: scale(1);
}

.container .promo-section .arrow-section .arrow-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: scale(1.05);
}

.container .promo-section .arrow-section .arrow-btn img {
	width: 13.52px;
	height: 13.52px;
}

.container .promo-section .arrow-section .features-label {
	font-weight: 600;
	font-size: 14px;
	line-height: 1.28;
	text-align: center;
}

/* Features Section */
.container .features-section-and-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 100%;
	min-height: 100vh;
}
.container .features-section-and-footer .features-section {
	position: relative;
	width: 100%;
	padding: 96px 252px;
	background-color: #121212;
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
}

.container .features-section-and-footer .features-section .agent-left {
	position: absolute;
	left: -83px;
	bottom: 0;
	height: 100%;
	object-fit: cover;
}

.container .features-section-and-footer .features-section .agent-right {
	position: absolute;
	right: -66px;
	bottom: 0;
	height: 100%;
	object-fit: cover;
}

.container .features-section-and-footer .features-section .features-content {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	max-width: 1280px;
	width: 100%;
}

.container .features-section-and-footer .features-section .features-content .features-title {
	font-family: 'Rubik', sans-serif;
	line-height: 1.3;
	text-align: center;
	font-style: italic;
	user-select: none;
	-webkit-text-stroke-width: 1.45px;
	-webkit-text-stroke-color: rgba(255, 255, 255, 0.57);
	font-size: 58px;
	font-style: italic;
	font-weight: 900;
	line-height: 60px; /* 103.448% */
	text-transform: uppercase;
	background: linear-gradient(180deg, #FFF 10.51%, #F991D3 84.78%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.container .features-section-and-footer .features-section .features-content .features-grid {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.container .features-section-and-footer .features-section .features-content .features-grid .features-row {
	display: flex;
	gap: 24px;
}

.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card {
	--active-border: 1px solid var(--stroke, rgba(255, 99, 216, 0.40));
	--active-background: radial-gradient(125% 100% at 100% 100%, rgba(255, 28, 172, 0.20) 0%, rgba(0, 0, 0, 0.00) 100%), var(--Color-Backgrounds-Medium, #171717);
	--active-text-color: #FFF0C6;
	--active-text-shadow: 0px 0px 8px rgba(255, 94, 0, 0.7);
	--active-image-filter: saturate(1);
	flex: 1;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	width: 409px;
	height: 200px;
	background: #171717;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s;
	position: relative;
	user-select: none;
	transition: all 0.3s;
	transform: scale(1);
}

.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card:hover {
	border: var(--active-border);
	background: var(--active-background);
}

.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card:hover .feature-title {
	color: var(--active-text-color);
	text-shadow: var(--active-text-shadow);
}
.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card:hover .feature-image {
	transform: scale(1.05);
	filter: var(--active-image-filter);
}

.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-link {
	font-weight: bold;
	text-decoration: none;
	color: var(--Color-Text-text-accent, #FFF0C6);
}

.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 24px 8px 24px 32px;
	flex: 1;
	width: 65%;
}

.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text .feature-title {
	font-family: 'Rubik', sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.33;
	letter-spacing: -0.67%;
	text-transform: uppercase;
	color: #ffffff;
	transition: all 0.3s;
}

.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text .feature-description {
	font-size: 16px;
	line-height: 1.75;
	color: #A3A3A3;
}

.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card:hover .feature-text .feature-description {
	color: #ffffff;
}

.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-image {
	margin-left: 5%;
	height: 90%;
	object-fit: contain;
	flex-shrink: 0;
	transition: all 0.3s;
	filter: saturate(0);
}

.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-image.bottom {
	align-self: flex-end;
}

/* Footer */
.container .features-section-and-footer .footer {
	width: 100%;
	padding: 24px 120px 16px 120px;
	background-color: #080307;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.container .features-section-and-footer .footer .footer-row {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.container .features-section-and-footer .footer .footer-row.first {
	padding: 0 0 24px 0;
}

.container .features-section-and-footer .footer .footer-row .footer-copyright-main-text {
	width: 50%;
	color: var(--Color-Text-text-disabled, #404040);
	/* Alias/Font/Body/Regular/Short */
	font-family: var(--Font-family-font-family-body, Onest);
	font-style: normal;
	font-weight: 400;
	user-select: none;
	font-size: var(--Font-size-xs, 16px);
	letter-spacing: var(--Alias-Typescale-LetterSpacing-Body-Short, 0);
	line-height: var(--Alias-Typescale-LineHeight-Body-Short, 24px); /* 150% */
}
.container .features-section-and-footer .footer .footer-row.footer-copyright-detailed-text {
	color: var(--Color-Text-text-disabled, #404040);
	font-family: var(--Font-family-font-family-body, Onest);
	font-style: normal;
	font-weight: 400;
	user-select: none;
	font-size: var(--Font-size-xs, 14px);
	line-height: var(--Alias-Typescale-LineHeight-Body-Short, 16px);
	text-align: center;
	width: 100%;
}

.container .features-section-and-footer .footer .footer-row .footer-center {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30%;
	padding: 0 16px;
	flex-direction: row;
	gap: 50px;
}

.container .features-section-and-footer .footer .footer-row .footer-center .footer-social {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.container .features-section-and-footer .footer .footer-row .footer-center .footer-social .footer-social-icons {
	display: flex;
	gap: 8px;
}
.container .features-section-and-footer .footer .footer-row .footer-center .footer-social .footer-social-icons .social-btn {
	width: 42px;
	height: 42px;
}

.logo-vertical {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 143px;
	height: 44px;
	position: relative;
}

.logo-vertical .logo-icon {
	width: 143px;
	height: 26px;
}

.logo-vertical .logo-text {
	width: 80px;
	height: 15px;
	margin-top: 3px;
	align-self: flex-end;
}

.container .features-section-and-footer .footer .footer-row .footer-links {
	width: 40%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 4px;
}
.container .features-section-and-footer .footer .footer-row .footer-links .group-2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 4px;
}
.container .features-section-and-footer .footer .footer-row .footer-links a {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 8px;
	align-items: center;
	color: var(--Color-Text-text-secondary, #A3A3A3);
	/* Alias/Font/Body/Regular/Short */
	font-family: var(--Font-family-font-family-body, Onest);
	font-size: var(--Font-size-xs, 16px);
	font-style: normal;
	font-weight: 400;
	line-height: var(--Alias-Typescale-LineHeight-Body-Short, 24px); /* 150% */
	letter-spacing: var(--Alias-Typescale-LetterSpacing-Body-Short, 0);
	text-decoration: none;
	transition: color 0.3s ease;
	text-align: right;
}
.container .features-section-and-footer .footer .footer-row .footer-links a:hover {
	text-decoration: underline;
	color: #ccc;
}

/* Responsive */
@media (max-width: 1680px) {
	.container .features-section-and-footer .features-section {
		padding: 96px 100px;
	}
}

@media (max-width: 1440px) {
	.container .promo-section .promo-section-content .promo-title {
		font-size: 44px;
	}
	.container .promo-section .promo-section-content {
		padding: 0 10px;
	}
	.container .promo-section .promo-section-content .events-section {
		gap: 8px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card {
		padding: 8px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body {
		gap: 8px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-title {
		font-size: 18px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-subtitle {
		font-size: 14px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-date {
		font-size: 12px;
	}
	.container .features-section-and-footer .features-section {
		padding: 96px 50px;
	}
	.container .features-section-and-footer .footer {
		padding: 32px 48px;
	}
	.container .features-section-and-footer .footer .footer-row .footer-center {
		position: relative;
		left: inherit;
		top: inherit;
		transform: inherit;
		gap: 24px;
	}
}

@media (max-width: 1280px) {
	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text .feature-title {
		font-size: 20px;
	}
	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text .feature-description {
		font-size: 14px;
	}
	.container .features-section-and-footer .footer .footer-row .footer-copyright-main-text {
		font-size: 14px;
	}
	.container .features-section-and-footer .footer .footer-row .footer-copyright-detailed-text {
		font-size: 12px;
	}
	.container .features-section-and-footer .footer .footer-row .footer-center {
		gap: 16px;
	}
	.container .features-section-and-footer .footer .footer-row .footer-links a {
		font-size: 14px;
	}
}

@media (max-width: 1024px) {
	.container .promo-section .promo-section-content .promo-title {
		font-size: 48px;
	}
	.container .promo-section .promo-section-content .promo-title .promo-title-line-1 {
		margin-left: -20px;
	}
	.container .promo-section .promo-section-content .promo-title .promo-title-line-2-wrapper {
		margin-left: 20px;
	}
	
	.container .promo-section .promo-section-content .promo-image.image-1 {
		margin-left: -350px;
	}
	.container .promo-section .promo-section-content .promo-image.image-2 {
		margin-left: -485px;
    margin-top: -15px;
	}
	.container .promo-section .promo-section-content .promo-image.image-3 {
		margin-left: -385px;
	}
	.container .promo-section .promo-section-content .promo-image.image-4 {
		margin-left: 85px;
    margin-top: -110px;
	}
	.container .promo-section .promo-section-content .promo-image.image-5 {
		margin-left: 275px;
	}
	.container .promo-section .promo-section-content .promo-image.image-6 {
		margin-left: 175px;
    margin-top: 70px;
	}

	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-title {
		font-size: 16px;
		width: 90%;
		line-height: inherit;
		margin-bottom: 4px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-subtitle {
		font-size: 12px;
		line-height: inherit;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-date {
		font-size: 10px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art {
		width: 100px;
		height: 100px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art .reward .reward-name {
		left: 4px;
		right: 4px;
		bottom: 4px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-btn {
		margin-top: 0;
	}

	.container .promo-section .promo-section-content {
		padding: 0 30px;
	}
	.container .features-section-and-footer .features-section {
		padding: 60px 30px;
	}

	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text {
		gap: 8px;
	}
	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text .feature-title {
		font-size: 20px;
	}
	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text .feature-description {
		font-size: 14px;
		line-height: 1.5;
	}
	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-image {
		margin-left: 0;
	}

	.container .features-section-and-footer .features-section .agent-left,
	.container .features-section-and-footer .features-section .agent-right {
		height: auto;
		width: 49%;
	}

	.container .features-section-and-footer .footer {
		align-items: flex-start;
		padding: 24px 32px;
		min-height: 160px;
	}
	.container .features-section-and-footer .footer .footer-row .footer-center {
		flex-direction: column;
	}
	.container .features-section-and-footer .footer .footer-row .footer-center .footer-social .footer-social-icons .social-btn {
		width: 32px;
		height: 32px;
	}
	.container .features-section-and-footer .footer .footer-row .footer-copyright-main-text {
		font-size: 14px;
	}
	.container .features-section-and-footer .footer .footer-row .footer-copyright-main-text .row-break-1 {
		display: inline;
	}
	.container .features-section-and-footer .footer .footer-row .footer-copyright-main-text .separator {
		display: none;
	}
	.container .features-section-and-footer .footer .footer-row .footer-copyright-main-text .row-break-2 {
		display: inline;
	}
}

@media (max-width: 768px) {
	.container .promo-section {
		height: inherit;
	}
	.container .promo-section .promo-section-content {
		margin-top: 10px;
		padding: 0 30px;
	}
	.container .promo-section .promo-section-content .promo-title {
		font-size: 40px;
		margin-bottom: 18px;
	}
	.container .promo-section .promo-section-content .promo-title .promo-title-line-1 {
		margin-left: -10px;
	}
	.container .promo-section .promo-section-content .promo-title .promo-title-line-2-wrapper {
		margin-left: 10px;
	}

	.container .promo-section .promo-section-content .subscribe-form-wrapper {
		margin-bottom: 20px;
		padding: 0 80px;
	}
	.container .features-section-and-footer .features-section {
		padding: 20px 30px;
	}
	.container .features-section-and-footer .features-section .features-content {
		gap: 16px;
	}
	.container .promo-section .promo-section-content .subscribe-form-wrapper form .form-row {
		flex-direction: column;
    align-items: stretch;
	}

	.container .promo-section .promo-section-content .promo-title {
		font-size: 24px;
	}
	
	.container .promo-section .promo-section-content .promo-images {
		left: -40px;
		top: 0;
	}
	.container .promo-section .promo-section-content .promo-image.image-1 {
		margin-left: -125px;
		margin-top: 300px;
		rotate: 40deg;
	}
	.container .promo-section .promo-section-content .promo-image.image-2 {
		margin-left: -200px;
		margin-top: 295px;
		rotate: -30deg;
	}
	.container .promo-section .promo-section-content .promo-image.image-3 {
		margin-left: -100px;
		margin-top: 410px;
	}
	.container .promo-section .promo-section-content .promo-image.image-4 {
		margin-left: -10px;
		margin-top: 285px;
		rotate: 30deg;
	}
	.container .promo-section .promo-section-content .promo-image.image-5 {
		margin-left: 140px;
		margin-top: 355px;
		rotate: -40deg;
	}
	.container .promo-section .promo-section-content .promo-image.image-6 {
		margin-left: -50px;
		margin-top: 245px;
		rotate: 15deg;
		z-index: 1;
	}
	
	.container .promo-section .promo-section-content .subscribe-form-wrapper form .form-row .btn-primary {
		width: 100%;
	}

	.container .promo-section .promo-section-content .events-section {
		flex-direction: column;
		align-items: center;
		margin-top: 390px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-title {
		font-size: 18px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-subtitle {
		font-size: 14px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-date {
		font-size: 12px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art {
		width: 120px;
		height: 120px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-btn {
		margin-top: 12px;
	}

	.container .features-section-and-footer .features-section .features-content .features-grid .features-row {
		flex-direction: column;
	}

	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card {
		width: 100%;
		height: 175px;
		flex: auto;
		border: var(--active-border);
		background: var(--active-background);
	}

	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text .feature-title {
		font-size: 24px;
		color: var(--active-text-color);
		text-shadow: var(--active-text-shadow);
	}

	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-image {
		filter: var(--active-image-filter);
		margin-left: 5%;
	}

	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text .feature-description {
		font-size: 16px;
	}

	.container .features-section-and-footer .features-section .agent-left,
	.container .features-section-and-footer .features-section .agent-right {
		display: none;
	}

	.container .promo-section .arrow-section {
		display: none;
	}

	.container .features-section-and-footer .footer .footer-row.first {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 12px;
		padding-bottom: 8px;
	}
	.container .features-section-and-footer .footer .footer-row .footer-center {
		width: 100%;
		order: 1;
		justify-content: center;
		flex-direction: row;
	}
	.container .features-section-and-footer .footer .footer-row .footer-center .footer-social .social-text {
		display: none;
	}
	.container .features-section-and-footer .footer .footer-row .footer-links {
		width: 100%;
		flex-direction: row;
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
		order: 2;
	}
	.container .features-section-and-footer .footer .footer-row .footer-links a {
		text-align: center;
	}
	.container .features-section-and-footer .footer .footer-row .footer-links .group-1 {
		width: 100%;
	}
	.container .features-section-and-footer .footer .footer-row .footer-links .group-2 {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		gap: 16px;
	}
	.container .features-section-and-footer .footer .footer-row .footer-links .group-2 a {
		width: 33%;
	}
	.container .features-section-and-footer .footer .footer-row .footer-copyright-main-text {
		position: static;
		order: 3;
		width: 100%;
		text-align: center;
	}
	.container .features-section-and-footer .footer .footer-row .footer-copyright-main-text .row-break-2 {
		display: none;
	}
}

@media (max-width: 700px) {
	.container .promo-section .promo-section-content .subscribe-form-wrapper {
		padding: 0 20px;
	}
}

@media (max-width: 600px) {
	.container .promo-section .promo-section-content .promo-title {
		font-size: 32px;
	}
	.container .promo-section .promo-section-content .subscribe-form-wrapper {
		padding: 0;
	}
	.container .features-section-and-footer .features-section .features-content .features-title {
		font-size: 48px;
	}

	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text .feature-title {
		font-size: 18px;
	}

	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text .feature-description {
		font-size: 14px;
	}

	.container .features-section-and-footer .footer .footer-row .footer-center {
		flex-direction: column;
	}
	.container .features-section-and-footer .footer .footer-row .footer-center .footer-social .social-text {
		display: flex;
	}
	.container .features-section-and-footer .footer .footer-row .footer-copyright-main-text .row-break-2 {
		display: none;
	}
}

@media (max-width: 480px) {
	.container .promo-section .top-promotion-bar {
		padding: 8px;
	}
	.container .promo-section .top-promotion-bar .top-promotion-text {
		font-size: 14px;
	}
	.container .promo-section .promo-section-content {
		padding: 0 10px;
	}
	.container .promo-section .promo-section-content .promo-title {
		font-size: 24px;
	}
	.container .promo-section .promo-section-content .promo-title .promo-title-line-1 {
		margin-left: 0;
	}
	.container .promo-section .promo-section-content .promo-title .promo-title-line-2-wrapper {
		margin-left: 0;
	}
	.container .promo-section .promo-section-content .promo-image {
		scale: 0.9;
	}
	.social-icons .social-text.header-text {
		display: none;
	}
	.social-icons .social-btn {
		width: 32px;
		height: 32px;
	}
	.container .promo-section .promo-section-content .subscribe-form-wrapper form .message {
		bottom: -50px;
	}
	.container .promo-section .promo-section-content {
		padding: 0 16px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-title {
		font-size: 16px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-subtitle {
		font-size: 12px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-copy .event-card-date {
		font-size: 10px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-body .event-card-art {
		width: 100px;
		height: 100px;
	}
	.container .promo-section .promo-section-content .events-section .events-group .event-card .event-card-btn {
		margin-top: 0;
	}
	.container .features-section-and-footer .features-section {
		padding: 20px 16px;
	}
	.container .features-section-and-footer .features-section .features-content .features-title {
		font-size: 32px;
		line-height: 36px;
	}
	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card {
		height: 150px;
	}
	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text {
		padding-left: 16px;
	}
	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text .feature-title {
		font-size: 16px;
	}
	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-text .feature-description {
		font-size: 12px;
	}
	.container .features-section-and-footer .features-section .features-content .features-grid .features-row .feature-card .feature-image {
		margin-left: 0;
		height: 80%;
	}

	.container .features-section-and-footer .footer {
		padding: 32px 16px 24px 16px;
	}
	.container .features-section-and-footer .footer .footer-row .footer-center .footer-social .social-text {
		text-align: right;
	}
	.container .features-section-and-footer .footer .footer-row .footer-links .group-2 {
		width: 100%;
		flex-direction: column;
		gap: 6px;
	}
	.container .features-section-and-footer .footer .footer-row .footer-links .group-2 a {
		width: 100%;
		text-align: center;
	}
	.container .features-section-and-footer .footer .footer-row .footer-copyright-main-text .row-break-2 {
		display: inline;
	}
}
