@charset "UTF-8";
@import url(./font_bungee.css);
@import url(./font_poppins.css);

:root {
	--color-primary: #1b0821;
	--color-primaryAlpha: rgba(27, 8, 33, 0.3);
	--color-secondary: #ff9600;
	--color-secondaryAlpha: rgba(255, 150, 0, 0.3);
	--color-frame: #280a32;
	--color-light: #E8E8E8;
	--color-text: #fff;
	--color-price: #66b600;
	--color-priceOld: #777777;
	--color-discount: #c50000;
	--color-border: #b5b7b9;
	--color-borderLight: #dde1e9;
	--color-img: #f4f4f4;
}

@media screen and (min-width:768px) {
	::-webkit-scrollbar {
		width: 4px;
		height: 2px;
	}

	::-webkit-scrollbar-track {
		background: #ddd;
		border-radius: 10px;
	}

	::-webkit-scrollbar-thumb {
		background: #666;
		border-radius: 10px;
		width: 12px;
	}

	::-webkit-scrollbar-thumb:hover {
		background: #444;
	}
}

* {
	font-family: 'poppins';
}

html {
	font-size: 14px;
	direction: ltr;
}

@media screen and (max-width:767px) {
	html {
		font-size: 13px;
	}
}

html,
body,
form,
fieldset,
table,
tr,
td,
img,
div {
	font-family: 'poppins' !important;
}

html,
body {
	overflow-x: hidden;
	color: var(--color-text);
	background-color: var(--color-primary);
}

body {
	line-height: normal;
	margin: 0;
}

a {
	color: var(--color-text);
	text-decoration: none;
}

/*----------------------------------------------------------------------
btn
----------------------------------------------------------------------*/
.btn {
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	border-radius: 15px;
	border: none;
}

.btn.btn-flat {
	border: none;
	box-shadow: none;
}

.btn.btn-flex {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn.btn-app-download {
	background-color: var(--color-primary);
	color: #fff;
	border-radius: 15px 15px 0 0;
}

.btn.btn-primary {
	background-color: var(--color-primary);
	color: #fff;
}

.btn.btn-primary.btn-outline {
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	background-color: transparent;
}

.btn.btn-play {
	background-color: transparent;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.btn.btn-play::before {
	content: "\f04b";
}

.btn.btn-gradient {
	background: linear-gradient(40deg, rgba(2, 27, 59, 1) 0%, rgba(1, 71, 159, 1) 28%, rgba(2, 27, 59, 1) 36%, rgba(2, 27, 59, 1) 52%, rgba(2, 27, 59, 1) 67%, rgba(1, 71, 159, 1) 80%, rgba(2, 27, 59, 1) 100%);
	color: #fff;
	border: none;
	border-radius: 5px;
}

.btn-info-light {
	border-radius: 4px;
	border: 2px solid var(--color-secondary);
	background: #FFFFFF8F;
	color: var(--color-secondary);
	min-width: 80px;
}

/*----------------------------------------------------------------------
container
----------------------------------------------------------------------*/
.container {
	width: calc(100% - 440px);
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width:1140px) {
	.container {
		padding: 0 50px;
	}
}

@media screen and (max-width:768px) {
	.container {
		width: calc(100% - 120px);
    	padding: 0 0;
	}
}

@media screen and (max-width:767px) {
	.container {
		width: calc(100% - 60px);
    	padding: 0 0;
	}

	.content-wrapp .content-image-absolute {
		width: 100px !important;
		top: 16px;
	}

	.content-wrapp .content-image-absolute.left {
		left: 0 !important;
	}

	.content-wrapp .content-image-absolute.right {
		right: 0 !important;
	}	

	.content-wrapp .content-inner {
		flex-direction: column-reverse;
		margin-top: 60px;		
	}

	.content-wrapp .content-inner .content-inner-content {
		padding: 0 !important;
		margin-top: 50px;
		text-align: center;		
	}
}

/*----------------------------------------------------------------------
section
----------------------------------------------------------------------*/
section {
	margin-bottom: 120px;
}

.page section {
	margin-bottom: 36px;
}

section .header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
}

section .header.header-center {
	justify-content: center;
}

section .header.header-bordered {
	border-bottom: 1px solid var(--color-borderLight);
	margin-bottom: 20px;
}

section .header .title {
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 500;
	margin: 0;
	display: inline-block;
	position: relative;
	padding: 0 50px;
	color: #666;

}

@media screen and (max-width:768px) {
	section {
		margin-bottom: 50px;
	}

	section .header .title {
		padding: 0;
		font-size: 1.5rem;
		flex-wrap: nowrap;
		display: flex;
		justify-content: space-between;
		text-align: center;
	}
}

.shapes-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 560px;
	background-repeat: no-repeat;
	background-image: url("../images/shapes-top.svg");
	z-index: 0;
}

