/* ================= CSS Default ================= */
@font-face {
	font-family: "GoogleSans";
	src: url("../fonts/GoogleSans.ttf") format("truetype");
}

@font-face {
	font-family: "GoogleSans_B";
	src: url("../fonts/GoogleSans_B.ttf") format("truetype");
}

@font-face {
	font-family: "DINNextLTPro";
	src: url("../fonts/DINNextLTPro.ttf") format("truetype");
}

@font-face {
	font-family: "JockeyOne-Regular";
	src: url("../fonts/JockeyOne-Regular.ttf") format("truetype");
}

:root {
	--dark: #141414;
	--light: #faf9ff;
	--text: #cecece;
	--title: #242424;
	--border: #d0d0d0;
	--shadow: #93cab9;

	--green: #33cc99;
	--white: #ffffff;

	--gradient: linear-gradient(275deg, #14523d 10.08%, #3c9 90.25%);

	--font: "GoogleSans", Roboto, Arial, sans-serif;
	--font_b: "GoogleSans_B", Roboto, Arial, sans-serif;
	--font_m: "DINNextLTPro", Roboto, Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
}
* {
	margin: 0;
	padding: 0;
}
a,
img {
	transition: all 0.3s ease;
}
a:focus {
	outline: none;
}
a,
a:hover,
a:active,
a:link,
a:visited {
	text-decoration: none;
	color: var(--green);
}
.padding0 {
	padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: normal;
	line-height: 1.25;
	font-family: var(--font_b);
	color: var(--white);
	letter-spacing: -0.5px;
}

b,
strong {
	font-family: var(--font_b);
	font-weight: normal;
}

body {
	background: var(--dark);
	font-family: var(--font);
	font-size: 14px;
	color: var(--text);
}

p {
	line-height: 1.85;
	margin-bottom: 0;
}

.space_section {
	padding: 80px 0;
}

.btn-option {
	padding: 8px 24px;
	border-radius: 30px !important;
	font-size: 14px;
	font-family: var(--font_b);
	position: relative;
	display: inline-block;
}

.btn-option img {
	position: relative;
	top: -2px;
	width: 20px;
	height: 20px;
	padding: 3px;
}

.btn-green {
	background: var(--gradient) !important;
	color: var(--white) !important;
}
.animate {
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-name: fadeInUp;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 25%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.a_01 {
	animation-delay: 0.1s;
}
.a_02 {
	animation-delay: 0.2s;
}
.a_03 {
	animation-delay: 0.3s;
}
.a_04 {
	animation-delay: 0.4s;
}
.a_05 {
	animation-delay: 0.5s;
}
.a_06 {
	animation-delay: 0.6s;
}
.a_07 {
	animation-delay: 0.7s;
}
.a_08 {
	animation-delay: 0.8s;
}
.a_09 {
	animation-delay: 0.9s;
}
.a_10 {
	animation-delay: 1s;
}
.a_11 {
	animation-delay: 1.1s;
}
.a_12 {
	animation-delay: 1.2s;
}
.a_35 {
	animation-delay: 6s;
}

/* ================= CSS FULL ================= */
/* ================= HEADER ================= */
#header {
	transition: all 0.3s ease;
	padding: 15px 0;
	position: relative;
	z-index: 4;
}

.sticky {
	width: 100%;
	position: fixed !important;
	top: 0;
	z-index: 4;
	background: var(--dark);
	padding: 10px 0 !important;
	transition: all 0.3s ease;
}

.sticky + main {
	padding-top: 70px;
}

.space_section {
	padding: 80px 0;
}

body.offcanvas-active {
	overflow: hidden;
}

.offcanvas-header {
	display: none;
}

.screen-darken {
	height: 100%;
	width: 0%;
	z-index: 30;
	position: fixed;
	top: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	background-color: rgba(32, 180, 134, 0.4);
	transition: opacity 0.2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
	z-index: 4;
	transition: opacity 0.3s ease, width 0s;
	opacity: 1;
	width: 100%;
	visibility: visible;
}

.btn-close {
	font-size: 24px;
	color: var(--green);
	background: none;
	padding: 0;
	opacity: 1;
}

.btn-close:focus {
	box-shadow: none;
}

#navbar_main {
	padding: 0;
}

#navbar_main h3,
#navbar_main h1 {
	display: inline-block;
	width: fit-content;
}
.navbar-brand img {
	width: 160px;
}

#navbar_main .navbar-nav .nav-item .nav-link {
	font-family: var(--font_b);
	color: var(--white);
	padding: 10px 20px;
	position: relative;
	font-size: 15px;
	line-height: 20px;
	letter-spacing: -0.2px;
}

#navbar_main .active .nav-link,
#navbar_main .nav-item .nav-link:hover {
	background-color: #1d1d1d;
	border-radius: 40px;
	color: var(--green) !important;
}

.sticky .navbar-nav .nav-item .nav-link {
	color: var(--white) !important;
}

#navbar_main .navbar-nav .nav-item {
	margin: 0 5px;
}

#sign .nav-item {
	margin-right: 0 !important;
}

#navbar_main .dropdown-menu {
	background-color: #202020;
	top: 35px;
	z-index: 6;
	min-width: 170px;
}

