:root {
    /* --level-1: #8dccad; */
    /* --level-2: #f5cc7f; */
    /* --level-3: #7b9fe0; */
    /* --level-4: #f27c8d;     */
    --garis: white;
  }

  .container ol {
    list-style: none;
  }
  
  .rectangle {
    position: relative;    
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    max-width: 200px;
    border-radius: 50%;
    overflow: hidden;
  }
  .mar20{
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  
  /* LEVEL-1 STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .level-1 {    
    margin: 0 auto;
    background: var(--level-1);    
  }
  
  .level-1::after {
    content: "";
    position: absolute;
    /* top: -20px; */
    /* line-height: 100%; */
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: var(--garis);    
  }
  
  
  /* LEVEL-2 STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .level-2-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-top: 61px;
  }
  
.level-2-wrapper::before {
    content: "";
    position: absolute;
    top: 20px;
    width: 100%;
    height: 4px;
    background: var(--garis);
    overflow: hidden;
  }
  
.level-2-wrapper::before {
    content: "";
    position: absolute;
    top: 20px;    
    width: 100%;
    height: 4px;
    background: var(--garis);
    overflow: hidden;
  }

  .level-2-wrapper::after{
    display: none;
    content: "";
    position: absolute;
    left: -15px;
    bottom: -20px;  
    width: calc(100% + 20px);  
    background: var(--garis);  
  }
  
  .level-2-wrapper li{
    position: relative;
  }
  
  .level-2-wrapper > li::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 40px;
    background: var(--garis);
  }
  
  .level-2 {
    width: 70%;
    margin: 0 auto 40px;
    background: var(--level-2);
  }
  
  .level-2::after {
    display: none;
    content: "";
    position: absolute;
    top: 100%;
    left: 0%;
    transform: translate(-100%, -50%);
    width: 20px;
    height: 2px;
    background: var(--garis);
  }
  

  /* MQ STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 1000px) {    
  .kol5 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding-top: 65px;    
  }
}

@media screen and (max-width: 700px) {    
    .level-1,.level-2 {
      width: 100%;
    }  
    .level-1 {
      margin-bottom: 20px;      
    }
    .level-1::before,.level-1::after,.level-2-wrapper > li::before,.level-2-wrapper5>li::before {
      display: none;
    }
    .level-2-wrapper,.level-2-wrapper::after,.level-2-wrapper5::after {
      display: block;
    }
    .level-2::after{
        display: block;
        position: absolute;
        width: 50px;
        height: 4px;
        top:50%
    }
    .level-2-wrapper {
      width: 70%;
      margin-left: 24%;
    }
    .level-2-wrapper::before {
      left: -20px;
      width: 4px;
      height: calc(94%);
      top:-20px;
    }
    .level-2-wrapper> li:not(:first-child) {
      margin-top: 0;
    }
  }
