/* Homepage specific styling goes here. Excluded on all subpages */
/* For most builds, this stylesheet should be wiped and started fresh */

/* HERO */
.hero {
	position: relative;
	width: 100%;
	margin-top: 112px;
	max-height: 390px;
}

.hero-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 12000ms ease-out;
}

.hero-overlay img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left;
}

.hero-image-container.active img {
	transform: scale(1) !important;
}

.hero-overlay {
	width: auto;
	height: 100%;
	content: "";
	position: absolute;
	bottom: 0;
	z-index: 1;
	right: -168px;
	opacity: 0;
	transition: opacity 5000ms;
}

.hero-overlay.active {
	opacity: 1 !important;
}

.hero-image-container:after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(45deg, rgba(0, 24, 49, 1) 25%, rgba(0, 24, 49, 0) 75%);
}

.hero-image-container {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
}

.hero-content {
	width: 100%;
	z-index: 1;
	padding: 50px 0;
	position: relative;
	min-height: calc(100vh - 112px);
}

.hero-title,
.hero-button {
	overflow: hidden;
}

.hero-title p {
	color: var(--color-white);
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 1.24;
	margin-bottom: 20px;
}

.hero-title p span {
	transform: translateY(120%);
	display: inline-block;
	opacity: 0;
}

#hero-tagline-top {
	transition: transform 500ms ease-out 1200ms, opacity 500ms ease-out 1200ms;
}

#hero-tagline-bottom {
	transition: transform 500ms ease-out 1600ms, opacity 500ms ease-out 1600ms;
}

.hero-title.animated p span {
	transform: translateY(0);
	opacity: 1;
}

@media screen and (min-width: 768px) {
	.hero {
		margin-top: 0;
		max-height: none;
	}

	.hero-title p {
		margin-bottom: 40px;
	}

	.hero-content {
		display: flex;
		padding-top: 200px;
		padding-bottom: 100px;
		min-height: 100vh;
		flex-direction: column;
		justify-content: center;
	}
}

@media screen and (min-width: 1025px) {
	.hero-title p {
		font-size: 3.7rem;
	}

	.hero-overlay {
		width: 1126px;
		right: -285px;
		height: 100%;
	}
}

@media screen and (min-width: 1260px) {
	.hero-title p {
		font-size: 4.9rem;
	}
}

@media screen and (min-width: 1440px) {
	.hero-overlay {
		width: 1510px;
		right: -370px;
	}
}

/* INTRO */
.intro {
	padding: 70px 0;
	width: 100%;
}

.intro .row {
	max-width: calc(1254px + calc(var(--gutter-size) * 2));
}

.intro .button {
	margin: 0 1rem 0.5rem 0;
	width: 100%;
	max-width: 680px;
}

.intro-inner {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.intro-left p {
	margin: 0;
	text-transform: capitalize;
}

.intro-left p span {
	display: block;
	font-weight: 700;
	line-height: 1.2;
}

.intro-left p .heading-top {
	font-size: 0.938rem;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--color-secondary);
}

.intro-left p .heading-bottom {
	font-size: 2rem;
}

@media screen and (min-width: 1025px) {
	.intro .button {
		margin-bottom: 0;
		width: auto;
	}

	.intro .button:last-of-type {
		margin-right: 0;
	}

	.intro-left {
		width: 400px;
	}

	.intro-inner {
		flex-direction: row;
	}

	.intro-right {
		flex: 1;
		padding-left: 2rem;
	}

	.intro-left p .heading-bottom {
		font-size: 2.625rem;
	}

	.intro-left p .heading-top {
		margin-bottom: 20px;
	}

	.intro-left p .heading-top br {
		display: none;
	}
}

@media screen and (min-width: 1440px) {
	.intro-left p .heading-top {
		letter-spacing: 0.3rem;
	}

	.intro-right {
		font-size: 1.188rem;
		padding-left: 3.5rem;
		width: 69%;
	}
}

/* PRACTICE */
.practice {
	width: 100%;
	padding: 0 var(--gutter-size);
	margin: 0 auto 65px;
	max-width: 1760px;
}

.practice .slick-list {
	overflow: visible;
}

.practice .practice-slide {
	margin-bottom: 30px;
}

.practice .practice-button {
	width: 100%;
}

.practice .slick-arrow {
	top: auto;
	bottom: 0;
	height: 30px;
	transform: none;
	background-color: transparent;
}

.practice .slick-arrow:before {
	font-size: 2rem;
	font-weight: bold;
	color: var(--color-secondary);
	transition: color 200ms ease-in-out;
}

.practice .slick-arrow:focus:before,
.practice .slick-arrow:hover:before {
	color: var(--color-primary);
}

.practice .slick-arrow.slick-prev {
	left: calc(50% - 58px);
}

.practice .slick-arrow.slick-prev:before {
	content: "\f104";
}

.practice .slick-arrow.slick-next {
	right: calc(50% - 58px);
}

.practice .slick-arrow.slick-next:before {
	content: "\f105";
}

.practice .slick-arrow + .slick-list {
	padding-bottom: 54px;
}

@media screen and (min-width: 650px) {
	.practice .practice-slider {
		display: flex;
		width: calc(100% + 20px);
		margin: 0 -10px;
		flex-wrap: wrap;
	}

	.practice .practice-slide {
		width: calc(50% - 20px);
		margin: 0 10px 20px;
	}
}

@media screen and (min-width: 768px) {
	.practice .practice-slider {
		display: block;
		width: 100%;
		margin: 0;
	}

	.practice .practice-slide {
		width: 285px;
		margin: 0 15px 20px 0;
	}
}
