/*!
Theme Name: Eldo
Theme URI: https://www.eldo.co.uk
Author: Eldo
Author URI: https://www.eldo.co.uk
Description: The best bespoke build, by Eldo Web Design Ltd.
Version: 7.0
License: Private
License URI: https://www.eldo.co.uk
Text Domain: Eldo
Tags: bespoke
*/
html {
	background: #222;
}

body {
	margin: 0;
	background: #fff;
	font-family: var(--body-font);
	color: var(--body-colour);
	font-weight: 300;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 17px;
	cursor: none;
	line-height:1.6;
}
/* body:not(#tinymce), html {
	float: left;
	width: 100%;
}   */
#page-sections, #footer {
	position: relative;
	overflow-x: hidden;
}
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #ff4da6;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #ff4da6;
  border-radius: 50%;
  opacity: 0.25;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}
a:hover ~ .cursor-dot {
  transform: translate(-50%, -50%) scale(1.3);
}
.cursor-dot {
  box-shadow: 0 0 8px rgba(255, 77, 166, 0.3);
}
.cursor-trail {
  box-shadow: 0 0 12px rgba(255, 77, 166, 0.2);
}
@media (pointer: coarse) {
  .cursor-dot,
  .cursor-trail {
    display: none;
  }

  body {
    cursor: auto;
  }
}
.cursor-dot {
	z-index: 99999999 !important;
}

.cursor-trail {
	z-index: 99999998 !important;
}
/*--------------------------------------------------------------
## Colour Scheme / Layout Settings / Fonts
--------------------------------------------------------------*/
:root {

	/* Section Padding */
	--section-padding-y: 50px;

	/* Tiny Spacing */
	--spacing-tiny: 5px;
	--margin-y-tiny: 5px;

	/* Narrow Spacing */
	--spacing-narrow: 10px;
	--margin-y-narrow: 10px;

	/* Standard Spacing */
	--spacing: 20px; 
	--margin-y: 20px;

	/* Wide */
	--spacing-wide: 40px;
	--margin-y-wide: 40px;

	/* Animations */
	--animate-duration: 1s;
    --animate-delay: 0s;
    --animate-repeat: 1;

	/* General Colours */
	--primary-colour: #155B8E;
	--accent-colour: #32b3a0;


	/* Backgrounds */
	--dark-bg: #09263b;
	--light-bg: #f5f5f5;
	--box-bg:  rgba(0,0,0,0.05);

	/* Inputs */
	--input-bg: #f7f7f7;
	--input-border: #c3c3c3;
	--input-border-focus: #151515;
	--input-bg-focus: #ffffff;

	/* Typography */
	--body-colour: #151515;
	--headings-colour: #09263b;

	--headings-font: elza,sans-serif;
	--body-font: elza,sans-serif;

	/* Shadow */
	--shadow: 0 0 10px rgba(0,0,0,0.1);
 
	/* Buttons */
	--primary-button: #155B8E;
	--primary-button-text: #ffffff;
	--primary-button-hover: #32b3a0;
	--primary-button-text-hover: #ffffff;

	--secondary-button: #155B8E;
	--secondary-button-text: #155B8E;
	--secondary-button-hover: #32b3a0;
	--secondary-button-text-hover: #fff;

	/* Links */
	--link: #155B8E;
	--link-hover: #32b3a0;

	--menu-link: #000000;
	--menu-link-hover: #155B8E;
}

.is-dark {
	color:#fff;
	/* General Colours */
	--accent-colour: #3498db;

	/* Links */
	--link: #32b3a0;
	--link-hover: #fff;

	--menu-link: #fff;
    --menu-link-hover: #C83A8C;

	/* Text */
	--headings-colour: #fff;
	--body-colour: #fff;

	/* Buttons */
    --primary-button: #C83A8C;
	--primary-button-text: #ffffff;
	--primary-button-hover: #fff;
	--primary-button-text-hover: #C83A8C;

	--secondary-button: #C83A8C;
	--secondary-button-text: #ffffff;
	--secondary-button-hover: #ffffff;
	--secondary-button-text-hover: #C83A8C;

	/* Backgrounds */
	--box-bg: rgba(255,255,255,0.05);
	--input-bg: rgba(0,0,0,0.1);
	--input-bg-focus: rgba(0,0,0,0.2);
	--input-colour: #fff;
	--input-border-focus: #C83A8C;
	--input-border: rgba(255,255,255,0.2);
}

.container.main, #page-sections .container, #post-cta .container {
	padding: 0 40px;
}
.tiny {
	--spacing: var(--spacing-tiny);
}
.tiny-y {
	--margin-y: var(--margin-y-tiny);
}
.narrow {
	--spacing: var(--spacing-narrow);
}
.narrow-y {
	--margin-y: var(--margin-y-narrow);
}
.no-gutters-y {
	--margin-y: 0;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
	color: var(--headings-colour);
	font-family: var(--headings-font);
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 500;
	clear: both;
	line-height: 1.2;
}
h1 {
	color: var(--headings-colour);
	line-height: 1;
	--base-size: 3.4em;
  font-size: var(--base-size);
  font-weight: 600;
}
h2 {
	--base-size: 2.3em;
  font-size: var(--base-size);
  font-weight: 600;
}
h3 {
	--base-size: 1.4em;
  font-size: var(--base-size);
  line-height:1.3
}
h3.small {
	font-size: 1.1em;
}
h4 {
	--base-size: 1.1em;
  font-size: var(--base-size);
}
h5 {
	--base-size: 0.8em;
  font-size: var(--base-size);
}
h6 {
	--base-size: 0.6em;
  font-size: var(--base-size);
}
p {
	margin-bottom: 1.5em;
	color: var(--body-colour);
	--base-size: 1em;
  font-size: var(--base-size);
}
p.head {
	font-size: 1.1em;
	font-weight:500
}
.bigger {
  font-size: calc(var(--base-size) * 1.3);
}
a {
	font-weight: 500;
}
i {
	font-weight:300!important
}
html.fa-icons-ready ul.list li::before,
html.fa-icons-ready blockquote:before,
html.fa-icons-ready blockquote:after,
html.fa-icons-ready a.button-link:after, 
html.fa-icons-ready span.button-link:after,
html.fa-icons-ready .footer-menu li:before {
	opacity: 1;
	transition: opacity ease 0.2s;
}

i[class*="fa"] {
	opacity: 0;
	transition: opacity .2s ease;
	display: inline-block;
	width: 1.35em;
	line-height: 1;
	text-align: center;
}

html.fa-icons-ready i[class*="fa"] {
	opacity: 1;
}
.fa-pseudo {
	line-height: 1;
width: 1em;
height: 1em;
display: inline-block;
text-align: center;
}
.shiny {
    display: inline-block;
    background: linear-gradient(
        229deg,
        #C83A8C 0%,
        #3498db 50%,
        #C83A8C 100%
    );
    background-size: 200% 200%;
    animation: shinyGradient 9s ease infinite;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    font-family: reklame-script, sans-serif;
    font-size: 1.1em;
    padding-right: 4px;
	padding-left: 3px;
}
h1 .shiny {
	padding-left:2px;
	padding-right:6px;
	padding-bottom:7px
}
@keyframes shinyGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.tab-link .shiny {
    background: none;
    animation: none;

    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;

    color: inherit;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
}
/*--------------------------------------------------------------
## Tinymce
--------------------------------------------------------------*/
#tinymce {
	padding: 10px !important;
	cursor: text !important;
	caret-color: #151515 !important;
	color: #151515 !important;
	background: #fff !important;
}
#tinymce * {
	opacity: 1 !important;
	cursor: inherit !important;
}
#tinymce a,
#tinymce button {
	cursor: pointer !important;
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a, a:visited {
	color: var(--link);
	text-decoration: none;
  	transition: all 0.3s;
}
a:hover, a:focus, a:active {
	color: var(--link-hover);
}
a:focus {
	outline: none;
}
a:hover, a:active { 
	outline: 0;
}
/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.gform-button, a.button, button.button, .button a, .button a:visited, .button a:focus, input.button,
a.button:visited, input[type="submit"], .woocommerce a.button, .woocommerce button.button,
.woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled],
.woocommerce a.button.alt, .woocommerce button.button.alt, input[type="submit"]:focus {
	background: var(--primary-button);
	color: var(--primary-button-text);
	font-family: var(--body-font);
	border-radius: 40px !important;
	font-weight:600 !important;
	padding: 11px 24px !important;
	transition: all ease 0.3s;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid var(--primary-button);
	position: relative;
	display: inline-block;
	text-transform: none;
	text-align: center;
	touch-action: manipulation;
	cursor: pointer;
	margin:5px 0;
	box-shadow:0 0 10px rgba(0,0,0,0.1)
}
.gform-button:hover, button.button:hover, a.button:hover, .button a:hover, input.button:hover,
input[type="submit"]:hover, .woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce button.button:disabled:hover, .woocommerce button.button:disabled[disabled]:hover,
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, a.button:focus {
  	background: var(--primary-button-hover);
  	color: var(--primary-button-text-hover);
	border-color: var(--primary-button-hover);
}

.search-form .search-field {
	padding: 12px 50px 12px 20px !important;
	border-radius:40px
}
.search-field::placeholder {
	color:#fff
}
button.search-submit {
	background: none;
	transition: all ease 0.3s;
	color: var(--body-colour);
	border: none;
	cursor: pointer;
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 5px;
	height: 100%;
	width: 40px;
	width: 50px;
    font-size: 1.1em;
}
.search-form {
	position: relative;
}
button.search-submit:hover {
	color: var(--primary-button);
}

/* Secondary button */
a.button.secondary {
	background: none;
	color: var(--secondary-button-text);
	border-color: var(--secondary-button);
}
a.button.secondary:hover {
	background: var(--secondary-button-hover);
	color: var(--secondary-button-text-hover);
	border-color: var(--secondary-button-hover);
}
 
/* Text Link */
a.text-link {
	font-weight: 500;
	border-bottom: 1px solid var(--link);
	display: inline-block;
}
a.text-link:hover {
	border-bottom-color: var(--link-hover);
	color: var(--link-hover);
}

/* Button Link */
a.button-link, span.button-link {
	background: none;
    color: var(--primary-button-text);
    border: none;
    border-bottom: 1px solid var(--primary-button);
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
	font-weight: 600;
	display: inline-block;
	padding-bottom: 5px;
}
a.button-link:after, span.button-link:after {
line-height: 1;
width: 1em;
height: 1em;
display: inline-block;
text-align: center;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    margin-left: 10px;
    position: relative;
	padding-bottom: 5px;
	top:1px
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    content: "\f138";
	opacity:0;
	font-weight:400!important;
	color: var(--primary-button);
}
a.button-link:hover, span.button-link:hover {
	border-color: var(--primary-button);
	color: var(--primary-button);
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: #eaeaea;
}
header .head-info {
	text-align: center;
}
#top-bar {
	padding: 3px 0;
	min-height:38px
}
#top-bar .head-info {
	text-align:right
}
#top-bar .head-info a {
	margin-left: 10px;
	display: inline-block;
	height:24px
}
.sub-menu li {
	display: block;
  width: 100%;
}
#menu-toggle {
  display: none;
}
#menu-toggle i {
  width: 18px;
}
header span.header-link {
	margin: 5px;
    display: inline-block;
}
span.header-link i {
	color: var(--accent-colour);
}



