/*======================== Basic css ==========================*/
html {
	font-size: 62.5%;
}

:root {
	scroll-behavior: unset;
	--manrope: "Manrope", sans-serif;
	--figtree: "Figtree", sans-serif;
	--black: #000;
	--body-color: #0C0B15;
	--dark: #13121C;
	--white: #FFF;
	--gray: rgba(255, 255, 255, 0.65);
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: inherit;
}

img {
	max-width: 100%;
}

/* body */
body {
	font-family: var(--manrope);
	font-size: 1.6rem;
	font-weight: 400;
	background: var(--body-color); 
	color: var(--white);
}

/* container */
.container {
	max-width: 1320px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.header_area .container {
	max-width: 1430px;
}

/*====================== Header area start ========================*/
.header_area {
	width: 100%;
	display: block;
	background: rgba(33, 37, 41, 0.99);
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	backdrop-filter: blur(2.7rem);
	padding: 0.5rem 0;
	-webkit-transition: background 0.3s;
	-o-transition: background 0.3s;
	transition: background 0.3s;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1024;
}

.header_area.header_fixed {
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: 0rem 0.5rem 1rem 0rem #43434A;
}

.header_main {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header_logo img {
	max-width: 27.1rem;
}

.header_menu ul {
	display: flex;
	align-items: center;
}

.header_menu ul li a  {
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	color: rgba(255, 255, 255, 0.60);
	display: inline-block;
	margin: 0 2.2rem;
	position: relative;
}

.header_menu ul li:hover a,
.header_menu ul li.active a {
	color: var(--white);
}

.header_menu ul li a::after {
	content: "";
	width: 0%;
	height: 0.2rem;
	display: block;
	background: linear-gradient(98deg, #EFB1FF 6.1%, #EE72FF 69.11%, #ED50FF 103.66%), linear-gradient(98deg, #40B8FF 6.1%, #819CFF 103.66%), linear-gradient(98deg, #EFB1FF 6.1%, #ED50FF 103.66%);
	border-radius: 2rem 2rem 0rem 0rem;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -3.125rem;
	transition: 0.2s all ease;
}

.header_menu ul li:hover a::after,
.header_menu ul li.active a::after {
	width: 100%;
}

.header_btn a {
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 600;
	color: var(--black);
	background: var(--white);
	display: inline-block;
	padding: 0.8rem 1.4rem;
	border-radius: 1rem;
	transition: 0.2s all ease;
}

.header_btn a img {
	width: 2.4rem;
	margin-left: 2rem;
}

.header_btn a:hover {
	opacity: 0.85;
}


/*Hamburger menu*/
.hamburger-menu {
	cursor: pointer;
	position: relative;
	display: none;
	z-index: 999;
}

.hamburger-menu span {
	background: var(--white);
	width: 3rem;
	height: .3rem;
	display: block;
	margin: .5rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.hamburger-menu:hover .line-top {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.hamburger-menu:hover .line-bottom {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}

.hamburger-menu .line-top.current {
	-webkit-transform: translateY(200%) rotate(135deg);
	-ms-transform: translateY(200%) rotate(135deg);
	transform: translateY(200%) rotate(135deg);
}

.hamburger-menu .line-center.current {
	opacity: 0;
}

.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-325%) rotate(-135deg);
	-ms-transform: translateY(-325%) rotate(-135deg);
	transform: translateY(-325%) rotate(-135deg);
}

/*ofcanvas menu*/
.ofcavas-menu {
	position: fixed;
	width: 100%;
	height: 100vh;
	background: var(--body-color);
	z-index: -1;
	top: 0;
	display: none;
	left: -110%;
	transition: .3s;
}

.ofcavas-menu.current {
	left: 0;
}

.ofcavas-menu ul {
	margin-top: 12rem;
	display: block;
}

.ofcavas-menu li {
	padding: 0.5rem 0 2rem;
}

.ofcavas-menu a {
	margin: 0!important;
	font-size: 1.85rem!important;
}

/*============ Page loader CSS ============*/
#preloader {
	position: fixed;
	background: var(--body-color); 
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader3 {
	width: 5.4rem;
	height: 5.4rem;
	display: inline-block;
	padding: 0;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5.4rem;
	height: 5.4rem;
	border-radius: 100%;
	background: linear-gradient(#E652F8, #2020E0);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
	0% {
		transform: scale(0, 0);
		opacity: 0.8;
	}

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

@-webkit-keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		-webkit-transform: scale(1, 1);
		opacity: 0;
	}
}


/*============ return-to-top ============*/
.back-to-top {
	width: 5rem;
	height: 5rem;
	line-height: 4.8rem;
	background: linear-gradient(to top, #2020E1, #AB36F7);
	color: var(--white);
	font-size: 1.8rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3rem;
	right: 3rem;
	border-radius: 50%;
	z-index: 1000;
	transition: 0.2s all ease;
}

.back-to-top:hover {
	color: var(--white);
	box-shadow: 0 0 2.5rem #AB36F7;
}

/*======================== hero_area start ==========================*/
.hero_area {
	background-color: var(--body-color); 
	background-image: url(../images/hero_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 10.2rem 0 15.6rem;
}

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

.hero_left h6 {
	font-family: var(--figtree);
	font-size: 1.6rem;
	font-weight: 600;
	background: linear-gradient(98deg, #EFAEFF 15%, #ED58FF 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.8rem;
	text-transform: uppercase;
}

.hero_left h3 {
	font-family: var(--figtree);
	font-size: 4.8rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.2rem;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 1.4rem;
}

.hero_left p {
	font-family: var(--figtree);
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	color: var(--gray);
	margin: 5rem 0 9rem;
}
 
.hero_left a {
	font-family: var(--figtree);
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 600;
	color: var(--black);
	background: var(--white);
	display: inline-block;
	padding: 0.8rem 1.4rem;
	border-radius: 1rem;
	transition: 0.2s all ease;
}

.hero_left a img {
	max-width: 2.4rem;
	margin-left: 5.6rem;
}

.hero_left {
	max-width: 52rem;
	width: 100%;
	padding-bottom: 15rem;
}

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

.hero_left a:hover {
	opacity: 0.85;
}

/* scroll_down */
.scroll_down {
	margin-top: 3rem;
}

.scroll_dbtn .mouse {
	width: 2.1rem;
	height: 3.2rem;
	display: inline-block;
	border-radius: 5rem;
	border: 0.2rem solid #FEFEFE;
	position: relative;
	margin-right: 1.5rem;
}

.scroll_dbtn .move {
	width: 0.7rem;
	height: 1rem;
	background-color: #7D9BFE;
	border-radius: 3rem;
	left: 52%;
	transform: translateX(-50%);
	animation: move 2s linear infinite;
	position: absolute;
}

@keyframes move {
	0% {
		transform: translate(-50%, 0rem);
		opacity: 0;
	}

	50% {
		transform: translate(-50%, 1rem);
		opacity: 1;
	}

	100% {
		transform: translate(-50%, 2rem);
		opacity: 0;
	}
}

.scroll_down a {
	width: 15rem;
	display: flex;
	align-items: center;
	font-family: var(--figtree);
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	color: var(--gray);
	transition: 0.2s all ease;
}

.scroll_down a:hover {
	color: var(--white);
}

/*======================= public_area start =========================*/
.public_area {
	background: #13121C; 
	padding-left: calc((100% - 1290px) / 2);
}

.public_right img {
	width: 100%;
}

.public_left {
	padding-top: 4rem;
}

.public_left h6 {
	font-family: var(--figtree);
	font-size: 1.6rem;
	font-weight: 600;
	background: linear-gradient(98deg, #EFB1FF 6.1%, #ED50FF 103.66%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.8rem;
	text-transform: uppercase;
}

.public_left h3 {
	font-family: var(--figtree);
	font-size: 3.4rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.2rem;
	color: #FFF;
	margin: 1.6rem 0 4rem;
}

.public_number {
	padding-bottom: 4rem;
	display: flex;
	align-items: center;
}

.number_cnt p {
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	color: var(--white);
	margin-bottom: 0.4rem;
}

.number_cnt {
	padding-right: 2.7rem;
}

.number_cnt h4 {
	font-size: 3.6rem;
	font-weight: 500;
	background: linear-gradient(98deg, #40B8FF 6.1%, #819CFF 103.66%); 
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.number_cnt2 {
	padding-left: 2.6rem;
	border-left: 1px solid rgba(217, 217, 217, 0.17);
}

.number_cnt2 h4 {
	background: linear-gradient(98deg, #EFB1FF 6.1%, #ED50FF 103.66%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media screen and (min-width: 1200px) and (max-width: 1320px) {
	.public_area {
		padding-left: 15px;
	}

}

/*===================== feature_area start =======================*/
.feature_area {
	padding: 9.8rem 0 11.3rem;
}

.feature_upper img {
	max-width: 64.5rem;
	display: block;
	margin: 0 auto;
}

.feature_upper h3 {
	font-family: var(--figtree);
	font-size: 4rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.2rem;
	color: var(--white);
	text-align: center;
	margin-top: -4.8rem;
}

.feature_item {
	background-image: url(../images/feature_bg1.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 1rem;
	padding: 2.8rem 3.4rem;
	margin-top: 3.6rem;
}

.feature2 {
	background-image: url(../images/feature_bg2.png);
}

.feature_item img {
	max-width: 6.5rem;
}

.feature_item h4 {
	font-family: var(--figtree);
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.05rem;
	color: var(--white);
	margin-bottom: 0;
	margin-top: 2rem;
}

.feature_main {
	padding-top: 3rem;
}

.feature_main .row {
    margin-right: -1.25rem;
    margin-left: -1.25rem;
}

.feature_main .row>* {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
}

/*==================== blog_area start ======================*/
.blog_area {
	background: #13121C; 
	padding: 8.6rem 0 5.8rem;
	position: relative;
}

.blog_upper h6 {
	font-family: var(--figtree);
	font-size: 1.6rem;
	font-weight: 600;
	text-transform: uppercase;
	background: linear-gradient(98deg, #EFB1FF 6.1%, #ED50FF 103.66%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.blog_upper h4 {
	font-family: var(--figtree);
	font-size: 4rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.2rem;
	color: var(--white);
	margin: 0.6rem 0;
}

.blog_upper h4 img {
	max-width: 6.5rem;
	position: relative;
	right: -2.6rem;
	top: 2.4rem
}

.blog_upper p {
	font-family: var(--figtree);
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	max-width: 62.8rem;
	width: 100%;
	color: var(--gray);
	margin-bottom: 2.5rem;
}

.blog_button {
	display: flex;
	align-items: center;
	justify-content: space-between;
} 

.blog_button h5 {
	font-family: var(--figtree);
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.818px;
	color: var(--white);
	display: flex;
	align-items: center;
}

.blog_button h5 span {
	display: inline-block;
	margin: 0 1.2rem;
}

.blog_button h5 img {
	max-width: 3.5rem;
}

.blog_btn a {
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 600;
	color: var(--black);
	background: var(--white);
	display: inline-block;
	padding: 0.8rem 1.4rem;
	border-radius: 1rem;
	transition: 0.2s all ease;
}

.blog_btn a img {
	max-width: 2.4rem;
	margin-left: 4.5rem;
}

.blog_btn a:hover {
	opacity: 0.85;
}

.success_text img {
	max-width: 42rem;
	position: absolute;
	right: 0;
	top: 11.5rem;
}

.blog_main {
	padding-top: 5.5rem;
}

.blog_item {
	background: #1A1923;
	padding: 1.7rem 1.7rem;
	border-radius: 1rem;
}

.blog_item img {
	width: 100%;
	border-radius: 1rem;
}

.blog_cnt {
	padding: 0rem 1.4rem 1.4rem;
}

.blog_cnt h4 {
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.1rem;
	color: #FFF;
	margin: 2rem 0;
}

.blog_cnt p {
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	color: #FFF;
	margin-bottom: 0.4rem;
}

.blog_cnt h3 {
	font-size: 3.6rem;
	font-weight: 500;
	background: linear-gradient(98deg, #EFB1FF 6.1%, #ED50FF 103.66%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0;
}

.blog_bottom {
	padding-top: 4.4rem;
}

.blog_bottom p {
	font-family: var(--figtree);
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.05rem;
	color: var(--white);
	text-align: center;
}

.owl-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2.2rem;
}

.owl-dot {
	background: none;
	border: none;
	outline: none;
	display: inline-block;
	margin: 0 0.3rem;
}

.owl-dot span {
	width: 2.5rem;
	height: 0.7rem;
	display: inline-block;
	background: #5C5C62;
	border-radius: 0.2rem;
}

.owl-dot.active span {
	background: linear-gradient(to right, #EFB0FF, #ED5DFE);
}

/*==================== monitor_area start ========================*/
.monitor_area {
	background: var(--body-color);
	padding: 11.3rem 0 11.8rem;
}

.monitor_upper img {
	max-width: 79.2rem;
}

.monitor_upper h4 {
	font-family: var(--figtree);
	font-size: 4rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.2rem;
	color: var(--white);
	text-align: center;
	max-width: 59.8rem;
	width: 100%;
	margin: 0 auto;
	margin-top: -6rem;
}

.monitor_upper h4 span {
	color: #EFB1FF; 
}

.monitor_main .row {
    margin-right: -1rem;
    margin-left: -1rem;
}

.monitor_main .row>* {
    padding-right: 1rem;
    padding-left: 1rem;
}

.monitor_item {
	width: 100%;
	background: #13121C;
	padding: 2.5rem 2.6rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	transition: 0.2s all ease;
}

.monitor_item:hover {
	background: linear-gradient(98deg, #EFB1FF 6.1%, #ED50FF 103.66%); 
}

.monitor_item img {
	max-width: 5rem;
	border-radius: 50%;
	margin-right: 1.5rem;
}

.monitor_item span {
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.1rem;
	color: var(--white);
}

.monitor_item:hover span {
	color: #0C0B15; 
}

.monitor_item {
	margin-bottom: 1.8rem;
}

.monitor_main {
	padding-top: 4.2rem;
}

.monitor_bottom {
	padding-top: 3.5rem;
}

.monitor_bottom a {
	font-family: var(--figtree);
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.1rem;
	color: var(--white);
	text-align: center;
}

.monitor_bottom a span {
	font-weight: 700;
	background: linear-gradient(98deg, #EFB1FF 6.1%, #ED50FF 103.66%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	margin-right: 0.8rem;
}

.monitor_bottom img {
	max-width: 20.2rem;
	display: block;
	margin: 0 auto;
}

/*====================== subscription_area start =========================*/
.subscription_area {
	background-image: url(../images/subscription_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 7.5rem 0 8rem;
}

.subscript_upper h6 {
	font-family: var(--figtree);
	font-size: 1.6rem;
	font-weight: 600;
	text-transform: uppercase;
	background: linear-gradient(98deg, #EFB1FF 6.1%, #ED50FF 103.66%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 1.3rem;
}

.subscript_upper h3 {
	font-family: var(--figtree);
	font-size: 4rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.2rem;
	color: var(--white);
}

.subscript_main {
	padding: 3.4rem 0 6.5rem;
}

.subscription_box {
	background: #1A1923;
	padding: 1.8rem 2.4rem 2.6rem; 
	border-radius: 1rem;
	position: relative;
}

.subscription_box h6 {
	font-family: var(--figtree);
	font-size: 1.6rem;
	font-weight: 600;
	text-transform: uppercase;
	background: linear-gradient(98deg, #EFB1FF 6.1%, #ED50FF 103.66%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.4rem;
}

.subscription_box p {
	font-family: var(--figtree);
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	color: var(--white);
	margin-bottom: 2rem;
}

.subscription_box ul li {
	font-family: var(--figtree);
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 500;
	color: var(--gray);
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.9rem;
}

.subscription_box ul li img {
	max-width: 1.6rem;
	margin-right: 1rem;
	margin-top: 0.2rem;
}

.subscription_box ul {
	min-height: 32rem;
}
 
.subscription_box h3 {
	font-family: var(--figtree);
	font-size: 4rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.1rem;
	color: var(--white);
} 

.subscription_box h3 span {
	font-family: var(--figtree);
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.60);
}

.subscription_box a {
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 600;
	color: var(--black);
	background: var(--white);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.8rem 1.5rem;
	border-radius: 1rem;
	margin-top: 1.4rem;
	transition: 0.2s all ease;
}

.subscription_box a img {
	max-width: 2.4rem;
}

.subscription_bottom p {
	font-family: var(--figtree);
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	color: var(--gray);
}

.subscription_box a:hover {
	opacity: 0.85;
}

.most_purchase h4 {
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 600;
	text-transform: uppercase;
	color: #47B6FF;
	display: inline-block;
	padding: 0.8rem 1.2rem;
	background: #1D3249; 
	border-radius: 0.64rem;
	position: absolute;
	right: 0rem;
	top: -1.4rem;
}

.most_purchase {
	background-image: url(../images/most_purchase_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.subscription_item {
	padding-top: 1.6rem;
}

.subscript_upper ul {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 2.3rem;
}

.subscript_upper ul li a {
	font-family: var(--figtree);
	font-size: 1.75rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	color: var(--white);
	background: rgba(255, 255, 255, 0.07);
	display: inline-block;
	padding: 0.3rem 0.8rem;
	border-radius: 0.7rem;
	margin-right: 0.8rem;
	transition: 0.2s all ease;
}

.subscript_upper ul li a:focus,
.subscript_upper ul li a:hover {
	color: rgba(20, 16, 41, 0.80); 
	background: linear-gradient(98deg, #EFB1FF 6.1%, #ED50FF 103.66%); 
}

/*========================= overview_area start ===========================*/
.overview_area {
	padding: 9rem 0 12rem;
}

.overview_main {
	background-image: url(../images/gradient_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 3.6rem 3rem 8.7rem;
	border-radius: 1rem;
}

.overview_upper img {
	max-width: 50.3rem;
}

.overview_upper p {
	font-family: var(--figtree);
	font-size: 4rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.2rem;
	color: var(--white);
	margin-top: -4rem;
}

.overview_part {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 5.6rem;
}

.overview_cnt h3 {
	font-family: var(--figtree);
	font-size: 6.4rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.05rem;
	color: var(--white);
	text-align: center;
}

.overview_cnt h4 {
	font-family: var(--figtree);
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.05rem;
	color: var(--white);
	text-align: center;
	margin-bottom: 0.6rem;
}

.overview_cnt p {
	font-family: var(--figtree);
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	color: rgba(255, 255, 255, 0.65);
	text-align: center;
	margin: 0;
}

.over_middle {
	padding: 0 4rem;
	margin: 0 6rem;
	border-left: 1px solid rgba(217, 217, 217, 0.17);
	border-right: 1px solid rgba(217, 217, 217, 0.17);
}

/*======================= faq_area start ========================*/
.faq_upper h6 {
	font-family: var(--figtree);
	font-size: 1.6rem;
	font-weight: 600;
	text-transform: uppercase;
	background: linear-gradient(98deg, #EFB1FF 6.1%, #ED50FF 103.66%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.faq_upper h3 {
	font-family: var(--figtree);
	font-size: 4rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.2rem;
	color: var(--white);
	margin: 0.6rem 0 1.3rem;
}

.faq_upper p {
	font-family: var(--figtree);
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

.faq_main {
	padding-top: 3.7rem;
}

.accordion_item {
    padding: 1.5rem 0 1.7rem;
    background: #0C0B15;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.accordion_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
    cursor: pointer;
}

.accordion_inner {
    display: none;
    padding: 1.4rem 0 0.3rem;
    padding-right: 3.6rem;
}

.accordion_title h4 {
	font-family: var(--figtree);
	font-size: 2rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	/* text-transform: lowercase; */
	color: var(--white);
	padding-right: 2rem;
}

.accordion_title img {
	max-width: 3rem;
}

.accordion_title.active img {
	transform: rotate(90deg);
}

.accordion_inner p {
	font-family: var(--figtree);
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 500;
	color: var(--gray);
	line-height: normal;
	max-width: 104.5rem;
	width: 100%;
}

/*===================== footer_area start =======================*/
.footer_area {
	padding: 14.5rem 0 8.3rem;
}

.footer_main {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer_left {
	max-width: 41rem;
	width: 100%;
}

.footer_logo img {
	max-width: 27.1rem;
}

.social_item {
	margin-top: 4rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1.8rem;
}

.social_box a {
	background-image: url(../images/social_boxbg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 1rem;
	padding: 1.4rem 1.4rem;
	display: block;
}

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

.social_box h4 {
	font-size: 1.7rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	color: var(--white);
	margin: 0.8rem 0 0.5rem;
}

.social_box p {
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	color: var(--white);
}

.social_box p span {
	background: linear-gradient(98deg, #EFB1FF 6.1%, #ED50FF 103.66%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.social_box p img {
	max-width: 2rem;
}

.footer_right {
	max-width: 46.4rem;
	width: 100%;
	padding-left: 7.8rem;
	border-left: 1px solid #393D41;
}

.footer_right h4 {
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	color: var(--white);
	margin-bottom: 0.2rem;
}

.footer_menu {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.footer_menu ul li a {
	font-family: var(--figtree);
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	color: rgba(255, 255, 255, 0.60);
	display: inline-block;
	margin-top: 0.8rem;
	transition: 0.2s all ease;
}

.footer_menu ul li a:hover {
	color: var(--white);
}

.footer_btn a {
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 600;
	color: var(--black);
	width: 17.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: auto;
	background: var(--white);
	padding: 0.8rem 1.4rem;
	border-radius: 1rem;
	transition: 0.2s all ease;
	margin-top: 1.2rem;
}

.footer_btn a img {
	max-width: 2.4rem;
}

.footer_btn a:hover {
	opacity: 0.85;
}