.gridbox_container {
  display: flex;
  overflow: visible; 
	gap:30px;
	margin-bottom: 50px;
}


.container.grid {
	overflow: visible;
}

.gridbox_container a {
	flex: 1;
  transition: flex-grow 0.5s;
	display: flex;
	position: relative;
	 border-radius: 30px; 
}

.gridbox_container .box {
  flex: 1;
  transition: flex-grow 0.5s;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 30px; 
  overflow: hidden; 
height: 600px;
	
	background: linear-gradient(180deg, #3aab60 0%, #16345b 100%); 
	color:#FFF;
	
	display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Text unten ausrichten */
  align-items: flex-start; /* Text links ausrichten */
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
	line-height: 1.2em;
		
	
}

.gridbox_container .box:not(:last-child) {
  margin-right: 2px;
}


.box .inner_text {
	position: relative;
	z-index: 3;
}

.box {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.box img {
width: 130%;
height: auto;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 9;
}


.box[data-effekt="1"]::before {
  content: ""; /* Pseudo-Element, um den Hintergrund zu erstellen */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #3aab60 0%, #16345b 100%); 
  mix-blend-mode: multiply !important; 
  border-radius: 30px; 
}




.box::before {
  opacity: 1;
  transition: opacity 0.8s;
}

.box[data-effekt-hover=""]:hover::before {
  opacity: 0; 
}

@media only screen and (max-width: 1500px) {	
	.gridbox_container .box {
		height: 500px !important;
	}
}


a .box[data-background="1"] {
position: relative !important;
border-radius: 30px; 
background: rgb(59,174,96);
background: linear-gradient(190deg, rgba(59,174,96,1) 0%, rgba(21,50,91,1) 100%) !important; 
	overflow: visible;
	

}
.box[data-mouseover="1"] {
  border-radius: 30px; 
}




.gridbox_container .box:hover::after {
	content:'';
	position: absolute !important;
	width: 100%;
	left: 0;
	bottom: 0;
	height: 50%;
	background:red;
	opacity: 1;
	border-radius: 25px;
	
	
	 background: url('https://kaipioch-media.de/wp-content/uploads/2023/12/hover.png') no-repeat;
    background-size: cover;
    background-position: bottom center !important;	
	z-index: 1;
}


@media only screen and (max-width: 767px) {
	.gridbox_container {
 flex-direction: column;
	}
	.box img {
    width: 100%;
	}
}