/*-----------------------
# MEGA MENU
------------------------*/
ul.mega {
	margin: 0;
	padding: 0;
}
.mega-menu-wrap {
	background: #fff;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	margin-top: 20px;
}
.sub {
    padding: 10px 0px;
    float: left;
    width: 100%;
    position: absolute;
    z-index: 9;
    top: calc(100% - -20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: 1340px;
	width: calc(100% - 40px);
	left: 20px;
	right: 20px;
	margin: 0 auto;
	box-sizing: border-box;
    border-radius: 20px;
    background: rgba(9, 38, 59, 0.9);
    backdrop-filter: blur(8px) brightness(1);
    -webkit-backdrop-filter: blur(8px) brightness(1);
	/* opacity: 1;
	visibility: visible;    */
}
.sub .menu-image {
	max-width: 340px;
}
.sub.show {
	opacity: 1;
	visibility: visible;
}
a.menu-item.has-sub {
  /* margin-right: 8px; */
	padding-right: 22px !important;
}
.sub h4 {
  margin-bottom: 10px;
	font-size: 1.2em;
}
a.has-sub {
	position: relative;
	padding-right: 10px !important;
	
}
a.has-sub:after {
	content: '';
	background-image: url('images/angle-down-white.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	right: 0px;
	height: 18px;
	width: 18px;
	top: 13px;
	transform-origin: center;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.is-dark a.has-sub:after {
    filter: brightness(200);
}
a.has-sub.active:after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
ul.menu-items {
	margin: 0;
	padding: 0;
	list-style: none;
}
.menu-items i {
	color:#C83A8C!important;
	transition: all ease 0.3s;
}
.menu-description {
	margin: 20px 0;
	max-width:300px
}
.mega a.current-page,
#menu-desktop a.current-page-parent {
border-bottom:1px solid #C83A8C;

}
ul.menu-items a {
	color: var(--menu-link);
	border: none;
	display: inline-block;
	margin: 10px 0;
	background: rgba(255, 255, 255, 0.05);
	padding:15px;
	border-radius:5px
}
ul.menu-items a.current-page {
	color: var(--menu-link-hover);
}
ul.menu-items a:hover, .page-id-2355 ul.menu-items a.current-page:hover {
	color: var(--menu-link-hover);
	background: rgba(0, 0, 0, 0.2);
}
ul.menu-items a:hover i {
	margin-left:10px
}
h4.blank {
  display: none;
}
.sub-desc {
	font-size:0.9em;
	color:rgba(255,255,255,0.7);
	font-weight:400!important
}
ul.mega {
	background:rgba(0,0,0,0.1);
	border-radius:40px;
	display:inline-block;
	float:none;
	margin:0 auto;
	width:auto;
	padding:0 10px
}
/*-----------------------
# Banner
------------------------*/
#banner-bg {
	background:var(--dark-bg)
}
#banner .button, #nobanner .button, .banner .button {
	margin-right:10px
}
#banner {
	padding: 180px 0 60px 0;
	position: relative;
	background-color: var(--dark-bg);
	min-height:580px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.single-post #banner{
}
#banner .container {
  position: relative;
  height:100%
}
#banner .row {
	height:100%
}
#banner:before {
	    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(to top, rgba(9, 38, 59, 1), rgba(9, 38, 59, 0.7), rgba(9, 38, 59, 1));
    opacity: 1;
}
#banner h1, #banner p {
	position: relative;
}
#banner h1 {
	margin:0
}
#banner .text {
  float: left;
  width: 100%;
}
#banner cite, #nobanner cite {
	font-size:0.7em;

}
/*-----------------------
# Banner - Image Right
------------------------*/
#banner.image-right:before {
	display: none;
}
.banner.image-right {
	background: var(--dark-bg);
}
.banner.image-right .image-wrap img {
	min-height: 500px;
	aspect-ratio: 16 / 9;
}
/*-----------------------
# Nobanner
------------------------*/
#nobanner .text h1, #nobanner .text p {
	position: relative;
}
#nobanner h1 {
	margin-top:0;
	margin-bottom:0.4em
}
#nobanner .text p {
	font-size:1.1em
}
#nobanner .text p.bigger {
	font-size:1.4em;
	font-weight:500
}
#nobanner {
	padding: 180px 0 60px 0;
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(to top, var(--dark-bg), transparent),
		linear-gradient(to top right, rgba(9, 38, 59, 0.7), transparent),
		linear-gradient(270deg, #6f5afc, #02ddfa, #695ACD);
	background-size: 100% 100%, 100% 100%, 400% 400%;
	background-position: center, center, 0% 50%;
	animation: gradientMove 10s ease infinite;
	margin-bottom:-1px
}
#nobanner::before,
#nobanner::after {
	display: none;
}
#nobanner .container {
	position: relative;
	z-index: 2;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
header {
	position: relative;
}
.project-highlight {
	border-radius: 50%;
	text-align:center;
	padding: 25px;
	width: 320px;
	height: 320px;
	position:relative;
	aspect-ratio: 1 / 1;

	/* float:right; */
	rotate:7deg;
	scale:0.9;
	transition: all ease 0.6s;
}
.project-highlight * {
	pointer-events: none;
}
.project-highlight:hover {
	rotate:-5deg
}
.project-highlight:after {
	    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top left, var(--dark-bg), transparent);
    opacity: 0.3;
	border-radius: 50%;
}
.project-highlight .float {
	position:relative;
	z-index:1
}
.project-highlight i {
	font-weight:900!important;
}
.project-highlight i.fa-quote-left,
.project-highlight i.fa-quote-right {
		font-weight:900!important;
		filter: brightness(1.2);
}
i.fa-star {
	color: #C9AA46;
    background: #C9AA46;
    background: linear-gradient(230deg, #ffd54c, #ffd54c, #8A540C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.project-highlight p {
	margin:0;
	line-height:1.3;
	margin-bottom:5px
}
.project-highlight p.company {
	opacity:0.7
}
.project-highlight img {
	border-radius:50%;
	max-width:60px
}
.project-highlight .highlight {
	font-size:1.2em;
	margin:12px 0
}
body.single-projects #nobanner {
	background-image:
		linear-gradient(to top, var(--dark-bg), transparent),
		linear-gradient(to top right, rgba(9, 38, 59, 0.7), transparent) !important;
	background-size: 100% 100%, 100% 100%;
	background-position: center, center;
	animation: none;
}
body.single-projects #nobanner h1 {
	margin:0
}
body.single-projects #nobanner p.bigger {
	margin-top:5px;
	margin-bottom:10px
}
body.single-projects #nobanner .text img{
width:80px;
border-radius:50%
}
.mobile img {
	position:absolute;
	left:0;
	bottom:-10px;
	width:20%
}
.desktop img {
	margin-left:5%;
	width:95%
}
.proj-banner-image img {
	border-radius:10px;
	box-shadow:0 0 10px rgba(0,0,0,0.2)
}
body.single-projects p.pill {
	font-size:1em!important;
	margin-top:0px
}
.proj-review {
	font-size:1.1em
}
.proj-review .inner {
	border-radius:10px;
	padding:10px 30px;

}
.proj-review i {
font-weight:900!important;
filter: brightness(1.2);
}
.proj-review i.fa-quote-left {
	font-size:2em;
}
.related-projects img {
	border-radius:10px;
	box-shadow:rgba(0,0,0,0.2);
	transition: all ease 0.3s;
}
.related-projects img:hover {
	scale:1.03;
	opacity:0.9
}
.related-projects h2 {
	font-size:1.7em
}
.project-filter {
	margin-bottom:50px;
}
.project-more {
	margin-top:50px;
	text-align:center
}
.excerpt-project img {
	border-radius:10px;
	transition: all ease 0.3s;
}
.excerpt-project img:hover {
	scale:1.03
}
.excerpt-project h2.excerpt-title {
	margin:0;
	margin:-30px 0 0 0;
	font-size:1.2em;
}
.excerpt-project p {
	margin:0;
	color:rgba(255,255,255,0.7);
	font-size:0.9em
}
.excerpt-project {
	margin:20px 0;
	text-align:center
}
.rel-proj {
	margin-top:10px;
	margin-bottom:10px
}
/*-----------------------
# Portfolio Loop
------------------------*/
.project-shot-wrap {
	width:1600px;
	height:1200px;
	margin:20px auto;
	display:block;
	overflow: hidden;
}
.project-shot-wrap .container {
	max-width:1400px
}
.project-shot-wrap #nobanner {
	background:none;
	background-image:none;
	height:100%;
	display:flex;
	align-items:center;
	padding:0;
	margin:0;
}
.project-shot-wrap .desktop img {
	margin:0;
	width:100%
}
/*-----------------------
# Full width menu
------------------------*/
header#full #menu {
	background: #f5f5f5;
}
header#full #header-menu {
	text-align: center;
}
header#full .inner {
	padding: 10px 0;
}
header#full #header-menu-desktop, header#full ul.mega {
	text-align: center;
}
header#full #header-menu-desktop {
	padding-top:3px;
	padding-bottom:2px
}
/*-----------------------
# LEFT HEADER
------------------------*/
#left-header {
    padding: 10px 0;
    position: absolute;
    top: 10px;
    z-index: 9;
	transition: all ease 1s;
}
.primary-head {
	height:66px
}
body.admin-bar #left-header {
	top:52px
}
.header-sticky {
	position: sticky;
	z-index: 10;
	top: 0;
}
.admin-bar .header-sticky {
	top: 32px;
}
#left-header #header-menu-desktop {
	text-align: right;
}
#left-header #header-menu {
	text-align: center;
}
#left-header .container {
	max-width:1400px
}
.header-button a.button {
	margin:0;
	padding:8px 18px!important
}
/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/
.title-404 {
  font-size: 2em;
}
.error-404 .search-field, #no-results .search-field, .search-page-form .search-field {
	width: 100%;
}

.search-submit {
  width: auto;
  text-align: center;
  padding: 12px;
  margin: 0;
  margin-left: 5px;
}
.search-page-form {
  margin-bottom: 20px;
}
.search-submit i {
  margin: 0 auto;
  display: block;
}
#sidebar .search-field {
  width: calc(100% - 43px);
}
/*--------------------------------------------------------------
# News / Blog
--------------------------------------------------------------*/
#breadcrumbs {
	margin-bottom: 10px;
}
#breadcrumbs i {
	font-size: 0.8em;
	color: var(--body-colour);
}
span.breadcrumb_last {
    display: none;
}
#news-page, #no-results {
	padding: 50px 0;
}
#single-post .side {
	margin: 20px 0;
}
#single-post .side .categories {
	margin-bottom: 20px;
}
#single-post .side h4 {
    border-bottom: 1px solid #ccc;
	margin-top: 0;
    padding-bottom: 5px;
}
h5.author-socials {
	font-size: 1.2em;
	margin: 10px 0;
}
.author-socials i {

}
#single-post .side  p {
	margin-bottom: 30px;
	margin-top: 0;
}
#single-post .side .inner {
	/* height:100% */
	font-size:0.9em
}
#single-post .side .box {
	padding:20px
}
#single-post .side img {
	width:80px;
	border-radius:50%
}
.post-wrap {
  margin: 20px 0;
  margin-right:60px
}
.post-wrap .acc-title {
	margin-top:20px;
	padding-top:0px!important;
	border-top:1px solid rgba(255,255,255,0.2)
}
.post-wrap h2 {
	font-size:1.8em;
	margin-top:1.5em
}
.single-thumb img {
  display: block;
  margin-bottom: 20px;
  width: 100%;
}
.container.no-sidebar {
  max-width: 860px;
}
.search-row {
	margin-top:-10px;
	margin-bottom: 20px;
}
.search-row .search-field {
	width: 100%;
}
.search-row .search-wrap {
	margin: 10px 0;
}
.search-row .cat-wrap {
	margin: 10px 0;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.search-result img {
	border-radius:3px!important;
	aspect-ratio:4/3
}
.search-result .image-wrap {
    padding-right: 30px;
    max-width: 150px;
}
/*--------------------------------------------------------------
# Search & Filter
--------------------------------------------------------------*/
.sf-input-select, .gfield_select, .form-field select, .orderby, .ginput_container_date select, .select {
	color: var(--body-colour);
	padding: 13.75px 50px 13.75px 20px;
	min-width: 220px;
	max-width: 100%;
	border-radius: 40px;
	box-sizing: border-box;
	margin: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: #fff;
	background-color: var(--input-bg);
	border: 1px solid var(--input-border);
	background-image: url('images/angle-down-white.svg');
	background-size: 18px;
	background-position: center right 20px;
	background-repeat: no-repeat;
	width: 100%;
}
.filter input.sf-input-text {
  width: 100%;
}
.sf-input-select:hover, .gfield_select:hover, .form-field select:hover, .orderby:hover, .ginput_container_date select:hover, .select:hover {
	border-color: var(--input-border-focus);
}
.sf-input-select:focus, .gfield_select:focus, .form-field:focus, .orderby:focus, .orderby:focus, .ginput_container_date select:focus, .select:focus {
	/* border-color: var(--input-border-focus); */
}


.search-filter-input-button {
    font-size: 0.9em!important;
    padding: var(--search-filter-scale-padding-vertical) calc(var(--search-filter-scale-base-unit-calc-h)*.9);
    margin-right: 8px;
    font-family: inherit;
    letter-spacing: inherit;
    line-height: var(--search-filter-scale-line-height);
    outline: none;
    box-shadow: none;
    min-height: 0;
    outline-offset: 0;
    cursor: pointer;
    background: var(--box-bg)!important;
    color: #fff!important;
    border-radius: 40px!important;
    font-weight: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
	border:1px solid rgba(255,255,255,0.1)!important;
	transition: all ease 0.3s;
}

.search-filter-input-button:hover {
	color:var(--link)!important;
	border:1px solid var(--link)!important
}
.search-filter-input-button--is-selected,
.search-filter-input-button--is-selected:hover {
	color:var(--accent-colour)!important;
	border:1px solid var(--accent-colour)!important
}
button.search-filter-input-button.search-filter-field__input {
	width:auto!important;
	margin:0 auto;
	border:1px solid var(--primary-button)!important;
	background:none!important;
	font-weight: 600 !important;
    padding: 11px 24px !important;
}
.search-filter-input-button::after {
    content: "\f078"; /* fa-chevrons-down */
    font: var(--fa-font-solid);
    margin-left: 8px;
}
.mobile-filter-toggle {
    display: none!important;
}
.mobile-filter-wrap {
		margin-top:20px!important
    }
@media (max-width: 767px) {

    .mobile-filter-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-bottom: 20px;
    }

    .mobile-filter-wrap {
        display: none;
    }

    .mobile-filter-wrap.active {
        display: block;
		font-size:0.9em
    }

}