/*----------------------------------------------------------------------
element hide and show
----------------------------------------------------------------------*/
.showByScroll {
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.showByScroll.element-hide {
	opacity: 0;
	transform: translateY(50px) rotate(15deg);
}
.showByScroll.element-show {
	opacity: 1;
	transform: translateY(0) rotate(0);	
}

/*----------------------------------------------------------------------
page-header
----------------------------------------------------------------------*/
.page-header {
	position: relative;
	width: 100%;
	text-align: center;
	z-index: 1;
}

.page-header .page-header-container {
	height: 66px;
	padding: 10px 36px;
	background: transparent;
	margin-bottom: 10px;
}

.page-header .page-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.page-header .page-header-inner .logo {
	height: 100%;
	margin-right: 15px;
}

.page-header .page-header-inner .logo img {
	height: 100%;
}

.page-header .page-header-inner .nav {
	display: inline-flex;
	align-items: center;
	height: 100%;
	list-style: none;
	padding-right: 96px;
}

.page-header .page-header-inner .nav li a {
	color: var(--color-text);
	padding-left: 64px;
	font-size: 1.3rem;
}

.page-header .page-header-inner .nav li a:hover {
	color: var(--color-secondary);
}

.page-header .page-header-inner li.active a {
	color: var(--color-secondary);
}

.page-header .page-header-inner.actions {
	display: inline-flex;
	align-items: center;
}

.page-header .page-header-inner.actions .btn {
	margin: 0 15px;
}

.page-header .page-header-inner.actions a {
	margin: 0 5px;
}

.page-header .page-header-inner.actions a img {
	width: 42px;
}

.page-header .page-header-container .btn-menu {
	display: none;
	width: 42px;
	height: 42px;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../images/menu.svg");
	cursor: pointer;
}

@media screen and (max-width:768px) {
	.page-header .page-header-container {
		height: 56px;
		padding: 10px 10px;
		box-shadow: 0px 2px 2px 0px #00000040;
		margin-bottom: 10px;
	}

	.page-header .page-header-container nav {
		display: none;
	}

	.page-header .page-header-container .btn-heart {
		display: none;
	}

	.page-header .page-header-container .btn-app-download {
		border-radius: 10px;
	}

	.page-header .page-header-container .btn-menu {
		display: block;
	}
}

@media screen and (max-width:424px) {
	.page-header .page-header-container .btn-app-download {
		display: none;
	}
}


/*----------------------------------------------------------------------
hero-wrapp
----------------------------------------------------------------------*/
.hero-wrapp {
	position: relative;
	height: 560px;
}

.hero-wrapp::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
    height: 2px;
    background-color: #fff;
    box-shadow: 0 0 10px 2px #fff;
}

.hero-wrapp::after {
	content: '';
	position: absolute;
	bottom: -24px;
	left: 0;
	right: 0;
    height: 2px;
    background-color: #fff;
    box-shadow: 0 0 10px 2px #fff;
}

.hero-wrapp .hero-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.hero-wrapp .hero-inner .playnow-btn {
	position: unset;
    transform: unset;
    margin-top: 25px;	
}

.hero-wrapp .hero-inner-image {
	width: 60%;
	height: 100%;
}

.hero-wrapp .hero-inner-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hero-wrapp .hero-inner-content {
    display: flex;
    flex-direction: column;	
	width: 40%;
	padding-left: 55px;
}

.hero-wrapp .hero-inner-content h1 {
	color: var(--color-secondary);
	font-size: 2.2rem;
}

.hero-wrapp .hero-inner-content span {
	line-height: 26px;
	font-size: 1.2rem;
}

