.horizontal-image-box-list {
	display: flex;
	flex-flow: column wrap;
}

.horizontal-image-box-wrapper {
	display: flex;
	transition: all 0.5s ease-out;
	gap: 12px;
	cursor: pointer;
	flex-flow: column wrap;
	overflow: hidden;
	position: relative;
}

.horizontal-image-box-wrapper .text-wrapper {
	display: flex;
	flex-flow: row nowrap;
	gap: 20px;
	width: 50%;
	z-index: 1;
}

.horizontal-mage-box-wrapper .leading, .horizontal-mage-box-wrapper.active .leading {
	transition: all 0.5s ease-out;
}


.horizontal-image-box-wrapper  .image-wrapper {
	display: flex;
	flex-flow: row nowrap;
	gap: 20px;	
	width: 50%;
	justify-content: flex-end;
	z-index: 1;
}	

.horizontal-image-box-wrapper  .image-box {
	width: 27%;
	transition: all 0.5s ease-out;
}

.horizontal-image-box-wrapper.active  .image-box {
	width: 48%;
}

.horizontal-image-box-wrapper.active  h3 {
transition: all 0.5s ease-out;
}


.horizontal-image-box-wrapper  .main-content {
	width: 82%;
	display: flex;
	flex-direction: column;
	gap: 12px;
		transition: all 0.5s ease-out;
max-height: 0px;
}

.horizontal-image-box-wrapper.active  .main-content {
	gap: 12px;
	max-height: 500px;
	overflow: hidden;

}

.horizontal-image-box-wrapper  .main-content p{
	opacity: 0;
	visibility:hidden;
	transition: all 0.5s ease-out;
max-height: 0px;
}


.horizontal-image-box-wrapper.active  .main-content p{
	opacity: 1;
	visibility: visible;
	max-height: 500px;

}

.horizontal-image-box-wrapper .open-icon  {
	transition: all 0.5s ease-out;
	transform: rotate(0deg);
	align-self: center;
}


.horizontal-image-box-wrapper.active .open-icon  {
	transform: rotate(180deg);
}

.horizontal-image-box-wrapper .image-box-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	transition: all 0.5s ease-out;
	opacity: 0;
	top: 0;
}

.horizontal-image-box-wrapper .desktop-wrapper {
	display: flex;
	transition: all 0.5s ease-out;
	gap: 12px;
	cursor: pointer;
	align-items: center;
	justify-content: space-between;
	position: relative;
	overflow: hidden;	
	width: 100%;
}

.horizontal-image-box-wrapper .mobil-wrapper {
	display: none;
}

@media only screen and (max-width: 768px) {
	
.horizontal-image-box-wrapper .text-wrapper {
	gap: 12px;
	width: 100%;
}

.horizontal-image-box-wrapper  .image-box  {
	display: none;
}	

.horizontal-image-box-wrapper  .image-wrapper {
	width: fit-content;
}	
	
.horizontal-image-box-wrapper  {
	align-items: flex-start;
	gap: 0;
}
	
.horizontal-image-box-wrapper.active  {
	align-items: flex-start;
	gap: 12px;
}
	
.horizontal-image-box-wrapper  .main-content p{
	display: none;
}
	
.horizontal-image-box-wrapper  .mobil-wrapper {
	display: flex;
	flex-flow: column wrap;
	gap: 0px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.5s ease-out;
}
	
.horizontal-image-box-wrapper.active  .mobil-wrapper {
	display: flex;
	flex-flow: column wrap;
	gap: 12px;
	max-height: 500px;
	overflow: hidden;
	transition: all 0.5s ease-out;
}

}

