/*** Fonts ***/
@import url("https://use.typekit.net/rpt0tvc.css");

/*** Colors ***/
:root {
    --darkPurple: #330a57;
    --lightPurple: #a090c4;
    --black: #141414;
	--white: #FFF;
}
h2 {
	color: var(--white);
	font-family: 'Gotham', sans-serif;
	font-size: 72px;
	font-weight: 800;
	line-height: 72px;
	margin: 0;
	text-transform: uppercase;
}
/*** CTAs ***/
	.ctas {
		align-items: center;
		display: flex;
		justify-content: center;
		position: relative;
		width: 100%;
	}
	.cta-swiper {
		margin: 0 -12px;
		overflow: hidden;
		width: calc(100% + 24px);
	}
	.cta-swiper .swiper-slide {
		margin: 0 12px;
		width: calc(20% - 24px)
	}
	.cta {
		align-items: center;
    	border: 2px solid var(--color-theme-elevated-light);
    	display: flex;
    	flex-direction: column;
		font-family: 'Gotham', sans-serif;
    	height: 100%;
    	justify-content: center;
		padding: 24px;
		text-align: center;
		text-decoration: none !important;
		transition: all 0.2s ease-in-out 0s;
	}
	.cta:hover, .cta:focus {
		background: var(--darkPurple);
		border: 2px solid var(--darkPurple);
		color: var(--white);
	}
	.cta__icon {
		font-size: 0;
	}
	.cta__icon:before {
		font-size: 36px;
		line-height: 36px;
	}
	.cta__primary {
		font-size: 18px;
		font-weight: 800;
		line-height: 18px;
		margin: 12px 0 6px;
		text-transform: uppercase;
		white-space: nowrap;
	}
	.cta__secondary {
		font-size: 12px;
		line-height: 12px;
		margin-right: 25px;
		position: relative;
		white-space: nowrap;
	}
	.cta__secondary:before, .card__title span:before {
		background: var(--darkPurple);
		content: '';
		height: 1.2px;
		position: absolute;
		right: -21px;
		top: 50%;
		transform: translateY(-50%);
		transition: all 0.2s ease-in-out 0s;
		width: 15px;
	}
	.cta__secondary:after, .card__title span:after {
		color: var(--darkPurple);
		content: '\F11B';
		font-family: 'sidearm-icons';
		font-size: 12px;
		height: 12px;
		position: absolute;
		right: -25px;
		top: 50%;
		transform: translateY(-50%);
		transition: all 0.2s ease-in-out 0s;
		width: 12px;
	}
	.cta:hover .cta__secondary:before, .cta:focus .cta__secondary:before,
	.cards li a:hover .card__title span:before, .cards li a:focus .card__title span:before {
		background: var(--lightPurple);
		right: -25px;
    	width: 19px;
	}
	.cta:hover .cta__secondary:after, .cta:focus .cta__secondary:after,
	.cards li a:hover .card__title span:after, .cards li a:focus .card__title span:after {
		color: var(--lightPurple);
		right: -29px;
	}
	.swiper-button {
		background-color: var(--color-theme-elevated-light);
		border-radius: 100%;
		bottom: auto;
		color: var(--color-theme-muted-light) !important;
		flex: 0 0 28px;
	    font-size: 0 !important;
    	height: 28px !important;
		left: auto !important;
		margin: 0 !important;
    	position: relative !important;
		right: auto !important;
    	top: auto !important;
		transition: all 0.2s ease-in-out 0s;
    	width: 28px !important;
	}
	.hidden {
  		display: none !important;
	}
	.swiper-button:hover, .swiper-button:focus {
		background-color: var(--color-primary);
    	color: var(--white) !important; 
	}
	.swiper-button:after {
		font-size: 10px !important;
		line-height: 10px !important;
	}
	.swiper-button-prev:after {
		margin-right: 1px;
	}
	.swiper-button-next:after {
		margin-left: 1px;
	}
	
/*** Parallax ***/
	.parallax {
		align-items: center;
		background: var(--black);
	   	background-attachment: fixed;
    	background-position: center;
    	background-size: auto;
		display: flex;
  		height: 360px;
		justify-content: center;
		margin: 48px 0 0;
		overflow: hidden;
		position: relative;
		text-align: center;
  		width: 100%;
	}
	.parallax:before {
		background: rgba(0, 0, 0, .5);
		content: '';
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: 1;
	}
	.parallax__inner {
		padding: 24px 18px;
		z-index: 2;
	}
	
