/* Font Link */
@import url('https://fonts.googleapis.com/css2?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 Var */
:root {

	/* Root Theme Color */
	--theme-color: #000;
	--theme-color-second: #fff;
	--theme-color-third: #414141;
	--theme-color-fourth: #e6e6e6;


	/* Root Font */
	--heading-font: "head-font";
	--paragraph-font: "Poppins", sans-serif;
	--span-font: "spanist";

	/* Root Shadow Css */
	--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: 15px;
	color: #1e1e1e;
	background-color: #fff;
	scroll-behavior: smooth;
	overflow-x: hidden !important;
	font-family: var(--paragraph-font);
}

/* Font Face */
@font-face {
	font-family: "head-font";
	src: url(../fonts/Branch.ttf);
}

@font-face {
	font-family: "spanist";
	src: url(../fonts/FifeGallery.ttf);
}

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: 12px;
	color: inherit;
	font-family: var(--heading-font);
}

p {
	margin: 0;
	line-height: 27px;
	margin-bottom: 21px;
	font-size: 15px;
	text-align: justify;
	text-justify: distribute;
}

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: 68px;
	line-height: 1;
}

h2 {
	font-size: 44px;
}

h3 {}

h4 {}

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;
}

/* Back To Top */

@-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%;
	}
}


.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: 20px;
	width: 50px;
	height: 50px;
	background: #000;
	border-radius: 25px;
	text-align: center;
	border: 2px solid #bdbdbd;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	opacity: 0;
	overflow: hidden;
	color: #fff;
	z-index: 1111;
}

.m-backtotop.active {
	bottom: 15px;
	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;
}

.m-backtotop>div.text {
	font-size: 5px;
	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: 20px;
	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;
}

/* Padding Top And Bottom */
.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;
}

/* Form Css */

.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;
}

/* Site Button */
.hd_info {
	display: flex;
	align-items: center;
	color: #fff;
	gap: 10px;
}

a.comon-btn {
	background: var(--theme-color-second);
	color: var(--theme-color);
	display: inline-block;
	font-size: 15px;
	padding: 12px 0;
	border-radius: 3px;
	text-transform: uppercase;
	width: 205px;
	text-align: center;
}

a.comon-btn:hover {
	background: var(--theme-color-third);
	color: var(--theme-color-second);
}

a.comon-btn2 {
	background: var(--theme-color-second);
	color: var(--theme-color);
	display: inline-block;
	font-size: 12px;
	padding: 6px 0;
	border-radius: 3px;
	text-transform: uppercase;
	width: 185px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}


a.comon-btn3 {
	background: var(--theme-color-third);
	color: var(--theme-color-second);
	display: inline-block;
	font-size: 15px;
	padding: 12px 0;
	border-radius: 3px;
	text-transform: uppercase;
	width: 205px;
	text-align: center;
}

a.comon-btn3:hover {
	background: var(--theme-color);
	color: var(--theme-color-second);
}


a.comon-btn4 {
	background: var(--theme-color-fourth);
	color: var(--theme-color);
	display: inline-block;
	font-size: 15px;
	padding: 12px 0;
	border-radius: 3px;
	text-transform: uppercase;
	width: 205px;
	text-align: center;
}

a.comon-btn4:hover {
	background: var(--theme-color);
	color: var(--theme-color-second);
}

/* a.comon-btn2:hover {
background: #121212;
color: var(--theme-color-second);
} */

a.comon-btn2 img {
	width: 40px;
	border-radius: 1;
	border-right: 2px solid #000;
	padding-right: 8px;
}

a.comon-btn2 .content span {
	font-size: 15px;
	font-weight: 500;
}

a.comon-btn2 .content {
	line-height: 1.2;
}

/* Sticky Top */
.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%
}

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

/* Small Header */

.small {
	display: none;
}

.header_menu {
	background: #000;
/* 	position: absolute;
	left: 0;
	right: 0; */
}

a.navbar-brand img {
	width: 150px;
	margin-left: -85px;
}

.header_menu li a {
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	padding: 22px 19px;
	display: inline-block;
}

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

