/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
	--red: #be0300;
	--yellow: #fde101;
	--ink: #382001;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	box-sizing: border-box;
}

main {
	display: block;
}

*, *::before, *::after {
	box-sizing: inherit;
}

body {
	margin: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
@font-face {
    font-family: 'Open Sans';
    src: url('../font/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../font/OpenSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans Bold';
    src: url('../font/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../font/OpenSans-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans Light';
    src: url('../font/OpenSans-Light.ttf') format('truetype');
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans Light';
    src: url('../font/OpenSans-LightItalic.ttf') format('truetype');
    font-weight: lighter;
    font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Open Sans Light';
	color: var(--red);
	word-break: break-word;
}

h1 {
	font-size: 2.5em;
	margin: 0.67em 0;
	line-height: 1.2;
}

h2 {
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 .8em;
	font-size: 2em;
	line-height: 1.2;
}

h3 {
	font-size: 1.3em;
	font-weight: 600;
	margin: 0 0 1em;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	line-height: 1.5;
}

h4 {
	margin: 1em 0 .5em;
	font-family: 'Open Sans Bold';
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: 1.2em;
}

p, li {
	margin: 0 0 1em;
	font-family: Open Sans, Helvetica, Arial, sans-serif;
	line-height: 1.7;
}

b, strong {
	font-family: 'Open Sans Bold';
}


em, i {
	font-style: italic;
}

h3, p, li {
	color: var(--ink);
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

ul, ol {
	margin: 0;
	padding: 0 1em;
}

ul li, ol li {
	margin: .7em 0;
}

li::marker {
	color: var(--red);
}

ul {
	list-style: disc;
}

li > ul {
	margin-bottom: 0;
	margin-left: 1.5em;
}

#contact input, #contact textarea {
	border: 2px solid var(--yellow);
	height: 3em;
	display: block;
	margin: .5em 0 2em;
	min-width: 300px;
	width: 75%;
	font-family: Open Sans, Helvetica, Arial, sans-serif;
	padding: .8em .5em;
}

#contact input[type="submit"] {
	background-color: var(--pomegrenade);
	font-size: 1.3em;
	cursor: pointer;
	background-color: var(--red);
	padding: .5em 1em;
	border: none;
	color: #fff;
}

#contact textarea {
	min-height: 100px;
	resize: vertical;
}

#contact label {
	display: block;
	line-height: 1.3;
	margin: .8em 0 .5em;
	padding: 0;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

section a {
	color: var(--red);
	background: transparent;
	text-decoration: none;
	font-family: Open Sans, Helvetica, Arial, sans-serif;
	background-color: transparent;
	padding: 0.8em .5em 0.7em;
	font-size: inherit;
	width: 100%;
	display: inline-block;
	border-radius: 0;
	border-left: 3px solid var(--yellow);
	transition: .7s;
	margin-bottom: 0px;
}

.cta-button {
	max-width: 600px;
	margin: 1em 0 2em;
}

section a:hover, 
section a:focus, 
section a:active {
	box-shadow: inset 40em 0 0 0 var(--yellow);
	outline: 0;
}

section a:focus {
	outline: thin dotted;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	color: var(--ink);
	background: #ffffffb0;
	font-family: Open Sans, Helvetica, Arial, sans-serif;
	transition: .7s;
	margin-bottom: 0px;
	letter-spacing: 0.15em;
	padding: 20% 10%;
	width: 96px;
	height: 75px;	
	position: relative;
	top: 2px;
	left: 2px;
	-webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	font-size: .6rem;
}

.menu-item a {
	color: var(--red);
}

.has-children > a {
	color: var(--ink);
	cursor: auto;
}

.menu-item:not(.has-children) a:hover,
.menu-item:not(.has-children) a:focus,
.menu-item:not(.has-children) a:active {
	color: var(--yellow);
	background: var(--ink);
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
header {
	width: 100vw;
	background-color: #fff;
	position: fixed;
	top: 0;
	z-index: 2;
	height: 70px;
	padding: 0 1em;
	border-bottom: 2px solid var(--yellow);
}

header .content {
	background-color: #fff;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-branding {
	display: inline-block;
	max-height: 68px;
}

.site-branding img {
	height: 90px;
	width: 180px;
}

.main-navigation ul {
	list-style: none;
}

.main-navigation > ul {
	display: none;
	margin: 0;
	background-color: transparent;
	padding: 0;
	position: absolute;
	top: 80px;
	width: 300px;
	position: absolute;
	right: 0;
	padding: 0 2em;
}

.main-navigation li {
	margin: 0 0 10px;
	-webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	width: 100px;
	height: 80px;
	text-align: center;
	background-color: var(--yellow);
}

.main-navigation li.has-children:nth-child(2n) {
	-webkit-clip-path: polygon(25% 0%, 75% 0%, 100% -50%, 150% -50%, 175% 0%, 150% 50%, 175% 100%, 150% 150%, 75% 200%, 25% 200%, 0% 150%, 25% 100%, 0% 50%);
	clip-path: polygon(25% 0%, 75% 0%, 100% -50%, 150% -50%, 175% 0%, 150% 50%, 175% 100%, 150% 150%, 75% 200%, 25% 200%, 0% 150%, 25% 100%, 0% 50%);
}

.main-navigation li.has-children {
	-webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 100% 150%, 75% 200%, 25% 200%,  0% 150%, -50% 150%, -75% 100%, -50% 50%, -75% 0px, -50% -50%, 0% -50%);
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 100% 150%, 75% 200%, 25% 200%,  0% 150%, -50% 150%, -75% 100%, -50% 50%, -75% 0px, -50% -50%, 0% -50%);
	margin: -20% 0 0 42%;
}

