/* ==================== [ Root CSS Start ] ==================== */
/* ==================== [ Core Colors ] ==================== */
:root {
	--white: #ffffff;
	--black: #000000;
	--transparent: #0000;
}

/* ==================== [ Brand / Theme ] ==================== */
:root {
	--primary: #FCC829;
	--light-primary: #C1AB69;
	--light-yellow: #FFEDB7;
	--secondary: #8B8880;
	--dark: #0D0D0D;
	--body: #FAFAEF;
	--gray: #999999;
}

/* ==================== [ Fonts ] ==================== */
:root {
	--font-primary: "Inter", sans-serif;
	--font-secondary: "Manjari", sans-serif;
}

/* ==================== [ Layout / Container ] ==================== */
:root {
	--container: 100%;
	--container-padding: 1.719vw;
	--row-gutter-space: 1.719vw;
}

/* ==================== [ Typography – Common ] ==================== */
:root {
	--a-color: var(--white);
	--a-hover-color: var(--primary);

	--marker-color: var(--white);

	--blockquote-border-color: var(--primary);
	--blockquote-bg: var(--dark);

	--pre-bg: var(--dark);
	--pre-color: var(--white);
}

/* ==================== [ Table ] ==================== */
:root {
	--table-border: rgba(255, 255, 255, 0.2);

	--table-th-bg: var(--primary);
	--table-th-color: var(--black);

	--table-td-bg: var(--transparent);
	--table-td-color: var(--white);
}

/* ==================== [ Headings ] ==================== */
:root {
	--heading-color: var(--white);
	--heading-font-family: var(--font-secondary);
	--heading-mb: 0.992vw;
	--heading-fw: 700;

	--h1-fs: 5.291vw;
	--h1-lh: 5.291vw;

	--h2-fs: 4.762vw;
	--h2-lh: 104%;

	--h3-fs: 4.432vw;
	--h3-lh: 104%;

	--h4-fs: 3.556vw;
	--h4-lh: 110%;

	--h5-fs: 2.794vw;
	--h5-lh: 115%;

	--h6-fs: 2.032vw;
	--h6-lh: 120%;
}

/* ==================== [ Root CSS End ] ==================== */

/* ==================== [ Brand Global CSS Start ] ==================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	color: var(--white);
	font-family: var(--font-primary);
	font-size: 1.19vw;
	font-style: normal;
	font-weight: 400;
	line-height: 146%;
	background: var(--black);
	overflow-x: hidden;
}

/* ==================== [ Brand Global CSS End ] ==================== */

/* ==================== [ Typography Start ] ==================== */
figure {
	margin: 0;
}

strong {
	font-weight: 700 !important;
}

b {
	color: var(--primary);
}

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

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 66.137vw var(--transparent) inset !important;
	-webkit-text-fill-color: var(--black) !important;
	transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
textarea:autofill,
select:autofill {
	background-color: var(--transparent) !important;
	color: var(--black) !important;
}

a {
	color: var(--a-color);
	word-break: break-word;
	transition: all 0.3s ease-in-out;
}

a:hover {
	color: var(--a-hover-color);
}

p {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin-bottom: 0.992vw;
}

ol,
ul {
	margin-bottom: 0.992vw;
	padding-left: 1.984vw;
}

ol ol,
ol ul,
ul ol,
ul {
	margin-top: 0.662vw;
	margin-bottom: 0.662vw;
}

