*,
*::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 {
	width: 100svw;
	height: 100svh;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	align-items: center;
	justify-content: space-between;
}

.page header {
	display: flex;
	justify-content: flex-start;
	position: absolute;
	top: 5%;
	left: 5%;
	z-index: 999;
	height: 5%;
}

.page section {
	background-image: url('../img/girl-img.png');
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
}

.page section .content {
	padding: 12% 5%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	gap: 16px;
}

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

.title-block .title {
	display: block;
	width: 100%;
}

.subtitle-block {
	max-width: 20%;
	width: 100%;
}

.subtitle-block .subtitle {
	display: block;
	width: 100%;
}

.banner-block {
	margin-top: 5%;
	max-width: 20%;
	width: 100%;
}

.banner-block .banner {
	display: block;
	width: 100%;
}

.button-block {
	margin-left: -4%;
	max-width: 25%;
	width: 100%;
}

.button-block img {
	display: block;
	width: 100%;
}

.banner-block-mobile {
	display: none;
}

@media (max-width: 767px) {

	.page header {
		display: flex;
		justify-content: center;
		left: 0;
		right: 0;
		top: 2svh;
	}

	.page header img {
		max-width: 100px;
	}

	.page section {
		background-image:
			url('../img/girl-img-mobile.png'),
			url('../img/mobile-bg.png');

		background-size:
			70%,
			cover;

		background-repeat:
			no-repeat,
			no-repeat;

		background-position:
			center bottom,
			center 25vh;
	}

	.page section .content {
		padding: 20% 5%;
		gap: 12px;
		align-items: center;
	}

	.title-block {
		max-width: 200px;
	}

	.subtitle-block {
		max-width: 150px;
	}

	.banner-block {
		display: none;
	}

	.banner-block-mobile {
		margin-top: 1rem;
		display: block;
		max-width: 200px;
	}

	.banner-block-mobile .banner {
		width: 100%;
	}

	.button-block {
		margin-left: 0;
		max-width: 100%;
		margin-top: -10%;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.page header {
		display: flex;
		justify-content: center;
		left: 0;
		right: 0;
		top: 2svh;
	}

	.page header img {
		max-width: 100px;
	}

	.page section {
		background-image:
			url('../img/girl-img-mobile.png'),
			url('../img/mobile-bg.png');

		background-size:
			50%,
			cover;

		background-repeat:
			no-repeat,
			no-repeat;

		background-position:
			center bottom,
			center 25vh;
	}

	.page section .content {
		padding: 10% 5%;
		gap: 0;
		align-items: center;
	}

	.title-block {
		max-width: 50%;
		margin-top: 2%;
	}

	.subtitle-block {
		max-width: 50%;
		margin-top: 2%;
	}

	.banner-block {
		display: none;
	}

	.banner-block-mobile {
		margin-top: 2%;
		display: block;
		max-width: 30%;
		margin-top: 5%;
	}

	.banner-block-mobile .banner {
		width: 100%;
	}

	.button-block {
		margin-left: 0;
		max-width: 60%;
		margin-top: -2%;
	}
}