.main-navigation li.has-children .sub-menu {
	position: relative;
	left: -115px;
	top: -36px;
}

.main-navigation li.has-children:nth-child(2n) .sub-menu {
	position: relative;
	left: 34px;
	top: -35px;
}

.main-navigation li.has-children:nth-child(3) {
	margin: 43px 0px -32px -10px;
}

.main-navigation li:nth-child(5) {
	margin: -32px 0px -32px -10px;
}

.sub-menu li:nth-child(2) {
	margin: -168px 0 0 0px;
}

.menu-item:nth-child(2n) {
	margin: -3% 0 0 42%;
}

.sub-menu li:nth-child(3) {
	margin: 37px 0 0 -74px;
}

.sub-menu.second li:nth-child(3) {
	margin: 37px 0 0 74px;
}

/* Small menu. */
.widescreen {
       display: none;
}

header svg {
	height: 40px;
}

.menu-toggle {
	border: 0;
	cursor: pointer;
	margin: 0;
	background-color: #fff;
}

.toggled {
	top: 0;
	height: 100vh;
	transition: 300ms;
}

.main-navigation.toggled ul {
	display: block;
	background-color: #000;
}

.menu-toggle:hover {
	background-color: transparent;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

.navTrigger i {
	height: 15px;
	aspect-ratio: 1/cos(30deg);
	clip-path: polygon(0 50%,50% -50%,100% 50%,50% 150%,0 50%, 2px 50%, calc(25% + 2px*cos(60deg)) calc(100% - 2px*sin(60deg)), calc(75% - 2px*cos(60deg)) calc(100% - 2px*sin(60deg)), calc(100% - 2px) 50%, calc(75% - 2px*cos(60deg)) calc(2px*sin(60deg)), calc(25% + 2px*cos(60deg)) calc(2px*sin(60deg)), 2px 50%);
	background: var(--red);
	width: 18px;
	margin: 2px 0;
	display: block;
	transition: 500ms;
}

.open i:nth-child(2) {
	margin-left: 12px;
}

.has-children ul {
	display: block;
}

#menu-shadow {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #38200194;
	top: 0;
	left: 0;
	z-index: 1;
	display: none;
}

.main-navigation a.singlerow {
	padding: 28% 3%;
}

