/* Navbar */
.navbar {
    position: relative;
    z-index: 1;
}
.navbar-brand {
    font-family: 'Viga', sans-serif;
    font-size: 32px;
}

/* Utils */
.tombol {
    text-transform: uppercase;
    border-radius: 40px;
}

/* Jumbotron */
.jumbotron {
    background-image: url(img/jumbotron-bg.jpg);
    background-size: cover;
    height: 540px;
    text-align: center;
    position: relative;
}

.container {
    position: relative;
    z-index: 1;
}

.jumbotron::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0));
    position: absolute;
    bottom: 0;      /* coba kalo top, bisa gak ya? */
}

.jumbotron .display-4 {
    color: white;
    text-align: center;
    margin-top: 150px;
    font-size: 40px;
    margin-bottom: 30px;
}

.jumbotron .display-4 span {
    font-weight: 500;
}

/* Info Panel */
.info-panel {
    box-shadow: 0 3px 2px black;
    border-radius: 12px;
    margin-top: -100px;
    background-color: white;
    padding: 30px;
}

.info-panel img {
    width: 80px;
    height: 80px;
    margin-right: 30px;
}

.info-panel h4{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
}

.info-panel p {
    font-size: 14px;
    color: #acacac;
}


/* Workingspace */
.workingspace {
    margin-top: 120px;
    text-align: center;
}

.workingspace h3 {
    font-size: 52px;
    font-weight: 200;
    text-transform: uppercase;
    margin-top: 30px;
}

.workingspace h3 span {
    font-weight: 500;
}
.workingspace p {
    font-size: 18px;
    color: #acacac;
    margin-top: 30px;
}



/* Testimonial */
.testimonial {
    margin-top: 100px;
}

.testimonial h5 {
    text-align: center;
    font-weight: 200;
    font-style: italic;
    font-size: 24px;
}

.testimonial figure img {
    width: 60px;
    margin: 20px 10px 5px;
    opacity: 0.7;
}

.testimonial figure img.utama {
    width: 90px;
    margin: 5px 10px 5px;
    opacity: 1;
}

.testimonial figure h5 {
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    color: rgb(31, 31, 119);
}

.testimonial figure p {
    font-size: 12px;
    color: #acacac;
    margin-top: -3px;
}

.testimonial figcaption {
    text-align: center;
}

/* FOOTER */
.footer{
    margin-top: 100px;
}

.footer p {
    color: #acacac;
    font-size: 18px;
}






/* Desktop Version */
@media (min-width: 992px) {
    .navbar-brand, .nav-link {
        color: white !important;
    }

    .nav-link {
        text-transform: uppercase;
        margin-right: 30px;
    }

    .nav-link:hover::after {
        content: '';
        display: block;
        border-bottom: 3px solid blue;
        width: 50%;
        margin: auto;
        padding-bottom: 5px;
        margin-bottom: -8px;
    }

    .jumbotron {
        margin-top: -75px;
        height: 650px;
    }

    .jumbotron .display-4 {
        font-size: 62px;
    }

    .workingspace {
        text-align: left;
    }

    .testimonial h5 {
        font-size: 32px;
    }
}





/* 
@media (min/max-width: 576px) {
    .navbar-nav{
        font-size: 80px;
    }
} */