/*
 Theme Name:   ParamountPress
 Theme URI:    http://localhost/website
 Description:  ParamountPress - Paramounts own Wordpress Theme
 Author:       Paramount Digital
 Author URI:   http://paramountdigital.co.uk
 Template:     generatepress
 Version:      1.0.0
*/

/* colour variables */
:root {
	--green: #8daa99;
	--darkgreen: #6e7973;
	--blue: #cdd9d9;
	--lightgrey: #F4F4F4;
}

@font-face {
	font-family: 'Gilroy Light';
	src: url('../../themes/paramount-press/includes/fonts/gilroy-light.otf');
	src: url('../../themes/paramount-press/includes/fonts/gilroy-light.otf') format('OpenType'),
		 url('../../themes/paramount-press/includes/fonts/gilroy-light.woff2') format('woff2'),
         url('../../themes/paramount-press/includes/fonts/gilroy-light.woff') format('woff'),
         url('../../themes/paramount-press/includes/fonts/gilroy-light.ttf') format('truetype');
	font-display: swap;
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gilroy ExtraBold';
	src: url('../../themes/paramount-press/includes/fonts/gilroy-extrabold.otf');
	src: url('../../themes/paramount-press/includes/fonts/gilroy-extrabold.otf') format('OpenType'),
		 url('../../themes/paramount-press/includes/fonts/gilroy-extrabold.woff2') format('woff2'),
         url('../../themes/paramount-press/includes/fonts/gilroy-extrabold.woff') format('woff'),
         url('../../themes/paramount-press/includes/fonts/gilroy-extrabold.ttf') format('truetype');
	font-display: swap;
	font-weight: normal;
	font-style: normal;
}

html {
  	box-sizing: border-box;
	font-size: 14px;
	scroll-behavior: smooth;
}
h1, h2, h3, h4, h5 {
	float: left;
	clear: both;
	width: 100%;
	font-family: 'Gilroy Light'; 
	font-weight: bold;
}
*, *:before, *:after {
	box-sizing: inherit;
	min-height: 0;
	min-width: 0;
}
a, a:visited {
	transition: color 0.3s ease-in-out;
}
a:hover, a:focus, a:active {
	transition: color 0.3s ease-in-out;
}
textarea {
	height: 165px;
}
blockquote {
	float: left;
	width: 100%;
}
.grecaptcha-badge { 
    visibility: hidden;
}
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    line-height: 2em;
	position: relative;
	font-family: 'Gilroy Light', -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";;
}
ul, ol {
	margin: 0 0 1.5em 2em;
}
small {
	font-size: 85%;
}

