/* Font Link */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..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 Var */
:root {

	/* Root Theme Color */
	--theme-color: #2c0c3c;
	--theme-color-second: #000000;
	--theme-color-third: #fff;

	/* Root Font */
	--heading-font: "Inter", sans-serif;
	--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: 16px;
	color: #1e1e1e;
	background-color: #fff;
	scroll-behavior: smooth;
	font-family: var(--paragraph-font);
	overflow-x: hidden !important;
}

/* Font Face */
@font-face {
	font-family: "";
	src: url();
}

@font-face {
	font-family: "";
	src: url();
}

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: 16px;
}

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: 58px;
	line-height: 1;
	font-weight: 600;
}

h2 {
	font-size: 48px;

}

h3 {
	font-size: 38px;
	font-weight: 600;
}

h4 {}

h5 {
	font-size: 22px;
}

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: var(--theme-color);
	border-radius: 25px;
	text-align: center;
	border: 2px solid #000000;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	opacity: 0;
	overflow: hidden;
	color: #fff;
}

.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;
	flex-wrap: wrap;
	gap: 8px;
}

a.comon-btn {
	background: var(--theme-color);
	color: #fff;
	display: inline-block;
	font-size: 13px;
	padding: 6px 0;
	border-radius: 5px;
	display: flex;
	align-items: center;
	gap: 10px;
	text-transform: uppercase;
	width: 200px;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

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


a.comon-btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent);
	transition: left 0.6s ease;
}

a.comon-btn:hover::after {
	left: 100%;
}

.comon-btn img {
	width: 36px;
	border-radius: 1;
	border-right: 1px solid #fff;
	padding: 4px 11px 4px 0;
}

a.comon-btn span {
	font-size: 15px;
	font-weight: 600;
}

.comon-btn .btom_content {
	line-height: 1.3;
}

a.comon-btn2 {
	background: #e2e2e2;
	color: #000;
	display: inline-block;
	font-size: 14px;
	padding: 14px 0;
	border-radius: 5px;
	text-transform: uppercase;
	text-align: center;
	width: 200px;
	justify-content: center;
	font-weight: 500;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
}

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

a.comon-btn2::after {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 120%;
	height: 100%;
	background: linear-gradient(120deg,
		transparent,
		rgba(255, 255, 255, 0.35),
		transparent);
	transition: left 0.6s ease;
}

a.comon-btn2:hover::after {
	left: 120%;
}

a.comon-btn3 {
	background: #555555 !important;
	color: var(--theme-color-third) !important;
}

a.comon-btn3:hover {
	background: #000 !important;
	color: var(--theme-color-third) !important;
}

a.comon-btn5 {
	background: var(--theme-color) !important;
	color: var(--theme-color-third) !important;
}

a.comon-btn5:hover {
	background: #000 !important;
	color: var(--theme-color-third) !important;
}

/* 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: transparent;
	position: absolute;
	left: 0;
	right: 0;
}

/* a.navbar-brand img {
	width: 185px;
} */
a.navbar-brand img {
    width: 270px;
}

.header_menu li a {
	color: #000;
	font-size: 16px;
	text-transform: capitalize;
	padding: 28px 17px;
	display: inline-block;
	font-family: var(--heading-font);
	font-weight: 400;
}

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

/* Banner Section */

.banner_sec .btom_content ul {
	display: flex;
	align-items: center;
	gap: 15px;
}

.banner_sec .facebook_icon {
	width: 95px;
}

.banner_sec {
	padding: 140px 0 10px;
	background-position: bottom !important;
	height: 815px;
}

.banner_sec .btom_content {
	padding-top: 320px;
}

.btn_1 {
	display: inline-block;
	font-size: 17px;
	padding: 0;
	align-items: center;
	text-transform: uppercase;
	position: relative;
	color: var(--theme-color);
	font-weight: 500;
	line-height: 1.1;
}

.btn_1::after {
	content: "";
	position: absolute;
	top: -91%;
	left: -25%;
	width: 120px;
	height: 100px;
	background: url(../image/right-arrow-circel.png) no-repeat center / contain;
	transition: left 0.6s ease;
}

/* *********** */
.vision-section .vision-content h2 {
	color: #3b0a57;
	margin-bottom: 15px;
}

.vision-section .vision-item {
	display: flex;
	gap: 15px;
	margin-bottom: 12px;
}

.vision-section .vision-item img {
	width: 75px;
	height: 75px;
}

