.headerimage {
	margin: 0 0 10rem;
}

.headerimage .wrapper {
	height: 72rem;
}

.headerimage .wrapper {
	display: flex;
	align-items: center;
}

.headerimage .content {
	max-width: 50%;
}

.headerimage h1 {
	color: #fff;
}

.headerimage .text {
	margin: 0 0 4rem;
	font-size: 2.5rem;
	color: #fff;
}

.headerimage .ce_hyperlink {
	margin: 0;
}

.headerimage .ce_hyperlink a {
	padding: 2rem 4rem;
	font-size: 2.5rem;
	font-weight: bold;
}

.headerimage .ce_hyperlink a:hover {
	background: #fff;
}

@media screen and (max-width: 75em) {
	
	.headerimage .wrapper {
		height: 60rem;
	}

	.headerimage .content {
		max-width: 70%;
	}
}

@media screen and (max-width: 64em) {
	
	.headerimage .wrapper {
		height: 50rem;
	}

	.headerimage .text {
		margin: 0 0 3rem;
		font-size: 2.2rem;
	}
	
	.headerimage h1 {
		margin: 0 0 3rem;
	}

	.headerimage .ce_hyperlink a {
		padding: 1.8rem 3.3rem;
		font-size: 2.2rem;
	}
}

@media screen and (max-width: 50em) {
	
	.headerimage .wrapper {
		height: 40rem;
	}

	.headerimage .text {
		margin: 0 0 2.5rem;
		font-size: 2rem;
	}
	
	.headerimage h1 {
		margin: 0 0 2.5rem;
		font-size: 3rem;
	}

	.headerimage .ce_hyperlink a {
		padding: 1.5rem 3rem;
		font-size: 2rem;
	}
}

@media screen and (max-width: 40em) {
	
	.headerimage .wrapper {
		height: 33rem;
	}
	
	.headerimage .content {
		max-width: none;
	}

	.headerimage .text {
		margin: 0 0 2rem;
		font-size: 1.8rem;
	}
	
	.headerimage h1 {
		margin: 0 0 2rem;
		font-size: 2.5rem;
	}

	.headerimage .ce_hyperlink a {
		padding: 1.5rem 2.7rem;
		font-size: 1.8rem;
	}
}







.ce_hyperlink a,
.btn {
	display: inline-block;
	padding: 1.5rem 3.5rem;
	border-radius: 3.5rem;
	color: #fff;
	background: var(--color-primary);
}

.ce_hyperlink a:hover,
.btn:hover {
	color: var(--color-primary);
	background: none;
}





.skills {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: -5rem 0 5rem;
}

body:not(.home) .skills {
	margin: -13rem 0 5rem;
}

.skills .ce_text {
	display: flex;
	flex-direction: column;
	padding: 0 2% 1rem;
	width: 31%;
	border-radius: 1rem;
	color: #fff;
	text-align: center;
	background: var(--color-primary);
}

.skills figure {
	order: 1;
	margin: -5rem 0 2rem;
}

.skills img {
	margin: 0 auto;
}

.skills h2 {
	order: 2;
	margin: 0 0 1em;
	font-size: 2.1rem;
	color: #fff;
}

.skills p {
	order: 3;
	font-size: 1.6rem;
}

@media screen and (max-width: 75em) {
	
	.skills {
		margin: 10rem 0 5rem;
	}
	
	body:not(.home) .skills {
		margin: 5rem 0 5rem;
	}
}

@media screen and (max-width: 48em) {
	
	.skills {
		display: block;
	}
	
	.skills .ce_text {
		margin: 0 0 10rem;
		padding: 0 4% 2rem;
		width: 100%;
	}
	
	.skills h2 {
		font-size: 2.4rem;
	}
	
	.skills p {
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 36em) {

	.skills figure {
		margin: -4rem 0 2rem;
	}
	
	.skills img  {
		width: 8rem;
	}
	
	.skills h2 {
		font-size: 2.2rem;
	}
	
	.skills p {
		font-size: 1.6rem;
	}
}





.ce_accordion {
	margin: 0 0 3rem;
}

.ui-accordion-header {
	position: relative;
	padding: 3.3rem 2rem;
	border-radius: 1rem;
	font-size: 2.1rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	cursor: pointer;
	background: var(--color-primary);
}

.ui-accordion-header-active {
	border-radius: 1rem 1rem 0 0;
}

.ui-accordion-header::after {
	content: "+";
	display: block;
	position: absolute;
	bottom: -1.6rem;
	left: 50%;
	transform: translateX(-50%);
	width: 3.2rem;
	height: 3.2rem;
	line-height: 2.6rem;
	border: 1px solid #4b4f4c;
	border-radius: 100%;
	font-weight: 400;
	text-align: center;
	color: var(--color-text);
	background: #fff;
}

.ui-accordion-header-active::after {
	content: "-";
}

.ui-accordion-content {
	padding: 3rem 3rem 2rem;
	border-radius: 0 0 1rem 1rem;
	line-height: 1.7;
	text-align: center;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 0 20px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.1);
	background: #fff;
}