/* fluid font typography */
body { 
	font-size: 14px;
}
h1, .page-hero h1, .page-hero h2, .page-hero h3 {
	font-size: 28px;
}
h2, .content h1 {
	font-size: 26px;
}
h3, h4 {
	font-size: 24px;
}
h5 {
	font-size: 20px;
	font-family: 'Gilroy Light';
}
@media screen and (min-width: 320px) {
  h1, .page-hero h1, .page-hero h2, .page-hero h3 {
	font-size: calc(28px + 6 * ((100vw - 320px) / 680));
  }
  h2, .content h1 {
	font-size: calc(26px + 6 * ((100vw - 320px) / 680));
  }
  h3, h4 {
	font-size: calc(24px + 6 * ((100vw - 320px) / 680));
  }
  h5 {
	font-size: calc(20px + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 1000px) {
  h1, .page-hero h1, .page-hero h2, .page-hero h3 {
	font-size: 50px;
  }
  h2, .content h1 {
	font-size: 32px;
  }
  h3, h4 {
	font-size: 28px;
  }
  h5 {
	font-size: 22px;
  }
}
b, strong {
	font-family: 'Gilroy ExtraBold';
}

/* top bar */
.top-bar {
    border-bottom: 1px solid #F4F4F4;
}
.top-bar address {
	margin: 0;
}
.top-bar .inside-top-bar {
	line-height: 1.8;
}
.top-bar .inside-top-bar .widget {
	order: unset;
	margin-left: 0;
}
.top-bar .inside-top-bar .widget a {
	margin-left: 12px;
}
.top-bar .widget:first-child {
	margin-right: auto;
}
.top-bar a, .top-bar a:visited, .top-bar:before, .top-bar a:before, .top-bar .short-address:before {
	color: #cdcdcd;
}
address {
	font-style: normal;
}
@media (max-width: 575px) {
	.top-bar {
		display: none;
	}
}

/* modal popup */
/* modal */
.modal {
	display: none;
}
.modal.is-open {
	display: block;
    position: relative;
    z-index: 99999;
}
.modal-overlay {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	padding: 20px;
}
.modal .modal-container {
	background-color: #fff;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
	text-align: left;
	border-radius: 8px;
	box-shadow: 0px 4px 10px 0px rgba(9, 61, 244, 0.04);
}
.modal .modal-container .modal-content {
	display: inline-block;
    width: 100%;
    padding: 0 48px 0;
	font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
	padding: 32px;
}
.modal-content form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.modal-content form label {
	margin-bottom: 1.5em;
}
.modal-content form label.accept {
	cursor: pointer;
}
.modal-content form label input, .modal-content form label textarea {
	width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #C2C2C2;
    color: #C2C2C2;
}
.modal-content form label textarea {
	height: 100px;
}
.modal-content form label input[type="checkbox"] {
	display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-top: 4px;
}
.modal-content form label.col-md-4 {
	margin: 0;
    flex: 1 0 100%;
    max-width: 100%;
    margin-top: 20px;
}
.modal .wpcf7-response-output {
	margin: 0;
}
.modal button[data-micromodal-close] {
	margin: auto;
    float: unset;
    display: block;
    padding: unset;
    text-decoration: underline;
    color: var(--green);
    background-color: transparent;
}
.modal-content form .wpcf7-list-item-label {
	display: inline-block;
    font-size: 14px;
    line-height: 22px;
    width: calc(100% - 26px);
    margin-left: 10px;
}
.modal-content form label input[type="submit"] {
	border: none;
    background-color: #8daa99;
	background-color: var(--green);
    color: #fff;
    font-weight: bold;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.modal-content form label input[type="submit"]:hover {
	background-color: #6e7973;
	background-color: var(--darkgreen);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.modal-content form label input:active, .modal-content form label input:focus,
.modal-content form label textarea:active, .modal-content form label textarea:focus {
	border-bottom: 2px solid #8daa99;
	border-bottom: 2px solid var(--green);
}

/* call button side */
.call-side-btn {
	position: fixed;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: #8daa99;
    border-radius: 50%;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-box-shadow: 0px 3px 5px -3px #3d3d3d;
	        box-shadow: 0px 3px 5px -3px #3d3d3d;
	z-index: 999;
}
.call-side-btn:hover {
	background: #6e7973;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-box-shadow: 0px 3px 5px 0px #3d3d3d;
	        box-shadow: 0px 3px 5px 0px #3d3d3d;
}
.call-side-btn:hover .corner-menu {
	-webkit-transform: rotate(10deg);
	    -ms-transform: rotate(10deg);
	        transform: rotate(10deg);
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.call-side-btn .corner-menu {
	display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0;
	height: 100%;
}
.call-side-btn .corner-menu i {
	font-size: 26px;
}

/* popup contact button */
.popup-btn {
	position: fixed;
	top: 25%;
	right: 0;
    z-index: 999;
    color: #fff !important;
    background: #8daa99;
	background: var(--green);
	border-top-left-radius: 8px;
    border-top-right-radius: 8px;
	font-weight: bold !important;
	letter-spacing: 1px;
	padding: 14px 26px;
    font-family: inherit;
    font-size: 15px;
	transform-origin: bottom right;
	transform: translatey(-50%) rotate(-90deg);
}

/* readmore */
.readmore {
	overflow: hidden;
	max-height: 17.5em; /* custom sizing */
	transition: height 0.5s linear;
	float: left;
}
span.readmore + a[data-readmore-toggle] {
	float: left;
	text-align: right;
	position: relative;
	padding-right: 20px;
}
/* span.readmore + a[data-readmore-toggle]:before {
	content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255,255,255,1)), to(rgba(255,255,255,0)));
    background: -o-linear-gradient(bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	-webkit-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
span.readmore[aria-expanded="true"] + a[data-readmore-toggle]:before {
	height: 0;
	-webkit-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
} */
span.readmore + a[data-readmore-toggle]:after {
	content: "\f078";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translatey(-50%);
	    -ms-transform: translatey(-50%);
	        transform: translatey(-50%);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
span.readmore[aria-expanded="true"] + a[data-readmore-toggle]:after {
	-webkit-transform: translatey(-50%) rotate(180deg);
	    -ms-transform: translatey(-50%) rotate(180deg);
	        transform: translatey(-50%) rotate(180deg);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.faq-section span.readmore + a[data-readmore-toggle]:before {
	display: none;
}
/* .tab-detail.tab-readmore.active {
	max-height: 41.5em;
} */
.tab-detail + a[data-readmore-toggle] {
	background-color: #6e7973;
	background-color: var(--darkgreen);
    float: left;
    color: #fff !important;
    padding: 0.3em 1.8em;
    border-radius: 1.5em;
    font-weight: bold;
    position: relative;
	width: auto !important;
	border: 2px solid;
}
.tab-detail + a[data-readmore-toggle] + .content-button {
	background: #fff;
    color: #6e7973 !important;
	color: var(--darkgreen) !important;
    font-weight: bold;
}

.call-to-action-bar .readmore {
	max-height: 8em;
}
.call-to-action-bar .readmore + a[data-readmore-toggle] {
	color: #fff;
	text-align: left;
	padding-right: 0;
}
.call-to-action-bar article a {
	color: var(--darkgreen);
}
/* .call-to-action-bar .readmore + a[data-readmore-toggle]:before {
	background: -moz-linear-gradient(0deg, rgba(157,179,177,1) 0%, rgba(157,179,177,0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(157,179,177,1) 0%, rgba(157,179,177,0) 100%);
	background: linear-gradient(0deg, rgba(157,179,177,1) 0%, rgba(157,179,177,0) 100%);
} */
.call-to-action-bar .readmore + a[data-readmore-toggle]:after {
	position: relative;
	margin-left: 10px;
    margin-right: 10px;
	position: absolute;
    right: auto;
    top: auto;
	-webkit-transform: translate(0);
	    -ms-transform: translate(0);
	        transform: translate(0);
}
.call-to-action-bar .readmore[aria-expanded="true"] + a[data-readmore-toggle]:after {
	-webkit-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}

/* page hero */
.page-hero {
	z-index: 1;
	width: 100%;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	color: #fff;
	position: relative;
	min-height: 35vh;
}
.page-hero.full {
	min-height: calc(100vh - 181px);
	max-height: 1800px;
}
.page-hero.full.has-announcement {
	min-height: calc(100vh - 230px);
    max-height: 1800px;
}
.page-hero > .hero-slide {
	height: inherit;
	width: 100%;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
}
.page-hero > .hero-slide:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	top: 0;
	left: 0;
	background: #3B4647;
	opacity: 0.3;
}
.page-hero .hero-slide .container {
	height: 100%;
	-ms-flex-line-pack: center;
	    align-content: center;
	padding: 0 15px;
	z-index: 1;
	padding-top: 2em;
	padding-bottom: 2em;
}
.page-hero .hero-slide .container.centre-content {
	text-align: center;
}
.page-hero .hero-slide .banner-content {
	width: 100%;
}
.page-hero .banner-content {
	font-size: 1.5em;
	font-weight: bold;
}
.page-hero:not(.home) .banner-content p:last-child {
	margin-bottom: 0;
}
.banner-icons-outer {
	clear: both;
	float: left;
	width: 100%;
}
.banner-cta {
	text-align: center;
	margin: 2em auto 2em auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	-webkit-box-pack: space-evenly;
	    -ms-flex-pack: space-evenly;
	        justify-content: space-evenly;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.banner-cta span {
	font-size: 1.1em;
	border-bottom: 2px solid;
}
.banner-cta .content-button {
	float: right;
	background-color: #fff;
	border-color: #fff;
	color: #6e7973 !important;
	color: var(--darkgreen) !important;
}
.banner-icons-outer .banner-icons-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	background-color: #fff;
	margin: auto;
	padding: 0;
	border-radius: 1em;
	overflow: hidden;
	max-width: 900px;
}
.banner-icons-container .banner-icon {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding: 1em;
	color: #333;
	font-weight: bold;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.banner-icons-container .banner-icon:hover {
	background-color: #cdd9d9;
	background-color: var(--blue);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.banner-icons-container .banner-icon figure {
	width: 100%;
	float: left;
	clear: both;
}
.banner-icons-container .banner-icon span {
	line-height: 1.5;
}
.banner-icon figure img {
	width: auto;
	height: 75px;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 991px) {
	.banner-icons-container .banner-icon {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 25%;
		        flex: 1 0 25%;
	}
	.banner-cta span {
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
	}
	.banner-icon figure img {
		width: auto;
    	height: 65px;
	}
}
@media (max-width: 575px) {
	.banner-icons-container .banner-icon {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 33.33%;
		        flex: 1 0 33.33%;
	}
	.banner-icon figure img {
		width: auto;
    	height: 50px;
	}
	.banner-icons-container .banner-icon {
		line-height: 1.5;
	}
	.banner-cta {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.banner-cta span {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%;
		margin-bottom: 1.5em;
	}
	.page-hero .banner-content {
		font-size: 1.3em;
	}
}
@media (max-width: 400px) {
	.banner-icons-container .banner-icon figure img {
		width: 42px;
    	height: 42px;
	}
	.banner-icons-container .banner-icon {
		font-size: 0.9em;
		padding: 0.5em;
	}
	.page-hero .banner-content {
		font-size: 1.2em;
	}
}
.header-testimonials {
	background-color: #652880;
	min-height: 70px;
	max-height: 70px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.header-testimonials .small-testimonial {
	color: #fff;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.header-testimonials .small-testimonial span {
	max-width: 768px;
    overflow: hidden; 
	float: left;
	line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
	font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
}

/* funeral fair */
.page-hero .hero-slide .container {
	position: relative;
}
.page-hero .hero-slide .container.centre-content {
	height: 100%;
}
.page-hero-badge {
	position: absolute;
    top: 0;
    right: 0;
	position: absolute;
    padding: 6px;
    background: #fff;
    margin-top: 10px;
    max-width: 150px;
	border-radius: 4px 4px 0 0;
}
.page-hero-badge-rated {
	top: 82px;
    right: 0;
    position: absolute;
	max-width: 150px;
	background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    top: 10px;
}
.page-hero-badge-rated img {
	display: block;
}
.page-hero-badge-rated img.banner-green-icon {
	max-width: 110px;
    margin: 8px 0;
}
@media (max-width: 768px) {
	.page-hero .hero-slide .container {
		padding-top: 7em;
	}
	.page-hero-badge {
		left: 50%;
    	-webkit-transform: translateX(-50%);
    	    -ms-transform: translateX(-50%);
    	        transform: translateX(-50%);
		border-radius: 4px;
	}
	.page-hero-badge-rated {
		position: relative;
		top: auto;
		margin: 0;
		left: 50%;
		transform: translateX(-50%);
	}
}

/* reviews bar */
.review-description {
	float: left;
    width: 100%;
    padding: 2em 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
}
.review-description .main-heading {
	width: auto;
	margin: 0;
	font-size: 24px;
	max-width: 80%;
}
.review-description .content-buttons {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1; 
	display: -webkit-box; 
	display: -ms-flexbox; 
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
	-ms-flex-line-pack: center;
	    align-content: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
@media (max-width: 991px) {
	.review-description .content-buttons {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		padding: 2em 0 0;
	}
	.review-description .main-heading {
		max-width: 100%;
	}
}

/* breadcrumbs */
.breadcrumbs {
	width: 100%;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #8daa99;
	background-color: var(--green);
	color: #D0DCD5;
	font-weight: bold;
}
.breadcrumbs a {
	color: #D0DCD5
}

/* latest announcement */
.latest-announcement-header {
	padding: 5px 0px;
    text-align: center;
    background: #cdd9d9;
    background: var(--blue);
}
.latest-announcement-header a {
	color: #3A3A3A;
	font-weight: bold;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	font-size: 1.1em;
}
.latest-announcement-header a:hover {
	color: #fff;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.latest-announcement {
	padding-top: 2em;
    padding-bottom: 0;
}
.latest-announcement header {
	float: left;
    width: 100%;
    text-align: center;
	position: relative;
    padding: 1em;
    font-size: 1.3em;
	background-color: #cdd9d9;
    background-color: var(--blue);
    font-weight: bold;
    border-top-right-radius: 2em;
    border-bottom-left-radius: 2em;
	cursor: pointer;
}
.latest-announcement header:after {
	content: "\f067";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 1.5em;
    font-size: 1.2em;
    color: #ffffff;
    font-weight: 900;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.latest-announcement article {
	display: none;
    float: left;
    width: 100%;
    background-color: #cdd9d9;
    background-color: var(--blue);
    border-bottom-right-radius: 1em;
    border-bottom-left-radius: 1em;
    padding: 1em 1em 1em 1em;
    background: #f4f4f4;
    margin-top: 2em;
    border-top-right-radius: 2em;
    border-bottom-left-radius: 2em;
}
.latest-announcement .container {
	padding-left: 15px;
	padding-right: 15px;
}
.latest-announcement header.accordion-open:after {
	-webkit-transform: translateY(-50%) rotate(45deg);
	    -ms-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
    color: #6e7973;
    color: var(--darkgreen);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
	.latest-announcement header:after {
		right: 0.75em;
	}
	.latest-announcement i {
		margin-left: -0.75em;
	}
}

/* content buttons */
.content-buttons {
	float: unset;
    width: 100%;
	display: inline-block;
}
a[data-readmore-toggle] + .content-buttons {
	margin-top: 1.5em;
}
.content-button {
	background-color: #6e7973;
	background-color: var(--darkgreen);
	float: unset;
	display: inline-flex;
	color: #fff !important;
	padding: 0.3em 1.8em;
	border-radius: 1.5em;
	font-weight: bold;
	position: relative;
	border: 2px solid #6e7973;
	border: 2px solid var(--darkgreen);
}
.post .read-more-container a {
	background-color: #6e7973;
	background-color: var(--darkgreen);
	float: left;
	color: #fff !important;
	padding: 0.3em 1.8em;
	border-radius: 1.5em;
	font-weight: bold;
	position: relative;
	border: 2px solid #6e7973;
	border: 2px solid var(--darkgreen);
}
.content-button:not(:first-child) {
	margin-left: 1em;
}
.tab-detail + a.content-button {
	margin-left: 0;
}
.content-button:nth-of-type(2n) {
	background-color: #8daa99;
	background-color: var(--green);
	border: 2px solid #8daa99;
	border: 2px solid var(--green);
}
.tab-detail + .content-button:nth-of-type(2n) {
	background-color: #6e7973;
	background-color: var(--darkgreen);
	border: 2px solid #6e7973;
	border: 2px solid var(--darkgreen);
}
.content.full-size-content .content-right {
	margin: auto;
	margin-top: 2em;
}
.content.full-size-content .content-right .right-content-block {
	margin: auto;
}
.content-button:before {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
    font-weight: 900;
	position: absolute;
	left: 0;
	opacity: 0;
	top: 50%;
	-webkit-transform: translate(-0.8em, -50%);
	    -ms-transform: translate(-0.8em, -50%);
	        transform: translate(-0.8em, -50%);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.content-button:hover:before {
	opacity: 1;
	-webkit-transform: translate(0.7em, -50%);
	    -ms-transform: translate(0.7em, -50%);
	        transform: translate(0.7em, -50%);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* blog */ 
article.post .inside-article .entry-summary {
	margin: 1em 0;
}
article.post .inside-article .entry-meta .posted-on {
	margin: 1em 0;
    float: left;
    width: 100%;
    clear: both;
	color: #6e7973;
    color: var(--darkgreen);
}
article.post .inside-article .entry-title a {
    color: #3a3a3a;
}

/* content downloads */
.content-downloads {
	float: left;
	width: 100%;
}
.content-downloads a {
	float: left;
	position: relative;
    width: 100%;
    background-color: #F4F4F4;
    padding: 1.5em;
    border-left: 8px solid #8daa99;
	border-left: 8px solid var(--green);
    margin-bottom: 1em;
    color: #7F7F7F;
    font-size: 1.2em;
    font-style: italic;
    font-family: 'Gilroy ExtraBold';
    letter-spacing: 0.5px;
}
.content-downloads a:after {
	content: "\f33d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    position: absolute;
    right: 1em;
    font-size: 1.4em;
    color: #8daa99;
	color: var(--green);
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
@media (max-width: 575px) {
	.content-downloads a {
		padding: 1em 2.5em 1em 1.5em;
		font-size: 1.1em;
	}
}

/* social media icons */
.social-icons {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-left: auto;
}
.social-icon {
    font-size: 24px;
	font-size: 0.8em;
    margin-left: 5px;
    margin-right: 5px;
	transition: color 0.3s ease-in-out;
}
.social-icon:hover {
	color: #fff !important;
	transition: color 0.3s ease-in-out;
}


/* faqs */
.faq-section {
	background-size: cover !important;
	background-position: bottom !important;
	background-attachment: fixed !important;
	position: relative;
}
.faq-section:before {
	background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.faq-section .container {
	position: relative;
	z-index: 1;
}
.faq-section header {
	text-align: center;
	width: 100%;
}
.faq-section header span.readmore {
	width: 60%;
	margin-left: 20%;
	margin-right: 20%;
	max-height: 6em;
}
.faq-section header span.readmore[data-readmore] + a[data-readmore-toggle] {
	width: 60%;
	margin-left: 20%;
	margin-right: 20%;
	margin-bottom: 2em;
	text-align: center;
	padding-left: 20px;
}
.faq-section header span.readmore + a[data-readmore-toggle]:after {
	right: auto;
	margin-left: 15px;
}
.accordion-section {
	width: 100%;
}
.faq-wrap {
	width: 100%;
	float: left;
    margin-bottom: 0;
	background-color: rgba(255, 255, 255, 0.4);
	margin: 0.5em 0;
}
.faq-wrap > *:not(h2):not(h3):not(h4):not(h5) {
	padding-right: 3em;
    padding-left: 2.5em;
}
.faq-wrap:last-child {
	border: none;
}
.accordion-section .accordion {
	font-weight: bold;
	cursor: pointer;
	position: relative;
	padding-right: 3em;
	padding-left: 2em;
	margin: 0;
	padding-top: 25px;
	padding-bottom: 25px;
	line-height: 35px;
}
.accordion-section .accordion:after {
	font-family: "Font Awesome 6 Free";
	font-display: swap;
	font-weight: 900;
	content: "\f067";
	-webkit-transition: -webkit-all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	width: 35px;
	height: 35px;
	position: absolute;
	right: 1em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	float: right;
	background-color: #6e7973;
	background-color: var(--darkgreen);
	color: #fff;
	border-radius: 50%;
	font-size: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(0deg);
	    -ms-transform: translateY(-50%) rotate(0deg);
	        transform: translateY(-50%) rotate(0deg);
}
.accordion-section .accordion.accordion-open::after {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	    -ms-transform: translateY(-50%) rotate(-45deg);
	        transform: translateY(-50%) rotate(-45deg);
	-webkit-transition: -webkit-all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	background-color: #9DB3B1;
}
.accordion-section .faq-wrap > span {
	display: none;
}
.accordion-section .faq-wrap > p {
	display: none;
	float: left;
}
.accordion-section .faq-wrap > ul, .accordion-section .faq-wrap > ol { 
	display: none;
}
.accordion-section .faq-wrap > *:not(.accordion) {
	float: left;
	clear: both;
}
.accordion-section .faq-wrap > ul {
	width: calc(100% - 2em);
}
@media (max-width: 575px) {
	.accordion-section .accordion:after {
		right: 0.5em;
	}
}
/* fluid font typography */
h3.accordion {
	font-size: 16px;
}
@media screen and (min-width: 320px) {
  .accordion {
	font-size: calc(16px + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 1000px) {
  .accordion {
	font-size: 22px;
  }
}

/* reviews */
.ti-widget.ti-goog .ti-reviews-container-wrapper {
	width: 100%;
}

/* advice */
.advice-outer {
	margin: 0;
}
.advice-section {
	background-size: cover !important;
	background-position: bottom: !important;
	background-attachment: fixed !important;
	position: relative;
}
.advice-section:before {
	background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.advice-section .container {
	position: relative;
	z-index: 1;
}
.advice-section header {
	width: 100%;
	text-align: center;
}
.advice-outer .advice-wrap {
	background-color: rgba(255, 255, 255, 0.4);
	margin: 0.5em 0;
	font-weight: bold;
	position: relative;
	padding-right: 2em;
	padding-left: 2em;
	margin: 0;
	padding-top: 25px;
	padding-bottom: 25px;
	list-style-type: none;
	font-weight: bold;
	font-size: 1.1em;
	margin: 0.5em 0;
	float: left;
	width: 100%;
}
.advice-outer .advice-wrap p:last-of-type {
	margin-bottom: 0;
}
@media (max-width: 575px) {
	.advice-outer .advice-wrap {
		font-size: 1em;
	}
}

/* headings */

/* section */
section {
	padding-top: 4em;
	padding-bottom: 4em; 
}
@media (max-width: 575px) {
	section {
		padding-top: 2em;
		padding-bottom: 2em; 
	}
}

/* content */

/* content right block */
.right-content-block {
	background: #cdd9d9;
	background: var(--blue);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-line-pack: center;
	    align-content: center;
	border-top-left-radius: 8em;
	border-bottom-right-radius: 8em;
	padding: 4em 0;
}
.small-icon {
	width: 100%;
	text-align: center;
}
.small-icon img {
	width: 135px;
}
.right-content {
	text-align: center;
}
.right-content span {
	font-size: 1.5em;
	font-family: 'Gilroy Light';
	font-weight: bold;
}
.right-content span:last-of-type {
	width: 100%;
	float: left;
	font-size: 4em;
	margin-top: 0.5em;
	font-weight: bold;
}
.right-content small {
	float: left;
    width: 100%;
    font-size: 1.1em;
    margin-top: 2em;
	padding-left: 1em;
    padding-right: 1em;
}
.right-content-block .content-buttons {
	float: left;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 1.5em;
}
.right-content-block.image {
	padding: 0;
	overflow: hidden;
	border-right: 1.5em solid #cdd9d9;
	border-right: 1.5em solid var(--blue);
}
.right-content-block.image figure {
	width: 100%;
}
.right-content-block.image .right-full-img {
	max-height: 500px;
}
.right-content-block.image figure img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
.right-content-block {
	margin-left: auto;
}
@media (max-width: 991px) {
	.right-content-block {
		margin-top: 2em;
	}
	.right-content-block {
		margin-left: auto;
		margin-right: auto;
	}
}
@media (max-width: 575px) {
	.right-content-block {
		padding: 2em 0;
	}
	.small-icon img {
		width: 100px;
	}
	.right-content span {
		font-size: 1.2em;
	}
	.right-content span:last-of-type {
		font-size: 2.5em;
	}
	.right-content-block .content-buttons {
		margin-top: 1.5em;
	}
}

/* second right block */
.smaller-content.content-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-item-align: start;
	    align-self: flex-start;
	position: sticky;
	top: 0;
}
.smaller-content.content-right .right-content span {
	font-size: 1.2em;
}
.smaller-content.content-right .right-content span:last-of-type {
	font-size: 2.5em;
}
.smaller-content.content-right .small-icon img {
	width: 115px;
}
.smaller-content > .right-content-block  {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 50%;
	        flex: 1 0 50%;
}
.content.full-right-blocks .smaller-content > .right-content-block {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 100%;
	        flex: 1 0 100%;
}
.content.full-right-blocks .smaller-content > .right-content-block:not(:last-child) {
	margin-bottom: 25px;
}
.smaller-content > .right-content-block:first-child {
	border-bottom-right-radius: 0;
}
.smaller-content > .right-content-block:last-child {
	border-top-left-radius: 0;
}
@media (max-width: 575px) {
	.smaller-content.content-right .small-icon img {
		width: 100px;
	}
	.smaller-content.content-right > .right-content-block:first-child {
		border-top-left-radius: 4em;
	}
	.smaller-content.content-right > .right-content-block:last-child {
		border-bottom-right-radius: 4em;
	}
	.smaller-content > .right-content-block {
		-webkit-box-flex: 1;
	    -ms-flex: 1 0 100%;
	        flex: 1 0 100%;
		border-top-left-radius: 4em !important; 
		border-bottom-right-radius: 4em !important;
	}
}

/* quick contact form */
body.home .quick-contact {
	background-color: #F4F4F4;
	background-color: var(--lightgrey);
}
.quick-contact {
	background-color: #9DB3B1;
}
body:not(.home) .quick-contact article, body:not(.home) .quick-contact article a {
	color: #fff;
}
.quick-contact article {
	text-align: center;
}
.quick-contact article header {
	float: left;
	width: 100%;
}
.quick-contact article p:not(:last-child) {
	margin-bottom: 0;
}
.quick-contact form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex; 
	-ms-flex-wrap: wrap; 
	    flex-wrap: wrap;
}
.quick-contact form input {
	border-radius: 0.6em;
}
.quick-contact form input[type="submit"] {
	border-radius: 50px;
	background-color: #6e7973;
	background-color: var(--darkgreen);
	font-weight: bold;
	width: 100%;
}
.quick-contact .contact-form {
	padding: 0;
}
.quick-contact .contact-form input[type="text"], .quick-contact .contact-form input[type="tel"], .quick-contact .contact-form input[type="email"] {
	width: 100%;
	float: left;
}
.quick-contact .contact-form .wpcf7-form-control-wrap {
	width: 100%;
	float: left;
}

/* call to action */
.call-to-action-bar {
	background-color: #9DB3B1;
	color: #fff;
	position: relative;
}
.call-to-action-bar .container {
	z-index: 1;
}
.call-to-action-bar .content-button {
	background-color: #fff;
	color: #333 !important;
	float: right;
	border: 2px solid #fff;
}
.call-to-action-bar .content-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.call-to-action-bar:before {
	content: "";
	background: url(../../uploads/2020/06/Burnel-Funeral-icon-14-e1591686899405.png);
	position: absolute;
	height: 100%;
	width: 400px;
    right: 0;
    z-index: 0;
	background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
	max-height: 400px;
	bottom: 0;
}
@media (max-width: 575px) {
	.call-to-action-bar .content-button {
		margin: auto;
	}
}

/* map with content */
.map-with-content .map-content-details a {
	font-weight: bold;
	color: #333;
}
.phone:before {
	content: "\f879";
	font-family: "Font Awesome 6 Free";
    font-weight: 900;
	color: #8daa99;
	color: var(--green);
	padding-right: 5px;
}
.map-with-content .map-content-details a {
	float: unset;
	display: inline;
}
.map-with-content .map-content-details a.content-button {
	display: inline-flex;
}
.map-with-content .map-content-details .phone {
	margin-right: 2em;
}
.email:before {
	content: "\f0e0";
	font-family: "Font Awesome 6 Free";
    font-weight: 900;
	color: #8daa99;
	color: var(--green);
	padding-right: 5px;
}
.short-address {
	float: left;
	width: 100%;
	clear: both;
	font-weight: bold;
}
.short-address:before {
	content: "\f3c5";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #8daa99;
	color: var(--green);
	padding-right: 5px;
}
.map-with-content .map-content-details .social-icons {
	margin-bottom: 2em;
	margin-top: 1em;
	font-size: 1.8em;
}
.map-with-content .map-content-details .social-icons {
	width: 100%;
    float: left;
    clear: both;
}
.map-with-content .map-content-details .social-icons a {
	color: #8daa99;
	color: var(--green);
	margin-left: 0;
	margin-right: 18px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.map-with-content .map-content-details .social-icons a:hover {
	color: #6e7973 !important;
	color: var(--darkgreen) !important;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
section.content + section.map-with-content {
	padding-top: 0;
}
@media (max-width: 575px) {
	.map-with-content .map-content-details .social-icons {
		margin-bottom: 1em;
	}
}
@media (min-width: 992px) {
	.map-with-content .map-content-details {
		padding-left: 2em;
	}
}

/* slick slider defaults - prevents pop-in */
.slick-initialized .slick-slide img {
	opacity: 1;
}
.page-hero-slider, .testimonial-slider, .tab-images-slider, .tab-images-slider-stone {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
.page-hero-slider.slick-initialized, .testimonial-slider.slick-initialized, .tab-images-slider.slick-initialized, .tab-images-slider-stone.slick-initialized {
	visibility: visible;
	opacity: 1;
	transform: opacity 0.3s ease-in-out;
}
.page-hero-slider.slick-slider .slick-slide,
.testimonial-slider.slick-slider .slick-slide,
.page-hero-slider.slick-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"],
.testimonial-slider.slick-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] {
	opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
.page-hero-slider.slick-slider .slick-slide.slick-current,
.testimonial-slider.slick-slider .slick-slide.slick-current,
.page-hero-slider.slick-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"],
.testimonial-slider.slick-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] { 
	opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
.slick-arrow {
	position: absolute;
	bottom: 0;
	cursor: pointer;
}
.slick-arrow.slick-next {
	right: 15px;
	z-index: 10;
}
.slick-arrow.slick-prev {
	left: 15px;
	z-index: 10;
}
.slick-arrow i {
	font-size: 0;
}
.slick-arrow i::before { 
	transition: color 0.3s ease-in-out;
}
.slick-arrow:hover i::before { 
	transition: color 0.3s ease-in-out;
}
.slick-dots {
	list-style-type: none;
	font-size: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.slick-dots li button {
	padding: 5px;
	margin-left: 5px;
	margin-right: 5px;
	border-radius: 50%;
}
.slick-dots li.slick-active button { 
	background-color: #000;
}
@media (max-width:768px) {
	.slick-arrow.slick-next {
		right: 0;
	}
	.slick-arrow.slick-prev {
		left: 0;
	}
}
@media (max-width: 480px) {
	.slick-arrow.slick-next {
		right: 10px;
	}
	.slick-arrow.slick-prev {
		left: 10px;
	}
}

/* testimonials tabs */
.tab-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
	padding: 1.5em;
	cursor: pointer;
	border-radius: 1em;
    margin-bottom: 1em;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.tab-button.active, .tab-button:hover {
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.25);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.tab-button figure {
	width: 80px;
    height: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.tab-button figure img {
    width: 100%;
    height: 100%;
    padding: 0.5em;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.tabs-section {
	padding: 0;
}
.content-tabs.tabs-section {
	background: #F4F4F4;
}
.tabs-section #tabs #tab-details, .tabs-section #tabs #tab-buttons {
	padding-top: 4em;
    padding-bottom: 4em;
}
.content-tabs .tab-button figure {
	margin-left: -1em;
    margin-right: 1em;
}
.tab-button figure i {
	font-size: 2.5em;
}
.tab-button .tab-name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.tab-button .tab-name:after {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
    font-weight: 900;
	position: absolute;
	right: 1em;
	top: 50%;
	font-size: 1.8em;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.tab-button:not(.active) {
	opacity: 0.55;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.tab-button .tab-name {
	color: #3a3a3a;
}
.tab-button figure i {
	color: #3a3a3a;
}
.tab-button .tab-name h3 {
	margin-bottom: 0;
	padding-right: 1.5em;
}
.tab-detail {
	display: none;
	opacity: 0;
}
.tab-detail + .content-buttons {
	display: none;
	opacity: 0;
}
.tab-detail.active {
	display: block;
	opacity: 1;
}
.tab-detail.active + .content-buttons {
	display: block;
	opacity: 1;
}
@media (min-width: 992px) {
	.tabs-section #tabs #tab-details {
		padding-left: 30px;
		padding-right: 15px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-ms-flex-line-pack: start;
		    align-content: flex-start;
	}
	.tabs-section.testimonial-tabs #tabs #tab-buttons {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.tabs-section.testimonial-tabs #tabs #tab-buttons .tab-button {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 50%;
		        flex: 1 0 50%;
	}
}
@media (max-width: 991px) {
	#tab-buttons {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.tab-button {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 25%;
		        flex: 1 0 25%;
		padding: 1em;
	}
	.tab-button .tab-name {
		text-align: center;
		width: 100%;
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
    	-webkit-box-pack: center;
    	    -ms-flex-pack: center;
    	        justify-content: center;
	}
	.tab-button figure {
		width: 50px;
		height: 50px;
		margin: auto;
	}
	.tab-button figure i {
		font-size: 2em;
	}
	.tab-button .tab-name:after {
		bottom: 0;
		top: auto;
		-webkit-transform: translateX(-50%) rotate(90deg);
		    -ms-transform: translateX(-50%) rotate(90deg);
		        transform: translateX(-50%) rotate(90deg);
		left: 50%;
		position: relative;
   		width: 100%;
		font-size: 1.5em;
   	 	width: 100%;
	}
	.tab-button .tab-name h3 {
		margin-bottom: 0;
		white-space: nowrap;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis;
		overflow: hidden;
		font-size: 1em;
		padding-right: 0;
	}
	.content-tabs .tab-button {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 33.33%;
		        flex: 1 0 33.33%;
	}
	.content-tabs .tab-button figure {
		width: 100%;
		margin-left: auto;
    	margin-right: auto;
	}
	.content-tabs .tab-button figure img {
		width: auto;
	}
	#tab-details {
		padding-top: 2em;
	}
	.tabs-section #tabs #tab-buttons {
		padding-top: 4em;
		padding-bottom: 0;
	}
	.tabs-section #tabs #tab-details {
		padding-top: 2em;
		padding-bottom: 4em;
		background: #9db3b1;
		text-align: center;
		color: #fff;
	}
	.tabs-section #tabs #tab-details ul {
		max-width: -webkit-max-content;
		max-width: -moz-max-content;
		max-width: max-content;
		text-align: left;
		margin-left: auto;
		margin-right: auto;
	}
	.tabs-section #tabs #tab-details ul li {
		max-width: 60%;
		margin: auto;
		line-height: 1.8;
	}
	.tab-detail.active + .content-buttons {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.tab-detail a, .tab-detail a:visited {
		color: #000;
	}
	.tabs-section.content-tabs {
		padding-bottom: 2em;
	}
}
@media (max-width: 575px) { 
	.content-tabs .tab-button {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 50%;
		        flex: 1 0 50%;
	}
	.tabs-section #tabs #tab-buttons {
		padding-top: 2em;
		padding-bottom: 0;
	}
	.tabs-section #tabs #tab-details {
		padding-top: 2em;
		padding-bottom: 2em;
	}
}

/* testimonial archive */
.testimonial-post-wrapper .posts-columns {
	display: -ms-grid;
    display: grid;
    grid-gap: 60px 40px;
    grid-template-columns: repeat(4,minmax(0,1fr));
	margin-top: 40px;
}
.testimonial-post-wrapper .posts-columns article {
	padding: 40px;
    background-color: var(--green);
    color: #fff;
	border-radius: 8px;
	font-size: 16px;
    font-style: italic;
    line-height: 25px;
	position: relative;
	align-self: flex-start;
}
.testimonial-post-wrapper .posts-columns article .inside-article {
	background-color: transparent;
	padding: unset;
	display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.testimonial-post-wrapper .posts-columns article .entry-header {
    display: inline-block;
    width: 100%;
	padding-right: 60px;
	margin-bottom: 16px;
}
.testimonial-post-wrapper .posts-columns article .entry-content {
	margin-top: 0;
	overflow: hidden;
	max-height: 180px;
	margin-bottom: 20px;
}
.testimonial-post-wrapper .posts-columns article a {
	color: #fff;
}
.testimonial-post-wrapper .posts-columns article a[data-readmore-toggle] {
	background-color: #fff;
    float: left;
    padding: 0.3em 1.8em;
    border-radius: 1.5em;
    font-weight: bold;
    position: relative;
    font-style: normal;
    color: var(--green);
	padding: 6px 18px;
}
.testimonial-post-wrapper .posts-columns article .entry-content::after {
	display: none;
}
.testimonial-post-wrapper .posts-columns article .entry-title {
	color: #fff;
	font-style: normal;
	font-size: 22px;
}
.testimonial-post-wrapper .posts-columns .paging-navigation {
	grid-column: -1 / 1;
    text-align: center;
    padding: unset;
}
.testimonial-post-wrapper .posts-columns article::after {
	content: url("data:image/svg+xml,%3Csvg width='51' height='28' viewBox='0 0 51 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0.999999C0 0.447715 0.447715 0 1 0H49.899C50.9463 0 51.2891 1.40568 50.3593 1.88775L1.46031 27.2428C0.794658 27.588 0 27.1049 0 26.355V0.999999Z' fill='%238DAA99'/%3E%3C/svg%3E%0A");    width: 100px;
    width: auto;
    height: 28px;
    position: absolute;
    top: calc(100% - 2px);
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    font-size: 0;
	left: 38px;
}
.testimonial-post-wrapper .posts-columns article::before {
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg width='119' height='88' viewBox='0 0 119 88' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.7388 0C12.419 0 0 12.4225 0 27.7476C0 43.0674 12.419 55.4898 27.7388 55.4898C27.7388 55.4898 27.6046 65.7967 19.2313 80.631C18.3012 83.6033 19.9592 86.7686 22.9334 87.6934C25.0436 88.3572 27.2642 87.712 28.6981 86.21C47.9515 65.1515 55.488 40.3669 55.488 27.7476C55.488 12.4225 43.0692 0 27.7388 0Z' fill='%23CDD9D9'/%3E%3Cpath d='M91.1256 0C75.8058 0 63.3868 12.4227 63.3868 27.7476C63.3868 43.0674 75.8058 55.4898 91.1256 55.4898C91.1256 55.4898 90.9914 65.7967 82.6181 80.631C81.688 83.6033 83.3462 86.7686 86.3202 87.6934C88.4305 88.3572 90.651 87.712 92.0847 86.21C111.338 65.1515 118.875 40.3669 118.875 27.7476C118.875 12.4225 106.456 0 91.1256 0Z' fill='%23CDD9D9'/%3E%3C/svg%3E%0A");
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 110px;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(4deg);
	filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1));
}
.masonry-load-more {
	display: inline-flex !important;
    text-align: center;
    width: 100%;
    justify-content: center;
    margin: 40px 0 !important;
	grid-column: -1 / 1;
}
article.type-testimonial .testimonial-customer-name {
	display: inline-block;
	font-style: normal;
    width: auto;
    padding-left: 8px;
    text-align: right;
    flex: 1 0 auto;
	margin-left: auto;
}
article.type-testimonial .testimonial-customer-name strong {
	display: block;
    font-style: normal;
    font-size: 18px;
}
.testimonial-post-wrapper .posts-columns .masonry-load-more {
	margin-bottom: 0;
}
.masonry-load-more .button {
	background-color: #6e7973;
    background-color: var(--darkgreen);
    float: left;
    color: #fff !important;
    border-radius: 1.5em;
    font-weight: bold;
    position: relative;
    border: 2px solid #6e7973;
    border: 2px solid var(--darkgreen);
    font-size: 16px;
    min-width: 180px;
    padding: 10px;
}
@media (max-width: 1200px) {
	.testimonial-post-wrapper .posts-columns {
		grid-template-columns: repeat(3,minmax(0,1fr));
	}
}
@media (max-width: 1024px) {
	.testimonial-post-wrapper .posts-columns {
		grid-template-columns: repeat(2,minmax(0,1fr));
	}
}
@media (max-width: 991px) {
	.testimonial-post-wrapper .posts-columns article::before {
		right: -5px;
	}
}
@media (max-width: 575px) {
	.testimonial-post-wrapper .posts-columns {
		grid-template-columns: repeat(1,minmax(0,1fr));
	}
}

/* gallery tabs */
.content-tabs + .mini-image-sliders {
	padding-top: 0;
}
.mini-image-sliders .gallery-tabs-container-outer {
	margin-bottom: 2em;
}
.gallery-tabs-container-outer .tab-images-slider, .gallery-tabs-container-outer .tab-images-slider-stone {
	float: left;
	width: 100%;
	position: relative;
	height: 275px;
}
.gallery-tabs-container-outer .tab-images-slider .slick-list, .gallery-tabs-container-outer .tab-images-slider-stone .slick-list {
	height: 100%;
}
.gallery-tabs-container-outer .tab-images-slider .slick-list .slick-track, .gallery-tabs-container-outer .tab-images-slider-stone .slick-list .slick-track {
	height: 100%;
}
.gallery-tabs-container-outer > :not(.tab-images-slider) {
	text-align: center;
}
.gallery-tabs-container-outer .tab-images-slider a, .gallery-tabs-container-outer .tab-images-slider-stone a  {
	float: left;
	height: inherit;
	border-top-left-radius: 3em;
    border-bottom-right-radius: 3em; 
	overflow: hidden;
	max-height: 275px;
	margin: 0 5px;
	position: relative;
}
.gallery-tabs-container-outer .tab-images-slider a span, .gallery-tabs-container-outer .tab-images-slider-stone a span {
	position: absolute;
    bottom: 0;
	left: 0;
    width: 100%;
    text-align: center;
    padding: 0.5em;
    background-color: rgba(255, 255, 255, 0.8);
	color: #333;
	font-weight: 900;
	font-size: 1.1em;
	white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}
.gallery-tabs-container-outer .tab-images-slider a img, .gallery-tabs-container-outer .tab-images-slider-stone a img {
	object-fit: contain;
	object-position: center;
	width: 100%;
	height: 100%;
}
.gallery-tabs-container-outer .tab-images-slider a figure, .gallery-tabs-container-outer .tab-images-slider-stone a figure {
	float: left;
    width: 100%;
    height: 100%;
}
.gallery-tabs-container-outer .tab-images-slider.flowers-other a img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}
.gallery-tabs-container-outer .tab-images-slider .slick-track, .gallery-tabs-container-outer .tab-images-slider-stone .slick-track {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
}
.gallery-tabs-container-outer .tab-images-slider .slick-arrow, .gallery-tabs-container-outer .tab-images-slider-stone .slick-arrow {
	top: 50%;
	-webkit-transform: translatey(-50%);
	    -ms-transform: translatey(-50%);
	        transform: translatey(-50%);
	height: 45px;
    width: 45px;
    padding: 0;
    font-size: 0;
	border-radius: 50%;
	background-color: #6e7973;
	-webkit-transition: background 0.3s ease;
	-o-transition: background 0.3s ease;
	transition: background 0.3s ease;
}
.gallery-tabs-container-outer .slick-arrow:hover {
	background-color: #9DB3B1;
	-webkit-transition: background 0.3s ease;
	-o-transition: background 0.3s ease;
	transition: background 0.3s ease;
}
.gallery-tabs-container-outer .slick-arrow.slick-prev:before {
	content: "\f053";
	font-family: "Font Awesome 6 Free";
    font-weight: 900;
	font-size: 18px;
}
.gallery-tabs-container-outer .slick-arrow.slick-next:before {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
}
@media (max-width: 575px) {
	.gallery-tabs-container-outer .tab-images-slider, .gallery-tabs-container-outer .tab-images-slider-stone {
		height: 185px;
	}
	.gallery-tabs-container-outer .tab-images-slider a, .gallery-tabs-container-outer .tab-images-slider-stone a {
		margin: 0 5px;
	}
}

/* gallery */
.gallery-images {
	padding-left: 15px;
	padding-right: 15px;
}
.gallery-images .container {
	display: -ms-grid;
	display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 40px;
}
.gallery-images .gallery-img {
	padding: 0;
	width: 100%;
    height: 100%;
	border-top-left-radius: 3em;
    border-bottom-right-radius: 3em;
	overflow: hidden;
	max-height: 260px;
	height: 260px;
}
.gallery-images .gallery-img img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover; 
	-o-object-position: center; 
	   object-position: center;
}
@media (max-width: 991px) {
	.gallery-images .container {
		-ms-grid-columns: 1fr 40px 1fr 40px 1fr;
		grid-template-columns: repeat(3,1fr);
	}
	.gallery-images .gallery-img {
		max-height: 200px;
		height: 200px;
	}
}
@media (max-width: 575px) {
	.gallery-images .container {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2,1fr);
	}

}

/* team member */
.team-member {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.team-member header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
	width: 100%;
    -ms-flex-item-align: start;
        align-self: flex-start;
}
.team-member > *:not(.content-buttons):not(header) {
	-ms-flex-item-align: start;
	    align-self: flex-start;
}
.team-member .content-buttons {
	-ms-flex-item-align: end;
	    align-self: flex-end;
}
.team-member header figure {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.team-member header figure img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
}
.team-member header .member-name {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: center;
        align-content: center;
	padding-left: 1em;
}
.team-member header .member-name  > *:not(span) {
	margin-bottom: 5px;
}
.team-member header span {
	font-size: 1.3em;
    color: #8daa99;
	color: var(--green);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.team-member header {
	margin-bottom: 1em;
}
.team-member {
	margin-bottom: 2em;
}
@media (max-width: 991px) {
	.team-member header .member-name {
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
	}
}

/* main form */
.map-with-contact-form .main-form form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.map-with-contact-form .main-form form label {
	padding-left: 0;
	margin-bottom: 1.5em;
}
.map-with-contact-form .main-form form label.accept {
	cursor: pointer;
}
.main-form form label input, .main-form form label textarea {
	width: 100%;
	background-color: transparent;
	border: none;
	border-bottom: 2px solid #C2C2C2;
	color: #C2C2C2;
}
.main-form form label input:active, .main-form form label input:focus,
.main-form form label textarea:active, .main-form form label textarea:focus {
	border-bottom: 2px solid #8daa99;
	border-bottom: 2px solid var(--green);
}
.main-form form label textarea {
	height: 100px;
}
.main-form form label input[type="submit"] {
	border: none;
	background-color: #8daa99;
	background-color: var(--green);
	color: #fff;
	font-weight: bold;
	-webkit-transition: all 0.3s ease-in-out; 
	-o-transition: all 0.3s ease-in-out; 
	transition: all 0.3s ease-in-out;
}
.main-form form label input[type="submit"]:hover {
	background-color: #6e7973;
	background-color: var(--darkgreen); 
	-webkit-transition: all 0.3s ease-in-out; 
	-o-transition: all 0.3s ease-in-out; 
	transition: all 0.3s ease-in-out;
}
.gdpr-acceptance .wpcf7-list-item input[type="checkbox"] + .wpcf7-list-item-label {
	font-size: 0;
    position: relative;
    cursor: pointer;
}
.gdpr-acceptance .wpcf7-list-item input[type="checkbox"] {
	display: none;
}
.gdpr-acceptance.wpcf7-not-valid .wpcf7-list-item input[type="checkbox"] + .wpcf7-list-item-label:before {
	border-color: #f00; 
}
.gdpr-acceptance + .wpcf7-not-valid-tip {
	display: none !important;
}
.gdpr-acceptance .wpcf7-list-item input[type="checkbox"] + .wpcf7-list-item-label:before {
	width: 25px;
    height: 25px;
    content: "";
    display: block;
    border: 2px solid #8daa99;
	border: 2px solid var(--green);
	background-color: #8daa99;
	background-color: var(--green);
    box-sizing: border-box;
}
.gdpr-acceptance .wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label:before {
	background-color: #fff;
}
.gdpr-acceptance .wpcf7-list-item input[type="checkbox"] + .wpcf7-list-item-label:after {
	content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 15px !important;
    color: #8daa99;
	color: var(--green);
    display: block;
    position: absolute;
    top: 0;
    z-index: 1;
    left: 5px;
	line-height: 25px;
}
.gdpr-acceptance {
	width: 35px;
    float: left;
}
.gdpr-acceptance .wpcf7-list-item {
	margin: 0;
}
.accept small {
	float: left;
    width: calc(100% - 35px);
    line-height: 1.5;
	font-size: 80%;
}
div.wpcf7-response-output {
	margin: 0;
    width: 100%;
    text-align: center;
}
#popup-contact form div.wpcf7-response-output {
	margin-left: 1em;
    margin-right: 1em;
    width: calc(100% - 2em);
    margin-top: -1.5em;
    margin-bottom: 0.5em;
}

/* maps */
.map-outer .map {
	width: 100%;
	height: 100%;
	border-top-right-radius: 8em;
    border-bottom-left-radius: 0;
	border-top: 1.5em solid #cdd9d9;
	border-top: 1.5em solid var(--blue);
	min-height: 350px;
	-webkit-transform: translatey(0);
	    -ms-transform: translatey(0);
	        transform: translatey(0);
}
.map-content-details {
	padding-top: 2em;
    padding-bottom: 2em;
}
@media (min-width: 1440px) {
	.map-content-details {
		padding-top: 3em;
		padding-bottom: 3em;
	}
}
@media (min-width: 1600px) {
	.map-content-details {
		padding-top: 5em;
    	padding-bottom: 5em;
	}
}
@media (max-width: 991px) {
	.map-outer {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
	.map-content-details {
		padding-top: 0;
	}
}
@media (max-width: 575px) {
	.map-outer .map {
		min-height: 300px;
	}
}

/* navigation */
.site-logo {
	max-width: 180px;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	height: 65px;
}
.main-navigation {
	min-height: 80px;
/* 	overflow: hidden; */
}
.nav-aligned-center .main-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
#site-navigation:not(.is_stuck) {
	-webkit-transform: none !important;
	    -ms-transform: none !important;
	        transform: none !important;
}
#primary-menu {
	margin: auto;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.site-logo a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	height: inherit;
}
.site-logo a img {
	-ms-flex-item-align: start;
	    align-self: flex-start;
	height: inherit;
    -o-object-fit: contain;
       object-fit: contain;
	width: 100%;
}
.header-quick-links {
	-webkit-box-ordinal-group: 6;
	    -ms-flex-order: 5;
	        order: 5;
}
@media (max-width: 1440px) {
	.main-navigation .main-nav ul li a, .menu-toggle, .main-navigation .mobile-bar-items a {
		padding-left: 10px;
    	padding-right: 10px;
	}
	.main-navigation .main-nav ul li a {
		padding-left: 0;
		padding-right: 0;
		margin-left: 10px;
		margin-right: 10px;
	}
	.menu-item-has-children .dropdown-menu-toggle {
		padding-right: 0;
	}
	.main-navigation .main-nav ul li:last-child a {
		border-bottom: none;
	}
	#generate-slideout-menu.main-navigation .main-nav ul ul {
		background: #cdd9d9;
	}
	#generate-slideout-menu.main-navigation .main-nav li a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		position: relative;
		padding-left: 40px;
	}
	#generate-slideout-menu.main-navigation .main-nav ul ul li a {
		color: #000;
		line-height: 30px;
	}
	#generate-slideout-menu.main-navigation .main-nav .menu-image {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 40px;
		height: 40px;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		position: absolute;
		left: 0;
	}
	#generate-slideout-menu.main-navigation .main-nav .menu-image img {
		width: 30px;
		height: 30px;
	}
	.site-logo {
		max-width: 165px;
	}
	.main-navigation a {
		font-size: 14px;
	}
}
.inside-navigation .menu-toggle {
	-webkit-box-ordinal-group: 7 !important;
	    -ms-flex-order: 6 !important;
	        order: 6 !important;
}
@media (min-width: 1025px) {
	.main-navigation #menu-menu > li:not(.menu-item-has-children) > a:before {
		content: "";
		background-color: #8daa99;
		background-color: var(--green);
		width: 100%;
		height: 8px;
		bottom: -10px;
		position: absolute;
		left: 0;
		opacity: 0;
		-webkit-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.main-navigation #menu-menu > li:not(.menu-item-has-children):hover > a:before { 
		opacity: 1;
		-webkit-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
}
@media (max-width: 1024px) {
	.main-navigation .main-nav ul li a {
		border-bottom: 1px solid #8c8c8c61;
	}
	#primary-menu {
		display: none;
	}
	.header-quick-links {
		margin: auto;
	}
	.main-navigation .main-nav ul li a, .menu-toggle, .main-navigation .mobile-bar-items a {
		padding-left: 1em;
    	padding-right: 1em;
		font-weight: bold !important;
	}
}
@media (max-width: 991px) {
	button.menu-toggle span.mobile-menu {
		font-size: 0.85em;
	}
	button.menu-toggle  {
		font-size: 1.5em;
	}
	.top-bar .inside-top-bar aside:first-child {
		display: none;
	}
	.top-bar .inside-top-bar aside.widget {
		width: 100%;
		margin: 0 !important;
	}
	.top-bar .inside-top-bar .phone {
		display: block;
	}
	.top-bar .inside-top-bar .email {
		display: block;
	}
	.main-navigation {
		min-height: 75px;
	}
}
@media (max-width: 767px) {
	button.menu-toggle span.mobile-menu {
		display: none;
	}
}
@media (max-width: 575px) {
	.header-quick-links {
		display: none;
	}
	.inside-navigation .menu-toggle {
		margin-left: auto;
	}
}

/* offside nav menu */
#generate-slideout-menu {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	border-left: 5px solid #8daa99;
}
#generate-slideout-menu > .inside-navigation {
	min-height: 100%;
	-ms-flex-line-pack: start;
	    align-content: flex-start;
	border-left: 5px solid #cdd9d9;
}
#generate-slideout-menu .custom-logo-link {
	padding: 1em;
}
#generate-slideout-menu .main-nav {
	width: 100%;
}
#generate-slideout-menu .custom-logo-link {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
#generate-slideout-menu .custom-logo-link img {
	max-width: 180px;
}