@media (min-width: 768px) {

    .mobile-filter-wrap {
        display: block !important;
		margin-top:20px!important
    }

}
/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
blockquote {
	width:100%;
	margin:15px 0;
	background: var(--box-bg);
	padding:30px 60px;
	font-weight:normal;
	text-align:center;
	position:relative;
}
blockquote p:first-child {
	margin-top:0
}
blockquote p:last-child {
	margin-bottom:0
}
blockquote:before {
	content:"\f10D";
	position:absolute;
	top:10px;
	left:20px;
	color:var(--accent-colour);
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-solid);
  content: "\f10d";
	font-size:30px;
	opacity: 0;
}
blockquote:after {
	content:"\f10E";
	position:absolute;
	bottom:10px;
	right:20px;
	color:var(--accent-colour);
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-solid);
  	content: "\f10e";
	font-size:30px;
	opacity: 0;
}
.twitter-tweet {
	margin:0 auto;
	display:block
}
iframe {
	display:block;
	float:none;
	width: 100%;
}
iframe.instagram-media {
	margin:0 auto!important;
	display:block;
	float:none!important;
}
.contact-map iframe {
	width:100%!important;
	height:400px;
	border-radius:10px
}
hr {
	background-color: var(--primary-colour);
	border: 0;
	height: 1px;
	width:60%;
	margin-left: 20%;
	margin-right: 20%;
	margin-bottom: 1.5em
}
.bottom {
	margin-top: auto;
} 
/*-----------------------
# Sidebar
------------------------*/
#sidebar {
	max-width: 300px;
	margin: 10px 0;
}
#sidebar .inner {
	background: var(--box-bg);
	padding: 15px;
}
.toggle-sidebar {
	text-transform: uppercase;
	display: inline-block;
	padding: 6px 16px;
	border: 1px solid #ccc;
	color: var(--primary-colour);
	cursor: pointer;
	transition: all 0.3s ease;
	user-select: none;
	border-radius: 4px;
}
.toggle-sidebar i {
	color: var(--dark-bg);
	margin-left: 5px;
}
ul.pages, ul.child-pages, ul.child-pages, ul.children {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.pages .parent-page {
	margin-top: 0;
}
ul.pages .parent-page a {
	font-weight: bold;
}
ul.child-pages {
	margin-bottom: 20px;
	margin-top: 10px;
}
li.page:not(.current) .child-pages {
	display: none;
}
ul.pages a {
	color: #2E2E2E;
	font-weight: 400;
}
ul.pages a:hover, ul.child-pages a:hover {
	color: var(--primary-colour);
}
ul.pages > li {
  margin-bottom: 10px;
}
ul.pages li a.parent {
	border-left: 3px solid transparent;
	font-weight: bold;
	display: inline-block;
	color: #575757;
}
ul.pages li a.parent:hover {
	color: var(--primary-colour);
}
ul.pages li.current a.parent {
	border-left-color: var(--accent-colour);
	color: var(--primary-colour);
	padding-left: 10px;
}
ul.child-pages li {
	position: relative;
	text-indent: -35px;
	padding-left: 35px;
	margin: 5px 0;
}
ul.child-pages .children li {
	padding-left: 25px;
}
ul.child-pages li:before {
	content: "";
	margin-right: 10px;
	font-weight: 300;
	width: 12px;
	height: 1px;
	position: relative;
	background: #707070;
	top: 0;
	left: 0;
	display: inline-block;
}
/*--------------------------------
# Isotope
--------------------------------*/
.grid {
	display:block;
	margin:0 auto;
	margin-left: -20px;
	margin-right: -20px;
}
.grid-item {
	width:33.33%;
	padding: 0 20px;
	display:inline-block;
	margin:20px 0
}
/* Blog */
.grid-item.post .placeholder {
  display: none;
}
@media (min-width: 1700px) {
	.grid-item {
	width:25%;
	}
}

/*--------------------------------
# Modal
--------------------------------*/
.fancybox-container {
	top: 0 !important;
	bottom: 0 !important;
}
.fancybox-is-open .fancybox-bg {
    opacity: 1;
}
.fancybox-bg {
	background: rgba(9, 38, 59, 0.8);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
html.fancybox-active body > *:not(.fancybox-container) {
	filter: blur(10px);
	transition: filter 0.3s ease;
}
.modal {
	border-radius:10px
}
.fancybox-infobar {
  display: none !important;
}
.modal-title, .modal-name {
  margin: 0;
}
.modal-name {
  /* margin-bottom: 10px; */
}
.modal-title {
  margin-bottom: 20px;
}

.fancybox-toolbar .fancybox-button:hover {
	background: var(--primary-colour);
}
.fancybox-thumbs__list a:before {
	border-color: var(--primary-colour);
}
.fancybox-button--arrow_left:hover div, .fancybox-button--arrow_right:hover div {
	background: var(--primary-colour);
}
.fancybox-navigation .fancybox-button div {
	transition: all 0.4s ease;
	background:var(--link);
	opacity:1;
	border-radius:50%;
	overflow:hidden!important
}
.fancybox-navigation .fancybox-button div:hover {
	background:var(--link-hover)
}
.fancybox-button[disabled] {
	display: none !important;
}
/* .fancybox-button {
	height:34px;
	width:34px
} */
.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
    color: #fff;
	background: transparent !important;
	box-shadow: none !important;
}
.fancybox-slide--html .fancybox-close-small {
    color: #fff;
	background:var(--link);
    padding: 5px;
    right: 10px;
    top: 10px;
	border-radius:50%;
	opacity:1;
	transition: all ease 0.3s;
}
.fancybox-slide--html .fancybox-close-small:hover {
	background:var(--link-hover)
}
.fancybox-slide--image {
	padding:44px 10px
}
.modal .fancybox-button svg path {
	fill:var(--primary-button);
	transition: all ease 0.3s;
}
.modal .fancybox-button svg:hover path {
	fill:var(--primary-button-hover)
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
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 {
	outline: none;
}
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: var(--input-colour);
	border: 1px solid var(--input-border);
	background: var(--input-bg);
	border-radius: 2px;
	padding: 8px !important;
	transition: all 0.3s ease;
	line-height: normal !important;
	font-family: inherit;
  	-webkit-appearance: none;
}
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 {
	outline: none;
	border-color: var(--input-border-focus);
	background: var(--input-bg-focus);
}
select {
	border: 1px solid #ccc;
}
.sm-clean a span.sub-arrow {
	width: 8px;
	position: absolute;
	right: -2px;
	top: 50%;
}
.sm-clean a.has-submenu {
	padding-right: 12px;
}
textarea {
	width: 100%;
	max-height: 150px;
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
	margin-bottom: 5px;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
	margin-bottom: 5px;
}
.aligncenter, .aligncenter img {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  padding: 0;
}
.widget-title {
	margin: 15px 0;
	font-size: 1.1em;
}
.widget_recent_entries li {
	margin-bottom: 10px;
}
.widget select {
	max-width: 100%;
}
.widget ul {
	margin: 0;
  margin-bottom: 10px;
  padding-left: 0;
  list-style: none;
}
.widget_categories li:before  {
  text-align: center;
  margin-right: 0px;
  font-weight: 300;
  padding: 4px;
  position: relative;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-solid);
  content: "\f105";
  font-size: 0.9em;
  top: 0;
  display: inline-block;
}
#sidebar {
  font-size: 0.95em;
}
.widget_categories li {
	display: block;
	margin-bottom: 5px;
  text-indent: -12px;
  padding-left: 20px;
}
.widget_recent_comments li {
  padding-left: 0;
  text-indent: 0;
}
/* Lists */
ul, ol {
	color: var(--body-colour);
}
ul li::marker, ol li::marker {
	color: var(--accent-colour);
}
/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/
.error-404 {
  padding: 40px 0;
  background: #f5f5f5;
  height:500px;
  min-height: 500px;
}
.error-404 .container,
.error-404 .row {
	height:100%
}
.error-404 {
  text-align: left;
}
.error-404 #icon {
  max-width: 150px;
  border-right: 1px solid #ccc;
}
.error-404 #icon i {
  font-size: 6em;
  color: #6f6f6f;
}
/*--------------------------------------------------------------
# Flexible layout
--------------------------------------------------------------*/
section.is-hidden {
	/* transition: all 0.5s ease; */
	position: relative;
}
section.is-hidden:hover {
	box-shadow: none;
}

.is-hidden-message {
	position: absolute !important;
	top: 0;
	left: 0;
	z-index: 4;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease;
	box-shadow: 0px 0px 0px 1px rgba(182,0,0,1) inset;
}
section.is-hidden:hover .is-hidden-message {
	opacity: 0.2;
	
}
.is-hidden-message:before {
    content: 'This section is hidden from visitors';
	background-color: rgba(182,0,0,0.6);
	color: #fff;

    top: 0;
    position: absolute;
	width: 100%;
    left: 0;
    transition: all 0.5s ease;
    padding: 5px 0;
    text-align: center;   
	font-family: Arial, Helvetica, sans-serif;
}
#password-protected {
	padding: 40px 0;
}
.lt {
	margin-top:0;
	margin-bottom:0.4em
  /* margin: 10px 0 10px 0; */
}
h2.et {
	margin-bottom:0
}
.layout-title .tc .button-wrap {
	min-width: 100%;
}
.light-bg {
  background-color: var(--light-bg);
}
.dark-bg {
  background-color: var(--dark-bg);
}

ul.list {
	list-style: none !important;
	padding-left: 0px;
	line-height: normal !important;
	line-height: 1.5;
	margin-left:0;
	color: var(--body-colour);
}
ul.list li {
	position: relative;
	padding-left: 25px;
	margin: 10px 0;
}
ul.list li:before {
	color: var(--accent-colour);
	display: inline-block;
	font-size: 1em;
	position: absolute;
	top: 2px;
	line-height: normal;
	left: 0;
	width: 20px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-solid);
	opacity:0
}
ul.list.standard li:before {
	content: "\f068";
}
ul.list.ticks li:before {
	content: "\f058";
}
#page-sections {
	float: left;
	width: 100%;
}
#page-sections .dark-overlay:before {
	position: absolute;

    content: '';

    inset: 0;

    background-image: linear-gradient(

        to top,

        rgba(9, 38, 59, 1),

        rgba(9, 38, 59, 0.92),

        rgba(9, 38, 59, 1)

    );

    backdrop-filter: blur(1px);

    -webkit-backdrop-filter: blur(1px);
}
#page-sections .light-overlay:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #ffffff;
	opacity: 0.8;
}

.background-image div, .background-colour {
	position: relative;
}
.page-section[style*="--bg-mobile"] {
    background-image: var(--bg-mobile);
}
@media (min-width: 1024px) {
    .page-section[style*="--bg-desktop"] {
        background-image: var(--bg-desktop);
    }
}
.box {
	background: var(--box-bg);
	padding: 30px;
	float: left;
	width: 100%;
	border-radius:10px
}
.shadow {
	box-shadow: var(--shadow);
}
.hb {
	background: var(--box-bg);
	padding: 30px;
	display: flex;
	float: left;
	width: 100%;
	justify-content: center;
	flex-direction: column;
}
.light-bg .box {
	background:#fff;
}
/*--------------------------------
# Text Box
--------------------------------*/
.trim :first-child {
	margin-top: 0;
}
.trim :last-child {
	margin-bottom: 0;
}
/*--------------------------------
# One Thiord Two Third
--------------------------------*/
.one-third-two-third .co:first-child {
	border-right:1px solid rgba(255,255,255,0.2)
}.one-third-two-third .co:first-child h2 {
	margin:0.4em 0 0.2em 0
}
/*--------------------------------
# Image Left, Image Right
--------------------------------*/
.image-left .text .inner,
.image-right .text .inner {
	padding:0;
}
.image-left.full-width .text .inner {
	padding: 60px 40px;
}
.image-right.full-width .text .inner {
	padding: 60px 40px;
}
.image-left.full-width .image-wrap img,
.image-right.full-width .image-wrap img {
	display: block;
	height: 100%;
	object-fit: cover;
}
.image-right img,
.image-left img {
	object-fit: cover;
	aspect-ratio: 1/1;
}
/*--------------------------------
# Slider
--------------------------------*/
.slider .container {
	position: relative;

}
.slider .slide:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, #000 , transparent);
	opacity: 0.8;
}
.slider .inside  {
	position: relative;
	z-index: 4;
	text-align: left;
}
.slider .text {
	max-width: 620px;
}
.slider .slide {
	height:100%;
	min-height: 500px;
	padding: 60px 0;
	width: 100%;

    display: flex;
    justify-content: center;
    flex-direction: column;
}
.flickity-page-dots {
	bottom:0;
	max-width: 1240px;
	text-align: center;
	margin: 0 auto;
	right: 0;
	left: 0;
	padding-left: 40px;
	padding-right: 40px;
	    display: flex;
		justify-content:center;
    align-items: center;
	
}
.flickity-page-dots li:only-child {
	display: none !important;
}
.flickity-page-dots .dot {
	height: 12px;
	width: 12px;
	margin: 0 6px;
	background:var(--primary-button);
}
.flickity-page-dots .dot.is-selected {
  opacity: 1;
  width:12px;
  height:12px;
  border:none
}
.slider .flickity-page-dots {
	text-align:left;
	justify-content:start
}
.is-dark .flickity-page-dots .dot {
	background: #fff;
}
.slider h1, .slider h2, .slider p, .slider a.button {
	position: relative;
}
.slide h1, .slide h2, .slide h2, .slide p, .slider .slide a.button {
	visibility: hidden;
	animation-name: fadeOut;
	animation-duration: 1s;
}
.slide.is-selected h1,
.slide.is-selected h2 {
	animation-name: fadeInDown;
	visibility: visible;
}
.slide.is-selected p {
	animation-name: fadeInDown;
	visibility: visible;
}
.slider .slide.is-selected a.button {
	animation-name: fadeInUp;
	visibility: visible;
}

