/*
Theme Name: Evan Pritchard
Author: Monddi Design Agency
Author URI: http://www.monddi.co.uk
Version: 1.0.0
Text Domain: evanpritchard
*/

/*** GLOBAL ***/

::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: #e92936;
}

::selection {
  color: #fff;
  background: #e92936;
}

body {
	font-family: 'din-2014', 'myriad-pro', 'Myriad Pro', Helvetica, Arial, sans-serif;
	font-size: 18px;
  font-weight: 400;
	background-color: #f5f5f5;
	color: #444;
  text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-top: 66px;
}

h1 {
  color: #272727;
  margin: 0px;
  font-weight: 600;
	font-size: 60px;

}

h2 {
  color: #272727;
  margin: 0px 0px 20px;
  font-weight: 600;
	font-size: 36px;
}

h2 a {
	color: #272727;
}

h3 {
  color: #272727;
  margin: 0px 0px 20px;
  font-weight: 600;
}

p {
  line-height: 1.75;
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0px;
}

strong {
  font-weight: 600;
}

a, a:hover {
  text-decoration: none;
}

p a {
	transition: 0.5s;
	color: #ffc503;
}

p a:hover {
	transition: 0.5s;
	color: #ffc503;
	text-decoration: underline;
}

label {
	font-weight: 300;
}

img.img-responsive-full {
	width: 100%;
	height: auto;
}

.divider {
  border-top: 1px solid #ddd;
  margin: 0px 60px;
	clear: both;
}

.divider-15 {
  border-top: 1px solid #ddd;
  margin: 15px 60px;
	clear: both;
}

.divider-20 {
  border-top: 1px solid #ddd;
  margin: 20px 60px;
	clear: both;
}

.divider-30 {
  border-top: 1px solid #ddd;
  margin: 30px 60px;
	clear: both;
}

.divider-60 {
  border-top: 1px solid #ddd;
  margin: 60px;
	clear: both;
}

.vertical-align {
  display: flex;
  align-items: center !important
}

