.photo-gallery-items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px
}

.photo-gallery {
	width: 100%
}

.photo-gallery .photo-gallery-items .photo-gallery-item .title {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center
}

.photo-gallery .photo-gallery-items .photo-gallery-item .title h5 {
	font-style: italic;
	background: #ffd013;
	-webkit-clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
	clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
	z-index: 4;
	color: #000;
	font-size: 33px;
	font-weight: 700;
	text-align: center;
	margin: 0 auto;
	letter-spacing: .7px;
	text-transform: uppercase;
	padding: 0 15px
}

.photo-gallery .photo-gallery-items .photo-gallery-item img {
	top: 50%;
	left: 50%;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: none
}

.photo-gallery .photo-gallery-items .photo-gallery-item:hover img {
	display: block
}

.photo-gallery .photo-gallery-items .photo-gallery-item a {
	top: 0;
	left: 0;
	z-index: 6;
	width: 100%;
	height: 100%;
	position: absolute
}

.photo-gallery-item {
	height: 280px;
	position: relative;
	border-radius: 5px
}

.photo-gallery-item .hover {
	width: 100%;
	height: 100%;
	position: relative;
	opacity: .1;
	transition: all .5s
}

.photo-gallery-item .hover:hover {
	background: rgba(0, 0, 0, .3);
	opacity: 1;
	transition: all .5s
}

.photo-gallery-item:hover {
	box-shadow: 1px 14px 16px 1px rgba(0, 0, 0, .47)
}

.photo-gallery .photo-gallery-items .photo-gallery-item:hover h5 {
	display: none
}



html.swipebox-html.swipebox-touch {
	overflow: hidden !important
}

#swipebox-overlay img {
	border: none !important
}

#swipebox-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999 !important;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

#swipebox-container {
	position: relative;
	width: 100%;
	height: 100%
}

#swipebox-slider {
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
	white-space: nowrap;
	position: absolute;
	display: none;
	cursor: pointer
}

#swipebox-slider .slide {
	height: 100%;
	width: 100%;
	line-height: 1px;
	text-align: center;
	display: inline-block
}

#swipebox-slider .slide:before {
	content: "";
	display: inline-block;
	height: 50%;
	width: 1px;
	margin-right: -1px
}

#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	vertical-align: middle
}

#swipebox-slider .slide .swipebox-video-container {
	background: none;
	max-width: 1140px;
	max-height: 100%;
	width: 100%;
	padding: 5%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

#swipebox-slider .slide .swipebox-video-container .swipebox-video {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative
}

#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0
}

#swipebox-bottom-bar,
#swipebox-top-bar {
	-webkit-transition: 0.5s;
	transition: 0.5s;
	position: absolute;
	left: 0;
	z-index: 999;
	height: 50px;
	width: 100%
}

#swipebox-bottom-bar {
	bottom: -50px
}

#swipebox-bottom-bar.visible-bars {
	-webkit-transform: translate3d(0, -50px, 0);
	transform: translate3d(0, -50px, 0)
}

#swipebox-top-bar {
	top: -50px
}

#swipebox-top-bar.visible-bars {
	-webkit-transform: translate3d(0, 50px, 0);
	transform: translate3d(0, 50px, 0)
}

#swipebox-title {
	display: block;
	width: 100%;
	text-align: center
}

#swipebox-arrows {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: 50px
}

#swipebox-prev {
	background-position: -32px 13px;
	float: left
}

#swipebox-next {
	background-position: -78px 13px;
	float: right
}

#swipebox-close {
	top: 0;
	right: 0;
	position: absolute;
	z-index: 9999;
	background-position: 15px 12px
}

.swipebox-no-close-button #swipebox-close {
	display: none
}

#swipebox-prev.disabled,
#swipebox-next.disabled {
	opacity: 0.3
}

.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
	-webkit-animation: rightSpring 0.3s;
	animation: rightSpring 0.3s
}

.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
	-webkit-animation: leftSpring 0.3s;
	animation: leftSpring 0.3s
}

.swipebox-touch #swipebox-container:before,
.swipebox-touch #swipebox-container:after {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	content: ' ';
	position: absolute;
	z-index: 999;
	top: 0;
	height: 100%;
	width: 20px;
	opacity: 0
}

.swipebox-touch #swipebox-container:before {
	left: 0;
	-webkit-box-shadow: inset 10px 0px 10px -8px #656565;
	box-shadow: inset 10px 0px 10px -8px #656565
}

.swipebox-touch #swipebox-container:after {
	right: 0;
	-webkit-box-shadow: inset -10px 0px 10px -8px #656565;
	box-shadow: inset -10px 0px 10px -8px #656565
}

.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
	opacity: 1
}