/*-----------------------
# Before & After
-----------------------*/
.before-after img {
	height: 100%; 
    max-width: none;
}
/*-----------------------
# Background Video
------------------------*/
.background-video .video-wrap:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, #000, transparent);
	opacity: 0.8;
	z-index: 1;
}

.background-video,
.background-video .video-wrap {
	position: relative;
}

.background-video {
	background: #000;
}

.background-video .video-wrap {
	min-height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 60px;
	padding-bottom: 60px;
}

.background-video video,
.background-video .bg-video-file {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	object-fit: cover;
}

.background-video .container {
	position: relative;
	z-index: 2;
}

.bg-video {
	z-index: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
}

.bg-video .bg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-height: 100vh;
	min-width: 177.77vh;
	transform: translate(-50%, -50%);
}

/* Default: no fade system */
.background-video .bg-video iframe,
.background-video .bg-video-file {
	opacity: 1;
}

/* Only fade when .fade-video is added */
.background-video.fade-video .bg-video iframe,
.background-video.fade-video .bg-video-file {
	opacity: 0;
	transition: opacity 0.8s ease;
}

.background-video.fade-video .bg-video iframe.is-loaded,
.background-video.fade-video .bg-video-file.is-loaded {
	opacity: 1;
}

@media (max-width: 675px) {
	.background-video .video-wrap {
		background-image: var(--mobile-video-bg);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		min-height: 300px;
	}

	.background-video .bg-video,
	.background-video .bg-video-file {
		display: none;
	}
}
/*-----------------------
# Quote
------------------------*/
.section.quote {
	text-align:center;
	font-size:18px;
	background:#f5f5f5;
	padding-top:20px;
	padding-bottom:20px;
}
/*-----------------------
# Images
------------------------*/
.images-layout img {
	display: block;
	width: 100%;
}
/*-----------------------
# Image Top Text Bottom
------------------------*/
.ittb .image-wrap img {
    /* aspect-ratio: 1 / 1;
    object-fit: cover; */
}
/*-----------------------
# Promo Boxes
------------------------*/
.promo-box {
	width: 100%;
	min-height:400px;
}
.promo-box.col {
	min-width: 33.33%;
	max-width: 50%;
}
.promo-box .inner {
	padding: 30px;
	width: 100%;
	position: relative;
}
.promo-box .inner:before {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.5;
	background: #000;
}
.promo-box .inner *:not(.button) {
  color: #fff;
}
.promo-box h2 {
  margin-top: 0;
}
.promo-box div {
  z-index: 2;
  position: relative;
}
/*-----------------------
# Child Pages
-----------------------*/
.child-page .inner {
	width: 100%;
}
.child-page.current {
	opacity: 0.5;
	pointer-events: none;
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
}
.parent-page {
	margin: 20px 0;
}
.no-block {
	width: calc(100% - 40px);
	max-width: 1100px;
	margin: 0 auto;
	margin-top: 40px;
	margin-bottom: 40px;
	text-align: center;
	padding: 40px!important;
	border: 2px dashed #ccc;
}
.no-block p {
	margin:10px 0
}
/*-----------------------
# Table Layout
-----------------------*/
.table-layout td, .table-layout th, .table-layout thead {
	padding: 10px;
}
.table-layout .th, .table-layout thead {
	border: 1px solid #869e5f;
}
.table-layout th {
  background: var(--light-bg);
  text-align: left;
  font-weight:600;
  border-left:1px solid #666;
  border-top:1px solid #666;
}
.table-layout th:last-child {
	border-right:1px solid #666;
}
.table-layout td {
  background: #fff;
  border-left:1px solid #666;
  border-top:1px solid #666;
  vertical-align: top;
}
/* .table-layout tr:nth-child(even) td {
	background:#f5f5f5;
} */
.table-layout tr > td:last-child {
	border-right:1px solid #666;
}
.table-layout tr:last-child td {
	border-bottom:1px solid #666;
}
.table-layout table {
	border-spacing: 0px;
}
/*-----------------------
# Contact Details
-----------------------*/
.dets h2 span {
	font-size:0.6em
}
.small-form {
	margin-top:60px
}
.form-wrap h2 {
	margin: 0;
	margin-bottom: 20px;
}
.contact-details {
	padding-top:20px;
	padding-bottom:20px
}
.contact-details h2 i,
.form-wrap h2 i {
	margin-right: 8px;
}
.contact-info .whatsapp img {
    margin-top: 20px;
	transition: all ease 0.3s;
}
.contact-info .whatsapp img:hover {
    scale:0.98
}
.contact-details .notes p {
	margin: 0;
	margin-top: 10px;
}
.contact-details .notes em {
	font-size: 0.9em;
}
.contact-details .bh .inner {
	padding: 5px 0;
	max-width: 80%;
}
.contact-info .extra {
    margin-top: var(--spacing-narrow);
}
.contact-details .bh .inner:not(:last-child) {
	border-bottom: 1px solid #e5e5e5;
}
address {
    font-style: inherit;
    margin: 0;
}
.contact-info .detail  {
	margin-bottom: 20px;
    float: left;
    width: 100%;
}
 
.contact-info .detail h2,
.form-wrap h2 {
	margin: 0;
    margin-bottom: var(--spacing-narrow);
    font-size: 1.4em;
}
.contact-info .notes {
	margin-top: 10px;
}
.contact-info .label {
	font-weight: bold;
}
.detail.phone, 
.detail.email,
.detail.address,
.detail.bh {
	width:100%
}
.contact-map {
	padding-top:100px
}
/*-----------------------
## Call to action
-----------------------*/
.calltoaction {
	padding: 40px 0;
}
.cta-link {
	text-align: center;
}
.calltoaction .container {
max-width: 1100px;
width: calc(100% - 40px);
margin: 0 auto;
border-radius: 40px;
padding: 40px 50px !important;
box-shadow: var(--shadow);
background: linear-gradient(180deg, #6a5acd, #00bcd4, #6a5acd);
background-size: 200% 200%;
animation: gradient-move 16s ease-in-out infinite;	
}
.calltoaction .shiny {
	background: linear-gradient(90deg, #09263b, #C83A8C);
	  background-size: 200% 200%;
  animation: shinyGradient 9s ease infinite;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: reklame-script, sans-serif;
    font-weight: 700;
    letter-spacing: normal;
    font-size: 1.1em;
	padding-left:4px;
	padding-right:6px
}
.pixels {
	min-width:69px;
	text-align:center;
	display:inline-block;
	font-size:1.1em;
	top:1px;
	position:relative
}
h2.pixel-title {
	margin-bottom:-1em;
	font-size:1.3em;
	font-weight:500
}
.calltoaction p {
	font-size:1.1em
}
section:has(.calltoaction) {
	padding-bottom:0!important
}
.calltoaction img {
	max-width:90px;
	width:100%;
	display:block;
	margin:0 auto
}
/*-----------------------
## Pricing Tables
-----------------------*/
.product .bottom {
    padding-top: 20px;
}
.product .header {
	position: relative;
	padding:0 10px;
	border-bottom:1px solid rgba(255,255,255,0.4);
	margin-bottom:16px;
	min-height:183px
}
.product .header h2 {
	margin: 0 0 10px 0;
	font-size:2.1em
}
.product .header p {
	margin:0
}
.product .header p.disc {
	margin-bottom:20px;
	opacity: 0.8;
    color: var(--body-colour);
    font-size: 0.8em;
}
.product .header h4 {
	margin: 0 0 10px 0
}
.product .inner {
	background: var(--box-bg);
    width: auto;
    text-align: left;
    padding: 20px;
	overflow: hidden;	
	border-radius:10px
}
.product .icon {
	  color: #32b3a0;
	  font-size: 1.5em;
}
.product .feature {
	padding: 5px 10px;
	border-radius: 5px;
	/* border-bottom: 1px solid #eee; */
}
.product .features-wrap .feature:nth-child(even) {
	/* background: #fff; */
}
.product .icon.cross {
	/* opacity: 0.3;
	filter: grayscale(100%); */
	color:#952a2a
}
.product p.price {
	font-weight:500;
	font-size:1.2em;
}
.product p.price span{
	font-weight:300;
	font-size:0.9em;
}
.pricing .product:last-child .icon {
	display:none
}
/*-----------------------
# Features List
-----------------------*/
.feature h3 {
	margin: 0;
	margin-bottom: 5px;
}

.feature p {
	margin: 0;
	line-height: 1.3;
}
.features .feature .icon i {
  position: relative;
  top: -9px;
    padding-top: 2px;
      display: inline-block;
    background: linear-gradient(229deg, #3498db 0%, #C83A8C 100%);
    background-size: 200% 200%;
    /* animation: shinyGradient 2s ease infinite; */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.features .feature .icon {
  max-width: 45px;
	color: var(--accent-colour);
	font-size: 1.8em;
	margin-right: 6px;
}
.trust .container {
	position: relative;
	z-index: 1;
	width: calc(100% - 40px);
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.2);
}
.features.trust .feature .icon i {
	top:auto
}
.features.trust .feature h3 {
	margin:0
}
.features .co {
	margin:8px 0
}
/*-----------------------
# Meet The Team
-----------------------*/
a.image-link {
  background:var(--dark-bg)
}
a.image-link:hover img{
  opacity:0.9
}
.team-title-wrap {
	margin-top:12px
}
.team-title {
	margin: 0;
}
.team-subtitle {
  margin: 0;
  opacity: 0.8;
}
.col.member {
    min-width: 25%;
    max-width: 50%;
	margin:20px 0!important
}
 
.member img {
	display: block;
	width: 100%;
	margin: 0 auto;
	transition: all ease 0.3s;
}
.modal-team img {
	display: block;
	width: 100%;
	margin: 0 auto;
}
.modal-team .link-wrap {
	margin: 15px 0;
}
.modal-team .link-wrap:last-of-type {
	margin-bottom: 0;
}

.initials {
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5em;
    font-family: var(--headings-font);
    background: var(--light-bg);
    color: var(--headings-colour);
    font-weight: 300;
    user-select: none;
	transition: all ease 0.3s;
}
a.image-link .initials:hover {
	opacity:0.9
}
.bio-link {
	max-width:40px;
	text-align:center;
	margin-left:10px
}
.bio-link i {
	font-weight:900!important;
	font-size:2em
}
/*-----------------------
# Accordion
-----------------------*/
.accordion-toggle {
	width:100%;
	cursor: pointer;
	position: relative;
	padding: 12px 20px 12px 20px;
	border-radius: 3px;
	border: 1px solid var(--primary-button);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
	color:var(--body-colour);
	font-weight: 500;
	font-size: 1em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin:20px 0;
	line-height:1.4
}
.accordion-toggle:hover {
	background:var(--primary-button);
	color: #fff;
}
.accordion-toggle.active {
	background: var(--primary-button);
	color: #fff;
}
.accordion-content {
	overflow: hidden;
	display: none;
	padding: 20px;
	margin-bottom: 20px;
	background:rgba(0,0,0,0.2);
	border-radius:3px
}
.accordion-content :first-child {
	margin-top: 0;
}
.accordion-content :last-child {
	margin-bottom: 0;
}
.accordion-content.default {
	display: block;
}
.accordion-toggle .fa {
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	font-size:30px!important;
	margin-left: 10px;
}

.accordion-toggle i {
	transition: all 0.4s ease;
}
.rotate180 {
	transform: rotate(180deg);
}
.accordion-layout #no-results {
    text-align: center;
    justify-content: center;
}
.search-accordion input {
    width: 100%;
    padding-right: 32px !important;
}
.search-wrapper {
    width: 100%;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    clear: both;
    float: none;
    margin-bottom: var(--spacing-narrow);
}
.clear-search-link {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 1.2em;
}
.search-accordion {
    float: left;
    width: 100%;
    position: relative;
}
/*--------------------------------
# Timeline
--------------------------------*/

.timeline-entry {
	position: relative;
	--spacing: 46px;
}
.timeline-entry:after {
    content: '';
    width: 26px;
    height: 26px;
    position: absolute;
    right: 0;
    left: 0px;
    top: var(--spacing);
    margin: 0 auto;
	border-radius: 50%;
    background: var(--primary-button);
    background-repeat: no-repeat;
    background-size: contain;
}
 
.timeline-container {
	position: relative;
}
 
 
.timeline-entry:before {
	content: '';
	width: 3px;
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
    top: var(--spacing);
	margin: 0 auto;
	background: var(--primary-button);
}
.timeline-container .timeline-entry:last-child:before {
    display: none;
}
.timeline-entry .title {
    margin: 0;
}
.timeline .image-wrap {
	margin-top:50px
}
/*--------------------------------
# Logos
--------------------------------*/
.carousel-wrap {
  position: relative;
}

.carousel-image {
  padding: 20px 40px;
}

.carousel-image img {
  display: block;
  width: auto;
  height: auto;
  max-height: 70px;
  min-width: 50px;
  max-width: 200px;
  object-fit: contain;
}

.full-container .carousel-wrap {
  padding: 0;
}

.logos {
  padding-top: 10px;
  padding-bottom: 10px;
}

.logos .flickity-page-dots {
  bottom: 0;
  position: relative;
}

.is-dark .carousel-image img,
.is-dark .logo-wrap img {
  filter: brightness(0) invert(1) saturate(0.3);
  opacity: 0.8;
}

.logo-row .logo-wrap img {
  max-height: 70px;
  min-width: 50px;
  width: auto;
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

.logo-row .logo-wrap {
  margin: 20px 0;
}

.logo-wrap img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 200px);
  max-height: 75px;
  margin: 0 auto;
  object-fit: contain;
  transition: all ease 0.3s;
}

.logo-wrap.five {
  min-width: 20%;
}

.logo-wrap.five img {
  max-width: 100%;
}

a.image-carousel-link img {
  transition: all ease 0.3s;
}

a.image-carousel-link:hover img {
  scale: 1.03;
}
.logos .flickity-slider {
	display:flex;
	align-items: center;
}
#taster {
	box-shadow:inset 0 30px 40px -25px rgba(9, 38, 59, 0.4),

	inset 0 -30px 40px -25px rgba(9, 38, 59, 0.4);
}
/*--------------------------------
# New ticker
--------------------------------*/
.ticker {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: ticker-scroll linear infinite;
}

