/* TYPOGRAPHY */

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 62.5%;
	color: #474747;
}

h1, h2, h3, h4 {
	font-weight: 300;
	margin-bottom: 1em;
}
h1 {
	font-size: 5em;
}
h2 {
	font-size: 3em;
}
h3 {
	font-size: 2.4em;
}
h4 {
	font-size: 1.6em;
	font-weight: 600;
}

/* LISTS */

ul.list {
	font-size: 14px;
	list-style: none;
}
	ul.list li {
		margin-bottom: 1em;
		padding-left: 2em;
		position: relative;
	}
		ul.list li:before {
			content: '\002022';
			color: #e72148;
			position: absolute;
			left: 0;
			font-size: 20px;
			line-height: 22px;
		}

ul.no-style {
	list-style: none;
}
ul.tick {
	font-size: 18px;
}
	ul.tick li:before {
		content: "✓";
		color: #e72148;
		margin-right: 0.5em;
	}
	ul.tick li {
		margin: 1em 0;
		width: 29.4%;
		margin-right: 4%;
		display: inline-block;
		vertical-align: top;
	}
	ul.tick li:nth-child(3n) {
		margin-right: 0;
	}

/* ICONS */

/* COLOURS */

.pink {
	color: #e72148;
}
.white {
	color: #fff;
}
.grey {
	color: #6d6e71;
}
.pinkBg {
	background-color: #e72148;
}
.greyBg {
	background-color: #6d6e71;
}
.palegreyBg {
	background-color: #f6f5f5;
}
.whiteBg {
	background-color: #fff;
}

/* BUTTONS */

a.button {
	display: inline-block;
	position: relative;
	margin-top: 2em;
	padding: 15px 40px 15px 20px;
	border: 1px solid;
	font-size: 1.8em;
	
	transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}
a.button:after {
	font-family: FontAwesome;
	content: '\f105';
	position: relative;
	right: -20px;
}
a.button:hover {
	background: #e72148;
	color: #fff !important;
	transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}
a.button.pink {
	border-color: #e72148;
	color: #e72148;
}

/* HEADER */

#header {
	background: #fff;
    position: relative;
    z-index: 999;
}
#header .wrap {
	padding: 3% 5%;
	max-height: 200px;
}

a#logo {
	float: left;
	max-width: 300px;
}
a#logo img {
	width: 100%;
}

	/* NAV */
	
	ul#nav {
		float: right;
		list-style: none;
		display: block;
		position: absolute;
		right: 5%;
		top: 50%;
		margin-top: -9px;
	}
	ul#nav li {
		float: left;
		margin-left: 5em;
	}
	ul#nav li a {
		color: #6d6e71;
		font-weight: 600;
		font-size: 1.3em;
	}
	ul#nav li a:hover, ul#nav li a.active {
		border-bottom: 3px solid #e62148;
		padding-bottom: 10px;
	}

/* FOOTER */

#footer .wrap {
	padding: 3.5% 5%;
}
#footer {
	color: #fff;
}
#footer p, #footer a {
	font-size: 1.2em;
}
#footer a {
	color: #fff;
	font-weight: 700;
}
#footer .affiliation {
	margin: 0 1em 1em 0;
	display: inline-block;
}
#footer .copy {
	position: relative;
	bottom: -60px;
}
	

/* SLIDER */

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  height: 800px;
  padding: 0;
  margin: 0;
  }

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  }

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
  }

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  }
  
.rslides span.caption {
	position: absolute;
	left: 15%;
	height: 650px;
	width: 50%;
	max-width: 600px;
}
.rslides span.captionTextInner {
	background: rgba(255, 255, 255, 0.85);
	padding: 30px 50px;
	display: block;
}
	span.caption h1 {
		font-size: 5em;
		line-height: 1em;
		display: block;
		font-weight: 300;
		margin-bottom: 20px;
	}
	span.caption p {
		font-size: 2em;
	}
	
.centered-btns_nav {
	width: 65px;
	height: 65px;
	border-radius: 65px;
	background: rgba(255, 255, 255, 0.85);
	position: absolute;
	top: 50%;
	margin-top: -32.5px;
	z-index: 999;
	text-indent: -9999px;
	background-position: center;
	background-repeat: no-repeat;
}
	.centered-btns_nav:hover {
		background-color: #fff;
	}
	.centered-btns_nav.prev {
		left: 5%;
		background-image: url(../img/navPrev.png);
	}
	.centered-btns_nav.next {
		right: 5%;
		background-image: url(../img/navNext.png);
	}

.centered-btns_tabs {
	text-align: center;
	width: 100%;
	position: absolute;
	bottom: 30px;
	z-index: 999;
}
	.centered-btns_tabs li {
		display: inline-block;
		border: 2px solid #6d6e71;
		width: 18px;
		height: 18px;
		border-radius: 18px;
		margin: 0 2px;
	}
	.centered-btns_tabs li a {
		display: block;
		text-indent: -9999px;
	}
	li.centered-btns_here {
		border-color: #e72148;
	}
	
/* HEADERS & BOXES */