.vision-section .vision-item h4 {
	font-size: 17px;
	margin-bottom: 6px;
	color: #000;
	font-weight: 600;
}

.vision-section .vision-item p {
	font-size: 15px;
	/* color: #666; */
	line-height: 1.7;
}

.vision-section .vision-buttons {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.btn-primary {
	background: #555;
	color: #fff;
	padding: 12px 22px;
	border-radius: 5px;
	text-transform: uppercase;
	font-size: 13px;
	text-decoration: none;
}

.vision-section .vision-image {
	width: 50%;
}

.vision-section .vision-image img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
}

/* ************** */
.home_sec2 {
	padding: 90px 0 225px;
	background-attachment: fixed !important;
}


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


.values-section .values-divider {
	background: #ddd;
}

.values-section .values-col {
	text-align: left;
}

.values-section .value-item {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
}

.values-section .check-icon {
	width: 30px;
	height: 30px;
	background: #2bb673;
	color: #fff;
	border-radius: 50%;
	font-size: 19px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-weight: bold;
}

.values-section .value-item h4 {
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 600;
}

.values-section .value-item p {
	font-size: 15px;
	margin-bottom: 0;
	line-height: 1.6;
}

.values-section .values-note {
	max-width: 800px;
	margin: 0 auto 30px;
	font-size: 13px;
	color: #777;
}

.values-section .values-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.values-section .btn-grey {
	background: #555;
	color: #fff;
	padding: 12px 22px;
	border-radius: 5px;
	font-size: 13px;
	text-transform: uppercase;
	text-decoration: none;
}

.values-section .btn-purple {
	background: #4b1c5f;
	color: #fff;
	padding: 12px 22px;
	border-radius: 5px;
	font-size: 13px;
	text-decoration: none;
}

.values-section .btn-purple span {
	display: block;
	font-weight: 600;
}

/* ************** */
.home_sec3 {
	padding-bottom: 280px;
}

.home_sec3 h3 {
	font-size: 42px;
}

/* customer testimonial  */
.customer_testimonial .test-box {
	height: 100%;
	border-radius: 9px !important;
	padding: 36px 24px !important;
	box-shadow: rgba(0, 0, 0, 0.2) 1px 2px 9px;
}

.customer_testimonial .test-box ul {
	display: flex;
	gap: 0px;
	color: #e0aa15;
	font-size: 16px;
}


.customer_testimonial .test-box .content {
	margin-bottom: 35px;
}

.customer_testimonial .test-box .content p {
	color: var(--theme-color-second);
	opacity: 0.5;
	font-size: 15px;
	line-height: 1.7;
}

.customer_testimonial .test-box .name p {
	font-family: var(--heading-font);
	margin-bottom: 0;
	font-size: 16px;
}

.customer_testimonial .test-box .content h6 {
	font-size: 18px;
}

.customer_testimonial .accordion-button {
	background-color: var(--theme-color-third);
	color: #fff;
	box-shadow: none !important;
}

.customer_testimonial .box-menu-card {
	background-color: #eeeeee;
	border-radius: 15px;
}

.customer_testimonial .box-menu-card h2 {
	font-size: 40px;
}

.customer_testimonial .box-menu-card .rating {
	display: flex;
	align-items: center;
	gap: 2px;
}

.customer_testimonial .accordion-item {
	color: #000;
	background-color: transparent;
	border: none;
	border-radius: 0 !important;
}

.customer_testimonial .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: none !important;
	background-repeat: no-repeat;
	background-size: var(--bs-accordion-btn-icon-width);
	transition: var(--bs-accordion-btn-icon-transition);
}

.customer_testimonial .accordion-button:not(.collapsed)::after {
	background-image: none !important;
	transform: rotate(0deg);
	content: "-";
}

/* ************ */
/* FAQ PAGE */

.faqs .accordion-button:not(.collapsed)::after {
	background-image: url('../image/minus.png');
}

.faqs .accordion-button::after {
	flex-shrink: 0;
	margin-left: auto;
	content: "";
	background-image: url('../image/plus.png');
	background-repeat: no-repeat;
}

.faqs .accordion-button {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	font-size: 18px;
	color: #000 !important;
	text-align: left;
	border: 0;
	border-radius: 0;
	font-family: "Poppins", serif;
	overflow-anchor: none;
	padding: 18px 19px;
	background: #ebebeb;
}