.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: 280px;
	border-radius: 0px;
}

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

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

#main_header .top_logo_bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
}

/* #main_header .top_logo_bar .navbar-brand {
position: absolute;
left: 0;
right: 0;
text-align: center;
display: block;
top: 7px;
bottom: 0;
} */

#main_header .mail_img {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 15px;
}

#main_header .mail_img img {
	width: 26px;
}

/* Banner Section */
.banner_sec h1 {
	text-transform: uppercase;
	font-size: 74px;
	line-height: 1;
	margin-bottom: 3px;
}

.banner_sec h1 span {
	font-family: var(--span-font);
	text-transform: capitalize;
	display: block;
	text-align: center;
	margin-bottom: 14px;
	margin-left: -67px;
	font-size: 82px;
	margin-top: -5px;
}

.banner_sec h5 {
	font-size: 21px;
	margin-bottom: 0px;
	font-family: var(--paragraph-font);
	font-weight: 400;
}

.banner_sec {
	padding: 200px 0 40px;
}

.banner_sec .btom_social_icon img {
	width: 99px;
}

.banner_sec .btom_social_icon {
	display: flex;
	align-items: center;
	gap: 13px;
	padding-top: 190px;
}

.home_sec1 .btom_content {
	display: flex;
	align-items: center;
	gap: 20px;
}

.home_sec1 .btom_content img {
	width: 110px;
}

.home_sec1 .btom_content h6 {
	font-size: 17px;
	margin-bottom: 6px;
}

/* Home Section 2 */
.home_sec2 h3 {
	font-family: var(--span-font);
	font-size: 52px;
	margin-bottom: 0px;
}

.home_sec2 .heading {
	width: 90%;
	padding-left: 40px;
}

.home_sec3 {
	padding-bottom: 360px;
}

/* ***** */
/* .home_sec4 {
	padding-top: 660px;
} */
.home_sec4 {
    padding-bottom: 660px;
}

#home_sec4 p a {
	color: #fff;
}

/* faq_sec */

.faq-contact .accordion-button:not(.collapsed) {
	color: #ececec;
	background-color: #414141;
	box-shadow: none;
	border: none !important;
}

.faq-contact .accordion-item {
	color: var(--bs-accordion-color);
	background-color: var(--bs-accordion-bg);
	border: none;
}

.faq-contact .accordion-button:focus {
	z-index: 3;
	border-color: var(--bs-accordion-btn-focus-border-color);
	outline: 0;
	box-shadow: var(--bs-accordion-btn-focus-box-shadow);
	border: none !important;
}

.faq-contact .accordion-button:focus {
	z-index: 3;
	border-color: var(--bs-accordion-btn-focus-border-color);
	outline: 0;
	box-shadow: none !important;
}

.faq-contact .accordion-item {
	margin-bottom: 10px;
	border-radius: 30px;
	overflow: hidden;
	text-align: start;
	background: #0c2c6200;
	color: #fff;
	border: none;
}

.faq-contact .accordion-body {
	background: #414141;
}

.faq-contact .accordion-item:last-of-type .accordion-collapse {
	border-bottom-right-radius: var(--bs-accordion-border-radius);
	border-bottom-left-radius: var(--bs-accordion-border-radius);
	background: #000000 !important;
}

.faq-contact .accordion-button:not(.collapsed)::after {
	transform: var(--bs-accordion-btn-icon-transform);
}

.faq-contact .accordion-button::after {
	flex-shrink: 0;
	width: var(--bs-accordion-btn-icon-width);
	height: var(--bs-accordion-btn-icon-width);
	margin-left: auto;
	content: "";
	/* background-image: url(../image/down-arrow.png) !important; */
	background-repeat: no-repeat;
	background-size: var(--bs-accordion-btn-icon-width);
	transition: var(--bs-accordion-btn-icon-transition);
}

.faq-contact .get-intouch button:hover {
	background-color: #000;
	color: #fff;
}

.faq-contact .accordion-item h2 {
	line-height: 22px;
	font-size: 18px;
}

.faq-contact .accordion-item p {
	color: #d2d2d2;
	padding-left: 25px;
	border-left: 2px solid #e3e3e3;
	margin-left: 23px;
}

