@font-face {
	font-family: Gantari;
	src: url('../fonts/Gantari-Regular.ttf');
	src: url('../fonts/Gantari-Regular.ttf?') format('ttf'),
		url('../fonts/Gantari-Regular.woff') format('woff'),
		url('../fonts/Gantari-Regular.otf') format('otf'),
		url('../fonts/Gantari-Regular.svg') format('svg');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: Gantari;
	src: url('../fonts/Gantari-Bold.ttf');
	src: url('../fonts/Gantari-Bold.ttf?') format('ttf'),
		url('../fonts/Gantari-Bold.woff') format('woff'),
		url('../fonts/Gantari-Bold.otf') format('otf'),
		url('../fonts/Gantari-Bold.svg') format('svg');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: Gantari;
	src: url('../fonts/Gantari-ExtraBold.ttf');
	src: url('../fonts/Gantari-ExtraBold.ttf?') format('ttf'),
		url('../fonts/Gantari-ExtraBold.woff') format('woff'),
		url('../fonts/Gantari-ExtraBold.otf') format('otf'),
		url('../fonts/Gantari-ExtraBold.svg') format('svg');
	font-weight: 800;
	font-style: normal;
}


body {
	font-family: Gantari;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	color: #ffffff;
}

body.model-active {
	overflow: hidden;
}

.wrapper .menu {
	opacity: 0;
	position: fixed;
	z-index: 10;
	background: rgba(25, 26, 28, 0.8);
	top: 140px;
	left: 0;
	right: 0;
	bottom: 0;
	transition: opacity .3s ease;
	pointer-events: none;
}

.wrapper .menu.active {
	opacity: 1;
	pointer-events: all;
}

.wrapper .menu .popup {
	display: flex;
	position: absolute;
	top: 30px;
	left: 10px;
	right: 10px;
	flex-direction: column;
	padding: 20px 10px;
	row-gap: 10px;
	background: #191A1C;
	border-radius: 20px;
	transform: translateY(-50px);
	transition: transform .5s ease;
	background: radial-gradient(ellipse 100% 57px at 50% 50%, rgba(255, 218, 32, 0.6) 0%, rgba(255, 218, 32, 0) 96.48%) 0px 158px / auto no-repeat, #191A1C;
	background-blend-mode: hard-light;
}

.wrapper .menu .popup::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(-21deg, #ffffff 0%, #ffffff00 44%, #ffffff 100%);
	mix-blend-mode: overlay;
	padding: 1px;
	mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
	mask-clip: content-box, padding-box;
	mask-composite: exclude;
	-webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
	-webkit-mask-clip: content-box, padding-box;
	-webkit-mask-composite: xor;
	border-radius: 20px;
	pointer-events: none;
}

.wrapper .menu.active .popup {
	transform: translateY(0);
}

