@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



:root {
	--theme-color: #000000;
	--theme-color-second:#6d8b79;
	--theme-color-third: #000;

	--heading-font: "Playfair Display", serif;
	--paragraph-font:  "Poppins", sans-serif;
	--span-font: 'spanist';



	--shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
	--shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
	--shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden !important;

}

body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	outline: none;
	font-size: 17px;
	color: #1e1e1e;
	background-color: #f2ede4;
	scroll-behavior: smooth;
	overflow-x: hidden !important;
	font-family:  "Poppins", sans-serif;
	/* color: var(--theme-color) !important; */
}


a {
	color: #0055f1;
	text-decoration: none;
	transition: all 0.5s;

}

a:hover {
	text-decoration: none;
	transition: all .6s;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading-font);
}

.span-font {
	font-family: var(--span-font);
}

p {
	margin: 0;
	line-height: 27px;
	margin-bottom: 15px;
	font-size: 15px;
}

ul li {
	margin-bottom: 0px;
}

.img-fluid {
	display: block;
	width: 100%;
	max-width: 100%;
}

.li {
	display: inline-block;
	padding: 0px 5px;
}

ul {
	list-style: none;
	padding: 0;
}

h1 {
	font-size: 65px;
}

h2 {
	font-size: 55px;
}

h3 {}

h4{
	font-size: 35px;
}

h5{}

h6{}


.bg-cover {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

.gap {
	margin-bottom: 30px;
}

section {
	padding: 80px 0px;
}

.form-control:focus {
	border-color: #ced4da;
	outline: 0;
	box-shadow: none;
}

input {
	width: 100%;
	outline: none;
	border: none;
	border: 1px solid #ced4da;
}

textarea {
	width: 100%;
	outline: none;
	border: none;
	border: 1px solid #ced4da;
}

select {
	width: 100%;
	outline: none;
	border: none;
	border: 1px solid #ced4da;
	color: #c1c0bd;
}

/* navbar----------- */


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

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

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

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

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

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

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

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

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

* {
	box-sizing: border-box;
}
.m-backtotop {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: fixed;
	bottom: -50px;
	right: 0;
	width: 50px;
	height: 50px;
	background: var(--theme-color);
	border-radius: 0;
	text-align: center;
	border: 2px solid var(--theme-color-second);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	opacity: 0;
	overflow: hidden;
	color: #fff;
}

.m-backtotop.active {
	bottom: 0;
	opacity: 1;
}

.m-backtotop > div {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.m-backtotop > div.arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	opacity: 1;
	z-index: 999;
}

.m-backtotop > div.text {
	font-size: 0.5rem;
	line-height: 10px;
	text-transform: uppercase;
	font-weight: 900;
	font-family: "Open Sans", sans-serif;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(50%) translateX(-50%);
	opacity: 0;
	margin-top: 1px;
}

.m-backtotop:hover {
	transform: scale(1.1);
	bottom: 0px;
	cursor: pointer;
	background: black;
	box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover > div.arrow {
	transform: translateY(-150%) translateX(-50%);
	opacity: 0;
}

.m-backtotop:hover > div.text {
	transform: translateY(-50%) translateX(-50%);
	opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--theme-color-second);
	transition: height 0.2s ease-in-out;
}

.py-5 {
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}

.py-6 {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}

.py-7 {
	padding-top: 70px !important;
	padding-bottom: 70px !important;
}

.py-8 {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}

.py-9 {
	padding-top: 90px !important;
	padding-bottom: 90px !important;
}

.py-10 {
	padding-top: 100px !important;
	padding-bottom: 100px !important;
}

.gap-p p {
	margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
	display: none;
}


a.navbar-brand img {
	width: 121px;
}
.header_menu li a {
	color: #000000;
	font-size: 16px;
	text-transform: uppercase;
	padding: 29px 19px;
	display: inline-block;
}
#main_header{
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	right: 0;
}
.header_menu li a:hover {
	color: var(--theme-color-second);
}

.hd_info {
	display: flex;
	align-items: center;
	gap: 10px;

	flex-wrap: wrap;
}

a.comon-btn {
	background: var(--theme-color-second);
	color: #fff;
	display: inline-block;
	font-size: 15px;
	padding: 12px 6px;
	border-radius: 5px;
	width: 12rem;
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
}
a.comon-btn:hover {
	background: var(--theme-color-second);
	color: #fff;
}

a.btn-white {
	background: #fff;
	color: var(--theme-color-second);
}