.faq-contact .accordion-body {
	padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
	padding-top: 0;
}

.faq-contact .accordion-button {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 19px 20px;
	font-size: 18px;
	color: #000;
	text-align: left;
	background-color: #bdbdbd;
	border: 0;
	border-radius: 0;
	overflow-anchor: none;
	transition: var(--bs-accordion-transition);
}

.faq-contact h2 span {
	font-size: 105px;
	font-weight: 500;
}

/* ************ */

.reviews .reviews-wrapper {
	display: flex;
	align-items: center;
	gap: 0;
	flex-wrap: wrap;
}

.reviews .review-image img {
	width: 100%;
	max-width: 500px;
	border-radius: 0;
	object-fit: cover;
}

.reviews .review-card {
	background: #fff;
	padding: 45px 35px;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	flex: 1;
	min-width: 50%;
}

.reviews .review-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: #555;
}

#reviews h2 {
	font-size: 54px;
}

.reviews .review-card p {
	line-height: 2.1;
}

#reviews .review-author {
	font-size: 19px;
	position: relative;
}

#reviews .review-author::after {
	content: "";
	width: 250px;
	height: 2px;
	background: #000;
	position: absolute;
	left: 0;
	top: -13px;
}

/* *** */
.reviews .testimonial_slider .owl-stage {
	padding: 10px 0;
	position: relative;
}

.reviews .testimonial_slider .owl-nav img {
	width: 10px !important;
	height: 20px !important;
}

.reviews .testimonial_slider .owl-nav .owl-prev, .reviews .testimonial_slider .owl-nav .owl-next {
	width: 40px;
	height: 40px;
	background: #e1e1e1;
	border-radius: 50px;
}

.reviews .testimonial_slider .owl-nav {
	display: flex;
	align-items: center;
	gap: 6px;
}

.reviews .review .top_img img {
	position: absolute;
	left: -10px;
	top: -20px;
	z-index: 1111;
	width: 45px !important;
}

/* faq-content */
.faq-contact .get-intouch input {
	background-color: #e9e9e9;
	padding: 14px;
	border-radius: 5px;
	width: 100%;
	border: none;
}

.faq-contact .get-intouch textarea {
	background-color: #e9e9e9;
	padding: 14px;
	border-radius: 5px;
	width: 100%;
	border: none;
	height: 120px;
}

.faq-contact .get-intouch button {
	background-color: var(--theme-color-third);
	padding: 14px;
	border-radius: 5px;
	width: 100%;
	border: none;
	color: #fff;
	text-transform: uppercase;
}

.faq-contact h3 {
	font-size: 55px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	position: relative;
}

.faq-contact h3 span {
	margin-left: 80px;
	display: block;
	margin-bottom: 55px;
}

.faq-contact .top_content {
	position: relative;

}

.faq-contact .top-img img {
	position: absolute;
	width: 250px;
	right: 105px;
	top: -40px;
}

/* ********* */
.btn-view-all {
	background: #333;
	color: #fff;
	padding: 10px 22px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-radius: 2px;
	transition: 0.3s;
}

.btn-view-all:hover {
	background: #555;
}

.blog-item {
	position: relative;
	overflow: hidden;
}

.blog-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform .4s ease;
}

.blog-item:hover img {
	transform: scale(1.05);
}

.blog-overlay {
	position: absolute;
	bottom: 15px;
	left: 15px;
	right: 15px;
	background: rgba(255, 255, 255, 0.9);
	padding: 12px;
	text-align: center;
	border-radius: 4px;
}

#blogs .blog-overlay h4 {
	font-size: 15px;
}

/* Footer Section */
.site-footer {
	background: #333;
	color: #fff;
	padding: 80px 0 30px;
	font-size: 14px;
}

.footer-logo {
	max-width: 190px;
}

.footer-about p {
	color: #ccc;
}

.btn-footer {
	display: inline-block;
	background: #fff;
	color: #333;
	padding: 8px 20px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 2px;
	transition: 0.3s;
}

