.fiveimages{
	position: relative;
	z-index: 10;
	aspect-ratio: 630/558;
	max-width: 630px;
	margin: 0 auto;

	@media (max-width: 575px){
		aspect-ratio: 385/335;
	}

	img{
		position: absolute;
		z-index: 1;
		max-width: 42%;

		@media (max-width: 575px){
			max-width: 46%;
		}
	}

	img:nth-child(1){
		z-index: 3;
		top: 0;
		right: 1.4286%;

		@media (max-width: 575px){
			right: 0;
		}
	}
	img:nth-child(2){
		top: 13.7993%;
		left: 7.1429%;

		@media (max-width: 575px){
			top: 12.5373%;
			left: 0;
		}
	}
	img:nth-child(3){
		z-index: 2;
		top: 50%;
		right: 24.7619%;
		transform: translateY(-50%);
	}
	img:nth-child(4){
		bottom: 8.7814%;
		left: 7.1429%;

		@media (max-width: 575px){
			left: 0;
			bottom: 0;
		}
	}
	img:nth-child(5){
		bottom: 0;
		right: 6.9841%;

		@media (max-width: 575px){
			right: 0;
			bottom: 8.3582%;
		}
	}
}