@import url('./btn.css');

:root {
	--main-color: #f68328;
}


@font-face {
	font-family: 'ClashDisplay-Regular';
	src: url('../fonts/clash/ClashDisplay-Regular.woff2') format('woff2'),
		url('../fonts/clash/ClashDisplay-Regular.woff') format('woff');
	font-weight: 400;
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'ClashDisplay-Medium';
	src: url('../fonts/clash/ClashDisplay-Medium.woff2') format('woff2'),
		url('../fonts/clash/ClashDisplay-Medium.woff') format('woff');
	font-weight: 500;
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'ClashDisplay-Semibold';
	src: url('../fonts/clash/ClashDisplay-Semibold.woff2') format('woff2'),
		url('../fonts/clash/ClashDisplay-Semibold.woff') format('woff');
	font-weight: 600;
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'ClashDisplay-Bold';
	src: url('../fonts/clash/ClashDisplay-Bold.woff2') format('woff2'),
		url('../fonts/clash/ClashDisplay-Bold.woff') format('woff');
	font-weight: 700;
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'ClashDisplay-Variable';
	src: url('../fonts/ClashDisplay-Variable.woff2') format('woff2'),
		url('../fonts/ClashDisplay-Variable.woff') format('woff'),
		url('../fonts/ClashDisplay-Variable.ttf') format('truetype');
	font-weight: 200 700;
	font-display: swap;
	font-style: normal;
}


