/*VISTA*/

.vista {
	position: relative;
}

.vista .slider img {
	display: block;
	max-height: 100vh;
    min-width: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.vista .background_shadow {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	/*box-shadow: inset 0px 0px 210px 166px rgba(0,0,0,0.75);*/
	opacity: 0.3;
	background-color: rgb(35, 157, 45);
}

.vista .background_border {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.3);
}

.vista .background_border .center {
	width: 2px;
	height: 100%;
	background-color: #fff;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.vista .overlay {
	color: #fff;
	position: absolute;
	top: 165px;
	bottom: 0;
	left: 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}

.vista .overlay .wrapper {
	width: 100%;
}

.vista .overlay .left {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.vista .overlay .right {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.vista .overlay .left>div, .vista .overlay .right>div {
	width: 50%;
}

.vista .overlay .title {
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
	font-size: 3em;
	display: block;
	text-align: right;
	padding: 10px;
	float: right;
	border-top: 1px solid #fff;
}

.vista .overlay .sub_title {
	font-weight: 300;
	color: #fff;
	display: block;
	text-align: left;
	padding: 10px;
	font-size: 22px;
	float: left;
	border-bottom: 1px solid #fff;
}

.vista .scroll_points {
	position: absolute;
	bottom: 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	display: none;
}

.vista .scroll_points .wrapper {
	padding: 25px 15px;
}

.vista .scroll_points a {
	margin: 0 15px;
	text-transform: uppercase;
	color: #fff;
	font-size: 1.3em;
	border-top: 1px solid;
}

.vista .scroll_points a:hover {
	border-top: 1px solid #239d2d;
}

.top_menu {
	top: initial;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 5px;
	position: fixed;
	bottom: 0;
}

.nav_trigger {
	height: 40px;
	width: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 5px;
	z-index: 9999999;
	position: fixed;
	left: 270px;
	top: 0;
	background-color: transparent;
	-webkit-transition: left 0.25s, background-color 0.5s;
	-o-transition: left 0.25s, background-color 0.5s;
	transition: left 0.25s, background-color 0.5s;
}

.nav_trigger:hover {
	cursor: pointer;
	background-color: rgba(255,255,255,0.25);
}

.content_push:not(.nav_closed) .nav_trigger {
	background-color: rgb(35, 157, 45);
}

.content_push:not(.nav_closed) .nav_trigger .hamburger .line {
	background-color: #fff;
}

.nav_trigger .hamburger .line {
  width: 30px;
  height: 3px;
  background-color: #161616;
  display: block;
  margin: 4px auto;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 0 20px #fff;
          box-shadow: 0 0 20px #fff;
}

.content_push:not(.nav_closed) .nav_trigger .hamburger .line:nth-child(1),
.content_push:not(.nav_closed) .nav_trigger .hamburger .line:nth-child(3) {
  width: 20px;
}

.content_push:not(.nav_closed) .nav_trigger .hamburger .line:nth-child(1) {
  -webkit-transform: translate(-10px, 1px) rotate(-45deg);
  -ms-transform: translate(-10px, 1px) rotate(-45deg);
  transform: translate(-10px, 1px) rotate(-45deg);
}

.content_push:not(.nav_closed) .nav_trigger .hamburger .line:nth-child(3) {
  -webkit-transform: translate(-10px, -1px) rotate(45deg);
  -ms-transform: translate(-10px, -1px) rotate(45deg);
  transform: translate(-10px, -1px) rotate(45deg);
}

.main_menu {
	-webkit-transition: left 0.25s;
	-o-transition: left 0.25s;
	transition: left 0.25s;
    width: 270px;
}

.content_push.nav_closed .nav_trigger {
	left: 0;
}

.content_push.nav_closed .main_menu {
	left: -270px;
}

.main_menu .wrapper {
    width: 100%;
    margin: auto 1em;
}
.main_menu .wrapper .title {margin-left: 1em;}
.main_menu .wrapper i {
    line-height: 1em;
    vertical-align: text-bottom;
}

/*MAIN*/

.main.no-vista,
.credit-page .main {
	padding-top: 180px;
    background: #efefef;
	padding-bottom: 1px;
	margin-bottom: -1px;
}

.std_content .headlines {
	margin-bottom: 15px;
}

.std_content .headlines .title {
	text-transform: uppercase;
	font-weight: 300;
	font-size: 3em;
	color: #239d2d;
}

.credit-page .std_content .headlines h2.title {
	font-size: 2em;
}

.credit-page .std_content .headlines h3.title {
	font-size: 1.6em;
}

.std_content .headlines .sub_title {
	font-weight: 300;
	font-size: 1.7em;
	color: #9c9e9f;
}

.std_content .std_text {
	line-height: 1.5em;
}

.std_content .std_text .rich-text:before, .std_content .std_text .rich-text:after {
	content: " ";
	display: table;
}

.std_content .std_text .rich-text:after {
	clear: both;
}

.std_content .std_text img.richtext-image.full-width {
	width: 100%;
}

.std_content .std_text img.richtext-image.left {
	float: left;
	width: 50%;
	padding-right: 15px;
}

.std_content .std_text img.richtext-image.right {
	float: right;
	width: 50%;
	padding-left: 15px;
}

.std_content .klapp_opener {
	display: none;
}


/*ELEMENTS*/

.accordeon_box .klapp_trigger {
	background-color: transparent;
	border: 1px solid;
	padding: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.accordeon_box .klapp_trigger:hover {
	cursor: pointer;
}

.accordeon_box .title {
	font-weight: 300;
	font-size: 21px;
}

.accordeon_box.open .icon {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.accordeon_box .std_text {
	display: none;
}

.accordeon_box.open .std_text {
	display: block;
	padding: 1px 10px;
	border-right: 1px solid;
	border-bottom: 1px solid;
	border-left: 1px solid;
}

.accordeon_box.open .klapp_trigger {
	border-bottom: none;
}

.team_element .slider {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.team_element .item {
	max-width: 270px;
	width: 30%;
	border: 1px solid #222;
	-webkit-box-shadow: 7px 7px 5px 0px rgba(146, 146, 146, 0.75);
	box-shadow: 7px 7px 5px 0px rgba(146, 146, 146, 0.75);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
	margin-right: 10px;
	margin-left: 10px;
}

.team_element .item .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 30px;
}

.team_element .item img {
	border-radius: 500px;
}

.team_element .item .title_wrapper {
	margin-top: 20px;
	text-align: center;
}

.team_element .item .title_wrapper .name {
	font-size: 1.3em;
}

.team_element .item .title_wrapper .title {
	margin-top: 5px;
	color: #9c9e9f;
}

.referenz_blog .slider {
	background-size: cover;
}

.referenz_blog .background_setter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 25px 15px;
	width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: rgba(255,255,255, 0.6);
}

.referenz_blog .item {
	width: 30%;
	background-color: rgba(0,0,0,0.6);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	/*-webkit-box-direction: normal;*/
	/*-ms-flex-direction: column;*/
	/*flex-direction: column;*/
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	margin: 10px 0;
	color: #fff;
}

.referenz_blog .item .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 30px;
	text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.referenz_blog .slider .item:hover {
    background-color: rgba(0,0,0,0.2);
}

.referenz_blog .slider .item {
    background-size: cover;
    background-position: center;
    background-color: rgba(0,0,0,0.6);
    background-blend-mode: multiply;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.referenz_blog .item .title {
	color: #cccccc;
	font-size: 1.7em;
	text-transform: uppercase;
}

.referenz_blog .item .text_button_wrapper {
	margin: 0;
}

.referenz_blog .item .title_text {
    min-height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.refenz_list .ma_center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.refenz_list .ma_center .item {
	width: 50%;
	padding-bottom: 20px;
}

.refenz_list .ma_center .wrapper {
	height: 100%;
	width: calc(100% - 2px);
	border: 1px solid #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: baseline;
	margin-right: 10px;
	padding: 0;
	text-align: center;
	-webkit-box-shadow: 7px 7px 5px 0px rgba(146, 146, 146, 0.75);
	box-shadow: 7px 7px 5px 0px rgba(146, 146, 146, 0.75);
	min-height: 150px;
}

.refenz_list .ma_center .item:nth-child(2n) .wrapper {
	margin-right: 0;
	margin-left: 10px;
}

.refenz_list .ma_center .wrapper .content {
	padding: 25px 15px;
}

.refenz_list.blog .ma_center .wrapper .content {
	height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.refenz_list .ma_center .wrapper .title {
	padding-bottom: 20px;
	font-size: 1.7em;
	text-transform: initial;
}


/*IMAGE-GALLERY*/
.image_gallery {
	padding-top: 150px;
	overflow: hidden;
}
.image_gallery .slider {
	max-width: 1920px;
	margin: auto;
}
.image_gallery .slider .item {
	width: calc(100% / 3);
	float: left;
	margin-top: -150px;
    -webkit-clip-path: polygon(50% 30%, 100% 15%, 100% 85%, 50% 100%, 0 85%, 0 15%);
	clip-path: polygon(50% 30%, 100% 15%, 100% 85%, 50% 100%, 0 85%, 0 15%);
	height: 500px;
	position: relative;
	overflow: hidden;
}
.image_gallery .slider .item:nth-child(3n-1) {
	-webkit-clip-path: polygon(50% 0, 100% 15%, 100% 85%, 50% 70%, 0 85%, 0 15%);
	clip-path: polygon(50% 0, 100% 15%, 100% 85%, 50% 70%, 0 85%, 0 15%);
}
.image_gallery .slider .item img {
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	    -ms-transform: translateX(-50%) translateY(-50%);
	        transform: translateX(-50%) translateY(-50%);
	top: 50%;
	max-height: 100%;
	left: 50%;
}

.image_gallery .slider .item {
	background-color: black;
}

.image_gallery .slider .item .popup {
	height: 100%;
    width: 100%;
    display: block;
    position: relative;
}

.image_gallery .slider .item .popup img {
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.image_gallery .slider .item .popup:hover img {
	opacity: 0.5;
}

.image_gallery .slider .item .popup .material-icons {
	position: absolute;
    width: 100%;
    text-align: center;
    bottom: 33%;
    color: white;
    font-size: 4em;
	opacity: 0;

	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.image_gallery .slider .item:nth-child(3n-1) .popup .material-icons {
	bottom: auto;
	top: 33%;
}

.image_gallery .slider .item .popup:hover .material-icons {
	opacity: 1;
}

@media screen and (max-width: 1000px) {
	.image_gallery .slider .item {
		width: 50%;
	}
	.image_gallery .slider .item:nth-child(3n-1) {
	    -webkit-clip-path: polygon(50% 30%, 100% 15%, 100% 85%, 50% 100%, 0 85%, 0 15%);
		clip-path: polygon(50% 30%, 100% 15%, 100% 85%, 50% 100%, 0 85%, 0 15%);
	}
	.image_gallery .slider .item:nth-child(2n) {
	    -webkit-clip-path: polygon(50% 0, 100% 15%, 100% 85%, 50% 70%, 0 85%, 0 15%);
	    clip-path: polygon(50% 0, 100% 15%, 100% 85%, 50% 70%, 0 85%, 0 15%);
	}
	.image_gallery .slider .item:nth-child(3n-1) .popup .material-icons {
		top: auto;
		bottom: 33%;
	}
	.image_gallery .slider .item:nth-child(2n) .popup .material-icons {
		top: 33%;
		bottom: auto;
	}
}
@media screen and (max-width: 650px) {
	.image_gallery {
	    padding-top: 75px;
	}
	.image_gallery .slider .item {
		width: 100%;
	}
	.image_gallery .slider .item:nth-child(2n) {
	    -webkit-clip-path: polygon(50% 30%, 100% 15%, 100% 85%, 50% 100%, 0 85%, 0 15%);
		clip-path: polygon(50% 30%, 100% 15%, 100% 85%, 50% 100%, 0 85%, 0 15%);
	}
	.image_gallery .slider .item:nth-child(2n) .popup .material-icons {
		top: auto;
		bottom: 33%;
	}
}