.btn-footer:hover {
	background: #f1f1f1;
}

.footer-title {
	font-size: 17px;
	margin-bottom: 20px;
	font-family: var(--paragraph-font);
}

.footer-links,
.footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li, .footer-contact li {
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	color: #fff;
}

.footer-links a {
	/* color: #bbb; */
	text-decoration: none;
	transition: 0.3s;
}

.footer-links a:hover {
	color: #fff;
}

.footer-contact i {
	margin-right: 8px;
	font-size: 17px;
}

.footer-bottom {
	border-top: 1px solid #444;
	font-size: 13px;
}

.footer-links a i {
	font-size: 16px;
}

.footer-social a {
	margin-left: 0;
	font-size: 17px;
	transition: 0.3s;
	color: #fff;
	width: 40px;
	height: 40px;
	display: flex;
	border: 2px solid #fff;
	align-items: center;
	justify-content: center;
	border-radius: 40px;
}

.footer-social a:hover {
	color: #fff;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}

.footer-links li, .footer-contact li a {
	color: #fff;
}

.footer-social {
	display: flex;
	gap: 6px;
}

.site-footer {
	position: relative;
}

.site-footer::after {
	content: "";
	width: 42%;
	height: 100%;
	background: var(--theme-color-third);
	position: absolute;
	left: 0;
	top: 0;
}

.site-footer .footer-about {
	position: relative;
	z-index: 1111;
}

.site-footer .footer-bottom {
	position: relative;
	z-index: 1111;
}

.footer-about p {
	color: #ccc;
	padding-right: 90px;
}

.site-footer .footer-bottom p {
	font-size: 14px;
}

.site-footer .footer-bottom {
	position: relative;
	z-index: 1111;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Inner Banner */
#inner-banner {
	padding: 235px 0 40px;
}

#inner-banner .btom_social_icon {
	display: flex;
	align-items: center;
	gap: 13px;
	padding-top: 150px;
}

/* About Page Section 1 */
.about_sec img {
	width: 110px;
}

.about_sec2 h2 span {
	font-family: var(--span-font);
	font-weight: 700;
	/* text-transform: capitalize; */
	/* display: block; */
	/* text-align: center; */
	/* margin-bottom: 14px; */
	/* margin-left: -67px; */
	font-size: 52px;
	/* margin-top: -5px; */
}

.faq-contact .accordion-item ul {
	color: #d2d2d2;
	padding-left: 25px;
	border-left: 2px solid #e3e3e3;
	margin-left: 23px;
}

.faq-contact .accordion-item ul li {
	margin-bottom: 12px;
}

/* About Section 1 */
#blog_sec1 ul li {
	background: #fff;

	width: 48%;
	box-shadow: rgba(0, 0, 0, 0.41) 1px 2px 7px;
	padding: 16px 14px;
	border-radius: 6px;
}

#blog_sec1 ul li a {
	display: flex;
	align-items: center;
	gap: 10px;
}

#blog_sec1 ul li {
	background: #fff;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 48%;
	box-shadow: rgba(0, 0, 0, 0.41) 1px 2px 7px;
	padding: 16px 14px;
	border-radius: 6px;
}


#blog_sec1 ul li span {
	font-size: 15px;
	/* font-family: var(--heading-font); */
	text-transform: uppercase;
}

#blog_sec1 ul li a {
	color: var(--theme-color);
}

#blog_sec1 ul {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

#blog_sec1 img {
	width: 34px;
}

/* Blog Sec */

.blog_sec1 h2 {
	color: #000;
}

.blog_sec1 h3 {
	font-size: 28PX;
}

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

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

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

.blog_sec1 .blog-box .ober-lay h5 {
	margin-bottom: 0;
	text-transform: capitalize;
	font-size: 26px;
	line-height: 28px;
}

.blog_sec1 .text-dark p {
	margin-bottom: 7px;
	font-size: 16px;
}


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

.blog_sec1 .text-dark h5 {
	font-size: 18px;
	line-height: 1.4;
	font-weight: 400;
}

.blog_sec1 .text-dark h5 b {
	font-size: 16px;
	font-weight: 400 !important;
}

