/* CSS Document */
/* reset */
html, body, div, img, table, tr, td, span, h1, h2, h3, h4, p, a, figure, aside, header, footer, nav, ul {
  margin: 0;
  padding: 0;
}
html {
  width: 100%;
  height: 100% !important;
}
body {
  color: #444;
  padding-top: 100px;
  font-family: 'Azo Sans', sans-serif;
}
* {
  outline: none;
}
a {
  border: none;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  text-decoration: none;
  cursor: pointer;
}
img {
  display: block;
  border: none;
  max-width: 100%;
}
div.content-wrapper {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  overflow-y: hidden;
}
div.content-wrapper-small {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  overflow-y: hidden;
}
div.intro-page {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #111;
  background-image: url("../img/pattern-bg.svg");
  background-repeat: repeat;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.intro-page-logo {
  width: 238px;
  height: 70px;
  background-image: url("../img/inline-logo.png");
}
div.masthead {
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: grey;
  margin-bottom: 100px;
  background-image: url("../img/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
div.masthead div.inner {
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
div.masthead h1 {
  color: #fff;
  font-size: 4em;
  margin-bottom: 0.5em;
  line-height: 1.1em;
}
div.filter {
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
}
div.service {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
/* intro module */
div.intro {
  background-color: #f5f5f5;
  padding: 8% 20% 5% 20%;
  text-align: center;
  margin: 40px 0 100px 0;
  position: relative;
}
span.intro-icon {
  display: block;
  position: absolute;
  top: -41px;
  left: calc(50% - 41px);
  width: 82px;
  height: 82px;
  background-image: url("/img/triangle-asset-dark.svg");
  background-repeat: no-repeat;
  background-position: center;
  color: #444;
}
div.intro-icon {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 25px auto;
  background-image: url("/img/triangle-asset-dark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: #444;
}
div.what-we-do div.text {
  width: 46%;
  flex-direction: column;
	margin-top:30px;
}
div.what-we-do div.image {
  width: 46%;
}
div.what-we-do div.image figure {
  height: 490px;
  margin-bottom: 15px;
  background: #f2f2f2;
}
div.what-we-do div.image figure.image1 {
  background-image: url("/img/coaleyfields.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
div.what-we-do div.image figure.image2 {
  background-image: url("/img/team.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
}
/* stats */
div.stats {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 100px 0;
  border-top: 3px solid #ccc;
  overflow-y: hidden !important;
}
div.stat {
  text-align: center;
}
a.linkedin {
  display: block;
  width: 23px;
  height: 22px;
  background-image: url("../img/linkedin-icon.svg");
  background-repeat: no-repeat;
}
a.default-btn {
  display: inline-block;
  padding: 1em 3em;
  background-color: #DC8F2D;
  color: #fff;
  border-radius: 100px;
  position: relative;
}
a.default-btn:hover {
  background-color: #B8591A;
}
a.default-btn:after {
  content: '\e5cc';
  font-family: 'Material Icons';
  position: absolute;
  opacity: 0;
  top: 18px;
  right: -5px;
  transition: 0.5s;
}
a.default-btn:hover:after {
  opacity: 1;
  right: 10px;
}
div.center-btn-wrap {
  text-align: center;
  margin: 0 auto 100px auto;
}
header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 20px -11px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 1px 20px -11px rgba(0, 0, 0, 0.75);
  box-shadow: 1px 1px 20px -11px rgba(0, 0, 0, 0.75);
}
header div.inner {
  width: 100%;
  height: 120px;
  position: relative;
}
/* logo */
a.logo {
  width: 170px;
  height: 50px;
  margin: 0 auto;
  position: absolute;
  left: calc(50% - 85px);
  top: 30px;
  background-image: url("../img/inline-logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
/*a.logo-shrink {
  display: block;
  position: absolute;
  top: calc(50% - 29px);
  left: calc(50% - 29px);
  width: 58px;
  height: 58px;
  background-image: url("/img/triangle-asset.svg");
  background-repeat: no-repeat;
}*/
/* telephone number */
a.icon-logo {
  display: block;
  width: 107px;
  height: 100px;
  position: absolute;
  left: 0;
  top: o;
  background-image: url("../img/icon-logo.png");
  background-repeat: no-repeat;
  background-size: contain;
}
div.header-tel-wrap {
  position: absolute;
  right: 280px;
  top: 40px;
}
div.header-tel {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 1em;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.1em;
}
div.header-tel::before {
  content: '\e551';
  font-family: 'Material Icons';
  position: absolute;
  left: 0;
}
/* contact button */
a.header-contact {
  display: flex;
  height: 100px;
  background-color: #DC8F2D;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 3em;
  text-transform: uppercase;
  align-items: center;
  font-weight: bold;
  font-size: 0.9em;
  letter-spacing: 0.25em;
}
a.header-contact:hover {
  background-color: #B8591A;
}
div.banner {
  width: 100%;
  height: 650px;
  background-color: #f2f2f2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 60px;
}

div.planning-consultancy {
  background-image: url("../img/Stow-Drone2.jpg");
}

div.land-promotion {
  background-image: url("../img/exterior5.jpg");
}

div.hartpury {
  background-image: url("../img/hartpury1.png");
}

div.about-us {
	background-image: url("../img/team.png");
}
.nav-up {
  transform: translateY(-100px);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.nav-down {
  transform: translateY(0);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
div.parallax {
  width: 100%;
  height: 600px;
  background-color: grey;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image: url("../img/parallax.jpg");
  background-size: cover;
}
div.testimonial {
  padding: 100px 0;
  text-align: center;
  background-color: #f2f2f2;
  margin-bottom: 100px;
}
div.intro-block {
  text-align: center;
}
div.intro-block p {
  font-style: normal;
  font-size: 1.1em;
  line-height: 1.75em;
  margin-bottom: 1.75em;
}
div.content-block {
  padding-top: 60px;
  margin-bottom: 60px;
}



div.content-block p:first-of-type {
  font-style: normal;
	font-weight: 500;
  font-size: 1.1em;
  line-height: 1.75em;
  margin-bottom: 1.75em;
}


div.block-images {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 60px 0 100px 0;
}
div.block-images figure:first-of-type {
  width: 60%;
  height: 350px;
}
div.block-images figure:last-of-type {
  width: 35%;
  height: 350px;
}

div.siteplan {
	margin:100px 0;
}
div.contact-cta {
  width: 100%;
  height: auto;
  padding: 75px 0;
  background-color: #999;
  background-image: url("/img/coaleyfields.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 100px;
}
div.contact-box {
  width: calc(60% - 150px);
  height: auto;
  background-color: #495F6A;
  color: #fff;
  padding: 75px;
  margin: 0 auto;
  text-align: center;
  -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.2);
}
div.contact-box h2 {
  margin-bottom: 50px;
}
div.contact-box h2 {
  color: #fff;
}
div.contact-box h2::after {
  background-color: #fff;
}
/* slideshow */
div.slideshow .glide__track {
  max-height: 650px;
}
div.slideshow li.glide__slide {
  background-colour: #999;
  height: 650px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
li.hartpury1 {
  background-image: url("/img/coaleyfields.jpeg");
}
li.hartpury2 {
  background-image: url("/img/coaleyfields.jpeg");
}
li.hartpury3 {
  background-image: url("/img/coaleyfields.jpeg");
}
li.hartpury4 {
  background-image: url("/img/coaleyfields.jpeg");
}
li.hartpury5 {
  background-image: url("/img/coaleyfields.jpeg");
}
div.slideshow .glide__bullets {
  position: static;
  width: 100%;
  display: inline-flex;
  transform: none;
  justify-content: center;
  margin: 50px auto 100px auto;
}
div.slideshow .glide__bullet {
  background-color: #ccc;
  box-shadow: none;
  width: 12px;
  height: 12px;
  border: none;
  margin: 0 .75em;
}
div.slideshow .glide__bullet--active {
  background-color: #DC8F2D;
}
/* testimonial glide overrides */
div.testimonial .glide {
  width: 96%;
  max-width: 700px;
  margin: 0 auto;
}
div.testimonial .glide__bullets {
  position: static;
  transform: none;
}
div.testimonial .glide__bullet {
  background-color: #ccc;
  box-shadow: none;
  width: 12px;
  height: 12px;
  border: none;
  margin: 0 .75em;
}
div.testimonial .glide__bullet--active {
  background-color: #DC8F2D;
}
div.testimonial .glide__slide h3 {
  font-style: italic;
}




/* mobile navigation */
.header_main-navigation {
    background-color: #495F6A;
    position: absolute;
    right: -25px;
    top: -25px;
    padding: 70px 10% 0 10%;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    height: 100vh;
	width:30vw;
    font-size: 1em;
    overflow: scroll;
}
.header_main-navigation ul {
	list-style-type:none;
	text-align:left;
	min-width: 300px;
	margin:0;
	padding:0;
}

.header_main-navigation ul li {
	position: relative;
}


.header_main-navigation ul > li::after {
	content:' ';
	border-bottom: 1px solid #fff;
	opacity: 0.2;
	position: absolute;
	bottom:0;
	left:0;
	width:100%;
}


.header_main-navigation ul li a {
	font-family: "azo-sans-web", sans-serif;
	font-weight: normal;
	color:white;text-decoration:none;
	text-transform: Capitalize;
	display: block;
	padding:0.75em 0;
	font-size: 1.25em;
	opacity: 0.75;
}
.header_main-navigation ul li a:hover {
	opacity:1;
}

.header_main-navigation ul li ul {
	margin-bottom: 1em;
}

.header_main-navigation ul li ul li::after {
border-bottom: none;
}

.header_main-navigation ul li ul li a {
	display: block;
	padding-left:20px;
	font-size: 1em;
}



.header_main-navigation.open {
   -webkit-transform: translateX(0%);
   transform: translateX(0%);
}

#header_menu-toggle {
	display: block;
	width: 38px;
	height: 32px;
	position: absolute;
	cursor: pointer;
	transition: all 0.5s ease-in-out;
	z-index: 111;
	right: 45px;
	top: 40%;
	-webkit-transform: translateY(-40%);
	transform: translateY(-40%);
}
#header_menu-toggle .header_menu-toggle-line {
	display:block;position:absolute;height:3px;
	width:100%;
	background-color:#444;
	transition:all 0.5s ease-in-out;
}
#header_menu-toggle .header_menu-toggle-line#line1 {
   top:25%;
}
#header_menu-toggle .header_menu-toggle-line#line2 {
	bottom:25%;
}
#header_menu-toggle.close-nav-menu .header_menu-toggle-line#line1 {
   -webkit-transform: rotate(45deg) translateY(-10.5px);
   transform: rotate(45deg) translateY(-10.5px);
   -webkit-transform-origin: 0 0;
   transform-origin: 0 0;
	background-color:#FFF;
}
#header_menu-toggle.close-nav-menu .header_menu-toggle-line#line2 {
   -webkit-transform: rotate(-45deg) translateY(9.5px);
   transform: rotate(-45deg) translateY(9.5px);
   -webkit-transform-origin: 0 0;
   transform-origin: 0 0;
	background-color:#FFF;
}


div.contact {
  background-color: #49606A;
  background-image: url("../img/pattern.png");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 80%;
  padding: 100px 0 160px 0;
}
div.contact h2 {
  color: #fff;
}
div.contact h2::after {
  background-color: #fff;
}
div.contact p {
  color: #fff;
  text-align: center;
  width: 50%;
  margin: 0 auto;
}
/* three column layout */
div.three-col-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div.three-col-card, a.three-col-card {
  width: 32%;
  background-color: #fff;
  position: relative;
}
div.three-col-card div.inner, a.three-col-card div.inner {
  padding: 20px 0 0 0;
  color: #444;
}
div.three-col-card p, a.three-col-card p {
  max-width: 90%;
}
div.three-col-card figure, a.three-col-card figure {
  height: 250px;
  background-color: #f2f2f2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden !important;
}
/* projects */
section.project-cards a.three-col-card {
  margin-bottom: 50px;
  cursor: pointer !important;
}
div.zoom-panel:hover figure img {
  -moz-transition: ease-in-out 300ms;
  -ms-transition: ease-in-out 300ms;
  -o-transition: ease-in-out 300ms;
  transition: ease-in-out 300ms;
  transform: scale(1.2);
}
/* team */
figure.james {
  background-image: url("../img/James.png");
}
figure.mark {
  background-image: url("../img/Mark.png");
}
figure.guy {
  background-image: url("../img/Guy.png");
}
div.team-member p {
  max-width: 90%;
}
footer {
  padding: 100px 0;
  text-align: center;
  background-color: #f2f2f2;
}
footer div.logo {
  width: 204px;
  height: 60px;
  margin: 0 auto 70px auto;
  background-image: url("../img/inline-logo.png");
  background-repeat: no-repeat;
  background-size: contain;
}
footer nav ul {
  margin: 0;
  padding: 0;
}
footer nav ul li {
  display: inline;
}
footer nav ul li a {
  color: #DC8F2D;
  margin-left: 1em;
  font-size: 0.9em;
}
footer p {
  font-size: 0.9em;
}
footer a {
  color: #DC8F2D;
  font-weight: 500;
}
/* form styles */
form {
  width: 90%;
  margin: 0 auto;
  max-width: 360px;
}
#mlb2-3649782.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  background-color: lime !important;
  color: #fff !important;
  border-color: #cccccc;
  border-radius: 4px !important;
  border-style: solid !important;
  border-width: 1px !important;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  height: auto;
  line-height: 21px !important;
  margin-bottom: 0;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
input[type='text']:focus {
  background-color: #333;
  border-bottom: 1px solid #fff;
  color: #fff;
}
input[type='submit']:focus {
  background-color: #000;
  border-bottom: 1px solid #fff;
  color: #fff;
}
ol {
  font-style: normal;
  font-size: 1em;
  line-height: 1.75em;
  margin-bottom: 1.75em;
}
/* text styles */


h1 {
  font-weight: bold;
  font-size: 2.75em;
  margin-bottom: 0.5em;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  color: #111;
}
h2 {
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  margin-bottom: 100px;
  color: #444;
}
h2::after {
  content: ' ';
  width: 100px;
  height: 4px;
  background-color: #49606A;
  position: absolute;
  bottom: -.5em;
  left: calc(50% - 50px);
}
h3 {
  margin-bottom: 0.75em;
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 0.1em;
	line-height: 1.5em;
  color: #111;
}

h3.subheader {
  margin: 0 auto 3em auto;
 text-align:center;;
}


h4 {
  font-size: 1.3em;
  line-height: 1.4em;
  margin-bottom: 1em;
  color: #111;
  font-weight: normal;
}
p {
  font-style: normal;
  font-size: 1em;
  line-height: 1.75em;
  margin-bottom: 1.75em;
}

span.pretitle {
  display: block;
  margin-bottom: 1em;
}
span.h2 {
  display: block;
  font-size: 2.75em;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  position: relative;
  font-weight: 500;
  color: #49606A;
  margin-bottom: 0.1em;
}
span.h4 {
  display: block;
  font-size: 1em;
  line-height: 1.4em;
  letter-spacing: 0.15em;
  color: #111;
  font-weight: 500;
  text-transform: uppercase;
}
/* helpers */
div.page-spacer {
  width: 100%;
  margin: 70px 0;
}

.center-text {
  text-align: center;
}
.no-margin-btm {
  margin-bottom: 0;
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://example.com/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'), local('MaterialIcons-Regular'), url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'), url(https://example.com/MaterialIcons-Regular.woff) format('woff'), url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
}
@font-face {
  font-family: 'Azo Sans';
  src: url('AzoSans-Regular.eot');
  src: local('Azo Sans Regular'), local('AzoSans-Regular'), format('woff2'), url('../fonts/azo-sans/AzoSans-Regular.woff';
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Azo Sans Md';
  src: url('AzoSans-Medium.eot');
  src: local('Azo Sans Medium'), local('AzoSans-Medium'), url('AzoSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Azo Sans';
  src: url('AzoSans-Bold.eot');
  src: local('Azo Sans Bold'), local('AzoSans-Bold'), url('AzoSans-Bold.woff') format('woff');
  font-style: normal;
}