@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");


canvas {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.interactive-element {
	z-index: 10;
}


.add-flex {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
	width: 100%;
}

.add1 {
	border: 2px solid #3f71f3;
	border-radius: 10px;
	padding: 15px;
	position: relative;
	width: 100%;
	min-width: 200px;
	transition: all 0.3s ease;
	background: white;
}

.banner-right .add-flex .add1 h5,
.add-row1 .add-flex .add1 h5 {
	color: #3f71f3 !important;
	font-weight: 500;
}

@media screen and (max-width: 768px) {

	.banner-right .add-flex,
	.add-row1 .add-flex {
		flex-direction: column;
		padding: 0 15px;
	}

	.banner-right .add1,
	.add-row1 .add1 {
		min-width: 100%;
		max-width: 100%;
	}
}

@media screen and (min-width: 1200px) {
	.add1 {
		min-width: 250px;
		max-width: 300px;
	}

	.add-flex {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}
}


.password {
	background-color: #f8f9fa;
	padding: 40px 0;
}

.password .container {
	border: none;
	border-radius: 0;
	padding: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	background: #f8f8f8;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	max-width: 1400px;
}


[data-theme="dark"] .password {
	background-color: #0e0f19;

}

[data-theme="dark"] .password .container {
	background: #181b2d;

	box-shadow: 0 2px 4px rgba(255, 255, 255, 0.05);
}

.password-row {
	margin-top: 20px;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0px;
	padding: 0px;
	background: #0e1016 !important;
	font-family: "Poppins", sans-serif !important;
}

.ring {
	-webkit-animation: ring 5s .8s ease-in-out infinite;
	-webkit-transform-origin: 50% 4px;
	-moz-animation: ring 5s .8s ease-in-out infinite;
	-moz-transform-origin: 50% 4px;
	animation: ring 5s .8s ease-in-out infinite;
	transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
	0% {
		-webkit-transform: rotateZ(0);
	}

	1% {
		-webkit-transform: rotateZ(30deg);
	}

	3% {
		-webkit-transform: rotateZ(-28deg);
	}

	5% {
		-webkit-transform: rotateZ(34deg);
	}

	7% {
		-webkit-transform: rotateZ(-32deg);
	}

	9% {
		-webkit-transform: rotateZ(30deg);
	}

	11% {
		-webkit-transform: rotateZ(-28deg);
	}

	13% {
		-webkit-transform: rotateZ(26deg);
	}

	15% {
		-webkit-transform: rotateZ(-24deg);
	}

	17% {
		-webkit-transform: rotateZ(22deg);
	}

	19% {
		-webkit-transform: rotateZ(-20deg);
	}

	21% {
		-webkit-transform: rotateZ(18deg);
	}

	23% {
		-webkit-transform: rotateZ(-16deg);
	}

	25% {
		-webkit-transform: rotateZ(14deg);
	}

	27% {
		-webkit-transform: rotateZ(-12deg);
	}

	29% {
		-webkit-transform: rotateZ(10deg);
	}

	31% {
		-webkit-transform: rotateZ(-8deg);
	}

	33% {
		-webkit-transform: rotateZ(6deg);
	}

	35% {
		-webkit-transform: rotateZ(-4deg);
	}

	37% {
		-webkit-transform: rotateZ(2deg);
	}

	39% {
		-webkit-transform: rotateZ(-1deg);
	}

	41% {
		-webkit-transform: rotateZ(1deg);
	}

	43% {
		-webkit-transform: rotateZ(0);
	}

	100% {
		-webkit-transform: rotateZ(0);
	}
}

@-moz-keyframes ring {
	0% {
		-moz-transform: rotate(0);
	}

	1% {
		-moz-transform: rotate(30deg);
	}

	3% {
		-moz-transform: rotate(-28deg);
	}

	5% {
		-moz-transform: rotate(34deg);
	}

	7% {
		-moz-transform: rotate(-32deg);
	}

	9% {
		-moz-transform: rotate(30deg);
	}

	11% {
		-moz-transform: rotate(-28deg);
	}

	13% {
		-moz-transform: rotate(26deg);
	}

	15% {
		-moz-transform: rotate(-24deg);
	}

	17% {
		-moz-transform: rotate(22deg);
	}

	19% {
		-moz-transform: rotate(-20deg);
	}

	21% {
		-moz-transform: rotate(18deg);
	}

	23% {
		-moz-transform: rotate(-16deg);
	}

	25% {
		-moz-transform: rotate(14deg);
	}

	27% {
		-moz-transform: rotate(-12deg);
	}

	29% {
		-moz-transform: rotate(10deg);
	}

	31% {
		-moz-transform: rotate(-8deg);
	}

	33% {
		-moz-transform: rotate(6deg);
	}

	35% {
		-moz-transform: rotate(-4deg);
	}

	37% {
		-moz-transform: rotate(2deg);
	}

	39% {
		-moz-transform: rotate(-1deg);
	}

	41% {
		-moz-transform: rotate(1deg);
	}

	43% {
		-moz-transform: rotate(0);
	}

	100% {
		-moz-transform: rotate(0);
	}
}

@keyframes ring {
	0% {
		transform: rotate(0);
	}

	1% {
		transform: rotate(30deg);
	}

	3% {
		transform: rotate(-28deg);
	}

	5% {
		transform: rotate(34deg);
	}

	7% {
		transform: rotate(-32deg);
	}

	9% {
		transform: rotate(30deg);
	}

	11% {
		transform: rotate(-28deg);
	}

	13% {
		transform: rotate(26deg);
	}

	15% {
		transform: rotate(-24deg);
	}

	17% {
		transform: rotate(22deg);
	}

	19% {
		transform: rotate(-20deg);
	}

	21% {
		transform: rotate(18deg);
	}

	23% {
		transform: rotate(-16deg);
	}

	25% {
		transform: rotate(14deg);
	}

	27% {
		transform: rotate(-12deg);
	}

	29% {
		transform: rotate(10deg);
	}

	31% {
		transform: rotate(-8deg);
	}

	33% {
		transform: rotate(6deg);
	}

	35% {
		transform: rotate(-4deg);
	}

	37% {
		transform: rotate(2deg);
	}

	39% {
		transform: rotate(-1deg);
	}

	41% {
		transform: rotate(1deg);
	}

	43% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(0);
	}
}