.main-navigation a.threerow {
	padding: 12% 10%;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

.content {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.clear {
	clear: both;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

section, footer {
	padding: 2rem 1em;
	clear: both;
	font-family: Open Sans, Helvetica, Arial, sans-serif;
	hyphens: auto;
	hyphenate-limit-chars: 10 4 4;
}

.quad {
	width: 100%;
}

.centered {
	text-align: center;
}

.spacer {
	height: 150px;
}

footer {
	padding: 4em 1em;
	color: #fff;
	background-color: #39393d;
	background-image: radial-gradient(circle at 90%,rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 49%) !important;
	border-top: 2px solid var(--yellow);
	line-height: 1.6;
}

footer .third {
	padding: 1em;
}

footer a {
	display: block;
	margin: 8px 0;
}

footer a:hover {
	text-decoration: dotted;
}

footer h3, footer a, footer a:hover, footer p {
	color: #fff;
}

#backToTop {
	width: 50px;
	height: 50px;
	bottom: 5px;
	position: fixed;
	right: 18px;
	z-index: 101;
	font-size: 0;
	border-bottom: none;
}

#backToTop svg {
	fill: var(--yellow);
	width: 50px;
	height: 50px;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
img {
	border-style: none;
	width: 100%;
	height: auto;
}

.half img {
	height: 350px;
	object-fit: cover;
}

.hexagon {
  height: 150px;
  aspect-ratio: 1/cos(30deg);
  clip-path: 
    polygon(0 50%,50% -50%,100% 50%,50% 150%,0 50%,
    2px 50%,
    calc(25% + 2px*cos(60deg)) calc(100% - 2px*sin(60deg)),
    calc(75% - 2px*cos(60deg)) calc(100% - 2px*sin(60deg)),
    calc(100% - 2px) 50%,
    calc(75% - 2px*cos(60deg)) calc(2px*sin(60deg)),
    calc(25% + 2px*cos(60deg)) calc(2px*sin(60deg)),
    2px 50%);
  background: var(--yellow);
}

.hexagon.before {
	margin: 0px 0 -50px 50px;
	position: relative;
	z-index: -1;
}

.hexagon.after {
	margin: -100px 0 100px;
	height: 150px;
}

.hexagon-img {
	display: inline-block;
	position: relative;
	width: 350px;
	height: 300px;
	background: var(--yellow);
	box-sizing: border-box;
	-webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	width: 400px;
	height: 350px;	
}

.border.hex-text, .hexagon-img img {
	position: absolute;
	top: 2px; /* equal to border thickness */
	left: 2px; /* equal to border thickness */
	width: 346px; /* container height - (border thickness * 2) */
	height: 296px; /* container height - (border thickness * 2) */
	-webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	object-fit: cover;
	width: 396px;
	height: 346px;	
}

.border.hex-text {
	margin: 0;
	padding: 16%;
	font-size: 80%;
}

.hex-text {
	margin: -280px 0 100px -50px;
	color: var(--ink);
	background-color: #fffc;
	-webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	width: 300px;
	height: 250px;
	text-align: center;
	padding: 8%;
	display: flex;
	flex-direction: column;
	gap: 0;
	justify-content: center;
}

.yellow .hex-text {
	position: relative;
	padding: 50px;
	margin: -450px 0 100px;
	background: #fde101b0;
	background: radial-gradient(circle,rgb(253, 225, 1) 0%, rgba(253, 225, 1, 0.6) 70%);
}

.thumbnail img {
	width: 100vw;
	object-fit: cover;
	margin: 0 -1em;
	border-top: 2px solid var(--yellow);
	border-bottom: 2px solid var(--yellow);
	min-height: 500px;
}

.thumbnail video {
	min-height: 0;
	object-fit: contain;
	width: 100vw;
	margin: 0 -1em;
	border-bottom: 2px solid var(--yellow);
}

/*
.home .thumbnail {
	max-width: 100%;
	margin: 0 auto;
	padding: 70px 20px 0;
	background-color: #000;
	margin-bottom: 2em;
	border-bottom: 2px solid var(--yellow);
}
*/

.thumbnail p {
	margin: 0;
	font-size: 1em;
}

.thumbnail h2 {
	font-size: 1.3em;
	text-transform: uppercase;
	margin-bottom: 0.2em;
}

.verlass .hexagon-img {
	width: 300px;
	height: 250px;
}

.verlass .border.hex-text {
	width: 296px;
	height: 245px;
	font-size: 100%;
}

.verlass .hex-text.border {
	padding: 3em 2.5em;
}

.references {
	width: 400px;
	margin: 50px 0 150px;
}

.references .hexagon-img {
	width: 200px;
	height: 170px;
	margin-bottom: -30px;
}

.references .hexagon-img:nth-child(2n+1) {
	left: 130px;
}

.references img {
	width: 196px;
	height: 166px;
}

.partner {
	margin-top: 60px;
	max-width: 300px;
}

.partner .hexagon-img {
	width: 150px;
	height: 125px;
}

.partner .hexagon-img:nth-child(2n) {
	margin-bottom: 75px;
	margin-left: -30px;
	margin-top: -60px;
}

.partner .hexagon-img img {
	object-fit: contain;
	background-color: #fff;
	padding: 20px;
	width: 146px;
	height: 121px;
}

#soundButton {
	position: absolute;
	top: 70px;
	right: 0;
	padding: 12px 20px;
	font-size: 11px;
	cursor: pointer;
	width: 50px;
	fill: #fff;
	background-color: var(--yellow);
	border-radius: 100%;
	height: 50px;
	padding: 10px;
	margin: 10px;
}
/*--------------------------------------------------------------
# cWeb Admin Layer
--------------------------------------------------------------*/

input[type="text"], input[type="password"] {
	text-align: center;
	border: 1px solid var(--red);
	min-width: 300px;
	margin: .3em 0;
}

input[type="submit"].button {
	background-color: var(--red);
	border: none;
	font-size: 1em;
	padding: 1em 2em;
	margin: .5em auto 0;
	display: block;
	left: calc(50% - 150px);
	position: relative;
	width: 300px;
}

.login {
	text-align: center;
}

#messageanchor .imgcontainer {
	height: fit-content;
	max-height: 60vh;
}

