.snst-image-gallery {
	max-width: 1748px;
	margin: 0 auto 100px;
}

.snst-image-gallery .images {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 32px;
}

.snst-image-gallery .images .gallery-image:nth-child(odd) {
	width: 390px;
	height: 384px;
	position: relative;
}

.snst-image-gallery .images .gallery-image:nth-child(even) {
	width: 436px;
	height: 544px;
	position: relative;
}

.snst-image-gallery .images .gallery-image {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 5px;
}

.snst-image-gallery .images .gallery-image img {
	height: 100%;
	border-radius: 10px;
}

.snst-image-gallery .button-blue {
	min-height: 50px;
	padding: 10px;
	min-width: 150px;
	margin-bottom: 30px;
	cursor: pointer;
}

.snst-image-gallery .images .gallery-image i {
	cursor: pointer;
}

/* Responsive Style */
@media screen and (max-width: 1600px) {
	.snst-image-gallery {
		max-width: calc(100% - 100px);
	}

	.snst-image-gallery .images {
		gap: 20px;
	}

	.snst-image-gallery .images .gallery-image:nth-child(odd) {
		width: calc(20% - 20px * 3/4);
	}

	.snst-image-gallery .images .gallery-image:nth-child(even) {
		width: calc(30% - 20px * 3/4);
	}
}

@media screen and (max-width: 1181px) {
	.snst-image-gallery {
		margin: 0 auto 60px;
	}

	.snst-image-gallery .images .gallery-image:nth-child(odd) {
		width: calc(40% - 20px * 1/2);
		height: 308px;
	}

	.snst-image-gallery .images .gallery-image:nth-child(even) {
		width: calc(60% - 20px * 1/2);
		height: 480px;
	}

	.snst-image-gallery .images .gallery-image:nth-child(1) {
		order: 1;
	}

	.snst-image-gallery .images .gallery-image:nth-child(2) {
		order: 2;
	}

	.snst-image-gallery .images .gallery-image:nth-child(3) {
		order: 4;
	}

	.snst-image-gallery .images .gallery-image:nth-child(4) {
		order: 3;
	}
}

@media screen and (max-width: 569px) {
	.snst-image-gallery {
		max-width: calc(100% - 40px);
	} 

	.snst-image-gallery .images {
		flex-direction: column;
	}

	.snst-image-gallery .images .gallery-image:nth-child(odd),
	.snst-image-gallery .images .gallery-image:nth-child(even) {
		width: 100%;
	}

	.snst-image-gallery .images .gallery-image:nth-child(even) {
		height: 308px;
	}
}