html,
body {
	width: 100%;
	height: 100%;

	margin: 0;
	padding: 0;
	overflow: hidden;

	background: black;
	color: white;

	font-family: "Montserrat", sans-serif;
}

.img, .content {
	position: fixed;
	width: 100%;
	height: 100%;
}

.img {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bg1 {
	opacity: 0;
}

.overlay {
	background-image: url(./images/overlay.png);
}

.content {
	display: table;
}

.top {
	display: table;
    height: 100%;
}

.top > * {
    display: table-cell;
}

.top .left, .top .right {
	width: 220px;
}

.top .left {
	padding: 80px 128px 0 80px;
}

.top .right {
	padding: 80px 80px 0 0;
	vertical-align: bottom;
}

.top .center {
	width: 100%;
	vertical-align: middle;

	text-align: center;
}

.top .logo {
	margin: auto;
	display: table;
}

.top .logo > * {
	display: table-cell;
	padding: 0 10px;

	vertical-align: middle;
}

.top .header {
	font-size: 60px;
	font-weight: 700;
}

.top .sub {
	font-weight: 500;
	font-size: 40px;

	color: #1FCA78;
	text-shadow: #1FCA78 0 0 25px;
}

.top .note {
	margin-top: 20px;
	font-size: 32px;
}

.bottom {
	display: table-row;
	height: 240px;
}

.bottom .bottom-cell {
	width: 100%;
	padding: 0 220px;
	display: table-cell;

	vertical-align: middle;
}

.bottom .text {
	display: table;
	width: 100%;

	font-size: 16px;
	font-weight: 600;
}

.bottom .text > * {
	display: table-cell;
}

.bottom .text .percent {
	color: #1FCA78;
}

.bottom .text .status {
	text-align: end;
}

.bottom .bar {
	width: 100%;
	height: 10px;
	margin-top: 16px;

	background-color: rgba(37, 38, 44, 0.50);
	background-image: url(./images/progress.png);

	position: relative;
}

.bottom .bar .progress {
	position: absolute;
	width: 0px;
	height: 100%;
	background-color: #19BD6E;
}

.bottom .bar .progress::after {
	content: "";
	
	height: 18px;
	width: 5px;

	position: absolute;
	bottom: 0;
	right: 0;

	background: white;
}