.ticker-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticker-item img {
  display: block;
  width: auto;
  height: auto;
  max-height: 100px;
  min-width: 180px;
  max-width: 220px;
  object-fit: contain;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/*--------------------------------
# Footer Logos
--------------------------------*/
.footer-logos {
	padding-top:10px;
	padding-bottom:10px
}
.footer-logos .flickity-page-dots {
    bottom: 0px;
}
/*--------------------------------
# Downloads
--------------------------------*/
.download img {
	max-height: 100px;
	width: auto;
	display: inline-block;
	margin-bottom: 20px;
	transition: all ease 0.3s;
}
.download img:hover {
	filter: brightness(90%);
}
/*--------------------------------
# Links section
--------------------------------*/
.link-title {
	margin-top: 0;
	margin-bottom: 15px;
}
.link-description {
	margin-top: 0;
	margin-bottom: 15px;
}
.link-image img {
	max-height: 70px;
	min-width: 50px;
	width: auto;
	max-width: 200px;
	display: block;
	margin-bottom: 20px;
}
/*--------------------------------
# TABS
--------------------------------*/
ul.tabs{
	margin: 0px;
	list-style: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
ul.tabs li{
	background: none;
	color: var(--primary-button);
	display: inline-block;
	    padding: 11px 24px !important;
	cursor: pointer;
	transition: all 0.3s;
	margin: 10px;
    font-size: 1em;
    font-weight: 600;
	border:1px solid var(--primary-button);
	color:#fff;
	border-radius:40px
}
ul.tabs li:hover {
	color: var(--accent-colour);
	border-color:var(--accent-color)!important;
}
ul.tabs li.current{
	background: #fff;
	border-color:#fff;
	color: var(--primary-button);
	pointer-events: none;
}
.tab-content {
	display: none;
	background: var(--box-bg);
	padding: 30px;
	border-radius:10px
}
.tab-content.current{
	display: inherit;
	animation-name: fadeIn;
	animation-duration: 0.5s;
}
/* Horizontal */
.tabbed.horizontal ul.tabs {
	padding: 20px 0;
	text-align:left;
	max-width:940px;
	margin:0 auto;
	display:block;
}

/* Vertical */
.tabbed.vertical .tabs li {
	margin: 0;
}
.tabbed.vertical .tabs li, .tabbed.vertical .tabs li a {
	width: 100%;
}
.tab-content .features .feature .icon i {
	top:0;
	margin-right:5px
}
.tab-features .feature {
	margin:9px 0
}
/*--------------------------------
# GALLERY
--------------------------------*/
.gallery-icon img {
	display: block;
}
.gallery-item .gallery-caption {
	display: block;
	font-size: 0.9em;
	font-style: italic;
	margin-top: 10px;
}
.gallery-item {
	padding: 0 10px;
	margin: 10px 0;
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.gallery-image .inner, .gallery-icon {
	position: relative;
	overflow: hidden;
}
.image-caption {
    margin: 10px 0 0 0;
    color: var(--body-colour);
    float: left;
    width: 100%;
    word-wrap: break-word;
	text-align:center;
	font-style:italic;
	font-size:0.95em
}
.gallery-image .inner:before,
.gallery-icon a:before {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;

	background: rgba(0,0,0,0.4);
	color: #fff;

	font: var(--fa-font-solid);
	font-size: 4em;

	content: "\f03e";
	opacity: 0.6;
	transition: opacity 0.3s ease;

	z-index: 1;
}
.gallery-image:hover .inner:before, .gallery-icon:hover a:before {
	opacity: 0;
}
.gallery-image img, .gallery-icon img {
	display: block;
	width:100%;
	transition: all 0.3s;
}
.gallery-image:hover img, .gallery-icon:hover img {
	transform: scale(1.1);
}
div.gallery {
  position: relative;
  float:left;
}
body.single-post div.gallery {
	left: -10px;
    right: -10px;
    width: calc(100% + 20px);
    margin:20px 0
}
.gallery-image.col:not(.five) {
    min-width: 25%;
    max-width: 50%;
}
.gallery-image img {
	width:100%;
	display:block;
}
.gallery.standard img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}
/*--------------------------------
# Isotope / Masonry Gallery
--------------------------------*/
 
 
.image-item img {
	width: 100%;
	background-color: var(--light-bg);
	display: block;
	opacity: 0;
	transition: opacity 0.8s ease;
}
.image-item img.loaded {
	opacity: 1;
}

/*--------------------------------
# Gallery Carousel
--------------------------------*/
.gallery-main.flickity-resize .image {
  min-height: 100%;
}

.gallery-main {
  margin: 20px 0;
  border-radius:10px;
}

.gallery-main .image.no-crop img {
  max-height: 500px;
  width: auto;
  display: block;
  object-fit: contain;
}

.gallery-main .image img {
  display: block;
}

.gallery-main .image.crop {
  float: left;
  width: 100%;
  border-radius:10px;
  /* overflow:hidden */
}

.gallery-main .image.no-crop {
  width: auto;
  display: block;
}

.gallery-main .image.crop img {
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius:10px;
  width: 100%;
    height: 100%;
    object-fit: cover;

}

.gallery-main .image.no-crop{
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-details {
	position:absolute;
	bottom:-30px
}
.featured-details h3 {
	margin:0;
	opacity:0.9;
	font-size:1em
}
.featured-details p {
	margin:0;
	opacity:0.8;
	font-size:0.9em;
	line-height:1.2
}
.project-carousel .flickity-prev-next-button {
	top:calc(50% - 16px)
}
.project-excerpt-wrap {
	margin-bottom: 40px;
}

.project-excerpt-box {
	border-radius: 20px;
	padding: 40px;
	overflow: hidden;
	margin:40px 0;
	float:left;
	width:100%;
	position:relative
}
.project-excerpt-box img {
	border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.project-excerpt-box h3,
.project-excerpt-box p.description{
	margin-bottom:0
}
.project-excerpt-box a.button-link {
	margin-top:30px
}
.project-excerpt.reverse .images,
.row.reverse .images {
	order: 2;
}

.project-excerpt.reverse .content,
.row.reverse .content {
	order: 1;
}

.project-info {
	margin: 0;
    color: rgba(255, 255, 255, 0.7);
}
.project-excerpt-box h3 i {
	font-weight:900!important
}
.project-excerpt-box .mob img {
	position:absolute;
	right:0;
	bottom:0;
	width:20%
}
.project-excerpt-box .reverse .mob img {
	right:auto;
	left:0;
}
.project-excerpt-box .desk img {
	margin-left:0%;
	margin-right:5%;
	width:95%
}
.project-excerpt-box .reverse .desk img {
	margin-left:5%;
	margin-right:0%;
	width:95%
}
p.author {
	text-align:left;
	font-style: italic;
	opacity:0.8;
	margin-top:-1em
}
.featured-posts img {
	transition: scale ease 0.3s;
}
.featured-posts img:hover {
	scale:1.02
}
section:has(.latest-posts) {
	padding-top:70px;
}
/* --------------------------------
   Thumbnails
---------------------------------- */
.gallery-thumbs img {
  display: block;
  transition: all 0.4s ease;
  width:100%;
}

.gallery-thumbs .thumb:hover img {
  opacity: 0.8;
}
.gallery-thumbs{
  width: 100%;
  float:left;
  background:var(--light-bg)
}

.gallery-thumbs .thumb{
  width: 20%;
  box-sizing: border-box;
  padding:2px;
  cursor: pointer;
  margin: 0;
}
.gallery-thumbs .thumb img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.gallery-thumbs .flickity-viewport{
  width: 100%;
  overflow: hidden;
}
.gallery-thumbs .flickity-slider{
  width: 100% !important;
}
.gallery-thumbs .thumb img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.flickity-button {
  padding: 0;
  background: var(--primary-button);
  color: var(--primary-button-text);
  margin: 0;
  transition: all ease 0.3s;
}
.flickity-button:hover {
  background: var(--primary-button-hover);
  color: var(--primary-button-text-hover)!important;
}

/*-----------------------
# Page Excerpt
-----------------------*/

.excerpt-page .inner {
	position: relative;
	display: block;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
}

/* The box itself */
.excerpt-page .thumb-wrap {
	position: relative;
	width: 100%;
	/* min-height: 320px;  */
	aspect-ratio: 4 / 3; 
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* Dark overlay */
.excerpt-page .thumb-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	transition: all 0.4s ease;
	z-index: 1;
}

.excerpt-page .inner:hover .thumb-wrap::before {
	background: rgba(0, 0, 0, 0.7);
}

/* Content sits above overlay */
.excerpt-page .content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
}

/* Keep everything centred */
.excerpt-page .content .text {
	text-align: center;
	max-width: 700px;
	transition: all 0.4s ease;
}

/* Title */
.excerpt-page .content h2 {
	margin: 0;
	font-size: 1.8em;
	color: #fff;
	
}

/* Hidden by default */
.excerpt-page .page-excerpt,
.excerpt-page .link-wrap {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transform: translateY(10px);
	transition: all 0.8s ease;
	margin: 0;
}

/* Spacing when shown */
.excerpt-page .page-excerpt {
	color: #fff;
}
.excerpt-page .inner:hover .page-excerpt {
	margin-top: 12px;
}

.excerpt-page .link-wrap {
	margin-top: 12px;
}

.excerpt-page .button-link {
	display: inline-block;
}

/* On hover, reveal extra text but keep the whole block centred */
.excerpt-page .inner:hover .page-excerpt,
.excerpt-page .inner:hover .link-wrap {
	opacity: 1;
	max-height: 200px;
	transform: translateY(0);
}

/* Optional slight scale on card hover */
/* .excerpt-page .inner:hover .thumb-wrap {
	transform: scale(1.03);
	transition: transform 1s ease;
} */
.excerpt-page .button-link {
	pointer-events: none;
}
@media (hover: none) {

	.excerpt-page .inner:hover .thumb-wrap {
		transform: none;
	}

	.excerpt-page .inner:hover .thumb-wrap::before {
		background: rgba(0,0,0,0.35);
	}

	.excerpt-page .inner:hover .page-excerpt,
	.excerpt-page .inner:hover .link-wrap {
		opacity: 0;
		max-height: 0;
		transform: translateY(10px);
	}

}
.excerpt .page-classic, h2.excerpt-title {
	margin:0
}
.page-excerpt-footer {
	padding:0 20px 20px 20px
}
/*-----------------------
# Sibling Pages
-----------------------*/
.sibling-page {
	margin: 20px 0;
	z-index:2
}
.sibling-page.current {
	pointer-events: none;
	opacity:0.5;
}
.sibling-page .thumb-wrap {
	max-width: 100px;
}
.sibling-page .row {
	background:var(--light-bg);
	border-radius:3px
}
.sibling-page img {
	border-radius:3px;
	transition: all ease 0.3s;
}
.sibling-page img:hover {
	scale:1.02
}
.sibling-parent {
	display:flex;
	justify-content: center;
	align-items: center;
	z-index:1
}
.sibling-parent h3{
	margin:0
}
/*-----------------------
# Number counter
-----------------------*/
.number-counter h3 {
	font-size:2.5em;
	margin: 0;
}
.number-counter .counter {
  font-weight: bold;
}
.number p {
	margin: 0;
	margin-top: 10px;
}

/*--------------------
## Galleries (Posts)
---------------------*/
.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: 50%;
}
.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;
}
.gallery-item .gallery-caption {
	display:none
}
/*--------------------------------
# Testimonials
--------------------------------*/
.testimonials {
	float: left;
	width: 100%;
	padding: 20px 0;
}

.testimonials .container,
.testimonial .container {
	max-width: 940px;
}

.testimonials .section-title,
.t-slide h1 {
	margin-top: 0;
}
.testimonial-slider {
	padding-bottom:50px;
	padding-top:40px
}
.testimonial-slider .flickity-viewport,
.testimonials .flickity-viewport {
	overflow: visible !important;
	transition: all 0.4s;
}

.testimonials .flickity-page-dots {
	position: relative;
	bottom: -20px;
}

.has-one .flickity-page-dots {
	display: none;
}

.flickity-slider {
	display: flex;
	align-items: center;
}

.t-slide,
.carousel-item {
	width: 30%;
	margin: 10px 20px;
}

.flickity-resize .t-slide,
.flickity-resize .carousel-item {
	min-height: 100%;
	transition: opacity 0.3s ease;
}

.t-slide.is-selected {
	opacity: 1;
}

.t-slide .inner,
.carousel-item .inner {
	position: relative;
	padding: 30px;
	background: var(--box-bg);
	box-shadow: var(--shadow);
	border-radius: 40px;
	overflow:hidden;
	text-align:center
}


.dark-bg .t-slide .inner {
	position: relative;
    z-index: 1;
}
.dark-bg .t-slide .inner > * {
    position: relative;
    z-index: 1;
}
.dark-bg .t-slide .inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, transparent,#09263b);
    pointer-events: none;
}

