/* Fonts */

/* noto-sans-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 200;
  src: url('../webfonts/noto-sans-v32-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../webfonts/noto-sans-v32-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/noto-sans-v32-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 400;
  src: url('../webfonts/noto-sans-v32-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../webfonts/noto-sans-v32-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../webfonts/noto-sans-v32-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/noto-sans-v32-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 900;
  src: url('../webfonts/noto-sans-v32-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* Defaults */

:root {
	--ci_color: #5ab4b4;
	--grey: #3c4b5a;
}

* {
	scroll-behavior: smooth;
}

*:focus {
	outline: none;
}

body {
	font-family: 'Noto Sans', sans-serif;
	color: var(--grey);
}

@media only screen and (min-width: 990px) {
	header .container {
		max-width: 1150px;
	}

	.container {
		max-width: 980px;
	}	
}

.loadMoreBtn,
.loadMoreBtn:hover {
	margin: auto;
	background-color: var(--ci_color);
	color: #ffffff;
	padding: 10px 30px;
	text-decoration: none;
	border-radius: 0;
}

main a {
	color: var(--ci_color);
}

/* Header */

.mobile_nav_open,
.mobile_nav_close {
	font-size: 25px;
	cursor: pointer;
	display: none;
}

header {
	padding: 30px 0;
	background-color: #ffffff;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

header .row {
	justify-content: space-between;
	padding: 0 5px;
}

header .logo img {
	height: 90px;
	max-width: 100%;
	object-fit: contain;
}

header .navigation ul {
	margin: 0;
	padding: 0;
}

header .navigation ul li {
	list-style: none;
	display: inline-block;
	position: relative;
	margin: 0 10px;
}

header .navigation ul li a {
	color: var(--ci_color);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
	font-size: 14px;
	display: block;
	padding: 10px 0;
	transition: all 0.3s;
}

header .navigation ul > li > a:hover,
header .navigation ul > li.current_page_item > a,
header .navigation ul > li.current_page_ancestor > a {
	color: #3c4b5a;
	text-decoration: none;
}

header .navigation ul li ul {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--ci_color);
	display: none;
	padding: 10px 15px;
	z-index: 999;
}

header .navigation ul li:hover ul {
	display: block;
}

header .navigation ul li ul li {
	display: block;
	padding: 5px 0;
	margin: 0;
}

header .navigation ul li ul li a {
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	text-transform: initial;
	letter-spacing: 1.5px;
}

header .navigation ul li ul li a:hover,
header .navigation ul li ul li.current_page_item a,
header .navigation ul li ul li.current_page_ancestor a {
	text-decoration: underline;
	color: #ffffff;
}

/* Hero */

section.hero img {
	width: 100%;
}

section.hero .hero_inner {
	position: relative;
	padding-top: 115px;
}

section.hero .hero_text {
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--grey);
	font-size: 60px;
	line-height: 1.06;
	font-weight: 200;
	padding: 50px 30px;
	border-bottom-right-radius: 30px;
	text-transform: uppercase;
	max-width: 50%;
	color: var(--ci_color);
	letter-spacing: 8px;
}

/* Entry */

section.entry img {
	width: 100%;
}

section.entry .entry_inner {
	position: relative;
}

section.entry .entry_inner {
	padding-top: 115px;
}

section.entry .entry_text {
	background-color: #c3dce1;
	padding: 50px;
	font-weight: 300;
	max-width: 66.66%;
}

section.entry .entry_text {
	font-size: 16px;
	line-height: 1.56;
}

section.entry .entry_text h1 {
	font-size: 77px;
	text-transform: uppercase;
	letter-spacing: 8px;
	line-height: 1.06;
	font-weight: 300;
}

section.entry .entry_text h2 {
	font-size: 45px;
	text-transform: uppercase;
	letter-spacing: 2.7px;
	line-height: 1.06;
	font-weight: 300;
}

section.entry .entry_text h3 {
	font-size: 25px;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1.06;
	font-weight: 300;
}

section.entry .entry_text a {
	color: var(--ci_color);
	text-decoration: underline;
}

