/* Counter */
.counter:not(.counter--inline) {
	display: inline-block;
	text-align: left;
	max-width: 100%;
}

/* Hide */
@media only screen and (max-width: 459px) {
	.hidden-xxs {
		display: none !important;
	}
}

@media only screen and (max-width: 767px) {
	.hidden-xs {
		display: none !important;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.hidden-sm {
		display: none !important;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.hidden-md {
		display: none !important;
	}
}

@media only screen and (min-width: 1200px) {
	.hidden-lg {
		display: none !important;
	}
}

/* Arrows */
.arrow {
	position: absolute;
	display: block;
	margin: auto;
	width: 0px; 
	height: 0px;
	border-left: 32px solid transparent;
	border-right: 32px solid transparent;
	z-index: 1;
}

.arrow.arrow--up {
	border-bottom: 50px solid #000;
}

.arrow.arrow.arrow--white.arrow--up {
	border-bottom-color: #fff;
}

.arrow.arrow.arrow--yellow.arrow--up {
	border-bottom-color: #fcb32b;
}

.arrow.arrow.arrow--gray.arrow--up {
	border-bottom-color: #d6d8d7;
}

.arrow.arrow--down {
	border-top: 50px solid #000;
}

.arrow.arrow.arrow--white.arrow--down {
	border-top-color: #fff;
}

.arrow.arrow.arrow--yellow.arrow--down {
	border-top-color: #fcb32b;
}

.arrow.arrow.arrow--gray.arrow--down {
	border-top-color: #d6d8d7;
}

.arrow.arrow--right,
.arrow.arrow--left {
	border-top: 32px solid transparent;
	border-bottom: 32px solid transparent;
}

.arrow.arrow--right {
	border-left: 50px solid #000;
}

.arrow.arrow.arrow--white.arrow--right {
	border-left-color: #fff;
}

.arrow.arrow.arrow--yellow.arrow--right {
	border-left-color: #fcb32b;
}

.arrow.arrow.arrow--gray.arrow--right {
	border-left-color: #d6d8d7;
}

.arrow.arrow--left {
	border-right: 50px solid #000;
}

.arrow.arrow.arrow--white.arrow--left {
	border-right-color: #fff;
}

.arrow.arrow.arrow--yellow.arrow--left {
	border-right-color: #fcb32b;
}

.arrow.arrow.arrow--gray.arrow--left {
	border-right-color: #d6d8d7;
}

@media only screen and (min-width: 1024px) {
	.arrow {
		border-left-width: 40px;
		border-right-width: 40px;
	}

	.arrow.arrow--up,
	.arrow.arrow.arrow--white.arrow--up {
		border-bottom-width: 60px;
	}

	.arrow.arrow--down,
	.arrow.arrow.arrow--white.arrow--down {
		border-top-width: 60px;
	}

	.arrow.arrow--right,
	.arrow.arrow--left {
		border-top-width: 40px;
		border-bottom-width: 40px;
	}

	.arrow.arrow--right,
	.arrow.arrow.right--white.arrow--down {
		border-left-width: 60px;
	}

	.arrow.arrow--left,
	.arrow.arrow.arrow--white.arrow--left {
		border-right-width: 60px;
	}
}

/* DPE navigation links */
.nav-columns .text .text-component {
	width: 100% !important;
	margin: 0px !important;
	padding: 0px !important;
}

.nav-columns .text .text-component ul {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin: 0px 0px 40px 0px;
	padding: 0px;
}

.nav-columns .text .text-component ul li {
	display: flex;
	margin: 0px;
	padding: 0px;
	width: 100%;
	align-items: stretch;
}

.nav-columns .text .text-component ul li::before {
	display: none;
}

.nav-columns .text .text-component ul li a {
	position: relative;
	display: flex;
	flex-flow: column;
	justify-content: space-around;
	margin: 0px 0px 4px 0px;
	padding: 10px 70px 10px 0px;
	width: 100%;
	border-bottom: 1px solid #ccc;
	font-family: "PwC Helvetica Neue Light", Arial, Sans-Serif;
	font-size: 1.3rem;
	line-height: 1.1;
	font-weight: normal;
	text-decoration: none;
	color: inherit;
}

.nav-columns .text .text-component ul li a::after {
	content: "";
	position: absolute;
	top: 2px;
	right: 20px;
	bottom: 0px;
	display: block;
	margin: auto;
	width: 14px;
	height: 14px;
	border-style: solid;
	border-color: #2d2d2d;
	border-width: 1px 1px 0px 0px;
	transform: rotate(45deg);
	transition: right 0.3s;
}

.nav-columns .text .text-component ul li a:hover::after {
	right: 10px;
}

@media screen and (min-width: 480px) {
	.nav-columns .text .text-component ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (min-width: 768px) {
	.nav-columns .text .text-component ul {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