.faqs .accordion-body p {
	margin-bottom: 10px;
	font-size: 16px;
}

.faqs button:focus:not(:focus-visible) {
	outline: none;
	box-shadow: none;
}

.faqs .accordion-item {
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.125);
	margin-bottom: 9px;
}

.faqs .accordion-button:not(.collapsed) {
	color: #fff !important;
	background-color: #41244f;
	box-shadow: inset 0 -1px 0 #41244f;
}

.faqs .accordion-body {
	padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
	background: #41244f;
	color: #fff;
	padding-top: 0;
}

/* ------ */

.home_sec_8 form input, .home_sec_8 form textarea, .home_sec_8 form select {
	background-color: #ededed;
	border: none;
	padding: 16px 18px;
	font-size: 15px;
	border-radius: 5px;
	color: #1e1e1e;
}

.home_sec_8 form:placeholder-shown {
	color: #1e1e1e;
}

.home_sec_8 form textarea {
	height: 110px;
}

.home_sec_8 img {
	height: 100%;
}

.home_sec_8 form button {
	background-color: #ededed;
	border: none;
	padding: 16px 18px;
	border-radius: 4px;
	background-color: var(--theme-color);
	color: #fff;
	width: 100%;
	font-size: 15px;
	text-transform: uppercase;
}

.home_sec_8 .call_number {
	display: flex;
	align-items: center;
	gap: 10px;
}

.home_sec_8 .call_number .content p {
	margin-bottom: -5px !important;
	font-size: 14px;
	letter-spacing: 1px;
}

.home_sec_8 .call_number .content a {
	font-size: 20px;
	color: #000;
	font-weight: 500;
}

.home_sec_8 .call_number img {
	width: 35px;
}

.home_sec_8 .mail_info img {
	width: 35px;
}

.home_sec_8 .mail_info {
	display: flex;
	align-items: center;
	gap: 10px;
}

.home_sec_8 .mail_info a {
	font-size: 16px;
	color: #000;
}

/* Blog Page */
#bg-blue .blog-box a p {
	color: #fff;
	margin-bottom: 5px !important;
	font-size: 15px;
}

#bg-blue .blog-box a p {
	font-weight: 400;
	color: #fff;
	font-size: 16px;
	line-height: 1.4;
}

#bg-blue .read-btn {
	color: #fff;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}

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

.blog-sec .blog-box .btom_content {
	position: absolute;
	bottom: 10px;
	padding: 0 24px;
}

/* FOOTER SEC */
.footer {
	padding: 80px 0;
	color: #fff;
}

.footer h5 {
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
}

.footer .ft-list li {
	margin-bottom: 15px;
}

.footer .ft-list li a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #fff;
}

.footer .ft-list li a i {
	color: #b97ad8;
	font-size: 18px;
}

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

.footer .ft-list-social {
	display: flex;
	gap: 10px;
	align-items: center;
}

.footer .ft-list-social li a {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	color: #000000;
	border-radius: 600px;
	height: 45px;
	width: 45px;
	font-size: 21px;

}

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

/* inner_banner */
/* .inner_banner {
	background-color: #01667d;
	padding: 140px 0 40px;
	color: var(--theme-color);
} */
.inner_banner {
    background-color: #01667d;
    padding: 180px 0 40px;
    color: var(--theme-color);
}

.inner_banner a {
	color: var(--theme-color);

}

.inner_banner h1 {
	font-size: 64px;
	line-height: 1;
	margin-bottom: 18px;
}


/* contact page */


#contact .contact-box {
	display: flex;
	gap: 10px;
	align-items: center;
}

#contact h6 {
	font-size: 20px;
	margin-bottom: 0;
	font-weight: 600;
}

#contact .contact-box a {
	color: #000;
	font-size: 14px;
	text-decoration: underline;
}

#contact .form-box {
	background-color: #000;
	padding: 40px 30px !important;
	color: #fff;
}

.contact-us .contact-box {
	display: flex;
	gap: 16px;
	align-items: center;
}

