@font-face {
	font-family: 'Berlin Type Office';
	src: url('fonts/berlin-type-office-400-normal.woff') format('woff'),
	     url('fonts/berlin-type-office-400-normal.ttf') format('truetype');
	font-weight: 400;
}

@keyframes spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.wp-block-masonry-justified-gallery {
	width: 100%;
	margin-bottom: 1.5em;
	position: relative;
	transition: height 0.4s ease-out;
}

.wp-block-masonry-justified-gallery .gallery-item {
	overflow: hidden;
	margin: 0;
	padding: 0;
	transition: all 0.4s ease-out;
}

.wp-block-masonry-justified-gallery .gallery-item a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.wp-block-masonry-justified-gallery .gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}



/* ============================================
   SECURITY STYLES
   ============================================ */

/* Prevent text selection */
.wp-block-masonry-justified-gallery .no-download {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.wp-block-masonry-justified-gallery .gallery-item img {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}