.blog_sec1 a {
	color: #000;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: underline;
}

.blog_sec1 .bg-overlay {
	padding: 70px 0;
	padding-left: 60px;
}

.blog_sec1 .bg-overlay .content {
	background: #fff;
	padding: 24px 36px 35px 31px;
	border: 1px solid #000;
	position: relative;
	z-index: 111;
}

.blog_sec1 .bg-overlay .main_content {
	position: relative;
	background: white;
	padding: 16px;
}

/* ***** */
.number-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #000;
	font-size: 24px;
	font-weight: 600;
}

.number-btn img {
	width: 52px;
	border-right: 1px solid #000;
	padding-right: 10px;
}

.map {
	line-height: 0;
}

.location-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #000;
	font-size: 18px;
}

.location-btn img {
	width: 52px;
	border-right: 1px solid #000;
	padding-right: 10px;
}

.faq-contact .contact_info a {
	margin-bottom: 15px;
}

#testimonials-sec1 .heading img {
	width: 260px;
}

/* ***** */
.testimonials_sec2 {
	padding-bottom: 660px;
}

#gallery.about_sec .heading img {
	width: 38px;
}

#gallery p {
	font-size: 21px;
}

#gallery .gallery-bxo .img-fluid {
	width: 100% !important;
}

#gallery h4 {
	font-family: var(--paragraph-font);
	font-weight: normal;
}

#gallery h4 a {
	color: rgb(255, 0, 128);
}

#gallery .head-2 p {
	font-size: 17px;
}

.gats-menu .head-1 li {
	background: #fff;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.41) 1px 2px 7px;
	padding: 16px 14px;
	border-radius: 6px;
}

.gats-menu .head-1 li a {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gats-menu .head-1 li span {
	font-size: 15px;
	/* font-family: var(--heading-font); */
	text-transform: uppercase;
	color: #000;
}

.gats-menu {
	background-position: bottom !important;
}

.gats-menu .head-1 li img {
	width: 34px;
}

/* .gats-menu .head-1 {
	display: grid;
	grid-template-columns: auto auto auto auto;
	gap: 10px;
}

.gats-menu .head-1 {
	margin-bottom: 600px;
} */

.gats-menu .head-1 {
    margin-bottom: 600px;
    display: none;
}

.gats-menu .heading {
    color: #fff;
}

.gats-menu {
    padding-top: 600px;
}


.gats-menu .gead-4 ul li {
	margin-bottom: 25px;
}

.gats-menu .gead-4 ul li a {
	display: flex;
	font-size: 22px;
	font-family: var(--heading-font);
	color: #fff;
	gap: 10px;
}

.gats-menu .gead-4 ul li a i {
	border-right: 3px solid #fff;
	padding-right: 15px;
}

#pricing h4 {
	font-family: var(--paragraph-font);
}

#pricing a.comon-btn3 {
	width: inherit;
}

.pricing-1 .custom-list {
	list-style: none;
	padding: 0;

}

.pricing-1 .custom-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
	font-size: 15px;
	line-height: 1.6;
	text-align: start;
}

.pricing-1 .custom-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 10px;
	height: 10px;
	border: 2px solid #000;
	/* border only */
	transform: rotate(45deg);
	background: transparent;
	/* no fill */
}

.pricing-2 {
	background-color: #000 !important;
}

.pricing-2 .price-box {
	background-color: #d1d1d14f;
	color: #ffffff;
	transition: 0.6s;
	border: 2px solid #fff;
}

.pricing-2 .price-box:hover {
	background-color: #ffffff;
	color: #000;
	transition: 0.6s;
	border: 2px solid #fff;
}

.pricing-2 .price-box .top-box {
	border-bottom: 2px solid #fff;
	display: flex;
	gap: 15px;
	align-items: center;

}

.pricing-2 .price-box:hover .top-box {
	border-bottom: 2px solid #000000;
	display: flex;
	gap: 15px;
	align-items: center;

}

.pricing-2 .price-box .top-box img {
	width: 85px;
}

.pricing-2 .price-box .top-box h5 {
	margin-bottom: 0;
	font-family: var(--paragraph-font);
}