ol li,
ul li {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

ol li::marker,
ul li::marker {
	color: var(--marker-color);
}

ul li:has(> ul),
ul li:has(> ol) {
	list-style-type: none;
}

blockquote {
	padding: 1.058vw 1.058vw 1.058vw 1.587vw;
	border-left: 0.33vw solid var(--blockquote-border-color);
	margin-bottom: 1.323vw;
	background-color: var(--blockquote-bg);
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

pre {
	background-color: var(--pre-bg);
	padding: 1.058vw;
	overflow: auto;
	font-family: inherit;
	border-radius: 0.794vw;
	position: relative;
	color: var(--pre-color);
}

pre code {
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
	line-height: inherit;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.058vw;
	font-size: inherit;
}

th,
td {
	border: 0.066vw solid var(--table-border);
	padding: 0.529vw 0.794vw;
	text-align: left;
}

th {
	background-color: var(--table-th-bg);
	font-weight: 600;
	font-size: inherit;
	color: var(--table-th-color);
}

td {
	background-color: var(--table-td-bg);
	font-weight: 400;
	font-size: inherit;
	color: var(--table-td-color);
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
	color: var(--primary);
}

h1,
.h1>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h1-fs);
	line-height: var(--h1-lh);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h2,
.h2>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h2-fs);
	line-height: var(--h2-lh);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h3,
.h3>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h3-fs);
	line-height: var(--h3-lh);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h4,
.h4>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h4-fs);
	line-height: var(--h4-lh);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h5,
.h5>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h5-fs);
	line-height: var(--h5-lh);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

h6,
.h6>* {
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	font-size: var(--h6-fs);
	line-height: var(--h6-lh);
	font-weight: var(--heading-fw);
	margin-bottom: var(--heading-mb);
}

hr {
	margin-block: 1.323vw;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
}

textarea {
	resize: none;
}

.typography {
	padding-block: 7.937vw;
}

.typography img {
	max-width: 19.841vw;
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: center;
	margin-bottom: 1.323vw;
}

.typography img.align-left {
	margin-right: 2.645vw;
	float: left;
}

.typography img.align-right {
	margin-left: 2.645vw;
	float: right;
}

.typography img.align-center {
	margin-inline: auto;
	display: block;
}

/* ==================== [ Typography End ] ==================== */

/* ==================== [ Common Start ] ==================== */
.row {
	margin-inline: calc(var(--row-gutter-space) / -2);
	row-gap: var(--row-gutter-space);
}

.row>* {
	padding-inline: calc(var(--row-gutter-space) / 2);
}

.img-cover * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ==================== [ Common End ] ==================== */

/* ==================== [ Common Heading Start ] ==================== */
/* ==================== [ Common Heading End ] ==================== */

/* ==================== [ Button Start ] ==================== */
.btn {
	width: fit-content;
	padding: 1.323vw 2.778vw;
	text-align: center;
	font-family: var(--font-primary);
	font-size: 1.19vw;
	font-weight: 600;
	line-height: 146%;
	border-radius: 0vw;
	border: 0.066vw solid;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.662vw;
	-webkit-border-radius: 0vw;
	-moz-border-radius: 0vw;
	-ms-border-radius: 0vw;
	-o-border-radius: 0vw;
}

.btn-primary {
	color: var(--black);
	background: var(--primary);
	border-color: var(--primary) !important;
}

.btn-primary:is(:hover, :focus-visible, :active, .active) {
	color: var(--primary) !important;
	background-color: var(--transparent) !important;
	border-color: var(--primary) !important;
	box-shadow: none !important;
	outline: 0 !important;
}

/* ==================== [ Button End ] ==================== */

/* ==================== [ Error 404 Start ] ==================== */
.error-404 {
	padding: 5.291vw 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100dvh;
}

.error-404 .heading {
	text-align: center;
}

.error-404 .action * {
	width: fit-content;
	margin: 0 auto;
}

/* ==================== [ Error 404 End ] ==================== */

/* ==================== [ Extra Common Start ] ==================== */
.container-fluid,
.container {
	padding-inline: var(--container-padding);
	margin-inline: auto;
}

.swiper-linear .swiper-wrapper {
	transition-timing-function: linear !important;
}

main {
	padding-top: 8.069vw;
}

/* ==================== [ Extra Common End ] ==================== */