/* privacy policy */
body.privacy-policy .content:not(:last-of-type) {
	padding-bottom: 2em;
}
body.privacy-policy .content + .content {
	padding-top: 0;
}

/* terms and conditions */
body.page-id-833 .content + .content {
	padding-top: 0;
}
body.page-id-833 .content:not(:last-of-type) {
	padding-bottom: 2em;
}

/* footer */
.inside-footer-widgets {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.footer-img {
	max-width: 161px;
    max-height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}
.footer-img.footer-fair {
	padding: 5px;
    background: #fff;
}
.footer-images-outer {
	float: left;
    width: 100%;
	text-align: center;
}
.inside-footer-widgets .short-address:before, .inside-footer-widgets .phone:before, .inside-footer-widgets .email:before {
	color: #878787;
}
.inside-footer-widgets>div:first-child .widget .textwidget {
	line-height: 2;
}
.inside-footer-widgets a:hover {
	color: #fff;
}
.inside-footer-widgets .email, .inside-footer-widgets .phone {
	float: left;
	margin: 0;
}
.inside-footer-widgets .phone {
	margin-right: 2em;
}
.inside-footer-widgets .email {
	clear: right;
}
.inside-footer-widgets .social-icons {
	width: 100%;
	clear: both;
}
.inside-footer-widgets #text-2 .opening-hrs > strong {
	color: #fff;
}
.inside-footer-widgets #text-2 .opening-hrs {
	line-height: 1.5;
}
.inside-footer-widgets .social-icons a {
	color: #fff;
	font-size: 1.3em;
}
.inside-footer-widgets p {
	float: left;
	width: 100%;
}
.copyright-bar {
	width: 100%;
	text-align: center;
}
.inside-footer-widgets .footer-widget-1 aside {
	display: block;
    width: 100%;
    clear: both;
}
@media (min-width: 1025px) {
	.inside-footer-widgets > div {
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
	}
	.inside-footer-widgets .footer-widget-1 {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 18%;
		        flex: 1 0 18%;
	}
}
@media (max-width: 768px) {
	.site-footer .footer-widgets .footer-widgets-container .inner-padding {
		float: left;
    	width: 100%;
	}
	.site-footer .footer-widgets .footer-widgets-container .inner-padding > .textwidget {
		float: left;
    	width: 100%;
	}
	.inside-footer-widgets {
		flex-direction: row;
	}
	.inside-footer-widgets > div {
		flex: 1 0 100%;
	}
}

