body {
	margin: 0;
	background: #fff;
	font-family: "Poppins", sans-serif;
	color: var(--body-colour);
	font-weight: 300;
	font-size: 15px;
}
body:not(#tinymce), html {
	float: left;
	width: 100%;
	overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
## Colour Scheme
--------------------------------------------------------------*/
:root {

	/* General Colours */
	/* --primary-colour: #33658A; */
	--primary-colour: #001A33;
	--secondary-color:#c4ae97;
	--secondary-color-rgb:47,72,88;
	--accent-colour: #c4ae97;

	/* Backgrounds */
	--dark-bg: #001A33;
	--light-bg: #c4ae9724 !important;
	--box-bg:  #001A33;

	/* Text */
	--body-colour: #001A33;
	--headings-colour: #001A33;
	--pre-title: #7e6e5f;
 
	/* Buttons */
	--primary-button: #001A33;
	--primary-button-text: #fff;
	--primary-button-hover: #c4ae97;
	--primary-button-text-hover: #001A33;

	--secondary-button: #c4ae97;
	--secondary-button-text: #fff;
	--secondary-button-hover: #001A33;


	/* Links */
	--link: #001A33;
	--link-hover: #d9be83;

	--menu-link: #000;
	--menu-link-hover: #c4ae97;
}


.calltoaction.is-dark {
    --headings-colour: var(--primary-colour);
}
 
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
@media screen and (min-width:1024px){
	h1, h2, h3, h4, h5, h6 {
		line-height:1;
	}
	:root {
		--headingXL:4em;
		--heading1:3.1em;
		--heading2::2.1em;
		--heading3:1.4em;
		--heading4:1.1em;
		--heading5:0.8em;
		--heading6:0.6em;
		--fs-1:4em;
		--fs-2:3.1em;
		--fs-3:2.5em;
		--fs-4:2em;
		--fs-5:1.5em;
		--fs-6:1.25em;
		--fs-7:1em;
		--fs-8:.875em;
	}

}
@media screen and (min-width:768px) and (max-width:1023px){
	h1, h2, h3, h4, h5, h6 {
		line-height:1;
	}
	:root {
		--headingXL:4em;
		--heading1:3.1em;
		--heading2::2.1em;
		--heading3:1.4em;
		--heading4:1.1em;
		--heading5:0.8em;
		--heading6:0.6em;
		--fs-1:4em;
		--fs-2:3.1em;
		--fs-3:2.2em;
		--fs-4:2em;
		--fs-5:1.5em;
		--fs-6:1.25em;
		--fs-7:1em;
		--fs-8:.875em;
	}

}
@media screen and (max-width:767px){
	h1, h2, h3, h4, h5, h6 {
		line-height:1.2;
	}
	:root {
		--headingXL:3em;
		--heading1:2em;
		--heading2:1.5em;
		--heading3:1.2em;
		--heading4:1.1em;
		--heading5:0.8em;
		--heading6:0.6em;
		--fs-1:2.5em;
		--fs-2:2.25em;
		--fs-3:2.0em;
		--fs-4:1.75em;
		--fs-5:1.5em;
		--fs-6:1.25em;
		--fs-7:1em;
		--fs-8:.875em;
	}

}
h1, h2, h3, h4, h5, h6 {
  color: var(--headings-colour);
  font-family: circe, sans-serif;
  font-weight: 300;
  clear: both;
 
}

h1{
	font-size:var(--heading1);
	color: var(--headings-colour);
	
}
h2 {
	font-size:var(--heading2);
	color: var(--headings-colour);
}
h3 {
	font-size:var(--heading3);
	color: var(--headings-colour);
}
h4 {
	font-size:var(--heading4);
	color: var(--headings-colour);
}
h5 {
	font-size:var(--heading5);
}
h6 {
	font-size:var(--heading6);
}

h4.pt {
    font-weight: bold;
    color: var(--pre-title);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: -10px;
    font-size: 0.9em;
}
p {
	margin-bottom: 1.5em;
	color: var(--body-colour);
}
.fs-1 {
	font-size:var(--fs-1);
	color: var(--headings-colour);
	
}
.fs-2 {
	font-size:var(--fs-2);
	color: var(--headings-colour);
	
}
.fs-3 {
	font-size: var(--fs-3);
}
.fs-4 {
	font-size: var(--fs-4);
}
.fs-5 {
	font-size: var(--fs-5);
}
.fs-6 {
	font-size: var(--fs-6);
}
.fs-7 {
	font-size: var(--fs-7);
}
.fs-8 {
	font-size:var(--fs-8);
}
/*Text Align*/
.text-center {text-align: center;}
 /*Text Colors*/
.text-dark {
	color:#000
}
.text-white{
	color:#fff;

}
.text-primary{
	color:var(--primary-colour);
}
.text-secondary{
	color:var(--pre-title);
	
}
/*Text Transform*/
.text-uppercase{
	text-transform:uppercase;
}
.text-capitalize{
	text-transform:capitalize;
}
.text-lowercase{
	text-transform:lowercase;
}
/*Font Weight*/
.fw-regular {
	font-weight:300
}
.fw-medium {
	font-weight:500
}
.fw-semibold {
	font-weight:600
}
.fw-bold {
	font-weight:700
}
/*Margins*/
.mt-0 {margin-top:0px !important}
.mt-1 {margin-top:10px !important}
.mt-2 {margin-top:15px !important}
.mt-3 {margin-top:20px !important}
.mt-4 {margin-top:25px !important}
.mt-5 {margin-top:30px !important}
.mb-0 {margin-bottom:0px !important}
.mb-1 {margin-bottom:10px !important}
.mb-2 {margin-bottom:15px !important}
.mb-3 {margin-bottom:20px !important}
.mb-4 {margin-bottom:25px !important}
.mb-5 {margin-bottom:30px !important}
.ml-0 {margin-left:0px;}

/*Paddings*/
.pt-0 {padding-top:0px;}
.pt-1 {padding-top:10px;}
.pt-2 {padding-top:15px;}
.pt-3 {padding-top:20px;}
.pt-4 {padding-top:25px;}
.pt-5 {padding-top:30px;}
.pb-0 {padding-bottom:0px;}
.pb-1 {padding-bottom:10px;}
.pb-2 {padding-bottom:15px;}
.pb-3 {padding-bottom:20px;}
.pb-4 {padding-bottom:25px;}
.pb-5 {padding-bottom:30px;}

#tinymce {
	padding:10px!important;
}
#tinymce * {
  opacity: 1 !important;
}
/* Font Awesome */
.fa-icon:before {
	display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
i {
	font-weight: 900 !important;
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	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
--------------------------------------------------------------*/
button, a.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) !important;
	color: var(--primary-button-text) !important;
	border-radius: 0px !important;
	font-weight:400 !important;
	text-transform: uppercase !important;
	padding: 8px 24px !important;
	-webkit-transition: all ease 0.3s !important;
	transition: all ease 0.3s !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important ;
	border: 1px solid var(--primary-button) !important;
	position: relative !important;
	display: inline-block !important;
	text-align: center;
	touch-action: manipulation !important;
	cursor: pointer !important;
	margin:5px 0 ;
}
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: #fff !important;
  	color: var(--primary-colour) !important;
	border-color: var(--primary-colour) !important;
}


.btn-secondary-darkbg, .btn-secondary-darkbg:visited{
	background: var(--secondary-button) !important;
	color: #000 !important;
	border-radius: 0px !important;
	font-weight:400 !important;
	text-transform: uppercase !important;
	padding: 12px 25px !important;
	-webkit-transition: all ease 0.3s !important;
	transition: all ease 0.3s !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important ;
	border: 1px solid  var(--secondary-button) !important;
	position: relative !important;
	display: inline-block !important;
	text-align: center;
	touch-action: manipulation !important;
	cursor: pointer !important;
	margin:5px 0 ;
	    font-size: var(--fs-7);
}
.btn-secondary-darkbg:hover,.btn-secondary-darkbg:focus {
  	background: var(--primary-button) !important;
	color: #fff !important;
	border-color: var(--primary-colour) !important;
}


.btn-secondary-darkbg-outline, .btn-secondary-darkbg-outline:visited{
	background: transparent !important;
	color: #fff !important;
	border-radius: 0px !important;
	font-weight:400 !important;
	text-transform: uppercase !important;
	padding: 12px 25px !important;
	-webkit-transition: all ease 0.3s !important;
	transition: all ease 0.3s !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important ;
	border: 1px solid #fff !important;
	position: relative !important;
	display: inline-block !important;
	text-align: center;
	touch-action: manipulation !important;
	cursor: pointer !important;
	margin:5px 0 ;
	    font-size: var(--fs-7);
}
.btn-secondary-darkbg-outline:hover,.btn-secondary-darkbg-outline:focus {
  	background: var(--primary-button) !important;
	color: #fff !important;
	border-color: var(--primary-colour) !important;
}

input.button, input[type="submit"], input[type="submit"]:focus {
	background: none !important;
	color: #fff !important;
	padding: 14px 36px !important;
    font-size: 0.9em !important;
}
input.button:hover, input[type="submit"]:hover {
	background: var(--secondary-button-hover) !important;
	border-color: var(--secondary-button-hover) !important;
}
.woocommerce button.button:disabled:hover, .woocommerce button.button:disabled[disabled]:hover {
	color: #fff;
	cursor: not-allowed;
}
.woocommerce div.product form.cart .button {
	padding: 10px 20px;
}
.gform_footer.top_label {
    justify-content: flex-end;
}
.gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
	border:0 !important;
	border-bottom: 1px solid #c02b0a !important;
}
.gform_wrapper.gravity-theme .gfield_error .gfield_repeater_cell label, .gform_wrapper.gravity-theme .gfield_error label, .gform_wrapper.gravity-theme .gfield_error legend, .gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message, .gform_wrapper.gravity-theme [aria-invalid=true]+label, .gform_wrapper.gravity-theme label+[aria-invalid=true] {
	color: #e2b0a5 !important;
}
/* Secondary button */
a.button.secondary {
	background: var(--secondary-button-hover) !important;;
	color: var(--secondary-button-text) !important;
	border-color: var(--secondary-button) !important;
}
a.button.secondary:hover {
	background: #fff;
	color: var(--secondary-button-hover) !important;
	border-color: var(--secondary-button-hover) !important;
}
 
/* Text Link */
a.text-link {
	border-bottom: 1px solid var(--link);
}
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);
    border: none;
    border-bottom: 1px solid var(--primary-button);
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
	font-weight: bold;
	display: inline-block;
	text-transform: uppercase;
	padding-bottom: 5px;
}
a.button-link:after, span.button-link:after {
	float: right;
    margin-right: 0px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    margin-left: 10px;
    position: relative;
	padding-bottom: 5px;
    top: 4px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    content: "\f138";
}
a.button-link:hover, span.button-link:hover {
	border-color: var(--link-hover);
	color: var(--link-hover);
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: #eaeaea;
}
header .head-info {
	text-align: right;
}
#top-bar {
	background: var(--light-bg);
	padding: 3px 0;
}