.ui-accordion-content p + p > a {
	display: inline-block;
	padding: 1.2rem 4rem;
	border-radius: 3.5rem;
	border: 1px solid var(--color-text);
	font-weight: 700;
	color: inherit;
}

.ui-accordion-content p + p > a:hover {
	color: #fff;
	background: var(--color-text);
	
}


@media screen and (max-width: 48em) {
	
	.ui-accordion-header {
		position: relative;
		padding: 2.5rem 1.5rem;
		font-size: 1.9rem;
	}
	
	.ui-accordion-content {
		font-size: 1.6rem;
	}
}








.job {
	overflow: hidden;
	margin: 3rem 0;
	padding: 0 8% 3rem;
	border-radius: 1rem;
	font-size: 2.1rem;
	line-height: 3rem;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 0 20px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.1);
	background: #fff;
}

.job h3 {
	margin: 0 -10% 4rem;
	padding: 3.3rem 2rem;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	cursor: pointer;
	background: var(--color-primary);
}

.job ul {
	margin: -1rem 0 3.5rem 1.7rem;
}

.job p + p > a {
	display: block;
	margin: 4rem 0 0;
	padding: 1.5rem 3.5rem;
	border-radius: 3.5rem;
	border: 1px solid var(--color-text);
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	color: inherit;
}

.job p + p > a:hover {
	color: #fff;
	background: var(--color-text);
}

@media screen and (max-width: 70em) {
	
	.job {
		font-size: 1.9rem;
	}
}

@media screen and (max-width: 899px) {
	
	.job {
		padding: 0 5% 3rem;
		font-size: 1.9rem;
	}
}

@media screen and (max-width: 48em) {
	
	.job {
		font-size: 1.9rem;
	}
	
	.job h3 {
		padding: 2.5rem 1.5rem;
		font-size: 2.2rem;
	}
}

@media screen and (max-width: 36em) {
	
	.job {
		font-size: 1.7rem;
	}
	
	.job h3 {
		font-size: 2rem;
	}
}








.about {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 10rem 0 12rem;
}

.about .ce_text {
	width: 50%;
	line-height: 1.7;
}

.about .ce_image {
	width: 40%;
}

.about h3 {
	margin: 0 0 1.5em;
	font-size: 2.4rem;
	font-weight: 400;
}

.about img {
	border-radius: 2rem;
}

@media screen and (max-width: 64em) {

	.about {
		display: block;
		margin: 0 0 8rem;
	}

	.about .ce_text {
		width: 100%;
	}

	.about .ce_image{
		width: 100%;
	}
	
	.contactbox + .about {
		margin: 8rem 0;
	}
}







.partners {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 6rem 0 10rem;
}

.partners .entry {
	width: 46%;
	border-radius: 1rem;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 0 20px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.1);
	background: #fff;
}

.partners h3 {
	margin: 0;
	padding: 3.3rem 2rem;
	border-radius: 1rem 1rem 0 0;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	cursor: pointer;
	background: var(--color-primary);
}

.partners .content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 4rem 8%;
}

.partners .text {
	width: 60%;
}

.partners .logo {
	width: 30%;
}

.partners .row {
	position: relative;
	display: block;
	margin: 0 0 1rem;
	padding: 0 0 0 3rem;
	word-wrap:break-word;
}

.partners p {
	margin: 0;
}

.partners a {
	color: inherit;
}

.partners a:hover {
	color: var(--color-primary);
}

.partners .text .icon {
	display: block;
	position: absolute;
	left: 0;
	top: 0.3rem;
	background: url("../../img/sprite.png");
}

.partners .text .icon.marker {
	width: 1.4rem;
	height: 2.2rem;
	background-position: 0 -17rem;
}
.partners .text .icon.phone {
	top: 0.5rem;
	width: 1.8rem;
	height: 1.8rem;
	background-position: -2rem -17rem;
}
.partners .text .icon.mail {
	top: 0.7rem;
	width: 1.8rem;
	height: 1.3rem;
	background-position: -5rem -17rem;
}
.partners .text .icon.link {
	width: 2rem;
	height: 2rem;
	background-position: -8rem -17rem;
}

@media screen and (max-width: 75em) {
	
	.partners h3 {
		font-size: 2rem;
	}
}

@media screen and (max-width: 54em) {
	
	.partners {
		display: block;
	}
	
	.partners .entry {
		margin: 0 0 4rem;
		width: 100%;
	}
	
	.partners h3 {
		font-size: 2.4rem;
	}

	.partners .content {
		padding: 4rem 5%;
	}
}