/* Variables */

:root {
	--container-fluid-small-width: 1920px;
	--container-vertical-padding: 50px;

	--primary-font: 'Open Sans';
	--secondary-font: 'Open Sans';

	--primary-color: #4A80FF;
	--secondary-color: #4A80FF;
    --grey-light: #DDDDDC;
    --grey-dark: #515150;

	--p-font-size: 20px;
	--p-font-weight: 400;
	--p-line-height: 1.6;
	--p-color: #000000;
	--textwrap-gap: 30px;

	--h1-font-size: 100px;
	--h1-font-weight: 600;
	--h2-font-size: 75px;
	--h2-font-weight: 600;
	--h3-font-size: 50px;
	--h3-font-weight: 600;

	--ul-border-left: 2px solid var(--primary-color);

	--slider-background-color: rgba(0,0,0,0.6);
	--slider-text-color: #ffffff;
	--slider-text-align: left;
	--slider-content-align: center;
	--slider-headline-font-size: 50px;
	--slider-subline-font-size: 30px;

	--button-background: #4A80FF;
	--button-color: #ffffff;
	--button-padding: 5px 25px;
	--button-font-size: 20px;
	--button-border-radius: 20px;
	--button-border: none;

	--gallery-gap: 30px;

	--accordion_title-align: center;
	--accordion_title-background: #4A80FF;
	--accordion_title-border-radius: 30px;
	--accordion_title-font-size: 20px;
	--accordion_title-font-weight: 700;
	--accordion_content-padding: 0 30px;
	--accordion_content-border: 2px solid #4A80FF;
	--accordion_content-border-radius: 0 0 30px 30px;
	--accordion_content-border-top: none;

	--teaser-content-padding: 15px;
	--teaser-headline-fontsize: 30px;
	--teaser-headline-fontweight: 600;
	--teaser-headline-textalign: center;
	--teaser-button-align: center;

	--input-borderradius: 0;

	--asp_horizontal-width: 33.33%;
	--asp_name-fontsize: 30px;
	--asp_position-fontsize: 20px;

	--news-width: 33.33%;
	--news_title-fontsize: 30px;
	--news_date-fontsize: 12px;
	--news_excerpt-fontsize: 16px;
}

/* Fonts */

/* open-sans-300 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local(''),
       url('../webfonts/open-sans-v27-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../webfonts/open-sans-v27-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-500 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(''),
       url('../webfonts/open-sans-v27-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../webfonts/open-sans-v27-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(''),
       url('../webfonts/open-sans-v27-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../webfonts/open-sans-v27-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(''),
       url('../webfonts/open-sans-v27-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../webfonts/open-sans-v27-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* Defaults */

body {
	font-family: var(--primary-font, sans-serif);
	color: var(--p-color);
	width: 100vw;
	overflow-x: hidden;
}

a {
	color: var(--primary-color);
	transition: all 0.3s;
}

a:hover {
	text-decoration: none;
	opacity: 0.8;
	color: var(--primary-color);
}

.slide_items .slick-dots {
	position: absolute;
	bottom: -15px;
	left: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	text-align: center;
}