@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
		url('../fonts/Roboto-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
		url('../fonts/Roboto-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Medium.woff2') format('woff2'),
		url('../fonts/Roboto-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Oswald-Regular';
	src: url(../fonts/oswald-regular-webfont.woff), url(../fonts/oswald-regular-webfont.woff2);
}

@font-face {
	font-family: 'Oswald-Regular';
	src: url(../fonts/oswald-regular-webfont.woff), url(../fonts/oswald-regular-webfont.woff2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'ClashDisplay-Regular' !important;

}

.sec-padding {
	padding: 100px 0px;
}

body {
	font-family: 'Roboto' !important;
}

p {
	color: #7a7a7a;
}

h2 {
	font-size: 40px;
	font-weight: 600;
}

a {
	text-decoration: none;
}

.main-color {
	color: #269030;
}

.btn-main {
	background: var(--main-color);
	color: #fff;
	border: 1px solid var(--main-color);
	padding: 10px 35px;
	font-size: 16px;
	font-weight: 500;
	height: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	transition: .5s;
	text-decoration: none;
}

.btn-main:hover {
	background: #fff;
	border-color: var(--main-color);
	color: var(--main-color);
}

.main_wrapper {
	min-height: calc(100vh - 381px);
}

/* Header  css  start*/
.header-main .navbar-brand {
	color: #01006b;
	font-size: 30px;
	font-weight: 600;
}

.header-main .navbar-nav li {
	padding: 10px 15px;
}

.header-main .navbar-nav li a {
	color: #000;
}

.header-main .logo img {
	width: 150px;
}

.header-main .navbar-nav .nav-link.active {
	color: var(--main-color) !important;
}

/* Banner section css  */

.banner {
	padding: 200px 0px;
	background: url(../img/b2.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

.banner-sec .swiper-slide {
	min-height: 80vh;
	height: auto;
}

.banner-sec .swiper-slide::before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #090c1ea6;
	left: 0;
	top: 0;
	content: "";
}

.banner-sec .swiper-slide.slide-1 {
	padding: 200px 0px;
	background: url(../img/auth-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.banner-sec .swiper-slide.slide-2 {
	padding: 200px 0px;
	background: url(../img/b2.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.banner-sec .swiper-slide.slide-3 {
	padding: 200px 0px;
	background: url(../img/auth-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.banner::before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #090c1e99;
	left: 0;
	top: 0;
	content: "";
}

.circle1::before {
	position: absolute;
	content: "";
	width: 350px;
	height: 310px;
	background: #f683282b;
	border-radius: 50%;
	filter: blur(33px);
	left: 0;
	bottom: 40px;
	z-index: 99;
}

.circle2::before {
	position: absolute;
	content: "";
	width: 350px;
	height: 310px;
	background: #f683282b;
	border-radius: 50%;
	filter: blur(33px);
	right: 0;
	top: 40px;
	z-index: 99;
}

.banner-wrp {
	text-align: center;
	color: #fff;
	max-width: 900px;
	position: relative;
	margin: auto;
}

.banner-wrp h1 {
	font-size: 72px;
	font-family: 'ClashDisplay-SemiBold' !important;
	margin: 15px 0px 20px;
}

.banner-wrp h4 {
	font-size: 24px;
}

.search-box {
	max-width: 480px;
	margin: auto;
}

.search-box input {
	height: 50px;
	border-radius: 6px;
	border: 0px;
}

.search-box input::placeholder {
	color: #959494;
}

.banner-wrp p {
	margin-top: 20px;
	color: #fff;
	margin-bottom: 0px;
	font-size: 18px;
	line-height: 28px;
}

/* Advance section css  */
.adv-box {
	position: relative;
	padding: 40px;
	border-radius: 8px;
	background: #fff;
	min-height: 350px;
}

.adv-box-icon {
	position: relative;
	padding-bottom: 30px;
}

.adv-box-icon img {
	width: 100px;
}

.adv-box-heading {
	font-size: 22px;
	line-height: 32px;
}

.advanced {
	background: rgba(0, 0, 0, 0) linear-gradient(169deg, #f68328, #fb9f29) repeat scroll 0 0;
	position: relative;
}

.advanced .sec-title h2 {
	color: #fff;
}


/* about section css  */
.subheading {
	padding: 5px 14px 5px 25px;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	color: #fff;
	border-color: #fff;
	border-radius: 8px;
	display: inline-block;
	position: relative;
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
}

.subheading::before {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #fff;
	left: 12px;
	right: auto;
	top: 15px;
	bottom: auto;
	animation: prtblink 1s infinite;
}

@keyframes prtblink {
	0% {
		opacity: 1;
	}

	50% {
		opacity:
			0;
	}

	100% {
		opacity:
			1;
	}
}

/* feature section css  */
.ftr-wrp {
	padding-left: 70px;
}

.ftr-wrp h2 {
	margin-bottom: 20px;
}

.ftr-img img {
	width: 100%;
	border-radius: 10px;
}

.ftr-list {
	margin-top: 30px;
}

.ftr-list h6 {
	line-height: 24px;
}

.ftr-list {
	margin-top: 30px;
}

.ftr-wrp p {
	color: #7a7a7a;
}

.ftr-list ul {
	margin-top: 20px;
	list-style: none;
	padding: 0px;
}

.ftr-list ul li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
	color: #7a7a7a;
}

.ftr-list ul li::before {
	position: absolute;
	width: 20px;
	height: 20px;
	left: 0;
	font-weight: 600;
	top: 0;
	content: "\f058";
	font-family: "Font Awesome 6 Free";
	color: #269030;
}

.advantage-wrapper {
	border-radius: 15px;
	background: rgba(0, 0, 0, 0) linear-gradient(169deg, #f9b827, #ff7100) repeat scroll 0 0;
}

.advantage-wrapper .advantage-content .checklist-wrapper {
	margin-bottom: 30px;
}

.advantage-wrapper .advantage-thumb {
	position: relative;
}

.advantage-wrapper .advantage-thumb .thumb1 {
	position: relative;
	z-index: 1;
}

.advantage-content {
	padding-right: 40px;
}

.advantage-wrapper .advantage-thumb .thumb2 {
	position: absolute;
	z-index: 2;
	right: -30px;
	bottom: 0;
}

.advantage-wrapper .advantage-thumb .shape1 {
	position: absolute;
	bottom: 0;
	right: -30px;
}

.advantage-wrapper .advantage-thumb .shape1 img {
	max-width: 100%;
}

.advantage-wrapper .advantage-thumb .thumb2 {
	max-width: 100%;
	right: 0px;
}

.advantage-wrapper .advantage-thumb .thumb2 img {
	max-width: 100%;
}

.advantage-content p {
	color: #fff;
}

.advantage-content .btn-main {
	background: #fff;
	color: var(--main-color);
}

.checklist-wrapper {
	display: flex;
	align-items: center;
	gap: 40px;
}

.checklist {
	list-style: none;
	padding-left: 0px;
}

.checklist li {
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
	letter-spacing: -0.36px;
	margin-top: 20px;
	position: relative;
	padding-left: 35px;
	color: #fff;
}

.checklist li::before {
	position: absolute;
	width: 20px;
	height: 20px;
	left: 0;
	top: 0;
	content: "\f058";
	font-family: "Font Awesome 6 Free";
	color: #fff;
}

.advantage-content .title {
	margin-bottom: 20px;
	color: #fff;
}

/* Testimonial page css */
.testimonial-slider .swiper {
	padding: 30px 20px;
}

.testimonial-slider .swiper-pagination-bullet,
.auth-slide .swiper-pagination-bullet {
	width: 25px;
	height: 8px;
	border-radius: 3px;
	opacity: 1;
	background-color: rgb(255, 228, 203);
}

.testimonial-card {
	position: relative;
	z-index: 3;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0px 2px 10px #bebed7;
}

.testimonial-card .testimonial-header {
	display: flex;
	align-items: center;
	gap: 20px;
}

.testimonial-card .testimonial-header .profile-thumb {
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

.testimonial-card .testimonial-header .content h5 {
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
}

.testimonial-card .testimonial-header .content p {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
}

.star-wrapper {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	list-style: none;
	padding-left: 0px;
}

.star-wrapper i {
	color: #fc791a;
}

.testimonial-card .quote-icon {
	position: absolute;
	bottom: 20px;
	right: 20px;
}

.quote-icon svg path {
	fill: #269030;
}

.testimonial-slider .swiper-pagination-bullet-active,
.auth-slide .swiper-pagination-bullet-active {
	background: #269030;
}

.testimonial-slider .swiper-pagination,
.auth-slide .swiper-pagination {
	bottom: -4px !important;
}

/* Footer page css */
.footer-area {
	background: #00012e;
	padding-top: 70px;
}

.single-footer-widget {
	margin-bottom: 30px;
}

.single-footer-widget h2 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #fff;
}

.single-footer-widget .footer-contact-info {
	padding-left: 0;
	margin-bottom: 0;
}

.single-footer-widget .footer-contact-info li {
	list-style-type: none;
	font-size: 16px;
	margin-bottom: 12px;
}

.single-footer-widget .footer-contact-info li span {
	color: #fff;
	font-weight: 600;
	font-size: 16px;
}

.single-footer-widget .footer-contact-info li a {
	color: #fff;
	text-decoration: none;
}

.single-footer-widget .footer-social {
	padding-left: 0;
	margin-bottom: 0;
	margin-top: 20px;
}

.single-footer-widget .footer-social li {
	display: inline-block;
	list-style-type: none;
	margin-bottom: 0;
	margin-right: 10px;
}

.single-footer-widget .footer-social li i {
	display: inline-block;
	height: 50px;
	width: 50px;
	line-height: 50px;
	border: 1px solid #eeeeee;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 20px;
	transition: 0.5s;
}

.single-footer-widget .quick-links {
	padding-left: 0;
	margin-bottom: 0;
}

.single-footer-widget .quick-links li {
	list-style-type: none;
	margin-bottom: 10px;
}

.single-footer-widget .quick-links li a {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
}

.single-footer-widget .quick-links li a:hover {
	text-decoration: underline;
}

.footer-logo h5 {
	color: #fff;
}

.footer-logo img {
	width: 160px;
	margin-bottom: 20px;
}

.single-footer-widget p {
	color: #fff;
}

.first-ftr {
	padding-right: 100px;
}

.copyright {
	padding: 20px 10px;
}

.copyright-item {
	color: #fff;
}

.copyright-item a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
}

.copyright-item a:hover {
	text-decoration: underline;
}

/* Login page css start */

.login-signup {
	background: url(../img/auth-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
	min-height: 587px;
	display: flex;
	align-items: center;
}

.login-signup:before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #090c1e9e;
	left: 0;
	top: 0;
	content: "";
	z-index: -1;
}

.app-img img {
	width: 100%;
}

.login-form {
	height: 100%;
	box-shadow: 0px 12px 40px 0px #0000001A;
	border-radius: 10px;
	padding: 30px;
	background-color: #fff;
}

.app-img {
	margin-right: 40px;
	margin-top: 140px;
}

.login-form .form-check-label {
	color: #000;
}

.form-control-feedback {
	position: absolute;
	bottom: 0px;
	left: 0;
	z-index: 2;
	display: block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	pointer-events: none;
	font-size: 17px;
	background: var(--main-color);
	color: #fff;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.login-form .form-control {
	height: 50px;
}

.login-form .form-control::placeholder {
	font-size: 16px;
}

.forgot a {
	color: #fff;
}

.password-eye {
	position: absolute;
	right: 15px;
	bottom: 15px;
}

/* About page css */
.page-bar {
	padding: 50px 0px;
	text-align: center;
	color: #fff;
	position: relative;
	background: url(../images/page-bg.jpg);
	background-size: cover;
}

.page-bar::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: #269030cf;
	left: 0;
	top: 0;
}

.page-bar .container {
	position: relative;
}

.page-bar-inner a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.about-wrap h2 {
	font-size: 40px;
	margin-bottom: 20px;
	font-weight: 600;
}

section.counter {
	background: rgba(0, 0, 0, 0) linear-gradient(169deg, #f9b827, #ff7100) repeat scroll 0 0;
	padding: 50px 0px;
}

.counter-box h1 {
	color: #fff;
	font-size: 50px;
}

.counter-box p {
	margin-bottom: 0px;
	color: #fff;
	font-size: 18px;
}

.mission-image img {
	width: 100%;
}

.contact-form {
	box-shadow: 0px 12px 40px 0px #0000001A;
	border-radius: 10px;
	padding: 40px;
}

.contact-list li a {
	color: #212529;
	text-decoration: none;
}

.contact-form #contactForm .form-group .form-control {
	height: 50px;
	padding: 0 0 0 15px;
	line-height: initial;
	color: #292929;
	background-color: #ffffff;
	border: 1px solid #d9d7d7;
	border-radius: 5px;
	box-shadow: unset !important;
	transition: 0.5s;
	font-size: 16px;
	font-weight: 400;
}

.contact-form #contactForm .form-group textarea {
	min-height: 110px;
}

.contact-information h3 {
	margin-bottom: 25px;
	font-size: 25px;
}

.contact-form #contactForm .form-group {
	margin-bottom: 15px;
}

.contact-information .contact-list {
	padding-left: 0;
	margin-bottom: 25px;
	list-style-type: none;
}

.contact-information .contact-list li {
	margin-bottom: 15px;
	position: relative;
	padding-left: 35px;
}

.contact-information .contact-list li i {
	position: absolute;
	left: 0;
	top: 2px;
	color: #269030;
	font-size: 20px;
}

.think-img img {
	width: 250px;
}

.think-steps {
	padding-left: 40px;
}

.think-steps h3 {
	font-size: 30px;
	font-weight: 600;
}

.border-wrp {
	margin-top: 40px;
	padding-left: 30px;
	border-left: 2px solid #626262;
}

.step-wrp {
	margin-bottom: 25px;
}

.step-wrp h4 {
	font-size: 22px;
	font-weight: 600;
}

.think-wrp p {
	margin: 20px 0px;
}

.think-wrp {
	margin-left: 50px;
}

.think-wrp h2 span {
	color: #269030;
}

.form-signin #password-reveal {
	position: absolute;
	top: 18px;
	right: 33px;
}

.login-signup a {
	color: #000;
}

.iti {
	width: 100%;
}

.form-signin .field-user-password {
	position: relative;
}

.welcome-wrp .title {
	font-size: 40px;
	line-height: 50px;
}

.welcome-wrp h2 .main-color {
	color: var(--main-color) !important;
}

.login-signup .bottom-txt a {
	color: var(--main-color) !important;
	text-decoration: none;
	transition: all .5s ease-in-out;
}

.login-signup .bottom-txt a:hover {
	text-decoration: underline !important;
}

.login-signup .login-form .auth-clients {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.login-signup .login-form .auth-clients {
	float: unset !important;
	margin-bottom: 0;
	margin-top: 30px;
}


.login-signup .welcome-wrp h2 span {
	font-size: 55px;
	line-height: 65px;
}

.faq-section #accordionFAQ .card {
	margin-bottom: 20px;
}

.faq-section #accordionFAQ .card-header {
	background-color: var(--main-color);
	color: #fff !important;
}

.faq-section #accordionFAQ .card-header button {
	border: 0;
	background-color: transparent;
	color: #ffffff !important;
}

.faq-section #accordionFAQ .card-body p {
	margin-bottom: 0;
}

.bg-blue-header h1,
.bg-blue-header h2 {
	margin-bottom: 0;
}

.bg-blue-header {
	background-color: #202736;
	padding: 30px 0;
	color: #fff;
}

.auth-form-bottom .field-loginform-rememberme {
	margin-bottom: 0 !important;
}

.advantage-thumb {
	text-align: end;
}

.advantage-thumb img {
	width: 500px;
}

.welcome-wrp .first,
.welcome-wrp .second {
	-webkit-text-stroke: 2px #f68328;
	font-size: 100px;
	font-weight: 500;
	margin: 0;
}

.welcome-wrp .first {
	color: transparent;
}

.welcome-wrp .second {
	color: #f68328;
	animation: waves 4s ease-in-out infinite;
	position: absolute;
	left: 0;
	top: 0px;
}

@keyframes waves {

	0%,
	100% {
		clip-path: polygon(0% 45%,
				16% 44%,
				33% 50%,
				54% 60%,
				70% 61%,
				84% 59%,
				100% 52%,
				100% 100%,
				0% 100%);
	}

	50% {
		clip-path: polygon(0% 60%,
				15% 65%,
				34% 66%,
				51% 62%,
				67% 50%,
				84% 45%,
				100% 46%,
				100% 100%,
				0% 100%);
	}
}

.feature-box {
	box-shadow: 0px 12px 40px 0px #0000001A;
	border-radius: 10px;
	padding: 20px;
	background-color: #f68328b8;
	min-height: 180px;
}

.feature-box .feature-txt h4 {
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin-bottom: 0;
}

.feature-box .feature-txt p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	color: #fff;
}

