/*!
Theme Name: BOAST Theme
Theme URI: http://underscores.me/
Author: Ashley Gordon
Author URI: https://www.linkedin.com/in/ashley-gordon/
Description: Custom developed theme for services based company.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: boast-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

BOAST Theme is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #3e3e3e;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	-webkit-box-sizing: inherit;
	        box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #00aff0;
}

a:visited {
	color: #00aff0;
}


a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	        clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	-webkit-clip-path: none;
	        clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/*=== Custom Styles ===*/

/*=== Fonts ===*/
body{
	font-family: 'Open Sans', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6{
	font-family: 'Oswald', sans-serif;
	/* text-transform: uppercase; */
}
h1{
	font-size: 3em;
}
a{
	color: #fb5f36;
}
a:visited{
	color: #fb5f36;
}
.btn-primary{
	color: #fff;
	background-color: #fb5f36;
	border-color: #fb5f36;
}
.btn-primary:hover{
	background-color: #E84318;
	border-color: #E84318;
}
a.btn.btn-primary.btn-block{
	color: #fff;
}
.navbar-nav .active a{
	color: #fb5f36 !important;
}
#intro{
	margin-top: 45px;
	margin-bottom: 45px;
}
#intro-text{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
/*=== Top Bar ===*/
#top_bar{
	font-size: 14px;
	font-weight: 900;
	color: #EEEEEE;
	background: #fb5f36;
	padding: 8px;
	text-transform: uppercase;
}
#top_bar span.fab,
#top_bar span.fas{
	font-size: 20px;
	margin: 3px;
}
#top_bar a{
	color: #EEEEEE;
	margin: 0 5px;
}
/*=== Nav ===*/
.navbar-collapse{
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.navbar{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.navbar li{
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	margin-left: 40px;
	margin-right: 40px;
}
ul#header-right,
ul#header-left{
	margin: 0;
}
.navbar li a{
	color: #0440ae;
	font-size: 1.1em;
}
.navbar li a:visited{
	color: #0440ae !important;
}
.primary-menu .dropdown-menu li{
	padding: 25px 0;
}
.custom-logo-link{
	width: 350px;
	min-width: 350px;
	height: auto;
	margin: 0 30px;
}
/*=== Mobile Nav ===*/
#mobile_nav{
	margin-left: 0;
}
#mobile_nav li{
	text-align: center;
	padding: 25px 0;
}
/*=== CTA Bar ===*/
#cta_bar{
	background: #fb5f36;
	color: #fff;
}
#cta_bar a:visited{
	color: #fff;
}
#cta_bar h3{
	margin-bottom: 0;
}
#cta-left{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	height: 190px;
}
#cta-right{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	height: 190px;
}
.cta-custom-btn{
	color: #fff;
	font-size: 22px;
	background: #fb5f36;
	border: 2px solid #fff;
	padding: 22px;
}
.cta-custom-btn:hover{
	color: #fff;
}
.brand_colour{
	color: #fb5f36;
}
/*=== Heros ===*/
.hero-content{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: 500px;
	color: #fff;
}
#homepage-slider .carousel-item{
	height: 415px;
}
#homepage-slider .w-100{
	height: 415px;
}
#homepage-slider .carousel-caption{
	height: 95%;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
#homepage-slider h1{
	font-size: 50px;
	margin: 0;
}
#homepage-slider p{
	margin-bottom: 0;
	width: 620px;
	margin-left: auto;
	margin-right: auto;
}
#about-hero{
	width: 100%;
	background: url('/wp-content/themes/boast-theme/assets/img/hero/about.jpg');
    background-attachment: inherit;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}
#services-hero{
	width: 100%;
}
#services-hero h1{
	text-align: center;
}
#blog-hero{
	width: 100%;
	background: url('/wp-content/themes/boast-theme/assets/img/hero/projects.jpg');
	/* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#contact-hero{
	width: 100%;
	background: url('/wp-content/themes/boast-theme/assets/img/hero/workshop_hero.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*=== Home Page ===*/