#top-bar .head-info {
	text-align:right
}
#top-bar .head-info a {
	margin-left: 10px;
	display: inline-block;
}
.sub-menu li {
	display: block;
  width: 100%;
}
.mobile-right {
  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 {
	background: rgb(255 255 255 / 90%);
  padding: 40px 0;
  float: left;
  width: 100%;
  position: absolute;
  z-index: 9;
  top: calc(100% - 1px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
	border-bottom: 1px solid #ccc;
}
.sub.show {
	opacity: 1;
	visibility: visible;
}
a.menu-item.has-sub {
  /* margin-right: 8px; */
	padding-right: 32px !important;
}
.sub h4 {
  margin-bottom: 10px;
	font-size: 1.2em;
}
a.has-sub {
	position: relative;
	padding-right: 10px !important;
	display: inline-block;
}
a.has-sub:after {
	content: '';
	background-image: url('images/angle-down.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	right: 8px;
	height: 18px;
	width: 18px;
	top: 15px;
	transform-origin: center;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
a.has-sub.active:after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
ul.menu-items {
	margin: 0;
	padding: 0;
	list-style: none;
}
.menu-description {
	margin: 20px 0;
}
.mega a.current-page {
  color: var(--menu-link-hover);
}
ul.menu-items a {
	color: var(--menu-link);
	border: none;
	display: inline-block;
	margin: 5px 0;
}
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);
}


/*-----------------------
# Banner
------------------------*/
#banner-bg {
	background:var(--dark-bg)
}
#banner {
	padding: 60px 0;
	position: relative;
	background-color: var(--dark-bg);
	min-height:500px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
#banner .vci {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}
.single-post #banner{
  min-height: 400px;
}
#banner .container {
  position: relative;
  height:100%
}
#banner .row {
	height:100%
}
#banner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  background: #000;
  opacity: 0.6;
}
#banner h1, #banner p {
	position: relative;
	margin:10px 0
}
#banner .text {
  float: left;
  width: 100%;
}
/*-----------------------
# Nobanner
------------------------*/
#nobanner h1, #nobanner p {
	position: relative;
	margin:10px 0
}
#nobanner {
	padding: 60px 0;
	float: left;
	width: 100%;
}
header {
	position: relative;
}
/*-----------------------
# 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;
}

/*-----------------------
# LEFT HEADER
------------------------*/
body.scroll-up #left-header{transform: none; background:#fff;box-shadow:0px 2px 4px rgba(0, 0, 0, .10);padding:5px 0px; }
body.scroll-down #left-header{transform: translate3d(0, -100%, 0);}
#left-header {
	padding: 15px 0;
	position: fixed;
	top: 0;
	z-index: 100;
	transition: transform 0.4s;
}
#left-header.bg-black {
	background:#000;
}
#left-header .header-button {
	display:none
}
.dark-header.scroll-up #left-header, .dark-header.scroll-down #left-header {background:#000 !important;}
.dark-header.scroll-up #left-header .nav-menu a {color:#fff;}
.dark-header.scroll-up .logo .original {display:none !important}
.dark-header.scroll-up .logo .white {display:block !important}

#left-header.scroll.no-shadow {
	box-shadow:none;
}
.scroll-up #left-header .header-button {display:inline-block}

#left-header.scroll .logo img{max-width: 180px; max-height:50px;}
#left-header #header-menu-desktop {
	text-align: right;
}
#left-header #header-menu {
	text-align: center;
}

#left-header  {background:transparent;}
#left-header  .nav-menu a {color:#fff}
#left-header.scroll  {background:#fff;}
body.scroll-up #left-header  .nav-menu a {color:#000; font-size:var(--fs-7);}

body.scroll-down #left-header .original, body #left-header .original  {display:none} 
body.scroll-up #left-header  .original  {display:block} 
body.scroll-up #left-header .white  {display:none} 
body.scroll-down #left-header .white  {display:block} 

@media screen and (min-width:1024px){
	#left-header .logo img {
    max-width: 200px;
	width:auto;
	max-height:120px;
	}
#left-header .cta.button {padding:10px 15px !important; font-size:var(--fs-7);}
	#left-header .nav-menu .menu-item-has-children {position:relative;}
	#left-header .nav-menu .menu-item-has-children:before {border-bottom:1px dotted var(--secondary-button);
        height: 0px;
        position: absolute;
        content: '';
        bottom: 4px;
        width:0px;
        left: 0px;
	transition:.3s all}
	#left-header .nav-menu .menu-item-has-children .down-arrow{ background:url('../images/angle-down.svg') no-repeat center center; 
		transition:.3s all;
		width: 12px;
        height: 12px;
        background-size: 10px auto;
        top: 0px;
        margin-left: 10px;
        right: inherit;
        position: relative;
		display: inline-block;}
		body.scroll-up #left-header .nav-menu .down-arrow {filter:invert(1)}
		body.scroll-up.dark-header #left-header .nav-menu .down-arrow, body.scroll-down.dark-header #left-header .nav-menu .down-arrow {filter:invert(0)}
		body.scroll-up.dark-header #left-header .nav-menu > li:hover > a {color:#fff;}
		#left-header .nav-menu .menu-item-has-children:hover:before {width:100%;}
		#left-header .nav-menu .menu-item-has-children:hover .sub-menu {display:block;  }
		#left-header .nav-menu  .sub-menu {background: var(--secondary-color);}
		body.scroll-up #left-header .nav-menu > li > a {padding-top:20px; padding-bottom:20px; }
		body.scroll-up #left-header .nav-menu > li:hover > a { color: var(--secondary-color); }
		#left-header .nav-menu > li:hover > a .down-arrow {transform:rotate(-180deg);}
		body.scroll-up #left-header .nav-menu .menu-item-has-children:before {bottom:0px;}
	#left-header:not(.scroll) .nav-menu .sub-menu {
        padding: 0px;
        margin-top: 1px !important;
        box-shadow: 0px 7px 11px -5px rgba(0, 0, 0, .2);
		margin-top:-4px !important;
	}
	#left-header .nav-menu .sub-menu a, body.scroll-up #left-header .nav-menu .sub-menu a {color:#fff; font-size:var(--fs-7); text-align:left; padding: 8px 15px;}
	#left-header .nav-menu .sub-menu a:hover, body.scroll-up #left-header .nav-menu .sub-menu a:hover{color:var(--menu-link-hover); background:var(--box-bg);}
}
@media screen and (max-width:1023px){
	#left-header.scroll {
		padding: 10px 0px;
	}
	#left-header .cta.button {padding:5px 8px !important;}
	#left-header .logo img {
    max-width: 150px;
	width:auto;
	max-height:120px;
	}

}

/*-----------------------------------
#Sticky Nav
------------------------------------*/

.onscroll-nav {
	background:#fff;
	padding:0px;
	opacity:1;
	visibility:visible;
	top:-100%;
	z-index:11;
	padding:0px;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, .10);
	border-top: 2px solid #dfdfdf;
	transition: top 0.4s, opacity 0.4s;

	
}
body.scroll-down .onscroll-nav.sticky {
	
	top:0px;
	position:fixed !important;
	
}
body.scroll-up .onscroll-nav.sticky {
	opacity:1;
	visibility:visible;
}
.onscroll-nav .links-wrapper {
	display: flex;
    flex-wrap: nowrap;
   
    flex-direction: row;
    width: 100%;
	-ms-overflow-style: none; /* for Internet Explorer, Edge */
	scrollbar-width: none; /* for Firefox */
	overflow-y: scroll; 

}
.onscroll-nav .links-wrapper::-webkit-scrollbar {
	display: none; /* for Chrome, Safari, and Opera */
  }
  
@media screen and (min-width:768px){
	.onscroll-nav .links-wrapper {
		justify-content: center;
	}
}
@media screen and (max-width:767px){
	body.scroll-up .onscroll-nav.sticky {
		top:85px !important
	}
}
.onscroll-nav .links .button{border:0px !important; color:#000 !important; text-wrap:nowrap; white-space: nowrap; margin:0px; padding:10px 15px !important; background:transparent !important;}
.onscroll-nav  .links .button:hover, .onscroll-nav  .links .active.button{background: transparent; color:var(--primary-colour) !important; position:relative; }

.onscroll-nav  .links .active.button:after {
	background:var(--primary-colour) !important;
	position:absolute;
	bottom:4px;
	left:0px;
	height:3px;
	content:'';
	
}
.onscroll-nav  .links  .button:after {

	width:100%;
	
}

.dark-header .onscroll-nav {background:#000;border-color:#000}
.dark-header .onscroll-nav .links .button {color:#fff !important}
.dark-header .onscroll-nav .links .button:hover {color:var(--link) !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 {
  padding: 20px 0;
}
#single-post .side {
	margin: 20px 0;
}
#single-post .side h4 {
    border-bottom: 1px solid #ccc;
	margin-top: 0;
    padding-bottom: 5px;
}
#single-post .side  p {
	margin-bottom: 30px;
	margin-top: 0;
}
.post-wrap {
  margin: 20px 0;
}
.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-form  {
	width: 100%;
	
	color: #444 !important;
	border-radius: 2px  !important;
	border: 1px solid #999  !important;
	justify-content: space-between;
}
.search-row  .search-form .search-field {border:0px !important; padding: 0.5em 0em 0.5em 0.8em !important; flex:1}
.search-row .search-wrap {
	margin: 10px 0;
}
.search-row  .search-form .search-submit {background:transparent !important; border:0px !important; padding:0px 10px !important}
.search-row .cat-wrap {
	margin: 10px 0;
}
.search-row .search-submit i{ color:#444 !important}
.sf-input-select, .gfield_select, .form-field select, .orderby, .ginput_container_date select, .select {
  color: #444;
  line-height: 1.3;
  padding: 0.5em 3.4em 0.5em 0.8em;
  min-width: 220px;
  max-width: 100%;
  border-radius: 2px;
  box-sizing: border-box;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
	background: #fff;
  background-color: #fff;
  border: 1px solid #999;
  background-image: linear-gradient(
45deg
,transparent 50%,gray 50%),linear-gradient(
135deg
,gray 50%,transparent 50%),linear-gradient(to right,#ccc,#ccc);
  background-position: calc(100% - 20px) calc(1em + 2px),calc(100% - 15px) calc(1em + 2px),calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px,5px 5px,1px 1.5em;
  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(--dark-bg);
}
.sf-input-select:focus, .gfield_select:focus, .form-field:focus, .orderby:focus, .orderby:focus, .ginput_container_date select:focus, .select:focus {
  border-color: var(--dark-bg);
}
/*--------------------------------------------------------------
# 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;
}
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;
}
.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;
}
.map iframe {
	width:100%!important;
	height:650px;
}
hr {
	background-color: #000;
	border: 0;
	height: 1px;
	width:72.5px;
	margin-bottom: 1.5em;
	display: inline-block;
}
hr.line-shortcode {
    text-align: center;
    display: block;
    margin-top: 0;
}
.is-dark hr {
	background-color: #fff;
}
.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: -10px;
	margin-right: -10px;
}
.grid-item {
	width:33.33%;
	padding: 0 10px;
	display:inline-block;
	margin:10px 0
}
/* Blog */
.grid-item.post .placeholder {
  display: none;
}
/*--------------------------------
# Modal
--------------------------------*/
.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;
}
.fancybox-button[disabled] {
	display: none !important;
}
.fancybox-close-small:hover {
	background: none;
}
/*--------------------------------------------------------------
# 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: inherit ;
	border: none !important;
	border-bottom: 1px solid var(--primary-colour) !important;
	border-radius: 2px !important;
	padding: 12px 0 !important;
	transition: all 0.3s ease !important;
	line-height: normal !important;
	background: none !important;
	font-family: inherit !important;
	font-weight: 300 !important;
	color: var(--body-colour) !important;
  -webkit-appearance: none !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	/* color: #111; */
	outline: none !important;
	border-color: var(--body-colour) !important;
}
select {
	border: 1px solid #ccc;
}
.sm-clean a span.sub-arrow, .sm-clean  a span.down-arrow {
	width: 12px;
	position: absolute;
	right: -2px;
	top: 50%;
}
textarea {
	resize: none;
}
.sm-clean  a span.sub-arrow{
    background-image: url('../images/angle-down.svg') !important;
	filter:invert(1);
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
    position: absolute;
    right: -2px;
    height: 12px;
    width: 12px;
    border: 0 !important;
    z-index: 12321313;
    top: 20px;
	
}
.sm-clean a {border-left:0px !important;}
@media screen and (max-width:1023px){
	.sm-clean  a span.down-arrow {
	background-image: url(../images/angle-down.svg) !important;
	filter: invert(1);
	background-repeat: no-repeat !important;
	background-size: 12px auto !important;
	background-position: center !important;
	position: absolute;
	right: 0px;
	height: 35px;
	width: 35px;
	border: 0 !important;
	z-index: 12321313;
	top: 6px;
	}
}
.sm-clean  a span.down-arrow.open {
	transform: rotate(-180deg);
}
.sm-clean a.has-submenu {
	padding-right: 12px;
}
textarea {
	width: 100%;
	max-height: 150px;
}

.is-dark ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--body-colour);
  opacity: 1; /* Firefox */
}

.is-dark :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--body-colour);
}