.testimonial p,
.testimonials p {
	font-size: 1.1em;
}

.t-slide .company {
	font-size: 0.9em;
}

.testimonial .author,
.testimonials .author {
	color: var(--body-colour);
}

.author p {
	margin: 0;
}

.testimonial img,
.testimonials img,
.carousel-item img {
	display: block;
	width: 70px;
	margin: 0 auto;
	border-radius: 50%;
}

.carousel-item img {
	max-width: 60px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	margin-bottom:5px
}

.testimonial i,
.testimonials i {
	color: var(--accent-colour);
	font-weight: 900 !important;
	filter:brightness(1.4)
}

.carousel-item .content {
	position: relative;
	z-index: 2;
}

.carousel-item h3 {
	margin: 0;
	font-weight:500
}

.hero {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	z-index: 1;
}
.t-slide p {
	margin:0;

	opacity:0.8
}
.t-slide i {
	font-weight:900!important
}
.t-slide .bottom {
	padding-left:20px;
	padding-right:20px;
	text-align:center
}
/*--------------------------------
# Testimonial Grid
--------------------------------*/
.testimonial-grid .inner {
	padding: 30px;
	box-shadow: var(--shadow);
	background: #fff;
	border-radius: 20px;
	height: 100%;
}

.is-dark .testimonial-grid .inner {
	background: none;
}
.testimonial-item img {
	border-radius:10px;
	width:100%;
	transition: scale ease 0.3s;
}
.testimonial-item img:hover {
	scale:1.02
}
.testimonial-item h3 {
	margin:10px 0 0 0
}
.testimonial-item .info {
	font-size:0.9em;
	color: rgba(255, 255, 255, 0.7);
	margin-top:0
}
.testimonial-item .author {
	font-size:0.9em;
	opacity:0.9;
	margin-top:-1em
}
.project-highlight-modal .logo {
	text-align: center;
	margin-bottom: 20px;
}

.project-highlight-modal .logo img {
	max-height: 90px;
	width: auto;
	max-width: 250px;
	display: block;
	margin: 0 auto;
	object-fit: contain;
}

.project-highlight-modal h2 {
	text-align: center;
}

.project-highlight-modal .meta {
	text-align: center;
	opacity: 0.7;
	margin-bottom: 20px;
}

.project-highlight-modal .author {
	text-align: center;
	margin-top: 20px;
}

.project-highlight-modal .button {
	margin-top: 20px;
}
/*--------------------------------
# Videos
--------------------------------*/
.video-container {
	min-width: 25%;
}
.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	height: auto;
	overflow:hidden;
	box-shadow: var(--shadow);
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.square-vid {
	width:100%;
	float:left;
	border-radius:10px;
	border: none;
	/* box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 50px -20px, rgba(0, 0, 0, 0.3) 0px 30px 40px -20px; */
    border-radius: 10px;
    overflow: hidden;
	aspect-ratio: 16/16;
	object-fit: cover;
	box-shadow:0 0 10px rgba(0,0,0,0.2);
}
.square-vid video {
	width: 100%;
	height:100%;
	aspect-ratio: 16/16;
	object-fit: cover;
	border-radius:10px;
	
}
/*--------------------------------
# Multiple CTA
--------------------------------*/
.cta .inner {
  width: 100%;
}
.cta p:last-child {
	margin-bottom:0
}
.cta:not(.intro) .inner {
	text-align: left;
}
.cta-title {
	margin-bottom: 5px;
	margin-top:12px
}
.cta-image {
	min-height: 95px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.cta-image img {
	display: inline-block;
	vertical-align: middle;
	max-height: 90px;
	min-width: 50px;
	width: auto;
	max-width: 200px;
}
.cta-icon i {
	font-size: 3em;
	line-height: 1;
	color: var(--accent-colour);
	font-weight:200!important;
	display:inline-block;
    background: linear-gradient(229deg,#3498db 0%, #C83A8C 100%);
    background-size: 200% 200%;
    /* animation: shinyGradient 2s ease infinite; */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.cta .inner a.button-link {
	margin-top:20px
}
#price .cta-icon {
	height:70px;
	display:flex;
	align-items: center;
	justify-content: center;
	background:var(--box-bg);
	width:70px;
	border-radius:50%;
	text-align:center;
}

#price .cta:first-child .cta-icon i {
	font-size:1.8em
}
#price .cta:nth-child(2) .cta-icon i {
	font-size:2.4em
}
/*--------------------------------------------------------------
## Posts
--------------------------------------------------------------*/
.excerpt {
	position: relative;
	float: left;
	width: 100%;
	box-shadow: var(--shadow);
	
}
.excerpt.standard {
	border-radius: 10px;
	overflow: hidden;
}
.excerpt.standard .excerpt-thumb {
	overflow: hidden;
}

.excerpt.standard .excerpt-thumb img {
	aspect-ratio: 16/9;
	object-fit: cover;
	transition: transform 0.8s ease, opacity 0.3s ease;
	width: 100%;
	display: block;
}

.excerpt.standard .excerpt-thumb:hover img {
	opacity: 0.8;
	transform: scale(1.05);
}
.is-dark .excerpt {
	background-color: var(--box-bg);
}
div.categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
div.categories li {
    display: inline-block;
}
.excerpt span.date {
	opacity: 0.8;
	color: var(--body-colour);
	font-size:0.8em;
	margin-bottom:10px;
	display:inline-block
}
div.categories a {
	display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    line-height: 1;
    color: var(--body-colour);
    background: var(--box-bg);
	font-size: 0.85em;
}
div.categories a:hover {
	color: var(--link);
}
.excerpt-related {
	margin: 10px 0;
}
.excerpt-related .image {
	padding-right: 0;
	max-width: 160px;
}
.excerpt-related .excerpt-title {
	color: var(--primary-colour);
	margin-bottom: 0;
}
#post-nav {
	margin-top: 10px;
}
.related-title {
	margin: 20px 0;
	margin-bottom: 10px;
}
.excerpt .inner {
	padding: 20px;
}
.excerpt-content {
	color: var(--body-colour);
}
.excerpt-content p {
  margin: 0;
}
.excerpt-thumb img, .thumb-wrap img, .image-wrap img {
	display: block;
	width: 100%;
	border-radius:10px
}
h2.excerpt-title {
	font-size:1.6em
}
.excerpt-title {
	margin: 10px 0;
}
.excerpt-title a {
	color:var(--body-colour)
}
.excerpt-title a:hover {
	color:var(--link)
}
.meta span {
	display: inline-block;
}
#related-posts {
	float:left;
	width:100%;
	position:relative;
	border-top: 1px solid #ccc;
	margin-top: 20px;
}
 #related-posts {
	float:left;
	width:100%;
	position:relative;
	border-top: 1px solid rgba(255,255,255,0.2);
}
#post-nav {
	padding-top: 10px;
	float:left;
	width:100%;
	position:relative;
	border-top: 1px solid #ccc;
}
.prev-post, .next-post {
	margin: 10px 0;
}
.next-post {
	margin-left: auto;
}
#post-nav h3, #post-nav h4 {
  margin: 0;
}
#post-nav h4 {
  margin-top: 10px;
}
 
.meta {
  margin: 5px 0;
  color: #666;
  font-size: 0.9em;
}
.excerpt-archive.classic {
	min-width: 100%;
}
.excerpt-classic-image {
	 width: 270px;      /* your fixed width */
  flex: 0 0 270px;   /* don’t shrink/grow */
  align-self: stretch;
}
.excerpt-classic-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.excerpt-classic-content {
	min-width: 300px;
}
.excerpt-archive.classic .excerpt {
	background: none;
}
.sticky {
	display: block;
	position: relative;
}
.excerpt-thumb, .thumb-wrap, .image-wrap {
	position: relative;
  float: left;
  width: 100%;
  flex: 0 0 auto;
 
}
.excerpt-thumb {
	 background:var(--dark-bg);
	 border-radius:10px
}
.excerpt-footer {
	float: left;
	width: 100%;
	padding: 0 20px;
	margin-bottom: 20px;
}
.updated:not(.published) {
	display: none;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.pagination i {
	top:1px;
	position:relative
}
.time {
	font-size:0.8em
}

/*--------------------------------------------------------------
# Search & Filter
--------------------------------------------------------------*/

.sf-input-select, .gfield_select, .form-field select, .orderby, .ginput_container_date select, .select {
	color: var(--body-colour);
	padding: 13.75px 50px 13.75px 20px;
	min-width: 220px;
	max-width: 100%;
	border-radius: 40px;
	box-sizing: border-box;
	margin: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: #fff;
	background-color: var(--input-bg);
	border: 1px solid var(--input-border);
	background-image: url('images/angle-down-white.svg');
	background-size: 18px;
	background-position: center right 20px;
	background-repeat: no-repeat;
	width: 100%;
	transition: all ease 0.3s;
}
.filter input.sf-input-text {
  width: 100%;
}
.sf-input-select:hover, .gfield_select:hover, .form-field select:hover, .orderby:hover, .ginput_container_date select:hover, .select:hover {
	border-color: var(--input-border-focus);
}
.sf-input-select:focus, .gfield_select:focus, .form-field:focus, .orderby:focus, .orderby:focus, .ginput_container_date select:focus, .select:focus {
	/* border-color: var(--input-border-focus); */
}

/*--------------------------------------------------------------
# Gravity Forms
--------------------------------------------------------------*/

.gform-theme--api, .gform-theme--framework {
	--gf-font-size-primary: 16px !important;
}

p.gform_required_legend {
	display: none;
}
.gform_wrapper {
	background:#fff;
	padding:30px;
	border-radius:20px
}


/*-----------------------
# Menu Toggle
------------------------*/
.toggle-wrap {
	position: relative;
	cursor: pointer;
	display: inline-block;
	/*disable selection*/
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	touch-action: manipulation;
	width:34px;
	float:right;
}
.toggle-bar {
	width: 30px;
	position: relative;
	display: block;
}
.toggle {
	width:30px;
	height:3px;
	float:right;
	background:#fff;
	margin:3px 0;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.toggle-wrap:hover .toggle.two {
	width:30px;
}
.toggle-wrap:hover .toggle.three {
	width:18px;
}
.toggle-wrap:hover .toggle {
	background:var(--primary-button);
}

/*-----------------------
# Mobile Menu
------------------------*/
.logo img, .logo svg {
	width:100%;
	display:block;
	max-width: 210px;
	width:210px;
	transition: all ease 0.6s;
}
.logo img:hover, .logo svg {
	filter:brightness(8) drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}
#mobile-header {
	padding: 10px 0;
    position: absolute;
    top: 10px;
    z-index: 9;
    height: 66px;
}
#mobile-menu-overlay  {
	position: fixed;
	z-index: 888888;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
	bottom:0;
	overflow-y: scroll;
	padding: 0;
	display:none;
	overscroll-behavior: contain;
	background: linear-gradient(

		to top,
		rgba(0, 0, 0, 0.8),
		rgba(9, 38, 59, 0.8)
	);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
}
#mobile-menu .current-menu-item a {
    color: #3498db;
}


html.menu-open,
body.menu-open {
	overflow: hidden;
	height: 100%;
}

body.menu-open {
	position: fixed;
	width: 100%;
	left: 0;
	right: 0;
}
#mobile-menu-overlay .sm-clean a {
	padding-right: 0;
	font-size:1em;
	font-weight:500;
	padding-left:3px
}
#mobile-menu-overlay .sm-clean li {
  border-top: 1px solid rgba(255,255,255,0.1);
}
#mobile-menu-overlay .sm-clean > li:first-child {
  border-top: 0;
}
#mobile-menu-overlay .menu-logo img {
	display: block;
	height: auto;
	height: auto;
	max-width: 210px;
}
#mobile-menu-overlay .close-button-wrap {
	min-width: 74px;
	text-align: center;
}
#mobile-menu-overlay .button-wrap {
	margin: 10px 0;
}
#mobile-menu-overlay .cta-buttons {
  margin: 15px 0;
}
.close-menu {
	color: #fff;
	font-size: 26px;
	touch-action: manipulation;
	display: inline-block;
}
.close-menu i {
	font-weight:600!important
}
#mobile-main {
	padding-top:120px;
	padding-bottom:20px;
}
#mobile-main .container {
	max-width:600px
}
.mobile-center {
	min-height:calc(100vh - 86px);
	flex-wrap: wrap
}
.mobile-center .float {
	min-width:100%
}
#mobile-menu-overlay .social {
	text-align:center;
	padding-top:30px;
}

