*,
*:before,
*:after {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-box-sizing: inherit;
	   -moz-box-sizing: inherit;
			box-sizing: inherit;
}
html {
	background-color: black; /* for outside the body colour */
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
	overflow-y: scroll;
	font-family: 'Kanit', sans-serif;
}
body {
	min-height: 100vh;
	margin: 0 auto;
    position: relative;
}

img { max-width: 100%; }
mark { background-color: transparent; color: inherit; }
a {
	cursor: pointer;
	text-decoration: none;
}
h1 {
	font-weight: 100;
	margin-bottom: .5em;
}
p {
	font-size: 1.6rem;
}

%safe_sides {
	padding-right: env(safe-area-inset-right) !important;
	padding-left: env(safe-area-inset-left) !important;
}
%safe_sides_margin {
	margin-right: env(safe-area-inset-right) !important;
	margin-left: env(safe-area-inset-left) !important;
}

.sr-only {
	border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.holding {
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	position: relative;
	flex-direction: column;
}
	.holding__bg {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: center/cover no-repeat;
		opacity: .5;
		z-index: 1;
		pointer-events: none;
	}
	.holding__header {
		position: absolute;
		top: 0;
		left: 0;
		padding: 2rem 5%;
		z-index: 2;
		color: #FFF;
	}
	.holding__header > *:first-child {margin-top: 0;}
	.holding__header > *:last-child {margin-bottom: 0;}
	.holding__header h1 {
		font-weight: 700;
		margin:  0 0 1rem;
	}
	.holding__header h2 {
		font-weight: 100;
	}
	.holding__content {
		max-width: 80rem;
		text-align: center;
		color: #FFF;
		position: relative;
		z-index: 2;
		margin: auto;
		padding: 2rem 5%;
	}
		.holding__content > *:first-child {margin-top: 0;}
		.holding__content > *:last {margin-bottom: 0;}
		.holding__content h1 {
			text-transform: uppercase;
			font-size: 4.2rem;
			margin-bottom: 1rem;
		}
		.holding__content h2 {

		}
		.holding__content h1,
		.holding__content h2,
		.holding__content p,
		.holding__content li {
			color: #FFF;
			line-height: 1.2em;
		}
		.holding__content a {
			color: #FFF;
			font-weight: 700;
		}
		.holding__content a:hover {text-decoration: underline;}
		.holding__content p,
		.holding__content li {
			font-size: 2rem;
		}
		.holding__content img {
			max-height: 20rem;
			width: auto;
			display: inline-block;
		}
		.holding__content__social {
			list-style-type: none;
			display: flex;
			margin: 0;
			padding: 0;
			width: 100%;
			justify-content: center;
		}
			.holding__content__social li a {
				padding: 1rem;
				display: block;
			}
	.holding__footer {
		color: #FFF;;
		display: flex;
		flex-wrap:  wrap;
		justify-content: space-between;
		align-items: flex-end;
		padding: 1rem 5%;
		width: 100%;
		z-index: 2;
		position: relative;
	}
		.holding__footer__left {
			display: flex;
			align-items: center;
			flex-wrap:  wrap;
			flex: 0 0 50%;
		}
			.holding__footer__left img {
				height: 2.4rem;
				width: auto;
				display: block;
			}
			.holding__footer__left p {
				font-size: 1.1rem;
			}
			.holding__footer__left img + small {margin-left: .6rem;}
			.holding__footer__left small {
				flex: 1;
			}
		.holding__footer a {color: #FFF;}
		.holding__footer a:hover {text-decoration: underline;}

@media only screen and (max-width: 992px) {
	.holding__footer__left {
		flex:  0 0 100%;
		order: 2;
	}
	.holding__footer__left + .holding__footer__right {padding-bottom: 2rem;}
	.holding__footer__right {
		order: 1;
		text-align: center;
		flex:  0 0 100%;
	}
}
@media only screen and (max-width: 782px) {
	.holding__content h1 {font-size: 2.8rem;}
	.holding__content img {height: 12rem;}
}