/* ==================== [ Header Start ] ==================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--black);
	z-index: 9;
}

.header .top-bar {
	position: relative;
	width: 100%;
	height: 2.05vw;
	background-color: var(--primary);
}

.header .navbar {
	padding: 1.058vw 5.952vw 1.058vw 5.952vw;
	background-color: var(--black) !important;
	box-shadow: none !important;
}

.header .navbar .navbar-collapse {
	background-color: var(--black);
}

.header .navbar-brand {
	margin: 0;
	padding: 0;
}

.header .navbar-brand img {
	width: 2.976vw;
	height: auto;
}

.header .navbar .navbar-nav {
	gap: 2.646vw;
	margin-top: 0;
}

.header .navbar .nav-link {
	color: var(--white);
	font-size: 1.058vw;
	line-height: 145%;
	letter-spacing: -0.08px;
	font-weight: 500;
	padding: 0;
}

.header .navbar .nav-link:hover,
.header .navbar .nav-link:active,
.header .navbar .nav-link.active {
	color: var(--primary);
}

.navbar-toggler {
	width: 30px;
	height: 22px;
	padding: 0;
	box-shadow: none !important;
	border: none;
}

.navbar-toggler .hamburger {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-direction: column;
	justify-content: space-between;
}

.navbar-toggler .hamburger-toggle {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.navbar-toggler .hamburger span {
	width: 100%;
	height: 3px;
	background-color: var(--white);
	position: relative;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.navbar-toggler .hamburger span:first-child {
	top: 10px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.navbar-toggler .hamburger span:nth-child(2) {
	opacity: 0;
}

.navbar-toggler .hamburger span:last-child {
	margin: 0;
	top: -10px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}

.navbar-toggler.collapsed .hamburger span {
	opacity: 1 !important;
	top: auto !important;
	transform: none !important;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
}

/* ==================== [ Header End ] ==================== */

/* ==================== [ Home Banner Start ] ==================== */
.home-banner {
	position: relative;
}

.home-banner .banner-container {
	/* padding: 17.196vw 0; */
	padding: 6.614vw 0;
	position: relative;
	overflow: hidden;
	/* background: url('../images/thumb/home-banner.webp') no-repeat center	;
	background-size: cover; */
	border-radius: 1.521vw;
	-webkit-border-radius: 1.521vw;
	-moz-border-radius: 1.521vw;
	-ms-border-radius: 1.521vw;
	-o-border-radius: 1.521vw;
}

.home-banner .banner-container .banner-video *{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}

.home-banner .banner-container .content {
	gap: 1.323vw;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	max-width: 52.91vw;
	margin: 0 auto;
	text-align: center;
}

.home-banner .banner-container .content .logo * {
	/* width: 31.085vw; */
	width: 28.085vw;
	height: auto;
}

.home-banner .banner-container .content .title * {
	margin-bottom: 0;
}

.home-banner .banner-container .content .subtitle * {
	font-size: 1.984vw;
	font-weight: 500;
	line-height: 100%;
	margin-bottom: 0;
}

.home-banner .banner-container .content .subdisc * {
	font-weight: 500;
	font-size: 1.323vw;
	line-height: 146%;
	margin-bottom: 0;
}

.home-banner .form-info {
	margin-top: 1.124vw;
	font-weight: 500;
	font-size: 1.124vw;
	line-height: 146%;
	text-align: center;
	color: var(--secondary);
}

.home-banner .form-info a {
	color: var(--secondary);
	text-decoration: underline;
	text-underline-offset: 0.265vw;
}

.home-banner .form-info a:hover {
	color: var(--primary);
}

.home-banner form {
	padding-top: 0.926vw;
}

.form-group {
	display: flex;
	align-items: stretch;
	width: 100%;
}

.form-group .form-control {
	min-width: 26.918vw;
	background-color: var(--light-primary);
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border: 0;
	padding: 1.19vw 1.72vw;
	font-weight: 500;
	font-size: 1.19vw;
	line-height: 146%;
	color: var(--black);
	box-shadow: none;
}