.is-dark ::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--body-colour);
}
/*--------------------------------------------------------------
# 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(--primary-colour);
}
/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/
.error-404 {
  padding: 40px 0;
  background: #f5f5f5;
  height:500px;
  min-height: 500px;
}
.error-404 .container {
	height:100%
}
.error-404 {
  text-align: left;
}

.error-404 #icon i {
  font-size: 6em;
  
}
/*--------------------------------------------------------------
# WooCommerce
--------------------------------------------------------------*/
#shop-page {
	padding: 0;
}
input#coupon_code {
    min-width: 200px;
    font-size: 0.9em;
    padding: 6px !important;
}
.woocommerce span.onsale {
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: center;
}
.shop-content {
	margin: 20px 0;
}
h1.page-title {
	margin: 0 0 20px 0;
}
.woocommerce .products ul, .woocommerce ul.products {
	margin-right: -10px;
	margin-left: -10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	padding: 0 10px;
	margin: 10px 0 !important;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
	-ms-flex-direction: column!important;
	flex-direction: column!important;
}
ul.products.columns-2 li.product {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
ul.products.columns-3 li.product {
	-ms-flex: 0 0 33.33%;
	flex: 0 0 33.33%;
	max-width: 33.33%;
}
ul.products.columns-4 li.product {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}
ul.products li.product a.woocommerce-loop-product__link {
	flex: 0 0 auto;
}
.woocommerce ul.products li.product .button {
	align-self: baseline;
	margin: 0 auto;
	margin-top: auto;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
	width: 100%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
.woocommerce .col2-set, .woocommerce-page .col2-set {
	margin-left: -20px;
	margin-right: -20px;
	width: calc(100% + 40px);
}
.pswp--open {
	z-index: 999999;
}
#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
	width: 80px;
}
section.related.products {
	padding: 0;
}
/*--------------------------------------------------------------
# Flexible layout
--------------------------------------------------------------*/

.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
	font-size: 17px !important;
}
#password-protected {
	padding: 40px 0;
}
.lt {
  margin: 10px 0 20px 0;
}
.layout-title .tc .button-wrap {
	min-width: 100%;
}

.layout-title h4.pt {
    margin-bottom: 20px;
}
.light-bg {
  background-color: var(--light-bg) !important;
}
.light-bg-full {
	background-color: var(--light-bg) !important;
  }
.dark-bg {
  background-color: var(--dark-bg) !important;
}

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);
}
ul.list.standard li:before {
	content: "\f068";
}
ul.list.ticks li:before {
	content: "\f058";
}
#page-sections {
	float: left;
	width: 100%;
}
#page-sections .background-image:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.7;
}
.background-image div, .background-colour {
	position: relative;
}
.box-wrap {
	margin: 20px 0;
}
.box {
	background: var(--box-bg);
	padding: 30px;
	float: left;
	width: 100%;
}
.hb {
	background: var(--box-bg);
	padding: 30px;
	display: flex;
	float: left;
	width: 100%;
	justify-content: center;
	flex-direction: column;
}
.light-bg .box {
	background:#fff
}
.error404 #left-header {
	position: relative;
	top: 0;
	background:var(--dark-bg);
}
/*--------------------------------
# Image Left, Image Right
--------------------------------*/
.image-left .text .inner,
.image-right .text .inner {
	padding:0;
	max-width: 500px;
}
.image-left .text .inner p,
.image-right .text .inner p
{
	margin-top:20px;
}
.image-left .text .inner ul,
.image-right .text .inner ul
{
	margin-top:15px;
	padding-left: 15px;
    margin-left: 0px;

}
.image-left .text .inner ul li,
.image-right .text .inner ul li
{
	margin-bottom:10px;
	line-height: 1.3;
	
}
.image-left .text .inner ul li:last-child,
.image-right .text .inner ul li:last-child
{
	margin-bottom:0px;
	
}
.image-left.full-width .text .inner {
	padding: 60px 40px;
	max-width:100%;
}
.image-right.full-width .text .inner {
	padding: 60px 40px;
	max-width:100%;
}
.image-left.full-width .image-wrap img,
.image-right.full-width .image-wrap img {
	display: block;
	height: 100%;
	object-fit: cover;
}
.image-left:not(.full-width) .image-wrap img,
.image-right:not(.full-width) .image-wrap img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.list-wrap {
	padding-left: 40px;
	border-left: 1px solid var(--primary-colour);
	/* padding-top: 20px; */
	max-width: 500px;
}
.list-item-wrap {
	float: left;
	width: 100%;
}
.list-item-wrap h4 {
    color: var(--body-colour);
    font-weight: bold;
	margin-bottom: 0;
	position: relative;
}
.list-item-wrap h4:before {
	content: '';
	left: 0;
	top: 10px;
	position: absolute;
	left: -40px;
	width: 20px;
	height: 1px;
	background: var(--primary-colour);
}
/*--------------------------------
# Slider
--------------------------------*/
.slider .container {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.slider .slide:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.6;
}
.slider .inside  {
	position: relative;
	z-index: 4;
	text-align: left;
}
.slider .text {
	max-width: 620px;
}
.slider .slide {
	height: 100%;
	min-height: 500px;
	padding: 60px;
	width: 100%;
}
.flickity-page-dots {
	bottom: 20px;
	max-width: 1240px;
	text-align: center;
	margin: 0 auto;
	right: 0;
	left: 0;
	/* padding-left: 20px; */
	/* padding-right: 20px; */
	text-align: right;
}
.flickity-page-dots li:only-child {
	display: none !important;
}
.flickity-page-dots .dot {
	height: 14px;
	width: 14px;
	margin: 0 4px;
	background: transparent;
	border:1px solid #001A33;
	opacity: 1;
}
.flickity-page-dots .dot.is-selected {
	background: #001A33;
	border-color:#001A33;
}
.is-dark .flickity-page-dots .dot {
	background: #fff;
}
.slider h2, .slider p, .slider a.button {
	position: relative;
	margin:10px 0
}
.slide h2, .slide p, .slide .button {
	visibility: hidden;
	animation-name: fadeOut;
	animation-duration: 0.5s;
}
.slide.is-selected h2 {
	animation-name: fadeInDown;
	animation-duration: 1s;
	visibility: visible;
}
.slide.is-selected p {
	animation-name: fadeInUp;
	animation-duration: 1s;
	visibility: visible;
}
.slide.is-selected .button {
	animation-name: fadeIn;
	animation-duration: 1s;
	visibility: visible;
}

h1, h2 em, h3 em, h4 em {
	font-family: "EB Garamond", serif;
	font-weight: 400;
	font-style:normal;
	
}
/*-----------------------
# Background Video
------------------------*/
.background-video {
	background: #000;
}
.background-video .vsc-controller {
	display: none;
}
.background-video .video-wrap:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.3;
	z-index:1
}
.background-video, .background-video .video-wrap {
	position: relative;
}
.background-video .video-wrap {
	min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.background-video video {
    width: 100%;
    height: 100%;
	position: absolute;
	top: 0;
	left: 0;
    display: block;
    object-fit: cover;
}
.background-video .text-wrap {
    padding: 60px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
	position: relative;
    width: 100%;
}
.background-video .text {
	/* max-width: 620px; */
}
.background-video h1 {
    margin: 20px 0;
}
.background-video .text img {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}
.two-cols .background-video .video-wrap:before {display: none;}
/*-----------------------
# Background Image
------------------------*/
.bg-image {
	min-height: 550px;
	display: flex;
	align-items: center;
	position: relative;
}
.bg-image.full-height {
	min-height:100vh;
}
.bg-image .image:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,26,51,.6);
   mix-blend-mode: multiply;
	z-index:1;

}
.bg-image .container {
	z-index:10;
}
.bg-image .image img {
	position:absolute; 
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	object-fit: cover;
}
/*-----------------------
# Quote
------------------------*/
.section.quote {
	text-align:center;
	font-size:18px;
	background:#f5f5f5;
	padding-top:20px;
	padding-bottom:20px;
}
/*-----------------------
# Images
------------------------*/
.images-layout img {
	display: block;
}
/*-----------------------
# Image Top Text Bottom
------------------------*/
.ittb .image-wrap img {
    aspect-ratio: 16 / 12;
    object-fit: cover;
}
.ittb h3 {
	color: var(--body-colour);
	font-weight: bold;
	font-size: 1.2em;
	margin-bottom: 0;
}
.ittb p:first-of-type {
    margin-top: 10px;
}
.ittb .content {
	margin-top: 40px;
	padding-left: 30px;
	border-left: 1px solid var(--primary-colour);
}
.ittb .content :first-child {
	margin-top: 0;
}
 
/*-----------------------
# 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 h3 {
  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;
	border: 2px dashed #ccc;
}
/*-----------------------
# Contact Details
-----------------------*/
.form-wrap h3 {
	margin: 0;
	margin-bottom: 20px;
}
.contact-details h3 i {
	font-size: 0.7em;
	margin-right: 8px;
}
.contact-details .notes p {
	margin: 0;
	margin-top: 10px;
}
.contact-details .notes em {
	font-size: 0.9em;
}
.business-day {
	font-weight: bold;
}
.contact-details .bh .inner {
	padding: 5px 0;
	max-width:80%
}
.contact-details .bh .inner:not(:last-child) {
	border-bottom: 1px solid #e5e5e5;
}
.bh-shortcode {
	margin-top: 40px;
	max-width: 500px;
}
.contact-info .detail  {
	margin-bottom: 20px;
}
.contact-info .detail h3 {
	margin: 0;
	margin-bottom: 15px;
}
.contact-info .notes {
	margin-top: 10px;
}
.contact-info .detail p {
	margin: 0;
}
.contact-info .box {
	text-align: center;
}
.contact-info .label {
	font-weight: bold;
}
.contact-details .email-wrap {
    margin-bottom: 10px;
}
.bh-row {
	font-size: 1.1em;
	padding: 5px 0;
	border-bottom: 1px solid var(--primary-colour);
}
/*-----------------------
## Call to action
-----------------------*/
.calltoaction {
	padding: 80px 0;
	position: relative;
}
.calltoaction:before {
	content: '';
	width:100%;
	height: 100%;
	top: 0;
	right: 0;
	position: absolute;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(47,72,88,1) 100%);

	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0) 29%, rgba(47,72,88,1) 40%, rgba(47,72,88,1) 100%);
opacity: 0.94;
	mix-blend-mode: multiply;
}
.calltoaction div {
	position: relative;
}
.calltoaction p {
    font-size: 1.5em;
}
.cta-link {
	text-align: center;
}
/*-----------------------
## Pricing Tables
-----------------------*/
.product .bottom {
    padding-top: 20px;
}
.product .header {
	background: var(--dark-bg);
	padding: 20px;
	position: relative;
	top: -20px;
	text-align: center;
	left: -20px;
	width: calc(100% + 40px);
}
.product .header h3 {
	margin: 0;
}
.product .header h4 {
	margin: 0;
}
.product .inner {
	background: var(--box-bg);
    width: auto;
    text-align: left;
    padding: 20px;
	overflow: hidden;	
}
.product .icon {
	  color: var(--accent-colour);
	  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%);
}
/*-----------------------
# Features List
-----------------------*/
.features h2.section-title {
	margin-bottom:30px
}
.feature h4 {
	margin: 0;
}
.feature p {
	margin: 0;
}
.features .feature .icon i {
  position: relative;
  top: -6px;
}
.features .feature .icon {
  max-width: 44px;
	color: var(--accent-colour);
	font-size: 1.8em;
}
/*-----------------------
# Meet The Team
-----------------------*/
.bio-text {
	font-size: 1.1em;
}
a.image-link {
  transition: all 0.3s;
}
a.image-link:hover {
  opacity: 0.8;
}
.team-title {
	margin-bottom: 10px;
}
.team-subtitle {
  margin: 0;
}
.team-slider {
    margin-top: 20px;
}
h3.role {
    font-size: 2.2em;
}
.col.member {
    min-width: 25%;
    max-width: 50%;
}
 
