html {
	margin: 0;
	padding: 0;
	height: 100vh;
	background-color: #eaeaea;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Inter', serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-size: 12px;
	color: #212121;
	background-color: transparent;
}

br {
	clear: both;
}

a,
a:hover {
	color: inherit;
	text-decoration: none;
}

.container {
	width: 100%;
	padding: 0 16px;
}

section {
	display: block;
	clear: both;
	margin-bottom: 36px;
}

section:last-child {
	margin-bottom: 0;
}

section.heading .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	max-width: 380px;
}

section.heading .logo {
	margin-top: 54px;
}

section.heading .logo img {
	border-radius: 16px;
	width: 74px;
}

section.heading .title {
	margin-top: 14px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #FFFFFF;
}

section.heading .desc {
	margin-top: 4px;
	font-size: 12px;
	font-weight: 400;
	color: #FFFFFF;
}

section.links .container {
	display: flex;
	flex-direction: column;
}

section.links .container>.title {
	line-height: 1em;
	font-size: 16px;
	color: #FFFFFF;
	margin-top: 8px;
	margin-bottom: 12px;
}

section.links .container .link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-right: 16px;
	margin-bottom: 16px;
	background-color: #FFFFFF;
	border-radius: 8px;
}

section.links .container .link:last-child {
	margin-bottom: 0;
}

section.links .container .link>img {
	height: 100px;
}

section.links .container .link>.info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

section.links .container .link>.info>.title {
	font-size: 14px;
	font-weight: 700;
}

section.links .container .link>.info>.desc {
	flex: 1;
	font-size: 12px;
	font-weight: 400;
	color: #585858;
}

section.links .container .link>.action {
	font-size: 12px;
	font-weight: 700;
	line-height: 1em;
	padding: 8px 12px;
	color: #FFFFFF;
	background-color: #00A2F3;
	border-radius: 4px;
}

section.social-media {
	margin-bottom: 57px;
}

section.social-media .container {
	display: flex;
	align-items: center;
	justify-content: center;
}

section.social-media .container .link {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 16px;
	width: 34px;
	height: 34px;
	font-size: 20px;
	color: #FFFFFF;
	background-color: #3D9388;
	overflow: hidden;
	-webkit-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

section.social-media .container .link:last-child {
	margin-right: 0;
}

.content {
	margin: auto;
	padding-bottom: 16px;
	width: 100%;
	max-width: 480px;
	min-width: 360px;
	min-height: 100vh;
}

.content::before {
	content: "";
	position: fixed;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100%;
	height: 100vh;
	max-width: 480px;
	min-width: 360px;
	background-image: url("../image/bg-img.jpg");
	background-size: cover;
	background-position: top center;
	background-repeat: repeat-y;
	-webit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 0;
}

.content::after {
	content: "";
	position: fixed;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100%;
	height: 50vh;
	max-width: 480px;
	min-width: 360px;
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
	background: -moz-linear-gradient(top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
	-webit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1;
}

.content > section {
	position: relative;
	z-index: 2;
}

.social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.social>a {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #FFFFFF;
	width: 42px;
	height: 42px;
}