.wrapper .menu .popup .link-wrapper {
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wrapper .menu .popup a {
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	letter-spacing: -0.02em;
	color: #FFFFFF;
	padding: 10px;
}

.wrapper .menu .popup a.active {
	background: rgba(0, 0, 0, 0.01);
	border: 1px solid #FFFF8A;
	box-shadow: -1px -1px 5px rgba(255, 255, 255, 0.25), inset 0px -10px 10px rgba(255, 187, 1, 0.25);
	border-radius: 12px;
}

.wrapper .menu .popup span {
	width: 100%;
	height: 1px;
	background: rgba(255, 237, 101, 0.25);
}


.wrapper {
	position: relative;
	top: 0;
	left: 0;
	background: #191A1C;
	overflow: hidden;
	padding: 0 calc((100% - 1440px) / 2) 140px;
	min-height: 100%;
}

.wrapper header {
	height: 142px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
}

.wrapper header div {
	display: flex;
	column-gap: 30px;
	align-items: center;
}

.wrapper header div a {
	padding: 10px;
	font-size: 18px;
	line-height: 24px;
	display: flex;
	align-items: center;
	text-align: center;
	letter-spacing: -0.02em;
	color: #FFFFFF;
}

.wrapper header div a.active {
	background: rgba(0, 0, 0, 0.01);
	border: 1px solid #FFFF8A;
	box-shadow: -1px -1px 5px rgba(255, 255, 255, 0.25), inset 0px -10px 10px rgba(255, 187, 1, 0.25);
	border-radius: 12px;
}

.wrapper header .menu-button {
	display: none;
	width: 32px;
	height: 32px;
	background: rgba(0, 0, 0, 0.01);
	border: 1px solid #FFF87B;
	box-shadow: -1px -1px 5px rgba(255, 255, 255, 0.25), inset 0px -10px 10px rgba(255, 187, 1, 0.25);
	border-radius: 6px;
	flex-direction: column;
	row-gap: 3.5px;
	padding: 4px 4px 4px 5px;
	justify-content: center;
	cursor: pointer;
}

.wrapper header .menu-button span {
	width: 100%;
	height: 2.5px;
	background: #FFF779;
	border-radius: 2px;
	transition: opacity .3s ease, transform .3s ease;
}

.wrapper header .menu-button.active span {
	opacity: 0;
}

.wrapper header .menu-button.active span:first-child {
	transform: translateY(6px) rotate(45deg);
	opacity: 1;
}

.wrapper header .menu-button.active span:last-child {
	transform: translateY(-6px) rotate(-405deg);
	opacity: 1;
}

.wrapper header a.logo {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 197px;
	height: 104px;
	transform: translate(-50%, -50%);
	background: url(../images/logo.svg) center / 100% no-repeat;
}


.wrapper main {
	padding: 54px 0 105px;
	display: flex;
	column-gap: 32px;
	position: relative;
	top: 0;
	left: 0;
}

.wrapper main .left {
	max-width: 704px;
	padding-top: 62px;
	display: flex;
	flex-direction: column;
	row-gap: 110px;
    width: calc(100% - 736px);
}

.wrapper main .left .up {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}

.wrapper main .left .up h1 {
	font-weight: 700;
	font-size: 56px;
	line-height: 60px;
	text-transform: uppercase;
}

.wrapper main .left .up p {
	font-size: 24px;
	line-height: 30px;
	color: #DADADB;
}

.wrapper main .left .down {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}

.wrapper main .left .down p {
	font-size: 24px;
	line-height: 30px;
	color: #DADADB;
}

.wrapper main .left .down .buttons {
	display: flex;
	column-gap: 30px;
}

.wrapper main .left .down .buttons a {
	width: 202px;
	height: 60px;
}

.wrapper main .left .down .buttons a.google-play-button {
	background: url(../images/google-play-button.png) center / 100% no-repeat;
}
.wrapper main .left .down .buttons a.app-store-button {
	background: url(../images/appstore.svg) center / 100% no-repeat;
}

.wrapper main .right {
	width: 704px;
	height: 704px;
	position: relative;
	top: 0;
	left: 0;
}

.wrapper main .right .portal {
	position: absolute;
	width: 77.13%;
	height: 13.64%;
	top: 83.80%;
	left: 15.91%;
	animation: portalVisible .7s ease forwards, portalPulse 2s ease-in-out .7s alternate infinite;
}

@keyframes portalVisible {
	from {
		transform: scale(.001);
	}
	to {
		transform: scale(1.07)
	}
}

@keyframes portalPulse {
	from {
		transform: scale(1.07);
	}
	to {
		transform: scale(1)
	}
}

.wrapper main .right .big-phone {
	position: absolute;
	width: 41.19%;
	height: 0;
	top: 92.76%;
	left: 36.93%;
	background: url(../images/big-phone.png) top center / 100% no-repeat;
	animation: bigPhoneVisible .7s ease .8s forwards, bigPhoneFloat 2.3s ease-in-out 1.5s alternate infinite;
}

@keyframes bigPhoneVisible {
	from {
		height: 0;
		top: 92.76%;
	}
	to {
		height: 85.37%;
		top: 7.39%;
	}
}

@keyframes bigPhoneFloat {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-10px);
	}
}

.wrapper main .right .right-phone {
	position: absolute;
	width: 28.55%;
	height: 50.64%;
	top: 13.8%;
	left: 67.09%;
	visibility: hidden;
	opacity: 0;
	animation: rightPhoneVisible .5s ease-in 1.5s forwards, rightPhoneFloat 1.8s ease-in-out 2s alternate infinite;
}

@keyframes rightPhoneVisible {
	from {
		visibility: hidden;
		opacity: 0;
		transform: translateX(-75%) rotate(0);
	}
	to {
		visibility: visible;
		opacity: 1;
		transform: translateX(0) rotate(10.33deg);
	}
}

@keyframes rightPhoneFloat {
	from {
		transform: translateX(0) rotate(10.33deg);
	}
	to {
		transform: translate(10px, 10px) rotate(12.33deg);
	}
}

.wrapper main .right .left-phone {
	position: absolute;
	width: 28.55%;
	height: 50.64%;
	top: 30.04%;
	left: 17.18%;
	visibility: hidden;
	opacity: 0;
	animation: leftPhoneVisible .5s ease-in 1.5s forwards, leftPhoneFloat 1.3s ease-in-out 2s alternate infinite;
}