.form-group .form-control::placeholder {
	font-weight: 500;
	font-size: 1.19vw;
	line-height: 146%;
	color: #666666;
	opacity: 1;
}

.waitlist-form {
	position: relative;
}

.waitlist-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.waitlist-feedback {
	min-height: 1.6em;
	margin: 0.728vw 0 0;
	font-size: 1.058vw;
	line-height: 1.5;
	color: var(--secondary);
}

.waitlist-feedback.is-loading {
	color: var(--light-yellow);
}

.waitlist-feedback.is-success {
	color: var(--primary);
}

.waitlist-feedback.is-error {
	color: #ff8f8f;
}

.waitlist-telegram-link {
	margin-top: 0.463vw;
}

.waitlist-form.is-loading .waitlist-submit {
	opacity: 0.7;
	cursor: not-allowed;
}

.waitlist-form.is-complete .form-group,
.waitlist-form.is-complete .form-info,
.waitlist-form.is-complete .waitlist-hp {
	display: none;
}

.waitlist-form.is-complete .waitlist-feedback {
	margin-top: 0;
}


/* ==================== [ Home Banner End ] ==================== */

/* ==================== [ Counter Start ] ==================== */

.counter {
	padding-top: 9.722vw;
	padding-bottom: 3.175vw;
}

.counter-main {
	width: 100%;
	max-width: 74.868vw;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.counter-main .counter-block {
	text-align: center;
}

.counter-main .counter-block .counter-title {
	margin: 0;
}

.counter-main .counter-block .counter-title * {
	color: var(--primary);
	line-height: 70%;
	margin: 0;
}

.counter-main .counter-block .disc {
	width: 100%;
	max-width: 15.079vw;
	margin: 0 auto;
}

.counter-main .counter-block .disc * {
	margin: 0;
	text-transform: uppercase;
}

.counter-main .counter-block .disc span {
	color: var(--primary);
}

/* ==================== [ Counter End ] ==================== */

/* ==================== [ Wallet Start ] ==================== */

.wallet .wallet-wrapper {
	padding: 22.354vw 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.wallet .wallet-wrapper:before {
	content: none;
}

.wallet .wallet-wrapper .wallet-video-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.wallet .wallet-wrapper .wallet-video-bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wallet .wallet-main {
	position: relative;
	z-index: 1;
}

.wallet .wallet-main {
	width: 100%;
	max-width: 80.291vw;
	margin: 0 auto;
}

.wallet .wallet-main .row {
	align-items: center;
}

.wallet-main .wallet-img img {
	width: 38.757vw;
	height: auto;
}

.wallet-main .wallet-content {
	width: 100%;
	max-width: 36.376vw;
	margin-left: auto;
}

.wallet-main .wallet-content ul li {
	margin-bottom: 0.926vw;
}

/* ==================== [ Wallet End ] ==================== */

/* ==================== [ Work Start ] ==================== */

.work .work-wrapper {
	padding: 13.228vw 0;
	position: relative;
	z-index: 1;
}

.work .work-wrapper::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/thumb/work-bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
	border-radius: 4.894vw;
	-webkit-border-radius: 4.894vw;
	-moz-border-radius: 4.894vw;
	-ms-border-radius: 4.894vw;
	-o-border-radius: 4.894vw;
}

.work-wrapper .work-main {
	width: 100%;
	max-width: 78.571vw;
	margin: 0 auto;
}

.work-wrapper .work-main>*:nth-child(even) .row {
	flex-direction: row-reverse;
}

.work-main .work-block:not(:last-child) {
	margin-bottom: 12.302vw;
}

.work-block .row {
	align-items: center;
}

.work-block .work-block-content {
	width: 100%;
	max-width: 36.376vw;
}

.work-wrapper .work-main>*:nth-child(even) .row .work-block-content {
	margin-left: auto;
}

.work-wrapper .work-main>*:nth-child(even) .row .work-img {
	text-align: left;
}

.work-block .work-block-content ul li:not(:last-child) {
	margin-bottom: 14.001px;
}

.work-block .work-img {
	text-align: right;
}

.work-block .work-img img {
	width: 35.384vw;
	height: auto;
	border-radius: 6.283vw;
	-webkit-border-radius: 6.283vw;
	-moz-border-radius: 6.283vw;
	-ms-border-radius: 6.283vw;
	-o-border-radius: 6.283vw;
}

/* ==================== [ Work End ] ==================== */

/* ==================== [ Contact Start ] ==================== */

.contact .contact-main {
	padding: 10.119vw 0;
	position: relative;
	z-index: 1;
	max-width: 83.995vw;
	margin-inline: auto;
}

.contact .contact-main:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/thumb/your-money.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
	border-radius: 4.431vw;
	-webkit-border-radius: 4.431vw;
	-moz-border-radius: 4.431vw;
	-ms-border-radius: 4.431vw;
	-o-border-radius: 4.431vw;
}