@media screen and (max-width:768px) {
	.hero-wrapp {
		height: auto;
	}
	.hero-wrapp .hero-inner {
		flex-direction: column;
	}
	.hero-wrapp .hero-inner-content {
		width: 100%;
		padding: 0 25px;
		text-align: center;		
	}
	.hero-inner-content span {
		text-align: left;
		padding: 0 25px;
		display: inline-block;		
	}
	.hero-wrapp .hero-inner .playnow-btn,
	.hero-wrapp .hero-inner .btn-glow {
		margin-left: auto;
		margin-right: auto;		
	}
	.hero-wrapp .hero-inner-image {
		margin-top: 25px;
		width: 80%;		
	}
	.hero-wrapp .hero-inner .playnow-btn {
		margin-top: 56px !important;
    	margin-bottom: 56px !important;
	}
}

/*----------------------------------------------------------------------
about-wrapp
----------------------------------------------------------------------*/
.about-wrapp {
	position: relative;
}

/*----------------------------------------------------------------------
statistics-wrapp
----------------------------------------------------------------------*/
.statistics-wrapp {
	position: relative;
}
@media screen and(max-width:768px) {
	.statistics-wrapp .content-inner {
		flex-direction: column-reverse;
	}
}

/*----------------------------------------------------------------------
frame
----------------------------------------------------------------------*/
.image-frame,
.frame {
	border-radius: 25px;
	border: 24px solid var(--color-frame);
	box-shadow: 0 0 1px 3px var(--color-secondary), 0 0 18px 5px var(--color-secondary);
}

.frame.frame-circle {
	border-radius: 50%;
}

/*----------------------------------------------------------------------
demarcation
----------------------------------------------------------------------*/
.demarcation {
	position: relative;
	height: 25px;
	margin-bottom: 96px;
}
.demarcation::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
    height: 2px;
    background-color: #fff;
    box-shadow: 0 -4px 8px 2px #fff;
}
.demarcation::after {
	content: '';
	position: absolute;
	bottom: -24px;
	left: 0;
	right: 0;
    height: 2px;
    background-color: #fff;
    box-shadow: 0 4px 8px 2px #fff;
}
.demarcation + section, 
.demarcation + footer {
	/* padding-top: 56px; */
}

/*----------------------------------------------------------------------
content-wrapp
----------------------------------------------------------------------*/
.content-wrapp {
	position: relative;
	margin-bottom: 96px;
}

.content-wrapp .content-title {
	text-align: center;
	font-size: 2.6rem;
	letter-spacing: 8px;
	text-transform: uppercase;
	
}

.content-wrapp .content-image-absolute {
	width: 200px;
}

.content-wrapp .content-image-absolute {
	position: absolute;
	top: -16px;
}

.content-wrapp .content-image-absolute.left {
	left: 10px;
	right: unset;
}

.content-wrapp .content-image-absolute.right {
	right: 10px;
	left: unset;
}

.content-wrapp .content-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.content-wrapp .content-inner .content-inner-image img {
	max-height: 280px;
	padding: 0 18px;
	object-fit: contain;
}

.content-wrapp .content-inner .content-inner-content {
	width: 100%;
}

.content-wrapp .content-inner .content-inner-content.left {
	padding-right: 64px;
}

.content-wrapp .content-inner .content-inner-content.right {
	padding-left: 64px;
}

.content-wrapp .content-inner .content-inner-content .content-name {
	color: var(--color-secondary);
	font-size: 1.3rem;
}

.content-wrapp .content-inner .content-inner-content h2 {
	font-size: 1.7rem;
}

.content-wrapp .content-inner .content-inner-content p {
	line-height: 26px;
    font-size: 1.2rem;
}

/*----------------------------------------------------------------------
inputs-wrapp
----------------------------------------------------------------------*/
.inputs-wrapp {
	display: flex;
	margin-bottom: 64px;
}

.inputs-wrapp.inputs-wrapp-columns {
	flex-direction: column;
}

.inputs-wrapp.inputs-wrapp-rows {
	flex-direction: row;
	justify-content: space-between;
}

.inputs-wrapp .inputs-box {
	display: flex;
	flex-direction: column;
}

