@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: #fcb83f;
}

.bg-orange {
	background-color: #fcb83f;
}

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: #fcb83f;
}

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: #10b981;
	border-radius: 7px;
	padding: 10px 20px;
	border: 1px solid #10b981;
	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: #1c8461;
	color: #fff;
}

.btn2 {
	background-color: #fff;
	border-radius: 7px;
	padding: 10px 20px;
	border: 1px solid #10b981;
	outline: none;
	box-shadow: none;
	color: #10b981;
	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: #1c8461;
	color: #1c8461;
}

.success {
	background: #e8f5e9;
	color: #2e7d32;
}

.orange {
	background: #fff3ee;
	color: #fcb83f;
}

.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;
}

.logo {
	width: 150px;
}

.hero {
	background: linear-gradient(150deg, #fffaf8 0%, #fff7f3 40%, #f0f7ff 100%);
}

.border-orange {
	border: 1px solid #fcb83f;
}

.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: #fcb83f;
}

#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: #fcb83f;
	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;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.sub-menu li a {
	border-bottom: 1px solid #e1e1e1;
	padding: 10px 15px;
	display: block;
	font-size: 14px;
}

.mega-menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.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: #fcb83f;
	font-size: 20px;
	flex-shrink: 0;
}

.map {
	height: 300px;
}

.nav-pills .nav-link {
	color: #000;
}

.nav-pills .nav-link:hover {
	background: #f5e3d9;
	color: #000;
}

.nav-pills .nav-link.active {
	background: #fcb83f;
	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, #fcb83f, #f7a473);
}

.footer {
	background-color: #f8f9fa;
}

.footer * {
	color: #202846;
}

.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: #fcb83f;
	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: #fcb83f !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: #fcb83f;
	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);}
}

.mr-layout {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 32px;
	align-items: start;
}
.mr-rail {
	display: flex;
	flex-direction: column;
	gap: 15px;
	position: sticky;
	top: 100px;
}
.mr-rail:before {
	content: '';
	position: absolute;
	left: 38px;
	top: 0;
	bottom: 0;
	height: 74%;
	width: 1px;
	background: #eee;
	margin: auto;
}
.mr-rail-step .num {
	width: 27px;
	height: 27px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #818080;
	border: 1px solid #b9b9b9;
	background: #fff;
	position: relative;
	outline: 5px solid #fff;
}
.mr-rail-step.is-active .num{
	background: #10b981;
	color: #fff;
	border-color: #10b981;
}
.mr-rail-step span{
	color: #818080;
}
.mr-rail-step.is-active span{
	color: #000;
}
.badge-num {
	width: 30px;
	height: 30px;
	border-radius: 7px;
	background: #def5c6;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mr-section:not(:last-child) {
	border-bottom: 1px solid #eee;
	margin-bottom: 40px;
	padding-bottom: 30px;
}
.mr-chip-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 15px;
}
.mr-chip, .mr-declare {
	display: flex;
	align-items: center;
}
.mr-chip label, .mr-declare span {
	padding-left: 10px;
}


.timeline-line{
	position:absolute;
	top:50px;
	left:8%;
	right:8%;
	border-top:2px dashed #ff914d;
	z-index:0;
}

.step-number{
	width:46px;
	height:46px;
	background:#fcb83f;
	color:#fff;
	border-radius:12px;
	display:flex;
	justify-content:center;
	align-items:center;
	font-weight:700;
	margin:-22px auto 20px;
	position:relative;
	z-index:2;
	box-shadow:0 8px 18px rgba(255,122,26,.3);
}

.feature-top{
	background:linear-gradient(to right,#fff3ea,#ffe6d2);
	min-height:90px;
	display:flex;
	align-items:center;
	justify-content:center;
}

.sr-net-path {
	fill: none;
	stroke: url(#srGlow);
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-dasharray: 6 8;
	animation: srDash 1.4s linear infinite;
}

@keyframes srDash{ to{stroke-dashoffset:-28;} }

.sr-net-svg{
	bottom: -12px;
}

.sr-web-line {
	fill: none;
	stroke: rgba(247,97,10,.4);
	stroke-width: 2;
	stroke-dasharray: 5 7;
	animation: srDash 1.6s linear infinite;
}

.list-item li {
	list-style: disc;
	padding-bottom: 10px;
	color: #636363;
}

/******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;
	}

	.header-menu li:first-child .menu-item {
		border-top: 0;
	}

	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 !important;
		position: unset;
		width: 100%;
		box-shadow: none;
		grid-template-columns: auto;
	}

	.dropdownMenu.active .sub-menu {
		display: grid !important;
	}

	.sub-menu h6 {
		font-size: 12px !important;
	}

	.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;
	}

	.timeline-line{
		display:none;
	}

}

@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;
	}

	.footer-menu {
		column-count: 2;
		display: inline-block;
	}

	.footer-menuItem {
		display: inline-block;
		width: 100%;
	}

	.mr-layout, .mr-chip-grid {
		grid-template-columns: auto;
	}
	.mr-rail {
		display: none;
	}
	.mr-section:not(:last-child) {
		border-bottom: 0;
		margin-bottom: 18px;
		padding-bottom: 0;
	}


}