.contact-main .contact-block {
	width: 100%;
	max-width: 57.407vw;
	margin: 0 auto;
}

.contact-main .contact-block .title * {
	color: var(--light-yellow);
	margin-bottom: 0.728vw;
}

.contact-main .contact-block .disc * {
	margin-bottom: 0.728vw;
}

.contact-main .contact-block form {
	width: 100%;
	max-width: 40.542vw;
	margin-top: 1.124vw;
}

.contact-main .contact-block .form-info {
	margin-top: 1.124vw;
	font-weight: 500;
	font-size: 1.323vw;
	line-height: 146%;
	color: var(--secondary);
}

/* ==================== [ Contact End ] ==================== */

/* ==================== [ Send-Text CSS Start  ] ==================== */

.send-text {
	padding: 12.235vw 0 9.325vw 0;
}

.send-text-wrp {
	width: 100%;
	max-width: 76.455vw;
	margin: 0 auto;
}

.send-text-wrp .send-text-top {
	position: relative;
	width: fit-content;
	margin: 0 auto;
}

.send-text-wrp .send-text-top .send-text-main-img {
	padding: 0 0 0 4.563vw;
}

.send-text-wrp .send-text-top .send-text-main-img img {
	width: 71.759vw;
	height: auto;
	display: block;
	border-radius: 3.307vw;
	-webkit-border-radius: 3.307vw;
	-moz-border-radius: 3.307vw;
	-ms-border-radius: 3.307vw;
	-o-border-radius: 3.307vw;
}

.send-text-wrp .send-text-top .send-text-block-container {
	position: absolute;
	bottom: -3.968vw;
	left: 0;
}

.send-text-wrp .send-text-top .send-text-block-container .amount-block {
	width: fit-content;
	padding: 1.72vw 2.249vw;
	background: var(--primary);
}

.send-text-wrp .send-text-top .send-text-block-container .amount-block {
	margin-bottom: 1.323vw;
	border-radius: 3.307vw;
	-webkit-border-radius: 3.307vw;
	-moz-border-radius: 3.307vw;
	-ms-border-radius: 3.307vw;
	-o-border-radius: 3.307vw;
}

.send-text-wrp .send-text-top .send-text-block-container .amount-block * {
	color: var(--black);
	margin-bottom: 0;
}

