body {
    position: relative;
}
/* ALL VERSION */
.navbar{
    position: relative;
    z-index: 1;
}
.navbar-brand {
    font-family: Ranchers;
    font-size: 32px
}

/* Jumbotron */
.jumbotron {
    background-image: url(../../assets/images/jumbotron/jumbotron-network.png);
    background-size: cover;
    height: 540px;
    text-align: center;
    position: relative;
}

.jumbotron::after{
    content: '';
    display: block;
    width: 100%;
    height: 80%;
    background-image: linier-gradient(to top,rgba(0,0,0,1),rgba(0,0,0,0));
    position: absolute;
    bottom: 0;
}

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

.jumbotron .display-4 {
    font-family: Acme;
    text-shadow: 3px 3px 5px rgba(37, 18, 18, 0.8);
    color: #ffffff;   
    margin-top: 80px;
}

.jumbotron .lead{
    font-family: Acme;
    color: #f6f878;
    text-shadow: 3px 3px 5px rgba(37, 18, 18, 0.8);
}

.jumbotron a{
    margin-top: 30px;
}

/* Info Panel */
.info-panel{
    box-shadow: 0 3px 20px rgba(0,0,0,0.5);
    border-radius: 12px;
    background-color: white;
    margin-top: -90px;
    padding: 20px;
}

.info-panel img{
    max-width: 100px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.info-panel h5{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
}

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

/* Horizontal Panel */
.hz-panel {
    margin-top: 29px;
}
.hz-panel .prg-title {
    font-weight: bold !important;
    text-shadow: 1px 1px 3px rgba(48, 21, 165, 0.5);
    text-align: right;
    background-color: rgb(250, 250, 250);
}

/* Card Description */
.hz-panel .card-desc{
    box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hz-panel .lg-title {
    font-weight:  bold;
}

/* SERVICES */
.tab-services .card-block{
    padding : 3px 3px;
}
.card-header {
    background-color: rgb(148, 148, 148);
    text-align: center;
}
.card-header a {
    color : white;
    font-weight: bold;
}

/* Others */
.sub-title {
    font-size: 32px;
    color: grey;
    text-align: center;
    margin-top: -2px;
}

/* Utility */
.tombol {
    text-transform: uppercase;
    border-radius: 40px;
}
.dashline {
    margin:5px 0;
    height:2px;
    background:
      repeating-linear-gradient(to right,rgb(190, 190, 190) 0,rgb(190,190,190) 5px,transparent 5px,transparent 7px)
      /*5px red then 2px transparent -> repeat this!*/
  }

  .icons {
      text-align: center;
  }

  .footer {
      background-color: rgb(0, 0, 0);
      color: white;
  }

.footer img {
    width: 12px;
}

  .footer .title {
      font-weight: bold;
      text-align: center;
      text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.7);
  }

  .footer a {
      color : rgb(165, 165, 165);
  }

/* DESKTOP VERSION */
@media (min-width: 992px) {

    /* Navbar */
    .nav-link {
        text-transform: uppercase;
        margin-right: 30px;
    }
    /* Garis bawah menu */
    /* .nav-link:hover{
        border-bottom: 3px solid #020581;       
    } */
    .navbar-brand, .nav-link{
        color: #ffffff !important;
        text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.8);
    }
    .nav-link:hover::after {
        content : '';
        display:block;
        border-bottom: 3px solid #e0dfdf;
        width : 50%;
        margin: auto;
        padding-bottom: 3px;
        margin-bottom: -8px; /* total border-bottom plus padding-bottom */
    }

    /* Jumbotron */
    .jumbotron{
        margin-top: -180px;
        height: 640px;
    }
    .jumbotron .display-4{        
        margin-top: 190px;
    }
}