/* DEKSTOP VERSION */
  /* Navbar */
  .navbar-brand .brand {
    width: 180px;
  }
  .navbar-nav .tombol {
    margin-left: 40px;
    background-color: rgba(0, 109, 160);
    border-radius: 30px;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
  }
  .navbar-nav .nav-link {
    color: rgba(0, 109, 160) ;
  }
  .nav-link {
    font-family: arial;
    font-size: 14px;
    text-transform: uppercase;
    margin-right: 10px;
  }
  .nav-link:hover::after {
    content: '';
    display: block;
    border-bottom: 3px solid rgba(0, 109, 160);
    width: 50%;
    margin: auto;
    padding-bottom: 5px;
    margin-bottom: -8px;
  }
  /* Akhir Navbar */

  /* Awal COMPANY PROFILE */
  .rcm-features {
    background-color: rgba(0, 109, 160);
    padding: 20px;
  }
  .rcm-features-text {
    text-align: center;
    border-bottom: 2px solid rgb(250, 250, 250);
    padding-bottom: 10px;
    color: rgb(255, 255, 255);
    font-size: 35px;
  }
  /* Akhir COMPANY PROFILE*/

  /* Awal VISI MISI */
  .vm-vm {
    padding-top: 20px;
  }
  .visi-misi {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 50px;
  }
  .visi-misi h2 {
    padding-bottom: 10px;
    color: rgba(0, 109, 160);
  }
  .visi-misi p {
    margin-bottom: 0;
  }
  @media only screen and (max-width: 1150px) {
    .vm-vm {
      padding-top: 10px;
    }
    .visi-misi {
      padding-top: 10px;
      padding-bottom: 10px;
    }
    .visi-misi h2 {
      font-size: 20px;
      margin-bottom: 0px;
      padding-bottom: 0px;
    }
    .visi-misi p {
      color: black;
      font-weight: 500;
      font-size: 12px;
      padding-right: 10px;
      padding-left: 10px;
    } 
  }
  /* AKHIR VISI MISI */

  /* Awal Dir Talk */
  .talk-issue h2 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 8px;
    font-family: 'Trebuchet MS';
    color: rgba(0, 109, 160);
  }
  .grid {
    margin: 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    align-items: center;
  }
  .grid .text h4{
    font-size: 23px;
    padding-top: 10px;
    margin-bottom: 0;
  }
  .grid .text1 {
    padding-top: 16px;
    padding-bottom: 16px;
    box-shadow: 0;
  }
  .text .school {
    font-size: 13px;
  }
  .grid > article {
    border-radius: 1px solid #ccc;
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    text-align: center;
  }
  .grid > article:hover{
    transition: transform .1s ease-out;
    transform: translateY(5px);
  }
  .grid > article img {
    width: 75%;
    padding-top: 25px;
  }
  .school {
    margin-bottom: 10px;
    margin-top: 5px;
  }
  .title {
    padding: 10px;
    background-color: rgb(238, 238, 238);
  }
  @media (max-width: 768px){
    .talk-issue h2 {
      font-size: 20px;
      padding-top: 10px;
      padding-bottom: 8px;
      color: rgba(0, 109, 160);
    }
    .grid{
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px){
    .grid{
      grid-template-columns: repeat(1, 1fr);
    }
    .grid > article{
      text-align: center;
    }
  }
  /* Akhir Dir Talk */

  /*Awal Members*/
  .Members-title {
    padding-bottom: 30px;
  }
  .Members-title h3{
    text-align: center;
    padding-top: 70px;
    padding-bottom: 20px;
    color: rgba(0, 109, 160);
  }
  .uraian th {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .uraian td {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .table {
    padding-top: 20px;
    color: rgb(0, 0, 0);
  }
  .table thead {
    text-align: left;
  }
  .table tbody {
    text-align: left;
  }

  /* Awal Team */
  .team-project{
    color: rgb(255, 255, 255);
    background-color:  rgba(0, 109, 160);
    padding-bottom: 7px;
  }
  .heading {
    color: rgb(255, 255, 255);
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .profiles {
    display: flex;
    justify-content: space-around;
    margin: 20px 3px;
  }
  .profile {
    flex-basis: 100px;
  }
  .profile .profile-img {
    height: 160px;
    width: 160px;
    border-radius: 50%;
    filter: grayscale(100%);
    cursor: pointer;
    transition: 400ms;
  }
  .profile:hover .profile-img {
    filter: grayscale(0);
  }
  .user-name {
    margin-top: 25px;
    font-size: 19px;
    text-align: center;
  }
  .profile h5 {
    font-size: 16px;
    font-weight: 50;
    letter-spacing: 2px;
    color: white;
    text-align: center;
  }
  .profile p {
    font-size: 13px;
    margin-top: 20px;
    text-align: justify;
  }
  @media only screen and (max-width: 1150px) {
    .profiles {
      flex-direction: column;
    }
    .profile {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .profile p {
      text-align: center;
      margin: 20px 60px 80px 60px;
      font-size: 20px;
    }
  }
  @media only screen and (max-width: 900px) {
    .heading {
      font-size: 22px;
      color: white;
      text-align: center;
    }
    .profiles {
      margin: 20px 0;
    }
  }
  /* Akhir Team */

  /* Awal Support */
  .TS-name {
    text-align: center;
    font-size: 33px;
    font-family: 'trebuchet MS';
    padding-top: 40px;
    padding-bottom: 20px;
    color: rgba(0, 109, 160);
    font-weight: 35px;
  }
  div.gallery {
    border: 1px solid #ccc;
  }
  div.gallery:hover {
    border: 1px solid rgb(255, 255, 255);
  }
  div.gallery img {
    width: 100%;
    height: auto;
  }
  div.desc {
    padding: 15px;
    text-align: center;
    font-size: 15px;
    background-color:rgba(0, 109, 160);
    color: honeydew;
    font-family: 'Trebuchet MS';
  }
  .responsive {
    padding: 0 50px;
    float: left;
    width: 25%;
  }
  .clearfix {
    padding-bottom: 53px;
    border-bottom: 2px solid rgb(187, 187, 187);
  }
  @media only screen and (max-width: 700px) {
    .TS-name {
      text-align: center;
      font-size: 25px;
      font-family: 'trebuchet MS';
      padding-top: 20px;
      padding-bottom: 10px;
      color: rgba(0, 109, 160);
      font-weight: 50px;
    }
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
  }
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
  }
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

  /* Awal Footer */
  .RCM-footer{
    font-family: 'Trebuchet MS';
    padding-top: 15px;
  }
  .box-grid-outer .box-inner {
    margin-left: 30px;
  }
  .box-inner h5{
    margin-bottom: 20px;
  }
  .content_foot .office p{
    margin: 0;
    padding: 0;
  }
  .address .fa {
    margin-right: 10px;
  }
  .application {
    padding-bottom: 20px;
  }
  .application p {
    margin: 0;
    padding: 0;
  }
  .box-terdaftar img {
    width: auto;
    max-width: 130%;
    vertical-align: none;
    border-style: none;
    display: flex;
  }
  .box-inner .content-foot .fab{
    margin-right: 8px;
  }
  .footer-bottom{
    padding: 10px;
    background-color: #003170;
    margin-left: auto;
  }
  .office p {
    margin-bottom: 0;
  }
  .box-inner .text-footer p{
    padding: 10px;
    margin: 0px 0px 0px;
    text-align: center;
    color: aliceblue;
  }

/* MEDIA VERSION HP */
@media (max-width: 720px) {
  /* Navbar */
  .navbar-brand .brand {
    width: 160px;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .navbar-nav .tombol {
    background-color: rgba(0, 109, 160);
    border-radius: 8px;
    box-shadow: 10px;
    width: 100px;
    margin: auto;
    margin-top: 10px;
    font-size: 11px;
  }
  .nav-link {
    font-family: 'Trebuchet MS';
    font-size: 15px;
    margin: auto;
  }
  .nav-link:hover::after {
    content: '';
    display: block;
    border-bottom: 3px solid rgba(0, 109, 160);
    width: 50%;
    padding-bottom: 5px;
    margin-bottom: -8px;
  }

  /* Jumbotron Slider*/
  .jumbotron {
    margin: 0px;
    padding: 0px;
  }
  .carousel-inner {
    background-size: cover;
    height: 120px;
    font-family: 'Trebuchet MS';
  }
  .carousel-caption {
    margin-top: 10px;
    bottom: 5px;
    padding: 0px;
  }
  .carousel-caption h3 {
    font-size: 13px;
  }
  .carousel-caption p {
    font-size: 10px;
  }

  /* Tab Our Service */
  .rcm-features {
    background-color: rgba(0, 109, 160);
    padding: 10px;
  }
  .rcm-features-text {
    text-align: center;
    border-bottom: 1px solid rgb(250, 250, 250);
    padding-bottom: 8px;
    color: rgb(255, 255, 255);
    font-size: 15px;
  }
  .rcm-features-item img {
    width: 70px;
    padding: 2px;
    margin-right: 15px;
    margin-top: -1px;
  }
  .rcm-features-item h4 {
    font-size: 13px;
    color: rgb(255, 255, 255);
    padding-top: 0px;
  }
  .rcm-features-item p {
    font-size: 10px;
    color: rgb(255, 255, 255);
    margin-bottom: 0px;
  }

  /* Awal Footer */
  .RCM-footer{
    font-family: 'Trebuchet MS';
    padding-top: 0px;
  }
  .box-grid-outer .box-inner {
    margin-left: 5px;
    padding-bottom: 0px;
  }
  .box-inner h5{
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 5px;
  }
  .content_foot .office p{
    font-size: 12px;
  }
  .address {
    font-size: 12px;
  }
  .address .fa-mobile-phone {
    margin-right: 10px;
    font-size: 10px;
  }
  .address .fa-envelope-o {
    margin-right: 10px;
    font-size: 10px;
  }
  .address .fa-globe {
    margin-right: 10px;
    font-size: 10px;
  }
  .application {
    font-size: 12px;
    padding-bottom: 0;  
  }
  .box-terdaftar img {
    width: auto;
    max-width: 70%;
    vertical-align: none;
    border-style: none;
    display: flex;
    padding-bottom: 10px;
  }
  .box-inner .content-foot .fab{
    margin-right: 8px;
  }
  .footer-bottom {
    padding: 5px;
    background-color: #003170;
    margin-left: auto;
  }
  .box-inner .text-footer p{
    padding: 10px;
    text-align: center;
  }
  .footer-bottom .text-footer p{
    font-size: 9px;
  }
}