.inputs-wrapp .inputs-box label {
	margin-top: 10px;
	margin-bottom: 10px;
}

.inputs-wrapp .inputs-box.inputs-box-center {
	align-items: center;
}

.inputs-wrapp.inputs-wrapp-columns .inputs-box {
	margin-bottom: 10px;
}

.inputs-wrapp.inputs-wrapp-columns .inputs-box:last-child {
	margin-bottom: 0;
}

.inputs-wrapp.inputs-wrapp-rows .inputs-box {
	margin-right: 25px;
}

.inputs-wrapp.inputs-wrapp-rows .inputs-box:last-child {
	margin-right: 0;
}


/*----------------------------------------------------------------------
trailers-wrapp
----------------------------------------------------------------------*/
.trailers-wrapp .image-arrow-down {
	margin-left: -50px;
	width: 267px !important;
}
@media screen and (max-width:768px) {
	.trailers-wrapp .image-arrow-down {
		display: none;
	}	
}


/*----------------------------------------------------------------------
roadmap-wrapp
----------------------------------------------------------------------*/
.roadmap-wrapp {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.roadmap-wrapp .content-title {
	display: none;
}

.roadmap-wrapp .roadmap-title {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 2rem;
	background-color: var(--color-primary);
	z-index: 1;
}

.roadmap-wrapp .roadmap-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 65px;
	justify-items: center;
}

.roadmap-wrapp .roadmap-items .roadmap-item {
	width: 240px;
	height: 240px;
	border-radius: 50% !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

.item-icon {
	width: 64px;
	height: 64px;
	object-fit: contain;
	margin-bottom: 5px;
}

.item-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 10px;
}

.item-description {
	font-size: 0.9rem;
	line-height: 1.4;
	text-align: center;
	width: 80%;
}