.trumbowyg-dropdown button.trumbowyg-backColor382001-dropdown-button {
	color: #fff;
}

/** Trumbowyg v2.26.0 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */
.trumbowyg-editor table {
  width:100%
}
.trumbowyg-editor table td {
  border:1px dotted #aaa;
  padding:8px
}
.trumbowyg-dropdown-table table {
  margin:10px;
  display:inline-block
}
.trumbowyg-dropdown-table table td {
  display:inline-block;
  height:20px;
  width:20px;
  margin:1px;
  padding:0;
  background-color:#fff;
  -webkit-box-shadow:0 0 0 1px #cecece inset;
  box-shadow:0 0 0 1px #cecece inset
}
.trumbowyg-dropdown-table table td.active {
  background-color:#652588;
  -webkit-box-shadow:none;
  box-shadow:none;
  cursor:pointer
}
.trumbowyg-dropdown-table .trumbowyg-table-size {
  text-align:center
}

/*--------------------------------------------------------------
# Media Query
--------------------------------------------------------------*/
@media screen and (min-width: 508px) {
	h3:not(.hex-text.border h3) {
		font-size: 1.5em;
	}

	.hexagon-img {
		width: 450px;
		height: 400px;
	}

	.references .hexagon-img img {
		width: 196px;
		height: 166px;
	}

	.border.hex-text, .hexagon-img img {
		width: 446px;
		height: 396px;
	}

	.border.hex-text {
		font-size: 90%;
	}

}

@media screen and (min-width: 565px) {
	.verlass .hexagon-img:nth-child(2n+1) {
		margin-bottom: -100px;
		margin-left: -80px;
	}

	.verlass .hexagon-img {
		margin-bottom: 50px;
	}

	.partner {
		max-width: 100%;
	}

	.partner .hexagon-img:nth-child(2n) {
		margin: -30px -30px 75px;
	}
}

@media screen and (min-height: 650px) and (min-width: 768px) {
	.main-navigation > ul {
		top: 80px;
		width: 400px;
	}

	.main-navigation a {
		font-size: inherit;
		width: 126px;
		height: 96px;
		font-size: .9em;
	}

	.main-navigation li {
		width: 130px;
		height: 100px;
	}

	.main-navigation li.has-children .sub-menu {
		left: -137px;
		top: -46px;
	}

	.main-navigation li.has-children:nth-child(2n) {
		margin: 125px 0 50px 100px;
	}

	.sub-menu li:nth-child(3) {
		margin: 50px 0 0 -97px;
	}

	.sub-menu.second li:nth-child(3) {
		margin: 50px 0 0 97px;
	}

	.main-navigation li.has-children:nth-child(2n) .sub-menu {
		left: 57px;
		top: -46px;
	}

	.sub-menu li:nth-child(2) {
		margin: -210px 0 0 0px;
	}

	.main-navigation .sub-menu a {
		font-size: .8em;
	}

	.main-navigation li.has-children:nth-child(2n) {
		margin: 0 0 18% 42%;
	}

	.main-navigation a {
		padding: 16% 10%;
	}
}