#navbar_main .dropdown-menu .dropdown-item {
	font-family: var(--font_b);
	padding: 8px 20px;
}

/* ================= MAIN ================= */
.bg-top-focus {
	background: url("../images/background.jpg") no-repeat center center;
	background-size: cover;
	padding: 80px 0 150px;
	text-align: center;
	position: relative;
	z-index: -1;
}

#galaxy-frame {
	opacity: 0;
	transition: opacity 2.5s ease-in-out;
}

#focus-top article h3 {
	font-size: 56px;
	line-height: 64px;
	font-style: normal;
	min-height: 140px;
	color: var(--white);
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 30px;
}

#focus-top article a {
	font-size: 16px;
	text-transform: uppercase;
}

#focus-top article a:hover {
	box-shadow: 0 5px 25px var(--green);
}

.title-section {
	margin-bottom: 40px;
}

.title-section h2,
.title-section h1 {
	margin-bottom: 10px;
	font-weight: 500 !important;
	font-size: 56px;
	line-height: 64px;
}

#ecosystem {
	margin-top: 300px;
	background: url("../images/N2N-bg002.jpg") no-repeat left 0px,
		url("../images/N2N-bg003.jpg") no-repeat right bottom;
	background-size: 250px, 240px;
}

#scaling_solution {
	background: url("../images/bg-scaling-solution.png") no-repeat center center;
	background-size: 100%;
}
#ecosystem article {
	padding: 20px 30px;
}

#ecosystem article h3 {
	font-family: var(--font);
	font-size: 24px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: 0px;
	margin-top: 28px;
	margin-bottom: 16px;
}

#ecosystem article p {
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: -0.2px;
	color: var(--text);
}

.title-section p {
	font-size: 14px;
	font-family: var(--font);
	line-height: 20px;
	letter-spacing: -0.2px;
	margin-top: 24px;
	color: var(--text);
}

#scaling_solution hgroup {
	max-width: 540px;
}

#decentralized .card {
	margin-bottom: 20px;
	transition: all 0.2s ease;
	min-height: 277px;
	padding: 24px;
	border-radius: 24px;
	border: 1px solid #454545;
	background: linear-gradient(180deg, #202020 0%, rgba(32, 32, 32, 0) 100%);
}

#decentralized .card:hover {
	border: 1px solid var(--green);
	background: var(--Gradient, linear-gradient(0deg, #14523d 0.22%, #3c9 105.94%));
	box-shadow: 0px 6px 18px 0px rgba(51, 204, 153, 0.3);
}

#decentralized .card:hover p,
#decentralized .card:hover h5 {
	color: var(--white);
}

#decentralized .card:hover img {
	filter: grayscale(0);
}

#decentralized .title-section p {
	max-width: 400px;
}
.group-img {
	margin-bottom: 15px;
}

#spec-img {
	width: 850px;
	margin-left: -140px;
	margin-top: -100px;
}

#decentralized .card img {
	width: 70px;
	height: 70px;
}

#decentralized .group-img img {
	width: 50px;
	height: 50px;
	margin-right: 7px;
}

#decentralized .card p {
	color: #747474;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -0.2px;
}

#decentralized .card h3 {
	color: var(--text);
	font-size: 32px;
	font-family: var(--font);
	line-height: 40px;
	margin: 20px 0 8px 0;
}

.nth-card:nth-child(2) {
	margin-top: 200px;
}

.nth-card:nth-child(3) {
	margin-top: -58px;
}

#list-marquee {
	padding: 40px 0;
}

.marquee {
	height: 75px;
	margin: auto;
	position: relative;
	width: 100%;
	overflow: hidden;
}

.marquee::after,
.marquee::before {
	background: linear-gradient(to right, var(--dark) 0, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 100px;
	position: absolute;
	width: 130px;
	z-index: 2;
}

.marquee::after {
	right: 0;
	top: 0;
	-webkit-transform: rotateZ(180deg);
	transform: rotateZ(180deg);
}

.marquee::before {
	left: 0;
	top: 0;
}

.marquee .slide-track {
	-webkit-animation: 35s linear infinite scroll;
	animation: 35s linear infinite scroll;
	display: flex;
	width: calc(270px * 14);
}

.marquee .marquee-item {
	height: 100px;
	width: 270px;
	margin: 0 12px;
	border-radius: 10px;
}

.marquee .marquee-item img {
	border-radius: 10px;
}

@keyframes scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(calc(-230px * 14));
		transform: translateX(calc(-230px * 14));
	}
}

#subscribe {
	background: url("../images/bg-subscribe.jpg?v=1.1") no-repeat;
	background-size: cover;
	padding: 200px 0;
}

.group-a {
	text-align: center;
	background: #1d1d1d;
	width: 800px;
	margin: 0 auto;
	padding: 20px 0;
	border-radius: 50px;
}

.group-a .link-a {
	display: inline;
	color: var(--text);
	font-size: 14px;
	font-family: var(--font_m);
	line-height: 20px;
	letter-spacing: -0.2px;
	border-radius: 30px;
	padding: 14px 24px;
	margin: 0 5px;
	position: relative;
	border-bottom: 0;
}

.group-a .link-a:hover {
	color: var(--title);
	background: var(--white);
}

