

*::before, *::after, * {
	margin: 0;
	box-sizing: border-box;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#mainpage {
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
	color: #fff;
}
#mainpage::before {
	position: absolute;
	width: 100%;
	z-index: -1;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
	content: "";
	background: rgba(0,0,0,.5);
}
body {
	background: none;
}
.wrapper {
	padding: 0 6rem;
}
.img-header {
	background-size: cover;
	background-position: 50%;
	width: 100%;
	height: 100%;
}
.header {
	height: auto;
	height: 100vh;
	position: relative;
}
.header::before {
	position: absolute;
	width: 100%;
	z-index: 1;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
	content: "";
	background: rgba(0,0,0,.5);
}
.header nav {
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 1rem;
	margin-bottom: 3rem;
}
.nav-list {
	display: flex;
}
.nav-list a {
	margin-left: .5rem;
}
.header nav i {
	margin-right: .5rem;
	margin-left: -.25rem;
	
}
.header .wrapper {
	padding-bottom: 7rem;
	display: flex;
	z-index: 2;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-items: center;
}
.header .wrapper h2 {
	text-align: center;
	color: #fff !important;
	font-size: 4.5em;
}
.header .wrapper p {
	color: #fff !important;
	margin-top: .75em;
	font-size: 1.2em;
}
.header .wrapper .search {
	margin-top: 7rem;
}
.search input {
	padding: .75em 1.5em;
	width: 150%;
	transform: translateX(-15%);
	border-radius: 4px;
	border: none;
	font-size: 14px;
	color: rgba(0,0,0,.8);
	font-weight: 300;
}
.content {
	padding: 1rem 0;
	display: flex;
	flex-direction: column;
	justify-items: center;
	align-items: center;
}
.op-word {
	color: rgba(0,0,0,.7);
	font-size: 1rem;
	margin-bottom: 2rem;
}
.list-bidang {
	margin-top: 1.5rem;
	display: grid;
	grid-template-columns: auto auto auto auto;
	list-style-type: none;
 	padding: 0;
	width: 100%;
}
.a-bidang {
	height: 16rem;
	margin: .2rem .25rem;
	overflow: hidden;
}
.img-bidang {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	border-radius: 4px;
	transition: all 0.25s ease-in; 
	transform: scale(1);
}
.img-bidang::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: all 0.25s ease-in; 
	background-color: rgba(0,0,0,.5);
}
.img-bidang:hover {
	transform: scale(1.03);
}
.img-bidang:hover::after {
	background-color: rgba(0,0,0,0);
}
.bidang-wrapper {
	margin: 0;
	border-radius: 2px!important;
	padding: .75em 1.5em!important;
	z-index: 10;
	position: absolute;
	bottom: 0;
	width: 100%;
	color: #fff;
}
.bidang-wrapper p i {
	margin-right: 0.75rem;
	margin-left: -.25rem;
}
.bidang-wrapper p {
	font-size: 1em;
	display: flex;
	align-items: center;
}

@media only screen and (max-width: 1080px) {
	.list-bidang {
		grid-template-columns: auto auto auto;
	}
}

@media only screen and (max-width: 720px) {
	.list-bidang {
		grid-template-columns: auto auto;
	}
	.navbar {
		flex-direction: column;
		align-items: center;
	}
	.navbar .nav-list {
		margin-top: 1.5rem
	}
}

@media only screen and (max-width: 540px) {
	.list-bidang {
		grid-template-columns: auto;
	}
}

table.table-custom thead tr th {
	background-color: #2A3F54;
	color: #ffffff;
	text-align: center;
	vertical-align: middle;
  }
  
  table.table-custom thead tr.number td {
	text-align: center;
	font-size: 0.9em;
  }