/**** 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;
}

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

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

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

.bg-gradient,
.bg-gradient:hover {
	background: linear-gradient(90deg, #0090ff 0%, #36dae9 100%);
	border-radius: 2px;
	color: #fff;
	border: 0;
	box-shadow: none;
	/* padding: 10px 20px; */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
}

/* Firefox */
input[type="number"] {
	-moz-appearance: textfield;
	appearance: textfield;
}

.my-padding {
	padding: 80px 0;
}

/**** 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;
}

.dark-theme header .dropdown-outer {
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 0;
}

.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;
	justify-content: space-between;
	z-index: 9;
}

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

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

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

.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 10px;
	position: relative;
	font-weight: 400;
}

.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:hover::after {
	width: 100%;
}

.dark-theme header .sub-menu {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background: #000;
	padding: 50px 0;
	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;
}

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

.dark-theme header .sub-menu ul li a {
	display: inline-flex;
	align-items: center;
	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: 30px;
}

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

.dark-theme header .sub-menu-text h5 {
	font-weight: 600;
	font-size: 18px;
	line-height: 27px;
	color: #ffffff;
	opacity: 0.8;
	margin-bottom: 0;
}

.dark-theme header .sub-menu-text p {
	font-size: 14px;
	line-height: 26px;
	color: #fff;
	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;
}

/* header */

/* 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 */

