/**** Global Styles ****/
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

body {
	font-family: "Roboto", sans-serif;
	scroll-behavior: smooth;
	background: #000;
	color: #fff;
}

.canara_bank_logo {
	background-color: #00a0e5;
}

body.overflow-hide {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #fff;
}

p {
	font-weight: 300;
	font-family: "Roboto", sans-serif;
	color: #fff;
}

img {
	max-width: 100%;
}

.max-width {
	max-width: 1360px;
	margin: auto;
	width: 100%;
	padding-left: 40px;
	padding-right: 40px;
}

#backToTop {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 10px;
	z-index: 99;
	cursor: pointer;
	height: 50px;
	width: 50px;
	padding: 10px;
	outline: 0;
	border: 0;
	opacity: 0.5;
	border: 1px solid #b8a8a8;
	border-radius: 50%;
	background-color: #000;
}

#backToTop:hover {
	opacity: 1;
}

.preloader {
	position: fixed;
	width: 100%;
	height: 100vh;
	display: flex;
	place-items: center;
	justify-content: center;
	z-index: 99999999;
	top: 0;
	left: 0;
	background: linear-gradient(89.7deg, #06152b 5.45%, #050f1e 96.3%);
}

.preloader .content {
	margin: auto 0;
}

section h2 {
	font-weight: 700;
	font-size: 54px;
	line-height: 64px;
	letter-spacing: 0.1px;
	color: #ffffff;
	margin-bottom: 20px;
}

section p {
	font-size: 22px;
	line-height: 27px;
	color: #ffffff;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
	display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
}

/**** Global Styles ****/
/* header */
.dark-theme header {
	background: rgba(0, 0, 0, 0.7);
	/* background: #000; */
	position: fixed;
	width: 100%;
	/* z-index: 99; */
	z-index: 9999999;
	top: 0;
	left: 0;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.dark-theme header.active {
	background: #000;
	transition: none;
}

.dark-theme header.scrolled {
	background: #000;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.solution-header,
.products-header {
	position: relative;
	transition: none;
}

.solution-header *,
.products-header * {
	transition: none;
}

.solution-header::after,
.products-header::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
}

.dark-theme header .dropdown-outer {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	position: absolute;
	left: -80px;
	top: calc(100% + 24px);
	width: 600px;
	background-color: #fff;
	border-radius: 2px;
	overflow-y: auto;
}

.solution-header:hover .dropdown-outer,
.products-header:hover .dropdown-outer,
.solution-header:active .dropdown-outer,
.products-header:active .dropdown-outer {
	opacity: 1;
	visibility: visible;
}

.dark-theme header .arrow {
	opacity: 0;
	visibility: hidden;
}

.dark-theme header .solution-header:hover .arrow,
.dark-theme header .products-header:hover .arrow {
	opacity: 1;
	visibility: visible;
}

.dark-theme header .arrow::after {
	content: "";
	position: absolute;
	top: 46px;
	left: 35px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #fff;
}

.dark-theme header.active .dropdown-outer {
	height: calc(100vh - 106px);
	overflow-y: auto;
}

.dark-theme .header-content {
	position: relative;
}

.dark-theme header .nav_brand img {
	width: 240px;
}

.dark-theme header nav.navbar {
	/* padding: 30px 50px; */
	padding: 15px 40px;
	z-index: 9;
	gap: 20px;
}

.dark-theme header div#collapsibleNavbar {
	/* max-width: 80%; */
	justify-content: space-between;
}

.dark-theme header nav .navbar-nav {
	width: 100%;
	justify-content: space-between;
}

.dark-theme header nav .navbar-nav .header-right,
.dark-theme header nav .navbar-nav .header-left {
	display: flex;
}

.dark-theme header li.nav-item {
	margin-right: 10px;
}

.dark-theme header li.nav-item:last-child {
	margin-right: 0;
}

.dark-theme header .navbar-nav li.nav-item a.nav-link img {
	margin-left: 5px;
}

.dark-theme header .navbar-nav li.nav-item a.nav-link {
	font-size: 18px;
	line-height: 22px;
	color: #fff;
	padding: 5px 7px;
	position: relative;
	font-weight: 400;
}

.dark-theme header nav .navbar-nav .header-right .nav-item a.nav-link {
	font-size: 14px;
}

.dark-theme header .navbar-nav li.nav-item a.nav-link:hover,
.dark-theme header .navbar-nav li.nav-item a.nav-link.active {
	opacity: 1;
}

.dark-theme header li a::after {
	bottom: -3px;
	content: "";
	display: block;
	height: 1px;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	background-color: #fff;
	-webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
	-o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
	width: 0;
}

.dark-theme header li a.nav-link:hover::after {
	width: 100%;
}

.dark-theme header .sub-menu {
	position: relative;
	width: 100%;
	background: #fff;
	padding: 40px 10px;
	z-index: 8;
	/* transform: translateY(-100%); */
}

.dark-theme header .sub-menu.active {
	transform: translateY(0);
}

.dark-theme header .sub-menu-left h3 {
	font-weight: 600;
	font-size: 28px;
	line-height: 42px;
	color: #ffffff;
	opacity: 0.9;
	margin-bottom: 10px;
}

.dark-theme header .sub-menu-left p {
	font-size: 16px;
	line-height: 27px;
	color: #fff;
	opacity: 0.7;
	margin-bottom: 30px;
}

.dark-theme header .sub-menu ul {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
	align-items: flex-start;
}

.dark-theme header .sub-menu ul li {
	width: 50%;
	padding: 0 20px;
}

.dark-theme header .sub-menu ul li:not(:last-of-type) {
	margin-bottom: 30px;
}

.dark-theme header .sub-menu ul li a {
	display: inline-flex;
	position: relative;
	cursor: pointer;
}

.dark-theme header .sub-menu ul li a:hover,
.dark-theme header .sub-menu ul li a:focus {
	text-decoration: none;
}

.dark-theme header .sub-menu ul li a:hover .sub-menu-icon img,
.dark-theme header .sub-menu ul li a:focus .sub-menu-icon img {
	transform: scale(1.2);
}

.dark-theme header .sub-menu-icon {
	max-width: 35px;
	margin-right: 15px;
}

.dark-theme header .sub-menu-icon img {
	max-width: unset;
}

.dark-theme header .sub-menu-text h5 {
	font-weight: 600;
	font-size: 14px;
	color: #132742;
	opacity: 0.8;
	margin-bottom: 0;
}

.dark-theme header .sub-menu-text p {
	font-size: 13px;
	color: #4A525C;
	opacity: 0.7;
	margin-bottom: 0;
}

.dark-theme header .dropdown-menu {
	background: #222;
	right: 0;
	left: unset;
	margin: 10px 0;
	width: 240px;
	padding: 0;
}

.dark-theme header .dropdown-menu::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	border-bottom: 15px solid #222222;
	top: -15px;
	right: 25px;
}

