@import url('https://fonts.googleapis.com/css2?family=Viga&display=swap');

.navbar {
    position: relative;
    z-index: 1;
}

.navbar-brand {
    font-family: viga ;
    font-size: 32px;
}
.jumbotron {
    background-image: url(../img/jumbotron-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 480px;
    text-align: center;
    position: relative;
}

.jumbotron .container {
    position: relative;
    z-index: 1;
}

.jumbotron::after {
    content: '';
    display: block;
    width: 100%;
    height: 80%;
    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: 120px;
    font-weight: 200;
    font-size: 38px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .7);
    margin-bottom: 30px;
}
.jumbotron .display-4 span {
    font-weight: 500;
}

/* Info Panel */
.info-panel {
    background-color: white;
    box-shadow: 0 3px 20px rgba(0, 0, 0, .5);
    border-radius: 12px;
    top: -110px;
    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: 15px;
    color: #acacac;
    margin-top: -5px;
    font-weight: 500px;
}

/* Working Space */
.workingspace {
    text-align: center;
}
.workingspace h3 {
    font-size: 52px;
    font-weight: 200; /*biar kurus*/
    text-transform: uppercase;
    margin-top: 30px;
}
.workingspace h3 span {
    font-weight: bold;
}

.workingspace p {
    font-size: 18px;
    font-weight: 200;
}

.workingspace a {
    padding-left: 40px;
    padding-right: 40px;
}

/* Testimonial */
.testimonial {
    margin-top: 100px;
}
.testimonial h5{
    text-align: center;
    font-weight: 200;
    font-style: italic;
    font-size: 24px;
    margin-top: 10px;
}

.custtesti {
    margin-top: 25px;
}
.testimonial figure img {
    width: 65px;
    margin: 20px 15px 10px;
    opacity: .5;
}

.testimonial figure img.utama{
    width: 100px;
    margin: 2px;
    opacity: 1;
}

.testimonial figure h5 {
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    color: #1C2C5D;
}
.testimonial figure p {
    font-size: 12px;
    font-style: normal;
    color: #acacac;
    text-align: center;
    margin-top: -5px;
}

/* footer */
.footer {
    color: #acacac;
    font-size: 18px;
    margin-top: 100px;
}
.footer::before {
    content: '';
    display: block;
    border-bottom: 1px solid #acacac;
    width: 50%;
    margin: auto;
    padding-top: 5px;
    margin-top: -8px;
}

/* UTILITY */
.tombol {
    text-transform: uppercase;
    border-radius: 25px;
    margin: 30px;
}


/* DESKTOP VERSION */
@media (min-width: 992px) {
    .navbar-brand, .nav-link {
        color: white !important;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, .7);
    }
    .navbar-brand img {
        filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .7));
    }
    .nav-link {
        text-transform: uppercase;
        margin-right: 30px;
        margin-top: 28px;
    }
    .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: -140px;
        height: 640px;
    }
    .jumbotron .display-4 {
        margin-top: 150px;
        font-size: 62px;
    }
    .workingspace, .workingspace a {
        text-align: left;
    }
    .workingspace a {
        text-align: left !important;
        margin-left: -1px;
        padding-left: 40px;
        padding-right: 40px;
    }
    .testimonial h5{
        font-size: 32px;
    }
    .footer::before {
        width: 25%;
    }
}