.gallery {
	.gallery-col {
		margin-bottom: 73px;
		cursor: pointer;

		.gallery-image {
			width: 100%;
			height: 269px;
			background-color: #ddd;
			margin-bottom: 10px;
			border-radius: 10px;
			overflow: hidden;

			img {
				width: 100%;
				height: 269px;
				border-radius: 10px;
				object-fit: cover;
				transition: all 0.3s ease-in-out;
			}
		}

		span {
			font-style: normal;
			font-weight: 500;
			font-size: 15px;
			color: #546e7a;
		}

		&:hover {
			img {
				transform: scale(1.1);
			}
		}
	}

	.modal {
		&.show {
			display: block;
		}

		.modal-dialog {
			max-width: 100%;

			.gallery-swiper {
				background: none;

				img {
					height: 550px;
					object-fit: cover;
				}
			}
		}
	}
}