.dark-theme header .dropdown-menu a {
	display: flex;
	align-items: center;
	color: #fff;
	padding: 10px;
	font-size: 16px;
}

.dropdown-item:focus,
.dropdown-item:hover {
	color: unset;
	background-color: unset;
}

.dark-theme header .dropdown-menu a img {
	width: 25px;
	margin-right: 20px;
}

.dark-theme header .dropdown-menu a::after,
.dark-theme header .dropdown-toggle::after {
	display: none;
}

.dark-theme header .products-header .arrow::after {
	border-bottom: 10px solid #EEF1F8
}

.dark-theme header .products-header .dropdown-outer {
	width: 800px;
}

.dark-theme header .products-header .sub-menu {
	background-color: #EEF1F8;
	padding: 10px;
}

.products-header .products-right {
	padding-left: 0;
}

.products-header .product-grid {
	padding: 0 10px;
	margin-bottom: 20px;
}

.products-header .product-list {
	background-color: #fff;
	border-radius: 5px;
	max-height: 600px;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0 10px;
}

.tab-list-left a {
	padding: 15px;
	margin-bottom: 10px;
	border-radius: 5px;
}

.tab-list-left a .heading {
	color: rgba(75, 84, 95, 0.90);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.2px;
}

.tab-list-left a .desc {
	display: block;
	color: #1F1F1F;
	font-size: 13px;
}

.tab-list-left a.active {
	background: #fff;
}

