/* Global */

@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
	font-size: 20px;
	overflow-x: hidden;
	font-family: 'Roboto', sans-serif !important;
}

body.loading::after {
	content: '';
	background: url('/asset/img/loading.svg') no-repeat rgba(0, 0, 0, 0.8);
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.text-white {color: #fff;}

#bg-01 {
	background: url('/asset/img/bg/bw_pic_01.png') no-repeat;
	background-size: cover !important;
	background-position: center !important;
	min-height: 100vh;
	padding-left: 0;
	padding-right: 0;
}

#bg-02 {
	background: url('/asset/img/bg/colour_pic_02.png') no-repeat;
	background-size: cover !important;
	background-position: center !important;
	min-height: 100vh;
	padding-top: 25px;
	padding-left: 0;
	padding-right: 0;
}

#bg-03 {
	background: url('/asset/img/bg/bw_pic_03.png') no-repeat;
	background-size: cover !important;
	background-position: center !important;
	min-height: 100vh;
	padding-left: 0;
	padding-right: 0;
}

#search button {
	margin-top: 25px;
}

#label p {
	font-size: 34px;
}

#bottom-links {
	width: 100%;
	position: relative;
	left: 0;
	bottom: 0;
	z-index: 999;
	height: 100px;
}

#bottom-links a {
	color: #331b2c;
}

#questions {
	min-height: calc(100vh - 175px);
}
#active {
	min-height: calc(100vh - 200px);
}

/* BS HACKS */

.btn.btn-custom {
	border: 4px solid #fff;
	color: #fff;
	font-size: 36px;
	padding: 10px 100px;
	max-width: 100%;
}

.btn.btn-custom.style-2 {
	font-size: 20px;
	padding: 5px 10px;
	display: block;
	max-width: 125px;
	margin: 0 auto;
}

/* RESPONSIVE */

@media all and (max-width: 1560px) {
	#label p {
		font-size: 30px;
	}
}

@media all and (max-width: 767px) {
	#bg-01,
	#bg-02,
	#bg-03 {
		position: static;
		min-height: 33.3vh;
		max-height: 33.3vh;
	}

	#bg-02 {
		padding-top: 0;
	}

	#search button {
		margin-top: 55px;
	}
}

@media all and (max-width: 990px) {
	#bg-01, #bg-03 {
		display: none;
	}
	#bg-02 {
		min-height: 100%;
		max-height: 100%;
		background-size: cover !important;
	}
	.btn.btn-custom {
		padding: 5px 55px;
	}
	#search button {
		margin-top: 0;
	}
	ul.style-1 label, ul.style-2 label {
		font-size: 16px;
	}
}