/*# sourceMappingURL=hp-practice-areas.css.map */

#hp-practice-areas .hp-practice-areas-inner {
	padding: 50px 20px 0;
}

#hp-practice-areas .hp-practice-areas-inner .pa-list .pa-item {
	margin-bottom: 60px;
	display: flex;
	flex-flow: column;
	align-items: center;
}

#hp-practice-areas .hp-practice-areas-inner .pa-list .pa-item .pa-icon {
	width: 100px;
	margin-bottom: 40px;
}

#hp-practice-areas .hp-practice-areas-inner .pa-list .pa-item .pa-icon svg {
	width: 100%;
	height: auto;
	fill: var(--secondaryColor);
}

#hp-practice-areas .hp-practice-areas-inner .pa-list .pa-item .pa-name {
	font-size: 24px;
	font-size: 1.5rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	margin-bottom: 40px;
	letter-spacing: 1px;
}

#hp-practice-areas .hp-practice-areas-inner .pa-list .pa-item .pa-name a {
	color: var(--primaryColor);
}

#hp-practice-areas .hp-practice-areas-inner .pa-list .pa-item p {
	color: #666;
}

@media (min-width: 768px) {
	#hp-practice-areas .hp-practice-areas-inner .pa-list {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		align-items: stretch;
		padding: 0 30px;
	}
	
	#hp-practice-areas .hp-practice-areas-inner .pa-list .pa-item {
		flex: 0 1 48%;
	}
	
	#hp-practice-areas .hp-practice-areas-inner .pa-list .pa-item .pa-name {
		margin-bottom: 10px;
	}
}

@media (min-width: 1280px) {
	#hp-practice-areas .hp-practice-areas-inner .pa-list .pa-item {
		margin-bottom: 120px;
	}
}

@media (min-width: 1100px) {
	#hp-practice-areas .hp-practice-areas-inner .pa-list {
		padding: 50px 0;
		margin-top: 50px;
	}
	
	#hp-practice-areas .hp-practice-areas-inner .pa-list .pa-item {
		flex: 0 1 31%;
	}
}

@media (min-width: 768px) {
	#hp-practice-areas .hp-practice-areas-inner {
		padding: 100px 30px 0;
	}
}

@media (min-width: 1100px) {
	#hp-practice-areas .hp-practice-areas-inner {
		padding: 80px 0 0;
	}
}

#hp-practice-areas .cta {
	width: fit-content;
	margin: 0 auto;
	display: block;
}

.pop-up {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
	background-color: rgba(0, 0, 0, 0);
	justify-content: center;
	align-items: center;
}

.pop-up__modal {
	max-width: 650px;
	width: 0;
	max-height: 380px;
	height: 380px;
	min-height: fit-content;
	padding: 60px 40px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px #252a46;
	transition: .5s cubic-bezier(.17, .66, .34, .98);
}

.pop-up__inner {
	width: 100%;
	height: 100%;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.pop-up__inner .close {
	position: absolute;
	top: 35px;
	right: 40px;
	background-color: rgba(0, 0, 0, 0);
	border: none;
}

.pop-up__content {
	max-width: 100%;
	max-height: 100%;
	overflow-y: scroll;
	height: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	opacity: 0;
	font-size: 0;
	color: #000;
	font-weight: 500;
	line-height: 28px;
	transition: font-size .3s cubic-bezier(.17, .66, .34, .98) .5s;
	transition: opacity .3s cubic-bezier(.17, .66, .34, .98) .6s;
}

.pop-up__content .title {
	width: 100%;
	font-size: 45px;
	line-height: 55px;
	color: var(--primaryColor);
	text-transform: capitalize;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
}

.pop-up__content .title::after {
	content: "";
	width: 40px;
	height: 4px;
	display: block;
	background-color: var(--tertiaryColor);
	border: none;
	margin: 15px auto;
}

.pop-up__content p:last-of-type {
	margin-bottom: 10px;
}

.pop-up.open .pop-up__modal {
	width: 80%;
	min-width: 250px;
	opacity: 1;
}

.pop-up.open .pop-up__content {
	height: 100%;
	opacity: 1;
	font-size: 18px;
}

.pop-up.open .pop-up__content a {
	color: var(--secondaryColor);
}

.pop-up.open .pop-up__content a:hover {
	color: var(--tertiaryColor);
}

.pop-up .link {
	margin: 0 auto;
	margin-top: 20px;
	display: block;
	color: var(--tertiaryColor);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 18px;
	line-height: 25px;
	font-weight: 700;
	cursor: pointer;
	transition: color .5s cubic-bezier(.17, .66, .34, .98);
}

.pop-up .link:hover {
	color: var(--secondaryColor);
}