.boxHeader {
	color: #fff;
	position: relative;
	margin-bottom: 2em;
}
	.boxHeader a {
		float: right;
		color: #fff;
		font-size: 1.6em;
		line-height: 2;
	}
	.boxHeader .fa-stack {
		margin-right: 8px;
		font-size: 1.6em;
		float: left;
	}
	.boxHeader h3 {
		margin-bottom: 0;
		display: inline-block;
	}
	.boxHeader h1 {
		margin-left: 40px;
	}

.boxOffset {
	padding-left: 40px;
}

/* HOMEPAGE */

	/* SOCIAL */
	
	section#social {
		box-shadow: inset 0px 10px 15px -10px #8B0B24;
		-moz-box-shadow: inset 0px 10px 15px -10px #8B0B24;
		-webkit-box-shadow: inset 0px 10px 15px -10px #8B0B24;
	}
	
		/* Twitter */
		
		#twitter-feed {
			overflow: hidden;
			height: 130px;
			color: #fff;
			font-size: 1.2em;
		}
		#twitter-feed a {
			color: #6d6e71;
		}
		#twitter-feed .twitter-article {
			
		}
		.tweet-time {
			font-size: 1.2em;
			float: left;
			clear: left;
		}
		
		/* Facebook */
		
		#facebook-wall {
			list-style: none;
			color: #fff;
			font-size: 1.8em;
		}
		.avatar, .author, ul.like-list, .meta-footer {
			display: none;
		}
		.media-meta .name {
			display: none;
		}
		.meta-header .date {
			font-size: 0.8em;
			color: #6d6e71;
			margin-top: 20px;
		}
		.media .image {
			margin: 0 0 1em 1em;
			float: right;
		}
		
	/* Testimonials */
	
	.testimonialsSlider div p {
		color: #4c4c4c;
		font-size: 3em;
		font-weight: 100;
		margin-bottom: 0.5em;
		padding-left: 40px;
	}
	.testimonialsSlider div span {
		color: #e72148;
		font-size: 1.4em;
		display: block;
		padding-left: 40px;
	}
	
/* CASE STUDIES */

#caseNav {
	padding: 3%;
}
	#caseNav h3 {
		margin-bottom: 0;
		float: left;
	}
	
	#caseNavLinks {
		float: left;
		margin-left: 20px;
	}
		#caseNavLinks a {
			margin-right: 3px;
			color: #fff;
			font-size: 1.4em;
			font-weight: 600;
			padding: 8px 20px;
			border-radius: 2px;
			display: inline-block;
			min-width: 150px;
			text-align: center;
		}
		#caseNavLinks a:hover {
			background: #cd2042;
		}

.caseImage {
	position: relative;
	height: 850px;
	overflow: hidden;
}
	.caseImage .boxHeader {
		position: absolute;
		top: 5%;
		left: 5%;
		padding: 3%;
		background: rgba(255,255,255,0.8);
		width: 50%;
		z-index: 999;
	}
		.caseImage .boxHeader h1 {
			margin-bottom: 0;
		}
	.caseImage img {
		max-width: 100%;
		min-width: 100%;
	}

	
/* CONTACT */

#contact .wrap .unit.paddingTop {
	padding-top: 5%;
}

	/* Form */
	
	form#contact div, form#contact2 div {
		position: relative;
		margin-bottom: 1em;
	}
	form#contact div label, form#contact2 div label { 
		position: absolute;
		left: 20px;
		top: 20px;
		color: #e72148;
		font-style: italic;
		font-size: 1.4em;
		font-weight: 300;
	}
	
	input, textarea {
		border: 1px solid #e72148;
		background: transparent;
		padding: 20px;
		font-size: 1.4em;
		color: #6d6e71;
	}
	input[type="text"], input[type="tel"], input[type="email"] {
		width: 75%;
	}
	textarea {
		width: 100%;
	}
	
	p.sum {
		font-size: 2em;
		color: #e72148;
	}
	p.sumanswer input {
		width: auto;
	}
	
	button.submit {
		border: none;
		background: transparent;
		font-size: 2.4em;
		font-family: 'Open Sans', sans-serif;
		font-weight: 300;
		color: #e72148;
		cursor: pointer;
		margin-top: 10px;
	}
		button.submit span {
			background: url(../img/submitBtn.png) no-repeat;
			width: 62px;
			height: 62px;
			display: inline-block;
			vertical-align: middle;
			margin-left: 10px;
		}
		button.submit:hover span {
			margin-left: 20px;
		}
	
	/* Maps */
	
	#map-canvas, #map-canvas2 {
		width: 100%;
		height: 250px;
		margin-bottom: 50px;
	}
	
	/* Staff */
	
	.staffImage {
		max-width: 150px;
	}
		.staffImage img {
			max-width: 100%;
			border-radius: 50%;
		}
	
/* OTHER */

.spacer {
	clear: both;
	height: 50px;
}

.broker {
	height: 154px;
	overflow: hidden;
	margin-bottom: 35px; 
}
	.broker img {
		width: 200px;
		margin: 0 auto;
		display: block;
		transition: all 0.2s ease;
	}
	.broker:hover img {
		margin-top: -154px;
		transition: all 0.2s ease;
	}
	