.member img {
	display: block;
	width: 100%;
	margin: 0 auto;
}
.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;
}
.member .bottom {
	padding-top:10px
}
/*-----------------------
# Accordion
-----------------------*/
.accordion {
	 border: 1px solid var(--primary-button); 
	/* margin-bottom:20px; */
	display: flex;
    flex-direction: column;
	margin-bottom: 15px;
    padding: 15px;
	/* background:#ebf4f9 */
}
.accordion:last-child {
	margin-bottom:0px;
}
.accordion-toggle {
	width:100%;
	cursor: pointer;
	position: relative;
	padding: 8px 0px 8px 0px;
	border-radius: 3px;
	
	-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:#000;
	font-weight: 600;
	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;
	
}
/* .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: 0px 0px 0px 0px !important;
	background:transparent;
	
}
.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;
	color: #fff;
}
.rotate180 {
	transform: rotate(180deg);
}
/*--------------------------------
# Logos
--------------------------------*/
.carousel-wrap {
  position: relative;
}
.carousel-image {
	
	padding: 20px 10px;
}
.carousel-image img {
	display: block;
	height: auto;
	max-height: 100px;
	min-width: 100px;
	width: auto;
	max-width: 300px;
}
.full-container .carousel-wrap {
	padding: 0;
}
.logo-carousel .flickity-page-dots {
	bottom: 0;
	position: relative;
}
.is-dark .carousel-image img, .is-dark .logo-wrap img {
    filter: brightness(0) invert(1);
	opacity: 0.9;
}
.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-carousel .carousel-image { display:flex; align-items: center; justify-content: center;}
.logo-carousel .carousel-image img {max-width:80%;}
.logo-carousel .flickity-page-dots {display:none}
@media screen and (min-width:768px){
	.logo-carousel .carousel-image {width:300px; height:100px; }
}
@media screen and (max-width:767px){
	.logo-carousel .carousel-image {width:180px; height:80px; }
}
/*--------------------------------
# Downloads
--------------------------------*/
.download img {
	max-height: 100px;
	width: auto;
	display: inline-block;
	margin-bottom: 20px;
}

/*--------------------------------
# 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;
	padding: 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: 10px 15px;
	cursor: pointer;
	transition: all 0.3s;
	margin-right: 10px;
	font-weight: 600;
}
ul.tabs li:hover {
	color: var(--link-hover);
}
ul.tabs li.current{
	background: var(--box-bg);
	color: var(--body-colour);
	pointer-events: none;
}
.tab-content {
	display: none;
	background: var(--box-bg);
	padding: 15px;
}
.tab-content.current{
	display: inherit;
	animation-name: fadeIn;
	animation-duration: 0.5s;
}
/*--------------------------------
# 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;
}
.gallery-image .inner:before, .gallery-icon a:before {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.4);
	transition: all 0.6s ease;
	display: -webkit-box!important;
	display: -ms-flexbox!important;
	display: flex!important;
	-webkit-box-align: center!important;
	-ms-flex-align: center!important;
	align-items: center!important;
	-webkit-box-pack: center!important;
	-ms-flex-pack: center!important;
	justify-content: center!important;
	color: #fff;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-solid);
	content: "\f03e";
	font-size: 4em;
	z-index: 1;
}
.gallery-image:hover .inner:before, .gallery-icon:hover a:before {
	/* opacity: 1; */
}
.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);
}
.gallery-image img {height:200px; object-fit: cover;}
div.gallery {
  position: relative;
  float:left;
}
body.single-post div.gallery {
	left: -10px;
    right: -10px;
    width: calc(100% + 20px);
    margin:20px 0
}
.gallery-image {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
/*
	min-width:250px;
	max-width: 610px;
*/
}
.gallery-image img {
	width:100%;
	display:block;
}
/*--------------------------------
# Gallery Carousel
--------------------------------*/
.gallery-main.flickity-resize .image {
  min-height: 100%;
}
.gallery-main {
	margin: 20px 0;
}
.gallery-main .image img {
	display: block;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 16 / 9;
	width: 100%;
}
.gallery-thumbs img {
	display: block;
	transition: all 0.4s ease;
}
.gallery-thumbs .thumb:hover img {
	opacity: 0.6;
}
.gallery-thumbs .thumb {
	width: 20%;
	margin: 0 10px;
	cursor: pointer;
}
.gallery-thumbs .thumb img {
	display: block;
}
.flickity-button {
	padding: 0;
	background: rgba(255,255,255,0.9);
	color: var(--primary-colour);
	margin: 0;
}
.flickity-button:hover {
	color: var(--primary-colour);
}
/*-----------------------
# Page Excerpt
-----------------------*/
.excerpt-page p {
	margin: 0;
	margin-top: 10px;
	font-size: 16px;
}
.excerpt-page img {
	aspect-ratio: 16 / 10;
	transition: all 0.5s ease;
	object-fit: cover;
}
.excerpt-page .inner {
	position: relative;
	overflow: hidden;
}
.excerpt-page .content {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 20px;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 2;
}
.excerpt-page .inner:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: 0.3;
	transition: all 0.5s ease;
	z-index: 1;
}
.excerpt-page .inner:hover:before {
	opacity: 0.7;
}
.excerpt-page .inner:hover img {
	transform: scale(1.1);
}
 
.excerpt-page .button-link {
	visibility: hidden;
	transition: all 0.5s ease;
	opacity: 0;
}
.excerpt-page .inner:hover .button-link {
	visibility: visible;
	opacity: 1;
}
.excerpt-page .content .text {
	position: relative;
	text-align: center;
}
.excerpt-page .content h3 {
	margin: 0;
	font-size: 1.8em;
}
.excerpt-page .view {
	font-weight: bold;
}
/*-----------------------
# Sibling Pages
-----------------------*/
.sibling-page {
	margin: 20px 0;
}
.sibling-page .thumb-wrap {
	max-width: 100px;
}
/*-----------------------
# Number counter
-----------------------*/
.number-counter h3 {
	font-size:3em;
	margin: 0;
}
.number-counter .counter {
  font-weight: bold;
}
.number p {
	margin: 0;
	margin-top: 10px;
}
/*-----------------------
## Galleries (Pages)
-----------------------*/
.gallery-image {
	min-width:25%
}
.gallery.count-5 .gallery-image,
.gallery.count-6 .gallery-image {
	min-width: 33.33%;
	max-width: 50%;
}
.gallery.count-5 .gallery-image:nth-child(1),
.gallery.count-10 .gallery-image:nth-child(-n+2) {
	min-width:50%;
	max-width:50%;
}
.gallery.count-7 .gallery-image:nth-child(-n+3),
.gallery.count-11 .gallery-image:nth-child(-n+3),
.gallery.count-13 .gallery-image:nth-child(-n+9),
.gallery.count-14 .gallery-image:nth-child(-n+6),
.gallery.count-15 .gallery-image:nth-child(-n+3) {
	min-width:25%
}
.gallery.count-9 .gallery-image {
	min-width:33.33%;
	max-width:33.33%;
}
/*--------------------
## 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
--------------------------------*/
.background-image:has(.testimonials):before {
    display: none;
}
.t-slide .inner {
    background: #fff;
    padding: 70px 80px;
	--body-colour: var(--body-colour);
}
.t-slide hr {
    background-color: #000;
    margin-bottom: 20px;
    margin-top: 10px;
}
.testimonials {
	text-align:center;
	padding: 40px 0;
	float: left;
	width: 100%;
}
.testimonials .section-title {
	margin-top: 0;
}
.testimonials .flickity-page-dots {
	position: relative;
	bottom: 0;
}
.t-slide h1 {
  margin-top: 0;
}
.testimonial p, .testimonials p {
	font-size: 1.1em;
}
.testimonial .container, .testimonials .container {
	max-width: 700px;
}
.testimonial .author, .testimonials .author {
  margin-bottom: 0px;
  color: var(--primary-colour);
  font-weight: bold;
  letter-spacing: 2px;
}
.author p {
	margin:0
}
.has-one .flickity-page-dots {
  display: none;
}
.testimonial img, .testimonials img {
	display:block;
	margin:0 auto;
  	width: 110px;
	margin-bottom: 10px;
}
.testimonial i, .testimonials i {
	color: var(--accent-colour);
}
.testimonials .flickity-viewport {
  transition: all 0.4s;
}
/*--------------------------------
# Testimonial Grid
--------------------------------*/
.testimonial-grid .inner {
  padding: 30px;
}
.testimonial-grid .inner .image {
  text-align: center;
}
.testimonial-grid .inner .author {
  font-style:italic
}
.testimonial-grid .inner .image img {
  border-radius: 50%;
  display: inline-block;
  width: 120px;
  margin: 0 auto;
}
.testimonial-grid .inner p:first-child {
  margin-top: 0;
}
.testimonial-grid i {
	color:var(--accent-colour)
}
/*--------------------------------
# Videos
--------------------------------*/
.video-container {
	min-width: 25%;
}
.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	height: auto;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.no-gutters.no-vertical-layout-gap {position:relative}
.no-gutters.no-vertical-layout-gap .container {padding:0px;}
.no-gutters.no-vertical-layout-gap:before{
	/* position:absolute;
	left:0px;
	top:0px;
	content:'';
	z-index:10;
	width:100%;
	height:100%; */

}
.full-container .videos.overlay {
	position:relative
}
.full-container .videos.overlay:before{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	content:'';
	z-index:1;
}
/*--------------------------------
# Multiple CTA
--------------------------------*/
.cta .inner {
  width: 100%;
}
.cta .cta-number {
	font-size: 3em;
	font-family: "meno-banner", serif;
	font-weight: 400;
	color: var(--headings-colour);
}
.cta .cta-number:after {
	position: relative;
    content: '';
    width: 45px;
    height: 1px;
    background: #000;
    display: block;
    margin: 0 auto;
}
.cta:not(.intro) .inner {
	text-align: center;
}
.cta-title {
	margin-bottom: 5px;
	font-weight: bold;
	color: var(--body-colour);
	font-size: 1.3em;
	margin-top: 20px;
    margin-bottom: 0;
}
.cta-image {
	min-height: 95px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.cta p {
	margin: 0;
	margin-top: 10px;
}
.cta-image img {
	display: inline-block;
	vertical-align: middle;
	max-height: 90px;
	min-width: 50px;
	width: auto;
	max-width: 200px;
}
.cta-icon {
	font-size: 91.5px;
	line-height: 1;
	color: var(--accent-colour);
}


/*--------------------------------------------------------------
## Posts
--------------------------------------------------------------*/
.excerpt {
	background: #f5f5f5;
	position: relative;
  float: left;
  width: 100%;
}
.excerpt-related {
	margin: 10px 0;
}
.excerpt-related .image {
	padding-right: 0;
	max-width: 160px;
}
.excerpt-related .excerpt-title {
	color: var(--primary-colour);
}
#post-nav {
	margin-top: 10px;
}
.related-title {
	margin: 20px 0;
	margin-bottom: 10px;
}
.excerpt .inner {
	padding: 20px;
}
.excerpt-content p {
  margin: 0;
}
.excerpt-thumb img, .thumb-wrap img, .image-wrap img {
	display: block;
	width: 100%;
}
.excerpt-title {
	margin: 0;
}
.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 #ccc;
	margin-top: 5px;
}
#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: #a5a5a5;
  font-size: 0.9em;
}
.excerpt-archive.classic {
	min-width: 100%;
}
.excerpt-classic-image {
	min-width: 300px;
	max-width: 300px;
}
.excerpt-classic-content {
	min-width: 300px;
}
.excerpt-archive.classic .excerpt {
	background: none;
}
.excerpt-archive.classic .excerpt {
	margin: 20px 0;
}
.sticky {
	display: block;
	position: relative;
}
.excerpt-thumb, .thumb-wrap, .image-wrap {
	position: relative;
  float: left;
  width: 100%;
  flex: 0 0 auto;
}
.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;
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.gform_wrapper {
	margin:0 auto!important;
	max-width:960px!important
}
p.gform_required_legend {
	display: none;
}
.gform_wrapper .gform_ajax_spinner {
  /* padding-left: 0 !important; */
  margin-left: 10px !important;
  max-width: 30px;
  position: relative;
  top: 10px;
  height: 25px;
}
.gform_wrapper.gravity-theme .gfield_label {
	font-weight: 400 !important;
	font-size:1.1em!important
}

.gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half, .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_right_half {
  padding: 0 !important;
}
.gform_wrapper .gfield_required {
	color:red!important
}
.gform_confirmation_wrapper {
	border: 2px solid #7fb567;
	font-size: 1.1em;
	padding: 20px;
	margin: 20px 0;
	position: relative;
}
.gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	background-color: transparent !important;
	border: none !important;
}

