/* Nav Bar */
.navbar {
    position: relative;
    z-index: 1;
}

.navbar-brand {
    font-family: 'Viga';
    font-size: 32px;
}

/* JUmbotron */
.jumbotron {
    background-image: url(img/backpic.jpg);
    background-size: cover;
    height: 540px; 
    text-align: center;  
    position: relative;
}

.jumbotron .container {
    z-index: 1;
    position: relative;
}

.jumbotron::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top,rgba(0,0,0,1),rgba(0,0,0,0));
    position: absolute;
    bottom: 0%;
}

.jumbotron .display-4 {
    color: white;
   
    margin-top: 150px;
    font-weight: 200;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
    font-size: 31px;
    margin-bottom: 30px;
}

.jumbotron .display-5 {
    color: white;
    margin-top: 50px;
    font-weight: 200;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
    font-size: 31px;
    margin-bottom: 30px;
}

.jumbotron .display-6 {
    color: white;
    margin-top: 70px;
    font-weight: 200;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
    font-size: 20px;
    margin-bottom: 10px;
}

.jumbotron .display-7 {
    color: white;
    margin-top: 5px;
    font-weight: 200;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
    font-size: 20px;
    margin-bottom: 5px;
}

.jumbotron .display-4 span {
    font-weight: 500;
}

.jumbotron .display-5 span {
    font-weight: 200;
}

.jumbotron .display-6 span {
    font-weight: 400;
}

/* Info Panel */
.info-panel {
    box-shadow: 0 3px 20px rgba(0, 0, 0,0.5);
    border-radius: 12px;
    margin-top: -60px;
    background-color: white;
    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;
    color: #acacac;
    margin-top: -5px;
    font-weight: 200;
}

/* Working Space */
.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;
    font-weight: 200;
    margin: 25px 0;
}

/* 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 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 !important ;  
}

.testimonial figcaption {
    text-align: center;
}

/* Footer */
.footer {
    margin-top: 100px;
}
.footer p {
    color: #acacac;
    font-size: 18px;

}


/* Utility */
.tombol {
    text-transform: uppercase;
    border-radius: 40px;
}

/* Desktop Version */
@media (min-width: 992px) { 
    .navbar-brand,.nav-link {
        color: white !important;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
    }
    .nav-link {
        text-transform: uppercase;
        margin-right: 50px;
    }
    
    .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: 700px;
    }
    .jumbotron .display-4 {
        font-size: 62px;
    }

    .workingspace  {
        text-align: left;
    }
    .testimonial h5 {
        font-size: 32px;
    }
}