.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
	opacity: 1
}

@-webkit-keyframes rightSpring {
	0% {
		left: 0
	}
	50% {
		left: -30px
	}
	100% {
		left: 0
	}
}

@keyframes rightSpring {
	0% {
		left: 0
	}
	50% {
		left: -30px
	}
	100% {
		left: 0
	}
}

@-webkit-keyframes leftSpring {
	0% {
		left: 0
	}
	50% {
		left: 30px
	}
	100% {
		left: 0
	}
}

@keyframes leftSpring {
	0% {
		left: 0
	}
	50% {
		left: 30px
	}
	100% {
		left: 0
	}
}

@media screen and (min-width: 800px) {
	#swipebox-close {
		right: 10px
	}
	#swipebox-arrows {
		width: 92%;
		max-width: 800px
	}
}

#swipebox-overlay {
	background: #fff
}

#swipebox-bottom-bar,
#swipebox-top-bar {
	text-shadow: 1px 1px 1px black;
	background: #fff;
	opacity: 0.95
}

#swipebox-top-bar {
	color: white !important;
	font-size: 15px;
	line-height: 43px;
	font-family: Helvetica, Arial, sans-serif
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0
}

.slick-list:focus {
	outline: none
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto
}

.slick-track:before,
.slick-track:after {
	content: "";
	display: table
}

.slick-track:after {
	clear: both
}

.slick-loading .slick-track {
	visibility: hidden
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none
}

[dir="rtl"] .slick-slide {
	float: right
}

.slick-slide img {
	display: block
}

.slick-slide.slick-loading img {
	display: none
}

.slick-slide.dragging img {
	pointer-events: none
}

.slick-initialized .slick-slide {
	display: block
}

.slick-loading .slick-slide {
	visibility: hidden
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent
}

.slick-arrow.slick-hidden {
	display: none
}

.gallery-popup {
	left: 0;
	top: -120%;
	z-index: 999999999999999999;
	width: 100%;
	height: 100%;
	position: fixed;
	overflow: hidden;
	background-color: rgba(68, 68, 68, 0.9)
}

.gallery-popup .close-bg {
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	cursor: pointer;
	position: absolute
}

.gallery-popup div.clearfix {
	position: relative
}

.gallery-popup .gallery-popup-content {
	top: 50%;
	left: 50%;
	width: 80%;
	z-index: 2;
	margin: 0 auto;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.gallery-popup .gallery-popup-content h5 {
	float: left;
	color: #ffffff;
	font-size: 25px;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-family: 'Roboto Condensed', sans-serif
}

.gallery-popup .gallery-popup-content .close-x {
	right: 0;
	top: -12px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	position: absolute
}

.gallery-popup .gallery-popup-content .close-x:after {
	content: '';
	top: 18px;
	left: 5px;
	width: 29px;
	height: 2px;
	position: absolute;
	background-color: #51b7eb;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg)
}

.gallery-popup .gallery-popup-content .close-x:before {
	content: '';
	top: 18px;
	left: 5px;
	width: 29px;
	height: 2px;
	position: absolute;
	background-color: #51b7eb;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.gallery-popup .gallery-for {
	border-radius: 5px;
	margin-bottom: 15px
}

.gallery-popup .gallery-for img {
	width: 100%
}

.gallery-popup .gallery-nav {
	padding-bottom: 85px
}

.gallery-popup .gallery-nav img {
	width: 100%
}

.gallery-popup .gallery-nav .slick-list {
	margin: 0 -15px
}

.gallery-popup .gallery-nav .slick-slide {
	margin: 0 15px
}

.gallery-popup .gallery-nav:after {
	content: '';
	left: 50%;
	z-index: 0;
	width: 50px;
	bottom: 31px;
	position: absolute;
	border-bottom: 2px dotted #ffd220;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0)
}


@media screen and (min-width: 1024px) {
	.gallery-popup .gallery-popup-content {
		width: 70%
	}
	.gallery-popup .gallery-for .slick-arrow {
		top: 50%;
		z-index: 3;
		width: 24px;
		height: 44px;
		border: none;
		cursor: pointer;
		position: absolute;
		text-indent: -9999px;
		-webkit-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-o-transform: translate(0, -50%);
		transform: translate(0, -50%)
	}
	.gallery-popup .gallery-for .slick-prev {
		left: -55px;
		background: url("../img/aarrow-left.png") no-repeat 50% 50%
	}
	.gallery-popup .gallery-for .slick-next {
		right: -55px;
		background: url("../img/aarrow-right.png") no-repeat 50% 50%
	}
}

@media screen and (min-width: 1240px) {
	.gallery-popup .gallery-popup-content {
		width: 55%
	}
}