section.entry .entry_text a.entrybutton {
	position: absolute;
	bottom: 0;
	right: 0;
	display: inline-block;
	padding: 10px 30px;
	background-color: var(--ci_color);
	color: #ffffff;
	text-decoration: none;
}

section.entry .entry_text.top_left,
section.entry .entry_text.top_right {
	position: absolute;
	top: 0;
}

section.entry .entry_text.top_left {
	left: 0;
	border-top-left-radius: 30px;
}

section.entry .entry_text.top_right {
	right: 0;
	border-top-right-radius: 30px;
}

section.entry .entry_inner.text-bottom_left img,
section.entry .entry_inner.text-bottom_right img {
	position: absolute;
	top: 0;
	left: 0;
	max-height: 100%;
}

section.entry .entry_inner.text-bottom_left .entrystringslider_image,
section.entry .entry_inner.text-bottom_right .entrystringslider_image {
	position: absolute;
	top: 0;
	left: 0;
	max-height: 100%;
	width: 100%;
}

section.entry .entry_inner.text-bottom_left .entrystringslider_image img,
section.entry .entry_inner.text-bottom_right .entrystringslider_image img {
	position: initial;
	max-height: 100%;
}

section.entry .entry_inner.text-bottom_left .entry_text,
section.entry .entry_inner.text-bottom_right .entry_text {
	position: relative;
	z-index: 666;
}

section.entry .entry_inner.text-bottom_right .entry_text {
	margin-left: auto;
}

section.entry .entrystringslider_slider {
	padding: 50px 10px 50px 0;
	max-width: 33.33%;
}

section.entry .entrystringslider_slider strong,
section.entry .entrystringslider_slider span {
	display: block;
	color: var(--ci_color);
}

section.entry .entrystringslider_slider strong {
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 30px;
}

section.entry .entrystringslider_slider span {
	line-height: 1.2;
	font-size: 25px;
	margin-bottom: 30px;
	font-weight: 300;
}

section.entry .entrystringslider_arrow {
	height: 20px;
	width: 50px;
	background-image: url('/wp-content/themes/wirksam/assets/img/entrystringslider_arrow_grey.svg');
	background-size: contain;
	background-position: top left;
	background-repeat: no-repeat;
	cursor: pointer;
}

/* Columnslider */

section.columnslider .textcolumn {
	font-weight: 300;
}

section.columnslider .imagecolumn img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.columnslider .columnslider_wrap {
	padding: 0 75px;
	position: relative;
}

section.columnslider .entrystringslider_arrow {
	height: 20px;
	width: 50px;
	background-image: url('/wp-content/themes/wirksam/assets/img/entrystringslider_arrow_grey.svg');
	background-size: contain;
	background-position: top left;
	background-repeat: no-repeat;
	cursor: pointer;
	position: absolute;
	top: 150px;
	z-index: 888;
}

section.columnslider .entrystringslider_arrow.prevArrow {
	left: 0;
	transform: rotate(180deg);
}

section.columnslider .entrystringslider_arrow.nextArrow {
	right: 0;
}

/* Teaser */

section.teaser .teaser_single {
	width: 20%;
	padding: 0 5px;
	margin-bottom: 30px;
}

section.teaser .teaser_single img {
	width: 100%;
	margin-bottom: 10px;
}

section.teaser .teaser_single a {
	color: var(--grey);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.1;
	text-decoration: none;
}

/* Logoteaser */

section.logoteaser .logoteaser_single {
	margin-bottom: 10px;
}

section.logoteaser .logoteaser_image > img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

section.logoteaser .logoteaser_image {
	position: relative;
}

section.logoteaser .logoteaser_image .logoteaser_logo {
	position: absolute;
	width: 175px;
	height: 75px;
	max-width: 100%;
	top: 0;
	left: 0;
	background-color: #ffffff;
}

section.logoteaser .logoteaser_image .logoteaser_logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	padding: 15px;
}

section.logoteaser a {
	float: right;
	display: inline-block;
	color: #fff;
	background-color: var(--grey);
	padding: 10px 30px;
	text-decoration: none;
	max-width: 100%;
	font-weight: 300;
}

/* Partner */

section.partner {
	font-weight: 300;
}