div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
a,
ul,
li {
	margin: 0px;
	padding: 0px;
}

.banner-row p2 {
	border-bottom: 1px solid #fff;
	padding-bottom: 2px;
	margin: 15px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-family: "Poppins", sans-serif;
	font-weight: normal;
	font-size: 18px;
	color: #fff;
	line-height: 35px;
}

.navbar-dark .navbar-nav .nav-link {
	font-size: 20px;
	color: #fff;
}


li>a:after {
	content: '';
	display: block;
	height: 1.5px;
	background: #Fff;
	transform: scaleX(0);
	transition: transform .3s;
}

li>a:hover:after {
	transform: scaleX(1);
	transition: transform .3s;
}

a {
	text-decoration: none !important;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-ms-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

a:hover {
	text-decoration: underline;
	font-weight: bold;
}

ul {
	list-style-type: none;
}

.clear {
	clear: both;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
	display: block;
	max-width: 100%;
	height: auto;
}

.grid {
	margin: 0px auto;
	width: 1645px;
	padding: 0px 15px;
}


.banner {
	margin: 0px 0px 0px 0px;
	padding: 50px 0px 120px 0px;
	background: linear-gradient(-220deg, #3c5fec, #4284fb);
	overflow: hidden;
	width: 100%;
	border-bottom: 2px solid whitesmoke;
}


.menu {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.menu-row {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

a.logo {
	margin: 0px 0px 0px 30px;
	padding: 0px 0px 0px 0px;
	font-size: 24px;
	color: #ffffff;
	font-weight: bold;
	font-family: "Helvetica Neue";
}

a.logo:hover {
	color: #ffffff;
	border-bottom: 2px solid #fff;

}

.menu-row ul {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.menu-row ul li {
	margin: 0px 60px 0px 0px;
	padding: 0px 0px 0px 0px;
	float: left;
}

.menu-row ul li a {
	margin: 0px 0px 0px 0px;
	padding: 0px 10px 15px 10px;
	font-weight: normal;
	font-size: 20px;
	color: #ffffff;
	border-bottom: 2px solid transparent;
}

.menu-row ul li a:hover {
	border-bottom: 2px solid #fff;
}

.menu-row ul li.last {
	margin: 0px 0px 0px 0px;
}

.menu-row ul li.last a:hover {
	border-bottom: 2px solid transparent;
}

i.bx {
	font-size: 26px;
}


.banner-row {
	position: relative;
	margin: 0px 0px 0px 0px;
	padding: 40px 0px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.banner-left {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	width: 700px;
}

.banner-text {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.banner-text h1 {
	margin: 0px 0px 15px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: bold;
	font-size: 48px;
	color: #ffffff;
}

.banner-text p {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #ffffff;
	line-height: 36px;
}

.mail-box {
	margin: 30px 0px 10px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
}

input.name {
	margin: 0px 0px 0px 0px;
	padding: 0px 15px 0px 20px;
	font-weight: normal;
	font-size: 20px;
	color: #3a4b5e;
	line-height: 60px;
	border-radius: 3px;
	width: calc(100% - 120px);
}

input.check-btn {
	margin: 0px 0px 0px 18px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #fff;
	text-align: center;
	line-height: 60px;
	border: 2px solid #ccc;
	border-radius: 3px;
	background: #28a745;
	width: 120px;
	display: block;
}

input.check-btn:hover {
	color: #fff;
	background: #218828;
}

img.play-icon {
	margin: 0px 0px 0px 0px;
}

img.bnr-right {
	margin: 0px 0px 0px 0px;
}

.banner-right {
	margin: 0px 0px 0px 30px;
	padding: 80px 0px 0px 0px;
	width: 700px;
}

.banner-row::after {
	content: "";
	width: 1px;
	height: 70%;
	background-color: white;
	position: absolute;
}

@media screen and (max-width: 768px) {
	.banner-row::after {
		display: none;
	}
}

.password {
	margin: 0px 0px 0px 0px;
	padding: 50px 0px 50px 0px;
	background: #fff;
	overflow: hidden;
	width: 100%;
}

.password-row {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.password-left {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	width: 810px;
}

.password-text {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.password-text h2 {
	margin: 0px 0px 40px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: bold;
	font-size: 36px;
	color: #3a4b5e;
}

.password-text p {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #3a4b5e;
	line-height: 32px;
}

.password-text p.last {
	margin: 25px 0px 0px 0px;
}

a.view {
	margin: 20px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: 500;
	font-size: 20px;
	color: #417ff9;
	display: block;
}

.password-right {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

img.pass {
	margin: 0px 0px 0px 0px;
	padding-left: 80px;
}

.video-container {
	position: relative;
	display: inline-block;
	margin: 0px 0px 0px 0px;
	padding-left: 80px;
}


.guid {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 100px 0px;
	background: #fff;
	overflow: hidden;
	width: 100%;
}

.guid h2 {
	margin: 0px 0px 45px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: bold;
	font-size: 36px;
	color: #3a4b5e;
	text-align: center;
}

.guid-row {
	margin: 0px 0px 0px 0px;
	padding: 30px;
	border-radius: 20px;
	border: 1px solid #707070;
}

img.code {
	margin: 0px auto 0px auto;
	display: block;
}

ul.list-group {
	margin: 0px 0px 0px 0px;
	padding: 10px;
	flex-direction: inherit;
	background: #ebedef;
	border-radius: 40px;
	width: max-content;
}

ul.list-group li {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	float: left;
}

ul.list-group li a {
	margin: 0px 0px 0px 0px;
	padding: 0px 30px 0px 30px;
	font-size: 16px;
	color: #929ca6;
	font-weight: 500;
	text-align: center;
	display: block;
	width: 100%;
	line-height: 42px;
	border-radius: 40px !important;
	background: transparent;
	border: none;
}

ul.list-group li a:hover {
	color: #fff;
	background: #3a4b5e !important;
}

.list-group-item.active {
	z-index: 2;
	color: #fff;
	background: #3a4b5e !important;
	border: none;
}

ul.list-group li.last {
	margin: 0px 0px 0px 10px;
}

.tab-content {
	margin: 25px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.tab-content p {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 20px;
	line-height: 28px;
	color: #616f7e;
	font-weight: normal;
}

.footer {
	margin: 0px 0px 0px 0px;
	padding: 20px 0px 20px 0px;
	background: #fff;
	overflow: hidden;
	width: 100%;
	border-top: 1px solid #ebedef;
}

.footer-row {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-row p {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: 500;
	font-size: 13px;
	color: #3a4b5e;
}

.footer-row ul {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.footer-row ul li {
	margin: 0px 10px 0px 0px;
	padding: 0px 0px 0px 0px;
	float: left;
}

.footer-row ul li a {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	display: block;
	background: #d8dbdf;
	width: 40px;
	line-height: 40px;
	border-radius: 3px;
}

.footer-row ul li a:hover {
	color: #fff;
	background: #d8dbdf;
}

.footer-row ul li.last {
	margin: 0px 0px 0px 0px;
}


img.bnr-right2 {
	display: none;
}

img.pass2 {
	display: none;
}

.mo-menu {
	display: none;
}

@media (max-width: 1700px) and (min-device-width: 280px) {
	.grid {
		width: 100%;
		padding: 0px 15px;
	}
}

@media (max-width: 1199px) and (min-device-width: 992px) {
	.banner-text {
		margin: 110px 0px 0px 0px;
	}

	.banner-text h1 {
		font-size: 26px;
	}


	.footer-row {
		display: block;
	}

	.footer-row p {
		text-align: center;
	}

	.footer-row ul {
		margin: 20px auto 0px auto;
		width: max-content;
	}
}

@media (max-width: 991px) and (min-device-width: 768px) {

	.menu-row ul li {
		margin: 0px 30px 0px 0px;
	}


	.banner-row {
		display: block;
	}

	.banner-left {
		display: block;
		width: 100%;
	}

	.banner-text {
		margin: 110px 0px 0px 0px;
		text-align: center;
	}

	.banner-text h1 {
		font-size: 43px;
	}

	img.bnr-right2 {
		display: block;
		margin: 0px auto;
	}

	img.bnr-right {
		display: none;
	}

	.banner-right {
		display: none;
	}


	img.pass2 {
		margin: 0px 0px 40px 0px;
		display: block;
	}

	img.pass {
		display: none;
	}

	.password-row {
		flex-direction: column;
	}

	.password-left {
		width: 100%;
		order: 2;
	}

	.password-right {
		width: 100%;
		order: 1;
		margin-bottom: 30px;
	}

	.password-right video.pass {
		display: block;
		max-width: 100%;
		height: auto !important;
		padding-left: 0;
		margin: 0 auto;
	}

	.password-right .video-container {
		padding-left: 0;
		width: 100%;
		display: block;
	}

	.password-text {
		text-align: center;
	}

	.password {
		padding: 75px 0px 70px 0px;
	}


	.footer-row {
		display: block;
	}

	.footer-row p {
		text-align: center;
	}

	.footer-row ul {
		margin: 20px auto 0px auto;
		width: max-content;
	}
}

@media (max-width: 767px) and (min-device-width: 280px) {

	.menu-row ul li {
		margin: 0px 30px 0px 0px;
	}

	.banner {
		padding: 20px 0px 60px 0px;
	}

	.banner-row {
		display: block;
	}

	.banner-left {
		display: block;
		width: 100%;
	}

	.banner-text {
		margin: 110px 0px 0px 0px;
		text-align: center;
	}

	.banner-text h1 {
		font-size: 27px;
	}

	.banner-text p {
		font-size: 15px;
		line-height: 26px;
	}

	img.bnr-right2 {
		display: block;
		margin: 0px auto;
	}

	img.bnr-right {
		display: none;
	}

	.banner-right {
		display: none;
	}

	input.name {
		padding: 0px 15px 0px 15px;
		font-size: 14px;
		width: 70%;
	}

	input.check-btn {
		width: 100px;
		font-size: 14px;
	}


	.password-text h2 {
		margin: 0px 0px 20px 0px;
		font-size: 27px;
	}

	.password-text p {
		font-size: 15px;
		line-height: 22px;
	}

	.password-text p.last {
		margin: 15px 0px 0px 0px;
	}

	.guid h2 {
		margin: 0px 0px 35px 0px;
		font-size: 30px;
	}

	img.pass2 {
		margin: 0px 0px 40px 0px;
		display: block;
	}

	img.pass {
		display: none;
	}

	.password-row {
		flex-direction: column;
	}

	.password-left {
		width: 100%;
		order: 2;
	}

	.password-right {
		width: 100%;
		order: 1;
		margin-bottom: 30px;
	}

	.password-right video.pass {
		display: block;
		max-width: 100%;
		height: auto !important;
		padding-left: 0;
		margin: 0 auto;
	}

	.password-right .video-container {
		padding-left: 0;
		width: 100%;
		display: block;
	}

	.password-text {
		text-align: center;
	}

	.password {
		padding: 55px 0px 40px 0px;
	}


	.footer-row {
		display: block;
	}

	.footer-row p {
		text-align: center;
	}

	.footer-row ul {
		margin: 20px auto 0px auto;
		width: max-content;
	}
}

@media (max-width: 767px) and (min-device-width: 280px) {
	.mo-menu {
		display: block;
	}

	.menu {
		display: none;
	}


	.mo-menu {
		display: block;
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
	}

	.mo-menu .main {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 0;
	}


	.mo-menu .main .logo-block {
		width: 20%;
	}

	.mo-menu .main .logo-block a img {
		width: 100%;
	}


	.mnu {
		margin: 0;
		padding: 0px 0px 0px 0px;
		width: 50px;
		float: right;
	}

	.offcanvas-end {
		width: 250px;
	}

	.offcanvas-header {
		background: var(--accent-color);
	}

	.offcanvas-body {
		background: var(--accent-color);
	}

	button#first {
		margin: 0px 0px 0px 0px;
		padding: 8px 0px 8px 0px;
		background: #fff;
		width: 100%;
	}

	.btn-check:focus+.btn,
	.btn:focus {
		outline: 0;
		box-shadow: none !important;
	}

	.offcanvas-header .btn-close {
		background-color: #fff;
		opacity: 1;
		width: 25px;
		height: 25px;
	}


	span.mid {
		margin: 5px auto 5px auto !important;
	}

	#main {
		transition: margin-left 0.5s;
	}

	.texts {
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
	}

	ul.menus {
		display: block;
		margin: 20px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
	}

	ul.menus li {
		margin: 0px 0px 20px 0px;
		padding: 0px 0px 0px 0px;
	}

	ul.menus li.last {
		margin: 0px 0px 0px 0px;
	}

	ul.menus li a {
		font-size: 18px;
		font-weight: 400;
		color: var(--white-color);
		display: block;
		border-bottom: 2px solid transparent;
	}

	ul.menus li a.active {
		color: #fac809;
		border-bottom: 2px solid #fac809;
	}

	ul.menus li a:hover {
		color: #fac809;
		border-bottom: 2px solid #fac809;
	}

	ul.menus li.last {
		margin: 0px 0px 0px 0px;
	}

	.offcanvas-body .btn {
		width: 80%;
		line-height: 45px;
		font-size: 16px;
		color: var(--white-color);
		font-weight: 600;
		background-color: var(--accent-color);
		border-radius: 5px;
		display: block;
	}

	.offcanvas-body .btn:hover {
		background-color: #ffd61f;
	}

	.offcanvas {
		position: absolute !important;
		bottom: inherit !important;
		z-index: var(--bs-offcanvas-zindex);
		display: flex;
		flex-direction: column;
		max-width: 230px !important;
		color: var(--bs-offcanvas-color);
		visibility: hidden;
		background-color: var(--bs-offcanvas-bg);
		background-clip: padding-box;
		outline: 0;
		transition: transform 0.3s ease-in-out;
		height: 290px;
		top: 68px !important;
		right: 31px !important;
		border-radius: 15px;
	}

	.dropdown-toggle::after {
		display: inline-block;
		margin-left: .255em;
		vertical-align: .255em;
		content: "";
		border-top: .3em solid;
		border-right: .3em solid transparent;
		border-bottom: 0;
		border-left: .3em solid transparent;
		border-bottom: 1px solid white;
		padding-bottom: 3px;
	}

	.dropdown-toggle:focus {
		outline: none !important;
		box-shadow: none !important;
		border-bottom: 1px solid white;
		padding-bottom: 3px;
	}

	ul.dropdown-menu {
		inset: 6px 0px auto auto !important;
	}

	.dropdown-item {
		border-bottom: 1px solid white;
		padding-bottom: 3px;
	}

	.dropdown-item:hover {
		color: #fac809 !important;
		border-bottom: 2px solid #fac809 !important;
		border-bottom: 1px solid white;
		padding-bottom: 3px;
	}

	ul.dropdown-menu li.last .dropdown-item:hover {
		border-bottom: 1px solid white;
		padding-bottom: 3px;
	}
}


.banner-text p.last {
	margin: 15px 0px 0px 0px;
}


.follow {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background: #fff;
	overflow: hidden;
	width: 100%;
}

.follow-row {
	margin: 0px 0px 0px 0px;
	padding: 40px;
	background: #f8f8f8;
	overflow: hidden;
	border-radius: 15px;
}

.follow-flex {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	column-count: 4;
	column-gap: 18px;
}

.follow1 {
	margin: 0px 0px 0px 0px;
	padding: 35px 25px;
	width: 100%;
	border: none;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	position: relative;
	overflow: hidden;
}

.follow1::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3f71f3, #5b8aff);
	opacity: 0;
	transition: opacity 300ms ease;
}

.follow1:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

.follow1:hover::before {
	opacity: 1;
}

/* Stat Icons */
.stat-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	transition: transform 300ms ease;
}

.follow1:hover .stat-icon {
	transform: scale(1.1);
}

/* Color-coded stat cards */
.stat-breaches .stat-icon {
	background: linear-gradient(135deg, #ff6b6b, #ff8787);
	color: #fff;
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.stat-records .stat-icon {
	background: linear-gradient(135deg, #3f71f3, #5b8aff);
	color: #fff;
	box-shadow: 0 4px 12px rgba(63, 113, 243, 0.3);
}

.stat-emails .stat-icon {
	background: linear-gradient(135deg, #a855f7, #c084fc);
	color: #fff;
	box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.stat-passwords .stat-icon {
	background: linear-gradient(135deg, #10b981, #34d399);
	color: #fff;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Stat number styling */
.follow1 h4 {
	font-weight: 700;
	color: #2c3e50;
	margin: 10px 0;
}

.follow1 h6 {
	color: #64748b;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.85em;
}


.follow-row p {
	margin: 25px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #3a4b5e;
	text-align: center;
}

.follow-row p a {
	color: #3f71f3;
}


.add {
	margin: 0px 0px 0px 0px;
	padding: 20px 0px 120px 0px;
	background: #fff;
	overflow: hidden;
	width: 100%;
}

.add h2 {
	margin: 0px 0px 40px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 40px;
	color: #3a4b5e;
	font-weight: 500;
	text-align: center;
}

.add-row {
	margin: 0px 0px 0px 0px;
	padding: 40px;
	background: whitesmoke;
	border-radius: 15px;
}

.add-row1 {
	margin: 0px 0px 0px 0px;
	padding: 40px;
	background: #f8f8f8;
	border-radius: 15px;
}

.add-flex {
	margin: 0px 0px 20px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	column-count: 3;
	column-gap: 20px;
}

a.adds {
	width: 100%;
}

.add1 {
	margin: 0px 0px 0px 0px;
	padding: 22px 18px 22px 18px;
	width: 100%;
	border: 1px solid #707070;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-ms-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
	position: relative;
}

.add1:hover {
	box-shadow: 0px 0px 15px 0px rgba(17, 17, 239, 0.25);
	border: 1px solid transparent;
}

.add1 .tooltip-text {
	visibility: hidden;
	width: 240px;
	background-color: #005ce6;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 8px;

	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;

	opacity: 0;
	transition: opacity 0.3s;
}

/* Tooltip arrow */
.add1 .tooltip-text::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #ff0 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.add1:hover .tooltip-text {
	visibility: visible;
	opacity: 1;
}

[data-theme="dark"] .add1:hover {
	box-shadow: 0px 0px 15px 0px rgba(248, 248, 251, 0.25);
	border: 1px solid transparent;
}

[data-theme="dark"] .password {
	margin: 0px 0px 0px 0px;
	padding: 50px 0px 50px 0px;
	background: #181b2d;
	overflow: hidden;
	width: 100%;
}

.add1 h5 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 20px;
	color: #9fc0e0;
	font-weight: 500;
}

img.arrow {
	margin: 0px 0px 0px 0px;
}

.add1:hover img.arrow {
	-webkit-animation: mover 300ms 4 alternate;
	animation: mover 300ms 4 alternate;
}

@-webkit-keyframes mover {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-10px);
	}
}

@keyframes mover {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-10px);
	}
}

.add11 {
	margin: 0px 0px 0px 0px;
	border: none;
}

.add11:hover {
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
	border: 0px solid transparent;
}

.add-flex2 {
	margin: 0px 0px 0px 0px;
}

.add p {
	margin: 20px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #3a4b5e;
	text-align: center;
}

.add p a {
	color: #3f71f3;
}


@media (max-width: 1199px) and (min-device-width: 992px) {
	/******* follow **/

	.follow-flex {
		display: block;
	}

	.follow1 {
		padding: 15px;
	}

	.stat-icon {
		width: 55px;
		height: 55px;
		font-size: 26px;
	}
}

@media (max-width: 991px) and (min-device-width: 768px) {
	/******* follow **/

	.follow-flex {
		display: block;
	}

	.follow1 {
		padding: 20px;
	}

	.stat-icon {
		width: 55px;
		height: 55px;
		font-size: 26px;
	}


	.add1 {
		padding: 16px 10px 16px 10px;
	}

	.add1 h5 {
		font-size: 15px;
	}
}

@media (max-width: 767px) and (min-device-width: 280px) {

	.follow-row {
		padding: 20px;
	}

	.follow-flex {
		display: block;
		column-count: 1;
		column-gap: 0;
	}

	.follow1 {
		margin: 0px 0px 20px 0px;
		padding: 25px 15px;
	}

	.stat-icon {
		width: 50px;
		height: 50px;
		font-size: 24px;
		margin: 0 auto 15px;
	}

	.follow1 h4 {
		margin: 8px 0;
		font-size: 24px;
		text-align: center;
	}

	.follow1 h6 {
		font-size: 0.8em;
	}


	.add {
		padding: 50px 0px 50px 0px;
	}

	.add h2 {
		margin: 0px 0px 20px 0px;
		font-size: 30px;
	}

	.add-row {
		padding: 20px;
	}

	.add-flex {
		margin: 0px 0px 0px 0px;
		display: block;
		column-count: 1;
		column-gap: 0;
	}

	.add1 {
		margin: 0px 0px 20px 0px;
		padding: 16px 10px 16px 10px;
	}

	.add1 h5 {
		font-size: 15px;
	}

	.add p {
		margin: 20px 0px 0px 0px;
		font-size: 14px;
	}

	.add11 {
		display: none;
	}
}


.banner3 {
	margin: 0px 0px 0px 0px;
	padding: 50px 0px 60px 0px;
	background: linear-gradient(-220deg, #3c5fec, #4284fb);
	overflow: hidden;
	width: 100%;
}


.banner-flex {
	margin: 80px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.banner-flex h2 {
	margin: 0px 0px 88px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 48px;
	color: #f8f8f8;
	font-weight: bold;
	text-align: center;
}

.prize-row {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	column-count: 3;
	column-gap: 20px;
}

.prize1 {
	margin: 0px 0px 0px 0px;
	padding: 50px 50px 50px 50px;
	width: 100%;
	background: #ebe6fe;
	border-radius: 20px;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-ms-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

.prize1:hover {
	margin: -40px 0px 0px 0px;
	padding: 90px 50px 50px 50px;
}

.prize1-box {
	margin: 0px auto 25px auto;
	padding: 0px 0px 0px 0px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: #d4c9fd;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-ms-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

.prize1:hover .prize1-box {
	background: #c2a9fc;
}

.prize1-box h4 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 64px;
	color: #844ef9;
	font-weight: bold;
	text-align: center;
	display: flex;
	align-items: center;
	font-style: italic;
}

.prize1-box h4 span {
	font-size: 35px;
	font-weight: 500;
}

.prize1 h5 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 28px;
	color: #3a4b5e;
	font-weight: bold;
	text-align: center;
}

.prize1 p {
	margin: 10px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 20px;
	color: #3a4b5e;
	font-weight: normal;
	text-align: center;
}

img.cup {
	margin: 0px auto;
	display: block;
}


.lists {
	margin: 0px 0px 0px 0px;
	padding: 30px 0px 0px 0px;
	overflow: hidden;
	width: 100%;
}

.lists-row {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.lists1 {
	margin: 0px 0px 20px 0px;
	padding: 25px 30px;
	background: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-ms-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}

@-webkit-keyframes mover {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
	}
}

@keyframes mover {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
	}
}

.lists1-left {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	align-items: center;
}

.lists1-left h4 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 32px;
	color: #844ef9;
	font-weight: bold;
	display: flex;
	align-items: center;
	font-style: italic;
}

.lists1-left h4 span {
	font-size: 20px;
	font-weight: normal;
}

.lists1-left h5 {
	margin: 0px 0px 0px 65px;
	padding: 0px 0px 0px 0px;
	font-size: 24px;
	color: #3a4b5e;
	font-weight: 500;
}

.lists1 p {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 24px;
	color: #89939e;
	font-weight: 500;
}


.achive {
	margin: 0px 0px 0px 0px;
	padding: 80px 0px 145px 0px;
	background: #f8f8f8;
	width: 100%;
	overflow: hidden;
}

.achive h2 {
	margin: 0px 0px 44px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: bold;
	font-size: 36px;
	color: #3a4b5e;
	text-align: center;
}

.achive-row {
	margin: 0px 0px 0px 0px;
	padding: 35px;
	border: 1px solid #707070;
	border-radius: 10px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.achive-row ul {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.achive-row ul.one {
	width: 160px;
}

.achive-row ul.two {
	width: 340px;
}

.achive-row ul.three {
	width: 425px;
}

.achive-row ul.five {
	width: 425px;
}

.achive-row ul li {
	margin: 0px 0px 0px 0px;
	padding: 10px 0px 10px 0px;
	font-size: 22px;
	color: #616f7e;
	font-weight: normal;
	border-bottom: 1px solid #f8f8f8;
}

.achive-row ul li.head {
	padding: 0px 0px 5px 0px;
	font-size: 22px;
	color: #3a4b5e;
	font-weight: bold;
	border-bottom: 0px solid #f8f8f8;
}

.achive-row ul li.last {
	margin: 0px 0px 0px 0px;
}


.achive-row2 {
	display: none;
}

@media (max-width: 1199px) and (min-device-width: 992px) {

	.achive-row ul.one {
		width: 15%;
	}

	.achive-row ul.two {
		width: 35%;
	}

	.achive-row ul.three {
		width: 35%;
	}

	.achive-row ul.five {
		width: 15%;
	}
}

@media (max-width: 991px) and (min-device-width: 768px) {

	.prize-row {
		column-gap: 15px;
	}

	.prize1 {
		padding: 30px 20px 30px 20px;
	}

	.prize1:hover {
		margin: -40px 0px 0px 0px;
		padding: 70px 20px 30px 20px;
	}

	.prize1-box {
		margin: 0px auto 25px auto;
		width: 180px;
		height: 180px;
	}

	.prize1-box h4 {
		font-size: 44px;
	}

	.prize1 h5 {
		font-size: 17px;
	}

	.prize1 p {
		margin: 6px 0px 0px 0px;
		font-size: 15px;
	}

	.achive {
		padding: 50px 0px 75px 0px;
	}

	.achive h2 {
		font-size: 29px;
	}

	.achive-row ul.one {
		width: 7%;
	}

	.achive-row ul.two {
		width: 40%;
	}

	.achive-row ul.three {
		width: 36%;
	}

	.achive-row ul.five {
		width: 15%;
	}
}

@media (max-width: 767px) and (min-device-width: 280px) {

	.banner3 {
		padding: 20px 0px 60px 0px;
	}

	.banner-flex {
		margin: 50px 0px 0px 0px;
	}

	.banner-flex h2 {
		margin: 0px 0px 58px 0px;
		font-size: 38px;
	}


	.prize-row {
		column-gap: 0;
		display: block;
		column-count: 1;
	}

	.prize1 {
		margin: 0px 0px 20px 0px;
		padding: 30px 20px 30px 20px;
	}

	.prize1:hover {
		margin: -10px 0px 20px 0px;
		padding: 50px 20px 30px 20px;
	}

	.prize1-box {
		margin: 0px auto 25px auto;
		width: 180px;
		height: 180px;
	}

	.prize1-box h4 {
		font-size: 44px;
	}

	.prize1 h5 {
		font-size: 17px;
	}

	.prize1 p {
		margin: 6px 0px 0px 0px;
		font-size: 15px;
	}


	.lists1 {
		margin: 0px 0px 20px 0px;
		padding: 15px 15px;
		display: block;
		text-align: center;
	}

	.lists1-left {
		display: block;
	}

	.lists1-left h4 {
		margin: 0px auto;
		display: block;
	}

	.lists1-left h5 {
		margin: 0px 0px 0px 0px;
	}

	.achive {
		padding: 50px 0px 75px 0px;
	}

	.achive h2 {
		font-size: 22px;
		margin: 0px 0px 34px 0px;
	}

	.achive-row {
		padding: 0px;
		display: none;
	}

	.achive-row2 {
		display: block;
		overflow: hidden;
	}

	.achive-row ul.one {
		width: 100%;
		text-align: center;
	}

	.achive-row ul.onee {
		background: #f4f4f4;
	}

	.achive-row ul li.head {
		padding: 10px 0px 10px 0px;
		border-bottom: 1px solid #f8f8f8;
	}

	.achive-row ul li.last {
		border: none;
	}

	.banner-row p2 {
		border-bottom: 1px solid #fff;
		padding-bottom: 2px;
		margin: 15px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
		font-family: "Poppins", sans-serif;
		font-weight: normal;
		font-size: 18px;
		color: #fff;
		line-height: 35px;
	}

	.banner-row .banner-left .banner-text p2 {
		border-bottom: 1px solid #fff;
		padding-bottom: 2px;
		margin: 15px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
		font-family: "Poppins", sans-serif;
		font-weight: normal;
		font-size: 18px;
		color: #fff;
		line-height: 35px;
	}

	.banner-row p2 a {
		font-weight: bold;
	}
}

[data-theme="dark"] {
	background-color: #0e0f19 !important;
	color: #9fc0e0;
}

[data-theme="dark"] .password-text h2 {
	margin: 0px 0px 40px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: bold;
	font-size: 36px;
	color: #9fc0e0;
}

[data-theme="dark"] .guid {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 100px 0px;
	background: #0e0f19;
	overflow: hidden;
	width: 100%;
	color: #9fc0e0;
}

[data-theme="dark"] .guid h2 {
	margin: 0px 0px 45px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: bold;
	font-size: 36px;
	color: #9fc0e0;
	text-align: center;
}

[data-theme="dark"] .bg-light {
	background-color: #333 !important;
}

[data-theme="dark"] .navbar-toggler-icon {
	color: #fff;
}


[data-theme="dark"] .bg-white {
	background-color: #000 !important;
}

[data-theme="dark"] .bg-black {
	background-color: #eee !important;
}

[data-theme="dark"] .xon {
	background-color: #0e0f19;
}

[data-theme="dark"] .searchMe {
	background-color: #0e0f19;
}

[data-theme="dark"] .add-row {
	background-color: #181b2d;
	color: #9fc0e0;
}

[data-theme="dark"] .add-row1 {
	background-color: #181b2d;
	color: #9fc0e0;
}

[data-theme="dark"] .add1 {
	background-color: #181b2d;
	color: #9fc0e0;
	border-color: #707070;
}

[data-theme="dark"] .add1:hover {
	box-shadow: 0px 0px 15px 0px rgba(248, 248, 251, 0.25);
	border: 1px solid transparent;
}

[data-theme="dark"] .add1 h5 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 20px;
	color: #9fc0e0;
	font-weight: 500;
}

[data-theme="dark"] .password-text p {
	margin: 0px 0px 0px 0px;
	padding: 50px 0px 50px 0px;
	color: #9fc0e0;
	overflow: hidden;
	width: 100%;
	background-color: #181b2d;
	align: justify-content
}


[data-theme="dark"] .add {
	color: #fff;

	background-color: #0e0f19;
}

[data-theme="dark"] .follow {
	color: #9fc0e0;

	background-color: #0e0f19;
}

[data-theme="dark"] .follow-row {
	color: #9fc0e0;
	overflow: hidden;

	background-color: #181b2d;
}

[data-theme="dark"] .follow1 {
	color: #9fc0e0;
	background-color: #1a1f3a;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .follow1:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .follow1 h4 {
	color: #ffffff;
}

[data-theme="dark"] .follow1 h6 {
	color: #9fc0e0;
}

[data-theme="dark"] .footer {
	color: #9fc0e0;

	background-color: #0e0f19;
}

[data-theme="dark"] .password-row {
	color: #9fc0e0;
	background-color: #181b2d;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

[data-theme="dark"] .guid-row {
	margin: 0px 0px 0px 0px;
	padding: 30px;
	border-radius: 20px;
	border: 1px solid #707070;
	color: #9fc0e0;
	background-color: #181b2d;
}

[data-theme="dark"] .guid-row pre {
	margin: 0px 0px 0px 0px;
	padding: 30px;
	border-radius: 20px;
	color: #9fc0e0;
	background-color: #181b2d;
}

[data-theme="dark"] .password {
	color: #9fc0e0;
	background-color: #181b2d;
	margin: 0px 0px 40px 0px;
	padding: 0px 0px 0px 0px;
	overflow: hidden;
	width: 100%;
}

[data-theme="dark"] .about2 {
	background-color: #181b2d;
	color: #9fc0e0;
}

[data-theme="dark"] .about2 p {
	color: #9fc0e0;
}

[data-theme="dark"] .panel-body {
	color: #9fc0e0;
	background-color: #0e0f19;
}

[data-theme="dark"] td {
	color: #9fc0e0;
	background-color: #0e0f19;
}

[data-theme="dark"] th {
	color: #9fc0e0;
	background-color: #0e0f19;
}

[data-theme="dark"] .about2 ul li a {
	color: #9fc0e0;
}

[data-theme="dark"] .about1 {
	background-color: #181b2d;
	color: #9fc0e0;
}

[data-theme="dark"] .about1 pre {
	color: #9fc0e0;
}

[data-theme="dark"] .banner-text h1 {
	margin: 0px 0px 15px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: bold;
	//	font-size: 48px;
	color: #9fc0e0;
}

[data-theme="dark"] .banner-text p {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #9fc0e0;
	line-height: 36px;
}

[data-theme="dark"] .follow-row p {
	margin: 25px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #9fc0e0;
	text-align: center;
}

[data-theme="dark"] .add p {
	margin: 25px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 20px;
	color: #9fc0e0;
	text-align: center;
}

[data-theme="dark"] .footer-row p {
	margin: 25px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 12px;
	color: #9fc0e0;
	text-align: center;
}

.modal-header-success {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #5cb85c;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.modal-header-warning {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #f0ad4e;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.modal-header-danger {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #d9534f;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.modal-header-info {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #5bc0de;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.modal-header-primary {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #428bca;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.modal-dialog {
	max-width: 800px !important;
	margin: 30px auto;
}

.modal-body {
	position: relative;
	padding: 0px;
}


[data-theme="dark"] .about1 p {
	color: #9fc0e0;
}

[data-theme="dark"] .about1 ul li a {
	color: #9fc0e0;
}

[data-theme="dark"] .main-footer {
	background-color: #0e0f19;
}

[data-theme="dark"] .banner {
	background-color: #181b2d;
	background: #181b2d;
}

@media only screen and (max-width: 1600px) {
	#chart {
		width: 100% !important;
		height: auto !important;
	}
}

@media only screen and (max-width: 991px) {
	#chart {
		width: 100% !important;
		height: auto !important;
	}

	div.tooltip {
		width: 250px !important;
		left: 40% !important;
		padding: 10px !important;
	}
}

@media only screen and (max-width: 767px) {

	div.tooltip {
		left: 25% !important;
	}

}

.arrow {
	border-width: 0 6px 6px 0;
	display: inline-block;
	padding: 6px;
	font-family: "Poppins", sans-serif;
	font-weight: normal;
	font-size: 12px;
}

.down {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

#edhu:focus,
#recipient-name:focus {
	outline: none;
}

[data-theme="dark"] .banner-right .add-flex .add1 h5,
[data-theme="dark"] .add-row1 .add-flex .add1 h5 {
	color: #9fc0e0 !important;
}

.footer-link {
	font-size: 16px;

}

@media screen and (max-width: 768px) {
	.footer-link {
		font-size: 14px;

		margin: 0 5px;

	}
}

@media screen and (max-width: 480px) {
	.footer-link {
		font-size: 12px;

	}
}

.modern-search-container {
	display: flex;
	max-width: 800px;
	width: 90%;
	margin: 0 auto;
	background: #fff;
	border-radius: 50px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.modern-search-input {
	flex: 1;
	border: none;
	padding: 18px 30px;
	font-size: 16px;
	border-radius: 50px 0 0 50px;
	outline: none;
	background: transparent;
	font-family: 'Poppins', sans-serif;
}

.modern-search-button {
	border: none;
	background: linear-gradient(135deg, #3f71f3, #5b8aff);
	color: #fff;
	padding: 18px 35px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 0 50px 50px 0;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Poppins', sans-serif;
	min-width: 140px;
	box-shadow: 0 4px 12px rgba(63, 113, 243, 0.25);
	margin-left: 2px;
}

.modern-search-button:hover {
	background: linear-gradient(135deg, #2d5cd4, #3f71f3);
	box-shadow: 0 6px 20px rgba(63, 113, 243, 0.4);
	transform: translateX(2px);
}

.modern-search-button:active {
	transform: translateX(2px) scale(0.98);
}


[data-theme="dark"] .modern-search-container {
	background: #2a2a2a;
}

[data-theme="dark"] .modern-search-input {
	background-color: #181b2d;
	color: #9fc0e0;
	border: 1px solid #3f71f3;
}

[data-theme="dark"] .modern-search-input::placeholder {
	color: #6daae0;
	opacity: 0.7;
}

[data-theme="dark"] .modern-search-button {
	background: linear-gradient(135deg, #4284fb, #6a9fff);
	box-shadow: 0 4px 12px rgba(66, 132, 251, 0.3);
}

[data-theme="dark"] .modern-search-button:hover {
	background: linear-gradient(135deg, #5b8aff, #4284fb);
	box-shadow: 0 6px 20px rgba(66, 132, 251, 0.5);
}

[data-theme="dark"] .modern-search-input:focus {
	background-color: #1e2235;
	border-color: #4284fb;
	outline: none;
	box-shadow: 0 0 0 2px rgba(66, 132, 251, 0.3);
}


@media (max-width: 767px) {
	.modern-search-container {
		flex-direction: column;
		background: transparent;
		box-shadow: none;
		margin: 0 auto;
	}

	.modern-search-input {
		width: 100%;
		border-radius: 50px;
		background: #fff;
		margin-bottom: 10px;
		box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
		text-align: center;
	}

	.modern-search-button {
		width: 100%;
		border-radius: 50px;
		box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	}

	.banner-text a {
		margin-top: 20px;
	}
}


.banner-text a {
	display: block;
	text-align: center;
	margin-top: 15px;
}

.banner-text p2 {
	display: inline-block;
	border-bottom: 1px solid #fff;
	padding-bottom: 2px;
	color: #fff;
	transition: all 0.3s ease;
}

.banner-text p2:hover {
	opacity: 0.9;
}


[data-theme="dark"] .modal-content {
	background-color: #181b2d;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .modal-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background-color: #1e2235;
}

[data-theme="dark"] .modal-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background-color: #1e2235;
}

[data-theme="dark"] .modal-title {
	color: #9fc0e0;
}

[data-theme="dark"] .form-control-label {
	color: #9fc0e0;
}

[data-theme="dark"] .form-control {
	background-color: #242842;
	border: 1px solid #3f71f3;
	color: #9fc0e0;
}

[data-theme="dark"] .form-control:disabled {
	background-color: #1e2235;
	color: #6daae0;
	border: 1px solid rgba(63, 113, 243, 0.5);
}

[data-theme="dark"] .form-control:focus {
	background-color: #2a2f4a;
	border-color: #4284fb;
	box-shadow: 0 0 0 2px rgba(66, 132, 251, 0.3);
	color: #9fc0e0;
}


[data-theme="dark"] .modal-footer .btn-primary {
	background-color: #3f71f3;
	border-color: #3f71f3;
	color: #fff;
}

[data-theme="dark"] .modal-footer .btn-primary:hover {
	background-color: #4284fb;
	border-color: #4284fb;
	box-shadow: 0 0 10px rgba(66, 132, 251, 0.3);
}

[data-theme="dark"] .modal-footer .btn-success {
	background-color: #2ecc71;
	border-color: #2ecc71;
	color: #fff;
}

[data-theme="dark"] .modal-footer .btn-success:hover {
	background-color: #27ae60;
	border-color: #27ae60;
	box-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
}


[data-theme="dark"] .modal .close {
	color: #9fc0e0;
	text-shadow: none;
	opacity: 0.8;
}

[data-theme="dark"] .modal .close:hover {
	color: #fff;
	opacity: 1;
}


.modal.fade .modal-dialog {
	transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
	transform: none;
}

/* Footer Styles */
.footer-columns {
	display: flex;
	justify-content: space-between;
	margin: 0 0 30px 0;
	gap: 60px;
	text-align: left;
	padding: 0 40px;
}

.footer-group {
	flex: 1;
	min-width: 0;
}

.footer-group h6 {
	color: #2c3e50 !important;
	font-size: 0.95em !important;
	margin-bottom: 15px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	opacity: 1 !important;
}

.footer-group a.footer-link {
	display: block;
	margin-bottom: 8px;
	padding: 6px 10px;
	border-radius: 4px;
	transition: all 0.3s ease;
	opacity: 0.8;
}

.footer-group a.footer-link:hover {
	opacity: 1;
	background-color: rgba(63, 113, 243, 0.15);
	padding-left: 14px;
	color: #3f71f3 !important;
}

@media (max-width: 768px) {
	.footer-columns {
		flex-direction: column;
		text-align: center;
		gap: 30px;
		padding: 0 20px;
	}

	.footer-group a.footer-link:hover {
		padding-left: 10px;
		background-color: rgba(63, 113, 243, 0.15);
	}
}

/* Dark mode support for footer */
[data-theme="dark"] .footer-group h6 {
	color: #ffffff !important;
}

[data-theme="dark"] .footer-group a.footer-link:hover {
	background-color: rgba(63, 113, 243, 0.2);
}