#rl_pf {
	width: 60vw;
	margin: 0 auto;
	font-size: 3em;
	text-indent: 6px;
	letter-spacing: 12px;
	text-align: center;
	font-weight: 200;
	display: -ms-flexbox;
	-ms-flex-wrap: wrap;
	-ms-flex-direction: column;
	flex-flow: row wrap;
	display: flex;
	text-transform: none;
}
.show {
	flex: auto;
	width: 300px;
	margin: 0.3vw;
}
.show img {
	width: 100%;
	height: auto;
}
.item {
	overflow: hidden;
	position: relative;
	text-align: center;
}
.item .pf_content {
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
}
.item img {
	display: block;
	position: relative;
}
.item h3 {
	color: #fff;
	font-size: 0.2em;
	text-indent: 3px;
	letter-spacing: 6px;
	text-align: center;
	font-weight: 200;
	position: relative;
	text-transform: uppercase;
	margin-bottom: 25px;
}
.item h4 {
	color: #fff;
	font-size: 0.18em;
	text-indent: 1px;
	letter-spacing: 2px;
	text-align: center;
	font-weight: 100;
	position: relative;
	text-transform: uppercase;
}
.item .pf_viewmore {
	color: #fff;
	width: 100%;
	font-size: 0.2em;
	text-indent: 3px;
	letter-spacing: 6px;
	font-weight: 200;
	text-align: center;
	display: inline-block;
	text-decoration: none;
	background-color: rgba(0,0,0,0.2);
}
.open-item img {
	transition: all 1.5s ease;
}
.open-item .pf_content {
	opacity: 0;
	background-color: rgba(0,0,0,0.8);
	transition: all 0.4s ease;
}
.open-item h3 {
	transform: translateY(-100px);
	opacity: 0;
	transition: all 0.2s ease;
}
.open-item h4 {
	transform: translateY(100px);
	opacity: 0;
	transition: all 1s ease;
}
.open-item .pf_viewmore {
	transform: translateY(30px);
	vertical-align: middle;
	height: 30px;
	line-height: 30px;
	opacity: 0;
	transition: all 1s ease;
	position: absolute;
	bottom: 0;
	left: 0;
}
.open-item:hover img {
	transform: scale(1.5);
}
.open-item:hover .pf_content {
	opacity: 1;
}
.open-item:hover h3,
.open-item:hover h4,
.open-item:hover .pf_viewmore {
	opacity: 1;
	transform: translateY(0px);
}
.full-link {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 3;
}
.modalContent {
	z-index: 1;
	position: fixed;
	font-size: 1.2em;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.8s ease;
	pointer-events: none;
}
.modalContent:target {
	opacity: 1;
	pointer-events: auto;
}
.modalContent .full-link {
	cursor: default;
}
.modalContent > div {
	z-index: 5;
	width: 80vw;
	height: 80vh;
	position: relative;
	margin: 2% auto;
	padding: 0;
	background: #fafafa;
}
.close {
	color: #fff;
	position: absolute;
	text-align: center;
	width: 100%;
	text-decoration: none;
	height: 30px;
	line-height: 30px;
	vertical-align: middle;
	bottom: 0;
	left: 0;
	font-size: 1em;
	text-indent: 3px;
	letter-spacing: 6px;
	font-weight: 200;
	display: inline-block;
	background: rgba(0,0,0,0.9);
	transition: all 0.5s ease;
}
.close:hover {
	background: rgba(0,0,0,1);
	transition: all 0.5s ease;
}
.modalDesc {
	padding: 0 0 10px 0;
	margin: 0 auto;
	font-size: 1em;
	text-indent: 1px;
	letter-spacing: 2px;
	text-align: center;
	font-weight: 200;
	width: 100%;
	position: absolute;
	margin-bottom: 30px;
	left: 0;
	bottom: 0;
	background: #fff;
	border-top: 3px solid #333;
}

.modalDesc p {
	padding: 0 10px 0 10px;
	width: 80%;
	margin: 0 auto;
}
.modalDesc h3 {
	font-size: 1.4em;
	text-indent: 3px;
	letter-spacing: 6px;
	font-weight: 400;
	margin-bottom: 5px;
}
.modalDesc h4 {
	font-size: 1em;
	text-indent: 2px;
	letter-spacing: 4px;
	font-weight: 200;
	padding-bottom: 10px;
}
.modalDesc h4 a {
	text-decoration: none;
	color: #333;
	transition: all 0.5s ease;
}
.modalDesc h4 a:hover {
	font-size: 1em;
	letter-spacing: 8px;
	text-indent: 4px;
	transition: all 0.5s ease;
	text-shadow: 0 3px 2px rgba(0,0,0,0.4);
}
@media screen and (max-width: 400px) {
	#rl_pf {
		margin: 0;
		padding: 0;
	}
	.modalContent > div {
		width: 100vw;
		height: 100vh;
		margin: 0;
	}
	.modalDesc p {
		width: 90%;
		padding: 0 20px 0 5px;
		text-align: justify;
		font-size: 0.6em;
	}
	.modalDesc h3 {
		margin-top: 10px;
		padding: 0 20px 0 5px;
		font-size: 0.9em;
	}
	#rl_pf {
		width: 92vw;
		margin: 0 auto;
	}
	.modalDesc h4 a {
		font-size: 0.7em;
		padding: 0;
	}
	.modalDesc h4 a:hover {
		font-size: 0.7em;
		letter-spacing: 4px;
		text-indent: 2px;
		transition: all 0.5s ease;
		text-shadow: 0 3px 2px rgba(0,0,0,0.4);
	}
}
@media screen and (min-width: 401px) and (max-width: 800px) {
	.modalContent > div {
		margin: 0 auto;
		width: 90vw;
		height: 90vh;
	}
	.modalDesc p {
		text-align: justify;
		font-size: 0.9em;
	}
	.modalDesc h3 {
		width: 90vw;
		margin: 0 5px 0 5px;
		padding: 0;
		font-size: 1em;
	}
	#rl_pf {
		width: 80vw;
	}
	
}
.pf_1 > div {
  background: url('../pf/ssds.jpg') center top;
  background-size: cover;
}
.pf_2 > div {
  background: url('../pf/hjds.jpg') center top;
  background-size: cover;
}
.pf_3 > div {
  background: url('../pf/3xt.jpg') center top;
  background-size: cover;
}
.pf_4 > div {
  background: url('../pf/blatant.jpg') center top;
  background-size: cover;
}
.pf_5 > div {
  background: url('../pf/kg.jpg') center top;
  background-size: cover;
}
.pf_6 > div {
  background: url('../pf/2004.jpg') center top;
  background-size: cover;
}