.tab-list-left a.active .heading {
	font-weight: bold;
	color: #0090ff;
}

.tab-list-left a:hover {
	text-decoration: none;
	background: #FFF;
}

.products-header .product-cards {
	padding: 15px 0;
}

.products-header .product-cards h3 {
	color: #586678;
	opacity: 0.8;
	font-size: 13px;
	font-weight: 700;
}

.products-header .product-card {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.products-header .product-card:hover {
	text-decoration: none;
}

.products-header .product-logo img {
	width: 30px;
	max-width: unset;
}

.products-header .product-card .product-title h6 {
	color: #132742;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 0%;
}

.products-header .sub-product {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.products-header .sub-product p {
	color: #586678;
	font-size: 13px;
	font-weight: 700;
	text-transform: capitalize;
	margin-left: 10px;
	margin-bottom: 0;
}

.products-header .product-card p {
	color: #4A525C;
	font-size: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* header */
/* Banner */
.banner {
	z-index: 9;
	width: 100%;
	height: 100vh;
	position: relative;
	background-color: #000;
}

.banner .banner-single {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.banner .banner-single.active {
	opacity: 1;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.banner video {
	width: 100%;
	height: 100vh;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -1;
	transition: none;
	pointer-events: none;
}

.banner .arrows {
	position: absolute;
	right: 20%;
	top: 25%;
	display: flex;
	align-items: center;
	z-index: 9;
}

.banner .arrows a {
	display: inline-flex;
	margin: 0 10px;
}

.banner .max-width {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	margin: auto;
	max-width: unset;
}

.banner .banner-content {
	position: absolute;
	top: 40%;
	left: 40px;
	z-index: 2;
	/*transform: translateY(-50%);*/
	z-index: 9;
	max-width: 700px;
	filter: drop-shadow(0px 2px 7px rgba(5, 17, 33, 0.79));
}

.banner .banner-content h2 {
	/*font-weight: 700;
  font-size: 68px;
  line-height: 102px;
  letter-spacing: 0.2em;
  text-transform: uppercase;*/

	font-style: normal;
	font-weight: bold;
	font-size: 64px;
	line-height: 64px;
	letter-spacing: 1.1px;

	margin-bottom: 14px;
	position: relative;
	/*transform: translateX(-100vw);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;*/
}

.banner .banner-content p {
	/*font-size: 18px;
  line-height: 37px;
  letter-spacing: 0.2em;*/

	font-family: Roboto;
	font-style: normal;
	font-weight: 300;
	font-size: 34px;
	line-height: 48px;
	letter-spacing: 0.1px;
	position: relative;
	/*transform: translateX(-200vw);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;*/
}

.banner .banner-content p span {
	font-weight: 600;
	margin-top: -20px;
}

.empty-height {
	height: 68px;
	background-color: black;
}

.footer_logo {
	height: 60px;
	opacity: 0.8;
}

.banner .banner-content p.sub-label {
	font-weight: 300;
	font-size: 22px;
	line-height: 29px;
	margin-top: 30px;
}

.banner .banner-single.active .banner-content h2,
.banner .banner-single.active .banner-content p {
	transform: translateX(0);
}

/* Banner */
/* Why KFintech */
.why-kfintech-features {
	width: 100%;
	position: relative;
	height: unset !important;
	margin: 30px 0;
}

.why-kfintech-features img.transition-image {
	transition-property: none;
}

.why-kfintech-features img.transition-inner-image1 {
	width: 24%;
	height: 25%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -7% 0 0 -13%;
	z-index: -1;
}

.solution-image-mobile {
	display: none;
}

.why-kfintech-features img.transition-inner-image2 {
	width: 24%;
	height: 25%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6% 0 0 -12%;
	z-index: -1;
}

.why-kfintech-features img.transition-inner-image3 {
	width: 55%;
	height: 55%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -21% 0 0 -28%;
	z-index: -1;
}

.slide {
	height: 100vh;
}

.why-kfintech-features .row {
	align-items: center;
	height: 100%;
}

.why-kfintech-features h2 {
	font-weight: 700;
	font-size: 54px;
	line-height: 64px;
	letter-spacing: 0.1px;
	color: #ffffff;
	margin-bottom: 30px;
}

#transition-ghost {
	position: fixed;
	visibility: hidden;
	left: 0;
	top: 0;
	transition-duration: 800ms;
	transition-property: transform;
	transition-timing-function: ease-in-out;
	z-index: 1000000;
	transform: translateX(0px);
}

.why-kfintech-features h3 {
	color: #e0e0e0;
	font-weight: 600;
	font-size: 36px;
	line-height: 57px;
	margin-bottom: 25px;
	background: linear-gradient(150deg, #0090ff 0%, #36dae9 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.why-kfintech-features p {
	font-size: 20px;
	line-height: 39px;
	color: #e0e0e0;
	opacity: 0.8;
	max-width: 680px;
}

.why-kfintech-features-img {
	text-align: center;
}

/* Why KFintech */
/* Names */
.names {
	position: relative;
	padding: 95px 0;
	margin-bottom: 0;
	background-color: #fff;
}

.names_img img {
	max-width: 100% !important;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.names_img a {
	background-color: transparent;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.names_img a:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.names_info {
	max-width: 540px;
}

.names_info h2 {
	margin-bottom: 30px;
	color: #201c43;
}

.names_info p {
	font-size: 20px;
	line-height: 32px;
	color: #201c43;
	opacity: 0.7;
}

.names_images {
	padding-top: 25px;
	max-height: 360px;
	overflow: hidden;
	max-width: 830px;
	overflow-y: auto;
}

.names_img {
	display: flex;
	flex-wrap: wrap;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-animation-duration: 40s;
	-webkit-animation-name: unset;
	animation-name: unset;
	animation-duration: 40s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

.names_img figure {
	width: 20%;
	height: 90px;
	margin-right: 0 !important;
	margin-left: 0 !important;
	padding: 20px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.names_img:hover {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}

@-webkit-keyframes namesMove {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-1050px);
		transform: translateY(-1050px);
	}
}

@keyframes namesMove {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-1050px);
		transform: translateY(-1050px);
	}
}

@-webkit-keyframes namesMoveMobile {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-1680px);
		transform: translateY(-1680px);
	}
}

@keyframes namesMoveMobile {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-1680px);
		transform: translateY(-1680px);
	}
}

/* Names */
/* Our Solutions */
.our-solutions {
	position: relative;
	z-index: 9;
}

.our-solutions-cards {
	width: 100%;
	overflow: hidden;
}

.our-solutions-total {
	display: flex;
	width: 200%;
}

.our-solutions-total a {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 25%;
	height: 650px;
	max-height: 100vh;
	background: linear-gradient(180deg,
			rgba(0, 0, 0, 0) 0%,
			rgba(5, 20, 38, 0.5) 82.36%);
	border-right: 2px solid rgba(0, 0, 0, 0.2);
	padding: 20px;
	overflow: hidden;
}

.our-solutions h2 {
	position: absolute;
	left: 30px;
	top: 90px;
	z-index: 9;
}

.our-solutions .arrow {
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	display: none;
	z-index: 10;
}

.our-solutions .arrow#solutions-left-arrow {
	display: none;
}