#only-img {
	margin: 0 auto;
	display: block;
	width: 100%;
}

#roadmap .title-section h2 {
	color: var(--green);
}

.timeline {
	padding-left: 0;
	text-align: center;
	height: 7px;
	background: linear-gradient(to right, rgba(21, 21, 21, 1) 0%, rgba(67, 67, 67, 1) 47%, rgba(21, 21, 21, 1) 100%);
	margin: 120px 0 100px;
}

.timeline li {
	display: inline-block;
	width: calc(100% / 10);
	margin-top: -7px;
	position: relative;
	text-align: left;
}

.timeline .dot {
	width: 20px;
	height: 20px;
	display: inline-block;
	border-radius: 50%;
	background: #3c3c3c;
}

.timeline .done .dot {
	background: #14523d;
}

.timeline .active .dot:after {
	height: 70px;
	width: 2px;
	content: "";
	position: absolute;
	top: -65px;
	display: block;
	background: #3c9;
	left: 9px;
}

.timeline .active .dot {
	background: #3c9;
	box-shadow: 0 0 30px #3c9;
}

.timeline .content {
	position: absolute;
	top: -65px;
	left: 25px;
	text-align: left;
	font-family: var(--font_b);
	font-size: 19px;
}

.timeline .content small {
	display: block;
	font-size: 15px;
	font-family: var(--font);
}

.timeline .active .content {
	color: var(--green);
}

.timeline .active .content small {
	color: #929292;
}

.inactive-content .dot:after {
	height: 70px;
	width: 2px;
	content: "";
	position: absolute;
	bottom: -60px;
	display: block;
	background: #3c3c3c;
	left: 9px;
}

.inactive-content .content {
	top: auto;
	bottom: -60px;
}

#carouselBox {
	padding: 10px;
	border: 1px solid #454545;
	background: linear-gradient(180deg, #202020 0%, rgba(32, 32, 32, 0) 100%);
	border-radius: 20px;
}

#carouselBox .carousel-item img {
	border-radius: 20px;
	max-width: 100%;
}

#carouselBox .carousel-item h5 a {
	display: block;
	color: var(--white);
	font-size: 32px;
}

#carouselBox .carousel-item time {
	color: #747474;
	padding: 15px 0;
	display: block;
}

#carouselBox .carousel-item .text-more {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 4;
}

#carouselBox .carousel-item .text-more a {
	color: var(--white);
	font-size: 16px;
}

#carouselBox .carousel-item .text-more a svg {
	margin-left: 7px;
}

.carousel-control-next,
.carousel-control-prev {
	width: 5%;
}

#subscribe article h6 {
	font-size: 32px;
}

#subscribe form .form-control {
	background: #202020;
	border-radius: 40px;
	border: 1px solid #202020;
	padding: 15px 20px;
}

#subscribe form .form-control:placeholder {
	color: var(--border);
}

#subscribe form .form-control:focus {
	box-shadow: none;
	border: 1px solid var(--green);
}

#subscribe article p {
	color: #747474;
	font-weight: 500;
	font-size: 15px;
	margin: 10px 0 32px;
}

#subscribe article p a {
	color: var(--white);
}

#subscribe article p a:hover {
	color: var(--green);
}

#team {
	background: url("../images/N2N-bg002.jpg") no-repeat top left,
		url("../images/N2N-bg003.jpg?v-1.0") no-repeat top right;
	background-size: 35%, 30%;
}

#team h4 {
	font-size: 64px;
	line-height: 70px;
	margin-top: 60px;
	margin-bottom: 30px;
}

.item-person {
	padding: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	margin-bottom: 25px;
	width: 100%;
}

.item-person h6 {
	font-size: 24px;
}

.item-person h6 small {
	display: block;
	color: #747474;
	font-size: 15px;
	margin-top: 5px;
	font-family: var(--font);
}

.item-person ul li img {
	max-width: 24px;
}