section.partner .partner_intro {
	margin-bottom: 30px;
	overflow: hidden;
}

section.partner .partner_intro img {
	height: 50px;
	object-fit: contain;
	max-width: 100%;
}

section.partner .partner_logo {
	position: relative;
	display: inline-block;
}

section.partner .partner_logo::after {
	position: absolute;
	left: calc(100% + 30px);
	bottom: 0;
	width: 9999px;
	content: '';
	background-color: var(--ci_color);
	height: 1px;
}

section.partner a.partner_text-button {
	display: inline-block;
	padding: 10px 30px;
	color: #ffffff;
	background-color: var(--ci_color);
	text-decoration: none;
	margin-top: 15px;
}

/* Text */

section.text {
	font-size: 16px;
	line-height: 1.56;
	font-weight: 300;
}

section.text h1,
section.columntext h1,
section.partner h1,
section.columnslider h1 {
	font-size: 77px;
	line-height: 1.06;
	font-weight: 300;
	color: var(--ci_color);
}

section.text h2,
section.columntext h2,
section.partner h2,
section.columnslider h2 {
	font-size: 45px;
	line-height: 1.06;
	font-weight: 300;
	color: var(--ci_color);
}

section.text h3,
section.columntext h3,
section.partner h3,
section.columnslider h3 {
	font-size: 25px;
	line-height: 1.06;
	font-weight: 300;
}

section.text a {
	color: var(--ci_color);
}

section.columntext .textcolumn:first-child {
	padding-right: 25px;
}

section.columntext .textcolumn:last-child {
	padding-left: 25px;
}

section.columntext .textcolumn_inner {
	background-color: #f5f5f5;
	padding: 50px;
	font-weight: 300;
}

/* Grid */

section.grid img {
	max-width: 100%;
}

section.grid .gridcell_1 {
	padding: 0 0 0 5px;
}

section.grid .textbox_1 {
	background-color: #c3dce1;
	position: relative;
	padding: 30px;
	min-height: 405px;
	border: 5px solid #ffffff;
	border-left: none;
	border-top: none;
	font-weight: 300;
	border-top-left-radius: 30px;
}

section.grid .textbox_1 span.textboxtitle {
	font-size: 45px;
	line-height: 1.06;
	letter-spacing: 2.7px;
	display: block;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-weight: 300;
}

section.grid .textbox_1 a {
	color: var(--grey);
	position: absolute;
	right: 20px;
	bottom: 20px;
	font-size: 14px;
	line-height: 1;
	font-weight: 300;
}

section.grid .gridcell_1 img {
	border: 5px solid #ffffff;
	border-left: none;
}

section.grid .gridcell_2 {
	padding: 0 5px 0 0;
}

section.grid .gridcell_2 img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc(100% - 5px);
	border: 5px solid #ffffff;
	border-right: none;
}

section.grid .gridcell_3 {
	padding: 0 0 0 5px;
}

section.grid .gridcell_3 img {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 5px);
	height: 100%;
	object-fit: cover;
	border: 5px solid #ffffff;
	border-left: none;
	border-bottom: none;
}

section.grid .gridcell_4 {
	padding: 0;
}

section.grid .gridcell_4 img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 5px solid #ffffff;
	border-bottom: none;
}

section.grid .textbox_2 {
	border: 5px solid #ffffff;
	border-bottom: none;
	border-right: none;
	font-weight: 300;
}

section.grid .textbox_2 span.textboxtitle {
	font-size: 45px;
	line-height: 1.06;
	letter-spacing: 2.7px;
	display: block;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-weight: 300;
}

section.grid .textbox_2 .textbox_2_inner {
	background-color: #f5f5f5;
	padding: 30px;
	border-bottom-right-radius: 30px;
}

section.grid .textbox_2 ul {
	margin: 0 0 0 25px;
	padding: 0;
	font-size: 13px;
}

section.grid .textbox_2 ul li {
	margin-bottom: 10px;
}

section.grid .gridcell_5 {
	padding: 0 5px 0 0;
}

/* Projects */

section.projectslider {
	background-color: var(--grey);
	padding: 50px 0;
}

section.projectslider .intro {
	font-size: 16px;
}