.our-solutions .arrow#solutions-right-arrow {
	left: unset;
	right: 30px;
}

.our-solutions-card h5 {
	font-weight: 700;
	font-size: 22px;
	line-height: 34px;
	color: #fff;
}

.our-solutions-card p {
	font-weight: 300;
	font-size: 18px;
	line-height: 28px;
	color: #fff;
}

.our-solutions-card p.our-solutions-card-text {
	max-height: 0;
	overflow: hidden;
	-webkit-transition: all 0.5s ease-in-out 0.15s;
	transition: all 0.5s ease-in-out 0.15s;
}

.our-solutions-card p.know-more {
	display: flex;
	align-items: center;
	font-size: 16px;
	line-height: 22px;
	transform: translateX(-120%);
}

.our-solutions-card p.know-more img {
	margin-left: 7px;
}

.our-solutions-card:hover,
.our-solutions-card:focus {
	text-decoration: none;
}

.our-solutions-card.active p.our-solutions-card-text,
.our-solutions-card:hover p.our-solutions-card-text,
.our-solutions-card:focus p.our-solutions-card-text {
	max-height: 400px;
}

.our-solutions-card.active p.know-more,
.our-solutions-card:hover p.know-more,
.our-solutions-card:focus p.know-more {
	transform: translateX(0);
	-webkit-transition: all 0.5s ease-out 0.15s;
	transition: all 0.5s ease-out 0.15s;
}