@keyframes leftPhoneVisible {
	from {
		visibility: hidden;
		opacity: 0;
		transform: translateX(75%) rotate(0);
	}
	to {
		visibility: visible;
		opacity: 1;
		transform: translateX(0) rotate(-12.42deg);
	}
}

@keyframes leftPhoneFloat {
	from {
		transform: translateX(0) rotate(-12.42deg);
	}
	to {
		transform: translate(-10px, 10px) rotate(-14.42deg);
	}
}

.wrapper main .right .ellipse {
	position: absolute;
	width: 85.23%;
	height: 85.23%;
	top: 0;
	left: 0;
	opacity: 0;
	background: radial-gradient(44.3% 34.94% at 50% 44.46%, rgba(255, 218, 32, 0.6) 0%, rgba(255, 218, 32, 0) 100%);
	mix-blend-mode: hard-light;
	animation: ellipseVisible .5s ease-in 1.5s forwards, ellipsePulse 1.7s ease-in-out 2s alternate infinite;
}

@keyframes ellipseVisible {
	from {
		opacity: 0;
	}
	to {
		opacity: .6;
	}
}

@keyframes ellipsePulse {
	from {
		opacity: .6;
		transform: scale(1);
	}
	to {
		opacity: .8;
		transform: scale(1.1);
	}
}

.wrapper main .right .starlite {
	position: absolute;
	width: 41.19%;
	height: 28.41%;
	top: 67.05%;
	left: 58.81%;
	transform: translate(-50%, -20%);
	opacity: 0;
	animation: starliteVisibleFirst .4s ease 1.7s forwards,
		starliteVisibleSecond .4s ease 2.1s forwards,
		starliteRotate 2.1s ease-in-out 2.5s alternate infinite;
}

@keyframes starliteVisibleFirst {
	from {
		transform: translate(-50%, -20%);
		z-index: 0;
		opacity: 0;
	}
	to {
		transform: translate(20%, -20%);
		z-index: 0;
	    opacity: 1;
	}
}

@keyframes starliteVisibleSecond {
	from {
		transform: translate(20%, -20%);
		z-index: 1;
	}
	to {
		transform: translate(0);
		z-index: 1;
	}
}

@keyframes starliteRotate {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(12deg);
	}
}


.wrapper footer {
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 140px;
	width: 100%;
	text-align: center;
	line-height: 20px;
	letter-spacing: -0.02em;
	color: #CCCCCC;
}


.wrapper .contact {
	display: flex;
	column-gap: 36px;
	position: relative;
	top: 0;
	left: 0;
	padding: 50px 0 100px;
}

.wrapper .contact .ellipse {
	width: 704px;
	height: 704px;
	position: absolute;
	top: 30px;
	left: 239px;
	background: radial-gradient(44.3% 34.94% at 50% 44.46%, rgba(255, 218, 32, 0.6) 0%, rgba(255, 218, 32, 0) 100%) center center / 100% 100% no-repeat;
	mix-blend-mode: hard-light;
	opacity: .6;
}

.wrapper .contact .joker {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 704px;
	height: 834px;
	z-index: 1;
}