/* footer accordion */
.inside-footer-widgets aside > div {
	float: left;
}
@media (max-width: 768px) {
	.inside-footer-widgets > div:not(:first-child) aside > *:not(.widget-title) {
		display: none;
		margin-bottom: 15px;
	}
	.inside-footer-widgets > div:first-child {
		margin-bottom: 40px;
	}
	.inside-footer-widgets>div:not(:last-child) {
		margin-bottom: 15px;
	}
	.widget-title.accordion {
		margin-bottom: 15px;
	}
	.widget-title.accordion:after {
		content: "\f067";
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		float: right;
		background-color: #6e7973;
		background-color: var(--darkgreen);
		width: 30px;
		height: 30px;
		line-height: 30px;
		text-align: center;
		border-radius: 50%;
		-webkit-transform: rotate(0deg);
		    -ms-transform: rotate(0deg);
		        transform: rotate(0deg); 
		-webkit-transition: all 0.3s ease-in-out; 
		-o-transition: all 0.3s ease-in-out; 
		transition: all 0.3s ease-in-out;
	}
	.widget-title.accordion.accordion-open:after {
		-webkit-transform: rotate(45deg);
		    -ms-transform: rotate(45deg);
		        transform: rotate(45deg); 
		-webkit-transition: all 0.3s ease-in-out; 
		-o-transition: all 0.3s ease-in-out; 
		transition: all 0.3s ease-in-out;
	}
	.inside-footer-widgets>div:not(:first-child) {
		border-bottom: 2px solid #fff;
	}
}
@media (max-width: 575px) {
	.inside-footer-widgets>div:first-child .widget.widget_media_image {
		text-align: center;
	}
	.inside-footer-widgets .social-icons {
		-webkit-box-pack: space-evenly;
		    -ms-flex-pack: space-evenly;
		        justify-content: space-evenly;
	}
	.inside-footer-widgets>div:first-child .widget p:last-child {
		text-align: center;
	}
}

