@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
	padding: 0;
	margin: 0;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 24px;
	color: #000;
	background-color: #fff;
}

* {
	box-sizing: border-box;
}

.container {
	max-width: 1320px;
}

img {
	max-width: 100%;
}

@font-face {
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
       url("../fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

.tx-orange {
	color: #F7610A;
}

.bg-orange {
	background-color: #F7610A;
}

ul {
	padding: 0;
	margin: 0;
}

li {
	list-style: none;
	padding: 0;
	margin: 0;
}

a {
	transition: .6s;
	-webkit-transition: .6s;
	display: inline-block;
	text-decoration: none;
	color: #000;
}

a:hover {
	color: #F7610A;
}

h1,
h2,
h3,
h4 {
	font-weight: bold;
}

h1 {
	font-size: 42px;
}

h2 {
	font-size: 36px;
}

p {
	color: #636363;
}

p:last-child {
	margin-bottom: 0;
}

.fs14 {
	font-size: 14px;
	line-height: 18px;
}

.fs12 {
	font-size: 12px;
	line-height: 16px;
}

.btn {
	background-color: #F7610A;
	border-radius: 7px;
	padding: 10px 20px;
	border: 1px solid #F7610A;
	outline: none;
	box-shadow: none;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 8px;
	transition: .6s;
	-webkit-transition: .6s;
	font-size: 14px;
	line-height: 20px;
}

.btn:hover {
	background-color: #D94F00;
	color: #fff;
}

.btn2 {
	background-color: #fff;
	border-radius: 7px;
	padding: 10px 20px;
	border: 1px solid #d9d9d9;
	outline: none;
	box-shadow: none;
	color: #000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 8px;
	transition: .6s;
	-webkit-transition: .6s;
	font-size: 14px;
	line-height: 20px;
}

.btn2:hover {
	border-color: #F7610A;
	color: #F7610A;
}

.success {
	background: #e8f5e9;
	color: #2e7d32;
}

.orange {
	background: #fff3ee;
	color: #f7610a;
}

.blue {
	background: #e3f2fd;
	color: #1565c0;
}

.danger {
	background: #fce4ec;
	color: #c62828;
}

.purple {
	background: #ede7f6;
	color: #4527a0;
}

.cyan {
	background: #e0f7fa;
	color: #006064;
}

/*PAGE CSS START*/
.header {
	background-color: #fff;
	position: sticky;
	top: 0;
	z-index: 9;
	border-bottom: 1px solid #e5e7eb;
}

.sub-menu a h6 {
	transition: .6s;
	-webkit-transition: .6s;
}

.sub-menu a:hover h6 {
    color: #f7610a !important;
}

.form-control::placeholder{
	color: #cecece;
}

.logo {
	width: 150px;
}

.hero {
	background: linear-gradient(150deg, #fffaf8 0%, #fff7f3 40%, #f0f7ff 100%);
}

.border-orange {
	border: 1px solid #F7610A;
}

.box-shadow {
	background: #fff;
	box-shadow: 0 8px 32px rgba(247, 97, 10, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
	padding: 20px 20px 16px;
	border: 1px solid #dfdfdf;
}

.chart-bar {
	background: #ffe8d6;
	width: 10%;
	border-radius: 3px 3px 0 0;
	transition: .3s;
	-webkit-transition: .3s;
	cursor: pointer;
}

.chart-bar.active:hover,
.chart-bar.active {
	background: #F7610A;
}

#methodsChart {
	max-height: 90px;
	margin: 0 auto 12px;
	display: block;
}

.method-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
	font-size: 14px;
}

.method-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: 7px;
	flex-shrink: 0;
}

.method-name {
	flex: 1;
}

.stats-bar i {
	width: 50px;
	height: 50px;
	background: #f7610a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	flex-shrink: 0;
}

.sub-menu {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 8px 32px rgba(247, 97, 10, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
	position: absolute;
	left: 0;
	right: 0;
	top: 42px;
	width: 250px;
	z-index: 1;
	transition: .6s;
	-webkit-transition: .6s;
	opacity: 0;
	visibility: hidden;
}

.sub-menu li a {
	border-bottom: 1px solid #e1e1e1;
	padding: 10px 15px;
	display: block;
	font-size: 14px;
}

.dropdownMenu.active .sub-menu {
	opacity: 1;
	visibility: visible;
}

.sub-menu li:last-child a {
	border-bottom: 0;
}

.grid-2 {
	grid-template-columns: 1fr 1fr;
}

.circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffeadf;
	color: #F7610A;
	font-size: 20px;
	flex-shrink: 0;
}

.map {
	height: 300px;
}

.btn-close .bi-x-lg::before {
	display: none;
}
.nav-pills .nav-link {
	color: #000;
}

.nav-pills .nav-link:hover {
	background: #f5e3d9;
	color: #000;
}

.nav-pills .nav-link.active {
	background: #F7610A;
	color: #fff;
}

.partners-logos {
	width: 150px;
	border: 1px solid #eee;
	height: 70px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
}

.slider {
	animation: slide 20s infinite linear;
	width: max-content;
}

@keyframes slide {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.partners-wrap {
	mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.BgGradient {
	background: linear-gradient(45deg, #f7610a, #f7a473);
}

.footer1 {
	background-color: #f8f9fa;
}
	
.footer1 * {
	color: #202846;
}

.testimonial-slider .slick-slide {
	padding-top: 12px;
	padding-bottom: 12px;
}

.social-icon a i {
    color: #fff;
}

.social-icon a {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #202846;
}

.social-icon a:hover {
	background: #F7610A;
	color: #fff !important;
}

.social-icon a:hover i {
	color: #fff !important;
}

.bgWarning {
	background: linear-gradient(145deg, #fff9f6, #fff);
}

.hover {
	transition: .3s;
	-webkit-transition: .3s;
}

.hover:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 32px rgba(11, 18, 32, .13);
	border-color: #f7610a !important;
}

.mv-100 {
    min-height: 100vh;
}

.login-box {
	max-width: 400px;
	margin: 70px auto;
}

.login-box .form-control {
	height: 45px;
	padding-left: 40px;
}

.login-box .btn {
	font-size: 14px;
	border-radius: 5px;
}

.accordion-header::after {
	content: "+";
	transition: transform .2s ease-in-out;
	position: absolute;
	right: 20px;
	font-size: 25px;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
}

.accordion-header:not(.collapsed)::after {
	content: "-";
	font-size: 35px;
}

.accordion-header {
	cursor: pointer;
}

.accordion-header:not(.collapsed) {
	background: #fff3ee;
	color: #F7610A;
	margin-bottom: 10px;
}

.slick-list {
	margin: 0 -10px !important;
}

.testimonial-slider .fst-italic {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	height: 100px;
}

.slick-dots {
	position: unset !important;
}

.slick-dots li {
	margin: 0 !important;
}

.slick-dots li button:before {
	font-size: 25px !important;
}

.circle-shape1{
	animation: fadeX 5s linear infinite;
}

@keyframes fadeX {
	0% {transform: translateX(0px);}
	50% {transform: translateX(30px);}
	100% {transform: translateX(0px);}
}

.circle-shape2{
	animation: fadeY 5s linear infinite;
}

@keyframes fadeY {
	0% {transform: translateY(0px);}
	50% {transform: translateY(30px);}
	100% {transform: translateY(0px);}
}


/******Responsive Css Start******/
@media (max-width: 1199px) {

	/*Header Menu Css Start*/
	.menuToggle {
		position: absolute;
		right: 10px;
		top: 0;
		bottom: 0;
		display: flex;
		align-items: center;
		z-index: 9;
	}

	.header-menu.active {
		opacity: 1;
		visibility: visible;
		transform: translateX(0%);
	}

	.header-menu {
		position: fixed !important;
		left: 0;
		top: 0;
		right: 0;
		height: 100vh;
		background: #fff;
		z-index: 9;
		opacity: 0;
		visibility: hidden;
		transition: .6s;
		transform: translateX(-105%);
		width: 80%;
	}

	.menuToggle i {
		font-size: 25px;
	}

	.menuToggle .closeBtn,
	.menuToggle.active .toggleBtn {
		display: none;
	}

	.menuToggle.active .closeBtn {
		display: block;
	}

	.menu-item {
		border-top: 1px solid #e1e1e1;
		padding: 15px 20px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	body.active {
		overflow: hidden;
	}

	body.active:before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #000;
		z-index: 8;
		opacity: .8;
	}

	/*Header Menu Css End*/

	.sub-menu {
		opacity: 1;
		visibility: visible;
		display: none;
		position: unset;
		width: 100%;
		box-shadow: none;
	}

	.dropdownMenu.active .sub-menu {
		display: block;
	}

	.sub-menu li a {
		padding-left: 48px;
	}

	.sub-menu li:first-child a {
		padding-top: 0;
	}

	.SignIn {
		margin-right: 35px;
		font-size: 12px;
		padding: 5px 8px !important;
		line-height: normal;
	}

	body.active .SignIn {
		display: none;
	}

	.logo {
		width: 130px;
	}

}

@media (max-width: 767px) {
	body {
		font-size: 14px;
		line-height: 22px;
	}

	h1 {
		font-size: 28px;
	}

	h2 {
		font-size: 24px;
	}

	.stats-bar i {
		width: 30px;
		height: 30px;
		font-size: 16px;
	}

	.stats-bar span {
		font-size: 16px !important;
		margin-bottom: 3px !important;
	}

	.btn2,
	.btn {
		border-radius: 5px;
		padding: 8px 15px;
	}

	h6,
	.fs-6 {
		font-size: 14px !important;
	}

	.scroll {
		overflow: auto;
	}

	.nowrap {
		white-space: nowrap;
	}

	.map {
		height: 200px;
	}

	.nav-pills {
		flex-flow: nowrap;
		overflow: auto;
		white-space: nowrap;
	}

	br {
		display: none;
	}

	.blog-detail-img {
		height: 200px;
	}

	.testimonial-slider .fst-italic {
		-webkit-line-clamp: none;
		height: auto;
	}

	.testimonial-slider .rounded-4 {
		padding: 1rem !important;
	}

	.footer-menu {
		column-count: 2;
		display: inline-block;
    }

.footer-menuItem {
		width: 100%;
		display: inline-block;
    }
}

@media (max-width: 575px) {
	.testimonial-slider .slick-list {
		height: auto !important;
		overflow: visible !important;
	}
	.testimonial-slider .slick-track {
		display: flex !important;
		flex-direction: column !important;
		transform: none !important;
		width: 100% !important;
		gap: 15px;
	}
	.testimonial-slider .slick-slide {
		width: 100% !important;
		height: auto !important;
		float: none !important;
	}
	.testimonial-slider .slick-dots {
		display: none !important;
	}
}