/*
Theme Name: Bowman Riley
Theme URI: http://www.bowmanriley.com/
Author: Round Creative
Author URI: http://roundcreative.co.uk/
Description: The new theme created for sole us on Bowman Riley
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: responsive
Text Domain: bowmanriley
*/

/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain)*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;box-sizing:border-box;padding-bottom:5px;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul {list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}

/* -------------------
        FONTS
--------------------*/
@font-face {
	font-family: 'Gotham Rounded Book';
	src: url('fonts/GothamRounded-Book.eot');
	src: url('fonts/GothamRounded-Book.eot?#iefix') format('embedded-opentype'),
		url('fonts/GothamRounded-Book.woff') format('woff'),
		url('fonts/GothamRounded-Book.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Gotham Rounded Bold';
	src: url('fonts/GothamRounded-Bold.eot');
	src: url('fonts/GothamRounded-Bold.eot?#iefix') format('embedded-opentype'),
		url('fonts/GothamRounded-Bold.woff') format('woff'),
		url('fonts/GothamRounded-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}
@font-face {
	font-family: 'Gotham Rounded';
	src: url('fonts/GothamRounded-Medium.eot');
	src: url('fonts/GothamRounded-Medium.eot?#iefix') format('embedded-opentype'),
		url('fonts/GothamRounded-Medium.woff') format('woff'),
		url('fonts/GothamRounded-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

/* -------------------
        GENERAL
--------------------*/
* {
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
}
body {
    font-size:100.01%;
	font-family:'Gotham Rounded Book',sans-serif;
	text-align:center;
	background-color:#615e60;
}
.sizer {
	/*max-width:1200px;*/
	max-width:CALC(100vw - 80px);
	text-align:left;
	margin:auto;
}

/* -------------------
        HEADER
--------------------*/
header {
	position:fixed;
	top:0;
	left:0;
	right:0;
	height:60px;
	background-color:#FFF;
	z-index:999;
	border-bottom: 1.5px solid #575756
}
header .logo {
	float:right;
	display:inline-block;
	height:60px;
	width:200px;
	background:url(img/bowmanriley-logo.png) no-repeat 100% 50%;
	background-size:contain;
}
/* MAIN MENU */
header .main-menu > ul {
	float: left;
	text-transform:uppercase;
}
header .main-menu > ul > li {
	display:inline-block;
	margin-right:20px;
	position:relative;
}
header .main-menu > ul > li > a {
	display:block;
	color:#1a1a1a;
	text-decoration:none;
	height:50px;
	line-height:70px;
	border-bottom:2px #FFF solid;
	transition:border-color 0.1s linear;
}
header .main-menu > ul > li.current-menu-item > a, header .main-menu > ul > li.active > a, header .main-menu > ul > li.current_page_parent > a, header .main-menu > ul > li > a:hover {
	font-weight:bold;
}
header .main-menu > ul > li > ul {
	position: absolute;
	top: 50px;
	left: -35px;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 20px 35px 10px 35px;
	display: none;
	z-index: 999;
}
header .main-menu > ul > li > ul > li > a {
	display:block;
	color:#1a1a1a;
	text-decoration:none;
	padding:10px 0;
	white-space:nowrap;
}
header .main-menu > ul > li > ul > li > a:hover {
	font-weight:bold;
}
header .menu-button {
	float:left;
	color:#1a1a1a;
	text-decoration:none;
	border:2px #1a1a1a solid;
	padding:5px;
	margin:10px 0 0 0;
	font-weight:800;
	transition:all 0.2s linear;
	background-color:transparent;
	min-height:40px;
	cursor:pointer;
	outline:none;
	position:relative;
	display:none;
}
header .menu-button span {
	width:30px;
	height:2px;
	background-color:#1a1a1a;
	display:block;
	overflow:hidden;
	text-indent:300px;
	transition:all 0.2s linear;
}
header .menu-button.active span {
	background-color:transparent;
}
header .menu-button span:before {
	content:"";
	width:30px;
	height:2px;
	background-color:#1a1a1a;
	display:block;
	position:absolute;
	top:10px;
	transition:all 0.2s linear;
}
header .menu-button.active span:before {
	-webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
	top:48%;
}
header .menu-button span:after {
	content:"";
	width:30px;
	height:2px;
	background-color:#1a1a1a;
	display:block;
	position:absolute;
	bottom:10px;
	transition:all 0.2s linear;
}
header .menu-button.active span:after {
	-webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
	top:48%;
}
header .header-search {
	float: right;
	border: 1px #1a1a1a solid;
	padding: 5px 10px;
	border-radius: 20px;
	background-color: #FFF;
	margin-right: 20px;
	color: #1a1a1a;
	margin-top: 18px;
	outline: none;
}
header .header-search::placeholder {
	color: #1a1a1a;
}
header .header-search::-webkit-input-placeholder {
	color: #1a1a1a;
}
header .header-search::-moz-placeholder {
	color: #1a1a1a;
}
header .header-search:-ms-input-placeholder {
	color: #1a1a1a;
}
header .header-search:-moz-placeholder {
	color: #1a1a1a;
}

/* -------------------
        CONTENT
--------------------*/
.content {
	color:#575756;
	margin-top:60px;
	background-color:#ffffff;
	float: left;
	width: 100%;
}
.content .sizer {
	overflow:hidden;
}
.content .left-column {
	float:left;
	width:75%;
	padding-right:20px;
	position:relative;
}
.content .right-column {
	float:right;
	width:25%;
	padding:0 20px;
	position:relative;
}
/* SLIDER */
.content .slider {
	height:CALC(100vh - 60px);
	position:relative;
	overflow:hidden;
}
.content .slider .slide {
	position:absolute;
	top:0;
	left:0;
	width:100% !important;
	height:100% !important;
	background-position:50% 50%;
	background-size:cover;
	color:#fff;
	opacity:0;
	z-index:0;
	display:block;
	transition:opacity 0.1s linear;
}
.content .slider .slide:first-child {
	z-index:2;
	opacity:1;
}
.content .slider .slide .greyout {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	transition:background-color 0.0s linear;
}
.content .slider .slide .sizer {
	height:100%;
	padding:40px 0 80px 0;
	position:relative;
	font-size:34px;
	line-height:1.2em;
}
.content .slider .sectors {
	position:absolute;
	bottom:0;
	right:40px;
	width:CALC(100vw / 4);
	max-width:240px;
	padding:20px 20px 0 20px;
	background-color:#231f20;
	z-index:2;
}
.content .slider .sectors .inner {
	border-bottom:1px #b2b2b2 solid;
	padding-bottom:20px;
	margin-bottom:20px;
	overflow:hidden;
}
.content .slider .sectors .inner a img {
	float:left;
	width:CALC((100% - 20px) / 3);
	height:auto;
	margin-right:10px;
}
.content .slider .sectors .inner a:last-child img {
	margin-right:0;
}

.content .slider .prev {
	position:absolute;
	left:20px;
	top:48%;
	font-size:2.5em;
	color:#fff;
	z-index:998;
}
.content .slider .next {
	position:absolute;
	right:20px;
	top:48%;
	font-size:2.5em;
	color:#fff;
	z-index:998;
}
/* HOME CONTENT */
.content .home-content {
	padding:40px 0 80px 0;
}
.content .home-content .right-column .tweet {
	overflow:hidden;
	font-size:0.8em;
}
.content .home-content .right-column .tweet a {
	color:#b2b2b2;
	text-decoration:none;
	transition:color 0.1s linear;
}
.content .home-content .right-column .tweet a:hover {
	color:#fff;
}
.content .home-content .right-column .social {
	overflow:hidden;
	margin-top:40px;
	padding-bottom:40px;
	border-bottom:1px #b2b2b2 solid;
}
.content .home-content .right-column .social li {
	float:left;
	width:20%;
	text-align:center;
}
.content .home-content .right-column .social li a {
	color:#575756;
	font-size:2em;
	transition:color 0.1s linear;
}
.content .home-content .right-column .social li a:hover {
	color:#00578A;
}
.content .home-content .right-column .hidden-search {
	display:none;
}
.content .home-content .right-column .hidden-search input {
	position:absolute;
	bottom:-10px;
	left:0;
	width:100%;
	background-color:#231f20;
	border:1px #b2b2b2 solid;
	border-radius:50px;
	padding:5px 15px;
	outline:none;
	color:#b2b2b2;
	font-family:'Gotham Rounded Book',sans-serif;
}
.content .home-content h2 {
	clear:both;
	font-size:2em;
	padding-top:60px;
	margin-bottom:20px;
	text-transform:uppercase;
	color:#00578A;
}
.content .home-content .home-services {
	overflow:hidden;
}
.content .home-content .home-services .service {
	float:left;
	width:25%;
	width:CALC((100% - 60px) / 4);
	margin-right:20px;
	text-align:center;
	overflow:hidden;
}
.content .home-content .home-services .service:nth-child(4n + 4) {
	margin-right:0;
}
.content .home-content .home-services .service:nth-child(4n + 1) {
	clear:both;
}
.content .home-content .home-services .service .image-container {
	display:block;
	width:100%;
	height:200px;
	height:CALC((100vw - 140px) / 7);
	background-position:50% 50%;
	background-size:cover;
	transition:all 0.1s linear;
}
.content .home-content .home-services .service .image-container:hover {
	/* opacity:0.7; */
	transform:scale(1.1,1.1);
}
.content .home-content .home-services .service h3 a {
	display:block;
	text-transform:uppercase;
	padding:20px 0;
	text-decoration:none;
	color:#575756;
}
/* OUR STORY */
.content .our-story {
	padding:40px 0 20px 0;
}
.content .our-story .download-link {
	display:block;
	overflow:hidden;
	text-transform:uppercase;
	font-size:0.8em;
	color:#575756;
	text-decoration:none;
	margin-top:20px;
	transition:color 0.1s linear;
	font-family:'Gotham Rounded Bold',sans-serif;
}
.content .our-story .download-link i {
	float:right;
}
.content .our-story .download-link:hover {
	color:#00578A;
}
.content .our-story .download-link:hover i {
	animation:bounce 1.5s ease-in-out both infinite;
}
.content .certifications {
	background-color:#fff;
}
.content .certifications .sizer {
	min-height:200px;
	overflow:hidden;
}
.content .certifications .cert-box {
	float:left;
	width:CALC((100vw - 320px) / 13);
	height:CALC((100vw - 320px) / 13);
	background-position:50% 50%;
	background-size:contain;
	background-repeat:no-repeat;
	margin-right:20px;
	margin-top:40px;
	margin-bottom:40px;
}
.content .certifications .cert-box:nth-child(10n) {
	margin-right:0;
}
.content .cert-spacer {
	height:160px;
}
/* AWARDS */
.content .awards {
	padding:40px 0 80px 0;
}
.content .awards .award {
	float:left;
	width:45%;
	width:CALC(50% - 10px);
	padding-bottom:40px;
	border-bottom:1px #00578A solid;
	margin-bottom:40px;
}
.content .awards .award:nth-child(odd) {
	clear:both;
}
.content .awards .award:nth-child(even) {
	float:right;
}
.content .awards .award .image-container {
	float:left;
	width:150px;
	height:125px;
	background-color:#fff;
	background-position:50% 50%;
	background-size:contain;
	background-repeat:no-repeat;
	margin-right:20px;
}
.content .awards .award h3 {
	text-transform:uppercase;
	font-size:1em;
	margin-bottom:20px;
	font-family:'Gotham Rounded Bold',sans-serif;
}
.content .awards .award p {
	font-size:0.8em;
	margin-bottom:5px;
}
/* CORPORATE RESPONSIBILITY */
.content .corporate-responsibility {
	padding:40px 0 80px 0;
}
.content .corporate-responsibility .download-link {
	display:block;
	overflow:hidden;
	text-transform:uppercase;
	font-size:1.2em;
	color:#b2b2b2;
	text-decoration:none;
	margin-top:40px;
	transition:color 0.1s linear;
	font-family:'Gotham Rounded Bold',sans-serif;
}
.content .corporate-responsibility .download-link i {
	float:right;
}
.content .corporate-responsibility .download-link:hover {
	color:#fff;
}
.content .corporate-responsibility .download-link:hover i {
	animation:bounce 1.5s ease-in-out both infinite;
}
/* WHO WE WORK WITH */
.content .who-we-work-with {
	padding:40px 0 20px 0;
}
.content .partners {
	background-color:#fff;
	overflow:hidden;
	padding:20px 0;
}
.content .partners .partner {
	float:left;
	width:CALC((100vw - 320px) / 8);
	height:CALC((100vw - 320px) / 8);
	max-width:110px;
	max-height:110px;
	border-radius:50%;
	background-color:#b2b2b2;
	background-position:50% 50%;
	background-size:contain;
	margin:20px;
}
.content .partners-spacer {
	height:160px;
}
/* BUILDING INFORMATION */
.content .building-information {
	padding:40px 0 160px 0;
}
/* OUR PEOPLE */
.content .our-people {
	padding:40px 0 0 0;
}
.content .people-row .sizer .person {
	float:left;
	width:CALC((100% - 60px) / 4);
	margin-right:20px;
	text-align:center;
	position:relative;
	overflow:hidden;
}
.content .people-row .sizer .person:last-child {
	margin-right:0;
}
.content .people-row .sizer .person .image-container {
	display:block;
	width:100%;
	height:200px;
	height:CALC((100vw - 140px) / 7);
	background-position:50% 50%;
	background-size:cover;
	transition:all 0.1s linear;
}
.content .people-row .sizer .person .image-container:hover {
	/* opacity:0.7; */
	transform:scale(1.1,1.1);
}
.content .people-row .sizer .person.active .image-container {
	/* opacity:0.4; */
}
.content .people-row .sizer .person h3 a {
	display:block;
	text-transform:uppercase;
	padding:20px 0;
	text-decoration:none;
	color:#575756;
}
.content .people-row .sizer .person h3 a:hover {
	display:block;
	text-transform:uppercase;
	padding:20px 0;
	text-decoration:none;
	color:#00578A;
}
.content .people-row .sizer .person i {
	position:absolute;
	right:20px;
	top:155px;
	font-size:2em;
	display:none;
}
.content .people-row .sizer .person.active i {
	/* display:block; */
}
.content .person-info {
	background-color:#ffffff;
	padding:40px 0;
	display:none;
	border-top:5px #575756 solid;
	border-bottom:5px #575756 solid;
}
.content .person-info .sizer {
	position:relative;
}
.content .person-info .sizer img {
	float:left;
	width:50%;
	width:CALC(50% - 20px);
	margin-right:20px;
}
.content .person-info .sizer .person-info-content {
	width:CALC(50% - 20px);
	float:right;
	font-size:1.2em;
}
.content .person-info .sizer .person-info-content h2 {
	text-transform:uppercase;
	font-size:1.2em;
	padding-right:80px;
	font-family:'Gotham Rounded Bold',sans-serif;
}
.content .person-info .sizer .person-info-content .title {
	text-transform:uppercase;
	font-size:1em;
	padding-right:80px;
	margin-bottom:20px;
}
.content .person-info .sizer .person-info-content p {
	margin-bottom:20px;
	line-height:1.2em;
	font-size:0.8em;
}
.content .person-info .sizer .person-info-content a {
	color:#00578A;
	text-decoration:none;
}
.content .person-info .sizer .close {
	font-size:2em;
	color:#575756;
	text-decoration:none;
	position:absolute;
	top:0;
	right:0;
	font-family:'Gotham Rounded Bold',sans-serif;
}
.content .people-spacer {
	height:160px;
}
/* SERVICES */
.content .services {
	padding:40px 0 0 0;
}
.content .services-row .sizer .service {
	float:left;
	width:CALC((100% - 60px) / 4);
	margin-right:20px;
	text-align:center;
	position:relative;
	overflow:hidden;
}
.content .services-row .sizer .service:last-child {
	margin-right:0;
}
.content .services-row .sizer .service .image-container {
	display:block;
	width:100%;
	height:CALC((100vw - 140px) / 7);
	background-position:50% 50%;
	background-size:cover;
	transition:all 0.1s linear;
}
.content .services-row .sizer .service .image-container:hover {
	/* opacity:0.7; */
	transform:scale(1.1,1.1);
}
.content .services-row .sizer .service.active .image-container {
	/* opacity:0.4; */
}
.content .services-row .sizer .service h3 a {
	display:block;
	text-transform:uppercase;
	padding:20px 0;
	text-decoration:none;
	color:#575756;
}
.content .services-row .sizer .service i {
	position:absolute;
	right:20px;
	top:155px;
	font-size:2em;
	display:none;
}
.content .services-row .sizer .service.active i {
	/* display:block; */
}
.content .service-info {
	background-color:#ffffff;
	padding:40px 0;
	display:none;
	border-bottom:5px #575756 solid;
	border-top:5px #575756 solid;
	float: left;
	width: 100%;
}
.content .service-info .sizer {
	position:relative;
}
.content .service-info .sizer img {
	float:left;
	width:50%;
	width:CALC(50% - 20px);
	margin-right:20px;
}
.content .service-info .sizer .service-info-content {
	width:CALC(50% - 20px);
	float:right;
	font-size:1.2em;
}
.content .service-info .sizer .service-info-content h1 {
	text-transform:uppercase;
	font-size:1.5em;
	margin-bottom:20px;
	padding-right:80px;
	color:#00578A;
	font-family:'Gotham Rounded Bold',sans-serif;
}
.content .service-info .sizer .service-info-content p {
	margin-bottom:20px;
	line-height:1.2em;
	font-size:0.8em;
}
.content .service-info .sizer .service-info-content a {
	color:#00578A;
	text-decoration:none;
}
.content .service-info .sizer .service-info-content ul {
	list-style:disc;
	list-style-position:outside;
	margin-left:20px;
	margin-bottom:20px;
	font-size:0.8em;
}
.content .service-info .sizer .service-info-content .view-link {
	display:block;
	overflow:hidden;
	text-transform:uppercase;
	font-size:1.2em;
	color:#575756;
	text-decoration:none;
	margin-top:40px;
	transition:color 0.1s linear;
	font-family:'Gotham Rounded Bold',sans-serif;
}
.content .service-info .sizer .service-info-content .view-link i {
	float:right;
}
.content .service-info .sizer .service-info-content .view-link:hover {
	color:#00578A;
}
.content .service-info .sizer .service-info-content .view-link:hover i {
	animation:bounce 1.5s ease-in-out both infinite;
}
.content .service-info .sizer .close {
	font-size:2em;
	color:#575756;
	text-decoration:none;
	position:absolute;
	top:0;
	right:0;
	font-family:'Gotham Rounded Bold',sans-serif;
}
.content .service-spacer {
	height:160px;
}
/* PROJECTS */
.content .projects {
	padding:40px 0 0 0;
	overflow:visible;
}
.content .projects h2 {
	font-size:2.8em;
	max-width:50%;
	text-transform:uppercase;
	margin-top:10px;
}
.content .projects .filter {
	margin-top:7px;
	margin-left:10px;
}
.content .projects .filter .filter-dropdown {
	width:200px;
	float:left;
	margin-left:20px;
}
.content .projects .filter .filter-dropdown > li {
	background-color:#fff;
	border-radius:10px;
	padding:5px 10px;
	font-size:0.9em;
	cursor:pointer;
	position:relative;
	min-width:208px;
}
.content .projects .filter .filter-dropdown > li.active {
	border-bottom-left-radius:0;
	border-bottom-right-radius:0;
}
.content .projects .filter .filter-dropdown > li > i {
	float:right;
}
.content .projects .filter .filter-dropdown > li > ul {
	position:absolute;
	left:0;
	top:100%;
	background-color:#fff;
	z-index:998;
	min-width:100%;
	padding:5px 0;
	display:none;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
	background-color:rgba(255, 255, 255, 0.9);
}
.content .projects .filter .filter-dropdown > li > ul > li > a {
	display:block;
	white-space:nowrap;
	padding:5px 10px;
	color:#575756;
	text-decoration:none;
}
.content .projects .filter .filter-dropdown > li > ul > li > a:hover {
	font-weight:bold;
}
.content .projects-row,
.content .services-row{
	clear:both;
}
.content .projects-row .sizer .project {
	float:left;
	width:CALC((100% - 60px) / 4);
	margin-right:20px;
	text-align:center;
	position:relative;
	overflow:hidden;
}
.content .projects-row .sizer .project:last-child {
	margin-right:0;
}
.content .projects-row .sizer .project .image-container {
	display:block;
	width:100%;
	height:CALC((100vw - 140px) / 7);
	background-position:50% 50%;
	background-size:cover;
	transition:all 0.1s linear;
}
.content .projects-row .sizer .project .image-container:hover {
	/* opacity:0.7; */
	transform:scale(1.1,1.1)
}
.content .projects-row .sizer .project.active .image-container {
	/* opacity:0.4; */
}
.content .projects-row .sizer .project h3 a {
	display:block;
	text-transform:uppercase;
	padding:20px 0;
	text-decoration:none;
	color:#575756;
}
.content .projects-row .sizer .project i {
	position:absolute;
	right:20px;
	top:155px;
	font-size:2em;
	display:none;
}
.content .projects-row .sizer .project.active i {
	/* display:block; */
}
.content .project-info {
	background-color:#ffffff;
	padding:40px 0;
	display:none;
	border-top:5px #575756 solid;
	border-bottom:5px #575756 solid;
	float: left;
	width: 100%;
}
.content .project-info .sizer {
	position:relative;
}
.content .project-info .sizer img {
	float:left;
	width:50%;
	margin-right:20px;
}
.content .project-info .sizer .slider {
	float:left;
	width:100%;
	margin-right:20px;
}
.content .project-info .sizer .slider {
	max-height:CALC(((50vw  - 80px) / 16) * 10);
}
.content .project-info .sizer .slider .prev {
	position:absolute;
	left:20px;
	top:48%;
	font-size:2.5em;
	color:#fff;
	z-index:998;
}
.content .project-info .sizer .slider .next {
	position:absolute;
	right:20px;
	top:48%;
	font-size:2.5em;
	color:#fff;
	z-index:998;
}
.content .project-info .sizer .project-info-content {
	width:CALC(50% - 20px);
	float:right;
	font-size:1.2em;
}
.content .project-info .sizer .project-info-content h2 {
	text-transform:uppercase;
	font-size:1.2em;
	margin-bottom:20px;
	padding-right:80px;
	font-family:'Gotham Rounded Bold',sans-serif;
}
.content .project-info .sizer .project-info-content p {
	margin-bottom:20px;
	line-height:1.2em;
	font-size:0.8em;
}
.content .project-info .sizer .project-info-content a {
	color:#00578A;
	text-decoration:none;
}
.content .project-info .sizer .project-info-content ul {
	list-style:disc;
	list-style-position:outside;
	margin-left:20px;
	margin-bottom:20px;
	font-size:0.8em;
}
.content .project-info .sizer .close {
	font-size:2em;
	color:#575756;
	text-decoration:none;
	position:absolute;
	top:0;
	right:0;
	font-family:'Gotham Rounded Bold',sans-serif;
}
.content .project-spacer {
	height:80px;
}
.project-search {
	float: left;
	margin-left: 25px;
	width: 200px;
}
.project-search input {
	background: url(img/footer-search.png) no-repeat 95% 50% #fff;
	border-radius: 50px;
	border: none;
	color: #615e60;
	font-family: 'Gotham Rounded Book', sans-serif;
	font-size: 12px;
	outline: none;
	padding: 5px 15px;
	margin: 0;
	width: 100%;
}
.no-results h2 {
	display: block;
	font-size: 1.2em;
	font-weight: bold;
	padding-bottom: 10px;
	text-decoration: none;
}
.no-results a {
	color: #b2b2b2;
	display: block;
	padding-bottom: 10px;
	text-decoration: none;
	text-transform: uppercase;
	transition: color .1s linear;
}
.no-results a:hover {
	color: #fff;
}

/* NEWS */
.news {
	padding:40px 0 80px 0;
}
.news .news-list-item {
	overflow:hidden;
	position:relative;
	margin-bottom:20px;
	border-bottom:1px #00578A solid;
}
.news .news-list-item .image-container {
	display:block;
	float:left;
	width:125px;
	height:100px;
	margin-right:20px;
	margin-bottom:20px;
	background-position:50% 50%;
	background-size:cover;
	transition:opacity 0.1s linear;
}
.news .news-list-item .image-container:hover {
	opacity:0.7;
}
.news .news-list-item h2 a {
	color:#575756;
	text-transform:uppercase;
	text-decoration:none;
	font-size:1.2em;
	display:block;
	padding-bottom:10px;
	font-weight:bold;
	transition:color 0.1s linear;
}
.news .news-list-item h2 a:hover {
	color:#00578A;
}
.news .news-list-item time {
	color:#575756;
	text-transform:uppercase;
	text-decoration:none;
	font-size:1.2em;
	display:block;
	padding-bottom:10px;
	font-weight:bold;
}
.news .news-list-item p {
	font-size:0.8em;
	line-height:1.2em;
	margin-bottom:20px;
	padding-right:40px;
}
.news .news-list-item .read-more {
	position:absolute;
	right:0;
	top:40px;
	color:#575756;
	font-size:1.2em;
	font-size:2em;
	transition:color 0.1s linear;
}
.news .news-list-item .read-more:hover {
	color:#00578A;
}
.news .blog-nav {
	text-align:center;
	min-height:57px;
}
.news .blog-nav a {
	color:#575756;
	text-decoration:none;
	text-transform:uppercase;
	font-size:1.2em;
	font-weight:bold;
}
.news .blog-nav a:hover {
	color:#00578A;
}
.news .blog-nav a i {
	margin-top:10px;
	font-size:1.5em;
}
.news .blog-nav img {
	display:none;
}
#hidden-content {
	display:none;
}
/* SINGLE NEWS */
.single-news {
	padding:40px 0 80px 0;
}
.back-to-news {
	/*max-width:1200px;*/
	max-width:CALC(100vw - 80px);
	margin:auto;
	border-top:1px #00578A solid;
	padding: 20px 0 60px 0;
}
.back-to-news a {
	color:#575756;
	text-transform:uppercase;
	text-decoration:none;
	font-size:1.2em;
	display:inline-block;
	padding-bottom:20px;
	transition:color 0.1s linear;
}
.back-to-news a:hover {
	color:#00578A;
}
.back-to-news a i {
	font-size:1.5em;
}
/* CAREERS */
.content .careers {
	padding:40px 0 40px 0;
}
.page-template-template-vacancies .content .careers {
	padding:40px 0 0 0;
}
.content .careers .download-link {
	display:block;
	overflow:hidden;
	text-transform:uppercase;
	font-size:0.8em;
	color:#575756;
	text-decoration:none;
	margin-top:20px;
	transition:color 0.1s linear;
	font-family:'Gotham Rounded Bold',sans-serif;
}
.content .careers .download-link i {
	float:right;
}
.content .careers .download-link:hover {
	color:#00578A;
}
.content .careers .download-link:hover i {
	animation:bounce 1.5s ease-in-out both infinite;
}
.content .vacancies {
	padding:40px 0 40px 0 80px 0;
}
.content .vacancies h2 {
	text-transform:uppercase;
	font-size:2.8em;
	margin-bottom:80px;
}
.content .vacancies .vacancy {
	float:left;
	width:CALC(50% - 20px);
	margin-right: 20px;
	border-top:1px #009ee2 solid;
	padding:20px 0;
	margin-bottom:20px;
}
/* CONTACT */
.content .contact {
	padding:40px 0 40px 0;
	border-bottom:1px #009ee2 solid;
}
.content .sizer.contact > .inner > .content-left-column {
	width:CALC(70% - 20px);
	position:relative;
	text-align:center;
}
.content .sizer.contact > .inner > .content-left-column img {
	max-height:CALC(100vh - 300px);
	width:auto;
	margin:auto;
}
.content .sizer.contact > .inner > .content-left-column .leeds-link {
	display:block;
	position:absolute;
	right:15.42%;
	top:44.10%;
	width:22.5%;
	height:2.76%;
}
.content .sizer.contact > .inner > .content-left-column .london-link {
	display:block;
	position:absolute;
	left:25.58%;
	bottom:4.14%;
	width:22.5%;
	height:2.76%;
}
.content .sizer.contact > .inner > .content-left-column .skipton-link {
	display:block;
	position:absolute;
	left:15%;
	top:32.78%;
	width:22.5%;
	height:2.76%;
}
.content .sizer.contact > .inner > .content-right-column {
	width:CALC(30% - 20px);
}
.content .sizer.contact > .inner > .content-right-column a {
	color:#575756;
	transition:color 0.1s linear;
}
.content .sizer.contact > .inner > .content-right-column a:hover {
	color:#00578A;
}
.content .sizer.contact > .inner > .content-right-column a:hover i {
	animation:bounce 1.5s ease-in-out both infinite;
}
.content .sizer.contact > .inner > .content-right-column p, .content .sizer.contact > .inner > .content-right-column h2 {
	margin-bottom:10px;
}
.content .contact .download-link {
	display:block;
	overflow:hidden;
	text-transform:uppercase;
	font-size:1em;
	color:#b2b2b2;
	text-decoration:none;
	margin-top:10px;
	font-family:'Gotham Rounded Bold',sans-serif;
}
.content .contact .download-link i {
	float:right;
}.content .contact .download-link:hover {
	color:#fff;
}
.content .contact-spacer {
	height:160px;
}

/* INNER PAGES */
.content .sizer > h1, .content .sizer > .section-title {
	font-size:30px;
	max-width:50%;
	text-transform:uppercase;
	float:left;
	margin-bottom: 40px;
	color:#00578A;
}
.content .sizer > .content-sectors {
	float:right;
	width:200px;
	margin:0 0 40px 0;
	overflow:hidden;
	padding-bottom:20px;
	border-bottom:1px #b2b2b2 solid;
}
.content .sizer > .content-sectors img {
	float:left;
	width:CALC((100% - 20px) / 3);
	height:auto;
	margin-right:10px;
}
.content .sizer > .content-sectors a:last-child img {
	margin-right:0;
}
.content .sizer > .inner {
	clear:both;
}
.content .sizer > .inner > .content-left-column, .content .sizer > .content-left-column {
	float:left;
	width:50%;
	width:CALC(50% - 10px);
	height:auto;
}
.content .sizer > .inner > .content-left-column > .slider {
	height:500px;
	height:CALC((((100vw - 90px) / 2) / 16) * 9);
}
.content .sizer > .inner > .content-left-column > iframe, .content .sizer > .inner > .content-right-column > iframe {
	width:100%;
	height:500px;
	height:CALC((((100vw - 90px) / 2) / 16) * 9);
}
.content .sizer > .content-left-column > iframe, .content .sizer > .content-right-column > iframe {
	width:100%;
	height:500px;
	height:CALC((((100vw - 90px) / 2) / 16) * 9);
}
.content .sizer > .inner > .content-right-column {
	float:right;
	width:50%;
	width:CALC(50% - 10px);
	padding:0;
}
.content .sizer > .inner > .content-right-column > .slider {
	height:500px;
	height:CALC((((100vw - 90px) / 2) / 16) * 9);
}

/* USER CONTENT */
.user-content {
	font-size:1.2em;
}
.user-content h1 {
	text-transform:uppercase;
	font-size:1.5em;
	line-height:1.2em;
	margin-bottom:20px;
	color:#00578A;
}
.user-content h2 {
	text-transform:uppercase;
	font-size:1em;
	line-height:0.9em;
	margin-top:20px;
	margin-bottom:10px;
	font-weight:bold;
	color:#00578A;
}
.user-content h3 {
	text-transform:uppercase;
	font-size:0.8em;
	line-height:1.2em;
	margin-bottom:10px;
	font-weight:bold;
	color:#00578A;
}
.user-content h4 {
	font-size:0.8em;
	line-height:1.2em;
	margin-bottom:10px;
	font-weight:bold;
	color:#00578A;
}
.user-content h5 {
	text-transform:uppercase;
	font-size:0.8em;
	line-height:1.2em;
	margin-bottom:10px;
	font-weight:bold;
	color:#575756;
}
.user-content h6 {
	font-size:0.8em;
	line-height:1.2em;
	margin-bottom:10px;
	font-weight:bold;
	color:#575756;
}
.user-content time {
	text-transform:uppercase;
	font-size:0.8em;
	line-height:1.2em;
	margin-bottom:20px;
	font-weight:bold;
	display:block;
}
.user-content p {
	line-height:1.2em;
	font-size:0.8em;
	margin-bottom:15px;
	color:#575756;
}
.user-content p:last-child {
	margin-bottom:0;
}
.user-content a {
	color:#00578A;
	font-weight:bold;
	text-decoration:none;
}
.user-content strong {
	font-weight:bold;
}
.user-content ul {
	list-style:disc;
	padding-left:20px;
	list-style-position:outside;
	margin-bottom:20px;
	font-size:0.8em;
}
.user-content ol {
	font-size:0.8em;
	list-style:decimal;
	padding-left:20px;
	list-style-position:outside;
}
.user-content ul li {
	font-size:1em;
	margin-bottom:5px;
}
.user-content ol li {
	font-size:1em;
	margin-bottom:5px;
}
.user-content img {
	max-width: 100%;
	height: auto;
}

/* -------------------
        FOOTER
--------------------*/
footer {
	color:#fff;
	padding:40px 0;
	overflow:hidden;
	width: 100%;
	float: left;
}
footer .sizer .left-column {
	float:left;
	overflow:hidden;
}
footer .sizer .left-column .address {
	float:left;
	margin-right:80px;
	margin-bottom:20px;
}
footer .sizer .left-column .address h5 {
	margin-bottom:20px;
	text-transform:uppercase;
	font-family:'Gotham Rounded Bold',sans-serif;
}
footer .sizer .left-column .address h5 a {
	color:#fff;
	text-decoration:none;
}
footer .sizer .left-column .address p {
	line-height:1.2em;
	font-size:0.8em;
}
footer .sizer .left-column > p {
	margin-bottom:5px;
	font-size:0.8em;
}
footer .sizer .left-column > p > strong {
	display:inline-block;
	width:80px;
	font-family:'Gotham Rounded Bold',sans-serif;
}
footer .sizer .left-column > p > a {
	color:#fff;
	text-decoration:none;
}
footer .sizer .right-column {
	float:right;
}
footer .sizer .right-column .footer-logo {
	float:right;
	display:inline-block;
	height:50px;
	width:200px;
	background:url(img/bowmanriley-logo.png) no-repeat 100% 0;
	background-size:contain;
}
footer .sizer .right-column form input {
	border:none;
	border-radius:50px;
	padding:5px 15px;
	outline:none;
	color:#615e60;
	font-family:'Gotham Rounded Book',sans-serif;
	background:url(img/footer-search.png) no-repeat 95% 50% #fff;
}
footer .sizer .right-column .footer-social {
	overflow:hidden;
	margin-top:50px;
}
footer .sizer .right-column .footer-social li {
	float:left;
	width:25%;
	text-align:center;
}
footer .sizer .right-column .footer-social li a {
	color:#b2b2b2;
	font-size:1.6em;
	transition:color 0.1s linear;
}
footer .sizer .right-column .footer-social li a:hover {
	color:#fff;
}
footer .sizer > strong {
	clear:both;
	width:100%;
	display:block;
	font-size:0.8em;
	padding-top:20px;
	font-family:'Gotham Rounded Bold',sans-serif;
}
footer .sizer > strong a {
	color:#fff;
	text-decoration:none;
}

/* LIGHTBOX */
.lightbox {
	position:fixed;
	top:0;
	left:0;
	width:100vw;
	height:100vh;
	padding:40px;
	background-color:rgba(0,0,0,0.8);
	z-index:999;
	display:none;
}
.lightbox .inner {
	display:table-cell;
	vertical-align:middle;
	text-align:center;
	background-position:50% 50%;
	background-size:contain;
	background-repeat:no-repeat;
	width:100%;
}
.lightbox .inner form {
	max-width:600px;
	padding:40px;
	margin:auto;
	background-color:#231f20;
	color:#b2b2b2;
}
.lightbox .inner form h2 {
	text-transform:uppercase;
	font-family:'Gotham Rounded Bold',sans-serif;
	font-size:2em;
	margin-bottom:20px;
}
.lightbox .inner form label {
	width:100%;
	text-align:left;
	display:block;
	margin-bottom:20px;
}
.lightbox .inner form label input[type=text], .lightbox .inner form label input[type=email] {
	width:100%;
	padding:10px;
	border:none;
	margin-top:5px;
	outline:none;
}
.lightbox .inner form label input[type=file] {
	margin-top:5px;
}
.lightbox .inner form input[type=submit] {
	background-color:#009ee2;
	color:#fff;
	padding:10px 20px;
	border:none;
	font-size:1.5em;
	cursor:pointer;
	margin-top:20px;
	font-family:'Gotham Rounded Bold',sans-serif;
}
.lightbox .close {
	font-size:2em;
	color:#b2b2b2;
	text-decoration:none;
	position:absolute;
	top:30px;
	right:30px;
}
/* Featherlight overrides */
.featherlight-previous {
	position:fixed !important;
	top: auto !important;
	right: auto !important;
	bottom:0 !important;
	left:0 !important;
	width: 50px !important;
	height: 50px !important;
	background-color: transparent !important;
}
.featherlight-previous:after {
	content:"<";
	position: absolute;
	left:10px;
	bottom:10px;
	color:#fff;
	font-size:4em;
}
.featherlight-previous span, .featherlight-previous span img {
	display: none !important;
	width: 0px !important;
	height: 0px !important;
	opacity: 0 !important;
	position: fixed !important;
	top:3000% !important;
}
.featherlight-next {
	position:fixed !important;
	top: auto !important;
	left: auto !important;
	bottom:0 !important;
	right:0 !important;
	width: 50px !important;
	height: 50px !important;
	background-color: transparent !important;
}
.featherlight-next:after {
	content:">";
	position: absolute;
	left:10px;
	bottom:10px;
	color:#fff;
	font-size:4em;
}
.featherlight-next span, .featherlight-next span img {
	display: none !important;
	width: 0px !important;
	height: 0px !important;
	opacity: 0 !important;
	position: fixed !important;
	top:3000% !important;
}
.featherlight .featherlight-content {
	background-color:transparent !important;
}
.featherlight-close-icon {
	position: fixed !important;
	top:0 !important;
	right:0 !important;
	width:50px !important;
	line-height:50px !important;
	background-color: transparent !important;
	font-size: 40px;
	color: #fff !important;
}
.featherlight .featherlight-content {
    border: 0;
    padding: 0;
}
.featherlight .featherlight-image {
    border: 20px solid transparent;
    max-width: 100%;
}

@media only screen and (min-width: 1025px) {
  header .main-menu {
  	display: block !important;
  }
}

@media(min-width:1025px) and (max-width:1168px) {
  header .main-menu > ul > li {
  	margin-right: 10px;
  }

  header .main-menu > ul > li > a {
  	font-size: .9em;
  }
}

@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-image {
      border: 10px solid transparent;
  }

  header .main-menu > ul {
  	width: 100%;
  }

  header .header-search {
		float: left;
  	margin: 10px 10px 20px;
  	max-width: 480px;
  	width: calc(100% - 20px);
  }
}

/* -------------------
     ANIMATIONS
--------------------*/
@keyframes bounce {
	100% {transform:translate3d(0, 0px, 0);}
	50% {transform:translate3d(-10px, 0, 0);}
}

/* -------------------
      RESPONSIVE
--------------------*/
@media(min-width:768px) and (max-width:1025px){
	.content .project-info .sizer .project-info-content h2 {
		padding-right:0 !important;
	}
	.content .sizer, .content .sizer .slider {
		float:left;
		width:100% !important;
		width:CALC(100% - 10px) !important;
		height:auto;
	}

	header {
		padding:0 10px;
	}
	header .menu-button {
		display:block;
	}
	header .main-menu {
		position:absolute;
		top:60px;
		left:0;
		right:0;
		border-top:1px #888 solid;
		background-color:#615e60;
		display:none;
	}
	header .main-menu > ul > li {
		display:block;
		margin-right:0;
	}
	header .main-menu > ul > li > a {
		padding:10px;
		height:auto;
		line-height:1.2em;
		border-bottom:none;
	}
	header .main-menu > ul > li.current-menu-item > a, header .main-menu > ul > li.active > a, header .main-menu > ul > li.current_page_parent > a, header .main-menu > ul > li > a:hover {
		border-bottom:none;
	}
	header .main-menu > ul > li > ul {
		position:relative;
		top:auto;
		left:auto;
		background-color:rgba(255, 255, 255, 0.9);
	}
	.content .slider .slide .sizer {
		padding-left:20px;
		padding-right:20px;
	}
	.content .home-content {
		padding:20px;
	}
	.content .right-column {
		width:40%;
		padding-right:0;
	}
	.content .left-column {
		width:60%;
	}
	.content .home-content .home-services .service .image-container {
		height:120px;
	}
	.content .our-story {
		padding:20px;
	}
	.content .sizer > .inner > .content-left-column > .slider {
		height:250px;
	}
	.content .sizer > .inner > .content-right-column > .slider {
		height:250px;
	}
	.content .certifications .sizer {
		padding:20px;
		min-height:auto;
	}
	.content .certifications .cert-box {
		margin-top:20px;
	}
	.content .cert-spacer {
		height:40px;
	}
	.content .services {
		padding:20px;
	}
	.content .people-row {
		padding:0 20px;
	}
	.content .people-row .sizer .person .image-container {
		height:120px;
	}
	.content .person-info {
		padding:40px 20px 20px 20px;
	}
	.content .people-row .sizer .person i {
		top:90px;
	}
	.content .person-info .sizer img {
		width:50%;
	}
	.content .person-info .sizer .person-info-content {
		width:45%;
	}
	.content .service-spacer {
		height:40px;
	}
	.content .awards {
		padding:20px;
	}
	.content .awards .award .image-container {
		margin-bottom: 20px;
	}
	.content .corporate-responsibility {
		padding:20px;
	}
	.content .building-information {
		padding:20px;
	}
	.content .sizer > h1, .content .sizer > .section-title {
		margin-bottom:20px;
	}
	.content .services-row {
		padding:0 20px;
	}
	.content .services-row .sizer .service .image-container {
		height:120px;
	}
	.content .service-info {
		padding:40px 20px 20px 20px;
	}
	.content .services-row .sizer .service i {
		top:90px;
	}
	.content .service-info .sizer img {
		width:50%;
	}
	.content .service-info .sizer .service-info-content {
		width:45%;
	}
	.content .projects-row {
		padding:0 20px;
	}
	.content .projects-row .sizer .project .image-container {
		height:120px;
	}
	.content .project-info {
		padding:40px 20px 20px 20px;
	}
	.content .projects-row .sizer .project i {
		top:90px;
	}
	.content .project-info .sizer img {
		width:50%;
	}
	.content .project-info .sizer .project-info-content {
		width:45%;
	}
	.content .project-info .sizer img, .content .project-info .sizer .slider {
		width:50%;
		height:300px;
		max-height:1000px;
	}
	.content .projects .filter .filter-dropdown {
		margin-bottom:10px;
	}
	.news {
		padding:20px;
	}
	.single-news {
		padding:20px;
	}
	.content .careers {
		padding:20px;
	}
	.content .vacancies {
		padding:20px;
	}
	.content .vacancies h2 {
		margin-bottom:20px;
	}
	.content .contact {
		padding:20px;
	}
	.content .contact-spacer {
		height:40px;
	}
	.content .sizer.contact > .inner > .content-left-column img {
		width:100%;
		height:auto;
	}
	footer {
		padding:20px;
	}
	footer .sizer .left-column .address {
		margin-right:40px;
	}
}
@media(max-width:767px){
	.content .project-info .sizer .project-info-content h2 {
		padding-right:0 !important;
	}
	
	.sizer > .content-left-column {
		width:100% !important;
	}
	.content .sizer, .content .sizer .slider {
		float:left;
		width:100% !important;
		height:auto;
	}

	header {
		padding:0 10px;
	}
	header .menu-button {
		display:block;
	}
	header .main-menu{
		position:absolute;
		top:60px;
		left:0;
		right:0;
		border-top:1px #888 solid;
		background-color:#FFF;
		display:none;
		max-height:90vh;
		overflow-y: scroll;
	}
	header .main-menu > ul > li {
		display:block;
		margin-right:0;
	}
	header .main-menu > ul > li > a {
		padding:10px;
		height:auto;
		line-height:1.2em;
		border-bottom:none;
	}
	header .main-menu > ul > li.current-menu-item > a, header .main-menu > ul > li.active > a, header .main-menu > ul > li.current_page_parent > a, header .main-menu > ul > li > a:hover {
		border-bottom:none;
	}
	header .main-menu > ul > li > ul {
		position:relative;
		top:auto;
		left:auto;
		background-color:rgba(255, 255, 255, 0.9);
	}
	.sizer {
		max-width:100%;
	}
	.content .slider .slide .sizer {
		padding:20px 10px;
		font-size:2em;
	}
	.content .slider .sectors {
		display:none;
	}
	.content .home-content {
		padding:20px 10px;
	}
	.content .left-column {
		width:100%;
		float:none;
		margin-bottom:20px;
	}
	.content .right-column {
		width:100%;
		float:none;
		padding:0;
	}
	.content .home-content .right-column .social {
		margin-top:10px;
		padding-bottom:20px;
	}
	.content .home-content h2 {
		margin-bottom:20px;
		color:#00578A;
		size:1.3em;
	}
	.content .home-content .home-services .service {
		width:100%;
		float:none;
		margin-right:0;
		margin-bottom:20px;
	}
	.content .our-story {
		padding:20px 10px;
	}
	.content .sizer > h1, .content .sizer > .section-title {
		max-width:100%;
		margin-bottom: 20px;
		font-size:2em;
	}
	.content .sizer > .content-sectors {
		display:none;
	}
	.content .sizer > .inner > .content-left-column {
		float:none;
		width:100%;
		margin-bottom:20px;
	}
	.content .sizer > .inner > .content-right-column {
		float:none;
		width:100%;
	}
	.content .sizer > .inner > .content-left-column > .slider {
		height:200px;
		max-height:1000px;
	}
	.content .sizer > .inner > .content-right-column > .slider {
		height:200px;
		margin-bottom:20px;
		max-height:1000px;
	}
	.content .sizer > .inner > img.content-right-column {
		margin-bottom:20px;
	}
	.content .certifications {
		padding:0 10px;
	}
	.content .certifications .sizer {
		min-height:auto;
	}
	.content .certifications .cert-box {
		width:CALC(50% - 20px);
		margin:10px 0;
		height:CALC((100vw - 40px) / 2);
		max-height:500px;
		max-width:500px;
	}
	.content .certifications .cert-box:nth-child(even){
		float:right;
	}
	.content .cert-spacer {
		height:20px;
	}
	.content .services {
		padding:20px 10px;
	}
	.content .people-row {
		padding:0 10px;
	}
	.content .people-row .sizer .person {
		width:100%;
		margin-bottom:20px;
	}
	.content .people-row .sizer .person .image-container {
		height:150px;
	}
	.content .person-info {
		padding:0;
	}
	.content .person-info .sizer {
		padding:50px 10px 20px 10px;
	}
	.content .person-info .sizer img {
		float:none;
		width:100%;
		margin-bottom:20px;
	}
	.content .person-info .sizer .person-info-content {
		width:100%;
		float:none;
		padding:0 10px;
	}
	.content .person-info .sizer .close {
		top:10px;
		right:10px;
	}
	.content .services-row {
		padding:0 10px;
	}
	.content .services-row .sizer .service {
		width:100%;
		margin-bottom:20px;
	}
	.content .service-info {
		padding:0;
	}
	.content .service-info .sizer {
		padding:50px 10px 20px 10px;
	}
	.content .service-info .sizer img {
		float:none;
		width:100%;
		margin-bottom:20px;
	}
	.content .service-info .sizer .service-info-content {
		width:100%;
		float:none;
		padding:0 10px;
	}
	.content .service-info .sizer .close {
		top:10px;
		right:10px;
	}
	.content .service-spacer {
		height:20px;
	}
	.content .awards {
		padding:20px 10px;
	}
	.content .awards .award {
		width:100%;
	}
	.content .awards .award .image-container {
		margin-bottom:20px;
		width:100%;
		float:none;
		height:150px;
	}
	.content .corporate-responsibility {
		padding:20px 10px;
	}
	.content .building-information {
		padding:20px 10px;
	}
	.content .projects {
		padding:20px 10px;
	}
	.content .projects .filter {
		margin-left: 0;
	}
	.content .projects .filter .filter-dropdown {
		margin:0 0 10px 0;
	}
	.content .projects-row {
		padding:0 10px;
	}
	.content .projects-row .sizer .project {
		width:100%;
		margin-bottom:20px;
	}
	.content .project-info {
		padding:0;
	}
	.content .project-info .sizer {
		padding:50px 10px 20px 10px;
	}
	.content .project-info .sizer img {
		float:none;
		width:100%;
		margin-bottom:20px;
	}
	.content .project-info .sizer .project-info-content {
		width:100%;
		float:none;
		padding:0 10px;
	}
	.content .project-info .sizer .close {
		top:10px;
		right:10px;
	}
	.content .project-info .sizer img, .content .project-info .sizer .slider {
		width:100%;
		max-height:1000px;
	}
	.content .project-info .sizer .slider {
		height:300px;
		margin-bottom:20px;
		max-height:1000px;
	}
	.news {
		padding:20px 10px;
	}
	.news .news-list-item .image-container {
		width:100%;
		float:none;
		margin-bottom: 20px;
		height:200px;
	}
	.news .news-list-item .read-more {
		position:relative;
		right:auto;
		float:right;
		top:auto;
		margin-bottom:10px;
	}
	.single-news {
		padding:20px 10px;
	}
	.back-to-news {
		padding-bottom:0;
	}
	.content .careers {
		padding:20px 10px;
	}
	.content .vacancies {
		padding:40px 10px 20px 10px;
	}
	.content .vacancies h2 {
		font-size:2em;
		margin-bottom:20px;
	}
	.content .vacancies .vacancy {
		float:none;
		width:100%;
		margin-bottom:20px;
	}
	.content .contact {
		padding:20px 10px;
	}
	.content .sizer.contact > .inner > .content-left-column {
		width:100%;
		float:none;
	}
	.content .sizer > .inner > .content-left-column > iframe, .content .sizer > .inner > .content-right-column > iframe {
		height:CALC(((100vw - 20px) / 16) * 9);
	}
	.content .sizer.contact > .inner > .content-right-column {
		width:100%;
		float:none;
	}
	.content .contact-spacer {
		height:20px;
	}
	.content .home-content .home-services .service .image-container, .content .services-row .sizer .service .image-container, .content .projects-row .sizer .project .image-container {
		height:175px;
	}
	footer {
		padding:20px 10px;
	}
	footer .sizer .left-column {
		float:none;
		width:100%;
	}
	footer .sizer .left-column .address {
		float:none;
		margin-right:0;
	}
	footer .sizer .right-column {
		float:none;
		width:100%;
	}
	footer .sizer .right-column .footer-logo {
		display:none;
	}
	footer .sizer .footer-search {
		display:none;
	}
	footer .sizer .right-column .footer-social {
		margin-top: 10px;
	}
	footer .sizer > strong {
		padding-top:20px;
	}
}