img.grayscale {
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
	filter: gray; /* IE6-9 */
	-webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
	transition: all 0.2s ease-in-out;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

img.grayscale:hover {
	filter: none;
	-webkit-filter: grayscale(0%);
	transition: all 0.2s ease-in-out;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.zoom-outer {
	overflow: hidden;
}

.zoom-inner {
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	transition: all .5s;
	height: 400px;
	background-size: cover;
	background-position: center;
}

.zoom-inner:hover {
	transform: scale(1.05);
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	transition: all .5s;
}

/*** NAVIGATION ***/

.navbar-brand {
  padding: 13px 20px;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  color: #272727;
  line-height: 36px;
  vertical-align: middle;
	height: 66px;
}

.navbar-brand img {
  height: 40px;
	width: auto;
	display: block;
}

.navbar {
  margin-bottom: 0px;
  border: none;
  border-radius: 0px;
	min-height: 40px;
}

.navbar-evanpritchard {
  background: #fff;
	border-bottom: 1px solid #ddd;
}

.navbar-evanpritchard .navbar-collapse {
  text-align: center;
	background-color: #fff;
}

.navbar-evanpritchard .navbar-nav {
	float: none;
  display: inline-block;
  vertical-align: top;
}

.navbar-evanpritchard .navbar-nav > li > a {
  padding: 20px 30px;
	font-weight: 600;
  color: #272727;
  transition: 0.5s;
	border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.navbar-evanpritchard .navbar-nav > li > a:hover, .navbar-evanpritchard .navbar-nav > li > a:active, .navbar-evanpritchard .navbar-nav > li > a:focus {
  transition: 0.5s;
  border-bottom: 3px solid #ffc503;/* #e92936 */
	background: #fff;
}

/*** ROWELLBURGER ***/

.navbar-evanpritchard .navbar-toggle {
    border: none;
    padding: 18px;
    margin-right: 5px;
}

.navbar-evanpritchard .navbar-toggle:focus, .navbar-evanpritchard .navbar-toggle:hover {
    background-color: transparent;
}

.navbar-evanpritchard .navbar-toggle.collapsed .icon-bar {
    background-color: #ffc503;/* #e92936 */
}

.navbar-evanpritchard .navbar-toggle .icon-bar {
    background-color: #ffc503;
    width: 20px;
}

button.navbar-toggle.collapsed span {
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

button.navbar-toggle.collapsed span:nth-child(1) {
	top: 0px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

button.navbar-toggle.collapsed span:nth-child(2) {
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

button.navbar-toggle.collapsed span:nth-child(3) {
	top: 0px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

button.navbar-toggle span {
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

button.navbar-toggle span:nth-child(1) {
	top: 6px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
	position: relative;
}

button.navbar-toggle span:nth-child(2) {
	opacity: 0;
	left: 8px;
	position: relative;
}

button.navbar-toggle span:nth-child(3) {
	top: -6px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
	position: relative;
}

/*** BUTTONS ***/

.btn-container-left {
	padding-top:10px;
  text-align: left;
}

.btn-container-center {
	padding-top:10px;
  text-align: center;
}

.btn-container-right {
	padding-top:10px;
  text-align: right;
}

.btn-container-right a:nth-child(1n+2) {
	margin-left:30px;
}

.btn-red {
	cursor: pointer;
  background-color: #ffc503;
  padding: 10px 30px;
	border-radius: 0px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  transition: 0.5s;
}

.btn-red:hover {
  background-color: #ffe533;
  color: #fff;
  transition: 0.5s;
}

.btn-red-o {
	cursor: pointer;
  background-color: transparent;
	border: 2px solid #ac1a24;
  padding: 10px 30px;
	border-radius: 0px;
  font-size: 17px;
  font-weight: 600;
  color: #ffc503;
  transition: 0.5s;
}

.btn-red-o:hover {
  background-color: #e92936;
	border: 2px solid #ffc503;
  color: #fff;
  transition: 0.5s;
}

.btn-white-o {
	cursor: pointer;
  background-color: transparent;
	border: 2px solid #ac1a24;
  padding: 10px 30px;
	border-radius: 0px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  transition: 0.5s;
}

.btn-white-o:hover {
  background-color: #fff;
	border: 2px solid #fff;
  color: #e92936;
  transition: 0.5s;
}

/*** SECTIONS ***/

.section {
	padding: 45px 0px;
}

.section-white {
  color: #444;
  background-color: #fff;
}

.section-red {
  color: #fff;
	background: linear-gradient(rgba(233,41,54,1),rgba(233,41,54,1));
	position: relative;
}

.section h1 {
  padding-bottom: 30px;
}

.section-red h1, .section-red h2 {
  color: #fff;
}

.section-grey {
  color: #fff;
	background: linear-gradient(rgba(200,200,200,1),rgba(200,200,200,1));
}

.section h1 {
  padding-bottom: 30px;
}

.section-grey h1, .section-grey h2 {
  color: #fff;
}

.section h1 {
  padding-bottom: 30px;
}

/*** RATIO ***/

.ratio33 {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 33.33%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.ratio50 {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.ratio60 {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.ratio66 {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.66%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.ratio75 {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/*** BREADCRUMBS ***/

.breadcrumbs {
  padding: 15px 15px;
}

.breadcrumbs a {
	color: #ffc503;
	border-bottom: 1px solid transparent;
	transition: all 0.15s ease-in-out;
}

.breadcrumbs a:hover {
	color: #ffc503;
	border-bottom: 1px solid #ac1a24;
}

.breadcrumbs-inner > span {
	margin-left: 10px;
	margin-right: 10px;
	font-weight: 600;
}

.breadcrumbs-inner > span:first-child {
	margin-left: 0px;
}

.breadcrumbs-inner > span:last-child {
	font-weight: 400;
	margin-right: 0px;
}

/*** HOME ***/

.parallax {
	background-attachment: fixed;
}

.section-home {
	background-size: cover;
	background-position: center center;
}

.section-home-overlay {
	padding-top: 17vh;
	background: linear-gradient(to bottom, rgba(50, 50, 50, 0.4) 50%, rgba(0, 0, 0, 0.8));
	height: 100%;
	width: 100%;
}


.section-home h1, .section-home h2 {
  color: #fff;
  border-bottom: 3px solid #ffc503; /* #e92936 */
  display: inline-block;
  margin-bottom: 30px;
  font-size: 60px;
	padding-bottom: 10px;
	font-weight: 600;
}

.section-home p {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
}

.section-home-intro {
	height: calc(100vh - 66px);
	color: #fff;
}

.section-home-services {
	height: 100vh;
	color: #fff;
}

.section-home-clients {
	padding: 80px 15px;
	background: #f5f5f5;
	color: #444;
}

.section-home-clients h2 {
	color: #444;
}

.section-home-projects {
	height: 100vh;
	color: #fff;
}

.hero {
	position: relative;
	height: 600px;
	padding: 0px;
  background-position: center;
  background-size: cover;
}

.hero-400 {
	position: relative;
	height: 400px;
	padding: 0px;
  background-position: center;
  background-size: cover;
}

.hero-text-container {
	width: 100%;
	height: 100%;
}

.hero-text-container-grey {
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(245,245,245,0.5) 0%,rgba(245,245,245,1) 100%)
}

.hero-text-container-grey > .col-md-10 {
	position: relative;
	height: 100%;
}

.hero-text-container-grey h1 {
	color: #272727;
	border-bottom: 3px solid #ffc503;/* #e92936 */
  display: inline-block;
	padding-bottom: 10px;
	font-weight: 600;
	position: absolute;
	bottom: 0px;
}

.hero-heading > span {
	font-weight: 600;
  color: #ffc503;
}

.hero-tagline {
  text-align: center;
  font-size: 40px;
	font-weight: 200;
  color: #ffffff;
}

.home-what-we-do img {
	margin-top: 30px;
	margin-bottom: 30px;
}

.home-case-study-single {
	padding: 0;
}

/*** HOME - SCROLL ICON ***/

#learnmore {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 15px;
  height: 89px;
  text-align: center;
}

.learnmore-text {
  bottom: 15px;
  position: absolute;
  width: 100%;
  left: 50%;
  margin-left: -50%;
  font-size: 15px;
  text-align: center;
  color: #fff;
}

.fa-arrow-down {
  font-size: 24px !important;
  color: #fff;
  margin-top:20px;
}

.scroll-downs {
  position: absolute;
  top: -30px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 34px;
  height: 55px;
}

.mousey {
  width: 4px;
  padding: 10px 15px;
  height: 55px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
}

.scroller {
  width: 4px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 1.75s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
  margin-left: -2px;
}

@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0;}
}

/*** QUOTE ***/

.quote-name {
	text-align: right;
	font-size: 18px;
	font-weight: 400;
}

.quote-job-title {
	text-align: right;
}

/*** SERVICES ***/

.service-single {
	margin-bottom: 40px;
}

/*** PROJECTS ***/

.project-type-single {
	height: 400px;
	padding: 0px;
	background-size: cover;
	background-position: center;
}

.project-type-single-overlay:after {
	z-index: 3;
	background-image: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.8));
	content: "";
	height: 100%;
	left: 0px;
	position: absolute;
	top: 0px;
	transform: translateZ(0px);
	transition: all 0.5s;
	width: 100%;
	opacity: 0.4;
}

.project-type-single-overlay:hover:after {
  transition: all 0.5s;
	opacity: 1;
}

.project-type-single-overlay > span {
	z-index: 4;
	border-bottom: 2px solid #ffc503;/*  #e92936 */
	padding-bottom: 5px;
	position: absolute;
	bottom: 30px;
	left: 30px;
	color: #fff;
	font-weight: 600;
	font-size: 24px;
}

.project-type-single-overlay-contact:after {
	z-index: 3;
	background-image: linear-gradient(to bottom, transparent 30%, rgba(255, 255, 255, 0.9));
	content: "";
	height: 100%;
	left: 0px;
	position: absolute;
	top: 0px;
	transform: translateZ(0px);
	transition: all 0.5s;
	width: 100%;
	opacity: 0.5;
}

.project-type-single-overlay-contact:hover:after {
  transition: all 0.5s;
	opacity: 1;
}

.project-type-single-overlay-contact > span {
	z-index: 4;
	border-bottom: 2px solid #e92936;
	padding-bottom: 5px;
	position: absolute;
	bottom: 30px;
	left: 30px;
	color: #272727;
	font-weight: 600;
	font-size: 24px;
}

.project-single h2 {
	margin-bottom: 5px;
}

.project-single .project-location {
	font-size: 20px;
	border-bottom: 2px solid #e92936;
	padding-bottom: 5px;
	display: inline-block;
}

/* Slider */

.slick-container img {
	width: 100%;
	height: auto;
}

blockquote {
	display: block;
	position: relative;
	border-left: none;
	margin: 20px 0px 0px 30px;
}

blockquote:before{
  content: "\201C"; /*Unicode for Left Double Quote*/
	font-family: Georgia, serif;
  font-size: 60px;
  font-weight: 600;
  color: #e92936;
  position: absolute;
  left: -30px;
  top: 0px;
}

.project-testimonial-name-container {
	text-align: right;
}

/*** CLIENTS ***/

.client-logo {
	opacity: 0.5;
	transition: all 0.2s ease-in-out;
	margin-bottom: 20px;
}

.client-logo img {
	width: 100%;
	height: auto;
}

.client-logo:hover {
  opacity: 1 !important;
	transition: all 0.2s ease-in-out;
}

/*** CONTACT ***/

.required {
	color: crimson;
}

.form-control {
  border-radius: 0;
  background: rgba(255,255,255,0.75);
  box-shadow: none;
  -webkit-box-shadow: none;
}
.form-control:focus {
  border-color: #ffc503;
  outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #FFC107;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #FFC107;
    background: #fff;
}

.contact-social a {
  color: inherit;
}

.contact-social a:hover {
	text-decoration: none;
}

/*** FOOTER ***/

.footer {
	padding: 40px 15px;
	background: #fff;
	color: #444;
}

.footer a {
	color: #171717;
	font-weight: 600;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

@media (max-width: 767px) {

	body {
		margin-top: 66px;
		margin-bottom: 0px; /* NO BOTTOM BAR - REINSTATES 0PX MARGIN */
		font-size: 16px;
	}

	h1 {
		font-size: 28px;
	}

	h2 {
		font-size: 24px;
		margin: 20px 0 10px;
	}

	h3 {
		font-size: 20px;
		margin: 20px 0 10px;
	}

	.container-mob-15 {
		margin-left: 15px;
		margin-right: 15px;
	}

  .vertical-align {
		display: block;
	}

	.divider {
    margin: 0px 30px;
	}

	.divider-60 {
	  border-top: 1px solid #ddd;
	  margin: 30px;
		clear: both;
	}

	.section {
    padding: 30px 0;
	}

	.section h1 {
    padding-bottom: 15px;
	}

	.section-red:after, .section-case-study:after {
		background-size: 400%;
	}

	/* .btn-red, .btn-red-o, .btn-white, .btn-white-o {
		width: 100%;
    display: block;
    font-size: 16px;
    text-align: center;
	} */

	/*** NAVIGATION ***/

	.navbar-evanpritchard {
		height: 66px;
	}

	.navbar-evanpritchard .navbar-nav {
	  width: 100%;
	  margin: 0;
	}

	.navbar-evanpritchard .navbar-nav > li {
	  border-top: 1px solid #eee;
	}

	.navbar-evanpritchard .navbar-nav > li:first-child {
	  border-top: none;
	}

	.navbar-evanpritchard .navbar-nav > li > a {
		padding: 15px 30px;
	  border-top: none;
	}

	.navbar-evanpritchard .navbar-nav > li > a:hover, .navbar-evanpritchard .navbar-nav > li > a:active, .navbar-evanpritchard .navbar-nav > li > a:focus {
	  border-top: none;
	}

	.hero {
		height: 300px;
	}

	.hero-400, .hero-case-study {
		height: 200px;
	}

	.hero-text-container {
		padding-top: 110px;
	}

	.hero-text-container-black {
		padding-top: 110px;
	}

	.hero-text-container-grey {
		padding-top: 110px;
	}

	.hero-400 > .hero-text-container-grey {
		padding-top: 60px;
	}

	.hero-heading {
	  font-size: 32px;
	}

	.hero-tagline {
		font-size: 24px;
	}

	/*** HOME ***/

	.section-home h1, .section-home h2 {
	  margin-bottom: 30px;
	  font-size: 30px;
		padding-bottom: 10px;
	}

	.section-home p {
	  font-size: 14px;
	}

	.section-home-overlay {
		padding-top: 8vh;
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8));
	}

	.parallax {
    background-attachment: scroll;
  }

	/*** SERVICES ***/

	.service-single {
		margin-bottom: 0px;
	}

  .service-single img {
		margin-top: 20px;
	}

	/*** PROJECTS ***/

	.project-type-single {
		height: 240px;
	}

	/*** CLIENTS ***/

	.client-logo {
		opacity: 1;
	}

	/*** FOOTER ***/

	.footer {
		padding: 20px 15px;
	}

}

/*** SMALL DEVICES ONLY - 768-991 PX ***/

@media only screen and (min-width: 768px) and (max-width: 991px) {

	body {
		margin-top: 66px;
	}

	.navbar-evanpritchard {
		height: 66px;
	}

	.navbar-evanpritchard .navbar-nav > li > a {
    padding: 20px 20px;
    font-size: 17px;
	}

	.header {
    height: 85px;
	}

	.header-title {
		font-size: 46px;
		line-height: 77px;
	}

	.divider {
    margin: 0px 30px;
	}

	.section {
    padding: 30px 0;
	}

	.parallax {
    background-attachment: scroll;
  }

	.zoom-inner {
		height: 250px;
	}

}

/*** MEDIUM DEVICES ONLY - 992-1199 PX ***/

@media only screen and (min-width: 992px) and (max-width: 1199px) {

	.navbar-evanpritchard .navbar-nav > li > a {
    padding: 20px 25px;
		font-size: 17px;
	}

	.header {
    height: 85px;
	}

	.header-title {
		font-size: 46px;
		line-height: 77px;
	}

	.zoom-inner {
		height: 300px;
	}

}

/*** CAROUSEL ***/

#quote-carousel {
  padding: 0px;
  margin-top: 0px;
	min-height: 200px;
}

#quote-carousel .carousel-control {
  background: none;
  color: #fff;
  font-size: 1em;
  text-shadow: none;
  margin-top: 30px;
	width: 20px;
}

#quote-carousel .carousel-control.left {
  left: -12px;
}

#quote-carousel .carousel-control.right {
  right: -12px !important;
}

#quote-carousel .carousel-indicators {
  right: 50%;
  top: auto;
  bottom: -20px;
  margin-right: -19px;
	margin-bottom: 0px;
}

#quote-carousel .carousel-indicators li {
  background: #c0c0c0;
	margin: 0px 7px;
	width: 12px;
	height: 12px;
}

#quote-carousel .carousel-indicators .active {
  background: #248888;
}

#quote-carousel img {
  width: 250px;
  height: 100px
}

.item blockquote {
  border-left: none;
  margin: 0;
}

.item blockquote img {
  margin-bottom: 30px;
}

/* SM, MD and LG devices (tablets, 768px and up) */
@media (min-width: 768px) {
    #quote-carousel {
      margin-bottom: 0;
      padding: 0;
    }

		.carousel-inner {
	    padding-bottom: 10px;
		}
}

/* SM devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px){

		.carousel-inner {
	    padding-bottom: 20px;
		}
}

/* XS devices (tablets, up to 768px) */
@media (max-width: 767px) {

		#quote-carousel	{
			min-height: 320px;
		}

    #quote-carousel .carousel-indicators {
      bottom: 0px !important;
    }

    #quote-carousel .carousel-indicators li {
      display: inline-block;
      margin: 0px 5px;
      width: 15px;
      height: 15px;
    }

		.carousel-inner {
	    padding-bottom: 50px;
		}
}




.footer{
	border-botom: solid 1px #fff;
}