.item-person:hover {
	background: linear-gradient(180deg, #202020 0%, rgba(32, 32, 32, 0) 100%);
}

.item-person h6 {
	float: left;
}

.item-person ul {
	float: right;
	padding-left: 0;
}

.title-frame {
	margin-top: -76px;
	padding: 90px 0 20px;
	background: var(--title) url("../images/bg-title.jpg");
	background-size: cover;
}

.text-green {
	color: var(--green) !important;
}

.title-frame h3 {
	color: var(--white);
	font-size: 2rem;
	margin-bottom: 7px;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	padding: 0 0;
	margin-bottom: 1rem;
	list-style: none;
}

.breadcrumb-item a {
	color: var(--green);
}

.breadcrumb-item.active {
	color: var(--white);
}

.title-group-categories {
	margin-top: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	padding-bottom: 15px;
}

.title-group-categories h4 a {
	float: left;
	display: block;
	text-transform: uppercase;
	font-size: 21px;
	color: var(--green);
}

.title-group-categories .show-more {
	float: right;
	font-size: 14px;
	font-family: var(--font_b);
	color: var(--white);
	margin-top: -15px;
}

.snap {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-bottom: 0;
}

.snap * {
	box-sizing: border-box;
	transition: all 0.6s ease;
}

.snap img {
	opacity: 1;
	width: 100%;
	transition: opacity 0.35s;
}

.snap:after {
	background: var(--white);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	opacity: 0.1;
	transform: skew(-45deg) scaleX(0);
	transition: all 0.3s ease-in-out;
}

.snap figcaption {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	z-index: 1;
}

.snap h5 {
	font-size: 13px;
	text-align: center;
	background: var(--blue);
	width: 35%;
	display: block;
	margin: 0 auto;
	color: var(--white);
	padding: 10px;
	border-radius: 8px;
	opacity: 0;
}

.snap a {
	left: 0;
	right: 0;
	top: 0;
	text-align: center;
	bottom: 0;
	position: absolute;
	z-index: 1;
}

.snap:hover:after,
.snap.hover:after {
	transform: skew(-45deg) scaleX(1);
	transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.snap:hover figcaption h5,
.snap.hover figcaption h5 {
	transform: translate3d(0%, 0%, 0);
	transition-delay: 0.2s;
}

.snap:hover figcaption h5,
.snap.hover figcaption h5 {
	opacity: 1;
}

.highlight {
	padding: 30px 0;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.highlight h4 {
	margin-bottom: 0;
}

.highlight h4 a {
	color: var(--white);
	font-size: 26px;
	letter-spacing: -1.2px;
	display: block;
	margin-bottom: 20px;
}

.highlight h4 a:hover {
	color: var(--green);
}

.exceprt,
.exceprt p {
	margin-bottom: 20px;
	font-size: 16px;
}

.footer-art span,
.footer-art time {
	display: inline;
	color: var(--light);
	font-size: 14px;
}

.footer-art time {
	position: relative;
	padding-left: 15px;
	margin-left: 5px;
}

.footer-art time::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 2px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--green);
}

.item-art h4 {
	margin-bottom: 0;
}

.item-art h4 a {
	display: block;
	color: var(--white);
	font-size: 18px;
	letter-spacing: -1.2px;
	margin-bottom: 12px;
}

.item-art {
	margin-bottom: 40px;
}

.pagination {
	justify-content: center;
	margin-top: 0;
	margin-bottom: 40px;
}

.pagination a {
	display: block;
	margin: 0 3px;
	padding: 8px 16px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--white);
}

.pagination .active a {
	display: block;
	border-color: var(--green);
	background: var(--green);
}

.view-content {
	padding: 40px 0;
}

.search {
	position: relative;
}

.search .form-control {
	padding: 15px 45px 15px 20px;
	font-size: 15px;
	outline: 0;
	border: 1px solid var(--border);
}

.search button {
	position: absolute;
	top: 4px;
	right: 4px;
	padding: 12px 16px;
	border: 0;
	border-radius: 4px;
	background: var(--green);
}

.aside-item article {
	margin-top: 30px;
}

.aside-item article h5 {
	margin-bottom: 5px;
}

.aside-item article h5 a {
	display: block;
	font-size: 14px;
	color: var(--white);
}

.aside-item article time {
	font-size: 13px;
	color: var(--white);
}

.detail-content {
	padding-right: 30px;
}

.w-sm {
	width: 512px;
	margin: 0 auto;
}

.join-us-fanpage li {
	float: left;
	width: 46%;
	margin-right: 15px;
}

.join-us-fanpage li img {
	width: 44px !important;
	height: 44px !important;
	margin-right: 15px;
	transition: all 0.15s ease;
}

.join-us-fanpage li a {
	color: var(--white);
	display: block;
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 20px 15px;
	font-size: 15px;
	margin-bottom: 15px;
	border-radius: 24px;
	border: 1px solid #454545;
	background: linear-gradient(180deg, #202020 0%, rgba(32, 32, 32, 0) 100%);
}

.join-us-fanpage li a:hover {
	border: 1px solid var(--white);
}

.join-us-fanpage li a:hover img {
	filter: brightness(100);
}

.join-us-fanpage li img:last-child {
	width: 12px !important;
	height: 12px !important;
	margin-left: 10px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 7px;
}

.form-group .form-control {
	background: #202020;
	border: 1px solid transparent;
	padding: 10px 15px;
	color: var(--white);
}

.form-group .form-control:focus {
	box-shadow: none;
	border: 1px solid var(--green);
}

#contact .title-section p,
.form-group label {
	color: #747474;
}

.btn-action {
	width: 200px;
	padding: 12px 20px;
	border-radius: 40px;
	color: var(--white);
	border: 0;
	font-size: 16px;
	font-family: var(--font_b);
}

.bg-top-gradient {
	background: url("../images/N2N-title-bg.jpg") no-repeat right -30px;
	background-size: 900px;
}

#top-highlight {
	margin-top: 0;
	padding: 175px 0 70px;
}

#top-highlight article {
	text-align: left;
}

#top-highlight article h1 {
	text-align: left;
	font-size: 50px;
	color: var(--white);
	line-height: 60px;
}

#top-highlight article p {
	margin: 20px 0 50px;
}

.box-section h4 {
	color: var(--white);
	font-size: 45px;
	margin-bottom: 25px;
}

.list-ul {
	padding-left: 0;
}

.list-ul li {
	display: inline;
	margin-right: 5px;
}

