/* -------------------
        GENERAL
--------------------*/
* {
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
}
body {
    font-size:100.01%;
	font-family: 'Raleway', sans-serif;
}

/* -------------------
        HEADER
--------------------*/
header {
	height: 120px;
	background-color: #fff;
	padding: 20px 5vw;
}
.logo {
	height: 80px;
	width: auto;
}

/* -------------------
         HERO
--------------------*/
.hero {
	display: table;
	width: 100%;
	height: calc(100vh - 120px);
	position: relative;
	background: url(../img/pattern.png) 50% 50% repeat;
}
.hero__inner {
	display: table-cell;
	vertical-align: middle;
	padding: 5vw 0 5vw 5vw;
	color: #fff;
	font-size: 5.5vw;
	line-height: 110%;
	background: url(../img/head-skyline.png) 100% 50% no-repeat;
}
.hero__modal {
	position: absolute;
	top: 50%;
	margin-top: -250px;
	right: 0;
	background-color: #35404f;
	width: 0;
	height: 500px;
	color: #fff;
	overflow: hidden;
	transition: all 0.5s linear;
}
.hero__modal--active {
	width: 400px;
}
.hero__modal__inner {
	width: 400px;
	height: 500px;
}
.hero__modal__top {
	padding: 30px 40% 30px 20px;
	text-transform: uppercase;
	line-height: 140%;
	height: 20%;
	position: relative;
}
.hero__modal__top .close {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 30px;
	right: 20px;
}
.hero__modal__top .close:before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 2px;
	height: 40px;
	background-color: #fff;
	transform: rotate(-45deg);
}
.hero__modal__top .close:after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 2px;
	height: 40px;
	background-color: #fff;
	transform: rotate(45deg);
}
.hero__modal__middle {
	height: 60%;
	background: url(../img/houses.jpg) no-repeat 50% 50%;
	background-size: cover;
}
.hero__modal__bottom {
	display: block;
	text-decoration: none;
	height: 20%;
	position: relative;
	padding: 20px 40% 20px 20px;
}
.hero__modal__bottom:after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -20px;
	width: 40px;
	height: 40px;
	background: url(../img/arrow.png) 100% 50% no-repeat;
}

/* -------------------
        CONTENT
--------------------*/
.content-row {
	display: table;
	width: 100%;
	table-layout: fixed;
}
.content-row__column {
	display: table-cell;
	width: 50%;
	padding: 5vw;
}
.content-row__column--content {
	padding-bottom: 30vw;
	background: url(../img/car.png) no-repeat 50% 100%;
	background-size: contain;
}
.content-row__column--image {
	background: url(../img/town-hall.jpg) no-repeat 50% 50%;
	background-size: cover;
}
.content-row__column h1 {
	font-size: 400%;
	margin-bottom: 40px;
	line-height: 120%;
}
.content-row__column p {
	line-height: 140%;
	margin-bottom: 20px;
}
.address {
	background: url(../img/pattern.png) 50% 50% repeat;
	padding: 40px;
	color: #fff;
	font-size: 400%;
	text-align: center;
	text-transform: uppercase;
}
.info {
	padding: 40px 5vw;
	overflow: hidden;
	display: table;
	width: 100%;
	table-layout: fixed;
}
.info__column {
	display: table-cell;
	width: 33.33%;
	vertical-align: middle;
}
.info__column--middle {
	padding: 0 40px;
}
.info__column img {
	max-width: 100%;
	height: auto;
}
.info__column p {
	line-height: 140%;
	text-align: center;
}
.info__column a {
	display: block;
	background-color: #1d1d1b;
	color: #fff;
	text-decoration: none;
	padding: 20px;
	position: relative;
	text-transform: uppercase;
	font-weight: bold;
}
.info__column a:after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -20px;
	width: 40px;
	height: 40px;
	background: url(../img/arrow.png) 100% 50% no-repeat;
}
#map {
	width: 100%;
	height: 500px;
}
.more-info {
	padding: 5vw;
	overflow: hidden;
	color: #fff;
	background: url(../img/footer-pattern.png) repeat 50% 50%;
}
.more-info__location {
	width: 66.66%;
	padding-right: 40px;
	float: left;
}
.more-info__location h2 {
	font-size: 300%;
	margin-bottom: 40px;
}
.more-info__location p {
	line-height: 140%;
	margin-bottom: 20px;
}
.more-info__facilities {
	width: 33.33%;
	float: right;
}
.more-info__facilities h2 {
	font-size: 300%;
	margin-bottom: 40px;
}
.more-info__facilities__list li {
	padding: 10px 0 10px 40px;
	position: relative;
}
.more-info__facilities__list li:before {
	content: "";
	position: absolute;
	width: 40px;
	height: 40px;
	left: 0;
	top: 50%;
	margin-top: -20px;
	background-repeat: no-repeat;
	background-position: 0 50%;
}
.more-info__facilities__list__cctv:before {
	background-image: url(../img/icon-cctv.png);
}
.more-info__facilities__list__secure:before {
	background-image: url(../img/icon-secure.png);
}
.more-info__facilities__list__undercover:before {
	background-image: url(../img/icon-undercover.png);
}
.more-info__facilities__list__toilet:before {
	background-image: url(../img/icon-toilet.png);
}

/* -------------------
        FOOTER
--------------------*/
footer {
	background-color: #1d1d1b;
	padding: 40px 5vw;
	overflow: hidden;
	color: #fff;
}
.footer-button {
	display: block;
	background-color: #8d3175;
	color: #fff;
	text-decoration: none;
	padding: 20px 60px 20px 20px;
	position: relative;
	text-transform: uppercase;
	font-weight: bold;
	float: right;
	width: 33.33%;
	margin-bottom: 40px;
}
.footer-button:after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -20px;
	width: 40px;
	height: 40px;
	background: url(../img/arrow.png) 100% 50% no-repeat;
}
.footer-column {
	width: 50%;
	float: left;
}
.footer-column--left {
	clear: both;
}
.footer-column--right {
	text-align: right;
}
.footer-column a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 120%;
}
.footer-column p {
	margin: 10px 0;
}

/* -------------------
      RESPONSIVE
--------------------*/
@media(max-width:767px){ /* phones */
	header {
		text-align: center;
	}
	.logo {
		max-width: 100%;
		height: auto;
	}
	.hero__modal {
		display: none !important;
	}
	.hero__inner {
		background-position: 50% 100%;
		background-size: contain;
		text-align: center;
		vertical-align: top;
		font-size: 250%;
		padding: 20px;
	}
	.content-row {
		display: block;
	}
	.content-row__column {
		display: block;
		width: 100%;
	}
	.content-row__column h1 {
		font-size: 250%;
		text-align: center;
		margin-bottom: 20px;
	}
	.content-row__column--content {
		padding-bottom: 60vw;
	}
	.content-row__column--image {
		height: 70vh;
	}
	.address {
		font-size: 200%;
	}
	.info {
		display: block;
		padding: 20px;
	}
	.info__column {
		display: block;
		width: 100%;
		margin-bottom: 20px;
	}
	#map {
		height: 300px;
	}
	.more-info h2 {
		text-align: center;
		margin-bottom: 20px;
	}
	.more-info__location {
		width: 100%;
		float: none;
		padding: 0;
	}
	.more-info__facilities {
		width: 100%;
		float: none;
	}
	.footer-button {
		width: 100%;
		float: none;
		font-size: 90%;
	}
	.footer-column {
		width: 100%;
		float: none;
		text-align: center;
	}
	.footer-column p {
		line-height: 140%;
	}
}