.gform_wrapper .gfield_validation_message, .gform_wrapper .validation_message {
	padding: 0 !important;
	border: none !important;
	background: none !important;
}
input.switch {
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	width:40px;
	height:20px;
	background-color:#449988;
	border:1px solid #D9DADC;
	border-radius:50px;
	-webkit-box-shadow: inset -20px 0px 0px 0px #D9DADC;
	box-shadow: inset -20px 0px 0px 0px #D9DADC;
	-webkit-transition-duration: 200ms;
	transition-duration: 200ms;
}
input.switch:checked {
	-webkit-box-shadow: inset 20px 0px 0px 1px #4ed164;
	box-shadow: inset 20px 0px 0px 1px #4ed164;
}
input.switch::-ms-check {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
	filter: alpha(opacity=0); /* IE 5-7 */
	opacity: 0;
}
/* Fluid Video Embeds */
.fve-video-wrapper {
  position: relative;
  overflow: hidden;
  height: 0;
  background-color: transparent;
  padding-bottom: 56.25%;
  margin: 0.5em 0;
}
.fve-video-wrapper iframe,
.fve-video-wrapper object,
.fve-video-wrapper embed {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fve-video-wrapper a.hyperlink-image {
  position: relative;
  display: none;
}
.fve-video-wrapper a.hyperlink-image img {
  position: relative;
  z-index: 2;
  width: 100%;
}
.fve-video-wrapper a.hyperlink-image .fve-play-button {
  position: absolute;
  left: 35%;
  top: 35%;
  right: 35%;
  bottom: 35%;
  z-index: 3;
  background-color: rgba(40, 40, 40, 0.75);
  background-size: 100% 100%;
  border-radius: 10px;
}
.fve-video-wrapper a.hyperlink-image:hover .fve-play-button {
  background-color: rgba(0, 0, 0, 0.85);
}

/*-----------------------
# 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: 34px;
	  position: relative;
	  display: block;
  }
  .toggle {
	  width:34px;
	  height:4px;
	  float:right;
	  background:var(--primary-colour);
	  margin:3px 0;
	  -webkit-transition: all ease 0.3s;
	  transition: all ease 0.3s;
	  border-radius: 10px;
  }
  .toggle-wrap.active .toggle.two {
	  width:26px
  }
  .toggle-wrap.active .toggle.three {
	  width:18px
  }
  .toggle-wrap.active .toggle {
	  /* background:var(--dark-bg) */
  }

/*-----------------------
# Mobile Menu
------------------------*/
.logo img {
	width:100%;
	display:block;
	max-width: 210px;
}
#mobile-header {
	padding: 10px 0;
	width:100%
}
#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;
}
#mobile-menu .current-menu-item a {
    color: var(--link);
}


body.menu-open,
html.menu-open {
  height: 100vh;
  overflow-y: hidden;
}
#mobile-menu-overlay .sm-clean a {
	padding-right: 0;
}
#mobile-menu-overlay .sm-clean li {
  border-top: 1px solid rgb(255 255 255 / 15%);
}
#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;
}
#mobile-main {
	padding-top:30px;
	padding-bottom:30px;
}
#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;
}
.mob-ctas {
	padding-top:30px
}
@media screen and (max-width: 600px) {
	.mobile-center {
		min-height:calc(100vh - 180px);
	}
	#footer .logo {
		margin-top: 40px;
	}
	#footer:before {
		background-size: contain;
		background-position: center top;
	}
}


/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
#footer {
	float: left;
	width: 100%;
	background: #000;
	padding: 30px 0 30px 0;
  	font-size: 0.9em;
	position: relative;
	--link: #fff;
	--link-hover: #fff;
}
#footer:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	/* background-image: url('images/footer-pattern.svg'); */
	background-repeat: no-repeat;
	background-size: 600px;
	background-position: top right;
}
#footer .logo img {max-width:150px;}
 
#footer .co {
	margin: 20px 0;
}
#footer h3 {
	margin: 0 0 10px 0;
	font-weight: bold;
	letter-spacing: 2px;
	color: var(--primary-colour);
	font-size: 1.1em;
}
#footer .address-wrap p {
	margin: 0;
}
#footer .address-wrap p.phone {
	margin: 5px 0;
}
.footer-menu {
	margin: 0 !important;
}
.footer-menu li a {
	position: relative;
	margin-bottom: 5px;
	display: inline-block;
}
.footer-menu li a:hover{
	color:var(--primary-colour) !important;
}
 
.copyright {
	float: left;
	width: 100%;
	margin-top: 0px;
	font-size: 0.95em;
	padding: 10px 0 0px 0;
	border-top: 1px solid rgb(255 255 255 / 20%);
}

.copyright a {
  white-space: nowrap;
}

.copyright {
	margin: 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;
}
.to-top {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
	position: relative;
	cursor: pointer;
	transition: .3s;
	background: var(--primary-colour) url(images/up.svg) center no-repeat;
	background-size: 15px;
}
.to-top:hover {
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 3px 8px rgba(0, 0, 0, 0.12);
}
/*--------------------------------------------------------------
# SOCIAL
--------------------------------------------------------------*/
.social-link {
	color: var(--link);
    padding: 0;
    font-size: 1.2em;
    margin-right: 10px;
    transition: all 0.2s ease;
    border-radius: 50%;
}
a.social-link:visited {
	color: var(--link);
}
a.social-link:hover, .social-link:hover {
	color: var(--link-hover);
}
.two-cols-row .inner-section .container {
	padding: 0;
}
.image-left .text .inner :last-child, .image-right .text .inner :last-child {
    margin-bottom: 0;
}

#footer .social-link:first-of-type {
    padding-left: 2px;
}
/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media screen and (min-width: 1024px) {
	.two-cols-row .inner-section {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	section.wide-gutters {
		padding: 30px 0;
	}
	
	.light-bg {
		background: rgb(235,244,249);
		background: linear-gradient(90deg, var(--light-bg) 0%, var(--light-bg) 85%, rgba(255,255,255,1) 85%);
	}

	.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.standard-horizontal-layout-gap {
		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;
	}
	.row.wide {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-right: -40px;
		margin-left: -40px;
	}
	.wide > .col,
	.wide > [class*="col-"] {
		padding-right: 40px;
		padding-left: 40px;
	}
	.next-post {
		text-align: right;
	}
	.modal {
		max-width:900px;
		margin:0 10px;
	}
	.image-left.full-width .text {
		max-width: 620px;
	}
	.form {

	}
	.image-right.full-width .text .inner {
		max-width: 620px;
		max-width: 790px;
	}
	.form-layout .text .inner {
		padding-right: 150px !important;
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}
}
@media screen and (min-width: 768px) {
	.search-row .search-wrap {
		max-width: 400px;
	}
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
	.col-auto.logo {
		/* min-width: 100%;
		text-align: center; */
	}
	#left-header .container {
		padding: 0;
	}
	#left-header .logo img {
		margin: 0 auto;
	}
	#left-header #header-menu-desktop {
		text-align: center;
	}
	#left-header {
	/* top: -94.05px; */
	}
	/* #left-header {
		position: relative;
		top: 0;
	  } */
	nav#menu-desktop {
		margin-bottom: -10px;
	}
	#header-menu-desktop > a {
		padding-bottom: 0;
	}
}
@media screen and (max-width: 1200px) {
  #news-page.classic #sidebar {
    min-width: 100%;
  }

  
}
@media screen and (max-width: 1024px) {
  .cover, .background-image {
    background-attachment: scroll !important;
  }
  .video-container {
    min-width: 50%;
    max-width: none;
  }
  .grid-item {
		width: 50%;
	}
}
@media screen and (min-width:1024px){
	#mobile-menu-wrap {
		display: none;
	}
	#left-header .sm-clean ul {
		width:15em;
	}
}
@media screen and (max-width: 1023px) {
	.image-left.full-width .text .inner, .image-right.full-width .text .inner {
		padding: 40px;
	}
	.background-video .video-wrap {
		min-height: calc(100vh - 60px);
	}
	.desktop-menu {display:none}
	.mobile-menu {
		position: fixed;
       
        width: 500px;
        z-index: 90;
        height: 100%;
        background: #fff;
        top: 0px;
		display:block !important;
		transition:.3s all;
		overflow-x:auto;
	
	}
	body.menu-active {
		overflow: hidden;
        height: 100vh;
	}
	body.menu-active:before{
		content:'';
		width:100%;
		height:100%;
		position:fixed;
		right:0px;
		top:0px;
		background:rgba(0, 0, 0, .10);
		z-index:80;
		transition:.3s all;
	}
	body.menu-active #left-header{position:fixed; left:0px; top:0px; 
	
		width: 100%;
        height: 100vh;
       
	}
	#left-header  .mobile-logo {
		margin-top:0px !important;
	}
	#left-header  .mobile-logo img {
		max-width: 100px;
        max-height: 70px;
        width: auto;
    }
	#left-header .logo {padding-right:0px;}
	#left-header .mobile-right {
		position:relative;
		display:flex;
		z-index: 999999999;
		padding-left:0px;
	}
	#left-header .mobile-right {
		display: none
	}
	.scroll-up #left-header .mobile-right  {
		display: flex !important
	}
	.mobile-menu {
		background: #fff;
        z-index: 99999999;
	}
	.mobile-menu nav {height:100vh;background:#fff; padding-top:75px;}
	.mobile-menu .nav-menu {padding:0px 15px;}
	.mobile-menu .nav-menu > li > a {
		color:#000 !important;
		font-weight:500;

	}
	.mobile-menu .nav-menu > li > ul li a {
		color:var(--accent-colour) !important;
		font-weight:300;}
	.mobile-menu .sub-menu {
       background:transparent;
        padding: 0px;}
	.mobile-menu .sub-menu li {border-top:0px;}
	#mobile-menu-wrap {
		left:-100%;
		transition:.3s all;
	}
	#mobile-menu-wrap.active{
		left:0px;
	}
	
	
	.image-left:not(.full-width) .image-wrap img, .image-right:not(.full-width) .image-wrap img {
		display: block;
		/* margin: 0 auto; */
		/* max-width: 450px; */
		/* margin-bottom: 30px; */
	}
 
	.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%;
	}
	ul.products.columns-4 li.product {
		-ms-flex: 0 0 33.33%;
	  flex: 0 0 33.33%;
	  max-width: 33.33%;
	}

  .promo-box.col {
    min-width: 50%;
  }
	#sidebar {
		min-width: 100%;
		max-width: 100%;
	}
	.woocommerce-page #sidebar {
		display: none;
	}
  .sm-clean a span.sub-arrow {
    right: 0;
    width: 40px;
	height: 40px;
	background-size: 15px !important;
    text-align:center
  }

  .sm-clean span.sub-arrow:before {
    font-size: 1.4em;
	display: none;
  }
  #menu-toggle {
    display: flex;
	align-items: center;
  }
  header .head-info span.header-link {
    display: none;
  }
  #top-bar {
    display: none;
  }
  .three-text {
    min-width: 50%;
  }
}

 