.pricing-2 .price-box .custom-list {
	list-style: none;
	padding: 0;

}

.pricing-2 .price-box .custom-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 14px;

	font-size: 15px;
	line-height: 1.6;

}

.pricing-2 .price-box .custom-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 10px;
	height: 10px;
	border: 2px solid #fff;
	/* outlined rhombus */
	background: transparent;
}

.pricing-2 .price-box:hover .custom-list li::before {
	border-color: #000;
}

.pricing-2 .price-box:hover a.comon-btn {
	background-color: #333;
	color: #fff;
}

.pricing-3 {
	background-position: top !important;
}

.pricing-3 .pricing-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;

	margin: 0 auto;
	position: relative;
}

.pricing-3 .pricing-section::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background: #ddd;
	/* divider line */
}

.pricing-3 .pricing-list {
	list-style: none;
	padding: 0 20px;
	margin: 0;
}

.pricing-3 .pricing-list li {
	margin-bottom: 30px;
	position: relative;
	padding-left: 20px;
}

.pricing-3 .pricing-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 20px;
	line-height: 1;
}

.pricing-3 .item-title {
	font-size: 16px;
	font-weight: bold;
}

.pricing-3 .item-sub {
	font-size: 13px;
	color: #666;
	display: inline-flex;
	margin-top: 2px;
	align-items: center;
	gap: 10px;
	color: #000;
}

.pricing-3 .item-price {
	font-size: 28px;
	font-weight: normal;
	margin-top: 6px;
	display: block;
	font-family: var(--heading-font);
}

.pricing-3 {
	padding-bottom: 688px;
}

/* Responsive: stack into 1 column */
@media (max-width: 768px) {
	.pricing-3 .pricing-section {
		grid-template-columns: 1fr;
	}

	.pricing-3 .pricing-section::before {
		display: none;
		/* hide divider on mobile */
	}
}

.about_banner_sec {
	background-position: center !important;
}

.inner-banner-blog .head-4 {
	border-left: 5px solid var(--theme-color-third);
	margin-bottom: 35px;
}

.inner-banner-blog .head-4  ul{
	list-style: disc;
	padding-left: 25px;
}
.inner-banner-blog .head-4  ul li{
	margin-bottom: 10px;
}

.inner-banner-blog .list-group-item {
	position: relative;
	display: inline-block;
	padding: .5rem 0rem;
	color: #212529;
	text-decoration: none;
	background-color: #fff;
	border: 0px solid rgba(0,0,0,.125);
	text-decoration: underline;
	font-weight: 600;
	font-size: 14px;
}
.inner-banner-blog  .remodel-box {
	background: #f5f9ff;
	border-radius: 10px;
	padding: 20px 30px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
	margin-bottom: 25px;
}

.inner-banner-blog  .remodel-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.inner-banner-blog  .remodel-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--theme-color-third);
}

.inner-banner-blog  .remodel-subtitle {
	font-size: 0.875rem;
	color: #555;
}

.inner-banner-blog   .get-quote-btn {
	background-color:var(--theme-color-third);
	color: white;
	border: none;
	border-radius: 999px;
	padding: 10px 20px;
	font-weight: 600;
}

.inner-banner-blog  .cost-range {
	font-size: 2rem;
	font-weight: bold;
	color: #f65c3c;
}

.inner-banner-blog  .meta-label {
	font-size: 0.75rem;
	color: #888;
}

.inner-banner-blog    .meta-value {
	font-weight: 600;
	font-size: 1rem;
	color: #222;
}

.inner-banner-blog .cost-bar {
	width: 100%;
	height: 6px;
	background: #e0e0e0;
	border-radius: 10px;
	position: relative;
	margin-top: 15px;
	margin-bottom: 10px;
}

.inner-banner-blog   .cost-bar-fill {
	position: absolute;
	height: 100%;
	background-color:var(--theme-color);
	left: 25%;
	right: 25%;
	border-radius: 10px;
}

.inner-banner-blog  .cost-bar-indicator {
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 12px;
	height: 12px;
	background-color:var(--theme-color);
	border-radius: 50%;
	z-index: 2;
}