@media screen and (min-width: 768px) {

	.widescreen {
		display: block;
	}
	.smallscreen {
		display: none;
	}

	.content {
		width: 720px;
		padding: 0;
	}

	section {
		padding: 2em 1em;
	}

	h2 {
		font-size: 2.5em;
	}

	.thumbnail img {
		height: calc(50vh + 2em);
	}

	.thumbnail h2 {
		font-size: 1.5rem;
		line-height: 1.3;
	}

	.thumbnail p {
		font-size: 1.2rem;
	}

	.yellow .hex-text, .hex-text {
		margin: -400px -50px 100px;
		width: 400px;
		height: 350px;
		padding: 8em 3em;
	}

	.home .thumbnail:first-child .hex-text {
		padding: 5em 3.5em;
		float: right;
	}

	.main-navigation {text-align: right;}

	.references {
		width: 610px;
	}

	.references .hexagon-img {
		margin-bottom: 0;
	}

	.references .hexagon-img:nth-child(2n+1),
	.references .hexagon-img:nth-child(5n+1) {
		left: 0;
		top: 90px;
		margin: 0 -30px;
	}

	.references .hexagon-img:nth-child(4n+1),
	.references .hexagon-img:nth-child(6n+1) {
		top: 0;
		margin: 10px 0;
	}

	footer {
		margin-top: 4em;
	}

	footer .flex {
		gap: 0;
	}

	.hexagon-img.partner {
		width: 250px;
		height: 200px;
	}

}

@media screen and (min-width: 992px) {
	.content {
		width: 960px;
	}

	.half {
		width: 50%;
		padding: 0 2em 0 0;
		margin: 2em 0;
	}

	.third {
		width: 33.33%;
		float: left;
		padding: 0 15px;
	}

	.two-third {
		width: 66.66%;
		float: left;
		padding: 0 15px;
	}

	.three-fifths {
		width: 60%;
		float: left;
		padding: 0 1em;
	}

	.two-fifths {
		width: 40%;
		float: left;
		padding: 0 1em;
	}

	.quad {
		width: 25%;
		padding: 0 15px;
	}

	.verlass .hexagon-img {
		margin-bottom: 0;
		margin-left: 0;
	}

	.verlass .hexagon-img:nth-child(2n+1) {
		margin-bottom: 0;
		margin-left: 0;
	}

	.yellow .hex-text {
		left: 50px;
		top: -150px;
		margin-bottom: -50px;
	}

	.partner .hexagon-img {
		width: 250px;
		height: 200px;
	}

	.partner .hexagon-img img {
		width: 246px;
		height: 196px;
	}

	.references {
		width: 900px;
	}

	.references .hexagon-img:nth-child(4n+1) {
		top: 90px;
		margin: 0 -30px;
	}

	.references .hexagon-img:nth-child(5n+1),
	.references .hexagon-img:nth-child(6n+1) {
		top: 0;
		margin: 10px 0;
	}

}

@media screen and (min-width: 1200px) {
	.content {
		width: 1200px;
	}

	/*.home .thumbnail:first-child img*/
/*
	.home .thumbnail video {
		height: calc(100vh - 2em);
	}
*/
	.hexagon-img {
		width: 550px;
		height: 500px;
		left: 5%;
		z-index: -2;
		position: relative;
	}

	.border.hex-text, .hexagon-img img {
		width: 546px;
		height: 496px;
	}

	.hex-text.border {
		font-size: 100%;
		padding: 16%;
	}

	.hexagon.after {
		margin: -100px 0 0 -150px;
		height: 350px;
		z-index: -2;
		position: relative;
	}

	.references {
		width: 1111px;
	}

	.references .hexagon-img {
		width: 300px;
		height: 270px;
		left: 0;
	}

	.references .hexagon-img img {
		width: 296px;
		height: 266px;
	}

	.references .hexagon-img:nth-child(4n+1),
	.references .hexagon-img:nth-child(6n+1) {
		top: 90px;
		margin: 0 -30px;
	}
	.references .hexagon-img:nth-child(4n+1),
	.references .hexagon-img:nth-child(6n+1),
	.references .hexagon-img:nth-child(2n+1) {
		top: 145px;
	}

	.references .hexagon-img:nth-child(5n+1) {
		top: 15px;
	}

}

@media screen and (min-width: 1400px) {
	.content {
		width: 1400px;
		padding: 1em;
}
	.verlass {
		margin: 50px 1em 150px;
	}
	.verlass .hexagon-img {
		margin-bottom: 0;
		margin-left: -50px;
	}
	.verlass .hexagon-img:nth-child(2n+1) {
		margin-bottom: -100px;
		margin-left: -50px;
	}
}