.header_menu li a {
	color: #ffffff;
	font-size: 15px;
	text-transform: uppercase;
	padding: 29px 19px;
	display: inline-block;
	font-weight: 500;
}

.navbar li:hover a {
	color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
	transition: .3s;
	opacity: 1;
	visibility: visible;
	top: 100%;
	transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
	.navbar .dropdown-menu-end {
		right: 0;
		left: auto;
	}

	.navbar li .dropdown-menu {
		display: block;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		margin-top: 0;
	}

	.navbar li:hover a {
		color: var(--theme-color-second);
	}

	.navbar .dropdown-menu.fade-down {
		top: 80%;
		transform: rotateX(-75deg);
		transform-origin: 0% 0%;
	}

	.navbar .dropdown-menu.fade-up {
		top: 180%;
	}

	.navbar li:hover .dropdown-menu {
		transition: .3s;
		opacity: 1;
		visibility: visible;
		top: 100%;
		transform: rotateX(0deg);
	}
}

ul.dropdown-menu.fade-up li a:hover {
	color: #fff !important;
	background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
	border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
	border-bottom: 1px solid #c1c0bd;
	margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
	color: #000 !important;
	font-size: 14px;
	display: block;
	width: 100%;
	padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
	border: none;
	background: #fff;
	padding: 0 0;
	min-width: inherit;
	width: 200px;
	border-radius: 0px;
}

.link-sm-2 i {
	top: -9px !important;
}

.link-sm-2 {
	position: relative;
}


.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%
}

.sticky-top-1.sticky {
	background: #fff !important;
	z-index: 9999999999999;
}


.banner_sec {
	padding-top: 200px;
}

.banner_sec h1{
	color: var(--theme-color-second);
}

.banner_sec .rating ul{
	display: flex;
	gap:10px;
	color: orange;

}


.banner_sec .rating-box {
	padding-top: 80px;
	width: 74%;
}

.video_sec h4{
	color: var(--theme-color-second);
}

.video_sec p{
	font-size: 14px;
	line-height: 1.5;
}

.testimonial_sec h2{
	color: var(--theme-color-second);
}

.testimonial_sec h3 {
	color: var(--theme-color-second);
	font-size: 55px;
}

/* testimonial_sec */

.testimonial_sec ul {
	gap: 1px;
	font-size: 17px;
	color: #f4cf00;
	margin-bottom: 9px;
}

.testimonial_sec .review-item p {
	font-size: 15px;
	line-height: 25px;
	color: #535353;
	margin-bottom: 28px;
}

.testimonial_sec .owl-nav {
	position: absolute;
	left: -290px;
	display: none;
}

.testimonial_sec .review-item p strong {
	font-weight: 500;
	margin-bottom: -10px;
	display: block;
	color: #000;
	line-height: 1.4;
}

.testimonial_sec .review-item {
	margin-bottom: 22px;
	background: #fff;
	padding: 30px 20px;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 0 5px;
	margin: 30px 0;
}

.testimonial_sec .btom_content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.testimonial_sec .btom_content p {
	font-size: 16px;
	margin-bottom: 0;
}

.testimonial_sec .btom_content img {
	width: 185px;
}

.review-item .top_content {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 10px;
}

.testimonial_sec .review-item img {
	width: 26px !important;
}


.fixed_info {
	display: flex;
	justify-content: space-around;
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 9999;
}

.fixed_info .book-main {
	background-color: var(--theme-color-third);
	display: inline-flex;
	width: 100%;
	text-align: center;
	padding: 16px 5px;
	color: #fff;
	text-transform: uppercase;
	justify-content: center;
	gap: 15px;
	align-items: center;
	font-weight: 600;
}

.fixed_info .book-main.green-btn {
	background-color: var(--theme-color-second);
	color: #000;
}
.service_sec h5{
	font-family: var(--paragraph-font);
	margin-bottom: 0;
	text-transform: uppercase;
}
.service_sec h2{
	color: var(--theme-color-second);
}

.testimonial_sec .owl-dots{
	display: none;
}

.service_sec .service-box{
	position: relative;
}

.service_sec .service-box .overlay-1{
	width: 100%;
	position: absolute;
	top: 0;
}
.service_sec .service-box .overlay-2{
	width: 100%;
	position: absolute;
	bottom: 0;
}
.service_sec .service-box h3{
	text-transform: uppercase;
	font-size: 22px;
}
.service_sec .service-box .overlay-1 h3{
	font-size: 29px;
}
.service_sec .service-box img{
	object-fit: cover;
}
.service_sec .service-box-1 img {
	height: 663px;
}
.service_sec .service-box-2 img {
	height: 373px;
}
.service_sec .service-box-3 img {
	height: 282px;
}

