@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

	.event-card-v2__badge--past {
    background: rgba(0,0,0,0.82);
    border-color: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.72);
}

.event-card-v2__badge--past svg {
    fill: rgba(255,255,255,0.55);
}
	    /* ===== CRWND EVENTS CARDS - LUKE COMBS STYLE ===== */

.events-redesign-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

/* kill Bootstrap gutter/margin spacing for these cards */
.events-redesign-row > .event-search-item {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
}

/* desktop: 4 cards */
.events-redesign-row > .event-search-item {
    flex: 0 0 calc((100% - 66px) / 4);
    max-width: calc((100% - 66px) / 4);
}

/* tablet: 2 cards */
@media (max-width: 1199px) {
    .events-redesign-row > .event-search-item {
        flex: 0 0 calc((100% - 22px) / 2);
        max-width: calc((100% - 22px) / 2);
    }
}

/* mobile: 1 card */
@media (max-width: 767px) {
    .events-redesign-row {
        gap: 18px;
    }

    .events-redesign-row > .event-search-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.event-card-v2 {
    position: relative;
    height: 550px;
    overflow: hidden;
    border-radius: 12px;
    background-color: #111;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.event-card-v2::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: inherit;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.08) 0%,
        rgba(0,0,0,0.16) 42%,
        rgba(0,0,0,0.70) 72%,
        rgba(0,0,0,0.96) 100%
    );
}


.event-card-v2__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    height: 27px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    background: rgba(0,0,0,0.82);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.08);
}

.event-card-v2__badge:hover {
    color: #fff;
}

.event-card-v2__badge svg {
    width: 12px;
    height: 12px;
    fill: #fc4600;
}

.event-card-v2__badge--buy {
    background: #fc4600;
    border-color: #fc4600;
    color: #fff;
}

.event-card-v2__badge--buy svg {
    fill: #fff;
}

/* THIS MAKES IT LIKE THE LUKE COMBS CARD */
.event-card-v2__content {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.event-card-v2__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    color: rgba(255,255,255,0.78);
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1;
}

.event-card-v2__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: larger;
}

.event-card-v2__meta svg {
    width: 12px;
    height: 12px;
    fill: #fc4600;
    flex: 0 0 12px;
}

.event-card-v2__title {
    margin: 0 0 8px;
    color: #fff;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    max-width: 92%;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card-v2__title a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: xx-large;
}

.event-card-v2__title a:hover {
    color: #fc4600;
}

.event-card-v2__address {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: rgba(255,255,255,0.68);
    font-size: 10.5px;
    line-height: 1.35;
    max-width: 94%;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card-v2__address svg {
    width: 12px;
    min-width: 12px;
    height: 12px;
    margin-top: 1px;
    fill: rgba(255,255,255,0.58);
}

.event-card-v2.is-past {
    filter: saturate(.74);
}

.event-card-v2.is-past::before {
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.30) 0%,
            rgba(0,0,0,0.42) 0%,
            rgba(0,0,0,0.76) 72%,
            rgba(0,0,0,0.96) 100%
        );
}

@media (max-width: 1199px) {
    .event-card-v2 {
        height: 320px;
    }
}

@media (max-width: 767px) {
    .event-card-v2 {
        height: 450px;
    }

    .event-card-v2__title {
        font-size: 16px;
    }
}

