/* Page Link
--------------------------------------------- */

.page-link {
	overflow: hidden;
	width: 100%;
}

.page-link a {
	display: block;
	float: left;
	width: 235px;
	height: 150px;
	background-size: cover;
	background-position: center center;
	position: relative;
	margin-left: 20px;
}

.page-link a:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: rgba( 0, 0, 0, .2 );
	z-index: 1;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

.page-link a:hover:before {
	background: rgba( 0, 0, 0, .4 );
}

.page-link a:first-child {
	margin-left: 0;
}

.page-link a span {
	color: #fff;
	display: block;
	font-size: 32px;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba( 0, 0, 0, .5 );
	position: absolute;
	top: 50%;
	left: 50%;
	width: 235px;
	text-align: center;
	text-decoration: none;
	-webkit-transform: translate( -50%, -50%);
	-moz-transform: translate( -50%, -50%);
	-ms-transform: translate( -50%, -50%);
	-o-transform: translate( -50%, -50%);
	transform: translate( -50%, -50%);
	z-index: 5;
}



/* Content Double Image
--------------------------------------------- */

.double_image {
    position: relative;
    max-width: 400px;
    float: right;
}
.double_image .double_image_first {
    position: relative;
    overflow: hidden;
}
.double_image .double_image_first::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(255, 255, 255, 0.7);
}
.double_image .double_image_last {
    position: absolute;
    left: -10%;
    top: 10%;
    width: 90%;
    height: 80%;
    overflow: hidden;
}
.double_image .double_image_first img {
    width: 100%;
    -webkit-transition: all 20s ease 0s;
    -o-transition: all 20s ease 0s;
    transition: all 20s ease 0s;
}
.double_image .double_image_last img {
    width: 100%;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 5s ease 0s;
    -o-transition: all 5s ease 0s;
    transition: all 5s ease 0s;
}
.double_image:hover .double_image_last img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 5s ease 0s;
    -o-transition: all 5s ease 0s;
    transition: all 5s ease 0s;
}
img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    border: 0;
}
.double_image .double_image_first h3 {
    color: #ffffff;
    font-size: 50px;
    text-transform: uppercase;
    top: 10%;
    position: absolute;
    right: 42px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    z-index: 22;
}



/* Content Divider
--------------------------------------------- */

.divider {
    width: 100%;
    height: 20px;
    margin: 15px 0;
    padding: 0;
    text-align: center;
    background: url(img/spacer.jpg) center center no-repeat;
}
.divider:before {
    display: inline-block;
    margin: 0 20px 8px 0;
    height: 2px;
    content: " ";
    text-shadow: none;
    background-color: #f4f4f4;
    width: 40%;
    max-width: 140px;
}
.divider:after {
    display: inline-block;
    margin: 0 0 8px 20px;
    height: 2px;
    content: " ";
    text-shadow: none;
    background-color: #f4f4f4;
    width: 40%;
    max-width: 140px;
}