.service_sec .service-box-1 .overlay-2 h3{
	font-size: 29px;
}

.why_choose_us .heading h5{
	text-transform: uppercase;
	font-family: var(--paragraph-font);
	margin-bottom: 0;
}

.why_choose_us .accordion-item {
	background-color: transparent;
	border: none;
}

.why_choose_us h2{
	color: #c5a46b;
}
.why_choose_us .accordion-button {

	background-color: transparent;
	color: #fff;
	font-family: var(--heading-font);
	font-size: 22px;
	border-bottom: 2px solid #fff;
	box-shadow: none;
}

.why_choose_us .accordion-button::after {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	content: "+";
	background-image: none;
	background-repeat: no-repeat;
	background-size: 1.25rem;
	transition: transform .2s ease-in-out;
	color: #fff;
}
.why_choose_us .accordion-button:not(.collapsed)::after {
	content: "-";
	background-image: none;
	transform: rotate(0deg);
}

.element_nail_bar_sec h2{
	color: var(--theme-color-second);
}

.element_nail_bar_sec .img-box{
	position: relative;
}

.element_nail_bar_sec .img-box .overlay-1{
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	top: 20%;
}

.element_nail_bar_sec .img-box  h5{
	font-family: var(--paragraph-font);
}

.our_gallery h2 {
	color: var(--theme-color-second);
}

.faq_sec h2{
	color: var(--theme-color-second);
}
.faq_sec h3{
	color: var(--theme-color-second);
	font-size: 55px;
}
.faq_sec img{
	display: none;
}
.menu-sec.faq_sec img{
	display: block;
}
.faq_sec .accordion-button {

	background-color: #ebe4d9;
	box-shadow: none;
}

.faq_sec  .accordion-button:not(.collapsed) {
	color: #000000;
	background-color: #a6c1b4;
	box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.faq_sec  .accordion-item {

	margin-block: 15px;
	border-radius: 5px;
	overflow: hidden;
	background: #a6c1b4;
	border: 1px solid  !important;
}



.accordion-button::after {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	content: "+";
	background-image: none;
	background-repeat: no-repeat;
	background-size: 1.25rem;
	transition: transform .2s ease-in-out;
	color: #000000;
}
.faq_sec .accordion-button:not(.collapsed)::after {
	content: "-";
	background-image: none;
	transform: rotate(0deg);
}


.blog_sec h3 {
	font-size: 28PX;
	font-family: var(--paragraph-font);
}

.blog_sec .blog-box p {
	margin-bottom: 7px;
}

.blog_sec .blog-box {
	position: relative;
}

.blog_sec .blog-box .ober-lay {
	position: absolute;
	bottom: 26px;
	left: 10px;
	padding: 10px 18px;
	width: 100%;
}

.blog_sec .blog-box .ober-lay h5 {
	/* font-weight: 300; */
	margin-bottom: 0;
	text-transform: capitalize;
	font-size: 26px;
	line-height: 28px;
	font-family: var(--paragraph-font);

}

.blog_sec .text-dark p {
	margin-bottom: 7px;
	/* color: #dfdfdf; */
	font-size: 16px;
}


.blog_sec img {
	border-radius: 6px;
}

.blog_sec .text-dark h5 {
	/* color: #fff; */
	font-size: 15px;
	line-height: 1.4;
	font-weight: 400;
	font-family: var(--paragraph-font);

}

.blog_sec .text-dark h5 b {
	/* color: #fff; */
	font-size: 16px;
	font-weight: 400 !important;
}


.map {
	line-height: 0 !important;
}
.map iframe{
	width: 100%;
}
.Instagram-sec img {
	border-radius: 20px;
}


/* Footer Sec */

footer {
	padding: 80px 0;
}

footer .ft_logo .content p {
	margin-bottom: 0;
	padding-left: 25px;
	font-size: 15px;
	line-height: 1.5;
}

footer .ft_contact_info ul li {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 16px;
	font-weight: 500;
}

footer .ft_contact_info ul li a {
	font-size: 14px;
	color: #a8a8a8 !important;
}

footer .ft_contact_info ul {
	margin-bottom: 0;
	display: flex;
	justify-content: start;
	gap: 65px;
	margin-top: 45px;
}

footer .ft_menu_content ul {
	display: flex;
	gap: 24px;
	text-transform: uppercase;
	font-size: 14px;
	justify-content: space-between;
	margin-bottom: 0;
}

footer .ft_menu_content ul li a {
	color: #c5a46b;
}
footer .ft_menu_content {
	padding-bottom: 25px;
	margin-top: 70px;
	border-bottom: 1px solid #eee;
}

footer .copy_content .social_icon a img {
	width: 38px;
}

footer .copy_content .social_icon {
	display: flex;
	align-items: center;
	gap: 15px;
}

footer .copy_content p {
	color: #ccc;
}

footer .copy_content {
	margin-top: 45px;
}

footer .ft_contact_info2 ul li {
	display: flex;
	align-items: center;
	font-size: 15px;
	gap: 9px;
	margin-bottom: 7px;
}

footer .ft_contact_info2 ul li a {
	color: #fff;
}

footer .copy_content .social_icon a {
	font-size: 18px;
	color: #fff;
}

.banner_sec h1 span{
	font-size: 50px;
	color: #fff;
}
.banner_sec h1 {
	line-height: 50px;
}



.signature-service h2 {
	color: var(--theme-color-second);
}

.signature-service h3 {
	color: var(--theme-color-second);
	font-size: 55px;
}

.signature-service .sign-box {
	color: #000000;
}

.our-service .service-box {
	position: relative;
}

.our-service .service-box .over-lay {
	position: absolute;
	width: 100%;
	left: 0;
}

.our-service .service-box .over-lay h4 {
	margin-bottom: 0;
	color: var(--theme-color-second);
}

.our-service .service-box .over-lay p {
	font-size: 14px;
	line-height: normal;
}

.our-service .service-box h4 {
	font-size: 28px;
}

.our-service .service-box .over-lay a.comon-btn {
	padding: 8px;
	width: 10rem;
}

.our-service .service-box#bottom .over-lay {
	bottom: 0;

}

