a:focus, button:focus, input:focus {
	outline: none !important;     /* border: none !important; */
	box-shadow: none !important;
}

::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

::-webkit-scrollbar-thumb {
	background: var(--white);
	border-radius: 8px;
	box-shadow: inset 2px 2px 2px var(--white), inset -2px -2px 2px var(--white);
}

::-webkit-scrollbar-track {
	background: linear-gradient(90deg, rgba(17, 17, 17, 1), rgba(17, 17, 17, 1) 1px, rgba(17, 17, 17, 1) 0, rgba(17, 17, 17, 1));
}

img, svg {
	max-width: 100%;
	max-height: 100%;
}

ul, li {
	list-style: none;
	padding-left: 0 !important;
}

a {
	color: var(--white) !important;
	text-decoration: none !important;
}

input {
	background: transparent;
	outline: none;
	box-shadow: none;
	color: var(--white);
	border: none;
}

.gap-100 {
	gap: 100px;
}

.owl-dots {
	display: none;
}

.container {
	position: relative;
	max-width: 1760px !important;
}

.text-gradient {
	background: var(--text-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.accordion-collapse .highlight {
	color: var(--green) !important;
	text-decoration: none !important;
}

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

.highlight:hover {
	text-decoration: none !important;
}

.section-title {
	font: 500 100px/85px "Brockmann";
	margin-bottom: 48px;
	letter-spacing: -4px;
	text-transform: capitalize;
}

.section-detail {
	font: 400 36px/45px "Brockmann";
	margin-bottom: 0;
	opacity: 0.74;
	max-width: 1008px;
	margin: 0 auto;
	letter-spacing: -1.44px;
}

@media (max-width:1800px) {
	.section-title {
		font-size: 80px;
		line-height: 80px;
	}

}

@media (max-width:1600px) {
	.section-title {
		font-size: 60px;
		line-height: 60px;
		margin-bottom: 15px;
	}

	.section-detail {
		font-size: 30px;
		line-height: 40px;
	}

}

@media (max-width:900px) {
	.section-title {
		font-size: 40px;
		line-height: 40px;
		margin-bottom: 15px;
		letter-spacing: -1.6px;
	}

	.section-detail {
		font-size: 20px;
		line-height: normal;
		letter-spacing: -0.8px;
		margin: 12px 0;
	}

}

.txtHold {
	position: relative;
	z-index: 2;
}

.vd-holder {
	position: absolute;
	top: 50%;
	right: -10%;
	transform: translateY(-50%);
	width: 900px;
	z-index: 0;
}

video {
	position: relative;
	width: 100%;
	height: 100%;
}

video::-webkit-media-controls-panel {
	display: none !important;
	-webkit-appearance: none;
}

video::-webkit-media-controls-play-button {
	display: none !important;
	-webkit-appearance: none;
}

video::-webkit-media-controls-start-playback-button {
	display: none !important;
	-webkit-appearance: none;
	overflow: hidden;
}

video::-webkit-media-controls-start-playback-button, video::-webkit-media-controls, video::-webkit-media-controls {
	display: none !important;
	-webkit-appearance: none;
}

.list-none {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* CUSTOM BUTTON */
.custom-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	padding: 10px 12px;
	border-radius: 12px;
	letter-spacing: -0.18px;
	transition: 0.25s ease-in-out;
	cursor: pointer;
}

.custom-btn.rev-btn, .custom-btn.rev-btn:hover {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-weight: 600 !important;
	padding: 10px 12px !important;
	letter-spacing: -0.18px !important;
	min-width: 181px !important;
	margin-top: -10px !important;
	text-transform: capitalize !important;
	border: 2px solid var(--white) !important;
	color: var(--white) !important;
	background: transparent !important;
}

.custom-btn.dark {
	background: var(--btn-gradient);
	color: var(--bg) !important;
}

.custom-btn.dark-gradient {
	background: linear-gradient(132deg, #03d9af 0%, #fff 100%) !important;
	color: var(--bg) !important;
	border: none !important;
}

.custom-btn.outline {
	border: 2px solid var(--white);
	border-radius: 12px;
	color: var(--white);
}

.custom-btn.outline:hover {
	background: var(--white);
	color: var(--bg) !important;
}

.custom-btn.outline-dim {
	border: 2px solid rgba(246, 246, 246, 0.1);
	background: rgba(1, 1, 1, 0.5) !important;
	color: var(--white);
}

.custom-btn.sm {
	height: 24px;
	line-height: 24px;
}

.custom-btn.md {
	height: 36px;
	line-height: 36px;
}

.custom-btn.lg {
	height: 56px;
	line-height: 56px;
	padding-inline: 25px;
}

.custom-btn .icon {
	margin-left: 10px;
	position: relative;
	right: 0px;
	transition: 0.4s linear;
}
@media (min-width:280px) and (max-width:480px){
	.custom-btn .icon{
		display: none !important;
	}
}
.custom-btn:hover .icon {
	right: -5px;
}

.custom-btn .icon svg, .custom-btn .icon img {
	display: block;
}

.custom-btn.rounded {
	border-radius: 100px !important;
}

.custom-btn.link {
	padding-bottom: 0 !important;
	padding-top: 0 !important;
	text-decoration: underline !important;
}

.custom-btn:hover.link {
	text-decoration: none !important;
}

@media (max-width:767px) {
	.custom-btn {
		font-size: 14px;
	}

	.custom-btn.lg {
		padding-inline: 15px;
	}

}

/* language */
[lang="ar"] .branch-card h3, [lang="ar"] .branch-card p, [lang="ar"] .entertainment-apps .apps-card p {
	direction: rtl;
}

[lang="ar"] .eco-partners .top-section {
	direction: rtl;
}

[lang="ar"] .featured-news .top-sc, [lang="ar"] .mass-adoption .top-sc, [lang="ar"] .site-counter .top-sc {
	margin-left: auto;
	direction: rtl;
}

[lang="ar"] body, [lang="ar"] .navList, #ar-link, [lang="ar"] .fullpage-scroll, [lang="ar"] .right-nav .nav-holder, [lang="ar"] .sub-pages, [lang="ar"] .section-title, [lang="ar"] .section-detail, [lang="ar"] .hero-section .heading.main, [lang="ar"] #panels-container .slidesWrapper .wrap h3, [lang="ar"] #panels-container .slidesWrapper .wrap p, [lang="ar"] .eco-nav-tabs .eco-nav-content .title, [lang="ar"] .sub-pages .top-txt, [lang="ar"] .sub-pages .section-txt p, [lang="ar"] .team-card .team-info .info h4, [lang="ar"] .team-card .team-info .info p, [lang="ar"] .team-card .team-info p, [lang="ar"] .partner_card p, [lang="ar"] .brand-press .brand-links .section-heading, [lang="ar"] .brand-press .section-tag, [lang="ar"] .partner_card .partner_tag, [lang="ar"] .branch-structure .title, [lang="ar"] .logo-title {
	font-family: var(--arabic-font-family) !important;
}

[lang="ar"] .partner_card p {
	padding-right: 0;
	padding-left: 10px !important;
}

[lang="ar"] .branch-structure .partner_card {
	text-align: right;
}

[lang="ar"] .navList {
	text-align: end;
}

[lang="ar"] .navList .sub-menu {
	margin-right: 40px;
	justify-content: flex-end;
}

[lang="ar"] .navList .sub-menu a {
	font-family: "Brockmann";
}

[lang="ar"] .partner_card .external-links a {
	direction: ltr;
}

[lang="ar"] .developers .section-detail {
	direction: ltr;
}

[lang="ar"] .section-content p, [lang="ar"] .section-detail, [lang="ar"] .partner_card {
	direction: rtl;
}

[lang="ar"] .brand-press .logo-sz-card .logo-text {
	flex-direction: row-reverse;
}

@media (min-width:990px) {
	[lang="ar"] .hero-section .rev_row_zone_middle .mainrow > rs-column-wrap:first-child {
		vertical-align: top !important;
	}

	[lang="ar"] .hero-section .rev_row_zone_middle .mainrow {
		direction: rtl !important;
	}

	[lang="ar"] .hero-section .rev_row_zone_middle .mainrow .sub-heading, [lang="ar"] .hero-section .rev_row_zone_middle .mainrow .slide-heading {
		text-align: right !important;
		direction: rtl;
	}

	[lang="ar"] .hero-section .mainrow rs-column-wrap:nth-child(2) > rs-column {
		padding-left: 0 !important;
		padding-right: 200px !important;
	}

	[lang="ar"] .hero-section .rev_row_zone_middle .mainrow .slide-info {
		text-align: right !important;
		direction: rtl;
	}

	[lang="ar"] .eco-nav-tabs .eco-nav-content .row .col-lg-7 {
		order: 2;
	}

	[lang="ar"] .hero-section .rev_row_zone_middle .mainrow .slide-info {
		font-size: 28px !important;
	}

	[lang="ar"] #panels-container .slidesWrapper {
		text-align: right;
		direction: rtl;
	}

	[lang="ar"] #panels-container .slidesWrapper .wrap p {
		padding-left: 50px;
		padding-right: 0;
	}

	[lang="ar"] .page-cards .info-card {
		text-align: right;
		direction: rtl;
	}

	[lang="ar"] .page-cards .info-card h2::before, [lang="ar"] .page-cards .info-card h4::before {
		right: 0;
		left: auto;
	}

	[lang="ar"] .brand-links .row:first-child div:first-child {
		order: 2;
	}

	[lang="ar"] .brand-links .row:first-child .section-heading, [lang="ar"] .brand-press .row:first-child .break-point:nth-child(1), [lang="ar"] .brand-press .row:first-child .break-point:nth-child(2), [lang="ar"] .brand-press .row:first-child .break-point:nth-child(3) {
		direction: rtl;
		text-align: right;
	}

}