.our-solutions .solution-image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.our-solutions:hover .arrow {
	display: inline-block;
}

.our-solutions .solution-image.active {
	z-index: -1;
	opacity: 1;
}

/* Our Solutions */

/* Footer */
footer {
	color: #b8a8a8;
	background: rgba(16, 23, 56, 0.32);
}

footer .max-width {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 55px;
	padding-bottom: 50px;
}

.footer_logo p {
	width: 80%;
	font-size: 14px;
	line-height: 32px;
	margin: 40px 0;
	color: #b8a8a8;
}

.footer_logo {
	width: 30%;
}

.footer_links {
	width: 70%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 30px;
}

.footer_links_info {
	width: 33.33%;
}

.footer_links_info h5 {
	margin-bottom: 7px;
	color: #b8a8a8;
	font-size: 15px;
	font-weight: bold;
	font-family: "Roboto", sans-serif;
}

.footer_links_info ul {
	padding: 0;
	margin-left: 0;
}

.footer_links_info li {
	margin-bottom: 7px;
	list-style-type: none;
}

.footer_links_info li a {
	text-decoration: none;
	font-size: 13px;
	position: relative;
	color: #b8a8a8;
	font-weight: 300;
}

.footer_contact a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer_links_info li a:hover {
	color: #fff;
}

.footer_links_info li a::after {
	bottom: -3px;
	content: "";
	display: block;
	height: 1px;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	background-color: #fff;
	-webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
	-o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
	width: 0;
}

.footer_links_info li a:hover::after {
	width: 100%;
}

.footer_links_info li a img {
	margin-right: 10px;
	width: 15px;
}