.feature-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	background-color: #269030;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 100px;
}

.banner-sec .swiper-button-prev,
.banner-sec .swiper-button-next {
	width: 45px;
	height: 45px;
	background-color: var(--main-color);
	min-width: 40px;
	border-radius: 100px;
}

.banner-sec .swiper-button-prev i,
.banner-sec .swiper-button-next i {
	font-size: 20px;
	line-height: 30px;
	color: #fff;
}

.banner-sec .swiper-button-prev:after,
.banner-sec .swiper-button-next:after {
	content: none;
}

.text-orange {
	color: var(--main-color);
}

.auth-slide {
	padding-right: 40px;
	display: flex;
	align-items: center;
	height: 100%;
}


/* blog home css start */
.blog_wrap .blog-single-slide {
	background: #fff;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	height: 100%;
}

.blog_wrap .blog_img {
	display: inline-block;
	height: 200px;
	width: 100%;
}

.blog_wrap .blog-single-slide>a img {
	max-height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.blog_wrap .blog-slide-text {
	padding: 20px;
}

.blog_wrap .blog-slide-text p {
	margin-bottom: 10px;
}

.blog_wrap .blog-slide-text p i {
	margin-right: 5px;
}

.blog_wrap .blog-slide-text p span {
	margin-right: 7px;
}

.blog_wrap .blog-slide-text h4 a {
	font-size: 20px;
	color: var(--bs-heading-color);
	line-height: 30px;
	transition: .5s;
	font-weight: 600;
}

.blog_wrap .blog-slide-text h4 a:hover {
	color: var(--main-color);
}

/* blog home css end */



/* download app css start */
.app-banner-sec {
	background-color: var(--main-color);
	padding: 100px 0px;
	color: #fff;
}

.app-banner-sec h1 {
	font-size: 55px;
	line-height: 60px;
	font-weight: 700;
}

.app-banner-sec p {
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 0;
}

.app-banner-sec .app-banne-img {
	width: 300px;
	margin: 0 auto;
}

.app-banner-sec .app-banne-img img {
	width: 100%;
	height: 100%;
}

.app-banner-sec .app-desc .btn-main {
	background: #269030;
	color: #fff;
	border: 1px solid #269030;
}

.app-banner-sec .app-desc .btn-main:hover {
	background-color: transparent;
	color: #fff;
	border-color: #fff !important;
}

.app-section .app-desc .qr-img .qrcode-container {
	width: 200px;
	height: 200px;
}

.app-section .app-desc .qr-img .qrcode-container img {
	width: 100%;
	height: 100%;
}

.app-section .app-img {
	width: 300px;
	margin: 0 auto;
}

.app-img img {
	width: 100%;
}

.app-desc .green {
	color: #269030;
}

.download-app-txt ul li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
}