section.projectslider .intro strong {
	font-weight: 400;
	color: var(--ci_color);
}

section.projectslider .intro h2 {
	font-size: 45px;
	line-height: 1.06;
	letter-spacing: 2.7px;
	text-transform: uppercase;
	margin-bottom: 15px;
	font-weight: 400;
}

section.projectslider .intro .row:first-child .col-md-6:last-child {
	text-align: right;
}

section.projectslider .intro .row:first-child .col-md-6:last-child a {
	color: var(--ci_color);
}

section.projectslider .slides_wrap {
	margin: 0 -5px;
}

section.projectslider .project_single {
	padding: 5px;
}

.project_single {
	margin-bottom: 10px;
}

.project_single img {
	width: 100%;
}

.project_single-inner {
	position: relative;
	display: block;
}

.project_single-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	color: #ffffff;
	font-size: 16px;
	padding: 30px;
}

.project_single-overlay strong {
	display: block;
	font-size: 25px;
	font-weight: 400;
	margin-bottom: 5px;
}

section.projectslider .prevArrow,
section.projectslider .nextArrow {
	top: 50%;
	z-index: 999;
	color: #ffffff;
	position: absolute;
	cursor: pointer;
	font-size: 25px;
	text-shadow: 3px 3px #363636;
	text-shadow: 3px 3px #36363699;
}

section.projectslider .prevArrow {
	left: 35px;
}

section.projectslider .nextArrow {
	right: 35px;
}

/* Testimonials */

section.testimonials h2 {
	font-size: 45px;
	line-height: 1.06;
	margin-bottom: 50px;
	font-weight: 300;
	color: var(--ci_color);
}

section.testimonials .testimonial_single {
	margin-bottom: 30px;
}

section.testimonials .testimonial_single img {
	width: 100%;
}

section.testimonials .testimonial_content {
	background-color: #ffffff;
	width: calc(100% - 15px);
	padding: 50px 30px 15px 15px;
	position: relative;
	top: -75px;
	border-top-right-radius: 30px;
}

section.testimonials .testimonial_content::before {
	color: var(--ci_color);
	content: "\f10d";
	position: absolute;
	top: -20px;
	left: 20px;
	font-size: 40px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

section.testimonials .testimonial_content span {
	display: block;
}

section.testimonials .testimonial_content .quote {
	margin-bottom: 30px;
	font-size: 16px;
	font-weight: 300;
}

section.testimonials .testimonial_content .name {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 16px;
	color: var(--ci_color);
}

section.testimonials .testimonial_content .position {
	font-weight: 300;
	font-size: 16px;
}

/* CTA */

section.cta h2 {
	font-size: 45px;
	line-height: 1.06;
	color: var(--ci_color);
	margin-bottom: 50px;
	font-weight: 300;
}

section.cta .formhalf {
	padding-right: 30px;
	border-right: 1px solid var(--ci_color);
	font-weight: 300;
}

section.cta .texthalf {
	padding-left: 30px;
	font-size: 16px;
	line-height: 1.56;
	font-weight: 300;
}

section.cta .logos {
	margin: 50px 0 0 0;
	padding: 0;
	display: flex;
}

section.cta .logos li {
	list-style: none;
	display: inline-block;
	width: 33.33%;
	padding-right: 20px;
}

section.cta .logos li img {
	width: 100%;
}

/* Table */

section.table {
	font-size: 16px;
	font-weight: 300;
	color: var(--grey);
}

section.table .row {
	border-bottom: 2px solid #ffffff;
	background-color: #f5f5f5;
	padding: 15px;
	align-items: center;
}

section.table .row .col-lg-6:first-child {
	padding-right: 25px;
}

section.table .row .col-lg-6:last-child {
	padding-left: 25px;
}

section.table .row a {
	color: var(--ci_color);
}

/* CTA Button */

section.ctabutton {
	padding: 100px 0;
	background-image: url('/wp-content/themes/wirksam/assets/img/ctabutton_background.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center; 
	color: #ffffff;
	text-align: center;
	position: relative;
}

section.ctabutton::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: rgba(0,0,0,0.4);
}

section.ctabutton strong {
	text-transform: uppercase;
	font-size: 25px;
	letter-spacing: 2px;
	line-height: 1.06;
	font-weight: 400;
	margin-bottom: 30px;
	display: block;
	position: relative;
	z-index: 666;
}

section.ctabutton a {
	background-color: #ffffff;
	color: var(--ci_color);
	border: none;
	border-radius: 0;
	float: none;
	padding: 10px 30px;
	display: inline-block;
	margin: auto;
	text-decoration: none;
	position: relative;
	z-index: 666;
}

/* Newsletter */

section.newsletter {
	padding: 100px 0;
	background-color: var(--grey);
	color: #ffffff;
	text-align: center;
	position: relative;
	font-weight: 300;
}

section.newsletter::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: rgba(0,0,0,0.4);
}