#welcome{
	margin-top: 45px;
	margin-bottom: 45px;
}
.home-services-row{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 45px 0;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.home-services-row .card{
	width: 18rem;
	min-height: 420px;
}
.home-services-row .card-title{
	text-align: center;
}
.home-services-row .card-body{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-size: 14px;
}
#hp-service-two-row .card{
	width: 49%;
}
#hp-small-img{
	height: 294px;
	width: auto;
}
#testimonials{
	max-width: 700px;
	padding: 45px 0;
}
.testimonial-row{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 25px 0;
}
.testimonial-row .small{
	color: #969696;
}
/* .testimonial-row:nth-child(even){
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
} */
.testimonial-icon{
	width: 125px;
	height: 125px;
	border-radius: 100%;
	background: #58C66C;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: 3em;
	margin-left: auto;
	margin-right: auto;
}
.testimonial-icon span.fas{

}
a.testimonial-more-tag{
	display: block;
	margin-bottom: 10px;
	/* margin-top: -20px; */
}
/*=== About ===*/
#intro-image{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
#intro-image img{
	border: 5px solid #F0F0F0;
}
#about-directors{
	margin-top: 45px;
	margin-bottom: 45px ;
}
#director-info{
	margin-top: 45px;
}
#director-info h5{
	margin-top: 5px;
}
#director-info p{
	margin-bottom: 0;
}
#director-info #director-contact{
	font-size: 2em;
}
#our-list-head{
	font-weight: bold;
	margin-top: 20px;
}
#our-list{
	padding: 0;
	margin: 0;
	margin-left: 20px;
	font-weight: bold;
	font-size: 0.8em;
}
#our-list li{
	margin: 15px 0;
}
/*=== Service Pages === */
#gallery{
	margin: 45px auto;
}
.services-row{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 45px 0;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.services-row .card{
	width: 100%;
	min-height: 420px;
	margin: 25px 0;
}
.services-row .card-title{
	text-align: center;
}
.services-row .card-body{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-size: 14px;
}
/*=== Blog ===*/
#blog a{
	color: #3e3e3e;
}
#blog .post{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-bottom: 0;
	height: 100%;
}
#blog h2.entry-title{
	margin-bottom: 0;
}
#blog .entry-content{
	margin-top: 0;
}
#blog img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image{
	width: 430px;
	height: 240px;
	border:  5px solid #F0F0F0;
	border-radius: 2px;
	object-fit: cover;
}
#blog-post{
	margin: 45px auto;
	padding-bottom: 45px;
	border-bottom: 1px solid #F0F0F0;
}
#blog a.more-link{
	display: inline-block;
	color: #fff !important;
	padding: 10px 25px;
	background: #fb5f36;
	border-radius: 3px;
}
#blog .entry-footer span{
	font-size: 12px;
	margin: 0 15px;
}
#post-img-preview{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
/*=== Blog Post ===*/
.post-thumbnail {
    margin-top: 45px;
}
.widget-area{
	margin-top: 45px;
	padding: 25px;
    background: #F7F7F7;
}
.widget-area .widget{
	margin: 45px 0;
}
.widget ul{
	padding-left: 0;
	margin-left: 45px;
}
h2.widget-title{
	font-size: 1.2rem;
	text-align: center;
}
section#search-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.widget-area input[type="submit"]{
	border-color: #fb5f36;
	background: #fb5f36;
	color: #fff;
	padding: 10px;
	text-transform: uppercase;
}
.single .entry-meta span,
.single .entry-footer span.cat-links,
.single .entry-footer span.tags-links{
	margin-right: 25px;
}
.single h1.entry-title{
	margin-bottom: 0;
}
.nav-previous,
.nav-next{
	font-weight: 600;
	font-size: 18px;
	padding: 15px;
}
/*=== Testimonials ===*/
#testimonials-hero{
	width: 100%;
	background: url('/wp-content/themes/boast-theme/assets/img/hero/testimonials.jpg');
	background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#testimonials-hero{
	width: 100%;
}
#testimonials-hero h1{
	text-align: center;
}
#testimonial-posts{
	padding: 45px 0;
}
#testimonial-posts .card-img-top{
	border-radius: 100%;
	width: 200px;
	height: 200px;
	margin: 15px auto 0 auto;
}
#testimonial-posts .card-title{
	text-align: center;
	margin-bottom: 0;
	margin-top: 5px;
}
#testimonial-posts .card-block{
	padding: 15px;
}
#testimonial-posts .card-block p{
	font-size: 13px;
}
#testimonial-posts .card-title{
	margin-bottom: 15px;
}
#testimonial-posts .card-text{
	padding: 15px;
}
/*=== Contact ===*/
#contact .col-sm-12{
	padding-left: 0;
	padding-right: 0;
}
#contact address{
	text-align: center;
	margin-bottom: 0;
}
#contact-form{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
#contact-form p{
	width: 370px;
}
#contact-info-page{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 16px;
	font-weight: 600;
}
#contact-info-page a{
	text-align: center;
}
#contact-info-page span{
	margin-bottom: 10px;
}
ul.social-icons{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}
ul.social-icons li{
	margin: 0 15px;
}
ul.social-icons a{
	color: #fb5f36;
	font-size: 45px;
}
ul.social-icons a:hover{
	color: #ca3d18;
}
.wpcf7{
	width: 370px;
}
#contact-form{
	padding-top: 25px;
}
#contact-form input.wpcf7-form-control.wpcf7-submit{
	background: #fb5f36;
	width: 100%;
	color: #fff;
	padding: 15px;
	border: none;
	font-size: 18px;
	text-transform: uppercase;
}
#contact-form input.wpcf7-form-control.wpcf7-submit:hover{
	background: #ca3d18;
}
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"]{
	height: 50px;
	padding-left: 10px;
	width: 100%;
}
#contact-form textarea{
	padding: 10px;
}
#contact-form p{
	margin-bottom: 0.5em;
}
/*=== Services ===*/
#software{
	padding: 45px 0;
}
#software h3{
	margin-bottom: 45px;
}