/* banner section start */
.banner_sec {
	background-image: url("../images/banner.png"),
		linear-gradient(89.7deg, #06152b 5.45%, #050f1e 96.3%);
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	min-height: 100vh;
	background-position: center;
	background-attachment: fixed;
}

.banner_left h2 {
	font-weight: 700;
	font-size: 44px;
	line-height: 62px;
	letter-spacing: 0.1px;
	text-transform: capitalize;
	color: #ffffff;
}

.banner_text h2 span {
	color: #0090ff;
	/* background: linear-gradient(150deg, #0090ff 0%, #36dae9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.banner_left h3 {
	font-weight: 700;
	font-size: 18px;
	line-height: 31px;
	color: rgba(255, 255, 255, 0.9);
	margin-top: 30px;
}

.banner_left h3 span {
	color: #36dae9;
}

.banner_text {
	padding-top: 15vh;
}

.banner_left {
	/* padding-top: 50px; */
	padding-top: 15vh;
	max-width: 535px;
}

.banner_left p {
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
	letter-spacing: 0.1px;
	color: #ffffff;
	opacity: 0.8;
	max-width: 430px;
}

.banner_right {
	width: 440px;
	margin-left: auto;
	padding-bottom: 60px;
	/* padding-top: 1vh; */
}

.form_sec {
	margin-top: 60px;
}

.banner_icon {
	text-align: center;
}

.banner_right h2 {
	font-weight: 600;
	font-size: 21px;
	line-height: 28px;
	letter-spacing: 0.4px;
	color: #ffffff;
}

.banner_right .login_text {
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0.4px;
	color: #ffffff;
	opacity: 0.8;
	margin-top: 15px;
}

.return_div {
	margin-top: 30px;
}

.return_div span {
	background: linear-gradient(150deg, #0090ff 0%, #36dae9 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
	font-size: 18px;
	line-height: 21px;
	margin-left: 15px;

	font-style: normal;
}

.account_sign_in_text {
	font-style: italic;
	font-weight: 400;
	font-size: 16px;
	line-height: 16px;
	text-align: right;
	letter-spacing: 0.4px;
	color: #d9e1e7;
}

.account_sign_in_text:hover {
	color: #d9e1e7;
	text-decoration: none;
}

.mobile_note_text {
	font-weight: 300;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0.4px;
	color: #ffffff;
	font-style: italic;
	margin-top: 40px;
}

.sign_in_btn {
	background: linear-gradient(90deg, #0090ff 0%, #36dae9 100%);
	box-shadow: 0px 0px 7px rgba(139, 139, 139, 0.256337);
	border-radius: 3px;
	font-weight: 700;
	font-size: 18px;
	line-height: 21px;
	text-align: center;
	letter-spacing: 2px;
	color: #ffffff;
	height: 64px;
	width: 100%;
	border: none;
	margin-top: 40px;
}

.sign_in_btn:focus {
	outline: none;
}

.registration_text_div {
	margin-top: 35px;
}

.registration_text_div h2 {
	font-weight: 900;
	font-size: 24px;
	line-height: 28px;

	color: #ffffff;

	opacity: 0.9;
}

.form-group.check_box_group {
	display: block;
	margin-bottom: 0px;
	text-align: left;
	margin-top: 25px;
	position: relative;
}

.form-group.check_box_group input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

.form-group.check_box_group label {
	position: relative;
	cursor: pointer;
	font-style: normal;
	color: #d9e1e7;
	font-size: 18px;
	line-height: 16px;
	letter-spacing: 0.4px;
	color: #d9e1e7;
}

.form-group.check_box_group label:before {
	content: "";
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid #fff;
	box-shadow: 0 1px 2px rgb(0 0 0 / 5%),
		inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
	padding: 9px 9px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	cursor: pointer;
	margin-right: 12px;
	border-radius: 2px;
	border-radius: 4px;
}

.form-group.check_box_group input:checked+label:after {
	content: "";
	display: block;
	position: absolute;
	top: 3px;
	left: 8px;
	width: 6px;
	height: 13px;
	border: solid #0079bf;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.check_dflex {
	display: flex;
	align-items: center;
	margin-top: 20px;
	gap: 20px;
}

.radio_check_list {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-style: normal;
	color: #d9e1e7;
	font-size: 18px;
	line-height: 16px;
	letter-spacing: 0.4px;
	color: #d9e1e7;
}

.radio_check_list:hover {
	background: transparent;
}

.radio_check_list input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.checkmark {
	position: absolute;
	top: -4px;

	left: 0;
	height: 22px;
	width: 22px;
	background: transparent;
	border-radius: 50%;
	border: 2px solid #fff;
}

.radio_check_list:hover input~.checkmark {
	background-color: transparent;
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.radio_check_list input:checked~.checkmark:after {
	display: block;
}

.radio_check_list .checkmark:after {
	top: 5px;
	left: 5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(90deg, #0090ff 0%, #36dae9 100%);
}

.corporate-details select {
	appearance: none;
	-webkit-appearance: none;
	background: url("../images/down-arrow-white.svg") no-repeat right 15px center #2b3441;
	border: 2px solid #384455;
	border-radius: 3px;
	font-size: 18px;
	letter-spacing: 0.4px;
	color: #d9e1e7;
	margin-top: 30px;
	height: 64px;
	padding-left: 48px;
	padding-right: 40px;
	width: 100%;
}


.corporate-registration .registration-btn {
	display: flex;
	/* justify-content: space-around; */
}

.corporate-registration .registration-btn button:nth-child(2) {
	margin-left: 5px;
}

/* banner section end */
/* client start */
.banner_client_sec {
	background: #fff;
	margin-top: -10px;
	border-radius: 3px;
	padding: 35px 0px;
}

.banner_client_sec h2 {
	font-weight: bold;
	font-size: 28px;
	line-height: 33px;
	text-align: center;
	letter-spacing: 0.1px;
	text-transform: uppercase;

	padding-bottom: 16px;
	color: #201c43;
}

.ipo_carousel {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

/* client start */
.content_div_sec {
	/* margin-top: 100px; */
	/* margin-top: 75px; */
	padding-bottom: 45px;
	/* background: rgba(230, 231, 243, 0.06); */
	/* padding: 40px 40px; */
	padding: 90px 40px;
}

.content_div_left {
	width: 92%;
}

.content_div_left h2 {
	font-weight: 700;
	font-size: 64px;
	line-height: 75px;
	letter-spacing: 0.1px;
	color: #ffffff;
}

.content_div_left p {
	font-weight: 600;
	font-size: 18px;
	line-height: 31px;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 25px;
	/* width: 560px; */
}

.learn_more_text {
	font-weight: 500;
	font-size: 18px;
	line-height: 35px;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.9);
}

.learn_more_text img {
	height: 20px;
	margin-left: 10px;
}

.learn_more_text:hover {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

/* content section  */
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;
}

/* .show_hide a {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
} */
.show_hide img {
	transform: rotate(90deg);
	cursor: pointer;
}

.show_hide img.rotate {
	transform: rotate(270deg);
}

.subscri_link {
	color: #0090ff !important;
	padding-left: 1px;
	font-weight: 600;
}

.subscri_link:active {
	color: #0090ff;
}

.subscri_link:visited {
	color: #0090ff;
}

.subscri_link:hover {
	color: #0090ff;
}

li.normal-discrp {
	list-style-type: disc;
}

.read-more-content li {
	list-style-type: disc;
}

.contribute_sec li {
	list-style-type: disc;
}

.subscriber_banner_text {
	margin-top: 150px;
}

.read_more_text_sec {
	font-size: 16px;
	line-height: 30px;
	color: rgba(255, 255, 255, 0.8);
}

.read-more-content.two_tier_sec span {
	font-weight: 400;
}

/* content section */

/* tab form sign up section */
.ip_group {
	display: flex;
	align-items: center;
}

.ip_group .input-field {
	margin-top: 30px;
}

.ip_group .input-field input {
	margin-top: 0px;
}

.ip_group .input-field input:focus {
	margin-top: 0px;
}

.ip_group .input-field:nth-child(2) {
	margin-left: 18px;
}

.investor-login-right form .form-group {
	margin-bottom: 0px;
}

.investor-login-right {
	margin-top: 40px;
}

.investor-login-right .nav-tabs {
	border-bottom: 1px solid #384455;
}

.investor-login-right .nav-link {
	font-weight: 500;
	font-size: 24px;
	line-height: 16px;
	letter-spacing: 0.4px;
	color: rgba(255, 255, 255, 0.8);
	padding: 1rem;
	border: 0;
	border-bottom: 3px solid transparent;
}

.investor-login-right .nav-link:hover,
.investor-login-right .nav-link:focus {
	border: 0;
}

.investor-login-right .nav-link.active {
	color: #0090ff;
	background: linear-gradient(90deg, #0090ff 0%, #36dae9 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	border-bottom: 3px solid #0090ff;
}

.investor-login-right input,
.investor-login-right input:focus {
	background: #2b3441;
	border: 2px solid #384455;
	border-radius: 3px;
	font-size: 18px;
	letter-spacing: 0.4px;
	color: #d9e1e7;
	padding: 30px 10px 30px 40px;
	margin-top: 30px;
	height: 64px;
	padding-left: 48px;
}

.investor-login-right input:focus {
	outline: none;
	box-shadow: none;
}

.investor-login-right .input-field {
	position: relative;
}

.investor-login-right .corporate-details .input-field img.details-dropdown {
	position: absolute;
	top: 67%;
}

.investor-login-right .input-field img {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
}

.investor-login-right .new-pswd a {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -40px;
}

.investor-login-right .new-pswd a img {
	position: unset;
	left: unset;
	transform: unset;
}

.investor-login-right input[type="checkbox"] {
	display: none;
}

.investor-login-right input[type="checkbox"]+label {
	position: relative;
	cursor: pointer;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 0.4px;
	color: #d9e1e7;
}

.investor-login-right input[type="checkbox"]+label a {
	color: #0090ff;
}

.investor-login-right input[type="checkbox"]+label::before {
	content: "";
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	border: 1px solid #0090ff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
		inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	padding: 6px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	cursor: pointer;
	margin-right: 12px;
	border-radius: 2px;
}

.investor-login-right input[type="checkbox"]:checked+label::after {
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 5px;
	width: 5px;
	height: 11px;
	border: solid #0079bf;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.tab-content a {
	letter-spacing: 0.4px;
	color: #d9e1e7;
	font-size: 14px;
	margin-top: 10px;
}

.investor-login-right button {
	width: 100%;
	padding: 15px;

	margin-top: 40px;

	font-weight: bold;
	font-size: 18px;
	line-height: 21px;
	letter-spacing: 2px;
}

.signin-using {
	text-align: center;
	margin-top: 30px;
}

.signin-using-heading p {
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 0.4px;
	color: #d9e1e7;
	margin: 0;
}

.signin-using-heading {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.signin-using-heading .line {
	height: 1px;
	background: #384455;
	flex: 1;
	margin: 0 10px;
}

.signin-using a {
	margin: 0 10px;
}

.forgot-password {
	margin-top: 53px;
}

.forgot-password h2 {
	font-weight: 500;
	font-size: 24px;
	line-height: 16px;
	letter-spacing: 0.4px;
	padding-bottom: 20px;
	border-bottom: 1px solid #384455;
}

.forgot-password form {
	text-align: center;
}

.forgot-password button {
	margin-bottom: 20px;
}

.forgot-password a {
	color: #0090ff;
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	background: linear-gradient(90deg, #0090ff 0%, #36dae9 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: none;
}

.forgot-password-btn:hover {
	color: #0090ff;
}

/* .sign_in_btn.sign_up_btn {
	margin-bottom: 10vh;
} */
/* tab form sign up section */

/* Data transfer */
.data-transfer .sub-head {
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	text-transform: capitalize;
	color: rgba(255, 255, 255, 0.8);
}

.data-transfer h3 {
	margin-top: 40px;
	font-weight: bold;
	font-size: 36px;
	line-height: 42px;
	display: flex;
	align-items: center;
	letter-spacing: 18.1px;
	text-transform: uppercase;
	color: #0090ff;
	background: linear-gradient(90deg, #0090ff 0%, #36dae9 100%);
	-webkit-background-clip: text;
	background-clip: text;
	/* -webkit-text-fill-color: transparent; */
}

.benefit-cards {
	display: flex;
	flex-wrap: wrap;
	margin-left: -20px;
}

.benefit-card {
	width: 50%;
	padding: 10px;
	display: flex;
}

.benefit-card h6 {
	font-weight: 500;
	font-size: 24px;
	line-height: 19px;
	letter-spacing: 0.2px;
	color: #ffffff;
	margin-top: 20px;
}

.benefit-card p {
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.2px;
	color: #e0e0e0;
	margin: 0;
}

.benefit-card img {
	max-width: unset;
	margin-right: 10px;
}

/* Data transfer End */

/* web screenshot section */
.digix_web_sec {
	padding-top: 30px;
	padding-bottom: 30px;
}

.digix_web_left {
	margin-top: 95px;
}

/* .digix_web_left h2::after {
    content: url("../images/digix_x_logo.svg");
    position: absolute;
    top: -65px;
    left: 0px;
    z-index: -1;
} */
.digix_web_left h2 {
	font-weight: 700;
	font-size: 64px;
	line-height: 75px;
	letter-spacing: 0.1px;

	color: #ffffff;
	position: relative;
	/* padding-top: 64px; */
}

.digix_web_right.owl-carousel .item img {
	width: 805px;
	margin: 0px auto;
	margin-top: 15px;
}

.digix_web_right.owl-carousel .owl-dots {
	text-align: center;
}

.digix_web_right.owl-carousel .owl-dot:focus {
	outline: none;
}

.digix_web_right.owl-carousel .owl-dot {
	height: 4px;
	width: 24px;
	background: #c4c4c4;
	opacity: 0.7;

	border: none;
	margin-right: 8px;
}

.digix_web_right.owl-carousel .owl-dot.active {
	background: linear-gradient(1.39deg,
			#0090ff 5.09%,
			#0090ff 5.09%,
			#36dae9 99.21%);
}

/* digix web screenshot section */

/* Mobile CSS */
@media only screen and (max-width: 600px) {
	.my-padding {
		padding: 30px 0;
	}

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

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

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

	.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-top: 10px;
	}

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

	.dark-theme header.active .dropdown-outer {
		height: calc(100vh - 340px);
	}

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

	.banner_sec {
		background-image: none;
		background: #061224;
	}

	.banner_left {
		padding-top: 35px;
		padding-bottom: 25px;
		background-image: url("../images/digix_banner.png");
		background-repeat: no-repeat;
		background-size: cover;
		height: auto;
	}

	.banner_right {
		width: 100%;
		padding-top: 8vh;
		padding-bottom: 5px;
	}

	.mobile_order {
		order: 2;
	}

	.content_div_sec {
		margin-top: 20px;
	}

	.content_div_left h2 {
		font-size: 34px;
		line-height: 44px;
	}

	.content_div_left p {
		width: 100%;
	}

	.banner_client_sec {
		margin-top: 70px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.form_sec {
		margin-top: 45px;
	}

	.banner_text {
		padding-top: 45px;
	}

	.ipo_sub_text {
		width: 100%;
		margin-top: 20px;
	}

	.ipo_sub_sec {
		margin-top: 18px;
		margin-bottom: 18px;
		display: block;
	}

	.content_div_right {
		margin-top: 30px;
	}

	.btn-link {
		text-align: left;
		width: 100%;
		font-size: 18px;
		line-height: 21px;
	}

	.ipo_carousel {
		display: grid;
		grid-template-columns: 48% 48%;
		gap: 4%;
	}

	.client_item {
		margin-top: 10px;
	}

	.banner_client_sec h2 {
		font-size: 20px;
		line-height: 24px;
	}

	.banner_left h2 {
		font-size: 35px;
		line-height: 42px;
		margin-bottom: 15px;
	}

	.return_div {
		margin-bottom: 30px;
	}

	.content_div_left {
		width: 100%;
	}

	.ipo_sub_div {
		margin-left: 0px;
	}

	.content_div_sec {
		padding: 60px 40px;
	}

	.sign_in_btn {
		margin-bottom: 15px;
	}

	.feature_heading {
		font-size: 49px;
		line-height: 58px;
	}

	.feature_owl.owl-carousel {
		margin-top: 40px;
	}

	.feature_width {
		padding-top: 0px;
		padding-bottom: 55px;
	}

	.feature_owl.owl-carousel .item img {
		width: 188px;
		margin-top: 25px;
	}

	.feature_owl.owl-carousel .owl-dots {
		margin-top: 35px;
	}

	.digix_web_left h2::after {
		display: none;
	}

	.digix_web_left h2 {
		font-size: 49px;
		line-height: 58px;
		/* padding-top: 50px; */
		/* text-align: center; */
	}

	.digix_web_left {
		margin-top: 20px;
	}

	.digix_web_sec {
		/* padding-bottom: 70px; */
		padding-bottom: 0px;
		padding-top: 0px;
	}

	.digix_web_right.owl-carousel .owl-dots {
		margin-top: 35px;
	}

	/* Data transfer */
	.data-transfer .sub-head {
		font-size: 16px;
		line-height: 25px;
	}

	.data-transfer h3 {
		margin-top: 20px;
		font-size: 32px;
		line-height: 38px;
	}

	.benefit-card {
		width: 100%;
		padding: 0px 10px;
	}

	.benefit-card img {
		margin-right: 0;
	}

	.benefit-card h6 {
		font-size: 18px;
	}

	.benefit-card p {
		font-size: 16px;
		line-height: 22px;
	}

	/* Data transfer End */
}