.wrapper .contact .joker img {
	mask-image: linear-gradient(180deg, #191A1C 56.08%, rgba(25, 26, 28, 0) 86.44%);
}

.wrapper .contact form {
	background: #202126;
	display: flex;
	flex-direction: column;
	padding: 30px 40px;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
	border-radius: 20px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	row-gap: 30px;
}

.wrapper .contact form::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(-21deg, #ffffff 0%, #ffffff00 44%, #ffffff 100%);
	mix-blend-mode: overlay;
	padding: 1px;
	mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
	mask-clip: content-box, padding-box;
	mask-composite: exclude;
	-webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
	-webkit-mask-clip: content-box, padding-box;
	-webkit-mask-composite: xor;
	border-radius: 20px;
	pointer-events: none;
}


.wrapper .contact form .form-header {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.wrapper .contact form .form-header h2 {
	font-weight: 800;
	font-size: 48px;
	line-height: 50px;
	letter-spacing: -0.03em;
}

.wrapper .contact form .form-header p {
	font-size: 18px;
	line-height: 20px;
}

.wrapper .contact form .text-field {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.wrapper .contact form .text-field label {
	font-weight: 700;
	font-size: 16px;
	line-height: 13px;
}

.wrapper .contact form .text-field label span {
	color: #FF7700;
}

.wrapper .contact form .input-wrapper {
	position: relative;
	top: 0;
	left: 0;
	padding: 15px 20px;
	border-radius: 16px;
}

.wrapper .contact form .input-wrapper input,
.wrapper .contact form .input-wrapper textarea {
	width: 100%;
	background: transparent;
	line-height: 20px;
	color: #ffffff;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
	resize: none;
}

.wrapper .contact form .input-wrapper textarea {
	min-height: 120px;
}

.wrapper .contact form .input-wrapper input::placeholder,
.wrapper .contact form .input-wrapper textarea::placeholder {
	line-height: 20px;
	color: #DADADB;
}

.wrapper .contact form .input-wrapper::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 16px;
	background: radial-gradient(ellipse 41.3% 51.94% at 66% 25.46%, #FFDA20, #FFA517);
	padding: 2px;
	mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
	mask-clip: content-box, padding-box;
	mask-composite: exclude;
	-webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
	-webkit-mask-clip: content-box, padding-box;
	-webkit-mask-composite: xor;
}

.wrapper .contact form .captcha-field {
	display: flex;
	column-gap: 41px;
	align-items: center;
}

.wrapper .contact form .captcha-field img {
	cursor: pointer;
}

.wrapper .contact form .captcha-field input {
	width: 110px;
}

.wrapper .contact form button {
	width: 200px;
	height: 50px;
	background: transparent;
}


.wrapper .info {
	display: flex;
	flex-direction: column;
	row-gap: 70px;
	max-width: 800px;
	margin: 84px auto 100px;
}

.wrapper .info .info-header {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.wrapper .info .info-header h2 {
	font-weight: 800;
	font-size: 48px;
	line-height: 50px;
	text-align: center;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}

.wrapper .info .info-header p {
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: #DADADB;
}

.wrapper .info .content {
	display: flex;
	flex-direction: column;
	row-gap: 40px;
}

.wrapper .info .content .block {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.wrapper .info .content .block h3 {
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
}

.wrapper .info .content .block h4 {
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: -0.02em;
	color: #DADADB;
}

.wrapper .info .content .block p {
	line-height: 20px;
	color: #DADADB;
}

.wrapper .info .content .block .list {
	display: flex;
	flex-direction: column;
}

.wrapper .info .content .block .list .row {
	padding: 4px 15px;
	display: flex;
	column-gap: 10px;
	line-height: 20px;
	color: #DADADB;
}

.wrapper .info .content .block .list .row h4 {
	line-height: 20px;
}

.wrapper .info .content .block .list .row::before {
	content: url(../images/list-marker.png);
}


@media (max-width: 1500px) {

	.wrapper {
		padding: 0 30px 140px;
	}

}

@media (max-width: 1440px) {

	.wrapper main .left {
		width: calc(100% - 636px);
	}

	.wrapper main .left .up h1 {
		font-size: 50px;
		line-height: 54px;
	}

	.wrapper main .left .up p {
		font-size: 22px;
		line-height: 28px;
	}

	.wrapper main .left .down p {
		font-size: 22px;
		line-height: 28px;
	}

	.wrapper main .right {
		width: 604px;
		height: 604px;
	}

}

@media (max-width: 1200px) {

	.wrapper main .left {
		width: calc(100% - 536px);
	}

	.wrapper main .left .up h1 {
		font-size: 46px;
		line-height: 50px;
	}

	.wrapper main .right {
		width: 504px;
		height: 504px;
	}

	.wrapper .contact form .form-header h2 {
		font-size: 46px;
		line-height: 48px;
	}

	.wrapper .contact .joker img {
		width: 381px;
	}

	.wrapper .info .info-header h2 {
		font-size: 46px;
		line-height: 48px;
	}

}

@media (max-width: 1050px) {

	.wrapper main .left {
		width: calc(100% - 436px);
	}

	.wrapper main .left .up h1 {
		font-size: 42px;
		line-height: 46px;
	}

	.wrapper main .left .up p {
		font-size: 20px;
		line-height: 26px;
	}

	.wrapper main .left .down p {
		font-size: 20px;
		line-height: 26px;
	}

	.wrapper main .right {
		width: 404px;
		height: 404px;
	}

	.wrapper .contact form .form-header h2 {
		font-size: 44px;
		line-height: 46px;
	}

	.wrapper .info .info-header h2 {
		font-size: 44px;
		line-height: 46px;
	}

}

@media (max-width: 950px) {

	.wrapper main {
		flex-direction: column-reverse;
		align-items: center;
		row-gap: 32px;
	}

	.wrapper main .left {
		width: 100%;
		padding-top: 0;
	}

	.wrapper main .left .up h1 {
		font-size: 38px;
		line-height: 42px;
		text-align: center;
	}

	.wrapper main .left .up p {
		text-align: center;
	}

	.wrapper main .left .down p {
		text-align: center;
	}

	.wrapper main .left .down .buttons {
		justify-content: center;
	}

	.wrapper main .right {
		width: 504px;
		height: 504px;
	}

	.wrapper .contact {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.wrapper .contact .ellipse {
		top: 500px;
		left: calc(50% - 352px);
	}

}

@media (max-width: 850px) {

	.wrapper header .left,
	.wrapper header .right {
		display: none;
	}

	.wrapper header {
		justify-content: flex-end;
	}

	.wrapper header .menu-button {
		display: flex
	}
	
}

@media (max-width: 768px) {

	.wrapper main .left .up h1 {
		font-size: 36px;
		line-height: 40px;
	}

	.wrapper main .left .up p {
		font-size: 18px;
		line-height: 22px;
	}

	.wrapper main .left .down p {
		font-size: 18px;
		line-height: 22px;
	}

	.wrapper .contact form .form-header h2 {
		font-size: 42px;
		line-height: 44px;
	}

	.wrapper .info .info-header h2 {
		font-size: 42px;
		line-height: 44px;
	}

	.wrapper .contact .ellipse {
		width: 400px;
		height: 400px;
		top: 725px;
		left: calc(50% - 200px);
	}
	
}

@media (max-width: 550px) {

	.wrapper main .right {
		width: 404px;
		height: 404px;
	}

	.wrapper .contact form .captcha-field {
		flex-wrap: wrap;
		row-gap: 10px;
		justify-content: center;
	}

}

@media (max-width: 500px) {

	.wrapper {
		padding: 0 20px 50px;
	}

}

@media (max-width: 480px) {

	.wrapper {
		padding: 0 10px 50px;
	}

	.wrapper .menu {
		top: 68px;
	}

	.wrapper header {
		height: 68px;
	}

	.wrapper header a.logo {
		width: 93px;
	}

	.wrapper main {
		padding: 30px 0 92px;
	}

	.wrapper main .left {
		row-gap: 330px;
	}

	.wrapper main .left .up {
		row-gap: 20px;
	}

	.wrapper main .left .up h1 {
		font-weight: 700;
		font-size: 32px;
		line-height: 40px;
	}

	.wrapper main .left .up p {
		font-size: 16px;
		line-height: 22px;
	}

	.wrapper main .left .down {
		row-gap: 20px;
	}

	.wrapper main .left .down p {
		font-size: 16px;
		line-height: 22px;
	}

	.wrapper main .left .down .buttons {
        flex-direction: column;
		row-gap: 10px;
		align-items: center;
    }

	.wrapper main .right {
		position: absolute;
		top: auto;
		bottom: 286px;
		width: 270px;
		height: 270px;
		left: calc(50% - 135px);
	}

	.wrapper footer {
		font-size: 10px;
		line-height: 12px;
		height: 50px;
	}
	
	.wrapper footer br {
		display: none;
	}

	.wrapper .contact {
		padding: 40px 0 50px;
		row-gap: 36px;
	}

	.wrapper .contact form {
		row-gap: 20px;
		padding: 20px;
	}

	.wrapper .contact form .form-header {
		row-gap: 10px;
		padding-bottom: 10px;
	}
	
	.wrapper .contact form .form-header h2 {
		font-size: 40px;
		line-height: 50px;
		letter-spacing: -0.03em;
	}

	.wrapper .info .info-header h2 {
		font-size: 40px;
		line-height: 50px;
		letter-spacing: -0.03em;
	}

	.wrapper .contact form .captcha-field {
		padding: 10px 0;
	}

	.wrapper .contact form button {
		align-self: center;
	}

	.wrapper .contact .ellipse {
		width: 100%;
		height: 310px;
		top: 700px;
		left: 50%;
		transform: translateX(-50%);
	}

	.wrapper .contact .joker {
		width: fit-content;
		height: fit-content;
	}

	.wrapper .contact .joker img {
		width: 100%;
	}

	.wrapper .info {
		row-gap: 32px;
		margin: 40px 0 50px;
	}

	.wrapper .info .info-header {
		row-gap: 10px;
	}

	.wrapper .info .content {
		row-gap: 30px;
	}

}

@media (max-width: 375px) {

	.wrapper .contact .ellipse {
		top: 823px;
	}

}