.software-card{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
/*=== Other ===*/
.page-id-87 .site-content{
	min-height: 630px;
}
/*=== Footer ===*/
.site-footer{
	color: #EEEEEE;
	background: #202020;
	font-size: 11px;
	padding: 15px 0;
}
.site-footer p{
	margin-bottom: 0;
}
ul#footer-menu{
	padding: 0;
	margin: 0;
}
#footer-menu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	        -ms-flex-wrap: wrap;
	            flex-wrap: wrap;
}
#footer-menu li{
	margin: 10px;
}
@media all and (max-width: 1290px){
	.custom-logo-link{
		margin: 0;
	}
	.navbar li{
		margin-right: 25px;
		margin-left: 25px;
	}
}
@media all and (min-width: 1010px){
	#about-hero{
	    background-position: 0 -110px;
	    background-repeat: no-repeat;
	    background-size: cover;
	}
}
@media all and (min-width: 992px){
	.navbar-expand-lg .navbar-collapse{
		display: none !important;
		-ms-flex-preferred-size: 0;
		    flex-basis: 0;
	}
	.navbar-expand-lg .navbar-nav .dropdown-menu {
	    position: absolute;
	    width: 250px;
	}
}
@media all and (max-width: 992px){
	.navbar{
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.navbar-brand{
		margin-right: 0;
	}
	.navbar-toggler{
		
	}
	.custom-logo-link{
		margin: 0;
	}
	.menu-header-left-container, .menu-header-right-container{
		display: none;
	}
	#primary-menu li{
		padding: 25px 0;
		text-align: center;
		margin: 0;
		width: 100%;
	}
	ul#primary-menu{
		margin: 0;
	}
	#hp-small-img {
		margin-top: 25px;
    	width: 100%;
    	height: auto;
	}
}
@media all and (max-width: 860px){
	#homepage-slider .carousel-caption{
		padding: 10px 0;
	}
	#homepage-slider h1{
		font-size: 40px;
	}
	#homepage-slider p{
		width: auto;
	}
}
@media all and (max-width: 768px){
	#blog{
		padding-left: 0;
		padding-right: 0;
	}
	#blog-post .row{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
	#blog-post .row .col-sm-5,
	#blog-post .row .col-sm-7{
		max-width: 100%;
	}
	#blog img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image{
		width: 100%;
		height: auto;
		margin-bottom: 10px;
	}
	#blog a.more-link{
		width: 100%;
		text-align: center;
	}
	.hero-content{
		height: 330px;
	}
	#homepage-slider .carousel-item{
		height: 270px;
	}
	#homepage-slider .w-100{
		height: 270px;
	}
}
@media all and (max-width: 700px){
	#homepage-slider .carousel-caption{
		padding: 0;
	}
	#homepage-slider h1{
		font-size: 30px;
	}
}
@media all and (max-width: 600px){
	#homepage-slider .carousel-caption{
		padding: 35px 0;
	}
	#homepage-slider h1{
		font-size: 32px;
	}
}
@media all and (max-width: 575px){
	#blog-post .row{
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
	#blog h2.entry-title{
		font-size: 26px;
	}
	#blog a.more-link{
		width: 100%;
		text-align: center;
	}
	.software-card{
		padding: 45px 0;
	}
	#blog img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image{
		width: 100%;
		height: auto;
	}
	#right-director{
		margin-top: 45px;
	}
	#services .card ul{
		margin: 0;
		padding: 0 20px;
	}
	#cta-right,
	#cta-left{
		height: auto;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		text-align: center;
	}
	#cta-left{
		padding-top: 25px;
		padding-bottom: 10px;
	}
	#cta-right{
		padding-top: 10px;
		padding-bottom: 25px;
	}
}
@media all and (max-width: 500px){
	.custom-logo-link{
		min-width: 300px;
		width: 300px;
	}
	.hero-content{
		height: 300px;
	}
	#homepage-slider .carousel-caption{
		height: 85%;
	}
	#homepage-slider h1{
		font-size: 22px;
	}
	#homepage-slider .carousel-item{
		height: 250px;
	}
	#homepage-slider .w-100{
		height: 250px;
	    overflow: hidden;
	    -o-object-fit: cover;
	       object-fit: cover;
	    -o-object-position: -50px;
	       object-position: -50px;
	}
	.home-services-row{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		padding: 0;
	}
	#hp-service-two-row .card,
	.home-services-row .card{
		width: 100%;
		margin-bottom: 25px;
	}
	.home-services-row .card{
		margin-bottom: 25px;
	}
	#hp-solo-card{
		margin-bottom: 25px;
	}
	#cta-left{
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		height: auto;
		text-align: center;
		padding-top: 30px;
	}
	#cta-right{
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		height: 115px;
		text-align: center;
		padding-bottom: 25px;
	}
	.testimonial-row{
		text-align: center;
	}
	.testimonial-icon{
		margin: 0 auto;
	}
}
@media all and (max-width: 414px){
	#top_bar{
		padding: 7px 0;
	}
	#top_bar #opening-times{
		display: none;
	}
	#top_bar .col-sm-6{
		-ms-flex-pack: distribute;
		    justify-content: space-around;
	}
	#about-hero{
		background-position: -80px 0;
	}
	.w-100{
		height: 250px;
		width: auto !important;
		max-width: auto !important;
	}
	#welcome{
		margin-top: 25px;
	}
	#homepage-slider h1{
		font-size: 34px;
	}
	#homepage-slider .carousel-caption{
		padding: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	#homepage-slider .carousel-caption h1{
		font-size: 1.9em;
	}
	#homepage-slider p{
		display: none;
	}
	#about-directors p{
		text-align: center;
	}
	.single h1.entry-title{
		margin-top: 15px;
		font-size: 2em;
	}
	.single .entry-meta span,
	.single .entry-footer span.cat-links{
		margin-right: 10px;
	}
	.single .entry-meta{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
		font-size: 12px;
	}

	#testimonial-posts .card{
		margin-bottom: 25px;
	}
	#contact .col-sm-12{
		padding-left: 5px;
		padding-right: 5px;
	}
	#contact #intro-text p{
		font-size: 1.1em;
		text-align: justify;
	}
	#services-hero h1{
		font-size: 2em;
	}
	#service-page .col-sm-12{
		padding-left: 5px;
		padding-right: 5px;
	}
	#service-page #intro{
		margin-top: 25px;
		margin-bottom: 25px;
	}
	#blog .col-sm-12{
		padding-left: 5px;
		padding-right: 5px;
	}
}
@media all and (max-width: 400px){
	.custom-logo-link{
		min-width: 270px;
		width: 270px;
	}
}