[lang="ar"] .hero-section .bottom-text span {
	font-size: 20px !important;
	letter-spacing: -0.25px !important;
}

[lang="ar"] .game-vr-section .txtHold .reveal-text p {
	font-size: 75px;
	line-height: 80px;
}

[lang="ar"] .game-vr-section .col-md-6:first-child {
	order: 1;
	text-align: right;
	direction: rtl;
}

[lang="ar"] .game-vr-section .splitTxtAnimation {
	padding-right: 10px;
	padding-left: 5rem;
}

[lang="ar"] .game-vr-section .splitTxtAnimation p {
	padding-right: 20px;
}

[lang="ar"] .game-vr-section .imghold {
	right: auto;
}

[lang="ar"] .eco-nav-tabs .tab-decription, [lang="ar"] .ecosys-tabs .tab-decription {
	padding-right: 10px !important;
	text-align: right;
	direction: rtl;
}

[lang="ar"] .sub-pages.team .custom-row {
	direction: rtl;
}

[lang="ko"] .game-vr-section .txtHold .reveal-text p {
	font-size: 90px;
}

[lang="ar"] .hero-section rs-static-layers .rs-parallax-wrap {
	left: 50% !important;
	transform: translateX(-50%) !important;
}

[lang="ar"] .team-card {
	display: flex;
	flex-direction: column;
	text-align: right;
}

[lang="ar"] .team-card .team-info .info::after {
	right: 0;
	left: auto;
}

[lang="ar"] .section-content .logo-title, [lang="ko"] .section-content .logo-title {
	margin-bottom: 30px;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background: black;
	z-index: 18;
}

.loading .wrap {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading .loading-img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	padding: 15px;
}

/* ---------------
REMAPPING 
------------------ */
.sc-title {
	font-size: 56px;
	line-height: 60px;
	font-weight: 600;
	letter-spacing: var(--letterSpacing04);
	color: var(--text);
}

