.pt-hero {
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	overflow: hidden;
	background: url('https://cdn.precisiontennis.ca/uploads/team-photo.jpg') center center / cover no-repeat;
	/* background: url('https://cdn.precisiontennis.ca/uploads/vancouver-international-tennis-academy-facility-image.jpg') center center / cover no-repeat; */
}

.pt-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	/*background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));*/
	background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2));
	z-index: 2;
}

.pt-hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	background: transparent;
}

.pt-hero-content {
	position: relative;
	z-index: 3;
	color: white;
	margin-top: 50px !important;
	margin-bottom: 50px !important;
	display: flex;
	flex-direction: column;
	width: 95%;
	height: auto;
	place-content: center;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	text-align: center;
}

.pt-headline {
	padding: 20px 0 10px;
	width: 80%;
	text-shadow: 2px 2px 6px #000;
	text-align: center;
}

.pt-headline span {
	font-size: 1.3em;
	display: block;
}

.pt-value-props {
	list-style-type: none;
	padding: 0;
	margin: 40px 20px 0 10px;
	background-color: #fff;
	color: black;
	padding: 20px;
	border-radius: 10px;
	width: auto;
}

.pt-value-props li {
	margin-bottom: 10px;
	font-size: 14px;
	display: flex;
	align-items: center;
}

.pt-checkmark {
	color: var(--green);
	font-weight: bold;
	margin-right: 10px;
}

.pt-links {
	max-width: 1024px;
	margin-top: 20px;
}

.pt-hero-links {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	width: 100%;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.pt-hero-link-item {
	display: grid;
}

.pt-hero-link {
	color: white;
	background-color: rgba(0,0,0);
	background-color: var(--green);
	border: 2px solid var(--green);
	text-decoration: none;
	opacity: 0.9;
	padding: 20px;
	width: 250px;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	display: block;
	border-radius: var(--cta-radius);
	box-shadow: rgba(255, 255, 255, 0.16) 0px 1px 4px;
	justify-content: center;
    align-items: center;
    display: flex;
	transition: background-color 0.5s ease-in-out;
}

.pt-hero-link:hover {
	transition: background-color 0.5s ease-in-out;
	color: white;
	background-color: var(--green);
	border: 2px solid transparent;
}

.pt-inverted-hero-link {
	text-decoration: none;
	color: white;
	color: black;
	background-color: rgba(255,255,255);
	border: 2px solid #fff;
	opacity: 0.9;
	padding: 20px;
	width: 250px;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	display: block;
	border-radius: var(--cta-radius);
	box-shadow: rgba(255, 255, 255, 0.16) 0px 1px 4px;
	justify-content: center;
    align-items: center;
    display: flex;
	transition: background-color 0.5s ease-in-out;
}

.pt-inverted-hero-link:hover {
	color: black;
	background-color: #fff;
	border: 2px solid transparent;
	transition: background-color 0.5s ease-in-out;
}


.pt-hero-link.pt-inverted {
	background-color: transparent;
}

@media screen and (max-width: 767px) {
	.pt-hero-link, 
	.pt-inverted-hero-link {
		font-size: 17px;
		width: 225px;
		font-weight: 500;
	}
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
	.pt-value-props {
		display: none;
		font-size: 14px;
	}

	.pt-hero {
		height: 100%;
	}

	.pt-headline {
		font-size: 32px;
	}

	.pt-nav-link {
		font-size: 14px;
	}
}

@media screen and (max-width: 650px) {
	.pt-headline span {
		font-size: 1.0em !important;
	}

	.pt-value-props {
		display: none;
	}
}

@media screen and (min-width: 1440px) {
	.pt-headline span {
		font-size: 1.5em !important;
	}
}