/* fancy box */
.fancybox-show-caption .fancybox-caption, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-nav .fancybox-navigation .fancybox-button, .fancybox-show-toolbar .fancybox-toolbar {
	z-index: 99999999999;
}

/* flex box elements - container and columns */
.container, .grid-container, .site-content {
  width: 100%;
  background: transparent !important;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.entry-content {
	margin: 0;
}
.full-width {
	width: 100%;
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#page {
	width: 100%; 
}
.site-content .content-area {
	width: 100%; 
}
@media (max-width: 768px) {
	.container-page .inside-article {
		width: 100%;
	}
	.container .site-content .content-area {
		width: 100% !important;
	}
}
@media (min-width: 576px) {
  .container, .grid-container {
    max-width: 540px !important;
  }
  #page {
	max-width: 100% !important;
  }
}
@media (min-width: 768px) {
  .container, .grid-container {
    max-width: 720px !important;
	max-width: 85% !important;
  }
  #page {
	max-width: 100% !important;
  }
}
@media (min-width: 992px) {
  .container, .grid-container {
    max-width: 960px !important;
	max-width: 85% !important;
  }
  #page {
	max-width: 100% !important;
  }
}
@media (min-width: 1280px) {
  .container, .grid-container {
    max-width: 1140px !important;
	max-width: 85% !important;
  }
  #page {
	max-width: 100% !important
  }
}
@media (min-width: 1440px) {
  .container, .grid-container {
    max-width: 1320px !important;
	max-width: 85% !important;
  }
  #page {
	max-width: 100% !important
  }
}
@media (min-width: 1540px) {
  .container, .grid-container {
    max-width: 1400px !important;
	max-width: 85% !important;
  }
  #page {
	max-width: 100% !important
  }
}
@media (min-width: 1720px) {
  .container, .grid-container {
    max-width: 1520px !important;
	max-width: 85% !important;
  }
  #page {
	max-width: 100% !important
  }
}

/*!
 * Bootstrap Grid v4.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto, .col-xxl-5, .col-xxl-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
/* bootstrap col sizes */
.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}@media (min-width:576px){.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width:768px){.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width:992px){.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width:1200px){.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width:1400px){.col-xxl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xxl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}}

/* bootstrap offsets */
.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}@media (min-width:1400px){.offset-xxl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xxl-2{margin-left:16.666667%}}