@media screen and (max-width: 600px) {
	.mobile-center {
		min-height:calc(100vh - 180px);
	}
}
#mobile-menu-wrap {
	display: none;
}
/*-----------------------
# Site Guide
-----------------------*/
body.page-id-7474 #footer,
body.page-id-7474 header,
body.page-id-7474 #top-bar {
	display:none
}
/*--------------------------------------------------------------
## IDS
--------------------------------------------------------------*/
#about img {
	border-radius:50%;
	max-width:320px;
	display:block;
	margin:0 auto
}
/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/

#footer {
	float: left;
	width: 100%;
	padding: 40px 0 30px 0;
	color:#ccc;
	background-image: linear-gradient(to top, #222 , var(--dark-bg));
	font-size:0.9em;
	
}
.tree-wrap {
	padding-bottom:50px
}
#footer .logo {
	height:auto!important;
	flex: 0 0 auto;
	align-self: flex-start;
}
#footer .logo p:last-child {
	margin-bottom:0;
}
#footer .container,
#copyright .container {
	max-width:1400px
}
.whatsapp img {
    display: inline-block;
}
#footer p,
#copyright p {
	color:#eee
}
#footer .whatsapp img {
    margin: 10px 0;
	transition: all ease 0.3s;
}
#footer .whatsapp img:hover {
    scale:0.98
}
#footer, #copyright {
	--link: #ffffff;
	--link-hover: var(--accent-colour);
}
#footer .co {
	margin: 20px 0;
}
#footer .foot-title {
	margin: 0 0 20px 0;
	font-size:1.2em;
	font-weight:500
}
#footer .logo img {
	margin-bottom:15px;
	margin-top:6px
}
.footer-info {
	border-right:1px solid rgba(255,255,255,0.1)
}

#footer .socials {
	margin-top: 10px;
	font-size:1.3em
}
#footer .email-extra p, 
#footer .phone-extra p {
    margin: 0;
    margin-bottom: 10px;
}
.footer-menu {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}

.footer-menu li {
	list-style: none;
	position: relative;
	margin: 3px 0;
	padding-left: 1.3em;
}

.footer-menu li::before {
	content: "\f105";
	color: var(--accent-colour);
	font: var(--fa-font-solid);
	font-size: 1em;

	position: absolute;
	left: 0;
	top: 4px;

	display: inline-block;
	width: 1em;
	height: 1em;
	line-height: 1;
	text-align: center;

	text-rendering: auto;
	-webkit-font-smoothing: antialiased;

	opacity: 0;
}

html.fa-icons-ready .footer-menu li::before {
	opacity: 1;
	transition: opacity ease 0.2s;
}
#copyright {
	float: left;
	width: 100%;
	font-size: 0.8em;
	padding: 10px 0 40px 0;
	color:var(--body-colour);
	background:#222;
	
}
#copyright .credit {
	text-align: right;
}
 
#copyright a {
	white-space: nowrap;
}
p.copyright {
	margin: 0;
	opacity:0.6
}
p.website-by {
	margin-top: 10px;
	margin-bottom: 0;
}
 
.legal-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.legal-menu li {
	display: inline-block;
}
.legal-menu li a {
	font-size: 1em;
	display: inline-block;
	margin: 10px 20px 10px 0;
}
/* Back To Top */
.fab-container {
	margin: 1em;
	position: fixed;
	bottom: -72px;
	right: 0;
	z-index: 4;
	transition: bottom .3s;
}
.to-top {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	box-shadow: var(--shadow);
	position: relative;
	cursor: pointer;
	transition: .3s;
	background: var(--primary-colour) url(images/up.svg) center no-repeat;
	background-size: 15px;
	color:#fff;
}
.to-top:hover {
	box-shadow: var(--shadow);
}
/*--------------------------------------------------------------
# SOCIAL
--------------------------------------------------------------*/
a.social-link.facebook,a.social-link .facebook, a.social-link.facebook:visited {
    color: #3b5998;
	border-color: #3b5998;
}
a.social-link.x, a.social-link.x:visited {
    color: #1da1f2;
	border-color: #1da1f2;
}
a.social-link.pinterest, a.social-link.pinterest:visited {
    color: #bd081c;
	border-color: #bd081c;
}
a.social-link.instagram, a.social-link.instagram:visited {
    color: #833ab4;
	border-color: #833ab4;
}
a.social-link.linkedin, a.social-link.linkedin:visited {
    color: #0077b5;
	border-color: #0077b5;
}
a.social-link.youtube, a.social-link.youtube:visited {
    color: #cd201f;
	border-color: #cd201f;
}
a.social-link.vimeo, a.social-link.vimeo:visited {
	color:#1ab7ea;
	border-color: #1ab7ea;
}
a.social-link.tiktok, a.social-link.tiktok:visited {
	color:#000;
	border-color: #000;
}  
.social-link {
	color: var(--link);
	padding: 5px;
	font-size: 1.2em;
	margin-right: 5px;
	transition: all 0.2s ease;
	border-radius: 50%;

}
a.social-link:visited {
	color: var(--link);
	border-color: var(--link);
}
a.social-link:hover, .social-link:hover {
	color: var(--link-hover);
	border-color: var(--link-hover);
}

.social-link {
	min-height: 40px;
}
.two-cols-row .inner-section .container {
	padding: 0 !important;
}
.row-align-center .two-cols-row {
    align-items: center;
	
}
/*--------------------------------------------------------------
# Google Reviews 
--------------------------------------------------------------*/
.google-review i {
	font-weight:900!important;
	font-size:0.8em;
	padding-top:3px;
	max-width:38px
}
.stars-nowrap {
	white-space: nowrap;
}
/*--------------------------------------------------------------
# Dev Loop
--------------------------------------------------------------*/
.dev-loop .accordion {
	margin-bottom:10px
}
/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media screen and (min-width: 1024px) {
	.timeline .timeline-entry:nth-child(odd) .text .inner {
		padding-left: 40px;
	} 
	.timeline .timeline-entry:nth-child(odd) .image-wrap .inner {
		padding-right:  40px;
	} 
	.gallery.standard .five, .iso-gallery .image-item.five {
        min-width: 20%;
        max-width: 20%;
    }
	.timeline-entry .text .inner {
		max-width: 450px;
	}
	.timeline .timeline-entry:nth-child(even) .image-wrap .inner {
		padding-left:  40px;
	} 
	.two-cols-row.half .inner-section {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
		padding: 0 20px;
	}
	.two-cols-row.one-third .inner-section:first-child {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
		padding: 0 20px;
	}
	.two-cols-row.one-third .inner-section:last-child {
		-ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
		padding: 0 20px;
	}
	.two-cols-row.one-third-reverse .inner-section:last-child {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
		padding: 0 20px;
	}
	.two-cols-row.one-third-reverse .inner-section:first-child {
		-ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
		padding: 0 20px;
	}

	.two-cols-row.no-horizontal-layout-gap {
		margin-left: 0;
		margin-right: 0;
	}
	.two-cols-row.no-horizontal-layout-gap .inner-section {
		padding-left: 0;
		padding-right: 0;
	}
	.two-cols-row.narrow-horizontal-layout-gap {
		margin-left: -10px;
		margin-right: -10px;
	}
	.two-cols-row.narrow-horizontal-layout-gap .inner-section {
		padding-left: 10px;
		padding-right: 10px;
	}

	.two-cols-row {
		margin-left: -20px;
		margin-right: -20px;
	}
	.two-cols-row.standard-horizontal-layout-gap .inner-section {
		padding-left: 20px;
		padding-right: 20px;
	}	
	.two-cols-row.wide-horizontal-layout-gap {
		margin-left: -40px;
		margin-right: -40px;
	}
	.two-cols-row.wide-horizontal-layout-gap .inner-section {
		padding-left: 40px;
		padding-right: 40px;
	}
	 
	.two-cols-row.standard-gutters-only .inner-section {
		padding-left: 20px; 
		padding-right: 20px;
	}
	.two-cols-row.wide-only {
		margin-left: -40px;
		margin-right: -40px;
	}
	.two-cols-row.wide-only .inner-section {
		padding-left: 40px; 
		padding-right: 40px;
	}
	.two-cols-row {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.wide,
	.two-cols-row .row{
		--spacing: var(--spacing-wide);
	}
	.wide-y {
		--margin-y: var(--margin-y-wide);
	}
	.next-post {
		text-align: right;
	}
	.modal {
		max-width:900px;
		margin:0 10px;
	}
	.image-left.full-width .text {
		max-width: 660px;
	}
	.image-right.full-width .text .inner {
		max-width: 660px;
	}
	section.wide .text-box {
		padding-right:40px!important
	}
}
/* TWO COL FIX FOR WIDE */
@media screen and (min-width: 1024px) {

	.two-cols-row.half {
		margin-left: calc(var(--spacing-wide) * -1);
		margin-right: calc(var(--spacing-wide) * -1);
	}

	.two-cols-row.half .inner-section {
		padding-left: var(--spacing-wide);
		padding-right: var(--spacing-wide);
	}
	.two-cols-row.one-third {

		margin-left: calc(var(--spacing-wide) * -1);
		margin-right: calc(var(--spacing-wide) * -1);
	}
	.two-cols-row.one-third .inner-section:first-child {
		flex: 0 0 calc(33.333333% - (var(--spacing-wide) * 2));
		max-width: calc(33.333333% - (var(--spacing-wide) * 2));
		margin-left: var(--spacing-wide);
		margin-right: var(--spacing-wide);
		padding-left: 0;
		padding-right: 0;
	}
	.two-cols-row.one-third .inner-section:last-child {
		flex: 0 0 calc(66.666667% - (var(--spacing-wide) * 2));
		max-width: calc(66.666667% - (var(--spacing-wide) * 2));
		margin-left: var(--spacing-wide);
		margin-right: var(--spacing-wide);
		padding-left: 0;
		padding-right: 0;
	}
	
	.two-cols-row.one-third-reverse {

		margin-left: calc(var(--spacing-wide) * -1);
		margin-right: calc(var(--spacing-wide) * -1);
	}
	.two-cols-row.one-third-reverse .inner-section:first-child {
		flex: 0 0 calc(66.666667% - (var(--spacing-wide) * 2));
		max-width: calc(66.666667% - (var(--spacing-wide) * 2));
		margin-left: var(--spacing-wide);
		margin-right: var(--spacing-wide);
		padding-left: 0;
		padding-right: 0;
	}
	.two-cols-row.one-third-reverse .inner-section:last-child {
		flex: 0 0 calc(33.333333% - (var(--spacing-wide) * 2));
		max-width: calc(33.333333% - (var(--spacing-wide) * 2));
		margin-left: var(--spacing-wide);
		margin-right: var(--spacing-wide);
		padding-left: 0;
		padding-right: 0;
	}

}

@media screen and (min-width: 768px) {
	.search-row .search-wrap {
		max-width: 300px;
	}
   .timeline-entry .text .inner {
        padding-top: var(--spacing);
        padding-bottom: var(--spacing);
   }
	.timeline .timeline-entry:nth-child(even) .text .inner {
		float: right;
        padding-right: 40px;
		text-align: right;
	} 
	.timeline .timeline-entry:nth-child(odd) .image-wrap {
		order: -1;
	}
}
@media screen and (max-width: 1200px) {
	#news-page.classic #sidebar {
		min-width: 100%;
	}
	.grid-item {
		width: 50%;
	}
	#nobanner .col-lg-7.text {
        -ms-flex: 0 0 66.666667%!important;
        flex: 0 0 66.666667%!important;
        max-width: 66.666667%!important;
	}
	
}
@media (max-width: 1199px) {

	

}
@media screen and (max-width: 1100px) {
	.post-wrap {
		margin-right:30px
	}
	.ctas .cta.col-lg-3 {

		flex: 0 0 50%;
		max-width: 50%;
	}

	.project-excerpt-box .description {
		display:none
	}
	.menu-description {
	max-width:240px
}
	.pricing .product {

		flex: 0 0 50% !important;
		max-width: 50% !important;
	}
	.pricing .product-3 {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}
	.pricing .product-3 .header {

		min-height: auto !important;
	}
	/* .image-left .row > .col-lg-6,

	.image-right .row > .col-lg-6,
	.image-left .row > .co.col-lg-6,
	.image-right .row > .co.col-lg-6 {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	} */
	h1 {
		--base-size: 3.1em;
	}
	#vid-layout .row > [class*="col-lg-"] {
		flex: 0 0 100% !important;
		-ms-flex: 0 0 100% !important;
		max-width: 100% !important;
	}
	.square-vid,
	.square-vid video {
		aspect-ratio: 16/9
	}

	#featured-layout .two-cols-row.half > .inner-section {

		flex: 0 0 100% !important;
		-ms-flex: 0 0 100% !important;
		max-width: 100% !important;
	}
	.t-slide, .carousel-item {
		width:60%
	}