.footer_contact_tel {
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer_social_links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer_social_links a {
	margin-left: 8px;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #201c43;
	border-radius: 8px;
	padding: 7px;
}

.footer_social_links a:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

.footer_contact a:hover::after {
	display: none;
}

.footer_links_info .footer_social_links a img {
	width: auto;
}

p.footer_copyright {
	margin: 0;
}

.footer_bottom,
.footer_bottom ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer_bottom {
	max-width: 1360px;
	margin: auto;
	padding: 0 40px;
	padding-bottom: 40px;
}

.footer_here img {
	width: 90px;
}

.footer_bottom .footer_copyright {
	font-weight: 300;
	font-size: 14px;
	line-height: 28px;
	color: #b8a8a8;
}

.footer_bottom ul {
	margin: 0;
	list-style-type: none;
	margin-right: 100px;
	margin-left: auto;
}

.footer_bottom ul h5 {
	margin: 0px;
	color: #b8a8a8;
	font-size: 16px;
	margin-right: 30px;
	font-weight: 500;
	font-family: "Roboto", sans-serif;
}

.footer_here p {
	margin: 0;
	color: #b8a8a8;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.02em;
}

.footer_here span {
	font-weight: 900;
}

.footer_bottom .footer_copyright_mobile {
	display: none;
}

/* Footer */
/* modal */
.modal {
	z-index: 9999999;
	color: #000;
}

.modal .modal-dialog {
	margin-top: 80px;
}

.modal-header {
	padding: 0.5rem 1rem;
}

.modal-header .close:focus,
.modal-header .close:focus-visible {
	outline: none;
}

.modal-content {
	display: block;
	/* width: fit-content; */
	margin: 0 auto;
}

.modal-image {
	position: relative;
}

.modal-image a {
	position: absolute;
	/* width: 50%;
	height: 50%; */
}

.modal-image a:nth-of-type(1) {
	left: 0;
	top: 0;
}

.modal-image a:nth-of-type(2) {
	right: 0;
	top: 0;
}

.modal-image a:nth-of-type(3) {
	left: 0;
	bottom: 0;
}

.modal-image a:nth-of-type(4) {
	right: 0;
	bottom: 0;
}

/* modal */
/* Mobile CSS */
@media only screen and (max-width: 767px) {
	.max-width {
		padding-left: 20px;
		padding-right: 20px;
	}

	section h2,
	.why-kfintech-features h2 {
		font-size: 34px;
		line-height: 44px;
	}

	section p {
		font-size: 18px;
		line-height: 24px;
	}

	.dark-theme header {
		background: #000;
	}

	.dark-theme header nav.navbar {
		padding: 15px 20px;
		gap: 0;
	}

	.dark-theme header .nav_brand img {
		width: 200px;
	}

	.dark-theme header nav .navbar-nav {
		padding: 20px 0 0;
	}

	.dark-theme header nav .navbar-nav .header-right,
	.dark-theme header nav .navbar-nav .header-left {
		flex-direction: column;
	}

	.dark-theme header div#collapsibleNavbar {
		max-width: 100%;
	}

	.dark-theme header li.nav-item {
		margin-right: 0;
		margin-bottom: 10px;
	}

	.dark-theme header .dropdown-menu {
		margin-top: 20px;
	}

	.dark-theme header .dropdown-menu::after {
		top: 40px;
		right: unset;
		left: 15px;
	}

	.navbar-toggler:focus,
	.navbar-toggler:hover {
		outline: 0;
	}

	.dark-theme header .sub-menu {
		padding: 0;
	}

	.dark-theme header .sub-menu ul {
		margin: 20px 0;
	}

	.dark-theme header .sub-menu ul li {
		width: 100%;
	}

	.header-height {
		height: 100%;
		overflow-y: auto;
		overflow-x: hidden;
	}

	.dark-theme header nav .navbar-nav {
		justify-content: unset;
	}

	.dark-theme header nav .navbar-nav .header-right .nav-item a.nav-link {
		font-size: 18px;
	}

	.solution-header .nav-link,
	.products-header .nav-link {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.dark-theme header li a::after {
		content: none;
	}

	.dark-theme header .solution-header:hover .dropdown-outer,
	.dark-theme header .products-header:hover .dropdown-outer {
		position: unset;
		width: 100%;
	}

	.products-header .products-right {
		padding-left: 15px;
	}

	.tab-select select {
		padding: 10px 15px;
		width: 100%;
		border-radius: 5px;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		background: url("../images/down-arrow-black.svg") no-repeat right 15px center;
	}

	.tab-select select:focus-visible {
		outline: none;
	}

	.banner .arrows {
		right: 0;
	}

	.banner .banner-content {
		left: 0;
		padding: 0 20px;
	}

	.banner .banner-content h2 {
		font-size: 44px;
		line-height: 51px;
	}

	.banner .banner-content p,
	.names_info p,
	.banner .banner-content p.sub-label,
	.why-kfintech-features p {
		font-size: 16px;
		line-height: 28px;
	}

	.names {
		padding: 30px 0;
	}

	.names .col-sm-12 {
		padding: 0;
	}

	.names_img {
		-webkit-animation-name: unset;
		animation-name: unset;
	}

	.names_img figure {
		width: 33.33%;
	}

	.our-solutions h2 {
		top: 30px;
	}

	.testimonials .owl-carousel .owl-item .testimonials-logo {
		text-align: left;
	}

	.testimonials .owl-carousel .owl-item .testimonials-single img {
		width: 100px;
	}

	.testimonials-info {
		padding: 25px 0 30px;
	}

	.testimonials-info p {
		font-size: 14px;
		line-height: 28px;
	}

	.testimonials-info img.quotation {
		left: 0;
	}

	.testimonials .max-width {
		padding: 40px 20px;
	}

	.testimonials-single,
	.footer_bottom .footer_copyright_mobile,
	.footer_links {
		display: block;
	}

	.footer_bottom .footer_copyright_desktop {
		display: none;
	}

	footer .max-width {
		display: block;
		padding: 30px 20px;
	}

	.footer_logo p,
	.footer_logo,
	.footer_links,
	.footer_links_info {
		width: 100%;
	}

	.footer_links {
		padding-left: 0;
	}

	.footer_bottom {
		padding: 0 20px 20px;
		display: block;
	}

	.footer_bottom ul,
	.footer_bottom ul h5 {
		display: block;
		margin-right: 0;
		margin-bottom: 10px;
	}

	.footer_here p {
		font-size: 14px;
		text-align: right;
	}

	.why-kfintech-features.slide {
		height: unset;
		padding: 20px;
	}

	.why-kfintech-features .row {
		height: unset;
	}

	.why-kfintech-features h2 {
		position: unset;
		left: unset;
		top: unset;
	}

	.why-kfintech-features h3 {
		font-size: 24px;
		line-height: 36px;
	}

	.our-solutions-cards {
		overflow: unset;
		margin-bottom: -25px;
	}

	.our-solutions-total {
		width: 100%;
	}

	.our-solutions-total a {
		height: 450px;
		position: relative;
		z-index: 9;
		width: 90vw;
		border-right: 0;
		flex-direction: unset;
		justify-content: unset;
		padding: 0;
	}

	.our-solutions-total a div {
		width: 100%;
		height: 100%;
		padding: 20px;
		padding-bottom: 0;
		background: rgba(0, 0, 0, 0.3);
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}

	.our-solutions .solution-image {
		display: none;
	}

	.our-solutions .solution-image-mobile {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		object-fit: cover;
		z-index: -1;
	}

	.our-solutions .empty-height,
	.our-solutions .arrow {
		display: none !important;
	}

	.our-solutions .owl-item.active .our-solutions-card p.know-more {
		transform: translateX(0);
	}

	.our-solutions .owl-item.active p.our-solutions-card-text {
		max-height: 400px;
	}

	.our-solutions .our-solutions-card p.know-more img {
		display: inline;
		width: auto;
	}

	#backToTop {
		bottom: 20px;
	}
}