.line-with-circle {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.line-with-circle .circle {
	width: 16px;
	height: 16px;
	border: 3px solid #f5a623;
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(245, 166, 35, 0.8);
	background-color: transparent;
}

.line-with-circle .line {
	width: 3px;
	background: #f5a623;
	box-shadow: 0 0 10px rgba(245, 166, 35, 0.8);
}

.line-with-circle.top {
	top: 0;
	left: 50%;
	height: 45%;
	transform: translateX(-50%);
}

.line-with-circle.top .line {
	height: 100%;
}

.line-with-circle.bottom {
	bottom: 0;
	left: 50%;
	height: 45%;
	transform: translateX(-50%);
	flex-direction: column-reverse;
}

.line-with-circle.bottom .line {
	height: 100%;
}

.line-with-circle.left {
	top: 50%;
	left: 0;
	width: 40%;
	transform: translateY(-50%);
	flex-direction: row;
}

.line-with-circle.left .line {
	width: 100%;
	height: 3px;
}

.line-with-circle.right {
	top: 50%;
	right: 0;
	width: 40%;
	transform: translateY(-50%);
	flex-direction: row-reverse;
}

.line-with-circle.right .line {
	width: 100%;
	height: 3px;
}

@media screen and (max-width:767px) {
	.roadmap-wrapp {
		flex-direction: column;
	}
	.roadmap-wrapp .line-with-circle {
		display: none;
	}
	.roadmap-wrapp .roadmap-items {
		grid-template-columns: none;
		gap: 42px;
	}
	.roadmap-wrapp .content-title {
		display: block;
		margin-bottom: 64px;
	}
	.roadmap-wrapp .roadmap-title {
		display: none;
	}	
}

/*----------------------------------------------------------------------
faq-wrapp
----------------------------------------------------------------------*/
.faq-wrapp {
	margin-bottom: 25px;
}

.faq-wrapp .content-inner {
	margin-top: 56px;
}

.faq-wrapp .content-inner-content {
	width: 320px !important;
	margin-left: auto;
	margin-right: auto;
	padding: 5px;
}

.faq-wrapp .content-inner-content a {
	display: block;
	margin-bottom: 15px;
}

.faq-wrapp .content-image-absolute {
	top: 60px;
}

/*----------------------------------------------------------------------
playnow-wrapp
----------------------------------------------------------------------*/
.playnow-wrapp {
	position: relative;
	margin-bottom: 260px;
}

.playnow-wrapp img {
	width: 100%;
}

.playnow-wrapp .image-arrow-up {
	position: absolute;
	bottom: -72px;
	right: 120px;
	width: 267px !important;
}

.playnow-btn {
	position: unset;
    transform: unset;
    margin-top: 25px;
	margin-bottom: 64px;
	width: 160px;
	height: 64px;
	border-radius: 20px;
	box-shadow: inset 0px -5px 2px 2px rgba(0, 0, 0, 0.8), inset 0px 5px 1px 1px rgba(255, 255, 255, 0.8), 0px 0px 1px 2px rgba(255, 255, 255, 1), 0 0 5px 5px rgba(255, 255, 255, 0.4);
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "Bungee";
	font-size: 1.8rem;
	font-weight: bold;
	background-color: var(--color-frame);		
}
.playnow-btn.absolute {
	position: absolute;
	bottom: 92px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
}

.playnow-btn:hover {
	opacity: 0.8;
}

.btn-glow {
	position: unset;
    transform: unset;
    margin-top: 25px;
	margin-bottom: 64px;
	width: 160px;
	height: 64px;
	border-radius: 20px;
	box-shadow: 0 0 1px 3px var(--color-secondary), 0 0 10px 3px var(--color-secondary);	
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "Bungee";
	font-size: 1.8rem;
	font-weight: bold;
	background-color: var(--color-frame);		
}

.btn-glow:hover {
	opacity: 0.8;
}

.playnow-whitePaper {
	position: absolute;
	bottom: -72px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #136c5e;
	box-shadow: 0 0 25px 5px #136c5e;
	border-radius: 50px;
	font-size: 2rem;
	font-weight: bold;
	padding: 25px 20px;
}

.playnow-whitePaper:hover {
	box-shadow: 0 0 20px 1px #2fbea9,0 0 92px 64px #136c5e;
}

.faq-wrapp .image-arrow-up {
	position: absolute;
	right: 120px;
	width: 267px !important;
}

@media screen and (max-width:767px) {
	.playnow-wrapp img {
		display: none;
	}
	.playnow-btn,
	.playnow-whitePaper {
		position: unset !important;
        transform: unset !important;
		display: flex;
	}
	.playnow-btn {
		margin: 96px auto 170px auto !important;
	}
	.playnow-whitePaper {
		width: 170px;
		margin: 0 auto 170px auto !important;
	}
	.faq-wrapp .content-inner {
		margin-top: 36px;
	}
	.content-wrapp .content-image-absolute {
		top: 0px !important;
	}
	.playnow-wrapp .image-arrow-up {
		display: none;
	}
}

/*----------------------------------------------------------------------
footer
----------------------------------------------------------------------*/
footer .footer-inner {
	display: flex;
	flex-wrap: wrap;
}

footer .footer-inner .item {
	display: inline-flex;
	flex-direction: column;
	flex: 1;
	margin-left: 0;
	margin-bottom: 25px;
}

footer .footer-inner .footer-about {
	width: 35%;
	flex: unset !important;
}
footer .footer-inner .footer-about h1 {
	font-size: 1.5rem;
	color: var(--color-secondary);
}

footer .footer-inner .footer-about img {
	width: 220px;
}

footer .footer-inner .footer-links {
	display: flex;
	list-style: none;
}

footer .footer-inner .footer-links li.link {
	margin-bottom: 15px;
}

footer .footer-inner .footer-links li.title {
	border: none;
	margin-bottom: 25px;
	font-weight: bold;
	font-size: 1.2rem;
}

footer .footer-links-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 0;
}

footer .footer-links-icon img {
	width: 64px;
}

footer .footer-copyright {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 0;
}
footer .footer-copyright a {
	font-weight: bold;
	padding: 0 5px;
}

@media screen and (max-width:767px) {
	footer .footer-inner {
		flex-direction: column;
	}

	footer .footer-inner .item.item-content {
		width: 100%;
		flex: unset;
		margin: 0 0 20px 0;
		padding: 0;
	}

	footer .footer-inner .item.item-links {
		align-items: center;
	}

	footer .footer-inner .item.item-links .title {
		text-align: center;
	}

	footer .footer-inner .footer-about {
		width: unset;	
	}
}