@font-face {
	font-family: 'Bi';
	src: url("f/Bi.otf") format("opentype");
}
@font-face {
	font-family: 'Bi';
	font-weight: 500;
	src: url("f/Bi-Medium.otf") format("opentype");
}
@font-face {
	font-family: 'Bi';
	font-weight: 700;
	src: url("f/Bi-Bold.otf") format("opentype");
}
html, body {
	padding: 0;
	margin: 0;
	line-height: 1;
}
body {
	text-align: center;
	color: white;
	font-size: 1.8vw;
	font-family: 'Bi', 'Geometria', 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	smoothing: antialiased;
}

.btn {
	font-size: 0.65em;
	font-weight: 500;
	padding: 1em 1em 0.8em;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px;
	text-decoration: none;
	color: white;
	border: 1px solid rgba(255, 255, 255, .8);
	cursor: pointer;
	display: inline-block;
	min-width: 140px;
	transition: background-color .1s ease-in-out, color .1s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.btn:hover {
	background-color: rgb(255, 255, 255);
	color: rgb(236, 0, 140);
}
.btn:active {
	background-color: rgba(5, 5, 5, .1) !important;
	color: white !important;
}
.btn i {
	font-size: 1.3em;
	margin-right: .5em;
	display: inline-block;
	vertical-align: middle;
	margin-top: -4px;
}

.btn-1 {
	border-color: transparent;
}

.btn-2 {
	animation: btn-2 .5s linear 1s infinite alternate;
	background-color: rgb(255, 255, 255);
	color: rgb(236, 0, 140);
	transition: none;
}
.btn-2:hover {
	background-color: rgba(255, 255, 255, 0);
	color: rgb(255, 255, 255);
	opacity: 1 !important;
	animation: none;
}
.btn-2:active {
	opacity: 1 !important;
	animation: none;
}

@keyframes btn-2 {
	0% {opacity: 1}
	100% {opacity: .7}
}
.nav {
	position: fixed;
	top: 3vw;
	left: 3vw;
	right: 3vw;
	z-index: 100;
}
.nav__back {
	position: absolute;
	left: 0;
}
.nav__brand {
	position: absolute;
	right: 0;
	width: 13%;
}
.nav__brand span {
	position: absolute;
	width: 100%;
	padding-bottom: 22.9%;
	top: 0;
	left: 0;
}
.nav__brand span img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.buttons {
	text-align: center;
	font-size: 0;
	margin: 0 auto 100px;
	white-space: nowrap;
	max-width: 650px
}
.box {
	width: 29%;
	position: relative;
	margin: 0 2%;
	-webkit-border-radius: 6%;
	-moz-border-radius: 6%;
	-ms-border-radius: 6%;
	-o-border-radius: 6%;
	border-radius: 6%;
	border: 0 none;
	border: 1px solid rgba(255, 255, 255, .5);
	display: inline-block;
	transition: box-shadow .2s ease-in-out;
}
.box-shadow:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 17%;
	right: 17%;
	height: 4vw;
	/*-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;*/
	box-shadow: 0 1vw 6vw rgba(0,0,0,.6);
}
/*.box:hover{
	box-shadow: 0 0 80px rgba(255, 255, 255, .4)
}*/
.box-i {
	width: 100%;
	display: block;
	position: relative;
	padding-bottom: 100%;
	height: 0;
	-webkit-border-radius: 6%;
	-moz-border-radius: 6%;
	-ms-border-radius: 6%;
	-o-border-radius: 6%;
	border-radius: 6%;
	overflow: hidden;
}
.box img {
	display: block;
	border: 0 none;
	margin: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.header__title {
	margin: 1em 0 0em;
	padding: 0;
	font-size: 4em;
	letter-spacing: .01em;
	font-weight: 500;
}
.header__subtitle {
	margin: 0em 0 1.5em;
	padding: 0;
	font-size: 1.4em;
	letter-spacing: -.01em;
}
.generator__image {
	margin-bottom: 2em;
}
.generator__button + .generator__button {
	margin-left: 1em;
}

.generator__title,
.download-title {
	margin: 3em 0 1em;
	font-weight: 500;
}

.footer {
	margin: 4em 0;
}

.footer__root i {
	font-size: .7em;
	margin-right: 0.2em;
}

.footer__root {
	color: white;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: -.01em;
	font-size: 1.3em;
	margin-right: .7em;
}

.footer__share {
	display: inline-block;
	position: relative;
	top: -2px;
}

@media (max-width: 1100px) {
	body{
		font-size: 2.1vw;
	}
	.generator__image.box{
		width: 50%;
	}
	.box-shadow:before {
		height: 6vw;
		box-shadow: 0 1.5vw 9vw rgba(0,0,0,.6);
	}
	.btn {
		font-size: 16px;
		min-width: 110px;
	}
}
@media (max-width: 768px) {
	body {
		font-size: 3vw;
	}
	.nav {
		top: 0;
		left: 0;
		right: 0;
		background: rgb(236, 0, 140);
		height: 45px;
	}
	.nav__brand {
		width: 100px;
		top: 10px;
		right: 15px;
	}
	.header__title {
		padding-top: 45px;
	}
	.generator__image.box{
		width: 96%;
		max-width: 320px;
	}
	.generator__button + .generator__button {
		margin-left: .3em;
	}
	.box-shadow:before {
		height: 8vw;
		box-shadow: 0 2vw 18vw rgba(0,0,0,.6);
	}
	.btn {
		font-size: 15px;
		min-width: 0px;
	}
	.btn-1 {
		border-color: transparent !important;
		background-color: transparent !important;
		color: white !important;
	}
	.main {
		font-size: 18px;
	}
	.buttons {
		margin-bottom: 50px;
	}
	.footer__root {
		font-size: 20px;
	}
}