.events-no-results {
    padding: 40px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: #aaa;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

	    /*! CSS Used from: https://assets-global.website-files.com/6546b5c3cc81983bb596dd77/css/bettertemplate.webflow.c0d702315.css */
section {
	display: block;
}

h1 {
	margin: .67em 0;
	font-size: 2em;
}

img {
	border: 0;
}

* {
	box-sizing: border-box;
}

img {
	vertical-align: middle;
	display: inline-block;
}

h1 {
	margin-bottom: 10px;
	font-weight: bold;
}

h1 {
	margin-top: 20px;
	font-size: 38px;
	line-height: 44px;
}

h1 {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 38px;
	font-weight: 700;
	line-height: 44px;
}

img {
	width: auto;
	height: 100%;
	object-fit: cover;
	display: inline-block;
}

.text-size-medium {
	font-size: 1.125rem;
	font-weight: 300;
}

.heading-1 {
    font-family: 'Anton', sans-serif;
    font-size: 28.8vw;
    line-height: 1;
    font-weight: 500;
}

.heading-1.margin-top {
}

.text-weight-bold {
	font-weight: 700;
}

.text-weight-medium {
	font-weight: 500;
}

.text-size-small {
	font-size: .875rem;
}

.text-size-regular {
	font-size: 1rem;
	line-height: 1.5;
}

.text-size-large {
	font-size: 2rem;
	line-height: 1.3;
}

.text-size-large.text-weight-bold.card {
	font-size: 2.6rem;
	line-height: 1.15;
}

.caps {
	letter-spacing: 1px;
	text-transform: uppercase;
}

.home-hero {
	position: relative;
}

.home-hero-component {
	width: 100%;
	justify-content: center;
	align-items: center;
	display: flex;
	position: relative;
	overflow: hidden;
}

.home-card {
    width: 100%;
    max-width: 15rem;
    min-width: 33rem;
    background-color: #121212;
    background-image: url("https://assets-global.website-files.com/6546b5c3cc81983bb596dd77/6546b761019eb56f435d0715_noise.png");
    background-position: 0 0;
    background-size: auto;
    background-attachment: scroll;
    border-radius: 1rem;
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    position: relative;
    overflow: hidden;
}

.home-card.left {
	z-index: 1;
	opacity: .94;
	filter: blur(2px);
	transition: all .4s;
	left: 17rem;
	transform: translate(0, 2rem)rotate(-12deg)scale(.9);
}

.home-card.left:hover {
	transform: translate(-1.5rem, 2.5rem)rotate(-14deg)scale(.9);
}

.home-card.right {
	z-index: 1;
	opacity: .94;
	filter: blur(2px);
	transform: translate(0, 2rem)rotate(12deg)scale(.9);
}

.home-card.right.home {
	transition: all .4s;
	left: -17rem;
}

.home-card.right.home:hover {
	transform: translate(1.5rem, 2.5rem)rotate(14deg)scale(.9);
}

.home-card.center {
	z-index: 2;
	box-shadow: 0 16px 20px 20px rgba(0, 0, 0, .2), 0 7px 20px 4px rgba(0, 0, 0, .4);
}

.home-card-content {
	grid-row-gap: 1.5rem;
	text-align: center;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 1rem;
	margin-bottom: 1rem;
	padding-left: 3.1rem;
	padding-right: 3.1rem;
	display: flex;
}

.home-card-image {
	width: 100%;
	height: 20rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	display: flex;
	overflow: hidden;
}

.badge {
	background-color: var(--white);
	color: var(--black);
	border-radius: .5rem;
	justify-content: center;
	align-items: center;
	padding: .5rem .8rem;
	display: flex;
}

.cards-wrapper {
	justify-content: center;
	align-items: center;
	display: flex;
	position: absolute;
}

.opacity-80 {
	opacity: .8;
}

.image {
	width: 102%;
	height: 102%;
	max-width: none;
	object-fit: cover;
	object-position: 50% 50%;
}

.scroll-banner {
	z-index: 3;
	width: 23rem;
	grid-column-gap: 1rem;
	align-items: center;
	position: absolute;
	top: auto;
	bottom: 3rem;
	left: auto;
	right: auto;
	overflow: hidden;
}

.dot {
	width: .5rem;
	height: .5rem;
	min-height: .5rem;
	min-width: .5rem;
	background-color: var(--white);
	border-radius: 50%;
}

.scroll-banner-wrapper {
	grid-column-gap: 1rem;
	grid-row-gap: 1rem;
	white-space: nowrap;
	align-items: center;
	display: flex;
}

@media screen and (max-width: 991px) {
	.heading-1 {
		font-size: 6rem;
	}

	.heading-1.margin-top {
font-size: 32vw;
	}

	.text-size-large {
		font-size: 2.3rem;
		line-height: 1.4;
	}

	.home-hero {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.home-hero-component {
		grid-row-gap: 3.5rem;
		flex-direction: column;
		justify-content: flex-start;
	}

	.cards-wrapper {
		margin-top: -21vh;
		position: static;
	}

	.scroll-banner {
		position: static;
	}
}

@media screen and (max-width: 767px) {
	.text-size-medium {
		font-size: 1.2rem;
	}

	.heading-1 {
		font-size: 5rem;
	}

	.text-size-large {
		font-size: 1.5rem;
	}

	.cards-wrapper {
		margin-top: -11vh;
	}
}

@media screen and (max-width: 479px) {
	.text-size-medium.text-weight-medium.opacity-80 {
		font-size: 1.1rem;
	}

	.heading-1 {
		font-size: 4rem;
	}

	.text-size-large.text-weight-bold.card {
		font-size: 2rem;
	}

	.home-hero {
		overflow: hidden;
	}

	.home-card.center {
		max-width: none;
		min-width: 95vw;
	}

	.home-card-content {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.cards-wrapper {
		transform: scale(.9);
	}
}

/*! CSS Used fontfaces */
@font-face {
	font-family: 'Bebas Neue';
	font-style: normal;
	font-weight: 400;
	src: url(https://fonts.gstatic.com/s/bebasneue/v14/JTUSjIg69CK48gW7PXoo9Wdhyzbi.woff2) format('woff2');
	unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'Bebas Neue';
	font-style: normal;
	font-weight: 400;
	src: url(https://fonts.gstatic.com/s/bebasneue/v14/JTUSjIg69CK48gW7PXoo9Wlhyw.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