.list-ul li a {
	padding: 10px;
	border-radius: 30px;
	border: 1px solid var(--white);
	color: var(--white);
	display: inline-block;
	font-size: 12px;
}

.list-ul li a:hover {
	background: var(--white);
	color: var(--dark);
}

.box-article {
	background: #1d1d1d url("../images/banner.jpg") no-repeat left bottom;
	padding: 35px 25px;
	border-radius: 30px;
}

.box-article h3 {
	font-size: 50px;
}

.box-article h5 {
	margin: 20px 0;
	font-size: 26px;
}

.box-article .text-a a {
	padding-left: 0;
}

.box-article .text-a a:hover {
	color: var(--green);
}

.box-article .text-a {
	margin: 15px 0 80px;
}

.search-ecosystem {
	position: relative;
}

.search-ecosystem .form-control {
	background: #202020;
	padding: 15px 20px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--white);
}

.search-ecosystem .form-control:focus {
	box-shadow: none;
	border: 1px solid var(--green);
}

.btn-search {
	position: absolute;
	bottom: 14px;
	right: 15px;
	background: none;
	border: 0;
}

.item-project {
	background: linear-gradient(180deg, #202020 0%, rgba(32, 32, 32, 0) 100%);
	position: relative;
	padding: 20px;
	border-radius: 24px;
	margin-bottom: 20px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.logo-img img {
	width: auto;
	height: 64px;
}

.item-project h5 a {
	color: var(--white);
	font-size: 22px;
	margin-top: 35px;
	display: block;
}

.item-project p {
	margin: 10px 0 20px;
	color: #747474;
	min-height: 70px;
}

.text-a a {
	padding: 0;
	font-family: var(--font);
	font-size: 13px;
}

.text-a a svg {
	width: 18px;
	margin-left: 5px;
}

.text-a a:hover {
	color: var(--green);
}

.group-filter {
	position: absolute;
	top: 20px;
	right: 20px;
}

.group-filter span {
	background: #3c3c3c;
	border-radius: 8px;
	padding: 6px 12px;
	font-size: 13px;
}

.tab-content {
	padding-top: 30px;
}

#nav-tab {
	border-bottom: 0;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	border: 1px solid var(--brand-green-500, #3c9);
	background: var(--Gradient, linear-gradient(0deg, #14523d 0.22%, #3c9 105.94%));
	box-shadow: 0px 6px 14.9px 0px rgba(51, 204, 153, 0.2);
	color: var(--white);
}

.nav-tabs .nav-link {
	margin-right: 10px;
	color: var(--white);
	border-radius: 16px;
	padding: 14px 24px;
	border: 1px solid var(--Border, #454545);
	background: var(--Surface-gradient, linear-gradient(180deg, #202020 0%, rgba(32, 32, 32, 0) 100%));
}

.search {
	margin-bottom: 25px;
}

.search .form-control {
	background: var(--dark);
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.search .form-control:focus {
	border: 1px solid var(--green);
	box-shadow: none;
}

.detail-content h1 {
	padding: 15px 0;
}

.description p {
	line-height: 2;
}

.btn-action svg {
	width: 18px;
	height: 18px;
}

#explore-projects {
	background: url("../images/N2N-bg002.jpg") no-repeat left -40px;
	background-size: 375px;
}

.accordion-body {
	color: var(--white);
	line-height: 1.6;
	padding: 20px 0;
}

.accordion-item {
	background: none;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0;
}

.accordion-button:not(.collapsed),
.accordion-button {
	background: none;
	color: #929292;
	font-size: 17px;
	padding: 15px 0;
}

.accordion-button:not(.collapsed) {
	color: var(--white);
	border-bottom: 0;
}

button:focus:not(:focus-visible) {
	box-shadow: none;
}

.accordion-button::after {
	filter: brightness(80);
}

.item-img {
	background: linear-gradient(180deg, #202020 0%, rgba(32, 32, 32, 0) 100%);
	border: 1px solid transparent;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.item-img:hover {
	background: url("../images/wbg-03.png") no-repeat bottom left;
	border: 1px solid var(--green);
	box-shadow: 0px 6px 18px 0px rgba(51, 204, 153, 0.3);
}

.accordion-item:last-of-type {
	border-radius: 0;
	border-bottom: 0;
}

/* ================= FOOTER ================= */
footer {
	background: url("../images/N2N-bg005.jpg") no-repeat bottom left;
	background-size: 100% 90%;
	padding: 60px 0;
}

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

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

.logo-footer small {
	display: block;
	margin-bottom: 7px;
}

.fanpage {
	padding-left: 0;
}

.fanpage li {
	display: inline;
}

.fanpage li a {
	display: inline-block;
}

.fanpage li img {
	width: 32px;
	height: 32px;
	filter: grayscale(100%);
}

.fanpage li img {
	transition: all 0.25s ease;
	margin-right: 10px;
	filter: brightness(1);
}

.fanpage li img:hover {
	filter: brightness(3);
}

.title-footer {
	margin-bottom: 10px;
}

footer ul {
	padding-left: 0;
}

.list-item-footer {
	padding-left: 15px;
}

footer ul li a {
	color: var(--gray);
	display: block;
	font-size: 13px;
	padding-bottom: 6px;
}

.hr-border {
	border-top: 1px solid var(--white);
	opacity: 0.1;
	margin: 20px 0 30px;
}

.dropdown-menu-dark {
	background: #262525;
}

.carousel-control-prev,
.carousel-control-next {
	background: rgba(255, 255, 255, 0.1);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	position: absolute;
	top: -85px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
	opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
	width: 18px;
	height: 18px;
}

.carousel-control-prev-icon {
	right: 20px;
}

.carousel-control-prev {
	position: absolute;
	right: 52px;
	left: auto;
}

#trending-app .btn-action {
	font-family: var(--font_b);
	color: var(--white);
}

#super-app .container {
	position: relative;
	z-index: 4;
}

#super-app h4 {
	margin-bottom: 12px;
	font-size: 32px;
	color: #cecece;
}

#super-app p {
	color: #747474;
}

#super-app {
	position: relative;
	z-index: 0;
}

#super-app .group-a {
	margin-bottom: 10px;
}

.list-feat li {
	list-style-type: none;
	font-size: 28px;
	color: #cecece;
	font-family: var(--font_b);
	margin-bottom: 40px;
}

.list-feat li small {
	font-size: 16px;
	color: #747474;
	display: block;
	margin-top: 5px;
	font-family: var(--font);
}

.list-feat li img {
	width: 71px;
	height: 71px;
	float: left;
	margin-right: 20px;
	margin-bottom: 15px;
}

.effect-web {
	position: relative;
}

.effect-web #logo {
	display: none !important;
}

.logo-effect-main,
.chip,
.vision-block {
	transform: scale(0.4);
	transform-origin: top center; /* Đặt gốc của transform ở góc trên bên trái */
	position: absolute;
	top: 0;
	left: 0;
}

.vision {
	padding-left: 0;
}

.vision li {
	border: 1px solid #323232;
	border-radius: 10px;
	padding: 20px;
	list-style-type: none;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.vision li strong {
	display: block;
	font-size: 20px;
	margin-bottom: 5px;
}

.vision li:hover {
	border: 1px solid var(--green);
	background: var(--Gradient, linear-gradient(0deg, #14523d 0.22%, #3c9 105.94%));
	box-shadow: 0px 6px 18px 0px rgba(51, 204, 153, 0.3);
}

#list-product {
	position: relative;
}

#list-product .carousel-control-prev img,
#list-product .carousel-control-next img {
	width: 18px;
}

.overlay-img img {
	max-width: 100%;
	margin: 0 auto;
	display: block;
}

#quest .overlay-img img {
	max-width: 90%;
}
	
/* ================= Few Option ================= */
.view-content .card {
	background: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 0;
	padding: 20px 0;
}

.view-content .card .card-body a {
	color: var(--white);
	display: block;
	margin-bottom: 5px;
}

.categories_blog {
	border: 1px solid var(--green);
	color: var(--green);
	padding: 5px 13px;
	font-size: 12px;
}

.view-content .card .excerpt {
	margin-bottom: 10px;
}

.pagination {
	padding-top: 30px;
}

.inline-related-post {
	padding: 15px 20px;
	border-left: 5px solid var(--green);
	display: block;
	font-size: 13px;
	font-family: var(--font_b);
	background: rgba(51, 204, 153, 0.1);
	margin: 20px 0;
}

.inline-related-post span {
	color: var(--white);
}

.inline-related-post a {
	color: var(--green);
}

.mce-toc,
.our-toc {
	background-color: rgba(51, 204, 153, 0.1);
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 10px !important;
}

.mce-toc h6 {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 10px;
}

.mce-toc ul li a,
.our-toc ul li a {
	color: var(--green);
}

.mce-toc ul li a {
	display: block;
	padding: 5px 0;
}

.mce-toc ul li a:hover {
	text-decoration: underline;
}

.mce-toc ul li {
	list-style-type: decimal;
}

.other-article ul {
	margin-top: 30px;
}

.other-article h5 {
	font-size: 26px;
}

.share-fanpage a {
	text-decoration: underline;
}

.mt-1 {
	margin-top: 1px;
}

.mr-6 {
	margin-right: 8px;
}

.other-article ul li a {
	color: var(--white);
	display: block;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 15px;
}

.other-article ul li a:hover {
	color: var(--green);
}

#list-cat {
	padding: 50px 0;
}

.description p {
	margin-bottom: 15px;
}

.description h1,
.description h2,
.description h3,
.description h4,
.description h5,
.description h6 {
	margin-bottom: 7px;
}

.summary {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.item-person li {
	list-style-type: none;
}

.item-person {
	transition: all 0.2s ease;
}

.item-person:hover {
	border-top: 1px solid var(--green);
	border-bottom: 1px solid var(--green);
}

.item-person:hover h6 {
	color: var(--green);
}

.item-person:hover .fanpages img {
	filter: brightness(100);
}

.join-us-fanpage li {
	list-style-type: none;
}

#contact .captcha {
	position: relative;
}

#contact .captcha img {
	position: absolute;
	bottom: 4px;
	right: 3px;
	border-radius: 5px;
}

