*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	background: #002E5E;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

img {
	display: block;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	overscroll-behavior: none;
	position: fixed;
	inset: 0;
}

.page {
	background-image: url('../img/bg-img.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: 90%;
	width: 100svw;
	height: 100svh;
	box-sizing: border-box;
}

.page header {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 2rem;
}

header .download-description {
	max-width: 15%;
	width: 100%;
}

header .logo {
	max-width: 10%;
	width: 100%;
}

header .download-button {
	max-width: 10%;
	width: 100%;
}

.page section .content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	margin-top: 5%;
}

.content .title-block {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 8px;
}

.title-block .title {
	max-width: 20%;
	width: 100%;
	filter: drop-shadow(0 0 20px rgba(19, 159, 255, 1));
}

.title-block .title-som {
	max-width: 10%;
	width: 100%;
}

.content .subtitle-block {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 3%;
}

.subtitle-block .subtitle {
	max-width: 20%;
	width: 100%;
	filter: drop-shadow(0 0 20px rgba(19, 159, 255, 1));
}

.subtitle-block .subtitle-description {
	max-width: 15%;
	width: 100%;
	filter: drop-shadow(0 0 20px rgba(19, 159, 255, 1));
}

.button-action {
	max-width: 15%;
	width: 100%;
	margin-top: 1rem;
}

footer {
	display: none;
}

.content .title-block-mobile {
	display: none;
}

.content .subtitle-block-mobile {
	display: none;
}

@media (max-width: 767px) {

	.page {
		background-image: url('../img//bg-img-mobile.png');
		background-position-y: 25%;
		min-height: 100svh;
		display: flex;
		flex-direction: column;
	}

	.page header {
		justify-content: center;
	}

	.page header .download-description {
		display: none;
	}

	.page header .download-button {
		display: none;
	}

	.content .title-block {
		display: none;
	}

	.content .subtitle-block {
		display: none;
	}

	.content .title-block-mobile {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 8px;
		position: relative;
	}

	.content .subtitle-block-mobile {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 8px;
	}

	.title-block-mobile .title {
		max-width: 180px;
		width: 100%;
		filter: drop-shadow(0 0 20px rgba(19, 159, 255, 1));
	}

	.title-block-mobile .title-som {
		max-width: 100px;
		width: 100%;
		margin-right: 2rem;
		align-self: flex-end;
	}

	.content .subtitle-block-mobile {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.subtitle-block-mobile .subtitle {
		max-width: 180px;
		width: 100%;
		filter: drop-shadow(0 0 20px rgba(19, 159, 255, 1));
	}

	.subtitle-block-mobile .subtitle-description {
		max-width: 120px;
		width: 100%;
		align-self: flex-start;
		margin-left: 3rem;
	}

	.page section .content {
		gap: 2rem;
		padding: 0 4rem;
		flex: 1;
	}

	.button-action {
		max-width: 350px;
		width: auto;
		margin-top: -1rem;
	}

	footer {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1rem;
		position: relative;
		background-image: url('../img/footer-bg.png');
		background-repeat: no-repeat;
		background-size: cover;
		width: auto;
		height: 20svh;
		padding: 1rem 0;
		margin-top: auto;
	}

	footer .banner {
		position: absolute;
		bottom: -10vh;
		left: 0;

		width: 100%;
		max-width: 100vw;

		filter: blur(2px);

		z-index: 1;
	}

	footer .footer-description,
	footer .footer-button {
		position: relative;
		z-index: 2;
	}

	footer .footer-description {
		max-width: 200px;
	}

	footer .footer-button {
		max-width: 100px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {}