/* popup section */
.banner_popup_sec {
	position: fixed;
	bottom: 0px;
	right: 70px;
	z-index: 999;
	background: #0fd1d6;
	width: 250px;
	border-radius: 10px 10px 0px 0px;
	display: none;
}

.demat_btn img {
	margin-left: 10px;
	height: 20px;
	width: 20px;
	vertical-align: middle;
}

.demat_btn {
	background: #0fd1d6;
	padding: 10px 18px;
	border: none;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border-radius: 10px 10px 0px 0px;
	display: none;

	width: 100%;
	text-align: center;
}

.demat_btn:focus {
	outline: none;
}

.banner_popup_show_content {
	position: relative;
	height: auto;
	transition: 0.5s;
	background: #fff !important;
	border-radius: 10px 10px 0px 0px;
	text-align: center;
}

.banner_popup_show_content.popup_transition {
	height: 0px;
}

.popup_full_icon {
	width: 100%;
	border-radius: 10px 10px 0px 0px;
}

.close_icon_btn {
	position: absolute;
	right: 3px;
	border: none;
	top: 3px;
	background: none;
}

.close_icon_btn,
.open_demat_btn:focus {
	outline: none;
}

.open_demat_btn a {
	text-decoration: none;
	color: #fff;
	font-size: 18px;
}

.open_demat_btn {
	background: #2057a6;
	padding: 10px;
	border: none;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	width: 160px;
	margin: auto;
	margin-bottom: 10px;
	border-radius: 6px;
	text-decoration: none;
}

.open_demat_btn img {
	margin-left: 10px;
	float: right;
	margin-top: 4px;
	height: 20px;
	width: 20px;
	vertical-align: middle;
}

.banner_popup_show_content p {
	color: #000;
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	line-height: 22px;
	margin-top: 13px;
}

.close_icon_btn:focus {
	outline: none;
}

@media only screen and (max-width: 767px) {
	.open_demat_btn {
		padding: 6px 10px;

		font-size: 16px;
	}

	.banner_popup_text .open_demat_btn img {
		margin-top: 2px;
	}

	.banner_popup_sec {
		width: 210px;
	}

	.banner_popup_show_content p {
		font-size: 13px;
	}
}

/* popup section End */
/* Chatbot css */
.zsiq_theme1.zsiq_floatmain {
	width: 60px !important;
	z-index: 1000 !important;
	/* bottom: 50%; */
	bottom: 50px;
	transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
	.zsiq_theme1.zsiq_floatmain {
		width: unset !important;
	}

	/* .siq_bR {
		bottom: 260px !important;
	} */
}

/* Chatbot css End */