.our-service .service-box#top .over-lay {
	top: 0;

}

.our-service .heading h5 {
	font-family: var(--paragraph-font);
	text-transform: uppercase;
	font-size: 25px;
	color: #000;
	margin-top: 25px;
}

.our-service .heading h5 a {
	color: green;
}



.menu-sec h3 {
	color: var(--theme-color-second);
}

.menu-sec p span {
	font-size: 19px;
	display: block;
	margin-bottom: 25px;
}


.menu-sec p b {
	font-size: 18px;
}

.menu-sec .menu-list li {
	display: flex;
	gap: 5px;
	margin-bottom: 5px;
}

.menu-sec .menu-list li:last-child {
	margin: 0;
}

.menu-sec .menu-list li i {
	font-weight: bold;
	color: var(--theme-color-second);

}
.menu-sec .v-line {
	width: 2px;
	background-color: var(--theme-color-second);
	height: 100%;
	margin: 0 auto;
}

.inner-banner {
	padding: 175px 0;
}

.inner-banner h1 {
	color: #f4f4f4;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px #fff;
}


.inner-banner .breadcrumb {
	font-family: var(--heading-font);
	color: #e7eae3;
}

.inner-banner .breadcrumb a {
	color: #e7eae3;
}

.inner-banner {
	padding: 175px 0;
}



footer .ft-list li a{
	display: flex;
	gap: 10px;
	font-size: 14px;
	line-height: 1.6;
	color: #fff;
}
footer .ft-list li {
	margin-bottom: 10px;

}

footer h5{
	font-family: var(--paragraph-font);
}