.contact-us .contact-box .icon-box {
	background-color: var(--theme-color);
	width: 60px;
	height: 60px;
	color: #fff;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}


.contact-us .contact-box a {
	color: #000;
}

.contact-us form input, .contact-us form select {
	padding: 14px;
	border-radius: 3px;
	width: 100%;
	border-color: 1px solid var(--theme-color-third);
	/* color: #fff; */
	border: none;
	border: 1px solid #fff;
}

.contact-us form textarea {
	padding: 14px;
	border-radius: 3px;
	border-color: 1px solid var(--theme-color-third);
	height: 150px;
	/* color: #fff; */
	width: 100%;
	border: none;
	border: 1px solid #fff;
}

.contact-us form button {
	background-color: var(--theme-color);
	/* border: none; */
	width: 100%;
	padding: 14px;
	border-radius: 3px;
	/* width: 100%; */
	color: #fff;
	/* border: none; */
	border: 1px solid #fff;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 2px;
}

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

.box-team {
	background-color: #fff;
	color: #000000;
	transition: 1s;
	border-color: #f18022 !important;
	height: 100%;
}

.box-team p span {
	font-size: 16px;

}

.box-team:hover {
	background-color: #000000;
	color: #fff;
	transition: 1s;
	border-color: #000000 !important;
}

.box-team .img-box .sdocial {
	display: flex;
	gap: 10px;
	position: absolute;
	bottom: 0;
	width: 100%;
	justify-content: center;
	padding: 10px;
}

.box-team .img-box .sdocial a {
	background-color: #f85e13;
	color: #000;
	display: flex;
	height: 35px;
	width: 35px;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	border-radius: 3px;
	box-shadow: 1px 1px 1px 1px #000;
}

.policy h4 {
	font-weight: bold;
}

/* ******** */
.map_sec {
	line-height: 0;
}

.contact-us .social_info {
	margin-top: 20px;
	display: flex;
	gap: 8px;
}

.contact-us .social_info .contact-box .icon-box {
	border-radius: 50px !important;
	width: 50px;
	height: 50px;
	font-size: 22px;
	background: transparent;
	border: 1px solid #3b0a57;
	color: var(--theme-color);
}

.contact-us .social_info a {
	text-decoration: none !important;
}

/* inner-blog-right-sec */

.inner-blog-right-sec {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border: rgba(149, 157, 165, 0.2);
	padding: 35px 21px 20px;
	border-radius: 8px;
}

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

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

.main-sec .heading a {
	color: var(--theme-color);
}

.main-sec h4 {
	font-size: 21px;
	/* margin-bottom: -25px; */
}

.inner-blog-left-sec {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border: rgba(149, 157, 165, 0.2);
	padding: 15px 5px 35px;
	border-radius: 8px;
}

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

.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;
	flex-wrap: wrap;
}

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

.main-sec h2 {
	font-size: 38px;
}

.main-sec h3 {
	font-size: 28px;
	font-weight: 600;
}

.inner-blog-left-sec img {
	height: 350px;
	object-fit: cover;
}

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

a.page-numbers {
	color: #fff;
	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;
	color: #000;
}

span.page-numbers.current {
	background-color: rgb(85, 85, 85) !important;;
	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;
}

span.page-numbers.current:hover {
	color: var(--theme-color-third) !important;
	background: rgb(0, 0, 0) !important;
}

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

/* Leave A Comment CSS */
.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: var(--theme-color);;
	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;
}

form.wpcf7-form.init p {
    margin-bottom: 0px !important;
}
ul.blog_points {
    list-style-type: disc;
    margin-left: 50px;
}
li.blog_li {
    margin-bottom: 13px;
}
/* new css */
.banner_sec .btom_content {
    padding-top: 100px;
}
.banner_content {
    padding-top: 100px;
    text-align: center;
}
.btn_1 {
  
    margin-top: 32px;
}
.btn_1::after {
   
    top: -211%;
    left: -4%;
   
}
/* HOME PAGE HEADER */
.header-home .navbar-nav {
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* INNER PAGES HEADER (default behavior) */
.header-inner .navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

/* Area Page */
.area_banner {
  padding: 250px 0 70px;
}

/*#area-sec1 .right_content a {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 8px;*/
/*  color: #000000;*/
/*  justify-content: center;*/
/*  font-size: 17px;*/
/*  font-weight: 400;*/
/*}*/

#area-sec1 .area-location ul {
  margin-bottom: 0;
}

#area-sec1 .right_content .btnbx a {
	/* margin-bottom: 24px; */
	display: inline-block;
	width: 100%;
	padding: 16px 0;
	border-radius: 5px;
	box-shadow: rgba(151, 151, 151, 0.2) 0px 0px 13px 0px;
	transition: all 0.6s;
	background: var(--theme-color);
	color: #fff;
}