.slide_items .slick-dots li {
	display: inline-block;
	list-style: none;
	margin: 0 10px;
	width: 15px;
	height: 15px;
	background-color: var(--grey-light, #efefef);
	border-radius: 100%;
	cursor: pointer;
}

.slide_items .slick-dots li button {
	display: none;
}

.slide_items .slick-dots li.slick-active {
	background-color: var(--primary-color, #4A80FF);
}

/* Header

/* Module */

/* Container */

.container-fluid.container-fluid-small {
	max-width: var(--container-fluid-small-width, 1920px);
}

.wrapper.container,
.wrapper.container-fluid {
	padding-top: var(--container-vertical-padding, 50px);
	padding-bottom: var(--container-vertical-padding, 50px);
}

.outer-wrapper.force-white-color {
	color: #ffffff;
}

/* Banner */

section.banner .slide {
	position: relative;
}

section.banner .slide img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

section.banner .slide .slide_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--slider-background-color, rgba(0,0,0,0.6));
	color: var(--slider-text-color, #ffffff);
	text-align: var(--slider-text-align, center);
}

section.banner .slide .slide_overlay .row {
	align-items: var(--slider-content-align, center);
}

section.banner .slide .slide_overlay span {
	display: block;
}

section.banner .slide .slide_overlay span.banner-headline {
	font-size: var(--slider-headline-font-size, 50px);
	font-family: var(--secondary-font, sans-serif);
}

section.banner .slide .slide_overlay span.banner-subline {
	font-size: var(--slider-subline-font-size, 30px);
	font-family: var(--primary-font, sans-serif);
	margin-bottom: 15px;
}

section.banner .slick-dots {
	position: absolute;
	bottom: 15px;
	left: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	text-align: center;
}

section.banner .slick-dots li {
	display: inline-block;
	list-style: none;
	margin: 0 10px;
	width: 15px;
	height: 15px;
	background-color: var(--grey-light, #efefef);
	border-radius: 100%;
	cursor: pointer;
}

section.banner .slick-dots li button {
	display: none;
}

section.banner .slick-dots li.slick-active {
	background-color: var(--primary-color, #4A80FF);
}

section.banner .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 888;
	color: var(--grey-light, #efefef);
	font-size: 40px;
	margin-top: -20px;
	cursor: pointer;
	z-index: 777;
}

section.banner .slick-arrow.fa-chevron-right {
	right: 150px;
}

section.banner .slick-arrow.fa-chevron-left {
	left: 150px;
}

/* Button */

.button,
.wpcf7-submit {
	display: inline-block;
	font-family: var(--primary-font, sans-serif);
	background-color: var(--button-background, #4A80FF);
	color: var(--button-color, #ffffff);
	padding: var(--button-padding, 5px 25px);
	transition: all 0.3s;
	border-radius: var(--button-border-radius, 20px);
	border: var(--button-border, none);
	font-size: var(--button-font-size, 20px);
	text-decoration: none;
}

.button:hover,
.wpcf7-submit:hover {
	opacity: 0.8;
	text-decoration: none;
	color: var(--button-color, #ffffff);
}

/* Text */

.textwrap {
	font-size: var(--p-font-size, 18px);
	font-weight: var(--p-font-weight, 400);
	line-height: var(--p-line-height, 1.2);
	column-gap: var(--textwrap-gap, 30px);
}

.textwrap h1 {
	font-size: var(--h1-font-size, 100px);
	font-weight: var(--h1-font-weight, 600);
}

.textwrap h2 {
	font-size: var(--h2-font-size, 75px);
	font-weight: var(--h2-font-weight, 600);
}

.textwrap h3 {
	font-size: var(--h3-font-size, 50px);
	font-weight: var(--h3-font-weight, 600);
}

/* List */

.textwrap ul {
	border-left: var(--ul-border-left, 2px solid var(--primary-color));
	list-style: none;
}

.textwrap ul li::before {
  content: "\2022";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Gallery */

.gallerywrap {
	column-gap: var(--gallery-gap, var(--textwrap-gap));
}

.gallerywrap.slide_items .imagewrap {
	padding: 0 15px;
}

.gallerywrap .imagewrap {
	margin-bottom: var(--gallery-gap, var(--textwrap-gap));
}

.gallerywrap .imagewrap-inner {
	position: relative;
}

.gallerywrap.square img,
.gallerywrap.rectangle img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.gallerywrap.masonry img {
	width: 100%;
}

.gallerywrap .imagewrap-inner .image_title {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	background-color: var(--grey-dark, #1d1d1b);
	color: #ffffff;
	opacity: 0.9
	font-size: 12px;
	line-height: 1.1;
}

/* Image */

.imagewrap img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	margin-bottom: 30px;
}

/* Imagebanner */

.imagebanner img {
	width: 100%;
	height: 300px;
	object-fit: cover; 
}

/* Team */

.teammember.horizontal .teammember-single {
	width: var(--asp_horizontal-width);
}

.teammember.horizontal .slide_items .teammember-single {
	width: auto;
}

.teammember-single {
	padding: 0 15px;
	margin-bottom: 30px;
}

.teammember-single-inner {
	display: block;
	height: 100%;
}

.teammember-image img {
	width: 200px;
	max-width: 100%;
	margin-bottom: 20px;
}

.teammember-name {
	display: block;
	font-size: var(--asp_name-fontsize);
	line-height: 1.1;
}

.teammember-position {
	display: block;
	font-size: var(--asp_position-fontsize);
	font-style: italic;
	margin-bottom: 10px;
	color: var(--primary-color);
}

.teammember-description {
	font-size: 16px;
}

.teammember-contact {
	padding: 10px 0;
}

.teammember-contact span {
	display: block;
}

.teammember-contact a {
	color: var(--p-color);
	transition: all 0.3s;
}

.teammember-contact i {
	color: var(--primary-color);
}

.teammember-contact a:hover {
	opacity: 0.8;
	text-decoration: none;
}

/* Teaser */

.teaser_single {
	margin-bottom: 30px;
}

.teaser_single img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.teaser_content {
	padding: var(--teaser-content-padding, 15px);
	background-color: var(--grey-light, #efefef);
	height: calc(100% - 200px);
	flex-direction: column;
	display: flex;
	flex-wrap: wrap;
}

.teaser_headline {
	font-size: var(--teaser-headline-fontsize, var(--h3-font-size));
	font-weight: var(--teaser-headline-fontweight, var(--h3-font-weight));
	display: block;
	text-align: var(--teaser-headline-textalign, center);
	margin-bottom: 5px;
}

.teaser_description {
	display: block;
	margin-bottom: 10px;
}

.teaser_buttonwrap {
	text-align: var(--teaser-button-align, center);
	margin-top: auto;
}

/* News */

.news h2 {
	margin-bottom: 50px;
}

.news-single {
	width: var(--news-width);
	padding: 0 15px;
	margin-bottom: 30px;
}

.news .slide_items .news-single {
	width: auto;
}

.news-image {
	display: block;
	width: 100%;
}

.news-single img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.news-single-content {
	flex-direction: column;
	display: flex;
	flex-wrap: wrap;
	padding: 15px 0 0 0;
	height: calc(100% - 200px);
}

strong.news-headline {
	font-size: var(--news_title-fontsize);
	display: block;
	line-height: 1.1;
	width: 100%;
}

span.news-date {
	display: block;
	width: 100%;
	font-style: italic;
	font-size: var(--news_date-fontsize);
}

.news-excerpt {
	width: 100%;
	font-size: var(--news_excerpt-fontsize);
	padding: 10px 0;
}

.news-single a.button {
	margin-top: auto;
	align-self: flex-start;
}

/* Accordion */

.accordion_single {
	margin-bottom: 30px;
}

.accordion_title {
	display: block;
	text-align: var(--accordion_title-align, center);
	padding: 10px 50px 10px 20px;
	background-color: var(--accordion_title-background, var(--primary-color));
	color: #ffffff;
	border-radius: var(--accordion_title-border-radius, var(--button-border-radius));
	cursor: pointer;
	font-size: var(--accordion_title-font-size, var(--h3-font-size));
	font-weight: var(--accordion_title-font-weight, var(--h3-font-weight));
	position: relative;
}

.accordion_title::after {
	top: 50%;
	right: 20px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f078";
	position: absolute;
	margin-top: -15px;
	font-size: 20px;
}

.accordion_content {
	padding: var(--accordion_content-padding, 0 50px);
	display: none;
}

.accordion_single:first-child .accordion_content {
	display: block;
}

.accordion_content-inner {
	padding: var(--accordion_content-inner-padding, 50px 30px);
	border-radius: var(--accordion_content-border-radius, var(--button-border-radius));
	border: var(--accordion_content-border, 2px solid #4A80FF);
	border-top: var(--accordion_content-border-top, none);
}

/* Form */

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

.wpcf7-form-control-wrap,
.wpcf7-form label {
	display: block;
	width: 100%;
}

.wpcf7-form input:not(.wpcf7-submit),
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid var(--grey-dark, #515150);
	outline: var(--primary-color, #4A80FF);
	border-radius: var(--input-borderradius, 50px);
	display: block;
	margin-top: 5px;
	background-color: var(--grey-light, #DDDDDC);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
}

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

/* Footer */

/* Responsive */

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

}

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

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

/* Client Custom */