.inner-blog-left-sec {
	box-shadow: rgb(255 255 255) 0px 8px 24px;
	border: rgb(255 255 255);
	/* padding: 15px 19px 35px; */
	border-radius: 8px;
	padding-bottom: 35px;
	background: #fff;
}
.inner-blog-left-sec .inner-blog-sec1 p {
	color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
	display: flex;
	align-items: center;
	gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
	color: #606060;
	margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
	font-weight: 600;
	margin-bottom: 18px;
	/* font-size: 29px; */
}
.inner-blog-left-sec .inner-blog-sec1 img {
	border-radius: 5px;
	margin-bottom: 0;
	height: 250px;
	object-fit: cover;
}
.inner-blog-left-sec .inner-blog-sec1 h2 , .inner-blog-left-sec .inner-blog-sec1 h3{
	color: var(--theme-color-forth);
}
.inner-blog-left-sec .inner-blog-sec1 .share-sec {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #1c1c1c2b;
	margin-bottom: 10px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
	display: flex;
	gap: 15px;
	align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
	font-size: 17px;
	color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
	color: var(--theme-color);
	font-size: 16px;
	margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
	color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
	color: var(--theme-color);
	font-size: 15px;
	font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
	color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
	padding: 25px 18px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border: rgba(149, 157, 165, 0.2);
	border-radius: 5px;
	height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
	padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
	border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
	color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
	color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
	color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
	padding: 20px 25px;
	border: 1px solid rgba(69, 69, 70, 0.2);
	border-radius: 8px;
	background: #fff;
	color: #000;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
	width: 100%;
	outline: none;
	padding: 11px;
	border-radius: 4px;
	border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
	width: 100%;
	outline: none;
	padding: 11px;
	border-radius: 4px;
	border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
	color: #ffffff;
	background-color: #000;
	display: inline-block;
	width: 100%;
	text-transform: uppercase;
	text-align: center;
	border: 1px solid #000;
	padding: 15px 20px;
	border-radius: 8px;
	font-weight: 400;
	transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
	background: #1c1c1c3b;
	border: 1px solid #1c1c1c3b;
	color: #000;
	transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
	color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
	display: flex;
	gap: 25px;
	align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
	font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
	color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
	border-top: 1px solid #1c1c1c3b;
	border-bottom: 1px solid #1c1c1c3b;
	padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
	border-radius: 5px;
}

.inner-blog-left-sec h2{
	font-size: 35px;
}
/* inner-blog-right-sec */

.inner-blog-right-sec {
	box-shadow: rgb(255 255 255) 0px 8px 24px;
	border: rgb(255 255 255);
	padding: 15px 19px 35px;
	border-radius: 8px;
	padding-bottom: 35px;
	background: #fff;
}

.inner-blog-right-sec .blog-search form {
	position: relative;
	border: 1px solid #1c1c1c3b;
	border-radius: 5px;
	padding: 11px 13px;
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: #fff;
}

.inner-blog-right-sec .blog-search form input {
	border: none;
	outline: none;
	padding: 0;
	width: 100%;
}

.inner-blog-right-sec .blog-search form button {
	/* position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 100%; */
	cursor: pointer;
	background: none;
	border: 0;
	font-size: 15px;
	color: #000000;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #1c1c1c3b;
	padding: 15px 0;
	gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
	width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
	color: #000000ab;
	font-weight: 300;
	font-size: 14px;
	margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
	color: #000000ab;
	font-size: 15px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
	width: 100%;
}


.signature-service .heaidng h2 {
	color: #000000;
	font-size: 22px;
}

.signature-service .heaidng h4 {
	color: #000000;
	font-size: 22px;
}

.policy p a{
	color: var(--theme-color-second);
}

.policy ul li{
	font-size: 16px;
	margin-bottom: 15px;
}

.policy ul li a{
	color: var(--theme-color-second);
}

/* Blog Pagination CSS */
.center {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

a.page-numbers {
	color: #000000;
	padding: 10px 10px;
	text-decoration: none;
	transition: background-color 0.5s;
	border: 1px solid #ddd;
	border-radius: 5px;
	margin: 0px 5px;
	padding: 10px 15px;
	font-size: 18px;
}

a.page-numbers:hover {
	background-color: #d6d4d4;
}

span.page-numbers.current {
	background-color: #6d8b79;
	color: #fff;
	padding: 10px 15px;
	text-decoration: none;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	margin: 0px 5px;
	font-size: 18px;
	z-index: 3;
	border-radius: 5px;
}


/* Blog Search CSS */
input#search-form-1 {
	border: none;
	outline: none;
	width: 100%;
}
.single-post label {
	width: 100%;
}
.search-form label {
	width: 100% !important;
}

/* Blog Leave A Comment */
.inner-blog-left-sec .inner-blog-comment .contact-form {
	padding: 20px 25px;
	border: 1px solid rgba(69, 69, 70, 0.2);
	border-radius: 8px;
	background: #fff;
	color: #000;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


#respond {
	/*     max-width: 600px; */
	margin: 0 auto;
}
#respond #reply-title small a{
	color: white !important;
	background-color: #000 !important;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
#respond h2 {
	font-size: 24px;
	margin: 24px 0 16px 0;
	font-weight: 500;
}
#respond form {
	display: block;
	margin-top: 0em;
	border: none;
}
#respond form p{
	color: #6d6d6d;
	margin: 0;
	line-height: 26px;
	margin-bottom: 21px;
	font-size: 16px;
}
#respond .comment-form-comment,
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
	margin-bottom: 20px;
}