section.newsletter strong {
	font-weight: 300;
	font-size: 25px;
	display: block;
	margin-bottom: 15px;
	z-index: 666;
	position: relative;
}

section.newsletter .wpcf7-form {
	display: block;
	margin: auto;
	width: 500px;
	max-width: 100%;
	position: relative;
	z-index: 666;
}

section.newsletter .wpcf7-form input,
section.newsletter .wpcf7-form textarea {
	border-color: #ffffff;
	text-align: center;
	color: #ffffff;
}

section.newsletter .wpcf7-checkbox label {
	display: flex;
	align-items: flex-start;
}

section.newsletter .wpcf7-form input[type="checkbox"] + .wpcf7-list-item-label {
	text-align: left;
	font-size: 11px;
	display: inline-block;
	width: calc(100% - 30px);
}

section.newsletter .wpcf7-form input[type="submit"] {
	background-color: var(--ci_color);
	color: #ffffff;
	border: none;
	border-radius: 0;
	float: none;
	padding: 10px 30px;
	display: block;
	margin: auto;
}

/* Map */

.interactive_map svg {
	width: 600px;
    display: block;
    margin: auto;
    max-width: 100%;
}

.interactive_map svg a {
	transition: all 0.3s;
}

.interactive_map svg a:hover {
	opacity: 0.8;
}

.interactive_map .location .logo {
	display: none;
}

/* Downloads */

section.downloads .download_single {
	margin-bottom: 10px;
}

section.downloads .download_inner {
	padding: 30px;
	background-color: var(--ci_color);
	position: relative;
	border-bottom-right-radius: 30px;
	color: #ffffff;
}

section.downloads .download_inner strong {
	display: block;
	margin-bottom: 50px;
	font-size: 16px;
	line-height: 1.56;
	font-weight: 300;
}

section.downloads .download_inner a {
	position: relative;
	color: var(--grey);
	padding: 10px 30px 10px 60px;
	display: inline-block;
	background-color: #ffffff;
	text-decoration: none;
}

section.downloads .download_inner a::before {
	color: var(--grey);
	content: "\f063";
	position: absolute;
	top: 50%;
	left: 20px;
	font-size: 20px;
	margin-top: -15px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

/* Events */

.events-page {
	padding: 50px 0 80px 0;
}

.events-page .entry {
	margin-bottom: 80px;
}

section.eventteaser .intro {
	font-size: 16px;
}

section.eventteaser .intro h2 {
	font-size: 45px;
	line-height: 1.06;
	font-weight: 300;
	margin-bottom: 15px;
	color: var(--ci_color);
}

section.eventteaser .intro .row:first-child .col-md-6:last-child {
	text-align: right;
}

section.eventteaser .intro .row:first-child .col-md-6:last-child a {
	color: var(--ci_color);
	font-weight: 300;
}

.event_single {
	margin-bottom: 30px;
}

.event_single-image img {
	width: 100%;
	height: 225px;
	object-fit: cover;
}

.event_single-info {
	padding: 20px 0;
	margin-bottom: 30px;
	font-weight: 300;
	border-bottom: 1px solid var(--ci_color);
}

.event_single-info strong {
	font-size: 16px;
	color: var(--ci_color);
	text-transform: uppercase;
	font-weight: 600;
	line-height: 1.35;
	display: block;
	min-height: 65px;
}

.event_single-link {
	text-align: left;
}

.event_single-link a {
	background-color: var(--grey);
	color: #ffffff;
	display: inline-block;
	padding: 10px 30px;
	text-decoration: none;
}

.events_details {
	padding: 20px;
	margin-bottom: 30px;
}

.events_details h1 {
	font-size: 45px;
	line-height: 1.06;
	font-weight: 300;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--ci_color);
	color: var(--ci_color);
}

