.cx_hero_section {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 104px 32px 119px;
}

.cx_hero_section .detail-wrapper {max-width: 940px;}

.cx_hero_section .sliding-imgs-wrapper {
	position: absolute;
	top: 5%;
	left: 13%;
	transform: rotate(-10.09deg);
}

.cx_hero_section .sliding-imgs-wrapper:nth-of-type(2) {
	left: unset;
	top: 8%;
	right: 4%;
	transform: rotate(-10.09deg);
}

.cx_hero_section .sliding-imgs-wrapper:nth-of-type(3) {
	top: unset;
	bottom: 10%;
	left: 5%;
	transform: rotate(10.09deg);
} 

.cx_hero_section .sliding-imgs-wrapper:nth-of-type(4) {
	top: unset;
	bottom: 5%;
	left: unset;
	right: 8%;
	transform: rotate(10.09deg);
}

.cx_hero_section .sliding-imgs {
  position: relative;
  height: 157px;
  width: 157px;
}

.cx_hero_section .sliding-imgs-wrapper:is(:nth-of-type(2), :nth-of-type(3)) .sliding-imgs {
	height: 235px;
	width: 235px;
}

.cx_hero_section .sliding-imgs .sliding-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 1s ease-in-out !important;
  border-radius: 48px;
  display: block;
}

.cx_hero_section .sliding-imgs-wrapper:is(:nth-of-type(1), :nth-of-type(4)) .sliding-imgs {
	border-radius: 32px;
}

.cx_hero_section .sliding-imgs::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 48px;
	opacity: 10%;
	border: 1px solid var(--primary-50);
	transform: translate(20px, 20px);
}

.cx_hero_section .sliding-imgs-wrapper:is(:nth-of-type(3), :nth-of-type(4)) .sliding-imgs::before {
	border: unset;
	background-color: var(--primary-50);
}

.cx_hero_section .sliding-imgs .sliding-img.active {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.cx_hero_section .sliding-imgs .sliding-img.out {
  opacity: 0;
  /*transform: translateY(-100%) rotate(10deg);*/
  transform: translateY(-50%) rotate(10deg);
}



@media (max-width:1625px) {

	.cx_hero_section .sliding-imgs-wrapper:is(:nth-of-type(2), :nth-of-type(3)) .sliding-imgs {
		height: 170px;
		width: 170px;
	}

	.cx_hero_section .sliding-imgs-wrapper:nth-of-type(1) {
		left: 5%;
	}

	.cx_hero_section .sliding-imgs-wrapper:nth-of-type(2) {
		right: 2%;
	}

}

@media (max-width: 1370px) and (min-width: 651px) {
	.l-col-span-all {
		grid-column: 1/-1;
		justify-self: center;
	}
}


@media (max-width:1350px) {

	.cx_hero_section .sliding-imgs-wrapper:nth-of-type(1) {
		left: 2%;
	}

	.cx_hero_section .sliding-imgs-wrapper:is(:nth-of-type(2), :nth-of-type(3)) {
		display: none;
	}

}

@media (max-width:1193px) {

	.cx_hero_section .sliding-imgs-wrapper:nth-of-type(1) {
		top: unset;
		bottom: 5%;
	}

	.cx_hero_section .sliding-imgs-wrapper:nth-of-type(4) {
		right: 2%;
	}

}

@media (max-width: 991px) {
	.cx_hero_section .sliding-imgs-wrapper {display: none;}
}