#decentralized {
	position: relative;
	background: url("../images/N2N-bg004.jpg") no-repeat left 160px;
	background-size: 950px;
}

#mission {
	background: url("../images/N2N-bg001.jpg") no-repeat right top;
	background-size: 930px;
}

#decentralized .title-section h3 {
	color: #fff;
	font-size: 29px;
	font-family: var(--font);
	line-height: 40px;
	letter-spacing: -1px;
	margin: 15px 0;
}

.chip {
	transform: scale(1);
}

.logo-effect {
	transform: scale(0.4);
}

.bg-block {
	transition: all 0.3s ease;
	position: relative;
	border-radius: 24px;
	padding: 20px;
	border: 1px solid transparent;
	background: linear-gradient(180deg, #202020 0%, rgba(32, 32, 32, 0) 100%);
}

.bg-block:hover {
	border: 1px solid #454545;
}

.bg-block .excerpt {
	min-height: 60px;
}

.img-block-logo img {
	height: 75px;
}

.img-avatar {
	margin: 10px 0 30px;
}

.img-avatar img {
	width: 100%;
	max-width: 100%;
}

.swiper-horizontal {
	overflow: hidden;
	padding: 2px;
}
.next-btn,
.prev-btn {
	background-color: #202020;
	border-radius: 50%;
	position: absolute;
	top: -80px;
	right: 0;
	width: 40px;
	height: 40px;
	border: 1px solid transparent;
}

.next-btn img,
.prev-btn img {
	width: 20px;
	height: 20px;
}

.next-btn {
	z-index: 1;
}

.prev-btn {
	z-index: 0;
	right: 50px;
}

.swiper-button-disabled {
	opacity: 0.3;
}

.next-btn:hover,
.prev-btn:hover {
	background-color: #323232;
}

.subscribe {
	position: relative;
}

.subscribe button {
	position: absolute;
	right: 6px;
	bottom: 6px;
	border: 0;
	border-radius: 50px;
	color: var(--white);
	padding: 10px 25px;
}

.subscribe input[type="text"] {
	color: var(--white);
}

.img-000 {
	width: 65%;
	top: 50%;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
}

#top-highlight .img-000 {
	top: 100px;
}

