/*------------------------------------------------------------------
Theme Name: Funeral - Responsive Bootstrap Funeral Service Theme
Version: 1.1
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[TABLE OF CONTENTS]

	1. RESET STYLES
	2. GLOBAL STYLES
	3. 404 STYLES 
	4. CONTACT STYLES
	5. GOOGLE MAP
	6. FAQ
	7. SUBPAGE
	8. FOOTER
	9. OBITUARIES
	10. GALLERY
	11. LOCATION
	12. FACILITIES
	13. AMENITIES
	14. STAFF
	15. HEADER
	16. ABOUT
	17. SERVICES
	18. NEWSLETTER
	19. BLOG
	20. SHOP
	21. RESPONSIVE STYLES 
	
-------------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css?family=Crimson+Text:400,400i,600,600i,700,700i|Oxygen:300,400,700");


#preloader {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #000;
	/* Fallback background color */
}

#preloader video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.flash {
	position: absolute;
	z-index: 2;
	/* Ensure flash effect is on top */
	/* Add any additional styling for the flash effect here */
}



/* .flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0;
    z-index: 9;
    animation: flashEffect 0.5s 2s forwards;
}  */

@keyframes curtainLeft {
	0% {
		left: 0;
	}

	100% {
		left: -50%;
	}
}

@keyframes curtainRight {
	0% {
		right: 0;
	}

	100% {
		right: -50%;
	}
}

@keyframes zoomOut {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(0);
	}
}

@keyframes flashEffect {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}


/* =============================
   1. RESET STYLES 
================================ */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	scroll-behavior: smooth;
}

article,
aside,
details,
figcaption,
figure,
footer,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after {
	content: '';
	content: none;
}

q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* =============================
   2. GLOBAL STYLES 
================================ */

body {
	background: #fff;
	/* font-family: 'Oxygen', sans-serif; */
	color: #65594d;
	font-size: 14px;
}