.events_details-intro {
	margin-bottom: 30px;
}

.further_events {
	margin-top: 80px;
}

.further_events h2 {
	font-size: 45px;
	color: var(--ci_color);
	line-height: 1.06;
	font-weight: 300;
	margin-bottom: 30px;
}

/* Schedule */

.schedule_entry {
	padding: 15px 0;
	border-bottom: 1px solid #000000;
}

.schedule_entry span,
.schedule_entry strong {
	display: block;
}

.schedule_entry:last-child {
	border: none;
}

/* Calls */

.call_intro {
	padding: 30px;
	background-color: rgba(195, 220, 225, 0.15);
	margin-bottom: 30px;
}

.call_intro strong,
.call_intro span {
	display: block;
}

.call_intro a {
	background-color: var(--grey);
	display: inline-block;
	text-decoration: none;
	color: #ffffff;
	float: right;
	padding: 10px 30px;
}

.call_single {
	padding-bottom: 30px;
	margin-bottom: 30px;
	font-weight: 300;
	border-bottom: 2px solid var(--ci_color);
}

/* LinkedIn */

.linkedin iframe {
	width: 100%;
}

.linkedin_single {
	margin-bottom: 15px;
}

/* Team */

section.team img {
	width: 100%;
	margin-bottom: 28px;
}

.teammember_info strong,
.teammember_info span {
	display: block;
}

.teammember_info strong {
	color: var(--ci_color);
	font-weight: 600;
}

.teammember_info span {
	font-weight: 300;
}

.teammember_info a {
	color: initial;
	text-decoration: none;
}

.teammember_single {
	margin-bottom: 30px;
}

/* Accordion */

.accordion_single {
	margin-bottom: 20px;
}

.accordion_headline {
	color: #5ab4b4;
	text-transform: uppercase;
	padding: 10px 36px 10px 0;
	border-bottom: 1px solid #5ab4b4;
	position: relative;
	cursor: pointer;
}

.accordion_headline::after {
	content: '+';
	width: 26px;
	height: 26px;
	position: absolute;
	right: 0;
	top: 8px;
	text-align: center;
	color: #ffffff;
	background-color: var(--grey);
}

.accordion_single.active .accordion_headline {
	color: #3c4b5a;
	border: none;
}

.accordion_single.active .accordion_headline::after {
	content: '-';
}

.accordion_content {
	display: none;
	padding: 10px 0;
}

.accordion_single.active .accordion_content {
	display: block;
}

.accordion_content_module {
	margin-bottom: 20px;
}

.accordion_textmodule {
	max-width: 660px;
}

.accordion_content_module img {
	max-width: 100%;
	height: auto;
}

/* News */

.news-page {
	padding: 50px 0 80px 0;
}

section.newsteaser .intro {
	font-size: 16px;
}

section.newsteaser .intro h2 {
	font-size: 45px;
	line-height: 1.06;
	margin-bottom: 15px;
	font-weight: 300;
	color: var(--ci_color);
}

section.newsteaser .intro .row:first-child .col-md-6:last-child {
	text-align: right;
}

section.newsteaser .intro .row:first-child .col-md-6:last-child a {
	color: var(--ci_color);
	font-weight: 300;
}

.news_single {
	margin-bottom: 30px;
}

.news_single-image img {
	width: 100%;
	height: 225px;
	object-fit: cover;
}

.news_single-info {
	padding: 20px 0;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--ci_color);
	font-weight: 300;
}

.news_single-info strong {
	font-size: 16px;
	color: var(--ci_color);
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.35;
	display: block;
	min-height: 65px;
}

.news_single-link {
	text-align: left;
}

.news_single-link a {
	background-color: var(--grey);
	color: #ffffff;
	display: inline-block;
	padding: 10px 30px;
	text-decoration: none;
}