.only_001 {
	top: 75%;
}

.only_002 {
	top: 50%;
}

.only_003 {
	width: 62%;
	margin-top: 80px;
	display: block;
}

/* *************** Marquee *************** */
:root {
	--marquee-width: 80vw;
	--marquee-height: 20vh;
	/* --marquee-elements: 12; */ /* defined with JavaScript */
	--marquee-elements-displayed: 5;
	--marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
	--marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
	width: var(--marquee-width);
	overflow: hidden;
	position: relative;
}
.marquee:before,
.marquee:after {
	position: absolute;
	top: 0;
	width: 10rem;
	height: 100%;
	content: "";
	z-index: 1;
}
.marquee:before {
	left: 0;
	background: linear-gradient(to right, var(--dark) 0%, transparent 100%);
}
.marquee:after {
	right: 0;
	background: linear-gradient(to right, var(--dark) 0%, transparent 100%);
}
.marquee-content {
	list-style: none;
	height: 100%;
	display: flex;
	animation: scrolling var(--marquee-animation-duration) linear infinite;
}
/* .marquee-content:hover {
    animation-play-state: paused;
  } */
@keyframes scrolling {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
	}
}
.zoom-cls {
	transition: transform 0.4s;
}
.zoom-cls:hover {
	-ms-transform: scale(1.2); /* IE 9 */
	-webkit-transform: scale(1.2); /* Safari 3-8 */
	transform: scale(1.02);
}
.marquee-content li {
	display: flex;
	justify-content: center;
	align-items: center;
	/* text-align: center; */
	flex-shrink: 0;
	width: var(--marquee-element-width);
	max-height: 100%;
	/* font-size: calc(var(--marquee-height) * 3 / 4);  */
	white-space: nowrap;
}

.marquee-content li img {
	width: 100%;
	/* height: 100%; */
}

@media (max-width: 600px) {
	html {
		font-size: 12px;
	}
	:root {
		--marquee-width: 100vw;
		--marquee-height: 16vh;
		--marquee-elements-displayed: 3;
	}
	.marquee:before,
	.marquee:after {
		width: 5rem;
	}
}

.arrow-hover {
	position: absolute;
	top: 20px;
	right: 20px;
	opacity: 0;
}

.bg-block:hover .arrow-hover {
	opacity: 1 !important;
}

.arrow-hover svg {
	width: 40px;
	height: 40px;
}

/* START WORKER VALIDATION */

.worker-validation-area {
	max-width: 770px;
	margin: 0 auto;
	margin-top: 140px;
}

.worker-validation-area h1 {
	font-size: 56px;
	line-height: 64px;
	font-weight: 700;
	margin-bottom: 40px;
}

.worker-validation-area img {
	width: 100%;
}
.form-worker-validation {
	position: relative;
}

.form-worker-validation i {
	position: absolute;
}

.form-worker-validation.form-group .form-control,
.form-worker-validation.form-group .form-control:focus {
	background-color: #1d1d1d;
	border: 2px solid #454545;
	border-radius: 999px;
	height: 64px;
	padding: 20px 0 20px 64px;
}