@media screen and (max-width: 768px) {
	 
	.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1,
	.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
		width: 100%;
		-ms-flex: 0 0 100%;
	  flex: 0 0 100%;
	  max-width: 100%;
	}
	.cta.col {
    	min-width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.mobile-menu {
		width:100% !important;
	}
	.carousel-image {
		padding: 20px;
	}
	.member img {
		margin-bottom: 40px;
	}
	.background-video .text-wrap {
		padding: 60px 0;
	}
	.flickity-page-dots {
		text-align: center;
	}
	.bg-image {
		min-height: 450px;
	}
	.calltoaction:before {
		background: rgba(47,72,88,1);
		opacity: 0.94; 
	}
	
    
	.wide .co:not(.standard), .wide-gutters .co:not(.standard) {
		margin: 20px 0;
	}
	.background-video .video-wrap {
		min-height: calc(100vh - 120px);
	}
	.t-slide .inner {
		padding: 40px;
	}
	.tabbed ul.tabs li {
		width: 100%;
		margin: 0;
		border-left: 5px solid transparent;
	}
	.tabbed ul.tabs li.current {
		border-left-color: var(--primary-colour); 
	}
	.tabbed ul.tabs {
		border: 1px solid var(--box-bg);
		margin-bottom: 20px;
	}
	.col.post-wrap {
		order: -1;
	}
	#single-post .side {
		margin-top: 0;
	}
	.post-wrap {
		margin-bottom: 0;
	}
	.gallery .row {
		margin-left: -10px;
		margin-right: -10px;
	}
	.gallery > .col, .gallery > [class*="col-"], .gallery .co {
		padding-right: 10px;
		padding-left: 10px;
	}
	.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 .thumb {
		width: 20%;
	}
	.box {
		padding:20px
	}
	section {
		padding:30px 0;
	}
	h1 {
		font-size:2.2em
	}
	#banner {
		min-height:300px;
	}
	.slider .slide {
		min-height:400px;
	}
	ul.products.columns-2 li.product, ul.products.columns-3 li.product, ul.products.columns-4 li.product {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.error-404 #icon {
		min-width: 100%;
		border: none;
	}
	.error-404 {
		text-align: center;
	}
	.carousel-wrap {
		padding: 0;
	}
	.slider .inside {
		width: 100%;
	}
	.grid-item.post {
		width: 100%;
	}
	.excerpt-archive {
		min-width: 100%;
		max-width: 100%;
	}
	
	#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%;
	}
	#nobanner {
		padding: 40px 0;
	}
	#left-header #menu-toggle {
		max-width: none;
	}
	.video-container {
		min-width: 100%;
		max-width: 100%;
	}
}
@media screen and (max-width: 575px) {
	.container {
		padding: 0 20px;
	}
	.co {
		margin: 20px 0;
	}
	.title-button .col-auto {
		min-width: 100%;
	}
	.image-left.full-width .text .inner, .image-right.full-width .text .inner {
		padding: 40px 20px;
	}
	.slider .slide {
		padding: 20px 0;
	}
	
	body {
		font-size:16px
	}
	.gallery-thumbs .thumb {
		width: 30%;
	}
	.woocommerce-form-coupon .form-row {
    	width: 100% !important;
    	padding: 0 !important;
	}
	.woocommerce-message {
		display: flex;
		flex-direction: column;
	}
	.col.download {
		min-width: 100%;
		max-width: 100%;
	}
	input#coupon_code {
		min-width: 100%;
		margin-bottom: 10px;
	}
	.coupon .button {
    width: 100% !important;
	}
	.woocommerce-message a {
		align-self: baseline;
		margin-top: 10px;
	}
	.woocommerce-message a.button {
		order: 2;
		margin-top: 10px;
	}

	.grid-item {
		width: 100%;
	}
	blockquote {
		width: 100%;
		margin: 15px 0;
		padding: 50px 20px;
	}

	.gallery-image {
		min-width: 50% !important;
		max-width: none !important;
	}
	.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%;
	}
	.map iframe {
		width:100%!important;
		height:340px;
	}
}
@media screen and (max-width: 375px) {
  .features .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .row.related {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 374px) {
	ul.products.columns-2 li.product, ul.products.columns-3 li.product, ul.products.columns-4 li.product {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
	}
}
@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%;
  }
}

/*Cards*/
.cards .box{background:transparent; padding:0px;}
.cards .card {padding-left:10px; padding-right:10px;}
.cards .box .card-image {height:280px; width:100%; position:relative; margin-bottom:15px;}
.cards .box .card-image img {position:absolute; left:0px; top:0px; width:100%; height:100%; object-fit: cover;}
.cards .box .block-title {margin-top:10px;}
.cards .box .bottom a {
	border:0px !important;
	padding:0px !important;
	color:var(--primary-button) !important;
	background:transparent !important;
	text-transform:capitalize !important
}
.cards .box .bottom a:hover{
	background:none !important;
	color:#000 !important;
}
.card_carousel .flickity-page-dots{
	bottom: 0px;
	position:relative;
	margin-top:20px;
    text-align: center;
}
@media screen and (max-width:540px){
	
	.cards .box .card-image {height:250px;}
}

/*grid*/
.card-grid-default .box{background:transparent; padding:0px;}
.card-grid-default .box .card-image {height:380px; width:100%; position:relative; margin-bottom:15px;}
.card-grid-default .box .card-image img {position:absolute; left:0px; top:0px; width:100%; height:100%; object-fit: cover;}
.card-grid-default .box .block-title {margin-top:10px;}
.card-grid-default .box .card-content {
	    flex: 1 1 auto;
}
.card-grid-default .box .bottom {margin-top:auto;}
.card-grid-default .box .bottom a {
	border:0px !important;
	padding:0px !important;
	color:var(--primary-button) !important;
	background:transparent !important;
	text-transform:capitalize !important
}
.card-grid-default .box .bottom a:hover{
	background:none !important;
	color:#000 !important;
}
.card-grid-default.items-3-row .card-image {height:280px;}