#respond label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

#respond .comment-form-cookies-consent {
	margin-top: 20px;
}

#respond .form-submit {
	margin-top: 20px;
}

#respond .submit {
	background-color: #6d8b79;
	color: white;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#respond .submit:hover {
	background: #000000;
	color: #fff;
	transition: all 0.8s;
}#respond .comment-form-cookies-consent input {
	width: 18px;
	height: 12px;
}
#respond .comment-form-cookies-consent input,
#respond .comment-form-cookies-consent label {
	display: inline;
}
#respond p.logged-in-as a{
	color: #0f3ca1 !important;
	text-decoration: underline;
	display: inline-block !important;
}
#comments .comment-author a{
	color: #000 !important;
}
#comments .comment-metadata a{
	color: #000 !important;
}
#comments .comment-metadata a.comment-edit-link{
	color: white !important;
	background-color: #000 !important;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
#comments span.comment-reply a{
	color: white !important;
	background-color: #000 !important;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin-right: 10px !important;
}

/* Booking CSS */
.icon-circle {
	width: 60px;
	height: 60px;
	background-color: #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-circle i {
	font-size: 28px;
	color: #eec436 !important;
}
.tnp-subscription label {
	display: block;
	color: inherit;
	font-weight: 400;
	line-height: normal;
	padding: 0;
	margin: 0;
	margin-bottom: .25em;
	font-size: .9em;
}

.tnp-email {
	padding: 14px !important;
	border: 1px solid #000 !important;
	border-radius: .25rem !important;
}

.tnp-subscription div.tnp-field {
	margin-bottom: .7em;
	border: 0;
	padding: 0;
}

.tnp-field input[type=submit] {
	position: inherit;
}

.tnp-subscription input.tnp-submit {
	background-color: #444;
	color: #fff;
	width: auto;
	height: auto;
	margin: 0;
	display: inline-block;
}

.tnp-subscription div.tnp-field {
	margin-bottom: .7em;
	border: 0;
	padding: 0;
}

.tnp-submit {
	padding: 14px !important;
	width: 100% !important;
	border: none !important;
	background-color: gold !important;
	color: #000 !important;
	font-size: 18px !important;
}

.book-now .rating-box {
	border: 1px solid #d7cdcd;
	padding: 10px 15px;
	border-radius: 4px;
}

.book-now .rating-box p {
	display: flex;
	gap: 5px;
	align-items: center;
	justify-content: center;
}

.fixed-right {
	width: fit-content;
	position: fixed;
	top: 45%;
	right: -30px;
	transform: rotate(90deg);
	z-index: 999;
}
.fixed-right a {
	background-color: var(--theme-color-third);
	color: var(--theme-color-second);
	display: inline-block;
	padding: 8px 19px;
	text-transform: uppercase;
	line-height: 1;
}

.gall-head {
	color: var(--theme-color-second);
	font-size: 55px;
	font-family: var(--heading-font);
	font-weight: 500;
	line-height: 1.2;
}
.blog-heading {
	font-size: 55px;
	font-family: var(--heading-font);
	font-weight: 500;
	line-height: 1.2;
}

.custom-sec h3 {
	font-size: 55px;
}

.blog_sec .blog-box .ober-lay .blg-inr-hd {
	margin-bottom: 0;
	text-transform: capitalize;
	font-size: 26px;
	line-height: 28px;
	font-family: var(--paragraph-font);
}
.blog_sec .text-dark .blg-inr-hd-1 {
	/* color: #fff; */
	font-size: 15px;
	line-height: 1.4;
	font-weight: 400;
	font-family: var(--paragraph-font);
}

.Instagram-sec h3 {
	font-size: 55px;
}

span.ft-hd {
	font-family: var(--paragraph-font);
	margin: 0;
	margin-bottom: 15px !important;
	font-weight: 500;
	line-height: 1.2;
	font-size: 1.25rem;
}

.responsive-iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


#areas .img-box img {
    opacity: 1;
    transition: .3s;
    height: 325px;
    object-fit: cover;
}

#areas h4 {
	font-size: 22px;
}

.faq-ul, .pol-ul, .blg-ul, .cus_area_ul {
	margin-left: 40px;
	list-style: disc; 
}

ul.area-list {
	list-style: disc;
	padding-left: 32px;
	font-size: 15px;
}
.spa-pedicure p span a {
    color: #6D8B79!important;
}
.spa-pedicure p span {
	font-size: 22px;
}

