.perusahaan_atas{
    margin-top: 8rem;
    height: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.perusahaan_atas img{
    width: 150px;
    height: auto;
}

.perusahaan-info{
    /* width: 100vw; */
    /* height: 60vh; */
    background-color: rgba(0, 0, 0, .6);
    
    color: white;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.perusahaan-info p {
    width: 70vw;
    font-size: 1.1rem;
    line-height: 2;
    column-count: 2; /* atau column-width: 50%; */
    column-gap: 20px; /* jarak antar kolom */
  }

.visi-misi{
    display: flex;
    justify-content: center;
    align-items:flex-start;
    padding: 100px 35px;
    width: 100vw;
    background-color: aqua;
    background-image: url(/images/visi.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: -50px;
    

  }

  .visi, .misi, .nilai-utama{
    width: 250px;
    margin: 35px;
    /* background-color: brown; */
  }

  .nilai-utama{
    display: flex;
    align-items: flex-start;
  }

  .judul{
    margin-bottom: 20px;
    text-align: center;
  }

  .line{
    margin-top: 35px;
    height: 300px;
    width: .5px;
    background-color: rgba(0, 0, 0, .6);
  }

  .visi-misi p, ul{
    line-height: 2rem;
  }

  .visi-misi h1{
    font-size: 3rem;
    color: var(--blue);
  }

  .isi-misi{
    transform: translateX(14px);
  }


  .misi p {
    text-indent: -14px;
 }
 
 /* .misi p:first-child {
    text-indent: 0;
 } */

  /* SMALL media */
  @media screen and (max-width: 800px){
    .perusahaan-info p{
      column-count: 1;
      width: 70vw;
    }

    .visi-misi{
      padding: 30px;
      /* text-align: center; */
      flex-direction: column;
      align-items: center;
    }

    .line{
      display: none;
    }

    .visi-misi p, ul{
      font-size: 1.3rem;
      line-height: 2rem;
    }

   
  }