/*SVG Logo*/
.header__logo {
	width: 220px;
	max-height: 80px;
}

.header__logo--small {
	width: 200px;
	max-height: 40px;
}

/*IE only header logo*/

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
	.header__logo {
		width: auto;
	}

	.header__logo--small {
		width: auto;
	}

}



.accordion__heading {
	text-transform: none;
	text-align: left;
	font-size: 1.875rem;
}


/*Footer*/
/*2 COLS*/

#footer-2cols-left {
	float: left;
	width: 50%;
	overflow: hidden;
	padding: 5%;
}

#footer-2cols-right {
	width: 50%;
	overflow: hidden;
	padding: 5%;
}


@media (max-width: 767px) {
	#footer-2cols-left {
		width: 100%;
	}

	#footer-2cols-right {
		width: 100%;
	}
}


/*3 cols - Even spacing*/
	#footer-3-cols {
		width: 100%
	}

	#left {
		float: left;
		width: 33%;
		overflow: hidden;
		padding: 5%;
	}


	@media (max-width: 767px) {
		#left {
			width: 100%;
		}

	}


/*3 cols - smaller first column*/
	#footer-3-cols {
		width: 100%
	}

	#left-wide {
		float: left;
		width: 40%;
		overflow: hidden;
		padding: 2%;
	}

#left-first {
		float: left;
		width: 20%;
		overflow: hidden;
		padding: 2%;
	}


	@media (max-width: 767px) {
		#left-wide {
			width: 100%;
			margin-top: 10%;
		}
		
		#left-first {
			width: 100%;
			margin-top: 10%;
		}

	}


/*Custom footer link layout*/
.custom-footer-layout ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;

}


.custom-footer-layout ul li {
	display: inline-block;
	margin-left: 25px;

}

.custom-footer-layout ul li:before {
	content: none;
}




@media (max-width: 767px) {

	.custom-footer-layout ul li {

		display: block;

		margin-left: 0px;

	}

}

.accordion__heading {
	text-transform: none;
	text-align: left;
	font-size: 1.875rem;
}