@media screen and (max-width:540px){
	
	.card-grid-default .box .card-image {height:250px;}
}
/*Locations with Icons*/
.feature-locations .locations{
	display:flex;
	justify-content: center;
	align-items: center;
	gap:10px 30px;
	flex-wrap: wrap;
	max-width:700px;
	margin:0px auto;
	
}
.feature-locations .location {display:flex; align-items: center; }
.feature-locations .location .icon {width:20px;}
.feature-locations .location .icon i {
	color: var(--primary-colour);
    font-size: .8em;
}
.feature-locations .location  .text h4 {color:#000; margin:0px;}

/*Our Locations*/

.our-locations.tab-slider-wrapper {
	position: relative;
}
.our-locations  .slider-tab-filter {
	width: 100%;
}
.our-locations .slider-tab-filter {display:flex; gap:0px; justify-content: center; overflow-x:auto; margin-bottom:20px;}
@media screen and (min-width:768px){
	.our-locations .slider-tab-filter {justify-content: center;}
}
@media screen and (max-width:767px){
	.our-locations .slider-tab-filter {justify-content: start;}
}

.our-locations .filterButton {font-weight:400;gap:10px; text-wrap: nowrap; color:#000;  border-bottom:2px solid rgba(0,0,0,.10); height:50px; display:flex; align-items: center; padding-left:15px; padding-right:15px; cursor:pointer;}
.our-locations .filterButton span {display: inline-flex;}
.our-locations .filterButton span:first-child {
	width:30px;
}
.our-locations .filterButton .flag {width:30px; height:20px; background-size:20px auto; background-position: center; background-repeat: no-repeat;}
.our-locations .filterButton .flag.united_kingdom {background-image:url('../images/flag-uk.webp')}
.our-locations .filterButton .flag.south_africa {background-image:url('../images/flag-sa.webp')}
.our-locations .filterButton .flag.united_arab_emirates {background-image:url('../images/flag-uae.webp')}


.our-locations .filterButton.active {color:var(--primary-colour); border-color:var(--primary-colour)}

.our-locations .slider-tab-arrows button {
	position:absolute !important;
	top:50%;
	z-index:100;
	
}
.our-locations .slider-tab-arrows button.slider-next {right:0px;}

.our-locations .slider-tab-cards {}

.our-locations  .slider-tab-card .card{ padding:10px;}
.our-locations  .slider-tab-card .card p {visibility: visible; margin-bottom:10px; margin-top:0px; animation-name:none; animation-duration:inherit}
.our-locations  .slider-tab-card .card p b {font-weight:600;}
.our-locations  .slider-tab-card .card p a {color:#000;}
.our-locations  .slider-tab-card .card .button {visibility: visible; 
	border: 0px !important;
    padding: 0px !important;
    color: var(--primary-button) !important;
    background: transparent !important;
    text-transform: capitalize !important;
}
.our-locations  .slider-tab-card .card .button:hover{
	color:#000 !important;
}
.our-locations .flickity-page-dots {display: flex; justify-content: center; bottom:-10px;     position: relative;}
.our-locations .flickity-page-dots li {list-style:none; border-radius:10px;}
.our-locations .flickity-page-dots li::marker {
	display: none;
	text-indent:-99999px;
}
.flickity-enabled:focus {
    outline: none;
}

@media screen and (min-width:768px){
	.our-locations  .slider-tab-card .card{width:410px; }
}
@media screen and (max-width:767px){
	.our-locations  .slider-tab-card .card{width:350px;}
}
.our-locations .slider-tab-card .card-content {padding:15px 0px;}

.our-locations .cards:not(.slider-tab-card) .box .card-content {background:#fff; padding:15px;flex-grow: 1;}
.our-locations .cards:not(.slider-tab-card) .co {margin:0px;padding:0px; padding-bottom: 20px;}

.our-locations .cards:not(.slider-tab-card) .co .card {flex-direction: column;
  display: flex;
  height: 100%;
}
/*Icons Layout*/
.icons_layout .container .row {
	justify-content: center;
}
.icons_layout .icon .box {padding:0px; background:transparent;}
.icons_layout .icon-image {width:100px; height:100px; display:flex; align-items: center; justify-content: center;}
.icons_layout .icon-image img {max-width:100px; max-height:100px;}
.icons_layout .icon .box p:empty {display:none;}

/*History*/

.history {
	position: relative;
}
.history_layout  .history-nav {
	width: 100%;
	height:70px;
}
.history_layout .history-nav { margin-bottom:20px; position:relative;}
.history_layout .history-nav:before{
	height: 1px;
	left:0px;
	top: 10px;
	width: 100%;
	content: "";
    display: block;
	opacity: .2;
    position: absolute;
    transform-origin: left;
	background: #000;
}
@media screen and (min-width:768px){
	.history_layout .history-nav {justify-content: center;}
}
@media screen and (max-width:767px){
	.history_layout .history-nav {justify-content: start;}
}

.history_layout .item {
	font-weight:400;gap:10px; text-wrap: nowrap; color:#000;   height:50px; display:flex; align-items: self-end; padding-left:15px; padding-right:15px;
}
.history_layout .item .year { font-weight:400; width:40px; text-align:center;}
.history_layout .item span.pin {
	border:1px solid rgba(0, 0, 0, .20);
	background: #fff;
	width: 14px;
    
    height: 14px;
    border-radius: 100%;
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
	
	
	transition:.3s all;
}

.history_layout .item .pin:before{
	width: 10px;
    height: 10px;
	border:1px solid transparent;
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    border-radius: 100%;
    transition: .3s all;

}
.history_layout .item.is-selected.is-nav-selected .pin:before{
	width:20px; 
	height:20px;
	top:-4px;
	left:-4px;
}
.history_layout  .history-content{width:100%; min-height:400px; display:flex; flex-direction: column;}
.history_layout  .history-content .description{margin-top:auto; margin-bottom:0px;}
.history_layout  .history-image{width:100%}
.history_layout  .history-image .image {width:100%; position:relative; min-height:400px;}
.history_layout  .history-image .image img {position:absolute; left:0px; top:0px; width:100%; height:100%; object-fit: cover;}

@media screen and (max-width:640px){
	.history_layout  .history-content{min-height:auto;}
	.history_layout  .history-image .image { min-height:inherit; height:300px;}

}
.history_layout .year {color:rgba(0, 0, 0, .50);}
.history_layout .item.is-selected.is-nav-selected .year {color:rgba(0, 0, 0, 1);}
.history_layout .item.is-selected.is-nav-selected .pin {
	background: var(--primary-colour);
	border-color:var(--primary-colour);
}
.history_layout .item.is-selected.is-nav-selected .pin:before{
	border-color:var(--primary-colour)
}

.page-section.is-dark .history_layout .year {color:rgba(255, 255, 255, .50);}
.page-section.is-dark .history_layout .item.is-selected.is-nav-selected .year {color:rgba(255, 255, 255, 1);}

.page-section.is-dark .history_layout .item.is-selected.is-nav-selected .pin {
	background: var(--primary-colour);
	border-color:var(--primary-colour)
}
.page-section.is-dark .history_layout .item .pin:before { border: 1px solid var(--dark-bg);}

.page-section.is-dark .history_layout .item.is-selected.is-nav-selected .pin:before{
	border-color:var(--primary-colour)
}
.page-section.is-dark .history_layout .item span.pin {
	border:1px solid rgba(255, 255, 255, .20);
	background: var(--dark-bg);

}
.page-section.is-dark .history_layout .history-nav:before {
	background:#fff;
}
.page-section.is-dark .history_layout .fs-1, .page-section.is-dark .history_layout  .description .fs-4 {color:#fff !important}
/*Box sizes*/
.container.two-cols .sizes_layout .row {
	flex-direction: column;
}
.container.two-cols .sizes_layout {
	position: relative;
	z-index: 9;
}
.container.two-cols .sizes_layout .row > .col-12{
	flex: 0 0 50%;
  max-width: 100%;
}

.page-section.no-bg .sizes-carousel {
	height: 100%;
  }
  
  .page-section.no-bg .flickity-viewport {
	height: auto;
	transition: height 0.2s;
  }
.box-sizes .box >div {border:1px solid #dfdfdf;height:100%; position:relative;}
.box-sizes .box { width:220px; padding:0px;background:transparent; height:100%; }
.box-sizes .box .icon-image {
	width:100%;
	height:100px;
}
.box-sizes .box .icon-image img {max-width:80%;  height:auto;}
.box-sizes .box >div {margin:0px 10px;background:#fff;    padding:25px 15px 15px 15px;}
.box-sizes .flickity-page-dots {bottom: 0px; margin-top: 20px; text-align: center; position:relative;}
.box-sizes .flickity-page-dots  .dot {background:none;}
.box-sizes  .flickity-page-dots .dot.is-selected {background:var(--primary-colour) !important; }
.box-sizes .availability {font-size:.875em; font-weight:500; }
.box-sizes .availability.sold-out {color:rgb(217, 68, 68);}
.box-sizes .availability.last-few {color:var(--primary-colour);}
.box-sizes .availability.in-stock {color:var(--primary-colour);}


@media screen and (max-width:767px){
	.container.two-cols .sizes_layout {padding:30px 0px}
	.container.two-cols .background-video .video-wrap{height: 70vh;min-height: 40vh;}
	.box-sizes .flickity-page-dots {margin-top:30px; margin-bottom:20px;}
}

/*Custom ICON grid in HTML code */
.custom-icon-grid {display:flex; flex-wrap:wrap;     gap: 15px 0px; list-style: none; padding-left:0px !important; margin-left:0px;}
.custom-icon-grid li div {
    flex-direction: column;
    display: flex;
   
	gap:14px 0px;
}.custom-icon-grid .icon {width:50px; height:50px; display:inline-flex; align-items: center; justify-content: center;}
.custom-icon-grid .icon img {max-width:85%; height:auto;}
.custom-icon-grid.icon-invert .icon{
	filter:invert(1) grayscale(1) sepia(100%) hue-rotate(0deg) saturate(150%)
}
@media screen and (min-width:1024px){
	.custom-icon-grid li {width:33.33%;}
}
@media screen and (max-width:1023px){
	.custom-icon-grid li {width:50%;}
}
@media screen and (max-width:1023px) and (min-width:540px){
	.custom-icon-grid li div {
		flex-direction: row;
		display: flex;
		align-items: center;
		gap: 10px;
		justify-content: start;
	}
}
@media screen and (max-width:539px) {
	.custom-icon-grid li div { text-align:left}
}
/*QUOTE*/
.ceo-quote .quote {position:relative}
.ceo-quote .quote:before { position:absolute; background:url('../images/quotes.svg') no-repeat; content: '';
    width: 50px;
    height: 50px;
    background-position: 1px 1px;
    left: 0px;
    top: 1px;
	opacity: .2;
    transform: scale(1.5);}

/*Gallery*/
.fancybox-container .fancybox-toolbar .fancybox-button:not(.fancybox-button--close), .fancybox-toolbar svg, .fancybox-navigation .fancybox-button div {
	display:none !important
}
.fancybox-navigation .fancybox-button {width:44px; height:44px;}
.fancybox-navigation .fancybox-button--arrow_right { right:5px; }
.fancybox-navigation .fancybox-button--arrow_left { left:5px; }.fancybox-toolbar .fancybox-button--close, .fancybox-navigation .fancybox-button--arrow_left, .fancybox-navigation .fancybox-button--arrow_right  {
	font-family: "Font Awesome 6 Pro";
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
	font-size:1.2rem;
	
}
.fancybox-toolbar .fancybox-button--close {background:transparent !important; border:0px !important;}
.fancybox-toolbar .fancybox-button--close:before {content:'\f00d';}
.fancybox-navigation .fancybox-button--arrow_left, .fancybox-navigation .fancybox-button--arrow_right {
	
	top:50%;
	position:fixed !important;
	
	
}
.fancybox-navigation .fancybox-button--arrow_left:before{
content:'\f053';
margin-left:-5px;
}
.fancybox-navigation .fancybox-button--arrow_right:before{
	content:'\f054';
	margin-left:-5px;
	
	}


/*Zoho Form*/
.wf-form-component  {padding:2rem 0px;}
.wf-form-component .label {
	display:none;
}
.wf-form-component .row:last-child{margin-bottom:0px;}
.wf-form-component .form-control {width:100%; }
.light-bg .wf-form-component .form-control {color:#000 ;}
.wf-form-component  .form-select {background:none; border:0px; border-bottom:1px solid var(--primary-colour) !important; padding-bottom:12px; padding-top:12px;}
.light-bg .wf-form-component .row .terms, .no-bg .wf-form-component .row .terms  {margin-top:10px; margin-bottom:10px;}
.wf-form-component .terms {display:flex; gap:15px;flex-wrap: wrap;align-items: start;}

.wf-form-component .terms input[type=checkbox] {margin-top:5px;}
.wf-form-component .terms label:not(.error) {
	flex: 1;
}
.wf-form-component .terms label.error {
	order: 3;
	width: 100%;
	flex-direction: column;
	display: flex;
  
}
.black-bg  .form-control::placeholder{color:rgba(255,255,255,.8) !important;}
.black-bg  p {color:#fff !important;}
.black-bg .terms  label {color:#fff !important;}
.black-bg  .form-control{color:#fff !important;}
.light-bg .wf-form-component .form-control:focus {border-color:#000 ;}
.light-bg .wf-form-component .form-control{color:#000;}
.light-bg .wf-form-component .form-control::placeholder{color:#000;}


.light-bg .wf-form-component #formsubmit, .light-bg-full .wf-form-component #formsubmit, .no-bg .wf-form-component #formsubmit {color:#000 !important;}
.light-bg .wf-form-component .form-control, .light-bg-full .wf-form-component .form-control{color:#000;}
.light-bg .wf-form-component .form-control:focus, .light-bg-full .wf-form-component .form-control:focus {border-color:var(--primary-colour) !important;}
.dark-bg .terms  label {color:#fff;}
.dark-bg .wf-form-component .form-control{color:#fff !important;}
.dark-bg .wf-form-component #formsubmit {color:#fff !important;}
.wf-form-component label.error {color:red;}
.form-layout .inner{max-width:100% !important; width:100%  !important}
.wf-form-component  select {
	font-weight:300 !important;
	font-family: inherit !important;
}
  .wf-form-component  select option {
	color: black;
	font-style:italic;
	
  }
  .wf-form-component select:has(option:checked:first-child){
	font-style:normal;
	color:#798989 !important;
  }
  .form-layout .no-gutters .container.no-gutters  {
	padding:0px;
  }
  .form-layout .no-gutters .container.no-gutters .row  {
	margin-left: -15px !important;
	margin-right: -15px !important;
	padding: 0px;
  }
  .form-layout .form-control{
	max-width:100%;
  }
  .form-layout textarea.form-control{
	height:60px !important
  }
  .form-layout form p {margin-top:0px !important;}
/*Thank You*/
@media screen and (min-width:768px){
	.wf-form-component .row {margin-bottom:15px;}
	.thank-you-header, .no-herobg {
		padding:52px 0px;
	}
}
@media screen and (max-width:767px){
	.wf-form-component .row > div {margin-bottom:15px;}
	.thank-you-header, .no-herobg {
		padding:0px;
		height:92px;
	}
}
.connect-options .box{    
    padding: 0px;
    background: #f8f8f8;
    padding: 10px 15px;
    border-bottom: 3px solid var(--primary-colour);
    border-radius: 5px;}
/* Static content*/
.static-content h2, .static-content h3, .static-content h4, .static-content h5, .static-content h6 {
	margin-bottom: 15px;
    color: #000;
    margin-top: 25px;
	font-weight:600;
}
.static-content p, .static-content ul {margin-bottom:15px}
.static-content p strong, .static-content p b {font-weight:600;}
.static-content ul li {margin-bottom:10px}
.static-content ul li:last-child{
	margin-bottom:0px;
}

/*Feedback Form*/
.feedback-form textarea.form-control, .feedback-form input.form-control{
border:1px solid #dfdfdf !important;
width:100%;
padding:10px !important;

}
.feedback-form button, .feedback-form button:focus, .feedback-form button:focus-visible{
	border:1px solid var(--primary-button) !important;
	background:var(--primary-button) !important;
	color:var(--primary-button-text) !important;
	min-width:200px !important;
}

.feedback-form .zf-multiAttType {display:inline-flex; align-items: center; gap:10px; margin-right:20px;}
.feedback-form .zf-multiAttType input {width:auto !important;}
.feedback-form .row {margin-bottom:15px;}
.feedback-form label.error {color:red; font-size:14px;}
@media screen and (max-width:640px){
	.feedback-form .zf-multiAttType:first-child {margin-top:0px;}
	.feedback-form .zf-multiAttType {display:block !important; margin-left:0px !important; margin-top:5px;}
}

/*Mobile bottom CTAs*/
@media screen and (min-width:1024px){
	.bottom_cta {
		display:none;
	}
}
@media screen and (max-width:1023px){
	.bottom_cta {
		position:fixed;
		bottom:0px;
		left:0px;
		width:100%;
		
		display:flex;
		align-items: center;
	}
	.bottom_cta a {
	flex:1;
	margin:0px;
	padding: 10px 0px !important;
	font-size: .875rem;
	}
	.bottom_cta .button.cta {
		background:#000  !important;
		border-color:#000  !important;
		color:#fff !important;
	}
	.button.call i {
		animation: ring 1s infinite;
	}
}

@keyframes ring {
	0% { transform: rotate(0deg); }
	10% { transform: rotate(15deg); }
	20% { transform: rotate(-10deg); }
	30% { transform: rotate(15deg); }
	40% { transform: rotate(-10deg); }
	50% { transform: rotate(10deg); }
	60% { transform: rotate(-5deg); }
	70% { transform: rotate(5deg); }
	80% { transform: rotate(-3deg); }
	90% { transform: rotate(3deg); }
	100% { transform: rotate(0deg); }
}

/*Need Help Modal*/
.need-help {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.need-help .form-overlay {
    background: #000;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99;
    opacity: .5
}
.need-help.default .modal-inner{
	position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
	left:50%;
	width:100%;
	z-index: 100;
	max-width: 800px;
}
.need-help .title {
    font-family: "EB Garamond", serif;
}
.need-help.default .modal-inner a {color:#fff;}
.need-help .modal-dialog {
    max-width: 700px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    background: var(--secondary-color);
    color: #fff;

    min-height: calc(100% - 1.5rem* 2);
    z-index: 100;
}

.need-help .modal-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100%; */
    padding: 15px;
	
}
.need-help .modal-content {
	position:relative;
}
.need-help .modal-inner .close {
	background: url('../images/cross-circle.svg') no-repeat center center;
	width:18px;
	height:18px;
	display:block;
	position:absolute;
	right:-10px;
	top:-10px;
	z-index:101;
	cursor:pointer;
}

.need-help .image-wrapper img {
    position: absolute;
    right: 0px;

}
.need-help form .form-control{color:#fff !important;}
.need-help form .form-control:focus{border-color:#fff !important;}
.need-help form .form-control{color:#fff !important;}
.need-help form .form-control::placeholder {color:rgba(255,255,255,.5);}

@media screen and (min-width:576px) {
    .need-help .modal-dialog {

        border-radius: 25px;
        padding: 25px;
    }

    .need-help .content-wrapper {
        padding: 0px 0px 0px 20px;
    }

    .need-help .content-wrapper .title {
        font-size: 48px;
    }

    .need-help .content-wrapper .description {
        font-size: 16px
    }

    .need-help .image-wrapper img {
        bottom: -25px;

    }
}

@media screen and (max-width:575px) {
    .need-help .modal-dialog {

        border-radius: 15px;
        padding: 15px;
    }

    .need-help .image-wrapper img {
        bottom: -15px;
    }

    .need-help .content-wrapper {
        padding: 0px;
    }

    .need-help .content-wrapper .title {
        font-size: 24px;
    }

    .need-help .content-wrapper .description {
        font-size: 12px
    }

    .need-help .content-wrapper .button {
        font-size: 12px;
		padding: 8px 20px !important;
    }
}

.page-id-1346 #left-header {display:none}

/*blog*/
.post-item .box{padding:0px;
background:transparent;}
.post-item .box .bottom a {border: 0 !important;
    padding: 0 !important;
    color: var(--primary-button) !important;
    background: 0 0 !important;
    text-transform: capitalize !important;}

	.post-item .box .card-image {
		height: 280px;
		width: 100%;
		position: relative;
		margin-bottom: 15px;
	}
	.post-item .box .card-image img {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.single #single-post {padding:0px;}
.single .single-content {
	max-width:900px;
	margin:0px auto;
	float:none;
}
.single .single-hero {text-align:center;}
.single .single-hero .post-meta {
	color:#fff;
	z-index: 1;
	
}



@media screen and (min-width:768px){
	.single .single-thumb {
 		 height: 500px;
		overflow: hidden;
		position: relative;
		 margin-bottom: 0px !important;
		}
	
	.single .single-thumb .scroll-image {
		width: 100%;
		will-change: transform;
		transition: transform 0.1s linear;
	}
}

@media screen and (max-width:767px){
	.single .single-thumb {
 		height: 350px;
        margin-bottom: 0px !important;
		position:relative;
	}
	.single .single-thumb .scroll-image {
		position:absolute;
		left:0px;
		top:0px;
		width:100%;
		height:100%;
		object-fit: cover;
		transform:none !important
	}
}

       

.single .container-fluid {padding:0px;}



.single-thumb .scroll-image {
  height: auto;
  max-width: 100%;
  will-change: transform;
}


.single .related-posts {
	background:#f9f9f9;
	clear:both;
}
	.pagination .page-numbers.current {border-radius:2px; background:var(--light-bg) !important}
	.pagination .page-numbers:not(.prev, .next) {border-radius:2px;
	    width: 32px;
    height: 32px;
	}
	.pagination .prev, 	.pagination .next {text-indent:-99999px; width:32px; height:32px; position:relative;}
	.pagination .page-numbers {color:#444}
	.pagination .prev:before{
		content:"\f061";
		width:32px;
		height:32px;
		position:absolute;
		font-family: "Font Awesome 6 Brands";
		font-weight: 900;
	}
	@media screen and (max-width:767px){
	.archive .bg-image {
		align-items: end;
	}
}
#ez-toc-container {border:0px; width:100%}

	/*search-page-form*/
	.search-result .image-wrap {max-width:120px;}

	/*events and press releases*/
	.events-layout .box{background:transparent; padding:0px; height:100%;}
	.events-layout .card {padding-left:10px; padding-right:10px;}
	.events-layout .box .card-image { width:100%; position:relative;}
	.events-layout .box .card-image img {position:absolute; left:0px; top:0px; width:100%; height:100%; object-fit: cover;}
	.events-layout .left .box  .card-content {padding:10px 0px 0px 0px;}
	.events-layout .event-meta .item {display:inline-flex; gap:5px; align-items: center;}
	.events-layout  .right  .box .card-content {padding:0px;}
	.events-layout .box .block-title {margin-top:10px;}
	.events-layout .box .card-content {flex: 1 1 auto;}
	.events-layout .box .bottom a {
		border:0px !important;
		padding:0px !important;
		color:var(--primary-button) !important;
		background:transparent !important;
		text-transform:capitalize !important
	}
	

	.events-layout .right > .row {gap:10px 0px;}

	.events-layout .box .bottom a:hover{
		background:none !important;
		color:#000 !important;
	}
	@media screen and (min-width:992px){
		.events-layout .events-grid {
			display: grid;
			grid-template-columns: repeat(12, minmax(0, 1fr));
			gap: 20px;
		}
		.events-layout .events-grid .box {
	        grid-column: span 6 / span 6;
		}
		.events-layout .left {
		padding-right:0px;
	}
		.events-layout .right > .right {margin-top:-20px;}


	}
	@media screen and (min-width:768px) and (max-width:991px){
		.events-layout .events-grid {
			display: grid;
			grid-template-columns: repeat(12, minmax(0, 1fr));
			gap: 20px;
			margin-top:20px;
		}
		.events-layout .events-grid .box {
	        grid-column: span 6 / span 6;
		}

	}
	@media screen and (min-width:768px){
	
	.events-layout .left .box .card-image{ height:420px}
	.events-layout .right .box .card-image{ height:150px}
	
	}
	@media screen and (max-width:767px){
		.events-layout .events-grid {
		display:flex;
		gap: 20px;
			margin-top:20px;
			flex-direction: column;
		}
		
		.events-layout .box .card-image {height:250px;}
	}
.single-events .videos .video-container {
		margin:0px;

}
.single-events .videos {		
	position:relative;
}
.single-events .videos:before{
	content:'';
	width:100%;
	height:100%;
	position: absolute;
	left:0px;
	top: 0px;
	z-index:1;
}
.single-events .videos .container {
    max-width: 100%;
    padding: 0px;
}
.single-events .gallery-image {padding:0px 10px; margin-bottom: 0px;}
.single-events .gallery-image img {height:400px}
@media screen and (min-width: 992px) {
 .single-events .gallery-image {
               width: 25% !important;
        max-width: 25% !important;
        min-width: 25% !important;
    }
}
@media screen and (min-width: 576px) and (max-width: 991px) {
 .single-events .gallery-image {
               width: 33.33% !important;
        max-width: 33.33% !important;
        min-width: 33.33% !important;
    }
}

@media screen and (max-width: 575px) {
    .single-events .gallery-image {
               width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
	.single-events .text-box .co  {		
		margin-bottom: 0px;
		margin-top: 0px;
	}
	.single-events .text-box .co:last-child  {		
		
	}
}

/*Featured Post*/
.featured-post .container {
	/* max-width:800px; */

}
.featured-post .container {
	width:100%;
	position:relative;
	max-width:990px;
}
.featured-post .container .featured-image img {
	width:100%;
	height:100%;
	object-fit: cover;
	position:absolute;
}
@media screen and (min-width:992px){
.featured-post .container .featured-image {
	height:450px;
}
}
@media screen and (max-width:991px){
.featured-post .container .featured-image {
	height:400px;
	position:relative;
}
}
/*SEO Content Read More*/
 .seo-content .content-preview.text-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 10;
  }
  .seo-content .content-preview.text-clamp,
  .seo-content .content-preview.text-unclamp {
    transition: all 0.4s ease;
  }
 .seo-content .content-preview.text-unclamp {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
  }
  .seo-content .content-preview .read-more {
    display: block;
    margin-top: 1.2em;
    text-align: center;
    font-weight: bold;
    color: #1a237e;
    cursor: pointer;
    user-select: none;
    border: none;
    background: none;
    font-size: 1em;
    padding: 0;
  }

  /*Table of content*/
  .table-of-contents {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}
.table-of-contents .toc-title {
	display:flex; justify-content: space-between; align-items: center;
	margin-bottom:0px;
	cursor:pointer;
}
.table-of-contents .toc-title .arrow {
	transition:.3s all;
}
.table-of-contents .toc-title .arrow.show {
	
	transform:rotate(180deg);
}
.table-of-contents h2 {
    margin-top: 0;
}
.table-of-contents ul {
    list-style-type: none;
    padding-left: 0;
	display:none;
	margin-left:0px;
	margin-top:15px;
}
.table-of-contents li {
    margin: 5px 0;
}
.table-of-contents li.toc-level-2, .table-of-contents li.toc-level-2 strong {
font-weight: 500;
}

.table-of-contents li.toc-level-3 {
	padding-left:10px;
}
.table-of-contents a {
    text-decoration: none;
    color: var(--secondary-color);
}
.table-of-contents a:hover {
    text-decoration: underline;
	color:var(--primary-color)
}

/*FAQ module*/
.faqs.tab-slider-wrapper {
	position: relative;
}
 .faq_filter {
	background: #fff;
    padding: 0;
    opacity: 1;
    visibility: visible;
    top: -100%;
    z-index: 11;
    padding: 0;
   
    transition: top .4s, opacity .4s;
	width:100%;
}
body.scroll-down .faq_filter.sticky {
    top: 0;
    position: fixed !important;
	    box-shadow: 0px 2px 4px rgba(0, 0, 0, .1);
}
body.scroll-down .faq_filter.sticky .icon {display:none}
body.scroll-down .faq_filter.sticky  a {height:inherit !important; border:0px; padding:10px 15px !important}
body.scroll-down .faq_filter.sticky a.active:after {opacity:1; width:100%}

.faq_filter {display:flex;  justify-content: center; overflow-x:auto; overflow-y:hidden; margin-bottom:20px;background:#fff !important; border:0px; box-shadow: none;}
.faq_filter .links-wrapper {gap:10px}
@media screen and (min-width:768px){
	.faqs .faq_filter {justify-content: center;}
}
@media screen and (max-width:767px){
	.faqs .faq_filter {justify-content: start;}
}

.faq_filter .link a{font-weight:400;padding:10px; color:#000;  border:1px solid rgba(0,0,0,.10); min-width: 150px; display:flex; align-items: center; flex-direction: column; padding-left:15px; padding-right:15px; cursor:pointer;     position: relative;}
.faq_filter .link a.active:after{
	    background: var(--primary-colour) !important;
    position: absolute;
    bottom: 4px;
    left: 0;
    height: 3px;
    content: '';
	opacity:0;
	transition:.3s all;
}
.faq_filter .link span {display: inline-flex;     white-space: nowrap;}

.faq_filter .link .icon {width:50px; height:50px; background-size:auto 100%; background-position: center; background-repeat: no-repeat; margin-bottom:5px  }
.faq_filter .link .icon.safedeposit {background-image:url('../images/safe-deposit.webp')}
.faq_filter .link .icon.booking {background-image:url('../images/booking.webp')}
.faq_filter .link .icon.branch {background-image:url('../images/branch.webp')}
.faq_filter .link .icon.business {background-image:url('../images/business.webp')}
.faq_filter .link .icon.security{background-image:url('../images/contract.webp')}


.faq_filter .link a.active { border-color:var(--dark-bg); }

.faqs .faq-category {padding-top:60px;}
.faqs .faq-category .faq-items {  background:#fff !important; border:1px solid var(--light-bg) !important;padding:20px; display:flex; gap:20px; flex-direction: column;    box-shadow: 0px 2px 4px rgba(0, 0, 0, .1); } 
.faqs .faq-category .faq-items a:hover {text-decoration: underline; }
.faqs .short_answer {  background: var(--light-bg) !important; border:1px solid var(--light-bg) !important;padding:20px;margin-bottom:20px; width:100%; } 
.faqs .short_answer p, ul{margin-bottom:15px; margin-left:0px;}
.faqs .short_answer li{margin-bottom:10px; line-height:1.2}
.faqs .short_answer p {line-height:1.2;}
.faqs .long_answer { width:100%;} 
.list_cards ul {
  display: grid;
   grid-template-columns: repeat(2, 1fr); /* exactly 2 per row */
  gap: 20px;
  grid-auto-rows: 1fr; /* all rows equal height */
   align-items: stretch; /* equal height per row */
}

.list_cards ul li {
  border: 1px solid var(--secondary-color);
  padding: 15px;
  border-radius: 8px;
  background: #fff;
  display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0px !important;
    text-align: center;
    align-items: center;
}
.list_cards ul li:last-child:nth-child(odd) {
  grid-column: span 2;   /* make it take full row */
  justify-self: center;  /* center horizontally */
  max-width: 50%;        /* optional: keep same width as others */
}

/* Mobile responsive: stack in 1 column */
@media (max-width: 768px) {
.list_cards  .inner {
	max-width:100% !important;
}
}