a,
a:hover {
	color: #65594d;
	text-decoration: none !important;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

button {
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

b,
strong {
	font-weight: bold !important;
}

div,
button,
input,
textarea,
select {
	outline: none !important;
}

ul,
li,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.no-padding {
	padding: 0;
}

p {
	/* font-family: 'Oxygen', sans-serif; */
	color: #65594d;
	font-size: 15px;
	line-height: 24px;
}

h1 h2,
h3,
h4,
h5,
h6 {
	font-family: 'Crimson Text', serif;
	color: #65594d;
}

h2,
.h2 {
	font-size: 40px;
	margin: 0 0 5px;
}

h3,
.h3 {
	font-size: 24px;
	margin: 0 0 5px;
}

.video-wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.video-wrap iframe,
.video-wrap object,
.video-wrap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.wrapper {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.btn {
	border: none;
}

.btn-primary {
	background-color: #000000;
	color: #ffffff;
	padding: 11px 25px;
	border-radius: 5px;
	font-size: 14px;
}

.btn-primary:hover {
	background-color: #deb923;
	color: #fff;
}

.btn-default {
	background-color: black;
	color: #ffffff;
	padding: 11px 25px;
	border-radius: 5px;
	font-size: 14px;
}

.btn-default:hover {
	background-color: #deb923;
	color: #000;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {}

@media (max-width: 600px) {
	.zones-container {
		width: 100%;
	}
}


/* =============================
   3. 404 STYLES 
================================ */

.error-content p {
	margin: 0 0 40px;
	line-height: 30px;
}

.error-content .error-head {
	margin: 0 0 50px;
}

.error-content .error-head span {
	width: 270px;
	height: 270px;
	line-height: 270px;
	background-color: #e6ddd0;
	font-size: 130px;
	color: #c5b7a3;
	display: inline-block;
	border-radius: 50%;
	font-weight: 300;
	margin: 0 -28px;
}

.error-content .error-head span:nth-child(2) {
	background-color: #c4b39a;
	color: #a39278;
}

/* =============================
   4. CONTACT STYLES
================================ */

.contact .cinfo p {
	margin: 0 0 27px;
}

.contact .cinfo p i {
	width: 15px;
	font-size: 10px;
	display: inline-block;
}

.contact .cinfo p i.fa {
	font-size: 13px;
}

.contact .cinfo p.abbr {
	line-height: 30px;
}

.contact .contact-form {
	border: 2px solid #eaeaea;
	padding: 25px 50px 40px;
}

.contact .contact-form i {
	font-size: 50px;
	margin: 0 0 10px;
	color: #e6ddd0;
	display: block;
}

.contact .contact-form .h2 {
	margin: 0 0 30px;
}

.contact .contact-form input {
	width: 100%;
	border: none;
	height: 30px;
	border-bottom: 2px solid #eaeaea;
	color: #65594d;
	font-size: 15px;
	margin: 0 0 28px;
	background: transparent;
}

.contact .contact-form textarea {
	width: 100%;
	border: none;
	height: 95px;
	border-bottom: 2px solid #eaeaea;
	color: #65594d;
	font-size: 15px;
	margin: 0 0 34px;
}

.contact .contact-form button {
	padding: 11px 40px;
}

.contact .contact-form2 input {
	width: 100%;
	border: none;
	height: 47px;
	color: #939393;
	font-size: 14px;
	padding: 0 24px;
	margin: 0 0 20px;
	background: #f4f4f4;
}

.contact .contact-form2 textarea {
	width: 100%;
	border: none;
	height: 178px;
	border-bottom: 2px solid #eaeaea;
	color: #939393;
	font-size: 14px;
	padding: 19px 24px;
	margin: 0 0 20px;
	background: #f4f4f4;
}

.contact .contact-form2 button {
	padding: 11px 40px;
}

.contact-form input::-webkit-input-placeholder {
	color: #65594d;
}

.contact-form input:-moz-placeholder {
	color: #65594d;
}

.contact-form input::-moz-placeholder {
	color: #65594d;
}

.contact-form input:-ms-input-placeholder {
	color: #65594d;
}

.contact-form textarea::-webkit-input-placeholder {
	color: #65594d;
}

.contact-form textarea:-moz-placeholder {
	color: #65594d;
}

.contact-form textarea::-moz-placeholder {
	color: #65594d;
}

.contact-form textarea:-ms-input-placeholder {
	color: #65594d;
}

/* =============================
   5. GOOGLE MAP
================================ */

#map {
	height: 250px;
	width: 100%;
	background: #f2f2f2;
}

/* =============================
   6. FAQ
================================ */

.accordion .panel {
	margin-bottom: 0;
	padding-bottom: 5px;
	border-radius: 0;
	border: none;
	background: transparent;
	box-shadow: none;
}

.accordion .accordion-toggle {
	display: table;
	width: 100%;
	font-family: Oxygen;
	font-weight: bold;
	color: #65594d;
	padding: 13px 40px 13px 0;
	border: none;
	border-bottom: 1px solid #eeeeee;
	font-size: 16px;
	position: relative;
}

.accordion .accordion-toggle .indicator {
	position: absolute;
	right: 0;
	font-size: 10px;
	top: 50%;
	margin-top: -4px;
	color: #000;
}

.accordion .panel-body {
	padding: 20px 0 0;
}

.accordion .panel-body p {
	font-size: 15px;
	line-height: 24px;
	margin: 0 0 25px;
}

.accordion .panel-body p:last-child {
	margin: 0 0 5px;
}

/* =============================
   7. SUBPAGES
================================ */

.resources .ri-thumb {
	position: relative;
	cursor: pointer;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.resources .ri-thumb:after {
	content: "";
	color: #fff;
	background: rgba(0, 0, 0, 0.8);
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	opacity: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}


.resources .ri-thumb h3 {
	position: absolute;
	color: #ffffff;
	font-weight: 600;
	width: 85%;
	max-width: 300px;
	background: #00000095;
	padding: 25px 15px;
	border-radius: 5px;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 50%;
	transform: translateY(-50%);
	z-index: 11;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.resources .resource-item:hover .ri-thumb:after {
	opacity: 1;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.resources .resource-item:hover .ri-thumb h3 {
	background: rgba(73, 48, 23, 0);
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.resources .resource-item p {
	padding: 34px 0;
}

.resources .resource-item .btn {
	padding: 12px 38px;
}

/* =============================
   8. FOOTER
================================ */

footer {
	background-color: #000000;
}

footer .footer-bottom {
	border-top: 1px solid #71655a;
	color: #c8bdad;
	padding: 35px 0 30px;
}

footer .footer-bottom i {
	color: #94897e;
	font-size: 10px;
	position: relative;
	top: -1px;
}

footer .footer-bottom a {
	color: white;
}

/* =============================
   9. OBITUARIES
================================ */

.single-content .single-info h5 {
	font-size: 24px;
	line-height: 24px;
	padding-bottom: 9px;
	border-bottom: 1px solid #f4f1ea;
	margin-bottom: 30px;
}

.single-content .single-info .condolence-item {
	border: 1px solid #f4f1ea;
	padding: 30px;
}

.single-content .single-info .condolence-item .meta {
	margin-bottom: 20px;
	display: block;
}

.single-content .single-info .condolence-item .meta span {
	margin-left: 30px;
}

.single-content .single-info .condolence-item .meta span i {
	margin-right: 4px;
	font-size: 13px;
}

.single-content .single-info .condolence-item .meta .reply {
	float: right;
	color: #65594d;
}

.single-content .single-info .condolence-item .meta .reply i {
	margin-right: 7px;
}

.single-content .single-info .condolence-item .meta .reply:hover {
	color: #999;
}

.single-content .single-info .condolence-item p {
	margin-bottom: 20px;
}

.single-content .single-info .condolence-item p em {
	font-style: italic;
}

.single-content .single-info .condolence-item cite {
	font-style: italic;
}

.single-content .single-info .page-nav {
	border-top: 1px solid #f4f1ea;
	padding-top: 30px;
}

.single-content .single-info .page-nav .btn {
	padding: 11px 32px !important;
	position: relative;
	top: -10px;
}

.single-content .single-info .page-nav ul li:first-child {
	margin-right: 68px;
}

.single-content .single-info .page-nav ul li:first-child a:hover {
	border-bottom: 2px solid transparent;
}

.single-content .single-info .page-nav ul li:last-child {
	margin-left: 68px;
}

.single-content .single-info .page-nav ul li:last-child a:hover {
	border-bottom: 2px solid transparent;
}

.single-content .single-info .page-nav ul li a {
	padding: 5px 8px;
	border-bottom: 2px solid transparent;
	display: table;
	color: #65594d;
}

.single-content .single-info .page-nav ul li a:hover {
	border-bottom: 2px solid #e6ddd0;
}

.single-content .single-info .page-nav ul li.active a {
	border-bottom: 2px solid #e6ddd0;
}

.single-content .single-info .details p {
	margin-bottom: 10px;
}

.single-content .single-info .details p i {
	width: 35px;
	text-align: center;
	color: #e6ddd0;
	font-size: 12px;
	display: inline-block;
}

.single-content .single-info .details .direction {
	margin-bottom: 20px;
	display: block;
	text-align: center;
	width: 161px;
}

.single-content .single-info .details .direction:hover {
	color: #999;
}

.single-content .single-info .details .btn {
	padding: 11px 38px;
}

.single-content .single-info .details form input[type=text],
.single-content .single-info .details form input[type=email] {
	width: 100%;
	border: none;
	height: 47px;
	color: #939393;
	font-size: 14px;
	padding: 0 24px;
	margin: 0 0 20px;
	background: #f4f4f4;
}

.single-content .single-info .details form input[type=checkbox],
.single-content .single-info .details form input[type=radio] {
	margin: 0 0 15px;
	opacity: 0;
}

.single-content .single-info .details form .rbox label {
	position: relative;
	cursor: pointer;
	padding-left: 3px;
}

.single-content .single-info .details form .rbox label:after {
	content: "";
	width: 11px;
	height: 11px;
	border: 2px solid #65594d;
	position: absolute;
	border-radius: 50%;
	left: -16px;
	top: 2px;
}

.single-content .single-info .details form .rbox label:before {
	content: "";
	width: 3px;
	height: 3px;
	background: #65594d;
	position: absolute;
	border-radius: 50%;
	left: -12px;
	top: 6px;
	opacity: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.single-content .single-info .details form input[type=checkbox]:checked+label:before,
.single-content .single-info .details form input[type=radio]:checked+label:before {
	opacity: 1;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.single-content .single-info .details form .cbox label {
	position: relative;
	cursor: pointer;
	padding-left: 6px;
}

.single-content .single-info .details form .cbox label:after {
	content: "";
	width: 12px;
	height: 12px;
	border: 1px solid #cccccc;
	position: absolute;
	left: -16px;
	top: 0.5px;
}

.single-content .single-info .details form .cbox label:before {
	content: "\f00c";
	font-family: Fontawesome;
	width: 12px;
	height: 12px;
	position: absolute;
	left: -16px;
	top: 0.5px;
	opacity: 1;
	color: #000;
	font-size: 9px;
	text-align: center;
	line-height: 12px;
	opacity: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.single-content .single-info .details form .row {
	margin: 0 -10px;
}

.single-content .single-info .details form .row .col-md-6 {
	padding: 0 10px;
}

.single-content .single-info .details form button {
	min-width: 170px;
	text-align: center;
}

.single-content aside .frame h4 {
	font-size: 30px;
	margin: 22px 0 6px;
}

.single-content aside .frame p {
	color: #969696;
	margin: 0 0 5px;
}

.single-content aside .frame img {
	width: 100%;
}

.single-content aside .links a {
	line-height: 58px;
	background-color: #f4f4f4;
	padding: 0 44px 0 22px;
	display: table;
	width: 100%;
	margin-bottom: 10px;
	font-size: 18px;
	font-family: Crimson Text, serif;
	color: #65594d;
	position: relative;
}

.single-content aside .links a i {
	color: #f4f4f4;
	position: absolute;
	right: 25px;
	font-size: 14px;
}

.single-content aside .links a:hover {
	background-color: #e6ddd0;
	color: #65594d;
}

.single-content aside .links a.active {
	background-color: #e6ddd0;
	color: #65594d;
}

.single-content aside .contact-widget {
	background-color: #eeeeee;
	padding: 33px 20px 30px;
	position: relative;
}

.single-content aside .contact-widget:after {
	content: "";
	border: 2px solid #fff;
	position: absolute;
	top: 4%;
	right: auto;
	left: 4%;
	width: 92%;
	height: 92%;
}

.single-content aside .contact-widget p.lead {
	font-size: 15px;
	color: #65594d;
	line-height: 21px;
}

.single-content aside .contact-widget p.lead span {
	font-size: 29px;
	display: block;
}

.single-content aside .contact-widget h6 {
	background: #e5e5e5;
	line-height: 65px;
	font-size: 30px;
	margin: 3px -20px 15px;
	padding: 0 40px;
	color: #65594d;
}

.single-content aside .contact-widget p i {
	font-size: 14px;
	position: relative;
	top: 0.5px;
}



.play-button {
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	z-index: 111;
	width: 70px;
	height: 70px;
	line-height: 70px;
	padding-left: 26px;
	color: #fff;
	font-size: 22px;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	cursor: pointer;
	transform: translate(-50%, -50%);
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.play-button:hover {
	background: black;
}

.play-button.hidden {
	display: table;
	opacity: 0;
	visibility: hidden;
}

/* =============================
   10. GALLERY
================================ */

.gallery-carousel .slick-dots {
	margin-top: 30px;
}

.gallery-carousel .slick-dots li {
	float: left;
	margin: 0 30px 0 0;
	opacity: 0.3;
	cursor: pointer;
	position: relative;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.gallery-carousel .slick-dots li.slick-active {
	opacity: 1;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.gallery-carousel .slick-dots li:nth-child(2):after {
	content: "\f104";
	font-family: Flaticon;
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	z-index: 111;
	width: 35px;
	height: 35px;
	line-height: 35px;
	padding-left: 13px;
	color: #fff;
	font-size: 11px;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	cursor: pointer;
	transform: translate(-50%, -50%);
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.send-flowers {
	cursor: pointer;
}

.send-flowers .sf-thumb {
	border: 1px solid #e4e4e4;
	position: relative;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.send-flowers .sf-thumb:after {
	content: "";
	background: #fff;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	z-index: 5;
	opacity: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.send-flowers .sf-thumb i {
	background: #65594d;
	width: 65px;
	height: 65px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	line-height: 65px;
	text-align: center;
	font-size: 17px;
	border-radius: 50%;
	z-index: 11;
	opacity: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.send-flowers:hover .sf-thumb:after {
	opacity: 0.6;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.send-flowers:hover .sf-thumb i {
	opacity: 1;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.send-flowers h4 {
	font-size: 24px;
	color: #65594d;
	margin: 0 0 15px;
}

.send-flowers span {
	display: block;
	font-size: 24px;
	color: #65594d;
}

.send-flowers em {
	display: block;
	font-size: 14px;
	color: #65594d;
	margin: 20px 0 30px;
}

.send-flowers em i {
	font-size: 16px;
	color: #bebebe;
	margin-right: 5px;
	position: relative;
	top: 2px;
}

.send-flowers .btn {
	padding: 11px 38px;
}

.send-flowers .btn i {
	margin-right: 3px;
}

.section-head p.lead {
	font-size: 16px;
	line-height: 26px;
}

/* =============================
   11. LOCATION
================================ */

.location-content .cinfo span {
	display: block;
	line-height: 26px;
	margin: 15px 0 0;
}

.location-content #map,
.location-content #map2,
.location-content #map3 {
	height: 210px;
	width: 100%;
}

.location-content .cinfo span b {
	display: block;
	font-size: 18px;
}

.location-content .cinfo em {
	font-style: italic;
	margin: 8px 0 17px;
	display: block;
}

.location-content .cinfo p.abbr {
	text-align: left;
	margin: 0 auto;
	display: table;
	line-height: 30px;
}

.location-content .cinfo .sep {
	border-top: 2px solid #f7f7f7;
	margin: 20px 0 20px;
}

.location-content .cinfo p i.fa {
	font-size: 13px;
}

.location-content .cinfo p i {
	width: 15px;
	font-size: 10px;
	display: inline-block;
}

.location-carousel-wrap {
	position: relative;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 67px;
	margin-bottom: 60px;
}

.location-carousel-wrap .prev {
	cursor: pointer;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: #65594d;
	color: #fff;
	font-size: 18px;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -68px;
	left: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.location-carousel-wrap .prev i {
	display: inline-block;
	transform: rotate(180deg);
}

.location-carousel-wrap .prev:hover {
	background-color: #000;
	color: #fff;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.location-carousel-wrap .next {
	cursor: pointer;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: #65594d;
	color: #fff;
	font-size: 18px;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -68px;
	right: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.location-carousel-wrap .next:hover {
	background-color: #000;
	color: #fff;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.location-carousels,
.location-carousel {
	padding: 0 110px;
}

.location-carousels .c-info,
.location-carousel .c-info {
	padding: 0 15px 0 197px;
	position: relative;
	cursor: pointer;
	min-height: 125px;
}

.location-carousels .c-info h4,
.location-carousel .c-info h4 {
	color: #65594d;
	font-size: 24px;
	margin: 0 0 15px;
}

.location-carousels .c-info p i.fa,
.location-carousel .c-info p i.fa {
	font-size: 13px;
}

.location-carousels .c-info p i,
.location-carousel .c-info p i {
	width: 15px;
	font-size: 10px;
	display: inline-block;
}

.location-carousels .c-info span.fa,
.location-carousel .c-info span.fa {
	width: 124px;
	height: 124px;
	border: 2px solid #e6ddd0;
	color: #fff;
	background-color: #e6ddd0;
	line-height: 120px;
	text-align: center;
	font-size: 50px;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 15px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.location-carousels .c-info:hover span.fa,
.location-carousel .c-info:hover span.fa {
	border: 2px solid #e6ddd0;
	color: #e6ddd0;
	background-color: transparent;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

/* =============================
   12. FACILITIES
================================ */

.facilities aside .links a {
	line-height: 58px;
	background-color: #f4f4f4;
	padding: 0 44px 0 22px;
	display: table;
	width: 100%;
	margin-bottom: 10px;
	font-size: 18px;
	font-family: Crimson Text, serif;
	color: #65594d;
	position: relative;
}

.facilities aside .links a i {
	color: #f4f4f4;
	position: absolute;
	right: 25px;
	font-size: 14px;
}

.facilities aside .links a:hover {
	background-color: #e6ddd0;
	color: #65594d;
}

.facilities aside .links a.active {
	background-color: #e6ddd0;
	color: #65594d;
}

.facilities .team-info {
	position: relative;
	padding-bottom: 25px;
	margin-bottom: 25px;
	border-bottom: 1px solid #f2f2f2;
	display: inline-block;
}

.facilities .team-info .col-md-3 {
	width: 21%;
}

.facilities .team-info .col-md-9 {
	width: 79%;
}

.facilities .team-info .social {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 44;
}

.facilities .team-info .social a {
	margin: 0 3px;
	width: 23px;
	height: 23px;
	line-height: 23px;
	text-align: center;
	color: #fff;
	background: #e6ddd0;
	display: inline-block;
	border-radius: 50%;
	font-style: 13px;
}

.facilities .team-info .social a:hover {
	background: #65594d;
}

.facilities .team-info .staff-title {
	font-style: italic;
}

.facilities .team-info .staff-title span {
	font-style: normal;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 18px;
	display: block;
	margin-bottom: 12px;
}

.facilities .team-info p i {
	font-size: 15px;
	margin-right: 5px;
	color: #e6ddd0;
	position: relative;
	top: 0.5px;
}

.no-border {
	border: none !important;
}

.location-info #map {
	height: 303px;
}

.location-info h5 {
	font-size: 30px;
	line-height: 30px;
	padding-bottom: 9px;
	border-bottom: 1px solid #f4f1ea;
	margin-bottom: 30px;
}

.location-info .direction {
	float: right;
	margin: 0;
	display: block;
	position: relative;
	top: 10px;
}

.direction:hover {
	color: #999;
}

.location-info .cinfo {
	margin-top: -10px;
}

.location-info .cinfo p.abbr {
	line-height: 30px;
}

.location-info .cinfo p i {
	width: 15px;
	font-size: 10px;
	display: inline-block;
}

.location-info .cinfo p i.fa {
	font-size: 13px;
}

.location-info ul.location-ul li {
	border-bottom: 1px solid #f2f2f2;
	margin-bottom: 25px;
	padding-bottom: 20px;
}

.location-info ul.location-ul li h4 {
	font-family: 'Oxygen', sans-serif;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.location-info ul.location-ul li:last-child {
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.location-info form input[type=text],
.location-info form input[type=email] {
	width: 100%;
	border: none;
	height: 47px;
	color: #939393;
	font-size: 14px;
	padding: 0 24px;
	margin: 0 0 20px;
	background: #f4f4f4;
}

.location-info form textarea {
	width: 100%;
	border: none;
	height: 107px;
	color: #939393;
	font-size: 14px;
	padding: 19px 24px;
	margin: 0 0 20px;
	background: #f4f4f4;
}

.location-info form input[type=checkbox],
.location-info form input[type=radio] {
	margin: 0 0 15px;
	opacity: 0;
}

.location-info form .rbox label {
	position: relative;
	cursor: pointer;
	padding-left: 3px;
}

.location-info form .rbox label:after {
	content: "";
	width: 11px;
	height: 11px;
	border: 2px solid #65594d;
	position: absolute;
	border-radius: 50%;
	left: -16px;
	top: 2px;
}

.location-info form .rbox label:before {
	content: "";
	width: 3px;
	height: 3px;
	background: #65594d;
	position: absolute;
	border-radius: 50%;
	left: -12px;
	top: 6px;
	opacity: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.location-info form input[type=checkbox]:checked+label:before,
.location-info form input[type=radio]:checked+label:before {
	opacity: 1;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.location-info form .cbox label {
	position: relative;
	cursor: pointer;
	padding-left: 6px;
}

.location-info form .cbox label:after {
	content: "";
	width: 12px;
	height: 12px;
	border: 1px solid #cccccc;
	position: absolute;
	left: -16px;
	top: 0.5px;
}

.location-info form .cbox label:before {
	content: "\f00c";
	font-family: Fontawesome;
	width: 12px;
	height: 12px;
	position: absolute;
	left: -16px;
	top: 0.5px;
	opacity: 1;
	color: #000;
	font-size: 9px;
	text-align: center;
	line-height: 12px;
	opacity: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.location-info form .row {
	margin: 0 -10px;
}

.location-info form .row .col-md-6 {
	padding: 0 10px;
}

.location-info form button {
	min-width: 170px;
	text-align: center;
}

.location-info form .cbox-other {
	display: table;
	width: 100px;
	float: left;
	position: relative;
	top: 15px;
}

.location-info form .cbox-other+input {
	width: 273px;
	float: left;
}

/* =============================
   13. AMENITIES
================================ */

.amenities-carousel .slick-dots {
	margin: 0px auto 0;
	position: absolute;
	bottom: 24px;
	right: 0;
	left: 0;
	z-index: 111;
	display: table !important;
}

.amenities-carousel .slick-dots li {
	float: left;
	margin: 0 3px;
}

.amenities-carousel .slick-dots li button {
	width: 14px;
	height: 14px;
	font-size: 0px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: transparent;
	padding: 0;
}

.amenities-carousel .slick-dots li.slick-active button {
	background: #fff;
}

.amenities-ul li {
	margin-bottom: 28px;
}

.amenities-ul li h4 {
	font-family: 'Oxygen', sans-serif;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.amenities-ul li h4 i {
	font-size: 12px;
	color: #e6ddd0;
	margin-right: 5px;
	position: relative;
	top: -1.5px;
}

.amenities-ul li:last-child {
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
	.amenities-carousel .slick-dots {
		margin: 0px auto 0;
		position: absolute;
		bottom: 24px;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		z-index: 111;
	}
}

.amenities-carousel-wrap {
	position: relative;
	margin: 0 -15px;
}

.amenities-carousel-wrap .item {
	padding: 0 15px;
}

.amenities-carousel-wrap .prev2 {
	cursor: pointer;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: rgba(101, 89, 77, 0.8);
	color: #fff;
	font-size: 18px;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -35px;
	left: 15px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.amenities-carousel-wrap .prev2 i {
	display: inline-block;
	transform: rotate(180deg);
}

.amenities-carousel-wrap .prev2:hover {
	background-color: #65594d;
	color: #fff;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.amenities-carousel-wrap .next2 {
	cursor: pointer;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: rgba(101, 89, 77, 0.8);
	color: #fff;
	font-size: 18px;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -35px;
	right: 15px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.amenities-carousel-wrap .next2:hover {
	background-color: #65594d;
	color: #fff;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

/* =============================
   14. STAFF
================================ */

.staff .team-info .social {
	position: relative;
	top: 0;
	right: 0;
	z-index: 11;
	margin: 25px 0 15px;
}

.staff .team-info {
	padding-bottom: 0;
	margin-bottom: 43px;
	border-bottom: none;
}

.staff-pic {
	background-color: transparent;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
	display: table;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.staff .team-info:hover .staff-pic {
	background-color: #493017;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.staff .team-info hr {
	border: none;
	border-bottom: 1px solid #f0f0f0;
	margin: 4px 0 17px;
}

.staff .team-info .staff-pic img {
	opacity: 1;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.staff .team-info:hover .staff-pic img {
	opacity: 0.2;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.staff-pic-single {
	background-color: transparent;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
	display: table;
}

.staff-single .social {
	margin: 0 0 18px !important;
}

.staff-single .social a {
	margin: 0 -3px;
}

.location-single #map {
	height: 365px;
}

.location-single .cinfo p.abbr {
	text-align: left;
	margin: 0;
}

.location-single .cinfo span b {
	font-size: 30px;
	font-weight: normal !important;
}

.location-single .cinfo span {
	display: block;
	line-height: 33px;
	margin: -6px 0 0;
}

.benefits {
	padding-top: 40px;
}

.benefits li {
	position: relative;
}

.benefits li span {
	width: 43px;
	height: 43px;
	color: #65594d;
	background: #e6ddd0;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: -13px;
	text-align: center;
	line-height: 43px;
	font-size: 16px;
}

.benefits li h4 {
	color: #65594d;
	font-size: 26px;
	margin: 0 0 14px;
}

.cta {
	background: url(../img/other/2.jpg) no-repeat center;
	background-color: #46311c;
	background-size: cover;
}

.cta h3 {
	font-size: 50px;
	color: #fff;
	margin: 0 0 3px;
}

.cta p {
	color: #d2beae;
}

footer h4 {
	font-size: 24px;
	color: #ffffff;
	font-weight: 600;
	margin: 0 0 28px;
	font-weight: bolder;
}

footer .cinfo .abbr a {
	color: #e6ddd0;
	line-height: 38px;
	margin-top: -7px;
	font-size: large;
}

footer .cinfo p {
	color: #e6ddd0;
	line-height: 38px;
	margin-top: -7px;
}

.footer-links {
	font-size: 24px;
	color: #fff;
	font-weight: 600;
	margin: 0 0 28px;
}

footer .cinfo p i {
	width: 15px;
	font-size: 10px;
	display: inline-block;
}

footer .cinfo p i.fa {
	font-size: 13px;
}

footer .intro img {
	width: 50%;
	margin-top: -85px;
}

footer .intro p {
	color: white;
	line-height: 20px;
	text-align: justify;
	margin-left: 38px;
}

footer .intro p span {
	color: white;
	font-size: large;
	text-align: center;
}

footer .footer-social {
	padding-top: 15px;
	margin: 0 -3px;
}

footer .footer-social a {
	width: 23px;
	height: 23px;
	background: #e6ddd0;
	display: inline-block;
	text-align: center;
	line-height: 23px;
	border-radius: 50%;
	font-size: 13px;
	color: #65594d;
	margin: 0 4px;
}

footer .footer-social a:hover {
	background: #deb923;
	color: #e6ddd0;
}

footer .footer-div li {
	padding-left: 0px;
	position: relative;
	margin-bottom: 25px;
}

footer .footer-div li:last-child {
	margin-bottom: 0px;
}

footer .footer-div li img {
	position: absolute;
	top: 0;
	left: 0;
}

footer .footer-div li h3 {
	color: #fff;
	font-size: 20px;
	margin: 0px 0 9px;
	display: table;
	position: relative;
	top: 7px;
}

footer .footer-div li p {
	font-size: 14px;
	color: #e6ddd0;
	margin: 0 0 12px;
}

footer .footer-div li a {
	line-height: 10px;
	font-size: 13px;
	text-transform: uppercase;

	display: table;
	padding: 0 19px;
	border-radius: 5px;
	color: #ffffff;
}

footer .footer-div li a:hover {
	color: #deb923;


}

footer .footer-quote p {
	font-size: 15px;
	line-height: 26px;
	color: #e6ddd0;
}

footer .footer-quote p em {
	font-style: italic;
}

footer .footer-quote .slick-dots {
	margin: 15px auto 0;
	position: relative;
	bottom: 0px;
	right: 0;
	left: 0;
	z-index: 111;
	display: table;
}

footer .footer-quote .slick-dots li {
	float: left;
	margin: 0 2px;
}

footer .footer-quote .slick-dots li button {
	width: 10px;
	height: 10px;
	font-size: 0px;
	border: 2px solid #e6ddd0;
	border-radius: 50%;
	background: transparent;
	padding: 0;
}

footer .footer-quote .slick-dots li.slick-active button {
	background: #e6ddd0;
}

/* =============================
   16. ABOUT
================================ */

.about-content .lead {
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
}

.accordion.accordion2 .accordion-toggle {
	display: table;
	font-family: Crimson Text;
	font-weight: 400;
	color: #65594d;
	border: none;
	padding: 13px 40px 13px 0;
	font-size: 24px;
}

.accordion.accordion2 .panel-default {
	margin-bottom: -2px;
	padding-bottom: 3px;
	border-bottom: 1px solid #eee;
}

.accordion.accordion2 .panel-default.last {
	border-bottom: none;
}

.accordion.accordion2 .panel-body {
	padding: 10px 0 15px;
}

.bg-gray {
	background: #f4f4f4;
}

/* =============================
   17. SERVICES
================================ */


.services .service-item {
	cursor: pointer;
	margin-left: 86px;
}

.center-service {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 86px;

}

.services .service-item h4 {
	color: #65594d;
	font-size: 22px;
	text-transform: uppercase;
	margin: 25px 0 16px;
}

.services .service-item i {
	background: #FFD700;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	line-height: 70px;
	text-align: center;
	color: #65594d;
	display: inline-block;
	font-size: 28px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.services .service-item:hover i {
	background: #deb823;
	color: #e6ddd0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.services2 {
	background: #000000 url(../img/about/2.jpg) no-repeat center;
	background-size: cover;
	margin-bottom: 10%;
}

.services2 .service2-item {
	background: rgba(43, 27, 11, 0.5);
	padding: 80px 52px 67px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.services2 .service2-item:hover {
	background: rgba(7, 7, 7, 0.8);
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.services2 .service2-item h4 {
	font-size: 30px;
	color: #fff;
}

.services2 .service2-item h4 i {
	color: #e6ddd0;
	font-size: 18px;
	margin-right: 7px;
	position: relative;
	top: -1px;
}

.services2 .service2-item .sep {
	width: 77px;
	height: 2px;
	background: #65594d;
	margin: 23px auto 24px;
}

.services2 .service2-item p {
	color: #e6ddd0;
}

.fc-item {
	position: relative;
	cursor: pointer;
}

.fc-item .fc-item-inner {
	background: rgba(73, 48, 23, 0.8);
	padding: 0 15px;
	position: absolute;
	top: 0px;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	text-align: center;
}

.fc-item .fc-item-inner h4 {
	font-size: 24px;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0%, -50%);
	right: 0;
	opacity: 1;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.fc-item .fc-item-inner a {
	top: 50%;
	position: absolute;
	left: 50%;
	right: 0;
	margin: 0 auto;
	display: table;
	transform: translate(-50%, -50%);
	opacity: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.fc-item .fc-item-inner:hover h4 {
	opacity: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.fc-item .fc-item-inner:hover a {
	opacity: 1;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.fc-info {
	padding-right: 50px;
}

.fc-info p {
	line-height: 30px;
}

.fc-info p.lead {
	font-size: 18px;
	font-weight: 400;
}

/* =============================
   18. NEWSLETTER
================================ */

.newsletter-wrap {
	background: #222222 url(../img/2.jpg) no-repeat center;
	background-size: cover;
}

.newsletter-wrap h2 {
	font-family: Crimson Text, sans-serif;
	color: #fff;
	font-size: 50px;
}

.newsletter-wrap p {
	color: #fff;
	margin: 17px 0 30px;
}

.newsletter-wrap form {
	height: 47px;
	width: 1005;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
}

.newsletter-wrap form input {
	width: 100%;
	height: 47px;
	border: none;
	padding: 0 60px 0 25px;
	font-size: 15px;
	color: #e6ddd0;
	background: transparent;
}

.newsletter-wrap form button {
	height: 47px;
	width: 60px;
	color: #e6ddd0;
	position: absolute;
	top: 0;
	right: 0;
	background: transparent;
	border: none;
}

.ratings {
	padding: 0 7px;
	display: inline-block;
}

.ratings span {
	font-size: 13px;
	color: #65594d;
	margin: 0 -1px;
	display: inline-block;
	position: relative;
	top: -1px;
}

.ratings span.no {
	color: #d9d9d9;
}

/* =============================
   19. BLOG
================================ */

.blog-content article h4 {
	font-size: 24px;
	line-height: 30px;
	margin: 25px 0 11px;
	color: #65594d;
}

.blog-content article h4 a {
	color: #65594d;
}

.blog-content article h4 a:hover {
	color: #969696;
}

.blog-content article .post-meta {
	color: #969696;
	line-height: 21px;
}

.blog-content article .post-meta span {
	margin-right: 25px;
}

.blog-content article .post-meta span i {
	font-size: 12px;
	margin-right: 7px;
	color: #b6b6b6;
}

.blog-content article hr {
	border: none;
	border-top: 2px solid #f3f3f3;
	margin: 14px 0 19px;
}

.blog-content article p {
	margin-bottom: 22px;
}

.blog-content .page-nav {
	border-top: 1px solid #f4f1ea;
	padding-top: 30px;
}

.blog-content .page-nav .btn {
	padding: 11px 32px !important;
	position: relative;
	top: -10px;
}

.blog-content .page-nav ul li:first-child {
	margin-right: 68px;
}

.blog-content .page-nav ul li:first-child a:hover {
	border-bottom: 2px solid transparent;
}

.blog-content .page-nav ul li:last-child {
	margin-left: 68px;
}

.blog-content .page-nav ul li:last-child a:hover {
	border-bottom: 2px solid transparent;
}

.blog-content .page-nav ul li a {
	padding: 5px 8px;
	border-bottom: 2px solid transparent;
	display: table;
	color: #65594d;
}

.blog-content .page-nav ul li a:hover {
	border-bottom: 2px solid #e6ddd0;
}

.blog-content .page-nav ul li.active a {
	border-bottom: 2px solid #e6ddd0;
}

.sidebar .side-widget h5 {
	font-size: 24px;
	color: #65594d;
	border-bottom: 1px solid #eeeeee;
	margin: 0 0 25px;
	padding-bottom: 8px;
}

.sidebar .side-widget .search {
	background: #f4f4f4;
	height: 45px;
	border-radius: 5px;
	position: relative;
}

.sidebar .side-widget .search input {
	width: 100%;
	height: 45px;
	border: none;
	background: transparent;
	padding: 0 45px 0 24px;
	font-size: 14px;
	color: #bdbdbd;
}

.sidebar .side-widget .search button {
	color: #a7a7a7;
	font-size: 15px;
	position: absolute;
	top: 0;
	right: 0;
	height: 45px;
	width: 35px;
	padding: 0;
	border: none;
	background: transparent;
	text-align: left;
}

.sidebar .side-widget .side-cat li {
	font-size: 14px;
	color: #65594d;
	padding-left: 30px;
	position: relative;
	margin-bottom: 32px;
}

.sidebar .side-widget .side-cat li:last-child {
	margin-bottom: 0px;
}

.sidebar .side-widget .side-cat li i {
	position: absolute;
	left: 12px;
}

.sidebar .side-widget .side-cat li a {
	color: #65594d;
}

.sidebar .side-widget .side-cat li a:hover {
	color: #999;
}

.sidebar .side-widget .side-posts li {
	padding-left: 100px;
	position: relative;
	min-height: 70px;
}

.sidebar .side-widget .side-posts li img {
	position: absolute;
	top: 0;
	left: 0;
}

.sidebar .side-widget .side-posts li h4 {
	font-size: 14px;
	font-family: Oxygen, sans-serif;
	margin: 7px 0 5px;
}

.sidebar .side-widget .side-posts li h4 a {
	color: #65594d;
}

.sidebar .side-widget .side-posts li h4 a:hover {
	color: #999;
}

.sidebar .side-widget .side-posts li .meta {
	color: #969696;
	line-height: 20px;
}

.sidebar .side-widget .side-posts li .meta i {
	font-size: 12px;
	margin-right: 7px;
	color: #b6b6b6;
}

.sidebar .side-widget .side-comments p {
	font-size: 14px;
	line-height: 21px;
}

.sidebar .side-widget .side-comments p a {
	color: #8e8e8d;
	border-bottom: 1px solid #8e8e8d;
}

.sidebar .side-widget .side-comments p a:hover {
	color: #65594d;
	border-bottom: 1px solid #65594d;
}

.sidebar .side-widget #tweecool ul li {
	font-size: 14px;
	line-height: 24px;
	color: #65594d;
	padding-left: 48px;
	margin-bottom: 20px;
	position: relative;
}

.sidebar .side-widget #tweecool ul li:after {
	content: "\f123";
	font-family: Flaticon;
	color: #e6ddd0;
	font-size: 30px;
	position: absolute;
	top: 7px;
	left: 0;
}

.sidebar .side-widget #tweecool ul li:last-child {
	margin-bottom: 0px;
}

.sidebar .side-widget #tweecool ul li a {
	color: #a5a5a5;
	border-bottom: 1px solid transparent;
}

.sidebar .side-widget #tweecool ul li a:hover {
	color: #a5a5a5;
	border-bottom: 1px solid #a5a5a5;
}

.sidebar .side-widget .side-location {
	padding-left: 95px;
	position: relative;
}

.sidebar .side-widget .side-location h4 {
	font-size: 30px;
	color: #65594d;
	margin: 0 0 10px;
}

.sidebar .side-widget .side-location p {
	font-size: 14px;
	line-height: 20px;
	color: #818181;
}

.sidebar .side-widget .side-location i {
	width: 65px;
	height: 65px;
	background: #fff;
	border: 2px solid #e6ddd0;
	border-radius: 50%;
	line-height: 61px;
	text-align: center;
	font-size: 25px;
	color: #e6ddd0;
	position: absolute;
	left: 15px;
	top: -12px;
}

.sidebar .side-widget .side-obituaries {
	position: relative;
	padding-left: 100px;
}

.sidebar .side-widget .side-obituaries h4 {
	font-family: Oxygen, sans-serif;
	font-size: 15px;
	color: #65594d;
	line-height: 22px;
	border-bottom: 1px solid #f3f3f3;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.sidebar .side-widget .side-obituaries img {
	position: absolute;
	left: 0;
	top: 0;
}

.sidebar .side-widget .side-obituaries .meta {
	color: #969696;
	font-size: 13px;
	line-height: 20px;
}

.sidebar .side-widget .side-obituaries .meta i {
	font-size: 12px;
	margin-right: 7px;
	color: #b6b6b6;
}

.sidebar .side-widget .side-obituaries .meta i.fa-map-marker {
	height: 37px;
	float: left;
	position: relative;
	top: 4px;
	width: 13px;
}

.sidebar .contact-widget {
	background-color: #eeeeee;
	padding: 33px 20px 22px;
	position: relative;
}

.sidebar .contact-widget:after {
	content: "";
	border: 2px solid #fff;
	position: absolute;
	top: 4%;
	right: auto;
	left: 4%;
	width: 92%;
	height: 92%;
}

.sidebar .contact-widget p.lead {
	font-size: 15px;
	color: #65594d;
	line-height: 21px;
}

.sidebar .contact-widget p.lead span {
	font-size: 29px;
	display: block;
}

.sidebar .contact-widget h6 {
	background: #e5e5e5;
	line-height: 65px;
	font-size: 30px;
	margin: 3px -20px 15px;
	padding: 0 40px;
	color: #65594d;
}

.sidebar .contact-widget p i {
	font-size: 14px;
	position: relative;
	top: 0.5px;
}

.blog-single .single-meta {
	margin: 40px 0;
	background: #f9f9f9;
	height: 50px;
	padding: 0 20px;
	line-height: 50px;
}

.blog-single .social {
	margin: 0;
}

.blog-single .social a {
	width: 23px;
	height: 23px;
	background: #c4b39a;
	display: inline-block;
	text-align: center;
	line-height: 23px;
	border-radius: 50%;
	font-size: 12px;
	color: #f9f9f9;
	margin: 0 0 0 6px;
}

.blog-single .social a:hover {
	background: #65594d;
	color: #f9f9f9;
}

.about-author {
	padding-left: 165px;
	position: relative;
}

.about-author img {
	position: absolute;
	top: 0;
	left: 0;
}

.about-author h5 {
	font-size: 24px;
	color: #73685e;
	margin: 8px 0 13px;
	display: inline-block;
}

.about-author p {
	margin-bottom: 7px !important;
}

.about-author .social {
	margin: 0;
}

.about-author .social a {
	width: 23px;
	height: 23px;
	background: #c4b39a;
	display: inline-block;
	text-align: center;
	line-height: 23px;
	border-radius: 50%;
	font-size: 12px;
	color: #fff;
	margin: 0 6px 0 0;
}

.about-author .social a:hover {
	background: #65594d;
	color: #fff;
}

.related-articles {
	position: relative;
	padding: 50px 0 40px 100px;
	background: #f9f9f9;
}

.related-articles h2 {
	font-size: 30px;
	color: #65594d;
	border-bottom: 1px solid #e6e6e6;
	position: relative;
	z-index: 44;
	font-family: Crimson Text, sans-serif;
	margin-bottom: 40px;
	padding-bottom: 15px;
}

.related-articles .row {
	position: relative;
	z-index: 44;
}

.related-articles:after {
	content: "";
	background: #f9f9f9;
	position: absolute;
	width: 1000%;
	left: 0;
	height: 100%;
	top: 0;
	z-index: 0;
}

.related-comments {
	position: relative;
}

.related-comments h2 {
	font-size: 30px;
	color: #65594d;
	border-bottom: 1px solid #e6e6e6;
	position: relative;
	z-index: 44;
	font-family: Crimson Text, sans-serif;
	margin-bottom: 40px;
	padding-bottom: 15px;
}

.related-comments p i {
	color: #65594d !important;
}

.related-comments p a {
	color: #65594d;
	font-size: 13px;
}

.related-comments p a:hover {
	color: #999;
}

.facilities.related-comments .team-info p i {
	color: #65594d !important;
	margin-right: 3px;
}

.blog-comment-form h2 {
	font-size: 30px;
	color: #65594d;
	border-bottom: 1px solid #e6e6e6;
	position: relative;
	z-index: 44;
	font-family: Crimson Text, sans-serif;
	margin-bottom: 40px;
	padding-bottom: 15px;
}

.blog-comment-form form input[type=text],
.blog-comment-form form input[type=email] {
	width: 100%;
	border: none;
	height: 47px;
	color: #939393;
	font-size: 14px;
	padding: 0 24px;
	margin: 0 0 20px;
	background: #f4f4f4;
}

.blog-comment-form form textarea {
	width: 100%;
	border: none;
	height: 170px;
	color: #939393;
	font-size: 14px;
	padding: 19px 24px;
	margin: 0 0 20px;
	background: #f4f4f4;
}

/* =============================
   20. SHOP
================================ */

.checkout-content h2 {
	font-size: 30px;
	color: #65594d;
	border-bottom: 1px solid #e6e6e6;
	position: relative;
	z-index: 44;
	font-family: Crimson Text, sans-serif;
	margin-bottom: 30px;
	padding-bottom: 15px;
}

.checkout-content form label {
	font-size: 15px;
	font-weight: 400;
	color: #65594d;
	margin-bottom: 15px;
}

.checkout-content form .cc-select {
	width: 100%;
	border: none;
	height: 47px;
	color: #939393;
	font-size: 14px;
	margin: 0 0 20px;
	background: #f4f4f4;
	position: relative;
}

.checkout-content form .cc-select i {
	position: absolute;
	right: 18px;
	color: #665a4e;
	line-height: 47px;
}

.checkout-content form .cc-select select {
	padding: 0 24px;
	width: 100%;
	height: 47px;
	border: none;
	background: transparent;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	z-index: 11;
}

.checkout-content form .cc-select select option {
	padding: 5px 10px;
}

.checkout-content form input[type=text],
.checkout-content form input[type=email] {
	width: 100%;
	border: none;
	height: 47px;
	color: #939393;
	font-size: 14px;
	padding: 0 24px;
	margin: 0 0 20px;
	background: #f4f4f4;
}

.checkout-content form textarea {
	width: 100%;
	border: none;
	height: 107px;
	color: #939393;
	font-size: 14px;
	padding: 19px 24px;
	margin: 0;
	background: #f4f4f4;
}

.checkout-content form input[type=checkbox],
.checkout-content form input[type=radio] {
	margin: 0 0 15px;
	opacity: 0;
}

.checkout-content form .rbox label {
	position: relative;
	cursor: pointer;
	padding-left: 3px;
}

.checkout-content form .rbox label:after {
	content: "";
	width: 11px;
	height: 11px;
	border: 2px solid #65594d;
	position: absolute;
	border-radius: 50%;
	left: -16px;
	top: 2px;
}

.checkout-content form .rbox label:before {
	content: "";
	width: 3px;
	height: 3px;
	background: #65594d;
	position: absolute;
	border-radius: 50%;
	left: -12px;
	top: 6px;
	opacity: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.checkout-content form input[type=checkbox]:checked+label:before,
.checkout-content form input[type=radio]:checked+label:before {
	opacity: 1;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.checkout-content form .cbox label {
	position: relative;
	cursor: pointer;
	padding-left: 6px;
}

.checkout-content form .cbox label:after {
	content: "";
	width: 12px;
	height: 12px;
	border: 1px solid #cccccc;
	position: absolute;
	left: -16px;
	top: 0.5px;
}

.checkout-content form .cbox label:before {
	content: "\f00c";
	font-family: Fontawesome;
	width: 12px;
	height: 12px;
	position: absolute;
	left: -16px;
	top: 0.5px;
	opacity: 1;
	color: #000;
	font-size: 9px;
	text-align: center;
	line-height: 12px;
	opacity: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.checkout-content form .row {
	margin: 0 -10px;
}

.checkout-content form .row .col-md-6 {
	padding: 0 10px;
}

.checkout-content form button {
	min-width: 170px;
	text-align: center;
}

.checkout-content form .cbox-other {
	display: table;
	width: 100px;
	float: left;
	position: relative;
	top: 15px;
}

.checkout-content form .cbox-other+input {
	width: 273px;
	float: left;
}

.checkout-content form p {
	font-size: 14px;
	color: #939393;
	float: right;
	margin: 8px 0 0;
}

.checkout-content .cc-total {
	height: 70px;
	background: #fff;
	line-height: 70px;
	font-family: Crimson Text, sans-serif;
	font-size: 24px;
	color: #65594d;
	margin: 47px 0 30px;
	border: 1px solid #ececec;
}

.checkout-content .cart-head {
	line-height: 57px;
	background: #f4f4f4;
	padding: 0 30px 0 35px;
	display: table;
	width: 100%;
}

.checkout-content .cart-head span {
	font-size: 16px;
	color: #65594d;
	font-weight: bold;
	float: left;
}

.checkout-content .cart-head .hide-details {
	float: right;
	font-size: 14px;
	color: #65594d;
	cursor: pointer;
}

.checkout-content .cart-head .hide-details i {
	margin-left: 4px;
}

.checkout-content .cart-info {
	padding: 38px 0 38px 0;
	border: 1px solid #e2e2e2;
	border-bottom: none;
	border-top: none;
}

.checkout-content .cart-info .cart-thumb {
	display: inline-block;
}

.checkout-content .cart-info .cart-thumb img {
	border: 1px solid #e4e4e4;
}

.checkout-content .cart-info .cart-details {
	padding: 10px 30px 10px 0;
	display: inline-block;
	width: 100%;
}

.checkout-content .cart-info .cart-details .cart-title {
	font-size: 24px;
	color: #65594d;
	font-family: Crimson Text, sans-serif;
	margin-bottom: 25px;
}

.checkout-content .cart-info .cart-details .cart-title span {
	float: right;
}

.checkout-content .cart-info .cart-details .cart-desc {
	font-size: 15px;
	color: #65594d;
	margin-bottom: 22px;
}

.checkout-content .cart-info .cart-details .cart-desc span {
	float: right;
}

.alert.alert-warning {
	background-color: #f5e9e9;
	border: none;
	border-radius: 0px;
	padding: 25px;
	font-size: 15px;
	color: #65594d;
	margin: 0 0 10px;
}

.alert.alert-warning i {
	color: #be8c8c;
	margin-right: 5px;
}

.cart-info+.cc-total {
	margin-top: 0px;
}

.obituaries-content article h4 {
	font-size: 24px;
	line-height: 30px;
	margin: 0px 0 4px;
	color: #65594d;
}

.obituaries-content article hr {
	border: none;
	border-top: 1px solid #f3f3f3;
	margin: -13px 0 20px;
}

.obituaries-content article .btn:hover {
	background: #7c6f62;
}

.side-head {
	line-height: 70px;
	background: #eeeeee;
	padding-left: 70px;
	text-align: center;
	position: relative;
	font-size: 20px;
	color: #65594d;
	font-family: Crimson Text, sans-serif;
}

.side-head i {
	width: 70px;
	height: 70px;
	background: #e6ddd0;
	position: absolute;
	text-align: center;
	font-size: 30px;
	left: 0;
	top: 0;
}

.funeral-planning h2 {
	font-size: 23px;
	color: #65594d;
	border-bottom: 2px solid #f0f0f0;
	position: relative;
	z-index: 44;
	font-family: Crimson Text, sans-serif;
	margin-bottom: 30px;
	padding-bottom: 15px;
}

.funeral-planning p {
	font-size: 16px;
	line-height: 30px;
}

.funeral-planning p.last {
	font-size: 15px;
	line-height: 24px;
}

.funeral-carousel-wrap {
	position: relative;
}

.funeral-carousel .item img {
	width: 250px;
}

.funeral-carousel-wrap .prev3 {
	cursor: pointer;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: rgba(0, 0, 0, 0.8);
	color: #fff;
	font-size: 18px;
	text-align: center;
	position: absolute;
	top: 25px;
	margin-left: -35px;
	left: 50%;
	z-index: 777;
	transform: rotate(90deg);
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.funeral-carousel-wrap .prev3 i {
	display: inline-block;
	transform: rotate(180deg);
}

.funeral-carousel-wrap .prev3:hover {
	background-color: #000000;
	color: #fff;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.funeral-carousel-wrap .next3 {
	cursor: pointer;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: rgba(0, 0, 0, 0.8);
	color: #fff;
	font-size: 18px;
	text-align: center;
	position: absolute;
	bottom: 25px;
	margin-left: -35px;
	left: 50%;
	z-index: 777;
	transform: rotate(90deg);
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.funeral-carousel-wrap .next3:hover {
	background-color: #000000;
	color: #fff;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.faq-tabs .nav-tabs.nav-justified {
	margin: 0 -15px;
}

.faq-tabs .nav-tabs.nav-justified>li>a {
	border: none !important;
	margin-bottom: 0;
	background: #e6ddd0;
	border-radius: 40px !important;
	margin: 0 15px;
	cursor: pointer;
}

.faq-tabs .nav-tabs.nav-justified>li>a:hover {
	background: #65594d !important;
	color: #c3b5a7 !important;
}

.faq-tabs .nav-tabs.nav-justified>li.active>a {
	background: #65594d !important;
	color: #c3b5a7 !important;
}

.faq-tabs .tab-content {
	padding-top: 40px;
}

.timeline {
	list-style: none;
	padding: 0;
	position: relative;
}

.timeline:before {
	top: 0;
	bottom: 0;
	position: absolute;
	content: "";
	width: 2px;
	background-color: #ebebeb;
	left: 40px;
	/* margin-left: -1.5px; */
}

.timeline>li {
	margin-bottom: 50px;
	position: relative;
	min-height: 50px;
}

.timeline>li:after,
.timeline>li:before {
	content: " ";
	display: table;
}

.timeline>li:after {
	clear: both;
}

.timeline>li .timeline-panel {
	width: 100%;
	float: right;
	padding: 0 20px 0 100px;
	position: relative;
	text-align: left;
}

.timeline>li .timeline-panel:before {
	border-left-width: 0;
	border-right-width: 15px;
	left: -15px;
	right: auto;
}

.timeline>li .timeline-panel:after {
	border-left-width: 0;
	border-right-width: 14px;
	left: -14px;
	right: auto;
}

.timeline>li .timeline-image {
	left: 0;
	margin-left: 0;
	width: 80px;
	height: 80px;
	position: absolute;
	z-index: 100;
	color: #fff;
	border-radius: 100%;
	text-align: center;
}

.timeline>li .timeline-image h4 {
	font-size: 10px;
	margin-top: 12px;
	line-height: 14px;
}

.timeline>li.timeline-inverted>.timeline-panel {
	float: right;
	text-align: left;
	padding: 0 20px 0 100px;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
	border-left-width: 0;
	border-right-width: 15px;
	left: -15px;
	right: auto;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
	border-left-width: 0;
	border-right-width: 14px;
	left: -14px;
	right: auto;
}

.timeline>li:last-child {
	margin-bottom: 0;
}

.timeline .timeline-heading h4 {
	margin-top: 0;
	color: inherit;
	color: #65594d;
	font-size: 30px;
	margin: 0 0 19px;
}

.timeline .timeline-heading h4.subheading {
	text-transform: none;
}

.timeline .timeline-body>p,
.timeline .timeline-body>ul {
	margin-bottom: 0;
}

@media (min-width: 768px) {

	.dropdown-menu-v2 .col-md-3,
	.dropdown-menu-v2 .col-md-4,
	.dropdown-menu-v2 .col-md-5 {
		float: left;
	}

	.timeline:before {
		left: 50%;
	}

	.timeline>li {
		margin-bottom: 100px;
		min-height: 100px;
	}

	.timeline>li .timeline-panel {
		width: 41%;
		float: left;
		padding: 0 20px 20px 30px;
		text-align: right;
	}

	.timeline>li .timeline-image {
		width: 180px;
		height: 100px;
		left: 50%;
		margin-left: -50px;
	}

	.timeline>li .timeline-image h4 {
		font-size: 13px;
		margin-top: 16px;
		line-height: 18px;
	}

	.timeline>li.timeline-inverted>.timeline-panel {
		float: right;
		text-align: left;
		padding: 0 30px 20px 20px;
	}
}

@media (min-width: 992px) {

	.timeline>li .timeline-panel,
	.timeline>li.timeline-inverted>.timeline-panel {
		padding: 0 20px 20px;
	}

	.timeline>li {
		min-height: 150px;
	}

	.timeline>li .timeline-image {
		width: 150px;
		height: 150px;
		margin-left: -75px;
	}

	.timeline>li .timeline-image h4 {
		font-size: 18px;
		margin-top: 30px;
		line-height: 26px;
	}
}

@media (min-width: 1200px) {
	.timeline>li {
		min-height: 170px;
	}

	.timeline>li .timeline-panel {
		padding: 0 20px 20px 100px;
	}

	.timeline>li .timeline-image {
		width: 170px;
		height: 170px;
		margin-left: -85px;
	}

	.timeline>li .timeline-image h4 {
		margin-top: 40px;
	}

	.timeline>li.timeline-inverted>.timeline-panel {
		padding: 0 100px 20px 20px;
	}
}

.table>thead>tr>th,
.table>thead>tr>td {
	padding: 0 28px;
	line-height: 50px;
	vertical-align: top;
	border: none;
	background: transparent !important;
	color: #65594d;
	font-weight: bold;
	font-size: 16px;
}

.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>tbody>tr>td,
.table>tfoot>tr>td {
	padding: 0 28px;
	line-height: 50px;
	vertical-align: top;
	border-top: 1px solid #f4f4f4;
	background: #fff;
	color: #65594d;
}

.table a {
	color: #65594d;
	border-bottom: 1px solid transparent;
}

.table a:hover {
	color: #65594d;
	border-bottom: 1px solid #65594d;
}

.home-content h4 {
	margin: 20px 0 20px !important;
}

.home-content article img {
	width: 100%;
}

.timeline-heading h4 span {
	font-family: oxygen;
	font-size: 15px;
	color: #969696;
	display: block;
	margin-top: 15px;
}

.clients img {
	opacity: 0.35;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	cursor: pointer;
}

.clients img:hover {
	opacity: 1;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.home-slider {
	position: relative;
}

.home-slider .item {
	position: relative;
}

.home-slider .prev4 {
	cursor: pointer;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: rgba(101, 89, 77, 0.6);
	color: #fff;
	font-size: 18px;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -35px;
	left: 40px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.home-slider .prev4 i {
	display: inline-block;
	transform: rotate(180deg);
}

.home-slider .prev4:hover {
	background-color: #65594d;
	color: #fff;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.home-slider .next4 {
	cursor: pointer;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: rgba(101, 89, 77, 0.4);
	color: #fff;
	font-size: 18px;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -35px;
	right: 40px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.home-slider .next4:hover {
	background-color: #65594d;
	color: #fff;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.slider-info {
	background: #fff;
	background: rgba(255, 255, 255, 0.9);
	border: 8px double #65594d;
	padding: 50px 105px;
	margin: 0 auto;
	display: table;
	position: absolute;
	top: 50%;
	left: 50%;
	right: auto;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 770px;
}

.slider-info p {
	padding: 10px 0 40px;
}

.slider-info .dual-btn a {
	margin: 0 15px;
	min-width: 170px;
}


.slider-info .dual-btn a:hover {
	background: #7c6f62;
	color: #fff;
}

.service-2 h4 {
	font-size: 24px;
	line-height: 40px;
	margin: 17px 0 -33px;
}

/* automatic slideshow*/
.slider {
	width: 100%;
	max-width: 100vw;
	height: 500px;
	margin: auto;
	/* margin-top: 8%;	 */
	position: relative;
	overflow: hidden;
	object-fit: cover;
	top: 94px;
}

.slider .list {
	position: absolute;
	width: max-content;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	transition: 1s;
}

.slider .list img {
	width: 500%;
	background-repeat: no-repeat;
	max-width: 100vw;
	height: 100%;
	object-fit: cover;
	margin-top: 20px;
	aspect-ratio: 28/9;
}

.slider .buttons {
	position: absolute;
	top: 45%;
	left: 5%;
	width: 90%;
	display: flex;
	justify-content: space-between;
}

.slider .buttons button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #fff5;
	color: #fff;
	border: none;
	font-family: monospace;
	font-weight: bold;
}


.slider .dots {
	position: absolute;
	bottom: 10px;
	left: 0;
	color: #fff;
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}

.slider .dots li {
	list-style: none;
	width: 10px;
	height: 10px;
	background-color: #fff;
	margin: 10px;
	border-radius: 20px;
	transition: 0.5s;
}

.slider .dots li.active {
	width: 30px;
}

@media screen and (max-width: 768px) {
	.slider {
		height: 400px;
	}
}


.benefits-list {
	padding: 0px;
}

.benefits-list li {
	list-style: none;
	padding-left: 30px;
	position: relative;
	color: #65594d;
	font-size: 15px;
	line-height: 24px;
	margin: 0 0 20px;
}

.benefits-list li:last-child {
	margin-bottom: 0px;
}

.benefits-list li i {
	color: #e6ddd0;
	position: absolute;
	left: 0;
	top: 1px;
}

.location-carousels.no-padding {
	padding: 0 !important;
}

.home-slider2 {
	position: relative;
}

.home-slider2 .item {
	position: relative;
}

.home-slider2 .prev5 {
	cursor: pointer;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: rgba(101, 89, 77, 0.6);
	color: #fff;
	font-size: 18px;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -35px;
	left: 20px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.home-slider2 .prev5 i {
	display: inline-block;
	transform: rotate(180deg);
}

.home-slider2 .prev5:hover {
	background-color: #65594d;
	color: #fff;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.home-slider2 .next5 {
	cursor: pointer;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: rgba(101, 89, 77, 0.4);
	color: #fff;
	font-size: 18px;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -35px;
	right: 20px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.home-slider2 .next5:hover {
	background-color: #65594d;
	color: #fff;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
aside input[type=checkbox] {
	margin: 0 0 15px;
	opacity: 0;
}

aside input[type=checkbox]:checked+label:before,
aside input[type=radio]:checked+label:before {
	opacity: 1;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

aside .cbox {
	margin-bottom: 17px;
}

aside .cbox label {
	position: relative;
	cursor: pointer;
	padding-left: 6px;
}

aside .cbox label span {
	width: 12px;
	height: 12px;
	display: inline-block;
	margin: 0 7px 0 5px;
}

aside .cbox label:after {
	content: "";
	width: 12px;
	height: 12px;
	border: 1px solid #cccccc;
	position: absolute;
	left: -16px;
	top: 0.5px;
}

aside .cbox label:before {
	content: "\f00c";
	font-family: Fontawesome;
	width: 12px;
	height: 12px;
	position: absolute;
	left: -16px;
	top: 0.5px;
	opacity: 1;
	color: #000;
	font-size: 9px;
	text-align: center;
	line-height: 12px;
	opacity: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.page_head {
	background-color: #f4f4f4;
	padding: 1px 0;
}

.page_head ul {
	padding: 0;
}

.page_head ul li {
	list-style: none;
	float: left;
	font-size: 13px;
	color: #65594d;
	margin-left: 30px;
	position: relative;
}

.page_head ul li:after {
	font-family: Flaticon;
	content: "\f101";
	color: #cecece;
	position: absolute;
	font-size: 8px;
	top: 4px;
	left: 46px;
}

.page_head ul li a {
	color: #65594d;
}

.page_head ul li a:hover {
	color: #c5b7a3;
}

.page_head ul li:last-child:after {
	display: none;
}

.dropdown-menu {
	background: #fff;
	border: medium none;
	border-radius: 0px;
	width: 100%;
	max-width: 1100px;
	left: 0 !important;
	right: 0 !important;
	margin: 0px auto;
	opacity: 0;
	visibility: hidden;
	transition: .4s;
	padding: 45px 60px;
	top: 100px;
	-webkit-box-shadow: 0 0 5px rgba(4, 5, 5, 0.1);
	-moz-box-shadow: 0 0 5px rgba(4, 5, 5, 0.1);
	box-shadow: 0 0 5px rgba(4, 5, 5, 0.1);
}

.dropdown-menu-v2 {
	padding: 45px 45px;
}

.dropdown-menu-v2 .col-md-3 {
	width: 31%;
}

.dropdown-menu-v2 .col-md-4 {
	width: 30%;
}

.dropdown-menu-v2 .col-md-5 {
	width: 39%;
}

.dropdown-menu-v2 .send-flowers .sf-thumb {
	display: table;
}

.dropdown-menu h5 {
	font-size: 24px;
	color: #65594d;
	margin: 0 0 15px;
}

.dropdown-menu-v2 h5 {
	font-size: 24px;
	color: #65594d;
	margin: 0 0 28px;
}

.dropdown-menu .dropdown-links a {
	font-size: 14px;
	color: #65594d;
	line-height: 50px;
	width: 100%;
	display: table;
	border-bottom: 1px solid #efefef;
}

.dropdown-menu.dropdown-menu-v3>li>a {
	font-size: 14px !important;
	color: #65594d;
}

.dropdown-menu .dropdown-links a:hover {
	color: #999;
}

.dropdown-menu .col-md-2 a:last-of-type {
	border: none;
}

.dropdown-menu.dropdown-menu-v2 {
	width: 100px;
	padding: 17px 10px;
	margin-right: 30%;
}

.dropdown-menu.dropdown-menu-v3 {
	width: 300px;
	right: 0 !important;
	left: auto !important;
	padding: 17px 10px;
}

.dropdown-menu.dropdown-menu-v3 a {
	background: transparent;
}

.dropdown-menu.dropdown-menu-v3 a:hover {
	background: transparent;
	color: #e6ddd0;
}

.dropdown-menu>li>a {
	line-height: 50px;
	padding: 0 10px;
	border-bottom: 1px solid #efefef;
	margin: 0 20px
}

.dropdown-menu>li:last-child>a {
	border: 0;
}


.menu-video-block {
	position: relative;
	margin-top: 20px;
	cursor: pointer;
}

.menu-video-block span {
	width: 98px;
	height: 98px;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
	line-height: 98px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: -49px auto 0;
	color: #fff;
	font-size: 32px;
	transform: scale(1);
	transition: .3s;
}

.menu-video-block:hover span {
	transform: scale(0.8);
	font-size: 25px;
	transition: .3s;
}

.dropdown-product h3 {
	font-size: 16px;
	margin: 15px 0px 5px;
	line-height: 24px;
}

.dropdown-info img {
	width: 100%;
}

.dropdown-product span {
	font-size: 18px;
	margin: 5px 0 15px;
	display: inline-block;
	color: #e6ddd0;
	font-family: "MuseoSans-500", sans-serif;
}

.dropdown-product .btn {
	margin: 0 auto;
}

.dropdown-product span span {
	text-decoration: line-through;
	font-size: 14px;
	color: #c0c0c0;
}

.dropdown-info p {
	font-size: 15px;
	line-height: 24px;
	margin: 16px 0 0;
}

.dropdown-info img {
	width: 100%;
}

.dropdown-sp li {
	padding-left: 104px;
	margin-bottom: 20px;
	min-height: 70px;
	position: relative;
}

.dropdown-sp li:last-child {
	margin-bottom: 0px;
}

.dropdown-sp li img {
	border: 1px solid #dddddd;
}

.dropdown-sp li p {
	font-size: 16px;
	line-height: 20px;
	margin: 0 0 5px;
}

.dropdown-sp li p a {
	color: #65594d;
	font-size: 18px;
	font-family: Crimson Text;
}

.dropdown-sp li p a:hover {
	color: #e6ddd0;
}

.dropdown-menu {
	display: none;
	/* Hide dropdown menu initially */
}

.dropdown-menu.show {
	display: block;
	/* Show dropdown menu when class 'show' is added */
}

.dropdown-menu>li>a {
	padding: 10px 20px;
}

.dropdown-toggle .fa-angle-down {
	margin-left: 5px;
}

.cart-table {
	position: absolute;
	right: 0;
	top: 76px;
	background: #fff;
	width: 400px;
	padding: 30px 30px 25px;
	opacity: 0;
	visibility: hidden;
	transition: .4s;
	z-index: 777;
}

.cart-header {
	cursor: pointer;
}

.cart-header:hover .cart-table {
	top: 92px;
	opacity: 1;
	visibility: visible;
	transition: .4s;
}

.cart-products h6 {
	color: #65594d;
	font-size: 24px;
	font-family: Oxygen;
}

.cart-products h6 small {
	display: inline-block;
	font-size: 16px;
	color: #c0c0c0;
	padding-left: 1px;
}

.cart-products em {
	font-size: 15px;
	color: #65594d;
	font-style: normal;
	float: right;
	position: absolute;
	top: 8px;
	right: 0;
}

.dropdown-sp h6 {
	color: #65594d;
	font-size: 24px;
	font-family: Oxygen;
}

.dropdown-sp h6 span {
	display: inline-block;
	font-size: 16px;
	color: #c0c0c0;
	padding-left: 1px;
}

.dropdown-sp li:last-of-type {
	margin-bottom: 0px;
}

.dropdown-sp li img {
	position: absolute;
	top: 0;
	left: 0;
}

.dropdown-sp h6 a {
	color: #1f1f1f;
}

.dropdown-sp h6 a:hover {
	color: #a2a2a2;
}

.dropdown-sp span {
	font-size: 14px;
	display: block;
	margin: 3px 0 0px;
	color: #1f1f1f;
}

.dropdown-sp .add-cart {
	display: table;
	font-size: 13px;
	color: #000;
	opacity: 0.4;
}

.dropdown-sp .add-cart:hover {
	opacity: 1;
}

.dropdown-sp .add-cart img {
	position: relative;
	margin-right: 3px;
}


.dropdown-menu {
	display: block;
}

.dropdown-menu>li>a {
	font-size: 16px;
	margin-left: 25%;
	text-transform: capitalize;
}

.nav>li {
	position: static;
}

.nav>li>a {
	position: relative;
}

.cart-dual-btns {
	border-top: 1px solid #e6e6e6;
	margin-top: 29px;
	padding-top: 24px;
}

.cart-dual-btns a:first-child {
	width: 43.5%;
}

.cart-dual-btns a:last-child {
	width: 53.5%;
}

.pt-main .post-thumb {
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.pt-main .post-thumb img {
	opacity: 1;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.pt-main:hover .post-thumb {
	background: #65594d;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.pt-main:hover .post-thumb img {
	opacity: 0.2;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.cart-table {
	display: none;
}

.cart-show .cart-table {
	display: block;
}

.home-carousel3-wrap .prev6 {
	cursor: pointer;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: rgba(101, 89, 77, 0.6);
	color: #fff;
	font-size: 18px;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -155px;
	left: 20px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.home-carousel3-wrap .prev6 i {
	display: inline-block;
	transform: rotate(180deg);
}

.home-carousel3-wrap .prev6:hover {
	background-color: #65594d;
	color: #fff;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.home-carousel3-wrap .next6 {
	cursor: pointer;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: rgba(101, 89, 77, 0.4);
	color: #fff;
	font-size: 18px;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -155px;
	right: 20px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.home-carousel3-wrap .next6:hover {
	background-color: #65594d;
	color: #fff;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.home-carousel3-wrap {
	position: relative;
}

.home-carousel3-wrap .item {
	padding: 0 15px;
}

.home-carousel3-wrap .slick-arrow.slick-hidden {
	display: block;
}

.ho-search {
	background: #e4e4e4;
	width: 370px;
	border-radius: 20px;
	height: 40px;
	overflow: hidden;
	position: relative;
}

.ho-search input {
	padding: 0 50px 0 30px;
	font-size: 14px;
	color: #aaa;
	width: 100%;
	height: 40px;
	background: transparent;
	border: none;
	text-align: left;
}

.ho-search button {
	color: #65594d;
	position: absolute;
	top: 0;
	right: 0;
	width: 38px;
	height: 40px;
	background: transparent;
	text-align: left;
	padding: 0;
	border: none;
}

.ho-nav {
	width: 60px;
	float: right;
	line-height: 40px;
	margin-left: 40px;
}

.ho-nav div {
	cursor: pointer;
}

.ho-nav div:hover {
	color: #999;
}

.ho-prev {
	width: 30px;
	text-align: right;
	transform: rotate(-180deg);
	font-size: 20px;
	float: left;
}

.ho-next {
	width: 30px;
	text-align: right;
	font-size: 20px;
	float: left;
}

.ho-carousel {
	margin: 35px -15px 0;
}

.ho-carousel .col-md-3 {
	padding: 0;
}

.ho-item {
	padding: 0 15px 0 117px;
	position: relative;
}

.ho-item i {
	width: 70px;
	height: 70px;
	background: #e9e9e9;
	border-radius: 50%;
	line-height: 70px;
	color: #c7c7c7;
	font-size: 28px;
	position: absolute;
	top: 0;
	left: 15px;
	text-align: center;
}

.ho-item img {
	position: absolute;
	top: 0;
	left: 15px;
}

.ho-item h4 {
	font-size: 20px;
}

.ho-item p {
	font-size: 14px;
	margin: 1px 0 13px;
}

/* =============================
   MAILCHIMP STYLES
================================ */

#result {
	text-align: center;
	position: absolute;
	top: 103%;
	left: 60px;
	right: 0px;
	display: block;
	margin: 0px auto;
	font-size: 11px;
	color: #fff !important;
	max-width: 100%;
	padding: 0px 12px;
}

#result a {
	color: #000 !important;
}

#result em {
	font-style: normal;
}

.ketchup-error {
	display: none;
}

.statusMessage,
.successmessage,
.errormessage {
	display: none;
	margin: auto;
	width: 100%;
	height: auto;
	left: 0px;
	right: 0px;
	top: 0px;
	border: 1px solid #e1e1e1;
	margin: 0 auto 25px auto;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #000;
}

.statusMessage i {
	color: #3498DB;
	font-size: 15px;
	margin-right: 5px;
}

.statusMessage p {
	margin: 0;
	padding: 20px;
	color: #555;
	font-size: 14px;
}

.successmessage p {
	margin: 0;
	padding: 20px;
	color: #555;
	font-size: 14px;
}

.successmessage i {
	color: #1abc9c;
	font-size: 15px;
	margin-right: 5px;
}

.errormessage p {
	margin: 0;
	padding: 20px;
	color: #555;
	font-size: 14px;
}

.errormessage i {
	color: #ff0000;
	font-size: 15px;
	margin-right: 5px;
}

#incompleteMessage i {
	color: #f1c40f;
	font-size: 15px;
	margin-right: 5px;
}

.alphabets {
	margin-bottom: 35px;
}

.alphabets a {
	width: 32px;
	height: 36px;
	color: #65594d;
	line-height: 36px;
	font-size: 20px;
	background: transparent;
	text-align: center;
	display: inline-block;
	margin: 0 -1px 2px;
}

.alphabets a:hover {
	color: #fff;
	background: #65594d;
}

.po-table {
	border: 1px solid #e7e7e7;
	width: 100%;
	overflow-x: auto;
	margin-bottom: 30px;
}

.po-table .table {
	margin: 15px 0 10px;
	min-width: 700px;
}

.po-table .table.table-condensed>tbody>tr:nth-child(even)>th,
.po-table .table.table-condensed>tbody>tr:nth-child(even)>td {
	border-top: none;
}

.po-table .table.table-condensed>tbody>tr:nth-child(odd)>th,
.po-table .table.table-condensed>tbody>tr:nth-child(odd)>td {
	padding: 0 33px;
	line-height: 50px;
	vertical-align: top;
	border-top: none;
	background: transparent;
	color: #65594d;
}

.po-table .table.table-condensed>tbody>tr>th {
	width: 65%;
}

.po-table .table.table-condensed>tbody>tr>td {
	width: 35%;
}

.po-table .table>thead>tr>th {
	padding: 0 33px;
	border-bottom: 2px solid #f6f6f6;
	font-weight: 400;
}

.pricing-1 ul {
	background: #f2f2f2;
	padding: 0;
	margin: 0 0 10px;
	display: table;
	width: 100%;
	text-align: center;
}

.pricing-1 ul li {
	float: left;
	list-style: none;
	padding: 18px 28px;
	line-height: 24px;
	font-size: 15px;
	width: 15%;
}

.pricing-1 ul li:first-child {
	text-align: left;
	width: 52%;
}

.pricing-1 ul li a {
	background: #65594d;
	color: #d4c7b9;
	display: table;
	min-width: 82px;
	text-align: center;
	line-height: 61px;
	margin: -19px auto;
}

.pricing-1 ul li a:hover {
	background: #d4c7b9;
	color: #fff;
}

.pricing-1 ul.big li i {
	line-height: 46px;
}

.pricing-1 ul.big li {
	min-height: 84px;
}

.pricing-1 h3 {
	font-size: 30px;
	color: #65594d;
	padding-bottom: 10px;
	border-bottom: 1px solid #f2f2f2;
	margin: 25px 0 20px;
}

.pricing-1 ol {
	display: table;
	width: 100%;
}

.pricing-1 ol li {
	float: left;
	list-style: none;
	padding: 12px 28px;
	line-height: 24px;
	font-size: 15px;
	width: 15%;
	text-align: center;
	font-weight: bold;
}

.pricing-1 ol li:first-child {
	text-align: left;
	width: 52%;
}

.plan {
	background: #e6ddd0;
	text-align: center;
	padding: 0 35px 48px;
}

.plan-title {
	color: #65594d;
	font-size: 40px;
	background: #d4c8b8;
	line-height: 88px;
	margin: 0 -35px;
}

.plan ul {
	margin: 20px 0 15px;
}

.plan ul li {
	border-bottom: 1px solid #ddd1bf;
	padding: 15px 0;
	font-size: 15px;
	line-height: 24px;
	color: #65594d;
}

.plan ul li:last-child {
	border-bottom: none;
}

.plan-price {
	font-size: 45px;
	margin-bottom: 35px;
}

.plan-price span {
	font-size: 15px;
	vertical-align: top;
	position: relative;
	top: 5px;
	margin-left: 3px;
}

.popular .plan {
	background: #65594d;
	margin-top: -24px;
}

.popular .plan-title {
	color: #fff;
	background: #53483d;
}

.popular .plan ul li {
	border-bottom: 1px solid #72665b;
	color: #e6ddd0;
}

.popular .plan-price {
	color: #fff;
}

.plan-best {
	background: #e6ddd0;
	line-height: 45px;
	text-transform: uppercase;
	font-size: 18px;
	color: #65594d;
	letter-spacing: 0.15em;
	margin: 0 -35px;
}

.plan-alt {
	background: #f0f0f0;
	text-align: center;
	padding: 40px 35px 45px;
	border-radius: 7px;
}

.plan-alt-title {
	font-size: 24px;
	margin: 0 0 30px;
}

.plan-alt-price-wrap {
	width: 130px;
	height: 130px;
	background: #65594d;
	margin: 0 auto 30px;
	border-radius: 50%;
	overflow: hidden;
}

.plan-alt-price {
	line-height: 80px;
	font-size: 34px;
	color: #fff;
}

.plan-alt-price span {
	font-size: 18px;
	vertical-align: top;
	position: relative;
	top: -5px;
	margin-right: 2px;
}

.plan-period {
	background: #53483d;
	line-height: 45px;
	height: 50px;
	color: #e6ddd0;
	font-size: 16px;
}

.plan-alt ul li {
	line-height: 24px;
	margin-bottom: 25px;
}

.plan-btn {
	color: #e6ddd0;
	padding: 0px 40px;
	line-height: 40px;
	border: 2px solid #65594d;
}

.plan-btn:hover {
	color: #65594d;
	background: transparent;
	border: 2px solid #65594d;
}

.service-carousel .slick-dots {
	display: block;
	width: 570px;
	height: 13px;
	background: #f2f2f2;
	border-radius: 10px;
	margin: 38px auto 0;
	overflow: hidden;
}

.service-carousel .slick-dots li {
	float: left;
	width: 25%;
	font-size: 0px;
	border-right: 2px solid #65594d;
}

.service-carousel .slick-dots li:last-child {
	border-right: none;
}

.service-carousel .slick-dots button {
	border: none;
	background: #f2f2f2;
	width: 100%;
	height: 13px;
	padding: 0;
}

.service-carousel .slick-dots li.slick-active button {
	background: #65594d;
}

.service-carousel-wrap .prev7 {
	float: left;
	margin-top: -14px;
	cursor: pointer;
	position: relative;
	z-index: 444;
}

.service-carousel-wrap .next7 {
	float: right;
	margin-top: -14px;
	cursor: pointer;
	position: relative;
	z-index: 444;
}

.service-carousel-wrap .prev7:hover,
.service-carousel-wrap .next7:hover {
	color: #999;
}

.shop-carousel .item img {
	border: 1px solid #e4e4e4;
}

.shop-carousel .slick-dots {
	margin-top: 19px;
}

.shop-carousel .slick-dots li {
	float: left;
	margin-right: 30px;
	border: 1px solid #e4e4e4;
	width: 70px;
}

.shop-carousel .slick-dots li img {
	width: 100%;
}

.shop-carousel .slick-dots li a {
	display: table;
	width: 100%;
	margin-bottom: -1px;
	cursor: pointer;
}

.shop-carousel-wrap {
	position: relative;
}

.shop-carousel-wrap .prev8 {
	color: #e7e7e7;
	font-size: 35px;
	position: absolute;
	top: 50%;
	left: 20px;
	margin-top: -35px;
	cursor: pointer;
}

.shop-carousel-wrap .next8 {
	color: #e7e7e7;
	font-size: 35px;
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -35px;
	cursor: pointer;
}

.shop-carousel-wrap .prev8:hover,
.shop-carousel-wrap .next8:hover {
	color: #65594d;
}

.product-info {
	padding-bottom: 15px;
	border-bottom: 2px solid #f6f6f6;
	margin-bottom: 35px;
}

.product-info span {
	margin-right: 27px;
}

.product-info span em {
	background: #e6ddd0;
	font-size: 12px;
	height: 27px;
	display: inline-block;
	line-height: 27px;
	padding: 0 13px;
	border-radius: 5px;
}

.shop-single-info h4 {
	font-size: 30px;
	margin: 0 0 8px;
}

.pr-ratings {
	margin-right: 8px;
}

.pr-ratings i {
	font-size: 12px;
	color: #65594d;
	margin-right: 1px;
	position: relative;
	top: -2px;
}

.pr-ratings i.no {
	color: #cfcfcf;
}

.product-reviews em {
	padding: 0 3px;
	position: relative;
	top: -4px;
}

.product-single-price {
	font-size: 50px;
	margin: 30px 0;
}

.product-single-price span {
	font-size: 24px;
	color: #c7c7c7;
	margin-left: 1px;
	text-decoration: line-through;
}

.ps-options {
	margin-bottom: 10px;
}

.ps-options span {
	width: 52px;
	float: left;
	line-height: 40px;
}

.ps-select {
	background: #f2f2f2;
	width: 285px;
	height: 40px;
	display: inline-block;
	border-radius: 6px;
	position: relative;
}

.ps-select i {
	color: #776d62;
	font-size: 12px;
	position: absolute;
	line-height: 40px;
	right: 15px;
	z-index: 11;
}

.ps-select select {
	color: #838282;
	font-size: 14px;
	width: 100%;
	height: 40px;
	background: transparent;
	border: none;
	padding: 0 35px 0 20px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	z-index: 77;
}

.shop-reviews .tab-pane {
	border: 1px solid #eaeaea;
	padding: 40px;
	width: 100%;
}

.shop-reviews .nav-tabs>li>a {
	margin-right: 0;
	line-height: 60px;
	border: none !important;
	border-radius: 0px;
	padding: 0;
	width: 100%;
	background: transparent !important;
	font-size: 16px;
	color: #565656;
}

.shop-reviews .nav-tabs>li>a i {
	float: right;
	font-size: 12px;
	opacity: 0;
}

.shop-reviews .nav-tabs>li.active>a i {
	opacity: 1;
}

.shop-reviews .nav-tabs>li.active>a {
	color: #bdae97;
}

.shop-reviews .nav>li {
	position: relative;
	float: none;
	width: 100%;
	background: transparent;
	border-bottom: 2px solid #f7f7f7;
}

.shop-sort-wrap {
	background: #f4f4f4;
	padding: 10px 17px 0px 28px;
	border-radius: 6px;
	display: table;
	width: 100%;
	margin-bottom: 25px;
}

.shop-sort {
	float: right;
}

.shop-sort a {
	color: #b0b0b0;
	margin-left: 13px;
	line-height: 42px;
	font-size: 16px;
}

.shop-sort a.active {
	color: #65594d;
}

.send-flowers-list p {
	margin: -15px 0 25px;
}

.sf-thumb img {
	width: 100%;
}

.s_range {
	margin-top: 25px;
}

.range_v {
	margin-top: 22px;
}

.range_v span {
	font-size: 15px;
	color: #666666;
	float: left;
	margin-right: 5px;
	line-height: 18px;
	position: relative;
	top: 3px;
}

.range_v input {
	border: medium none;
	display: table;
	float: left;
	width: 44px;
	font-size: 15px;
	color: #65594d;
	background: transparent;
	position: relative;
	top: 2px;
}

.filter-btn {
	background: #65594d;
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 13px;
	color: #e6ddd0;
	float: right;
	margin-top: -2px;
}

.filter-btn:hover {
	background: #e6ddd0;
	color: #fff;
}

.range_sep {
	background: #666666;
	width: 9px;
	height: 1px;
	display: table;
	position: relative;
	top: 10px;
	right: 13px;
}

.ui-widget-content {
	background: #e6ddd0;
	height: 7px;
	border-radius: 6px;
	border: none;
}

.ui-slider-horizontal .ui-slider-range {
	top: 0;
	margin: 0 -6px;
	height: 7px;
	background: #c2b4a1;
	transition: none;
}

.ui-slider-horizontal .ui-slider-handle {
	top: -4px;
	margin-left: -6px;
	transition: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: none;
	background: #65594d;
	font-weight: normal;
	color: #555555;
	width: 18px;
	height: 18px;
	border-radius: 50%;
}

.btn-top {
	position: fixed;
	width: 43px;
	height: 43px;
	bottom: -37px;
	top: 671px;
	right: 29px;
	color: #deb923;
	border-radius: 50px;
	text-align: center;
	cursor: pointer;
	z-index: 1000;
	box-shadow: 2px 2px 3px #deb923;
	background-color: black;
}

.zones-container {
	margin-top: 10px;

}

.zones-container select {
	flex: 1;
	width: 150px;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
	background-color: #fff;
	/* Adjust background color as needed */
	color: #333;
}

/* General styling */
.More {
	position: relative;
	padding: 15px 45px;
	background: #FFD700;
	/* Gold color */
	font-size: 17px;
	font-weight: 500;
	cursor: pointer;
	border: 1px solid #FFD700;
	/* Gold color */
	border-radius: 8px;
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
	display: block;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 45px;
}

.More:hover {
	border: 1px solid #FFC700;
	/* Slightly darker gold */
	background: linear-gradient(85deg,
			#FFD700,
			/* Gold */
			#FFCC00,
			/* Slightly darker gold */
			#FFC700,
			/* Even darker gold */
			#FFBF00,
			/* Slightly more darker */
			#FFB700
			/* More darker gold */
		);
	animation: wind 2s ease-in-out infinite;
}

@keyframes wind {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 50% 100%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.icon-1 {
	position: absolute;
	top: 0;
	right: 0;
	width: 25px;
	transform-origin: 0 0;
	transform: rotate(10deg);
	transition: all 0.5s ease-in-out;
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

.More:hover .icon-1 {
	animation: slay-1 3s cubic-bezier(0.52, 0, 0.58, 1) infinite;
	transform: rotate(10deg);
}

@keyframes slay-1 {
	0% {
		transform: rotate(10deg);
	}

	50% {
		transform: rotate(-5deg);
	}

	100% {
		transform: rotate(10deg);
	}
}

.icon-2 {
	position: absolute;
	top: 0;
	left: 25px;
	width: 12px;
	transform-origin: 50% 0;
	transform: rotate(10deg);
	transition: all 1s ease-in-out;
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.More:hover .icon-2 {
	animation: slay-2 3s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
	transform: rotate(0);
}

@keyframes slay-2 {
	0% {
		transform: rotate(0deg);
	}

	50% {
		transform: rotate(15deg);
	}

	100% {
		transform: rotate(0);
	}
}

.icon-3 {
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	transform-origin: 50% 0;
	transform: rotate(-5deg);
	transition: all 1s ease-in-out;
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.More:hover .icon-3 {
	animation: slay-3 2s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
	transform: rotate(0);
}

@keyframes slay-3 {
	0% {
		transform: rotate(0deg);
	}

	50% {
		transform: rotate(-5deg);
	}

	100% {
		transform: rotate(0);
	}
}


.color-1 {
	color: #000;
	text-transform: uppercase;
	font-size: 32px;
}

.wrapper {
	background-color: #f2f2f2;
	padding: 20px 0;
}

.col-md-6,
.col-sm-5,
.hidden-xs {
	display: flex;
	align-items: center;
	flex-direction: column;
	/* Align items vertically center */
}

.form-group {
	display: flex;
	align-items: center;
	margin-right: 15px;
	/* Adjust margin as needed */
}


.home-slider .slick-dots {
	display: none !important;
}

.home-slider2 .prev4,
.home-slider2 .next4 {
	display: none !important;
}

.home-slider.home-slider2 .slick-dots {
	display: table !important;
	margin: -57px auto 0;
	position: relative;
	z-index: 111;
}

.home-slider.home-slider2 .slick-dots li {
	float: left;
	margin: 0 5px;
}

.home-slider.home-slider2 .slick-dots li button {
	height: 5px;
	width: 70px;
	background: #65594d;
	font-size: 0px;
	padding: 0;
	border: none;
}

.home-slider.home-slider2 .slick-dots li.slick-active button {
	background: #e6ddd0;
}

.slider-info2 {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-40%);
}

.slider-info2 h3 {
	font-size: 70px;
	margin: 0 0 9px;
	color: #fff;
}

.slider-info2 h3 span {
	font-size: 50px;
	margin: 0 0 -4px;
	display: block;
}

.slider-info2 p {
	margin: 0 0 45px;
	color: #fff;
}

.cart-header2 {
	position: relative;
}

.cart-header2:hover .cart-table {
	top: 110px;
	opacity: 1;
	visibility: visible;
	transition: .4s;
}

.cart-show .cart-table {
	display: block;
	right: -100px;
}

.home-carousel.slick-slider .slick-slide img {
	object-fit: cover;
	width: 100%;
}

/* Galley section*/
.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-gap: 30px;
	margin: 10% 2% 10% 2%;
}

.gallery img {
	width: 100%;
}

/* service section */
.service-gallery {
	display: flex;
	flex-direction: column;
	column-gap: 30px;
	row-gap: 40px;
	margin: 10% 2% 10% 5%;
}

.service-item {
	flex-direction: row;
	column-gap: 20px;

}

.service-gallery img {
	width: 100%;
	border-radius: 5%;
}

.em {
	width: 100%;
	min-height: 100vh;
	display: grid;
	place-items: center;
}

.row-inform {
	width: 80%;
	max-width: 1170px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-gap: 50px 30px;
}

.row-inform .left {
	overflow: hidden;
}

.row-inform .left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	padding-left: 10%;
}

.row-inform .right {
	display: flex;
	align-items: center;
}

.row-inform .right .content {
	padding-left: 20px;
}

.row-inform .right p {
	font-size: 16px;
	line-height: 26px;
	padding-bottom: 16px;
}


.responsive {
	flex: 1 0 21%;
	/* Adjust based on the number of items per row */
	box-sizing: border-box;
	margin: 10px;
}

.gallery-content {
	position: relative;
	text-align: center;
	color: white;
}

.gallery-content img {
	width: 100%;
	height: 200px;
	/* Set a fixed height */
	object-fit: cover;
	/* Ensures the image covers the entire area */
}

.gallery-content h1,
.gallery-content h2 {
	position: absolute;
	width: 100%;
	text-align: center;
	background: black;
	/* Adds a dark overlay */
	padding: 10px 0;
	margin: 0;
}

.color-2 {
	color: white;
}

.gallery-content h1 {
	bottom: 40px;
	/* Position the title near the bottom */
}

.gallery-content h2 {
	bottom: 0;
	/* Position the location at the bottom */
}

.QR-img img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	/* Ensures the image covers the entire area */


}

@media (max-width: 768px) {
	.responsive {
		flex: 1 0 46%;
		/* Adjust for smaller screens */
	}
}

@media (max-width: 480px) {
	.responsive {
		flex: 1 0 100%;
		/* Stack items on small screens */
	}
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

@media (max-width:768px) {
	.slider .list img {
		width: 500%;
		background-repeat: no-repeat;
		max-width: 100vw;
		height: 73%;
		object-fit: cover;
		margin-top: 21px;
	}

	.slider .dots {
		position: absolute;
		bottom: 100px;
		left: 0;
		color: #fff;
		width: 100%;
		margin: 0;
		padding: 0;
		display: flex;
		justify-content: center;
		top: 63%;
	}

	.slider .buttons button {
		width: 35px;
		height: 35px;
	}

	.slider .buttons {
		position: absolute;
		top: 33%;
		left: 5%;
		width: 90%;
		display: flex;
		justify-content: space-between;
	}

	.item {
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	.padding-vertical-100,
	.padding-top-100 {
		padding-top: 0px !important;
	}

	h2,
	.h2 {
		font-family: inherit;
		font-weight: 500;
		line-height: 1.1;
		color: inherit;
		font-size: 38px;
		margin: 0 0 5px;
	}

}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
	margin-top: 77px;
}

/* =============================
   21. RESPONSIVENESS 
================================ */
@media (max-width:993px) {
	.row-inform .right .content {
		padding-left: 0px;
	}
}

@media (max-width:1330px) {

	.row-inform .left img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		padding-left: 0px;
	}
}

@media (max-width:768px) {
	.row-inform {
		width: 80%;
		grid-template-columns: 1fr;
	}

	.row-inform .right .content h2 {
		font-size: 30px;
	}
	.container{
		padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
	/* margin-top: -1px; */
	}

	.row-inform .left img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		padding-left: 50px;
	}

	.row-inform .right .content {
		padding-left: 50px;
	}
}

@media (max-width:400px) {
	.row-inform .left img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		padding-left: 50px;
	}

	.row-inform .right .content h2 {
		font-size: 20px;
	}

}

@media only screen and (max-width: 650px) {
	.error-content .error-head span {
		display: block;
		margin: -80px auto;
		transform: scale(0.8);
	}

	.error-content .error-head span:last-child {
		margin-bottom: 0px;
	}
}

@media only screen and (min-width: 993px) and (max-width: 1100px) {
	footer .footer-div li {
		padding-left: 75px;
	}

	footer .footer-div li img {
		width: 60px;
	}

	footer .cinfo p {
		font-size: 13px;
	}

	footer .footer-quote p {
		font-size: 14px;
	}

	footer .col-md-3 {
		float: left;
		width: 25%;
	}

	.location-carousel .c-info {
		padding: 0 15px 0 120px;
	}

	.location-carousel {
		padding: 0 80px;
	}

	.location-carousel .c-info span.fa {
		width: 80px;
		height: 80px;
		line-height: 78px;
		font-size: 30px;
	}

	.facilities .team-info .col-md-3 {
		width: 25% !important;
		float: left;
	}

	.facilities .team-info .col-md-9 {
		width: 75% !important;
		float: left;
	}
}

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

	.shop-carousel .slick-dots li {
		margin-right: 20px;
	}

	.service-carousel .slick-dots {
		width: 75%;
	}

	.ho-search {
		width: 220px;
	}

	.slider-info {
		max-width: 580px;
	}

	.bg-gray .location-carousels,
	.location-carousel {
		padding: 0 0px;
	}

	.services2 .service2-item {
		padding: 80px 15px 67px;
	}

	.dropdown-menu .dropdown-links a {
		font-size: 12px;
	}

	.dropdown-menu {
		padding: 40px 30px;
	}

	.slider-info {
		padding: 35px 75px;
	}

	.slider-info .h2 {
		font-size: 28px;
		margin: 0 0 20px;
	}

	.slider-info p {
		display: none;
	}

	.dropdown-sp li {
		padding-left: 85px;
	}

	.services .service-item h4 {
		font-size: 19px;
	}

	.services .service-item p {
		font-size: 13px;
		line-height: 21px;
	}

	.location-info .cinfo p.abbr {
		font-size: 12px;
	}

	.resources .ri-thumb h3 {
		font-size: 140%;
		line-height: 140%;
	}

	.single-content .single-info .condolence-item .meta span {
		margin-left: 0;
		display: block;
		float: none;
		position: relative;
		top: 15px;
	}

	.single-content .single-info .condolence-item .meta {
		margin-bottom: 40px;
	}

	.single-content .single-info .page-nav ul li:first-child {
		margin-right: 10px;
	}

	.single-content .single-info .page-nav ul li:last-child {
		margin-left: 10px;
	}

	.send-flowers h4 {
		margin: 25px 0 15px;
	}

	.sf-thumb img {
		width: 100%;
	}

	.location-content .cinfo p.abbr {
		line-height: 26px;
		font-size: 12px;
	}

	.location-carousel-wrap .slick-dots {
		display: table;
		margin: 30px auto 0;
	}

	.location-carousel-wrap .slick-dots li {
		float: left;
		margin: 0 5px;
	}

	.location-carousel-wrap .slick-dots li button {
		width: 12px;
		height: 12px;
		font-size: 0px;
		border: 2px solid #ddd;
		border-radius: 50%;
		background: transparent;
		padding: 0;
	}

	.location-carousel-wrap .slick-dots li.slick-active button {
		background: #ddd;
	}

	.facilities .team-info .col-md-3 {
		width: 50%;
		padding-bottom: 20px;
	}

	.facilities .team-info .col-md-9 {
		width: 100%;
	}

	.checkout-content .cart-info {
		padding: 38px;
	}

	.alert.alert-warning {
		line-height: 25px;
	}

	.obituaries-content article h4 {
		margin: 15px 0 4px;
	}

	.post-thumb img {
		width: 100%;
	}


	.slider-info2 p {
		display: none;
	}

	.slider-info2 h3 {
		font-size: 40px;
	}

	.slider-info2 h3 span {
		font-size: 30px;
	}

	.text-center-xs {
		text-align: center;
		padding: 0 !important;
	}

	.upcoming-funerals .col-md-6 {
		padding: 0 15px !important;
	}

	.location-carousels.no-padding {
		padding: 0 !important;
		display: table;
		margin: 0 auto;
	}
}

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

	.cart-show .cart-table {
		display: block;
		right: 0px;
	}

	.dropdown-menu>li>a {
		color: white;
	}

	.location-carousels.no-padding {
		padding: 0 !important;
		display: table;
		margin: 0 auto;
	}

	.upcoming-funerals .col-md-6 {
		padding: 0 15px !important;
	}

	.text-center-xs {
		text-align: center;
		padding: 0 !important;
	}

	.dropdown-menu {
		background: #000;
	}

	.home-slider2 .slick-track {
		height: 400px;
	}

	.home-slider2 .slick-slide img {
		height: 400px;
		width: auto;
		max-width: none;
	}

	.slider-info2 {
		display: none !important;
	}

	.shop-single-info {
		clear: both;
		padding-top: 40px;
	}

	.shop-carousel .slick-dots li {
		margin-right: 15px;
	}

	.service-carousel .slick-dots {
		width: 59%;
	}

	.pricing-1 {
		width: 100%;
		overflow: auto;
		overflow-y: hidden;
		display: block;
	}

	.pricing-1-inner {
		width: 750px;
		display: block;
	}

	.popular .plan {
		background: #65594d;
		margin: 30px 0;
	}

	.location-carousels .c-info,
	.location-carousel .c-info {
		text-align: center;
	}

	.single-content .single-info .condolence-item .meta {
		line-height: 25px;
	}

	.single-content .single-info .condolence-item .meta .reply {
		float: none;
		display: block;
	}

	.cart-table {
		max-width: 280px;
	}

	.services2 .service2-item {
		margin-bottom: 30px;
	}

	.services2 .container {
		padding: 0;
	}

	.location-carousels,
	.location-carousel {
		padding: 0;
	}

	.location-carousel .c-info span.fa,
	.location-carousels .c-info span.fa {
		position: relative;
		top: 0;
		left: 0;
		margin-bottom: 25px;
	}

	.location-carousels .c-info,
	.location-carousel .c-info {
		padding: 0 15px 0 0px;
		position: relative;
		cursor: pointer;
		min-height: 125px;
	}

	.slider-info {
		opacity: 0;
	}

	.dropdown-menu {
		position: relative;
		top: 0px !important;
		opacity: 1;
		visibility: visible;
		margin: 0px auto 15px;
		padding: 30px 20px;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}

	.dropdown-menu h5 {
		margin: 20px 0 15px;
	}

	.dropdown-menu-v2 .col-md-3,
	.dropdown-menu-v2 .col-md-4,
	.dropdown-menu-v2 .col-md-5 {
		width: 100%;
	}

	.dropdown-menu.dropdown-menu-v3 {
		width: 100%;
	}

	.table-wrap {
		width: 100%;
		overflow-x: auto;
	}

	.table-wrap table {
		width: 800px;
	}

	.fc-info {
		padding-right: 15px;
	}

	.faq-tabs .nav-tabs.nav-justified {
		margin: 0;
	}

	.faq-tabs .nav-tabs.nav-justified>li>a {
		margin: 15px 15px;
	}

	.post-thumb img {
		width: 100%;
	}

	.obituaries-content article h4 {
		margin: 15px 0 4px;
	}

	.checkout-content .cart-info {
		padding: 38px 25px;
	}

	.checkout-content .cart-info .cart-details .cart-title {
		font-size: 18px;
	}

	.alert.alert-warning {
		line-height: 25px;
	}

	.blog-content .page-nav ul li:first-child {
		margin-right: 0px;
	}

	.blog-content .page-nav ul li:last-child {
		margin-left: 0px;
	}

	.blog-content article .post-meta {
		font-size: 12px;
	}

	.blog-content article .post-meta span {
		margin-right: 10px;
	}

	.about-author img {
		position: relative;
	}

	.about-author {
		padding-left: 0;
	}

	.related-articles {
		padding: 50px 0 40px 15px;
	}



	footer .intro p {
		margin-left: 0px;
	}

	footer .intro img {
		margin-left: -30px;
		width: 50%;
		margin-top: -7px;
	}

	.staff-single .social {
		margin: 30px 0 18px !important;
	}

	.staff-single {
		text-align: center;
	}

	.amenities-carousel-wrap .item img {
		width: 100%;
	}

	.location-carousel-wrap .prev,
	.location-carousel-wrap .next {
		display: none;
	}

	.facilities .team-info .col-md-3 {
		width: 50%;
		padding-bottom: 20px;
	}

	.facilities .team-info .col-md-9 {
		width: 100%;
	}

	.location-carousel-wrap .slick-dots {
		display: table;
		margin: 30px auto 0;
	}

	.location-carousel-wrap .slick-dots li {
		float: left;
		margin: 0 5px;
	}

	.location-carousel-wrap .slick-dots li button {
		width: 12px;
		height: 12px;
		font-size: 0px;
		border: 2px solid #ddd;
		border-radius: 50%;
		background: transparent;
		padding: 0;
	}

	.location-carousel-wrap .slick-dots li.slick-active button {
		background: #ddd;
	}

	.location-carousel {
		padding: 0;
	}

	.location-carousel .c-info span.fa {
		position: relative;
		left: 0;
	}

	.location-carousel .c-info {
		padding: 0 15px 0 15px;
	}

	.location-carousel .c-info h4 {
		margin: 25px 0 15px;
	}

	.send-flowers h4 {
		margin: 25px 0 15px;
	}

	.sf-thumb img {
		width: 100%;
	}

	.error-content .error-head span {
		width: 220px;
		height: 220px;
		line-height: 220px;
		font-size: 110px;
	}

	.resources .ri-thumb h3 {
		font-size: 140%;
		line-height: 140%;
	}

	.ri-thumb img {
		width: 100%;
	}

	.single-content .single-info .page-nav ul li:first-child {
		margin-right: 0px;
	}

	.single-content .single-info .page-nav ul li:last-child {
		margin-left: 0px;
	}

	.breadcrumb-section {
		position: relative;
		width: 100%;
		height: 270px;
		overflow: hidden;
		padding-top: 30px;
		top: 39px;
		/* margin-top: 8%; */
	}
	#subtitle {
		margin-top: 97px;
	}
}

@media only screen and (min-width: 250px) and (max-width: 540px) {

	.single-content .single-info .condolence-item .meta span {
		margin-left: 0px;
		display: block;
	}

	.amenities-carousel-wrap {
		margin: 0 0px;
	}

	.amenities-carousel-wrap .item {
		padding: 0px;
	}

	.amenities-carousel-wrap .item img {
		width: 100%;
	}

	.amenities-carousel-wrap .prev2 {
		left: 0px;
	}

	.amenities-carousel-wrap .next2 {
		right: 0px;
	}

	.location-info form .cbox-other {
		position: relative;
		top: 0;
		margin-top: -20px;
		margin-left: 3px;
	}
}

@media only screen and (min-width: 1051px) and (max-width: 4000px) {
	.center-content {
		display: flex;
		align-items: center;
		flex-direction: row;
	}
}

@media only screen and (min-width:250px) and (max-width:400px) {
	.category {
		margin-top: 55px;
		margin-left: 0;
	}
}

@media only screen and (min-width:400px) and (max-width:1000px) {
	.category {
		margin-left: 40px;
	}

	#section1 {
		margin-top: 50px;
	}


}

@media only screen and (max-width:1000px) {
	.category {
		margin-left: 50px;
	}
}

/* General styles */
.rbt-contact-area {
	padding: 60px 0;
	background: linear-gradient(135deg, #f06, #aaf);
}

.section-title {
	margin-bottom: 60px;
}

.subtitle {
	display: inline-block;
	padding: 17px 50px;
	background: #65594d;
	color: #fff;
	border-radius: 5px;
	font-size: 20px;
	text-transform: uppercase;
	margin-top: 6%;
	margin-bottom: 10px;
}

.title {
	font-size: 36px;
	font-weight: bold;
	margin-top: 10px;

}

.rbt-address {
	text-align: center;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.rbt-address .icon {
	font-size: 36px;
	margin-bottom: 10px;
	color: #ff6347;
}

.rbt-address .title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.rbt-address p {
	margin: 0;
}

/* Media query for screens with a maximum width of 600px */
@media (max-width: 600px) {
	.rbt-conatct-area {
		padding: 30px 0;
	}

	.section-title {
		margin-bottom: 40px;
	}

	.title {
		font-size: 28px;
	}

	.rbt-address {
		padding: 15px;
		margin-bottom: 20px;
	}

	.rbt-address .icon {
		font-size: 30px;
	}

	.rbt-address .title {
		font-size: 18px;
	}

	.rbt-address p {
		font-size: 14px;
	}

	@media (max-width: 768px) {
		.funeral-carousel img {
			display: block;
			margin: 0 auto;
		}
	}
}




/* modification */

.back-to-top{
	display: flex;
	align-items: center;
	justify-content: center;

}

.content .back-to-top i{
	margin-bottom: 10px;
	margin-right: 12px;
}


/* ------ */


/* Footer Custom */

.footers {
	max-width: 100%;
	height: fit-content;
	background-color: black;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	padding: 20px;
}

.footer-bar {
	height: auto; /* Updated from fixed height */
	width: 297px;
	display: flex;
	flex-direction: column;
	align-items: flex-start; /* Align content to the left */
	justify-content: start;
	line-height: 1.8;
	margin-top: 20px;
	text-align: left; /* Align text to the left */
}

.footer-bar-1{
	margin-top: -115px;
}
.footer-bar-2{
	margin-top: -85px;
}
#footer-bar-3{
	margin-top: -90px;
}

.footer-bar:first-child img {
	margin-bottom: 15px;
}

.footer-bar p span {
	font-weight: bold;
	color: gold;
}

.footer-bar p {
	line-height: 1.5;
	color: whitesmoke;
	text-align: left; /* Align text to the left */
	width: 100%; /* Ensure the paragraph takes full width */
}

.footer-bar img {
	width: 160px;
}
.footer-bar-1 img {
	width: 160px;
	margin-left: -29px;
}

.footer-bar ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start; /* Align list items to the left */
	justify-content: center;
}

.footer-bar h4 {
	font-size: 24px;
	text-align: left; /* Align text to the left */
	font-weight: bold;
	color: whitesmoke;
}

.footer-bar ul a {
	color: whitesmoke;
}

.cinfo p {
	width: 95%;
	text-align: left; /* Align text to the left */
}

.cinfo p a {
	color: whitesmoke;
}

.cinfo p i {
	margin: 0 10px;
}

.footes {
	max-width: 100%;
	height: fit-content;
	background-color: black;
	color: whitesmoke;
	padding-bottom: 20px;
	text-align: center;
}

.footes a {
	color: white;
	font-weight: bold;
}

.abbr {
	line-height: 2;
	margin-bottom: 10px;
	text-align: left; /* Align text to the left */
}

#QR-img img {
	height: 60px;
	width: 60px;
	background-color: white;
}

@media screen and (max-width: 768px) {
	#nav {
		width: 90vw;
	}
	.footers {
		flex-wrap: nowrap;
		height: fit-content;
		flex-direction: column;
		padding-left: 40px;
		width: 100vw;
	}
	.footer-bar {
		height: auto; /* Updated from fixed height */
		align-items: flex-start; /* Align content to the left */
	}
	.footer-bar-1{
		margin-top: 10px;
	}
	.footer-bar-2{
		margin-top: 12px;
	}
	#footer-bar-3{
		margin-top: 9px;
	}
	.footer-bar p {
		width: 80%;
		text-align: left; /* Align text to the left */
	}
	.footer-bar ul {
		align-items: flex-start; /* Align list items to the left */
	}
	.footer-bar-1 img {
		width: 160px;
		margin-left: -30px;
	}
}


.blog-sec{
	text-transform: uppercase;
	font-size: 32px;
	margin-top: 20px;
}