.sc-title .focus {
	background: linear-gradient(128deg, #50fddb 26.27%, #03d9af 67.57%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.sc-title-2 {
	color: var(--white) !important;
}

.sc-title-2 .focus {

	/* display: block; */
	text-transform: capitalize;     /* font-family: "Metalune"; */
}

h1.sc-title {
	font-size: 68px;
	line-height: 70px;
	color: var(--dim-white);
	letter-spacing: -2.72px;
}

[lang="ar"] h1.sc-title {
	margin-bottom: 24px;
	direction: rtl;
}

[lang="ar"] .developers h1.sc-title {
	direction: ltr;
}

[lang="ar"] .entertainment-apps .apps-card {
	align-items: end;
}

[lang="ar"] .ecosystem-developers .sc-title {
	line-height: 75px;
}

[lang="ar"] .entertainment-apps .apps-card h3, [lang="ar"] .ecosystem-developers .sc-title, [lang="ar"] .hero-section .sc-detail {
	direction: rtl;
}

[lang="ar"] .hero-section .button-group {
	justify-content: end;
}

.sc-detail {
	font-size: 22px;
	line-height: 32px;
	letter-spacing: var(--letterSpacing04);
}

section .container {
	max-width: 1760px !important;
}

@media (min-width:1920px) {
	section .container {
		padding-left: 4rem !important;
		padding-right: 4rem !important;
	}

}

@media (min-width:1367px) and (max-width:1919px) {
	.container {
		padding-left: 4rem !important;
		padding-right: 4rem !important;
	}

}

@media (max-width:1050px) {
	.sc-title, h1.sc-title {
		font-size: 45px;
		line-height: 48px;
	}

	.sc-detail {
		font-size: 18px;
		line-height: 24px;
	}

}

@media (max-width:767px) {
	.sc-title {
		font-size: 36px;
		line-height: 40px;
	}

	h1.sc-title {
		font-size: 40px;
		line-height: 44px;
	}

	[lang="ar"] .hero-section .button-group {
		justify-content: center;
	}

}

.gradient-effect {
	background: linear-gradient(90deg, #9f01ff 21.42%, #fdcf8a 60.71%, #03d9af 100%);
	background-size: cover;
	-webkit-animation: gradientEffect 6s ease infinite;
	-moz-animation: gradientEffect 6s ease infinite;
	-o-animation: gradientEffect 6s ease infinite;
	animation: gradientEffect 6s ease infinite;
	width: 100%;
	height: 400px;
	filter: blur(75px);
}

/* ---------------
HEADER 
------------------ */
header {
	position: relative;
	z-index: 16;
	position: fixed;
	width: 100%;
	left: 0px;
	padding: 25px 0;
	transition: 0.4s linear;
}

header.sticky {
	padding: 15px 0;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	background: rgba(0, 0, 0, 0.5);
}

header .logo {
	max-width: 207px;
}

header .right-navigation {
	display: flex;
	align-items: center;
	gap: 12px;
}

header .right-navigation__container {
	display: flex;
	align-items: center;
	gap: 25px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 100px;
	border: 1.5px solid rgba(246, 246, 246, 0.1);
	background: rgba(1, 1, 1, 0.5);
	backdrop-filter: blur(10px);
	padding: 5px;
	height: 68px;
}

header .right-navigation__container .nav-holder {
	display: inline-flex;
	gap: 40px;
	padding-left: 32px !important;
	height: 100%;
}

header .right-navigation__container .nav-holder > li {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

header .right-navigation__container .nav-holder .navlink {
	display: inline-flex;
	align-items: center;
	color: var(--white);
	font-size: 16px;
	font-weight: 500;
	background: transparent;
	border: none;
}

header .right-navigation__container .nav-holder .navlink svg {
	width: 14px;
	margin-left: 8px;
}

header .right-navigation__container .nav-holder .navlink:hover, header .right-navigation__container .nav-holder .navlink.active {
	color: var(--green) !important;
}

header .right-navigation__container .custom-btn {
	min-width: 158px;
}

header .right-navigation__container .line {
	display: inline-block;
	width: 2px;
	height: 25px;
	background: rgba(255, 255, 255, 0.5);
}

header .navdropdown {
	min-width: 240px;
	left: 0 !important;
	right: 0 !important;
	transform: translate(-40%, 50px) !important;
	background: #080808;
	padding: 28px;
	border-radius: 12px;
	border: 1.5px solid rgba(246, 246, 246, 0.08);
}

header .navdropdown.lg {
	min-width: 600px;
	gap: 40px;
}

header .navdropdown ul {
	display: flex;
	text-align: left;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 25px;
	position: relative;
}

header .right-navigation .multi-lang-button {
	min-width: 123px;
	font-weight: 400;
	height: 68px;
}

header .right-navigation .custom-btn .leftIcon {
	margin-right: 10px;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

header .right-navigation .custom-btn .rightIcon {
	margin-left: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}

header .right-navigation .navdropdown.lang-dropdown {
	transform: translate(0px, 72px) !important;
	min-width: 213px;
	left: auto !important;
}

header .navdropdown.lang-dropdown ul {
	gap: 20px;
	flex-direction: column;
}

header .sub-page-links.lg ul::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 100%;
	width: 1.5px;
	background: var(--white);
	opacity: 0.08;
}

header .dp-sub-page .sub-page-links {
	top: 15px !important;
}

header .dp-sub-page .disabled {
	opacity: 0.75 !important;
	cursor: not-allowed !important;
}

/* Dropdown */
header .navdropdown ul li {
	width: 100%;
}

header .navdropdown.lg ul li {
	width: 45%;
}

header .navdropdown ul li a {
	display: inline-flex;
	font-size: 16px;
	font-weight: 500;
	color: var(--text) !important;
	gap: 8px;
	flex-direction: column;
	transition: 0.05s ease-in-out;
	cursor: pointer;
}

header .navdropdown.lg ul li a {
	font-size: 18px;
}

header .navdropdown ul li div {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	transition: 0.2s ease-in-out;
	cursor: pointer;
}

header .navdropdown ul li .icon {
	display: inline-flex;
	position: relative;
	right: 0;
	transition: 0.2s linear;
}

header .navdropdown ul li a:hover .icon {
	right: -5px;
}

header .navdropdown ul li a p {
	margin-bottom: 0;
	opacity: 0.6;
	font-size: 14px;
	font-weight: 400;
	transition: 0.25s ease-in-out;
}

header .navdropdown ul li span:hover, header .navdropdown ul li a:hover, header .navdropdown ul li.active a {
	color: var(--green) !important;
	fill: var(--green) !important;
}

header .navdropdown ul li a:hover p {
	opacity: 1;
	color: var(--text) !important;
}

header .navdropdown ul li span:hover, header .navdropdown ul li.active span {
	background-size: 99% 100%;
	background-position: left;
}

header .navdropdown ul li .custom-btn {
	justify-content: space-between;
}

header .button-group {
	display: flex;
	align-items: center;
	height: 100%;
}

@media (max-width:1400px) {
	header .right-navigation__container .nav-holder {
		gap: 30px;
	}

	header .logo {
		max-width: 200px;
	}

	header .navdropdown {
		padding: 20px;
	}

	header .navdropdown ul {
		gap: 25px;
	}

}

@media (min-width:1181px) and (max-width:1300px) {
	header .right-navigation__container .nav-holder {
		padding-left: 15px !important;
	}

	header .right-navigation__container .nav-holder {
		gap: 15px !important;
	}

	header .right-navigation__container .nav-holder .navlink {
		font-size: 14px !important;
	}

	header .right-navigation__container {
		gap: 20px;
	}

	header .right-navigation__container .custom-btn {
		min-width: 130px !important;
	}

	header .right-navigation__container .nav-holder .navlink svg {
		width: 10px !important;
	}

}

@media (max-width:1180px) {
	header .right-navigation__container .custom-btn {
		min-width: 120px;
	}

	header .right-navigation__container .nav-holder .navlink svg {
		width: 11px;
	}

	header .navdropdown ul li a, header .right-navigation .multi-lang-button, header .right-navigation__container .custom-btn, header .right-navigation__container .nav-holder .navlink {
		font-size: 14px;
	}

	header .right-navigation__container {
		gap: 0;
	}

	header .right-navigation__container .nav-holder {
		gap: 0;
		margin-right: 10px;
		padding-left: 0 !important;
	}

	header .right-navigation__container .nav-holder li {
		margin: 0 7.5px;
	}

	header .right-navigation__container .line {
		margin: 0 15px;
	}

	header .button-group .custom-btn:first-child {
		min-width: 120px;
	}

}
 /* @media (min-width:280px) and (max-width: 370px){
	.right-navigation .button-group a{
		font-size: 14px !important;
	}
	}  */


@media (max-width:1050px) {
	header .right-navigation__container .nav-holder li {
		margin: 0 10px;
	}

	header .custom-btn, header .right-navigation__container .nav-holder .navlink {
		font-size: 14px;
	}

	header .button-group .custom-btn:first-child {
		min-width: 100px;
	}

	header .right-navigation__container .custom-btn {
		height: 52px !important;
		min-width: 120px;
	}

	header .right-navigation .multi-lang-button {
		height: 66px !important;
		min-width: 110px;
	}

}

@media (max-width:1050px) and (orientation:landscape) {
	header .right-navigation .multi-lang-button, header .right-navigation__container {
		height: 55px !important;
	}

	header .custom-btn, .right-navigation__container .nav-holder .navlink {
		font-size: 12px !important;
	}

	header .right-navigation__container .custom-btn {
		height: 44px !important;
	}

	header .right-navigation {
		gap: 6px !important;
	}

	header .right-navigation__container .nav-holder .navlink svg {
		position: relative;
		top: 2px;
		width: 8px !important;
	}

	header .right-navigation__container .nav-holder li {
		margin: 0 8px !important;
	}

}

@media (max-width:1050px) and (orientation:portrait) {
	header .right-navigation .multi-lang-button, header .right-navigation__container {
		height: 55px !important;
	}

	header .custom-btn, header .right-navigation__container .nav-holder .navlink {
		font-size: 14px !important;
	}

	header .right-navigation__container .custom-btn {
		height: 44px !important;
	}

	header .right-navigation {
		gap: 6px !important;
	}

	header .right-navigation__container .nav-holder .navlink svg {
		position: relative;
		top: 2px;
		width: 8px !important;
	}

	header .right-navigation__container .nav-holder li {
		margin: 0 8px !important;
	}

}

@media (max-width:990px) {
	header {
		padding: 20px 0;
	}

	header .right-navigation {
		gap: 8px;
		flex-direction: row-reverse;
	}

	header .nav-holder.desk {
		display: none;
	}

	header.sticky .right-navigation__container, header .right-navigation__container {
		height: 52px !important;
		padding: 2px !important;
	}

	header .right-navigation__container .custom-btn {
		height: 100% !important;
		min-width: fit-content;
	}

	header .right-navigation .multi-lang-button {
		height: 52px;
		min-width: 80px;
	}

	header .right-navigation .rightIcon {
		display: none;
	}

	header .right-navigation .navdropdown.lang-dropdown {
		left: 50% !important;
		transform: translate(-50%, 55px) !important;
	}

	header .right-navigation .multi-lang-button {
		height: 52px !important;
	}

}

@media (max-width:767px) {
	header .logo {
		max-width: 140px;
	}

	header .right-navigation__container {
		background-color: transparent;
		border: none;
		backdrop-filter: blur(0px);
		-webkit-backdrop-filter: blur(0);
	}

	header .right-navigation__container .line {
		margin: 0 10px;
	}

	header .right-navigation .button-group .custom-btn {
		display: none !important;
	}

	header .right-navigation__container .line {
		display: none !important;
	}

}

/* ---------------
Navigation for smaller devices 
------------------ */
.mobOnly {
	display: none !important;
}

.deskOnly {
	display: inline-block;
}

.toggle-menu, .closeIcon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	width: 36px;
	height: 36px;
}

.toggle-menu:focus, .multi-lang-button:focus {
	outline: none;
	box-shadow: none;
}

.nav-mobile-menu {
	opacity: 0;
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	min-height: 100vh;
	height: 100%;
	background: var(--bg);
	color: var(--white);
	overflow: scroll;
	transition: 0.3s linear;
	z-index: 1099;
}

.nav-mobile-menu .wrapper {
	position: relative;
	padding: 30px 20px 100px;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.nav-mobile-menu .menu-link {
	margin-top: 20px;
	max-width: 320px;
}

.nav-mobile-menu .navList a.active {
	color: var(--green) !important;
}

.nav-mobile-menu .closeIcon {
	position: absolute;
	right: 25px;
	top: 25px;
}

.nav-mobile-menu .navList {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 75px 0 80px;
	font-size: 32px;
	font-weight: bold;
	line-height: 30px;
	letter-spacing: -0.04em;
	text-align: left;
	padding-left: 0;
}

.nav-mobile-menu .navList a {
	color: var(--white) !important;
}

.nav-mobile-menu .navList .sub-menu {
	display: flex;
	flex-direction: column;
	margin-left: 20px;
	margin-top: 10px;
	font-size: 22px;
	line-height: 28px;
	letter-spacing: -0.03em;
}

.nav-mobile-menu .navList .sub-menu a {
	opacity: 0;
}

.nav-mobile-menu .navList .sub-menu a.active {
	color: #03d9af !important;
}

.nav-mobile-menu .menuInfo {
	position: relative;
}

.nav-mobile-menu .menuInfo .brand {
	width: 40px;
	height: 34px;
}

.nav-mobile-menu .menuInfo .social {
	display: flex;
	margin: 20px 0 15px;
}

.nav-mobile-menu .menuInfo .social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: var(--white);
}

.nav-mobile-menu .menuInfo .social a:not(:last-child) {
	margin-right: 10px;
}

.nav-mobile-menu .menuInfo p {
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	letter-spacing: 0em;
	color: #777;
}

.nav-mobile-menu .buttonOnMobile {
	display: none;
}

@media (max-width:990px) {
	.mobOnly {
		display: inline-flex !important;
	}

	.deskOnly {
		display: none !important;
	}

	.nav-mobile-menu.show {
		opacity: 1;
		right: 0;
	}

	.nav-mobile-menu .navList a.disabled {
		opacity: 0.25;
	}

}

@media (max-width:767px) {
	.nav-mobile-menu .navList {
		font-size: 24px;
	}

	.nav-mobile-menu .navList .sub-menu {
		font-size: 18px;
	}

	.nav-mobile-menu .buttonOnMobile {
		display: block;
	}

}

.nav-mobile-menu .navList li {
	opacity: 0;
}

.nav-mobile-menu.show .navList li:nth-child(1) {
	animation: moveItems 0.3s linear 0s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(2) {
	animation: moveItems 0.3s linear 0.25s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(3) {
	animation: moveItems 0.3s linear 0.5s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(3) .sub-menu a:nth-child(1) {
	animation: moveItemsLeft 0.3s linear 0.65s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(3) .sub-menu a:nth-child(2) {
	animation: moveItemsLeft 0.3s linear 0.8s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(3) .sub-menu a:nth-child(3) {
	animation: moveItemsLeft 0.3s linear 0.95s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(3) .sub-menu a:nth-child(4) {
	animation: moveItemsLeft 0.3s linear 1.1s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(4) {
	animation: moveItems 0.3s linear 1.35s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(5) {
	animation: moveItems 0.3s linear 1.6s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(5) .sub-menu a:nth-child(1) {
	animation: moveItemsLeft 0.3s linear 1.75s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(5) .sub-menu a:nth-child(2) {
	animation: moveItemsLeft 0.3s linear 1.9s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(5) .sub-menu a:nth-child(3) {
	animation: moveItemsLeft 0.3s linear 2.05s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(6) {
	animation: moveItems 0.3s linear 2.3s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(6) .sub-menu a:nth-child(1) {
	animation: moveItemsLeft 0.3s linear 2.55s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(6) .sub-menu a:nth-child(2) {
	animation: moveItemsLeft 0.3s linear 2.8s forwards;
}

.nav-mobile-menu.show .navList li:nth-child(6) .sub-menu a:nth-child(3) {
	animation: moveItemsLeft 0.3s linear 3.05s forwards;
}

@keyframes moveItemsLeft {
	0% {
		transform: translateX(-16px);
	}

	30% {
		transform: translateX(-12px);
	}

	50% {
		transform: translateX(-8px);
	}

	80% {
		transform: translateX(-4px);
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}

}

@keyframes moveItems {
	0% {
		transform: translateY(16px);
	}

	30% {
		transform: translateY(12px);
	}

	50% {
		transform: translateY(8px);
	}

	80% {
		transform: translateY(4px);
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}

}

/* ---------------
FOOTER
------------------ */
footer {
	position: relative;
	padding-top: 62px;
	overflow: hidden;
	background: rgba(1, 1, 1, 0.7);
}

footer .footer-tabs {
	position: relative;
	padding-bottom: 72px;
	padding-top: 72px;
	width: 100%;
	z-index: 2;
}

footer .footer-tabs::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(https://cdn.vanarchain.com/vanarchain/footer-line.webp) no-repeat;
	background-size: contain;
	background-position: top center;
	z-index: -1;
}

footer .footer-caption .pl {
	padding-right: 5vw;
}

footer .footer-caption .custom-btn {
	padding: 16px 25px;
	height: 48px;
	line-height: 48px;
	margin-top: 20px;
	border-color: var(--white);
}

footer .footer-caption .custom-btn:hover {
	background-color: white !important;
	color: black !important;
}

footer .footer-caption .custom-btn .icon {
	margin-left: 0;
	margin-right: 10px;
}

footer .footer-caption .custom-btn:hover .icon {
	right: 0;
}

footer .footer-col .footer-logo {
	margin-bottom: 20px;
	width: 65%;
}

footer .footer-heading {
	margin: 0px 0px 32px;
	font-size: 24px;
	font-weight: 600;
	line-height: 24px;
	display: inline-block;
}

footer .footer-tabs-inner ul li:not(:last-child) {
	margin: 0 0 15px;
}

footer .footer-tabs-inner ul li a {
	font-weight: 500;
	letter-spacing: -1%;
	line-height: 16px;
	transition: all 0.2s linear;
	cursor: pointer;
	color: var(--text) !important;
	opacity: 0.7 !important;
}

footer .footer-tabs-inner ul li a:hover {
	opacity: 1 !important;
	color: var(--green) !important;
}

footer .footer-inner__row .col {
	display: flex;
	justify-content: flex-end;
}

footer .social-link a {
	display: flex;
	align-items: center;
	gap: 8px;
}

footer .social-link a:hover {
	opacity: 0.8;
}

footer .social-link__icon {
	width: 20px;
	height: 20px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

footer .social-link__icon svg {
	max-width: 90%;
	max-height: 90%;
}

footer .mob-social-links {
	display: none;
}

footer .mob-social-links li:not(:last-child) {
	margin-right: 16px;
}

footer .mob-social-links a {
	width: 40px;
	height: 40px;
	background: rgba(217, 217, 217, 0.14);
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	transition: 0.5s ease-in-out;
}

footer .mob-social-links a:hover {
	background: var(--green);
}

footer .mob-social-links a:hover svg path {
	fill: rgba(16, 16, 16, 1);
}

footer .bottom-footer {
	position: relative;
	display: flex;
	padding: 50px 0px 36px;
	z-index: 2;
}

footer .bottom-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(https://cdn.vanarchain.com/vanarchain/footer-line.webp) no-repeat;
	background-size: contain;
	background-position: top center;
	z-index: -1;
}

footer .bottom-footer p {
	position: relative;
	z-index: 2;
	position: relative;
	color: #f9f9f9;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	opacity: 0.75;
	opacity: 1;
	padding-right: 20px;
	margin-right: 20px;
}

footer .bottom-footer .content-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

footer .bottom-footer .content-link ul {
	display: flex;
	align-items: center;
	margin-bottom: 0;
	color: #f9f9f9;
}

footer .bottom-footer .content-link ul a {
	transition: all 0.2s linear;
	opacity: 0.7;
	font-size: 14px;
}

footer .bottom-footer .content-link ul a:hover {
	opacity: 1;
	color: var(--green) !important;
}

footer .bottom-footer .content-link li:not(:last-child) {
	margin-right: 28px;
}

footer .bottom-footer .content-link a:hover {
	text-decoration: none !important;
}

@media (max-width:1399px) {
	footer .footer-caption .pl {
		padding-right: 0;
	}

	footer .footer-logo {
		margin-inline: auto;
	}

	footer .footer-caption {
		text-align: center;
		margin-bottom: 50px;
	}

	footer .footer-inner__row .col {
		justify-content: center;
	}

	footer .footer-heading {
		font-size: 20px;
		margin-bottom: 24px;
	}

	footer .footer-tabs-inner ul li:not(:last-child) {
		margin-bottom: 12px;
	}

	footer .social-link-col {
		display: none !important;
	}

	footer .mob-social-links {
		display: flex !important;
		align-items: center;
		justify-content: center;
	}

	footer .bottom-footer .content-link {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	footer .bottom-footer p {
		padding: 0;
		margin: 10px 0 0 0 !important;
	}

}

@media (max-width:1024px) {
	footer {
		padding-top: 42px;
	}

	footer .footer-caption p {
		font-size: 14px;
	}

	footer .bottom-footer {
		flex-direction: column;
		padding: 34px 0 20px;
	}

	footer .bottom-footer .mob-social-links {
		order: 1;
	}

	footer .mob-social-links li:not(:last-child) {
		margin-right: 10px;
	}

	footer .mob-social-links a {
		width: 32px;
		height: 32px;
	}

	footer .bottom-footer p {
		font-size: 14px;
		order: 1 !important;
		margin-right: 0;
		padding-right: 0;
	}

	footer .bottom-footer p::after {
		display: none;
	}

	footer .bottom-footer .brand {
		position: relative;
		top: 0;
		left: 0;
		transform: translate(0, 0);
	}

	footer .bottom-footer .content-link {
		align-items: center;
		flex-direction: column-reverse;
		font-size: 14px;
		order: 2;
	}

	footer .bottom-footer .content-link ul {
		order: 2;
		margin-bottom: 10px !important;
	}

	footer .bottom-footer .content-link li:not(:last-child) {
		margin-right: 10px;
	}

	footer .bottom-footer .mob-social-links {
		margin-top: 20px !important;
		margin-bottom: 20px !important;
	}

	footer .bottom-footer {
		gap: 0;
	}

}

@media (max-width:990px) {
	footer .footer-tabs {
		padding-block: 50px;
	}

	footer .footer-tabs-inner ul li:not(:last-child) {
		margin-bottom: 16px;
	}

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

	footer .footer-tabs-inner ul li a {
		font-size: 14px;
	}

}

@media (max-width:767px) {
	footer .footer-inner__row {
		gap: 15px;
	}

	footer .footer-inner__row .col {
		width: 100%;
		flex: 1 1 100%;
		justify-content: flex-start;
	}

	footer .footer-inner__row .list ul {
		display: flex;
		flex-wrap: wrap;
	}

	footer .footer-tabs-inner ul li {
		position: relative;
		margin-bottom: 10px;
	}

	footer .footer-tabs-inner ul li:not(:last-child) {
		margin-right: 25px;
	}

	footer .footer-tabs-inner ul li:not(:last-child)::before {
		content: "/";
		position: absolute;
		right: -12.5px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 14px;
		font-weight: 300;
		color: var(--white);
		opacity: 0.5;
	}

}

.headOverlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	z-index: 15;
}

.video-holder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.button-group {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* .............. */
.scroll-down {
	position: absolute;
	bottom: 5vh;
	left: 50%;
	transform: translateX(-50%);
	height: 64px;
	width: 40px;
	z-index: 4;
}

@keyframes scroll {
	0% {
		transform: translateY(0px);
	}

	30% {
		transform: translateY(35px);
	}

}

svg #wheel {
	position: relative;
	animation: scroll ease 1s infinite;
}

.community-btn .community-users {
	display: inline-block;
	position: relative;
	margin-right: -30px;
	top: -2px;
}

.button-group.custom-group-button {
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 24px;
}

.community-btn .community-users img {
	display: inline-block;
	position: relative;
}

.community-btn .community-users img:nth-child(2) {
	left: -15px;
}

.community-btn .community-users img:nth-child(3) {
	left: -30px;
}

.community-users img:nth-child(4) {
	left: -45px;
}

@media (max-width:990px) {
	.community-btn .community-users img {
		width: 20px;
	}

	.scroll-down {
		bottom: 2vh;
		height: 36px;
		width: 24px;
	}

}

/* ---------------
VANAR ACADEMY BANNER 
------------------ */
.academy__hero-section {
	position: relative;
	padding: 50px 0;
	width: 100%;
	min-height: 98vh;
	display: flex;
}

.academy__hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(180deg, rgba(1, 1, 1, 0) 19.4%, #010101 98.33%);
	z-index: 1;
}

.academy__hero-section .text-styling {
	display: flex;
	align-items: center;
}

.academy__hero-section .text-styling .text-holder {
	position: relative;
	max-width: 1018px !important;
	margin: 0 auto;
	text-align: center;
	z-index: 2;
}

.academy__hero-section .sc-title {
	margin-bottom: 45px;
}

.academy__hero-section .sc-detail {
	opacity: 0.7 !important;
}

.academy__hero-section .icon svg path {
	fill: var(--black) !important;
}

.academy__hero-section .underline {
	text-decoration: underline;
}

.academy__hero-section .underline:hover {
	text-decoration: none;
}

@media (max-width:990px) {
	.academy__hero-section .sc-title {
		margin-bottom: 20px;
	}

}

/* ---------------
VANAR ACADEMY FEATURES SECTION 
------------------ */
.academy__intro-section .sc-top {
	max-width: 879px;
	margin: 0 auto;
	position: relative;
	padding: 50px 0 !important;
}

.academy__intro-section .sc-top p {
	opacity: 0.8;
	font-size: 20px !important;
	line-height: 24px;
}

.academy__intro-section .sc-top p .focus {
	color: var(--green);
	text-decoration: underline;
	font-weight: bold;
}

.academy__feature-section {
	position: relative;
	padding: 75px 0 !important;
}

.academy__feature-section .sc-top {
	margin-bottom: 50px;
}

.academy__feature-section .column {
	padding: 0px 7.5px !important;
	margin-bottom: 15px;
}

.academy__feature-section .pillar-card {
	padding: 20px 25px;
	position: relative;
	border-radius: 24px;
	border: 1.5px solid rgba(246, 246, 246, 0.08);
	overflow: hidden;
	height: 100%;
	min-height: 350px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	transition: .5s all;
}
.academy__feature-section .pillar-card::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	height: 50%;
	border-radius: 100%;
	background: rgba(3, 217, 175, .84);
	filter: blur(100px);
}
.academy__feature-section .pillar-card:hover{
	border: 1px solid var(--green);
	box-shadow: 0px 0px 34px 0px #50FDDB33 inset;
}
.academy__feature-section .pillar-card .icon-holder {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #50fddb;
	border-radius: 20px;
	margin-bottom: 90px;
}

.academy__feature-section .pillar-card .icon-holder .icon {
	width: 45px;
	height: 45px;
}

.academy__feature-section .pillar-card h4 {
	font-size: 32px !important;
	line-height: 42px !important;
	font-weight: 600 !important;
	margin-bottom: 18px;
	/* letter-spacing: unset; */
}

.academy__feature-section .pillar-card p {
	font-size: 18px;
	line-height: 21.6px;
	font-weight: 400;
	opacity: 0.8;
	/* margin-bottom: 0px; */
}

.academy__feature-section .pillar-card .content {
	padding-right: 40px;
}
@media (max-width:1650px) {
	.academy__feature-section .pillar-card h4 {
		font-size: 28px !important;
		line-height: 35px !important;
	}
	
}

@media (max-width:1400px) {
	.academy__feature-section .pillar-card h4 {
		font-size: 22px;
	}

	.academy__feature-section .pillar-card .content {
		padding-right: 0px;
	}

	.academy__feature-section .pillar-card {
		min-height: 100%;
	}

}

@media (max-width:990px) {
	.academy__feature-section .pillar-card {
		padding: 15px;
	}

	.academy__feature-section .pillar-card h4 {
		font-size: 20px;
		line-height: 25px;
		letter-spacing: unset;
		width: unset;
	}

	.academy__feature-section .pillar-card h4 br {
		display: none;
	}

	.academy__feature-section .pillar-card p {
		font-size: 14px;
		line-height: 21.6px;
		font-weight: 400;
	}

	.academy__feature-section .pillar-card-styling .pillar-card {
		padding: 16px 20px;
	}

	.academy__feature-section .pillar-card .icon-holder {
		width: 60px;
		height: 60px;
		border-radius: 12px;
	}

	.academy__feature-section .pillar-card .icon-holder .icon {
		width: 30px;
	}

	.academy__feature-section .pillar-card-styling {
		margin-bottom: 15px;
	}

}

.academy__choose-section {
	position: relative;
	padding: 50px 0 !important;
}

.academy__choose-section .sc-top {
	max-width: 925px;
	margin: 0 auto 100px;
}

.academy__choose-section .sc-top p {
	opacity: 0.8; font-size: 20px;
}

.academy__intro-section .sc-top a .focus{ text-decoration: underline;}
.academy__intro-section .sc-top a:hover .focus{ text-decoration: none;}

.academy__choose-section .carousel-mask-img {
	-webkit-mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 10%, hsl(0 0% 0% / 1) 90%, hsl(0 0% 0% / 0));
	mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 10%, hsl(0 0% 0% / 1) 90%, hsl(0 0% 0% / 0));
}

.academy__choose-section .testimonial-carousel.rtl {
	margin-bottom: 15px;
}

.academy__choose-section .owlCarouselTest .testimonial-card {
	height: 142px;
}

/* ---------------
VANAR ACADEMY learning SECTION 
------------------ */
.learning__path-section {
	position: relative;
	padding: 75px 0px;
}

/* .learning__path-section .learningpath-carousel .owl-nav {
	top: 45% !important;
	transform: translateY(-50%) !important;
	right: auto !important;
	width: 100%;
}

.learning__path-section .owl-nav button {
	position: absolute;
	background: white !important;
}

.learning__path-section .learningpath-carousel .owl-nav .owl-prev {
	left: -21px;
}

.learning__path-section .learningpath-carousel .owl-nav.disabled {
	display: block !important;
}

.learning__path-section .learningpath-carousel .owl-nav .owl-next {
	right: -21px;
}

.learning__path-section .learningpath-carousel .owl-nav button:hover {
	background: var(--white) !important;
} */

.learning__path-section .learning {
	margin-top: 50px;
}

.learning__path-section .learing-card {
	position: relative;
	border-radius: 40px;
	background: #0e0e0e;
	overflow: hidden;
	box-shadow: 0px 0px 34px 10px #50FDDB1A inset;
	border: 1px solid #50FDDB4D;
	height: 100%;
}
.learning__path-section .sc-para{
	/* opacity: 80%; */
	font-size: 20px;
	gap: 17px;
    display: flex;
    justify-content: center;
	margin-top: 22px;
	align-items: center;
}
.learning__path-section .sc-para .sc-para-detail{
	opacity: 80%;
}
.learning__path-section .sc-para img{
	height: 53px;
	width: 53px;
}
.learning__path-section .disreuptive-link{
	text-decoration: underline !important;
}
.learning__path-section .disreuptive-link:hover{
	text-decoration: none !important;
}

/* .learing-card .learing-card-img {
	height: 394px;
} */
@media (max-width:400px) {
	.learning__path-section .sc-para{
		font-size: 14px !important;
		gap: 14px !important;
	}
}
.learing-card .learing-card-img img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.learing-card .learing-card-content {
	padding: 25px 30px;
}

.learing-card .learing-card-content h3 {
	font-size: 28px !important;
	font-weight: 600;
	line-height: 33.6px;
}

.learing-card .learing-card-content p {
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	margin-bottom: 0px;
}

@media (max-width:1730px) {
	/* .learning__path-section .learningpath-carousel .owl-nav button {
		width: 30px !important;
		height: 30px !important;
	}

	.learning__path-section .learningpath-carousel .owl-nav .owl-prev {
		left: 0;
	}

	.learning__path-section .learningpath-carousel .owl-nav .owl-next {
		right: 0;
	}

	.learning__path-section .owl-nav button svg {
		width: 15px !important;
		height: 15px !important;
	} */

}

@media (max-width:1400px) {
	/* .learing-card .learing-card-img {
		height: 320px;
	} */

}

@media (max-width:1024px) {
	.learning__path-section .learing-card {
		border-radius: 24px;
	}

	/* .learing-card .learing-card-img {
		height: 220px;
	} */

	.learing-card .learing-card-content {
		padding: 20px 15px;
	}

	.learing-card .learing-card-content h3 {
		font-size: 24px !important;
		line-height: 32px;
	}

	.learing-card .learing-card-content h3 br {
		/* display: none; */
	}

	.learing-card .learing-card-content p {
		font-size: 16px;
		line-height: 20px;
	}

}

@media (max-width:1024px) {
	.learing-card .learing-card-content p {
		font-size: 14px;
	}
	
	.learning__path-section .card-material{
		margin-bottom: 15px;
	}
	.learing-card .learing-card-img {
		height: 250px;
	}

}

/* ---------------
VANAR ACADEMY community SECTION 
------------------ */
.community-section {
	position: relative;
	padding: 50px 0;
}

.community-section .vanary-logo {
	border: 1px solid #03d9af;
	border-radius: 40px !important;
}

.community-section .text-holder {
	text-align: left;
	max-width: 681px !important;
}

.community-section .community-txt {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.community-section .community-txt h5 {
	font-size: 28px;
	font-weight: 600;
	line-height: 33px;
}

.community-section .community-txt .active h5 {
	color: var(--green);
}

.community-section .community-txt p {
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	opacity: .8
}

.community-section .token-img {
	display: flex;
	justify-content: end;
	max-width: 900px;
}

@media (max-width:1024px) {
	.community-section .community-txt h5 {
		font-size: 24px;
		line-height: 30px;
	}

	.community-section .community-txt p {
		font-size: 16px;
		line-height: 20px;
	}

}

/* @media screen and (min-width:1100px) and (max-width: 1400px) {
	.community-section .vanary-logo {
		height: 450px !important;
		width: 500px !important;
	}
	
}
@media screen and (min-width:767px) and (max-width:450px){
	.community-section .vanary-logo {
		height: 387px !important;
		width: 427px !important;
	}

} */

/* ---------------
VANAR ACADEMY additional-info-section
------------------ */
.academy-addition__section {
	position: relative;
	padding: 50px 0;
}

.academy-addition__section .academy-news-carousal .owl-nav {
	top: 45% !important;
	transform: translateY(-50%) !important;
	right: auto !important;
	width: 100%;
}

.academy-addition__section .owl-nav button {
	position: absolute;
	background: white !important;
}

.academy-addition__section .academy-news-carousal .owl-nav .owl-prev {
	left: -21px;
}

.academy-addition__section .academy-news-carousal .owl-nav .owl-next {
	right: -21px;
}

.academy-addition__section .academy-news-carousal .owl-nav button:hover {
	background: var(--white) !important;
}

.academy-news-carousal {
	margin-top: 50px;
}

@media (max-width:1730px) {
	.academy-addition__section .academy-news-carousal .owl-nav button {
		width: 30px !important;
		height: 30px !important;
	}

	.academy-addition__section .academy-news-carousal .owl-nav .owl-prev {
		left: 0;
	}

	.academy-addition__section .academy-news-carousal .owl-nav .owl-next {
		right: 0;
	}

	.academy-addition__section .owl-nav button svg {
		width: 15px !important;
		height: 15px !important;
	}

}

.academy-addition__section .academy-events-carousal .owl-nav {
	top: 45% !important;
	transform: translateY(-50%) !important;
	right: auto !important;
	width: 100%;
}

.academy-addition__section .owl-nav button {
	position: absolute;
	background: white !important;
}

.academy-addition__section .academy-events-carousal .owl-nav .owl-prev {
	left: -21px;
}

.academy-addition__section .academy-events-carousal .owl-nav .owl-next {
	right: -21px;
}

.academy-addition__section .academy-events-carousal .owl-nav button:hover {
	background: var(--white) !important;
}

.academy-news-carousal {
	margin-top: 50px;
}

@media (max-width:1730px) {
	.academy-addition__section .academy-events-carousal.owl-nav button {
		width: 30px !important;
		height: 30px !important;
	}

	.academy-addition__section .academy-events-carousal .owl-nav .owl-prev {
		left: 0;
	}

	.academy-addition__section .academy-events-carousal .owl-nav .owl-next {
		right: 0;
	}

	.academy-addition__section .owl-nav button svg {
		width: 15px !important;
		height: 15px !important;
	}

}

.addition-info {
	border: 1px solid rgba(80, 253, 219, 0.302);
	border-radius: 40px;
	padding: 50px;
	margin-top: 50px;
}

.academy-addition__section .feature-additional__card {
	position: relative;
	border-radius: 18px;
	border: 2px solid rgba(246, 246, 246, 0.1);
	background: #0e0e0e;
	padding: 8px 8px 24px;
	overflow: hidden;
	z-index: 0;
}

.feature-additional__card-content {
	padding: 30px 50px;
}

.feature-additional__card .feature-additional__card-content h3 {
	font-size: 28px;
	font-weight: 600;
	line-height: 33.6px;
}

.feature-additional__card .feature-additional__card-content p {
	font-size: 28px;
	font-weight: 600;
	line-height: 33.6px;
}

.feature-additional__card .feature-additional__card-img {
	height: 394px;
}

.feature-additional__card .feature-additional__card-img img {
	object-fit: cover;
	height: 100%;
}

.addition-info__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.addition-info__top .info_listing-btns {
	background-color: #090909 !important;
	border: 1px solid #FFF5F50F !important;
	border-radius: 12px !important;
	padding: 4px;
}

.addition-info__top .info_listing-btns .nav-link {
	color: white !important;
}
.addition-info__top .info_listing-btns .nav-link.active {
	background-color: #01372D !important;
	color: #03D9AF !important;
	border: 0px !important;
	border-radius: 12px;
}
@media (max-width:1100px){
	.addition-info__top .info_listing-btns .nav-link{
		padding: 5px 10px !important;
	}
}

.addition-info__top .info_listing-btns .nav-link:hover {

	/* border: 0px !important; */
	border-color: transparent !important;
}

.addition-info__top p {
	max-width: 650px;
	opacity: .8;
	margin-bottom: 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 29.6px;
	letter-spacing: -0.02em;
}

.info_listing-content {
	margin-top: 100px;
}

@media (max-width:990px) {
	.addition-info {
		padding: 30px 15px;
	}

	.addition-info__top {
		flex-direction: column;
		font-size: 14px;
	}

	.addition-info__top p {
		font-size: 16px;
		line-height: 20px;
	}

	.info_listing-content {
		margin-top: 50px;
	}

}

/* ---------------
VANAR ACADEMY master-section 
------------------ */
.master-hero-section {
	position: relative;
	padding: 50px 0;
}

.master-hero-section .master-bg {
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(../image/master-bg-img.webp) !important;
	background-repeat: no-repeat !important;
	background-size: 100% 100% !important;
	padding: 120px 50px !important;
	border-radius: 40px;
    border: 1px solid #50FDDB4D!important;
}

.master-hero-section .text-holder {
	max-width: 1018px !important;
}

.master-hero-section .button-group {
	margin-top: 38px;
}

@media (max-width:1050px) {
	.master-hero-section .master-bg {
		padding: 80px 40px !important;
	}

}

@media (max-width:767px) {
	.master-hero-section .master-bg {
		padding: 40px 15px !important;
	}

}

/* ---------------
VANAR ACADEMY PARTNERS 
------------------ */
.academy-partner__section {
	position: relative;
	padding: 50px 0 !important;
}

.academy-partner__section .button-group .interested-btn {
	background-color: black !important;
	border: 2px solid #50fddb !important;
	color: #50fddb !important;
}

.academy-partner__section .Partnering {
	justify-content: center;
	margin-top: 70px !important;
}
.academy-partner__section .button-group .interested-btn:hover {
background-color: #03D9AF !important;
color: black !important;
}


.academy-partner__section .section-detail {
	max-width: 833px !important;
	margin: 0 auto !important;
	font-size: 20px !important;
	line-height: 28px !important;
}

.academy-partner__section .Partnering .icon svg path {
	fill: var(--green) !important;
}
.academy-partner__section .Partnering a:hover svg path {
	fill: var(--black) !important;
}

@media (max-width:1050px) {
	.academy-partner__section .section-detail {
		font-size: 16px;
		line-height: 22px;
	}

}

.learning__path-section::before {
	background: linear-gradient(90deg, #9f01ff 21.42%, #fdcf8a 60.71%, #03d9af 100%);
	border-radius: 100%;
	content: "";
	filter: blur(100px);
	height: 360px;
	opacity: 20%;
	position: absolute;
	right: -290px;
	top: -200px;
	width: 50%;
}

.community-section::before {
	background: linear-gradient(90deg, #9f01ff 21.42%, #fdcf8a 60.71%, #03d9af 100%);
	border-radius: 100%;
	content: "";
	filter: blur(100px);
	height: 360px;
	opacity: 20%;
	position: absolute;
	left: -290px;
	top: -200px;
	width: 50%;
}

.brands-branches .academy-partner__section::before {
	background: linear-gradient(90deg, #9f01ff 21.42%, #fdcf8a 60.71%, #03d9af 100%);
	border-radius: 100%;
	content: "";
	filter: blur(100px);
	height: 360px;
	opacity: 20%;
	position: absolute;
	left: -290px;
	top: -200px;
	width: 50%;
}
/* comit for testing  */
/* /////////////////////////////////// */