/*** Cards ***/
	.cards {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		list-style: none;
		margin: 36px -12px;
		padding: 0;
		width: calc(100% + 24px);
	}
	.cards li {
		margin: 12px;
		min-width: 312px;
		padding: 0 !important;
		width: calc(33.333% - 24px);
	}
	.cards li a {
		align-items: flex-end;
		aspect-ratio: 1.5 / 1;
		box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
		display: flex;
		overflow: hidden;
		position: relative;
		text-decoration: none;
	}
	.card__background {
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		transition: all .25s ease-in-out 0s;
		width: 100%;
	}
	.cards li a:hover .card__background, .cards li a:focus .card__background {
		transform: scale(1.1);
	}
	.card__background img {
		height: 100%;
		margin: 0 !important;
		object-fit: cover;
		width: 100%;
	}
	.card__title {
		align-items: center;
		background: var(--white);
		color: var(--darkPurple);
		display: flex;
		font-family: 'Gotham', sans-serif;
		font-size: 16px;
		font-weight: 700;
		height: 40px;
		line-height: 16px;
		padding: 0 12px 0 52px;
		position: relative;
		text-transform: uppercase;
		transition: all 0.2s ease-in-out 0s;
		width: 100%;
		z-index: 1;
	}
	.card__title:before, .card__title:after {
		content: '';
		height: 40px;
		left: 0;
		position: absolute;
		top: 0;
		width: 40px;
	}
	.card__title:before {
		background: var(--darkPurple);
		z-index: 1;
	}
	.card__title:after {
		background-image: url('https://dxbhsrqyrr690.cloudfront.net/sidearm.nextgen.sites/kstate.sidearmsports.com/images/nextgen_2023/logo_scroll.svg');
		background-position: center;
    	background-repeat: no-repeat;
    	background-size: contain;
		height: 24px;
    	left: 8px;
    	top: 8px;
    	width: 24px;
		z-index: 2;
	}
	.card__title:not(.powercat):after {
    	height: 30px;
    	left: 5px;
    	top: 5px;
    	width: 30px;
	}
	.card__title.baseball:after {
		background-image: url('https://dxbhsrqyrr690.cloudfront.net/sidearm.nextgen.sites/kstate.sidearmsports.com/images/2025/8/19/baseball_willie.png');
	}
	.card__title.basketball:after {
		background-image: url('https://dxbhsrqyrr690.cloudfront.net/sidearm.nextgen.sites/kstate.sidearmsports.com/images/2025/8/19/basketball_willie.png');
	}
	.card__title.football:after {
		background-image: url('https://dxbhsrqyrr690.cloudfront.net/sidearm.nextgen.sites/kstate.sidearmsports.com/images/2025/8/19/football_willie.png');
	}
	.card__title.soccer:after {
		background-image: url('https://dxbhsrqyrr690.cloudfront.net/sidearm.nextgen.sites/kstate.sidearmsports.com/images/2025/8/19/soccer_willie.png');
	}
	.card__title.volleyball:after {
		background-image: url('https://dxbhsrqyrr690.cloudfront.net/sidearm.nextgen.sites/kstate.sidearmsports.com/images/2025/8/19/volleyball_willie.png');
	}
	.card__title span {
		position: relative;
	}
	.card__title span:before {
		background: var(--darkPurple) !important;
	}
	.card__title span:after {
		color: var(--darkPurple) !important;
		top: calc(50% - 2px);
	}
/*** Contact ***/
	.contact {
		border-left: 10px solid var(--darkPurple);
    	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
		font-family: 'Gotham', sans-serif;
    	padding: 24px;
		padding-right: 0;
	}
	.contact__header {
		font-size: 24px;
    	font-weight: 800;
    	line-height: 24px;
		margin-bottom: 12px;
    	text-transform: uppercase;
	}
	.contact__options {
		align-items: flex-start;
    	display: flex;
		flex-wrap: wrap;
    	justify-content: flex-start;
    	list-style: none;
    	margin: 0;
    	padding: 0;
	}
	.contact__options li {
		flex: 1 0 360px;
		font-size: 18px;
		line-height: 24px;
		padding-left: 0;
		padding-right: 24px;
		text-transform: uppercase;
	}
	.contact__options li strong {
		font-weight: 800;
	}
	.contact a {
		font-weight: 600;
		text-decoration: none;
	}
	.contact a:hover, .contact a:focus {
		color: var(--darkPurple);
		text-decoration: underline;
	}
/*** Media Queries ***/
@media(max-width: 1440px) {
	.cta-swiper {
		margin: 0;
		width: 100%;
	}
	.cta-swiper .swiper-slide {
    	width: calc(25% - 24px);
	}
}
@media(max-width: 1224px) {
	.cta-swiper .swiper-slide {
    	width: calc(33.333% - 24px);
	}
}
@media(max-width: 1080px) {
	.cards li {
		width: calc(50% - 24px);
	}
}
@media(max-width: 1023px) {
	h2 {
		font-size: 48px;
		line-height: 48px;
	}
	.cta-swiper .swiper-slide {
    	width: calc(50% - 24px);
	}
	.parallax {
		background-attachment: scroll;
    	background-size: cover;
		height: 240px;
		margin-top: 40px;
	}
	.cards {
		margin: 30px -12px;
	}
}
@media(max-width: 767px) {
	h2 {
		font-size: 36px;
		line-height: 36px;
	}
	.parallax {
		height: 180px;
	}
	.contact__options li {
		flex: 1 1 312px;
		font-size: 14px;
		line-height: 18px;
	}
}
@media(max-width: 680px) {
	.cards li {
		width: calc(100% - 24px);
	}
}
@media(max-width: 600px) {
	.cta-swiper .swiper-slide {
    	width: calc(100% - 24px);
	}
}