.featured-details {
	position:absolute;
	bottom:-50px
}
}
@media screen and (max-width: 1024px) {
	.cover, .background-image {
		background-attachment: scroll !important;
	}
	.video-container {
		min-width: 50%;
		max-width: none;
	}
	
}
@media screen and (max-width: 1023px) {
	.image-right img,
	.image-left img {
	object-fit: cover;
	aspect-ratio: 16/10;
}
	.project-excerpt-box {
		margin:20px 0
	}
	#mobile-menu-overlay .sm-clean a {
    font-size: 1.4em;
}
	.tab-features .feature {
		-ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
	}
	#single-post .side {
		margin-top:50px
	}
	#related-posts .row > .co:nth-child(3) {
	display: none !important;
}
	.post-wrap {
		margin-right:0
	}
	.calltoaction .container {
		padding:30px 30px !important
	}
	.testimonial-grid .grid-item:nth-child(n+9) {

		display: none !important;
	}
	.grid-item {
		width:100%!important
	}
	.related-projects .row:first-of-type > .rel-proj:last-child {
	display: none;
}
	.proj-banner-image {
		margin-top:70px
	}
	.row.reverse .images {
		order: 1;
	}
	.row.reverse .content {
		order: 2;
	}
	.project-excerpt-box .content {
		margin-top:30px
	}
	.pricing .product {
	flex: 0 0 100% !important;
	max-width: 100% !important;
}

.pricing .product .header {
	min-height: auto !important;
}
	.tab-features {
		margin-top:20px
	}
	.latest-posts .row > .co:last-child {
	display: none!important;
}
	#nobanner .col-lg-7.text {
        -ms-flex: 0 0 100%!important;
    flex: 0 0 100%!important;
    max-width: 100%!important;
	}
	.badge {
		display:none!important
	}
	.sub {
		display:none!important
	}
	#copyright {
		padding-bottom:20px
	}
	.detail.phone, 
.detail.email,
.detail.address,
.detail.bh{
	width:50%;
	float:left
}
	.one-third-two-third .co:first-child {
		border-right:none
	}
	.image-left.full-width .text .inner, .image-right.full-width .text .inner {
		padding: 40px;
	}
    .banner.image-right {
        min-height: 0 !important;
    }
	.banner.image-right .image-wrap img {
        min-height: 0;
        aspect-ratio: 16/10;
    }
	.image-left .image-wrap img, .image-right .image-wrap img {
		display: block;
		margin: 0 auto;
	}
    .one-third-two-third .container .row .co:nth-child(1) {
        margin-bottom: 0 !important;
    }

	.slider .inside {
		max-width:100%
	}
	.contact-info .detail {
		margin-bottom: 40px;
	}
	.col.download {
		min-width: 50%;
		max-width: 50%;
	}
	#copyright .credit {
		text-align: left;
		margin-top: 20px;
		min-width: 100%;
	}

	#sidebar {
		min-width: 100%;
		max-width: 100%;
	}

	.sm-clean a span.sub-arrow {
		right: 0;
		width: 40px;
		text-align:center;
	}
	.sm-clean span.sub-arrow:before {
		font-size: 1.4em;
	}
	#menu-toggle {
		display: flex;
	}
	header .head-info span.header-link {
		display: none;
	}
	#top-bar {
		display: none;
	}
	.three-text {
		min-width: 50%;
	}
}
@media screen and (max-width: 767px) {
#left-header {
	position:fixed
}


	#footer .socials {
	margin-top: 10px;
	font-size:1.5em
}
	
		#mobile-menu-overlay .sm-clean a {
    font-size: 1.2em;
}
.logo img, .logo svg {
    max-width: 180px;
}
	.accordion-toggle {
		margin:10px 0
	}
	#footer {
    background-image: linear-gradient(to top, #222, #222, var(--dark-bg));
	}
	.featured-details {
	position:absolute;
	bottom:-50px
}
.featured-details .col {
	padding:0!important
}
	.gform_wrapper {
	padding:15px;
}
	.accordion-toggle {
		padding: 8px 12px ;
		font-weight:400
	}
	.google-review h2 {
		--base-size: 1.8em;
	}
	.ctas .cta.col-lg-3 {

		flex: 0 0 100%;
		max-width: 100%;
	}
	.project-excerpt-box {
		padding:20px
	}
	.proj-review .inner {
		padding:0 20px
	}
	.testimonial-grid .inner {
		padding:20px
	}
	.features .co {
		margin:3px 0
	}
	.tab-content {
		padding:15px
	}
	.gallery-carousel {
		margin-bottom:50px
	}
	/* .featured-details .nm {
		display:none!important
	} */
	.flickity-prev-next-button {
		width:30px;
		height:30px
	}
	.project-carousel .flickity-prev-next-button {
	top:calc(50% - 8px)
}
.calltoaction h2 {
		font-size:2.4em
	}
	h2.pixel-title {
		margin-top:10px;
		font-size:1.1em
	}
	.pixels {
		min-width:53px
	}
	.calltoaction .container {
		border-radius:0px;
		margin:0;
		padding:70px 20px 70px 20px!important;
		width:100%;
		box-shadow:inset 0 0 10px rgba(0,0,0,0.4)
	}
	
	.cta-link {
		text-align:left
	}
	.pixel-guy {
		display:none!important
	}
	.layout-title .button-wrap {
		margin-top:-20px;
		margin-bottom:20px
	}

	.t-slide .inner, .carousel-item .inner {
		padding:20px 10px!important;
		border-radius:20px
	}
	.test-image {
		display:none!important;
	}
	    h1 {
        --base-size: 2.6em;
		line-height: 1.1;
    }
	h2 {
    --base-size: 2.1em; 
}
	#nobanner .text p.bigger {
    font-size: 1.3em;
    font-weight: 500;
}
h3 {
    --base-size: 1.3em;

}
	#nobanner {
		padding:110px 0 20px 0
	}
	#left-header {
		top:10px
	}
	#mobile-header {
		top:10px
	}
	.grid-item {
		width: 100%;
	}
	.the-timeline {
		margin-top:30px;
		margin-bottom:30px
	}
	.timeline .image-wrap {
		margin-top:0
	}
	.timeline-entry .title {
		margin-top:-5px
	}
	.co.member {
	margin:20px 0
}
	:root {

	/* Section Padding */
	--section-padding-y: 20px;
	--margin-y: 10px;
	}
	.text-box {
		margin:0!important
	}
	.text-box .co {
		margin:0;
	}
.detail.phone, 
.detail.email,
.detail.address,
.detail.bh{
	width:100%;
	float:left
}
.excerpt-classic-image {
	 width: 100%;      /* your fixed width */
  flex: 0 0 100%;   /* don’t shrink/grow */
  align-self: stretch;
}

  .slider .slide:before {
	background-image: linear-gradient(to right, #000 , #000);
	opacity:0.6
  }
	.timeline-entry:before {
		left: 0;
		right: auto;
        top: 0;
	}
    
	.timeline-entry:after {
		left: -12px;
		right: auto;
        top: 0;
	}
	.timeline-entry .image-wrap {
		order: -1;
		margin-bottom: 20px;
	}
    .timeline-entry .text {
        padding-bottom: 20px;
    }
	.timeline-entry {
		padding-left: 40px;
	}
	.timeline-container .timeline-entry:first-child {
		margin-top: 0px;
	}
	.timeline-container .timeline-entry:last-child {
		margin-bottom: 0px;
	}
	.footer-menu li {
		margin: 6px 0;
	}
	.t-slide {
		width: 80%;
	}
	.carousel-image {
		padding: 20px;
	}
	.tabbed ul.tabs li {
		width: 100%;
		margin: 5px 0;
	}
	.col.post-wrap {
		order: -1;
	}
	.post-wrap {
		margin-bottom: 0;
	}
	
	.image-right .co.image-wrap, .image-left .co.image-wrap {
		margin-bottom: 0;
	}

	#single-post .side {
		order: 2;
	}
	.modal-team img {
		margin-bottom: 20px;
	}
	.gallery-thumbs {
		display:none!important

	}
	.box {
		padding:20px;
	}
	#banner {
		min-height:300px;
	}
	.slider .slide {
		min-height:400px;
	}

	.error-404 #icon {
		min-width: 100%;
		border: none;
	}
	.error-404 {
		text-align: center;
	}
	.carousel-wrap {
		padding: 0;
	}
	.slider .inside {
		width: 100%;
	}

	.excerpt-archive {
		min-width: 100%;
		max-width: 100%;
	}
	.accordion-toggle {
		font-size: 1.05em;
	}
	#sidebar {
		max-width: 100%;
		min-width: 100%;
	}
	/* .tab-content {
		display: block !important;
		background: none;
		padding: 0;
	}
	ul.tabs {
		display: none;
	} */
	.tab-title {
		display: block;
	}
	/* .alignleft {
		display: block;
		float: none;
		margin: 20px auto;
	} */
	.alignright {
		display: block;
		float: none;
		margin: 20px auto;
	}
	.aligncenter {
		clear: both;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	ul, ol {
		margin: 0 0 1.5em 0em;
		-webkit-padding-start: 30px;
	}
	.three-text {
		min-width: 100%;
	}
	#left-header #menu-toggle {
		max-width: none;
	}
	.video-container {
		min-width: 100%;
		max-width: 100%;
	}
}
@media screen and (max-width: 575px) {

#left-header {
	position: fixed;
}

#left-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(9, 38, 59, 0.95),
		rgba(9, 38, 59, 0.65)
	);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	opacity: 0;
	transition: opacity 0.8s ease;
	pointer-events: none;
	z-index: -1;
}

#left-header.scrolled::before {
	opacity: 1;
}

	.primary-head {
    height: 66px;
}
	.logo img, .logo svg {
        max-width: 160px;
    }
	.project-excerpt-box {
		margin:13px 0
	}
	.search-filter-input-button {
		padding:3px 7px!important
	}
	a, a:visited {

	transition: all 0.1s;

}
	#mobile-main {
		padding-top:90px
	}
	#footer .co {
	margin: 10px 0 10px 0;
}
	.search-result .image-wrap {
	display:none
}
	#left-header,
	#mobile-header {
		top:0;
		padding:0
	}
			.flickity-prev-next-button.previous {
		left: -10px;
		}
		.flickity-prev-next-button.next {
		right: -10px;
		}
	.flickity-page-dots {
		padding-left:20px;
		padding-right:20px
	}
	.container.main, #page-sections .container, #post-cta .container {
		padding: 0 20px;
	}
	.image-left.full-width .text .inner, .image-right.full-width .text .inner {
		padding: 20px 20px;
	} 
	.t-slide {
		width: calc(100% - 40px);
	}
	.title-button .col-auto {
		min-width: 100%;
	}
	body {
		font-size: 16px;
	}


	.col.download {
		min-width: 100%;
		max-width: 100%;
	}

	blockquote {
		width: 100%;
		margin: 15px 0;
		padding: 50px 20px;
	}
	.gallery-image.col {
		min-width: 50% !important;
		max-width: 50%;
	}
	.gallery.count-5 .gallery-image:first-child,
	.gallery.count-7 .gallery-image:first-child,
	.gallery.count-9 .gallery-image:first-child,
	.gallery.count-11 .gallery-image:first-child,
	.gallery.count-13 .gallery-image:first-child,
	.gallery.count-15 .gallery-image:first-child {
		min-width: 100% !important;
		max-width: none !important;
	}
	.head-info {
		text-align: center;
	}
	.feature, .promo-box.col {
		min-width: 100%;
		margin:0
	}
	.tab-features .feature {
		margin:0!important
	}
	.contact-map iframe {
		width:100%!important;
		height:340px;
	}
.features .co {
        margin: 0px 0;
    }
	.trust-strip .feature {

		display: flex;
		justify-content: center;
	}
	.trust-strip .feature > .row {
		width: 270px;
		max-width: 100%;
		flex-wrap: nowrap;
	}
	.trust-strip .feature .icon {
		flex: 0 0 40px !important;
		max-width: 40px !important;
	}
	.trust-strip .feature .text {
		flex: 1;
		text-align: left;
	}

}
@media screen and (max-width: 375px) {
	.features .container {
		padding-left: 20px;
		padding-right: 20px;
	}
	.row.related {
		margin-left: 0;
		margin-right: 0;
	}
}

@media (prefers-reduced-motion) {
	.anim {
		visibility: visible !important;
	}
}
@media print {
  #footer, #menu, .fab-container, #comments, #sidebar, #post-nav, #related-posts, iframe, .embed-container, .fve-video-wrapper {
    display: none !important;
  }
  .background-image div, .background-colour, #banner h1, #banner p, #nobanner h1, #nobanner p, .testimonial, .testimonials, .promo-box .inner *, .button, a.button, a.button:visited {
    color: #151515;
  }
  #single-post {
    padding: 0;
  }
  #banner {
    min-height: 0;
  }
  .anim {
    visibility: visible !important;
  }
  .download, .promo-box.col {
    min-width: 50%;
  }
  section.gallery .row {
    display: block;
  }
  .gallery-image {
    width: 25% !important;
    display: inline-block;
    min-width: 0 !important;
    float: left;
  }
  .section-title {
    page-break-before: always;
    position: relative;
  }
  .single-title {
    font-size: 2em;
  }
  #flexible-content section {
    page-break-inside: avoid;
    position: relative
  }
  .image-wrap img {
    display: block;
    margin: 0 auto;
    max-width: 50%;
  }
}

/* TinyMCE Font Awesome fix */
.mce-content-body ul.list li:before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	opacity: 1;
}