.news_details {
	padding: 50px 0 80px 0;
}

.news_details h1 {
	color: var(--ci_color);
	font-size: 45px;
	line-height: 1.06;
	font-weight: 300;
}

.news_details-intro img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	margin: 30px 0 50px 0;
}

.further_news {
	margin-top: 80px;
}

.further_news h2 {
	font-size: 45px;
	line-height: 1.06;
	font-weight: 300;
	color: var(--ci_color);
	margin-bottom: 30px;
}

.news_categories {
	margin-bottom: 30px;
}

.news_categories li {
	display: inline-block;
	list-style: none;
	margin-right: 10px;
	margin-bottom: 10px;
}

.news_categories li a {
	display: block;
	padding: 10px 30px;
	text-decoration: none;
	color: #ffffff;
	background-color: var(--ci_color);
	border: 1px solid var(--ci_color);
}

.news_categories li.current-cat a {
	background-color: #ffffff;
	color: var(--ci_color);
}

/* Image */

section.image img {
	width: 100%;
	height: auto;
}

/* Logowall */

section.logowall h3 {
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1.06;
	font-weight: 600;
	margin-bottom: 30px;
	color: var(--ci_color);
}

section.logowall ul {
	margin: 0;
	padding: 0;
}

section.logowall ul li {
	list-style: none;
	display: inline-block;
	margin-right: 20px;
}

section.logowall ul li img {
	height: 60px;
	max-width: 100%;
	object-fit: contain;
}

/* Form */

.wpcf7-form {
	max-width: 500px;
}

.wpcf7-form p {
	margin: 0;
}

.wpcf7-form-control-wrap {
	display: block;
	width: 100%;
	margin-bottom: 15px;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
	display: block;
	width: 100%;
	background: none;
	border: none;
	border-bottom: 1px solid var(--ci_color);
	padding: 10px 0;
	font-weight: 300;
	color: var(--grey);
}

.wpcf7-form-control-wrap textarea {
	height: 150px;
}

.wpcf7-form-control-wrap input::placeholder,
.wpcf7-form-control-wrap textarea::placeholder {
	opacity: 1;
}

.wpcf7-form-control-wrap select {
	background: none;
	border: none;
	border-bottom: 1px solid var(--ci_color);
	padding: 10px 10px 10px 0;
	font-weight: 300;
	color: var(--grey);
}

.wpcf7-list-item {
	margin: 0;
}

.wpcf7-form-control-wrap input[type="checkbox"] {
	width: auto;
	display: inline-block;
	margin-right: 10px;
}

.wpcf7-form input[type="checkbox"] + .wpcf7-list-item-label {
	font-weight: 300;
}

.wpcf7-form input[type="submit"] {
	background-color: var(--ci_color);
	color: #ffffff;
	border: none;
	border-radius: 0;
	float: right;
	padding: 10px 30px;
}

/* Footer */

footer {
	background-color: #ffffff;
}

footer .footer-top {
	background-color: rgba(195, 220, 225, 0.15);
	padding: 50px 0;
}

footer .footer-top .row {
	align-items: center;
}

footer img {
	height: 120px;
	max-width: 33.33%;
	object-fit: contain;
	padding-right: 20px;
}

footer ul:not(.social) {
	margin: 0;
	padding: 0;
}

footer ul:not(.social) ul {
	display: none;
}

footer ul:not(.social) li {
	list-style: none;
	display: inline-block;
	padding-right: 20px;
	width: 32%;
}

footer ul:not(.social) li a {
	color: #000000;
	font-size: 16px;
	transition: all 0.3s;
	font-weight: 300;
}

footer ul:not(.social) li a:hover,
footer ul:not(.social) li.current_page_item a {
	color: var(--ci_color);
	text-decoration: none;
}

footer ul.social {
	margin: 0;
	padding: 0;
}

footer ul.social li {
	display: inline-block;
	list-style: none;
	margin-right: 10px;
}

footer ul.social li a {
	font-size: 20px;
	color: #ffffff;
	background-color: var(--ci_color);
	width: 40px;
	height: 40px;
	display: block;
	text-align: center;
	line-height: 40px;
	border-radius: 100%;
}