.form-worker-validation.form-group .form-control:focus,
.form-worker-validation.form-group .form-control:hover {
	border: 2px solid var(--green);
}

.form-worker-validation.form-group .form-control::placeholder,
.worker-validation-area p {
	color: #747474;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.2px;
}

.form-worker-validation .icon-search {
	position: absolute;
	left: 24px;
	top: 16px;
}

.form-worker-validation button {
	position: absolute;
	top: 12px;
	right: 12px;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	font-family: var(--font);
	border: 0px;
}

.worker-validation-area p {
	max-width: 680px;
	line-height: 24px;
	margin-bottom: 24px;
}

.worker-validation-area .list-icon {
	display: flex;
}
.worker-validation-area .list-icon ul li img {
	width: 24px;
	height: 24px;
}

#modalSuccess .modal-dialog,
#modalFail .modal-dialog {
	max-width: 502px;
}

#modalSuccess .validate-worker-modal,
#modalFail .validate-worker-modal {
	background-color: #141414;
	padding: 32px;
	display: flex;
	align-items: center;
	row-gap: 32px;
}

#modalSuccess .validate-worker-modal .result h5,
#modalFail .validate-worker-modal .result h5 {
	font-size: 32px;
	line-height: 40px;
	font-weight: 600;
	text-align: center;
}
#modalSuccess .validate-worker-modal .result,
#modalFail .validate-worker-modal .result {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
}

#modalSuccess .validate-worker-modal .result span,
#modalFail .validate-worker-modal .result span {
	font-size: 20px;
	display: inline-block;
	background: #202020;
	padding: 8px 16px;
	color: white;
	border-radius: 8px;
	font-weight: 500;
	line-height: 24px;
	display: flex;
	width: fit-content;
	gap: 8px;
}

#modalSuccess .validate-worker-modal .result p,
#modalFail .validate-worker-modal .result p {
	color: #747474;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: -0.2px;
}

#modalSuccess .validate-worker-modal button,
#modalFail .validate-worker-modal button {
	font-size: 18px;
	font-weight: 500;
	font-family: var(--font);
	line-height: 24px;
	letter-spacing: -0.2px;
}

.footer-validation {
	display: flex;
	align-items: center;
}

.footer-validation .first,
.footer-validation .second {
	width: 50%;
}

.footer-validation .form-worker-validation.form-group .form-control,
.footer-validation .form-worker-validation.form-group .form-control:focus {
	height: 56px;
	padding: 20px 0 20px 48px;
}

.footer-validation .icon-search{
	top: 12px;
	left: 12px;
}
.footer-validation button{
	top: 8px;
	right: 8px;
}

.footer-validation h5{
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: -0.2px;
	margin-bottom: 8px;
}

.footer-validation p {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.2px;
	font-weight: 400;
	max-width: 465px;
	color: #747474;
}

.footer-validation .form-worker-validation{
	margin-bottom: 0px;
}

.footer-validation .form-worker-validation.form-group .form-control::placeholder{
	font-size: 16px;
}

.brand-kit-logo{
	position:relative;
}

.brand-kit-logo .download-logo, .brand-kit-logo .download-typo{
	position: absolute;
    left: 18%;
    top: 56.6%;
	color: var(--green);
	font-weight: 500;
	text-decoration: underline;
}

.brand-kit-logo .download-typo{
    left: 20%;
    font-size: 20px;
    top: 56%;
    font-weight: 500;
}

.modalNodeSale{
	width: fit-content;
	position: relative;
}

.modalNodeSale .modal-content{
	background: transparent !important;
	min-height: fit-content;
}

.modalNodeSale .close-btn{
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 10;
	cursor: pointer;
}

.modalNodeSale .result{
	position: absolute;
    top: 38%;
    text-align: center;
    width: 100%;
}

.modalNodeSale .result h5{
	font-size: 64px;
	color: #7EFFC5;
	margin-bottom: 18px;
	font-family: "JockeyOne-Regular";
}

.modalNodeSale .result p{
	font-size: 14px;
	color: white;
	max-width: 440px ;
	margin: 0 auto;
	margin-bottom: 24px;
}

.modalNodeSale .result a{
	color: white;
	background: linear-gradient(to right, #9299FF, #4651F6);
	border-radius: 8px;
	padding: 8px 48px;
	transition: box-shadow 0.3s ease; 
	font-size: 16px;
	font-family: "JockeyOne-Regular";
}
.modalNodeSale .result button:hover{
	box-shadow: 0 4px 15px rgb(127 121 194 / 64%)

}
.gradient-light-green-text {
	color: transparent; 
	background: linear-gradient(to top, #7EFFC5, var(--green) );
	-webkit-background-clip: text;
	position: relative;
}

.gradient-light-green-text::before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	top: 0;
	color: transparent;
	background: linear-gradient(to bottom, #7EFFC5, var(--green) );
	-webkit-background-clip: text;
	clip-path: text;
	z-index: -1;
	filter: blur(3px); 
}

img.person-avatar {
    border-radius: 30px;
    max-width: 200px;
}

article.item-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    text-align: center;
    gap: 20px;
}

article.item-person .fanpages {
    padding: 0px;
    margin: 0px;
	margin-top: auto;
	display: flex;
	flex-direction: row;
	gap: 8px;
}
