html {
  scroll-behavior: smooth;
}

.navbar {
	position: relative;
	z-index: 1;
}

.navbar-brand {
	font-family: 'Viga', sans-serif;
	font-size: 22px;
}

.tombol {
	text-transform: uppercase;
	border-radius: 40px;
}

/* JUMBOTRON */

.jumbotron {
	position: relative;
	text-align: center;
	background-image: url(../img/jumbotron-bg.jpg);
	background-size: cover;
	height: 540px;
}

.jumbotron .container {
	position: relative;
	z-index: 1;
}

.jumbotron::after {
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	height: 80%;
	background-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
	bottom: 0;
	z-index: 
}

.jumbotron .display-4 {
	color: #fff;
	margin-top: 150px;
	font-weight: 200;
	font-size: 40px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
	margin-bottom: 30px;
}

.jumbotron .display-4 span {
	font-weight: 500;
}

/* INFO PANEL */

.info-panel {
	background-color: #fff;
	box-shadow: 0 3px 20px rgba(0,0,0,0.2);
	border-radius: 12px;
	margin-top: -100px;
	padding: 30px;
}

.info-panel img {
	width: 80px;
	height: 80px;
	margin-right: 20px;
	margin-bottom: 20px;
}

.info-panel h4 {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
	margin-top: 5px;
}

.info-panel p {
	font-size: 14px;
	font-weight: 200;
	color: #ACACAC;
	margin-top: -5px;
}

/* WORKINGSPACE */

.workingspace {
	margin-top: 70px;
	text-align: center;
}

.workingspace h3 {
	font-size: 45px;
	font-weight: 200;
	text-transform: uppercase;
	margin-top: 30px;
}

.workingspace h3 span {
	font-weight: 500;
}

.workingspace p {
	font-size: 16px;
	font-weight: 200;
	color: #ACACAC;
	margin: 20px 0;
}

/* PORTOFOLIO */

.portofolio {
	margin-top: 50px;
	text-align: center;
}

.portofolio h3 {
	font-size: 30px;
	font-weight: 200;
	text-transform: uppercase;
	margin-top: 30px;
}

.portofolio h3 span {
	font-weight: 500;
}

.portofolio-img {
	box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.portofolio-img img {
	height: 180px;
}

.portofolio-img div h5 {
	text-transform: uppercase;
	font-size: 18px;
}

/* TESTIMONIAL */

.testimonial {
	margin-top: 50px;
}

.testimonial h5 {
	text-align: center;
	font-weight: 200;
	font-style: italic;
	font-size: 20px;
}

.testimonial figure img {
	width: 60px;
	margin: 20px 10px 10px;
	opacity: 0.6;
}

.testimonial figure img.utama {
	width: 90px;
	opacity: 1;
	margin-top: 5px;
}

.testimonial figure h5 {
	font-size: 16px;
	font-weight: bold;
	font-style: normal;
	color: #1C2C5D;
}

.testimonial figure p {
	font-size: 12px;
	color: #ACACAC;
	margin-top: -5px;
}

.testimonial figcaption {
	text-align: center;
}

/* FOOTER */

.footer {
	margin-top: 50px;
}

.footer p {
	color: #ACACAC;
	font-size: 18px;
}

/* DESKTOP */
@media (min-width: 992px) {
	.navbar-brand, .nav-link {
		color: #fff !important;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
	}

	.nav-link {
		text-transform: uppercase;
		margin-right: 30px;
	}

	.nav-link:hover::after {
		content: '';
		display: block;
		border-bottom: 3px solid #0B63DC;
		width: 50%;
		margin: auto;
		padding-bottom: 5px;
		margin-bottom: -8px;
	}

	.jumbotron {
		margin-top: -75px;
		height: 640px;
	}

	.jumbotron .display-4 {
		font-size: 62px;
	}

	.workingspace {
		text-align: left;
	}

	.testimonial h5 {
		font-size: 32px;
	}
}