.send-text-wrp .send-text-top .send-text-block-container .payment-block {
	width: 100%;
	max-width: 30.489vw;
	padding: 2.844vw 3.638vw 2.844vw 1.984vw;
	display: flex;
	align-items: center;
	background: linear-gradient(180deg, #678CB7 0%, #737373 100%);
	border-radius: 2.381vw;
	-webkit-border-radius: 2.381vw;
	-moz-border-radius: 2.381vw;
	-ms-border-radius: 2.381vw;
	-o-border-radius: 2.381vw;
}

.send-text-wrp .send-text-top .send-text-block-container .payment-block .block-content * {
	margin-bottom: 0;
}

.send-text-wrp .send-text-top .send-text-block-container .payment-block .block-img {
	width: 5.357vw;
	height: 5.357vw;
	min-width: 5.357vw;
	margin-right: 1.19vw;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.send-text-wrp .send-text-top .send-text-block-container .payment-block .block-img * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.send-text-wrp .send-text-content {
	width: 100%;
	max-width: 70.767vw;
	margin: 0 auto;
	padding-top: 7.937vw;
	text-align: center;
}

.send-text-wrp .send-text-content .detail *:last-child {
	margin-bottom: 0;
}

.send-text-wrp .send-text-content .detail span {
	color: var(--primary);
}

/* ==================== [ Send-Text CSS End ] ==================== */


/* ==================== [ Revolution CSS Start ] ==================== */

.revolution {
	padding: 9.325vw 0 5.952vw;
}

.revolution .revolution-img img {
	width: 100%;
	height: 33.532vw;
}

.revolution-wrp {
	width: 100%;
	max-width: 55.225vw;
	margin: 2.646vw auto 0;
	text-align: center;
}

.revolution .revolution-wrp .subtitle * {
	font-family: 'Manjari', sans-serif;
	font-weight: 700;
	font-size: 2.249vw;
	line-height: 2.183vw;
	letter-spacing: 0.132vw;
	color: var(--white);
	margin-bottom: 1.984vw;
}

.revolution .revolution-wrp .title * {
	margin-bottom: 0;
}

.revolution .revolution-wrp .title {
	margin-bottom: 1.984vw;
}

.revolution .revolution-wrp .detail *:last-child {
	margin-bottom: 0;
}

/* ==================== [ Revolution CSS End ] ================== */




/* ==================== [ Feature CSS Start ] ==================== */

.features {
	padding: 5.952vw 0;
}

.features-wrp {
	width: 100%;
	max-width: 82.804vw;
	margin: 0 auto;
}

.features-wrp .row {
	margin: 0 -0.86vw;
}

.features-wrp .row>* {
	padding: 0 0.86vw;
}

.feature-block {
	width: 100%;
	height: 100%;
	padding: 0.066vw;
	border-radius: 2.249vw;
	overflow: hidden;
	position: relative;
	-webkit-border-radius: 2.249vw;
	-moz-border-radius: 2.249vw;
	-ms-border-radius: 2.249vw;
	-o-border-radius: 2.249vw;
}

.feature-block::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0.066vw;
	z-index: 0;
	background: linear-gradient(180deg, #2E2E2E 0%, #000000 100%);
}

.feature-inner-block {
	width: 100%;
	height: 100%;
	padding: 3.175vw 2.513vw 0 2.513vw;
	text-align: center;
	border-radius: 2.249vw;
	background-color: var(--dark);
	-webkit-border-radius: 2.249vw;
	-moz-border-radius: 2.249vw;
	-ms-border-radius: 2.249vw;
	-o-border-radius: 2.249vw;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.feature-block .block-content .block-title * {
	font-size: 2.249vw;
	line-height: 2.183vw;
	letter-spacing: 0.132vw;
	color: var(--white);
	margin-bottom: 0.463vw;
}

.feature-block .block-content .details * {
	font-size: 1.124vw;
	line-height: 1.653vw;
	color: var(--gray);
	margin: 0;
}

.feature-inner-block .block-img {
	width: 100%;
	height: auto;
	margin: 3.042vw auto 0;
}

.feature-inner-block .block-img * {
	width: 17.593vw;
	height: 9.722vw;
}

/* ==================== [ Feature CSS End ] ==================== */

/* ==================== [ Series CSS Start ] ==================== */

.series {
	padding-top: 7.937vw;
}

.series .series-wrp {
	width: 100%;
	max-width: 83.995vw;
	padding: 7.143vw 5.093vw 7.143vw 0;
	margin: 0 auto;
	background: url(../images/thumb/series-img.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 4.431vw;
	-webkit-border-radius: 4.431vw;
	-moz-border-radius: 4.431vw;
	-ms-border-radius: 4.431vw;
	-o-border-radius: 4.431vw;
}

.series-wrp .series-content {
	width: 100%;
	max-width: 59.854vw;
	margin: 0 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.series-wrp .series-content .series-play-btn .play-btn {
	display: block;
	width: 5.423vw;
	height: 4.63vw;
	margin: 0 7.143vw 0 0;
}

.series-wrp .series-content .series-play-btn .play-btn img {
	width: 100%;
	height: 100%;
}

.series-wrp .series-content .series-right-content {
	width: 100%;
	max-width: 48.148vw;
}

.series-wrp .series-content .series-right-content .title * {
	color: var(--light-yellow);
	margin-bottom: 1.124vw;
}

.series-wrp .series-content .series-right-content .content *:not(:last-child) {
	margin-bottom: 1.124vw;
}

.series-wrp .series-content .series-right-content .content * span {
	color: var(--primary);
}

.series-wrp .series-content .series-right-content .content *:last-child {
	margin-bottom: 0;
}

.series-wrp .series-content .series-right-content .content {
	margin-bottom: 1.124vw;
}

/* ==================== [ Series CSS End ] ==================== */

/* ==================== [ Footer CSS Start ] ==================== */

.footer {
	padding: 10.582vw 0 5.952vw 0;
	background-color: var(--black) !important;
	color: var(--white) !important;
}

.footer .footer-wrp {
	width: 100%;
	max-width: 38.36vw;
	margin: 0 auto;
}

.footer .footer-wrp .footer-logo {
	display: block;
	width: fit-content;
	margin: 0 auto 1.984vw auto;
}

.footer .footer-wrp .footer-logo img {
	width: 31.085vw;
	height: auto;
	margin: 0 auto;
}

.footer .footer-wrp .detail {
	text-align: center;
	margin-bottom: 6.283vw;
}

.footer .footer-wrp .detail * {
	font-weight: 500;
	font-size: 1.323vw;
	line-height: 1.587vw;
	letter-spacing: 0.017vw;
}

.footer .footer-wrp .f-social-link ul {
	list-style: none;
	padding: 0;
	margin: 0 0 2.183vw 0;
	display: flex;
	align-items: center;
	justify-self: center;
	gap: 3.439vw;
}

.footer .footer-wrp .f-social-link ul li a {
	display: block;
	font-size: 1.984vw;
	color: var(--white);
	width: 2.646vw;
	height: auto;
}

.footer .footer-wrp .f-social-link ul li a svg {
	width: 100%;
	height: 100%;
}

.footer .footer-wrp .f-social-link ul li a:hover {
	color: var(--primary);
}

.footer .footer-wrp .f-link ul {
	list-style: none;
	padding: 0;
	margin: 0 0 2.183vw 0;
	display: flex;
	align-items: center;
	justify-self: center;
	gap: 1.389vw;
}

.footer .footer-wrp .f-link ul li a {
	font-weight: 400;
	font-size: 0.992vw;
	line-height: 1.389vw;
	text-decoration: none;
}

.footer .footer-wrp .f-link ul li a:hover {
	color: var(--primary);
}

.footer .footer-wrp .f-copy * {
	font-size: 0.794vw;
	line-height: 0.992vw;
	text-align: center;
	color: var(--gray);
}

.footer .footer-wrp .f-copy a {
	text-decoration: none;
}

.footer .footer-wrp .f-copy a:hover {
	color: var(--body);
}

/* ==================== [ Footer CSS End ] ==================== */