footer .footer-bottom {
	font-size: 11px;
	font-weight: 300;
	padding: 25px 0;
}

/* Responsive */

@media only screen and (max-width: 1115px) { 

	.mobile_nav_open,
	.mobile_nav_close {
		display: block;
	}

	.mobile_nav_close {
		position: absolute;
		top: 20px;
		right: 20px;
		font-size: 40px;
	}

	header .navigation {
		display: none;
		position: fixed;
		height: 100vh;
		left: 0;
		width: 100%;
		max-width: 100%;
		z-index: 999;
		background-color: #ffffff;
	}

	header .navigation {
		top: 0;
		align-items: center;
	}

	header .navigation ul li {
		display: block;
		width: 100%;
	}

	header .navigation ul li ul {
		position: relative;
		width: 100%;
		display: block;
	}

}

@media only screen and (max-width: 991px) {

	section.hero .hero_text {
		max-width: 66.66%;
	}

	footer .footercolumn {
		margin-bottom: 20px;
	}

	section.cta .formhalf {
		padding-right: 5px;
		border-right: none;
		margin-bottom: 30px;
	}

	section.cta .texthalf {
		padding-left: 5px;
	}

	section.teaser .teaser_single {
		width: 33.33%;
	}

	.call_introcol {
		margin-bottom: 15px;
	}

	section.entry .entry_text {
		max-width: 100%;
	}

	section.entry .entry_inner.text-bottom_left .entrystringslider_image, 
	section.entry .entry_inner.text-bottom_right .entrystringslider_image {
		width: 100%;
		position: initial;
	}

	section.entry .entry_inner {
		padding-top: 0;
	}

	section.entry .entry_text.top_left, 
	section.entry .entry_text.top_right {
		position: relative;
	}

	section.columntext .textcolumn:first-child {
		padding-right: 5px;
		margin-bottom: 30px;
	}

	section.columntext .textcolumn:last-child {
		padding-left: 5px;
	}

	section.entry .entry_inner.text-bottom_left img, 
	section.entry .entry_inner.text-bottom_right img {
		position: initial;
	}

	footer ul.social {
		margin-bottom: 15px;
	}

	footer img {
		margin-bottom: 15px;
	}

	section.table .row .col-lg-6:first-child {
		padding-right: 5px;
	}

	section.table .row .col-lg-6:last-child {
		padding-left: 5px;
	}

	footer ul:not(.social) li {
		width: 49%;
	}

}

@media only screen and (max-width: 767px) {

	section.hero .hero_text {
		font-size: 47px;
		padding: 25px;
	}

	section.grid .gridcell_2 img {
		position: initial;
	}

	section.newsteaser .intro,
	section.eventteaser .intro,
	section.projectslider .intro {
		margin-bottom: 20px
	}

	section.newsteaser .intro h2,
	section.eventteaser .intro h2,
	section.projectslider .intro h2 {
		margin-bottom: 10px;
	}

	section.newsteaser .intro .row:first-child .col-md-6:last-child,
	section.eventteaser .intro .row:first-child .col-md-6:last-child,
	section.projectslider .intro .row:first-child .col-md-6:last-child {
		text-align: left;
	}

	section.teaser .teaser_single {
		width: 50%;
	}

	.call_intro a {
		float: none;
	}

	section.entry .entrystringslider_slider	{
		max-width: 50%;
	}

}

@media only screen and (max-width: 565px) {

	section.hero .hero_text {
		max-width: 100%;
	}

	section.newsteaser .intro h2,
	section.eventteaser .intro h2,
	section.projectslider .intro h2,
	section.testimonials h2 {
		font-size: 25px;
		letter-spacing: 2px;
		line-height: 1.06;
	}

	section.teaser .teaser_single {
		width: 100%;
	}	

	section.entry .entrystringslider_slider	{
		max-width: 100%;
	}

	section.entry .entry_text {
		padding: 25px;
	}

	section.columntext .textcolumn_inner {
		padding: 25px;
	}

	footer ul:not(.social) li {
		width: 100%;
	}

}