.inner-banner-blog  .avg-label {
	text-align: center;
	font-size: 0.9rem;
	font-weight: 600;
	color: #333;
}

.inner-banner-blog .head-font-ciustom{
	overflow-y: scroll;
	height: 100vh;
}

.inner-banner-blog .head-font-ciustom::-webkit-scrollbar {
	display: none; /* For Chrome, Safari, Edge */
}



.inner-banner-blog .heading-box-2 .quote-box {
	background-color: #f3f6fd;
	padding: 30px;
	border-radius: 12px;

	margin: 50px auto;
	text-align: center;
}

.inner-banner-blog .heading-box-2  .quote-box h5 {
	font-weight: 700;
	color: #11145f;
}

.inner-banner-blog .heading-box-2   .quote-box p {
	font-size: 0.95rem;
	color: #444;
	margin-bottom: 25px;
}

.inner-banner-blog .heading-box-2   .quote-input-group {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 10px 15px;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.inner-banner-blog .heading-box-2   .quote-input-group i {
	font-size: 1rem;
	margin-right: 8px;
	color: #555;
}

.inner-banner-blog .heading-box-2  .quote-input-group input {
	border: none;
	outline: none;
	flex: 1;
	font-size: 1rem;
	background-color: transparent;
}

.inner-banner-blog .heading-box-2   .quote-button {
	background-color: var(--theme-color-third);
	color: white;
	font-weight: 600;
	border: none;
	width: 100%;
	padding: 12px;
	border-radius: 999px;
	transition: background-color 0.2s ease;
}

.inner-banner-blog .heading-box-2  .quote-button:hover {
	background-color: #000000;
}

.inner-banner-blog #list-example ul{
	list-style: circle;
	padding-left: 15px;
}
.inner-banner-blog #list-example ul li{
	margin-bottom: 10px;
}
.inner-banner-blog ul {
	list-style: disc;
	padding-left: 29px;
}

.inner-banner-blog ul li{
	margin-bottom: 10px;
}

/* Contact Form 7 CSS */
form.wpcf7-form.init p, form.wpcf7-form.invalid p, form.wpcf7-form.sent p {
	margin-bottom: 0px !important;
}

/* Blog Navigation */
.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: #414141;
	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;
}


.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: #000;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#respond .submit:hover {
    background: #000000;
    color: #e6e6e6;
    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;
}
.fomms label {
    font-size: 15px;
    color: #000000a3;
    margin-bottom: 5px;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
.owl-carousel .owl-nav.disabled {
    display: block !important;
}
.sec-padd{
    padding-top: 0px;
}
.hr-lne{
  width: 100%;
  height: 3px;
  padding: 0px;
  margin: 0px;
}
#pricing-new{
  padding-bottom: 70px !important;
}
#pricing-new .top-box {
    display: flex;
    gap: 15px;
    align-items: center;
	justify-content: center;
}
#pricing-new .top-box h5 {
    margin-bottom: 0;
    font-family: var(--paragraph-font);
}
#pricing-new .pricing-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    background: transparent;
}
#pricing-new .top-box {
    border-bottom: 2px solid #fff;
    display: flex;
    gap: 15px;
    align-items: center;
}
#pricing-new .price-box {
    background-color: #d1d1d14f;
    color: #ffffff;
    transition: 0.6s;
    border: 2px solid #fff;
	padding: 0px;
}
#pricing-new .item-price{
	color: #fff;
}
#pricing-new .price-box:hover {
    background-color: #ffffff;
    color: #000;
    transition: 0.6s;
    border: 2px solid #fff;
}
#pricing-new .price-box:hover .item-price{
	color: #000;
	transition: ese all 0.3s;
}
#pricing-new .price-box:hover .pricing-list li::before {
	border-color: #000 !important ;
}
#pricing-new .price-box:hover .top-box{
	border-bottom: 2px solid #000;
	transition: ese all 0.3s;
}

#pricing-new .pricing-list:hover .item-price{
	color: #000;
	transition: ese all 0.3s;
}