.download-app-txt ul li::before {
	position: absolute;
	width: 20px;
	height: 20px;
	left: 0;
	font-weight: 600;
	top: 0;
	content: "\f058";
	font-family: "Font Awesome 6 Free";
	color: #269030;
}

.download-app-txt .qr-img-box a{
	width: 200px;
	height: 200px;
}

.download-app-txt .qr-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feature-section .feature-img {
	width: 300px;
	margin: 0 auto;
}

.feature-section .feature-img img {
	width: 100%;
}

.feature-section {
	background: #f6832842;
}

.feature-section .feature-icon {
	background-color: #269030;
	width: 50px;
	min-width: 50px;
	height: 50px;
}

.work-process-section .img-wrap {
	width: 300px;
	margin-left: auto;
}

.work-process-section .img-wrap img {
	width: 100%;
	height: 100%;
}

.work-process-wrap .process-icon-item {
	position: relative;
	margin-bottom: 5.5rem;
}

.work-process-wrap .process-icon-item .process-icon {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: var(--main-color);
	height: 4.75rem;
	width: 4.75rem;
	line-height: 1;
	border-radius: 50%;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.work-process-wrap .process-icon-item .process-icon i {
	font-size: 1.753rem;
	color: #fff;
}

.work-process-wrap .process-icon-item .process-content {
	width: 100%;
	max-width: 454px;
	flex: 1;
}

.work-process-wrap .process-icon-item svg {
	position: absolute;
	left: 63%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 62%;
}

.work-process-wrap .process-icon-item svg:not(:root) {
	overflow: hidden;
}

.work-process-wrap .right-shape .d-flex {
	-ms-flex-direction: row-reverse !important;
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: reverse !important;
	flex-direction: row-reverse !important;
}

.work-process-wrap {
	position: relative;
	width: 100%;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-line-pack: start;
	align-content: flex-start;
}

.left-33 {
	left: 33%;
}

.right-7 {
	right: 7%;
}

.btn-main2 {
	background: #fff;
	color: #000;
	border: 1px solid #fff;
	padding: 10px 35px;
	font-size: 16px;
	font-weight: 500;
	height: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	transition: .5s;
	text-decoration: none;
}

.btn-main2:hover {
	background-color: transparent;
	color: #fff;
}

/* download app css end */