    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* 11 #28a745  22 #1e7e34 */
:root {
    --main-color:#28a745;
    --voidmain-color:#468518;
    /*#7857fe*/
/*    468518*/
    --void-color: #1e7e34;
    --color-1: #e91e63;
    --color-2: #f5ae10;
    --color-3: #09d69c;
    --bg-dark: #2b2c2f;
    --void-to-color: var(--void-color);
    --main-to-dark-color: var(--main-color);
    --voidmain-to-dark-color: var(--voidmain-color);
    --dark-to-main-color: var(--bg-dark);
    --shadow-black-100: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-black-300: 0 5px 15px rgba(0, 0, 0, 0.3);
    --black-900: #000000;
    --black-400: #555555;
    --black-100: #f7f7f7;
    --black-000: #ffffff;
    --black-alpha-100: rgba(0, 0, 0, 0.05);


    /*  */
    --bg_base: white;
    --bg_black: black;
    --bg_white: white;
    --bg_new: #f7f7f7;
    --bg_silver: silver;
    --bg_silvercalm: #F0F0F0;
    --bg_hover: #fbfbfb;
    --bg_green: #2ecc71;
    --bg_greencalm: #AFC726;
    --bg_red: #fb4131;
    --bg_orange: #e67e22;
    --bg_yellow: #ffe99a;
    --bg_tosca: #1abc9c;
    --bg_purple: #9b59b6;
    --bg_purplecalm: #84B9F7;
    --bg_blue: #177ffb;
    --bg_bluedark: #0d60c3;
    --bg_line: #ececec;
    --bg_hover: #f3f3f3;
    --bg_blurblack: rgba(0, 0, 0, 0.25);
    --bg_alert_green: #177ffb;
    --bg_alert_orange: #e67e22;
    --bg_alert_red: #e74c3c;
    --text_white: white;
    --text_silver: #9a9a9a;
    --text_blue: #177ffb;
    --text_black: #342e34;
    --text_red: #fb4131;
    --text_green: #079992;
    --shadow: rgba(230, 230, 230, 0.88);
    --input_border: silver;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    background-color: #fff;
    line-height: 1.5;
}

* {
    margin: 0;
    padding: 0;
    outline: none !important;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    list-style: none;
}

.btn-1 {
    background-color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    color: var(--main-color);
    font-size: 16px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-black-300);
    font-weight: 500;
}

.btn-1:focus {
    box-shadow: var(--shadow-black-300);
}

.btn-1:hover {
    color: #fff;
    background-color: var(--main-color);
}
.btn-2 {font-family: 'Poppins', sans-serif;
    background-color: var(--main-color);
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-black-100);
    font-weight: 500;
}

.btn-2:focus {
    box-shadow: var(--shadow-black-100);
}

.btn-2:hover {
    color: var(--main-color);
    background-color: #fff;
}
@keyframes spin_01 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounceTop_01 {

    0%,
    100% {
        transform: translateY(-30px);
    }

    50% {
        transform: translateY(0px);
    }
}

@keyframes pulse_01 {
    0% {
        transform: scale(0.94);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.94);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
@keyframes zoomInOut_01{
    0% {
        transform: scale(0); 
    } 

    100% {
        transform: scale(1); 
        opacity: 0;
    }
}
.effect-wrap .effect {
    position: absolute;
    z-index: -1;
}

.effect-wrap .effect-1 {
    left: 30%;
    top: 15%;
    font-size: 20px;
    color: var(--color-2);
    animation: spin_01 5s linear infinite;
}

.effect-wrap .effect-2 {
    right:  5%;
    top: 10%;
    font-size: 30px;
    color: var(--color-2);
    /*color: rgba(255, 255, 255, 0.5);*/
    animation: spin_01 7s linear infinite;
}

.effect-wrap .effect-3 {
    left: 5%;
    bottom: 30%;
    font-size: 25px;
    color: var(--color-2);
    /*color: var(--color-3);*/
    animation: bounceTop_01 3s linear infinite;
}
.effect-4{
  left: 80%;
  bottom: 20%;
  width: 40px;
  display: flex;
  flex-wrap: wrap;
  animation: bounceTop_01 3s ease-in-out infinite
}
.effect div{
  height: 3px;
  width: 3px;
  background-color: var(--color-2);
  margin: 0 3px 8px;
}
.effect-5{
  height: 180px;
  width: 180px;
  border:25px solid var(--color-2);
  border-radius: 50%;
  left: 9%;
  top: -68px; 
}
.section-padding{
  padding: 80px 0;
}.section-title{
  margin-bottom: 60px;
}
.section-title h2{
  font-size: 40px;
  color: var(--black-900);
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  margin: 0;
}
.section-title h2 span{
  color: var(--main-color);
  /*color: var(--text_white);*/
}


.owl-carousel .owl-dots{
  padding: 0 15px;
  text-align: center;
  margin-top: 20px;
}
.owl-carousel button.owl-dot{
  height: 6px;
  width: 24px;
  background-color: #dddddd;
  display: inline-block;
  margin:0 4px;
  border-radius: 5px;
}.owl-carousel button.owl-dot.active{
  background-color: var(--main-color);
}

/*preload*/
/*.preload{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2100;
  background-color: var(--main-to-dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preload span{
  display: block;
  height: 60px;
  width: 60px;
  background-color: var(--dark-to-main-color);
  border-radius: 50%;
  animation: zoomInOut_01 1s ease infinite;
}*/
/*preload*/

/* navbar */
.navbar {
    background-color: transparent;
    padding: 20px 0;

    transition: all 0.5s ease;
}
.navbar-brand {
    font-family: "Poppins", sans-serif!important;
    font-weight: 800!important;
}
 .navbar-shrink{
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    background-color: var(--main-color);
    padding: 0px 0;
}

/*.navbar>.container {
    padding: 15px 0;
}*/
.navbar>.container {
    padding: 5px 0;
}

.navbar  .navbar-brand {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
}

.navbar .nav-item {
    /*margin-left: 40px;*/
    margin-left: 25px;
}

.navbar .nav-item .nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 0;
    position: relative;
    text-transform: capitalize;
}

.navbar .nav-item .nav-link::before {
    content: '';
    position: absolute;
    background-color: #fff;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    transition: all 0.5s ease;
    transform: scale(0);
}

.navbar .nav-item .nav-link.active::before,
.navbar .nav-item .nav-link:hover::before {
    transform: scale(1);
}
 

.home {
    /*min-height: 70vh; 
    padding: 70px 0; 
    background-color: var(--main-to-dark-color);
    border-radius: 0 0 200px 0; 
    position: relative;
    z-index: 1;
    overflow-x: hidden;*/

    min-height: 70vh; 
    padding: 70px 0; 
    background-color: var(--main-to-dark-color);
    border-radius: 0 0 200px 0;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    /*background-image: url('http://ropeg.menlhk.go.id/CASN2021/demo/img/dotmap-indonesia.png');*/
    background-position: center top; 
    background-repeat: no-repeat;
    background-size: 80% 90%; 
}

.home-text h1 {
    font-size: 24px; 
    font-weight: 800;
    color: #fff;
    margin: 40px 0 30px; 
    line-height: 40px;
}

.home-text p {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    margin: 0;
    font-weight: 300;
}

.home .home-btn {
    margin-top: 40px;
}

.home .home-btn .video-play-btn {
    margin-left: 30px;
    height: 50px;
    width: 50px;
    padding: 0;
    font-size: 16px;
    animation: pulse_01 2s ease infinite;
}

.home .home-btn .video-play-btn:hover {
    animation: none;
    box-shadow: var(--shadow-black-300);
}

.home .home-btn .video-play-btn i {
    line-height: 50px;
}

.home-img img {
    max-width: 250px;
    width: 100%;
    box-shadow: var(--shadow-black-100);
    border-radius: 32px;
    animation: bounceTop_01 3s ease infinite;
}

.home-img {
    position: relative;
}

.home-img .circle {
    position: absolute;
    z-index: 1;
    height: 400px;
    width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home-img .circle::before {
    content: '';
    position: absolute;
    height: 60px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    left: 30px;
    top: 30px;
    transform-origin: 170px 170px;
    animation: spin_01 10s linear infinite;
}

/* video */

.video-popup {
    padding: 30px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1999;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

 .video-popup-open {
    opacity: 1;
    visibility: visible;
} 

.video-popup-inner {
    width: 100%;
    max-width: 900px;
    position: relative;
}

 .video-popup .video-popup-close {
    position: absolute;
    right: 0;
    top: -30px;
    height: 30px;
    width: 30px;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    color: #fff;
} 

.video-popup .iframe-box {
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.video-popup #player-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* awesome */
.features .feature-item{
  box-shadow:var(--shadow-black-100); 
  margin:15px;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.features .feature-item::before,
.features .feature-item::after
{
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  transition: all 0.5s ease;
  opacity: 0;
}.features .feature-item::before  {
  height: 20px;
  width: 20px;
  background-color: var(--color-1);
  left: -20px;
  top: 40%;
}.features .feature-item:hover::before  { 
  left: 10px;
  opacity: 1;
}.features .feature-item::after  {
  height: 30px;
  width: 30px;
  background-color: var(--color-2);
  right: -30px;
  top: 80%;
}.features .feature-item:hover::after  {
  opacity: 1;
  right: -15px;
}.features .feature-item .icon{
  height: 60px;
  width: 60px;
  margin: 0 auto 30px;
  font-size: 30px;
  color: var(--main-color);
  position: relative;
  z-index: 1; 
  transition: all 0.5s ease;
} .features .feature-item .icon::before{
  /*content: '';
  position: absolute;
  left: 100%;
  top:0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  transition: all 0.5s ease;
  z-index: -1;
  opacity: 0;*/
  content: '';
    position: absolute;
    left: 160%;
    top: 0;
    width: 135%;
    height: 135%;
    background-color: var(--main-color);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0;
} .features .feature-item:hover .icon{
  color: #fff;
  font-size: 20px;
}.features .feature-item:hover .icon::before{
  /*left: 0;*/
  left: -11px;
  border-radius: 50%;
  opacity: 1;
} .features .feature-item .icon i{
  line-height: 60px
} .features .feature-item h3{
  font-size: 22px;
  margin: 0 0 20px;
  color: var(--black-900);
  font-weight: 500;
  text-transform: capitalize;
} .features .feature-item p{
  font-size: 12px;
  line-height: 26px;
  font-weight: 300;
  color: var(--black-400);
  margin: 0 0 15px;
}

/*fun-facts*/
.fun-facts{
    background-color: var(--black-100);
    border-radius: 90px 90px 0 0;
}
.fun-facts .section-title {
    margin-bottom: 20px;
    margin-top: 30px;
}
.fun-facts .section-title h2{
    text-align: left;
}
.fun-facts-img img{
    /*max-width: 250px;*/
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-black-100);
    border-radius: 32px;
    animation: bounceTop_01 3s ease infinite;
}
.fun-facts-text p{
  font-size: 16px;
  line-height: 26px;
  color: var(--black-400);
  margin: 0 0 15px;
  font-weight: 300;
}
.fun-facts-item{
 /* padding:25px 20px;
  text-align: center;
  box-shadow: var(--shadow-black-100);
  border-radius: 10px;
  margin-top: 5px;*/
  /*padding: 15px 5px;
    text-align: center;
    box-shadow: var(--shadow-black-100);
    border-radius: 10px;
    margin-top: 5px;height: 90%;*/
        padding: 25px 5px;
    text-align: center;
    box-shadow: var(--shadow-black-100);
    border-radius: 10px;
    margin-top: 10px;
    height: 90%;
    width: 115%;

}
.fun-facts-item h3{
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin:0 0 5px ;
}
.fun-facts-item span{
  /*font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  margin: 0;
  line-height: 26px;
  display: block;
  color: #fff;*/
  font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    line-height: 20px;
    display: block;
    color: #fff;
}
.fun-facts-item.style-1{
  background-color: var(--color-1);
}
.fun-facts-item.style-2{
  background-color: var(--color-2);
}
.fun-facts-item.style-3{
  background-color: var(--color-3);
}
.fun-facts-item.style-4{
  background-color: var(--main-color);
}
.step.style-1{
  background-color: var(--color-1);
}
.step.style-2{
  background-color: var(--color-2);
}
.step.style-3{
  background-color: var(--color-3);
}
.step.style-4{
  background-color: var(--main-color);
}

/*app download*/
.app-download{
  background-image: url('https://casn.menlhk.go.id/2021/demo/img/logo-kemenlhk.jpg');
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.app-download .section-title h3{
  color: #fff;
}
.app-download::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--main-to-dark-color);
  opacity: 0.8;
}
.app-download-item{
  background-color: var(--black-000);
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: var(--shadow-black-300);
      width: 100%;
    height: 300px;
}
.app-download-item i{
  font-size: 34px;
  color: var(--main-color);
  display: inline-block;
}
.app-download-item h3{
  color: var(--black-900);
  font-size: 20px;
  margin: 15px 0;
  font-weight: 500;
  text-transform: capitalize;
  font-family: 'Poppins', sans-serif;
}
.app-download-item p{
  font-size: 16px;
  color: var(--black-400);
  font-weight: 300;
  margin: 0 0 30px;
  line-height: 26px;
  font-family: 'Poppins', sans-serif;
}

/*faq*/
.faq .accordion-item:not(:last-child){
  margin-bottom: 20px;
}
.faq .accordion-header{
  box-shadow: var(--shadow-black-100);
  padding: 20px 50px 20px 30px;
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
}
.faq .accordion-header::before{
  content: '\f067';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  height: 30px;
  width: 30px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  color: var(--black-400);
  transition: all 0.5s ease;
}
.faq .accordion-header:not(.collapsed)::before{
  content: '\f068';
  color: #fff;
}
.faq .accordion-header:not(.collapsed){
  background-color: var(--main-color);
  box-shadow: none;
}
.faq .accordion-header h3{
  font-size: 18px;
  font-weight: 500;
  color: var(--black-400);
  margin: 0;
  transition: all 0.5s ease;
}
.faq .accordion-header:not(.collapsed) h3{
  color: #fff;
}
.faq .accordion-body{
  padding:20px 30px;
  /*background-color: var(--black-100);*/
  box-shadow: var(--shadow-black-300);
}
.faq .accordion-body p{
  font-size: 14px;
  font-weight: 400;
  color: var(--black-400);
  line-height: 26px;
  margin: 0;
}

/*kontak*/
.call-Center{
  color: var(--text_white)!important;
}
.contact{
  background-color: var(--black-100);
}
.contact-info h4{
  font-size: 22px;
  color: var(--black-900);
  font-weight: 500;
  margin: 0 0 40px;
}
.contact-info-item{
  position: relative;
  padding-left: 55px;
  margin-bottom: 30px;
}
.contact-info-item i{
  position: absolute;
  height: 40px;
  width: 40px;
  left: 0;
  top: 0;
  border-radius: 40%;
  font-size: 16px;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  text-align: center;
  line-height: 38px;
}
.contact-info-item h4{
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--black-900);
}
.contact-info-item p{
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  line-height: 26px;
  color: var(--black-400);

}.contact-center{
  text-align: center !important;
  text-decoration: none;
  color: #000;
}  
.contact-center, li a:hover { 
    text-decoration: none;
    list-style: none;
    color: #000;
    /*font-weight: 700; */
}
.contact-center, li a {
    text-decoration: none;
    list-style: none;
    /*color: var(--black-400);*/
    /*font-weight: 400;*/
    font-size: 14px;
    font-family: "Poppins", sans-serif;  
    line-height: 26px;
}

/*footer*/
.footer{
  background-color: var(--main-color);
  padding: 20px 0 0;
}
.footer .copyright-text{
  font-family: 'Poppins', sans-serif; 
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}


/*responsive*/
@media(max-width: 992px){
  .navbar-toggler{
    background-color: var(--dark-to-main-color);
    box-shadow: var(--shadow-black-300);
    height: 34px;
    width: 44px;
    padding: 0;
    font-size: 17px;
    color: #fff;
  }
  .navbar-nav{
    background-color: var(--dark-to-main-color);
    box-shadow: var(--shadow-black-300);
  }
  .navbar .nav-item{
    margin: 0;
    padding: 5px 15px;
  }
  .navbar.navbar-shrink .navbar-toggler,
  .navbar.navbar-shrink .navbar-nav{
    background-color: var(--main-color); 
  }
/*  .home-img .circle{
    height: 320px;
    width: 320px;
  }
  .home-img .circle::before{
    left: 18px;
    top:18px;
    transform-origin: 142px 142px;
  }*/
  .home-text h1{
    font-size: 40px;
  }
  .how-it-works-item,
  .app-download-item{
    margin-bottom: 30px;
  }
  .how-it-works-item.line-right::before{
    content: none;
  }
  .how-it-works-item{
    box-shadow: var(--shadow-black-100);
    border-radius: 10px;
  }
  /*timelime*/
  .timeline {
    padding: 50px 0;
    position: relative;
  }
  .navbar .nav-item .nav-link { 
    font-size: 14px;}
}
@media(max-width: 767px){
  .timeline h3 {
    font-size: 14px!important;
  }
  .home-text {
    margin-bottom: 80px;
  }
  .fun-facts-img{
    margin-bottom: 30px;
  }
  .section-title h2{
    font-size: 35px;
  }
  .fun-facts .section-title h2{
    text-align: center;
  }
  .home-img img {
    max-width: 25%;
    width: 25%; 
  }.home-text h1 {
    font-size: 28px;
  }.home-text p {
      font-size: 13px; 
  }.home-img .circle {
    height: 220px;
    width: 220px;
  }
  /*.effect-wrap,.col-lg-7,.col-md-7{
    width: 55%;
    padding-right: 0px;
    padding-left: 0px;
    min-height: 1px;
  }
  .effect-wrap, div, .row { 
    display: flex;
    -ms-flex-wrap: wrap; 
    margin-right: -78px;
    margin-left: -180px;
  }*/
  /*Formasi PNS*/
  .how-it-works-item {
    box-shadow: var(--shadow-black-0)!important;
    border-radius: 10px;
  }
}
@media(max-width: 575px){ 
  .home-img img {
    max-width: 50%;
    width: 50%;
    box-shadow: var(--shadow-black-100);
    border-radius: 20px;
    animation: bounceTop_01 3s ease infinite;
  }
  .home{
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 30%;
  }
  .navbar .navbar-brand { 
    padding-left: 20px;
  }
  .home-text h1{
    font-size: 30px;
  }
  .home-text h1{
    font-size: 26px;
  }
  .section-title h2{
    font-size: 30px;
  }
}

/*end responsive begin*/


/*start timelime*/


/* begin timelime */




.timeline {
    padding: 70px 0 0 20px;
    position: relative;
}

.timeline-nodes {
    padding-bottom: 25px;
    position: relative;
}

.timeline-nodes:nth-child(even) {
    flex-direction: row-reverse;
}


/* .timeline p {
    padding: 5px 15px;
} */
.timeline p {
    margin-top: -8px;
    margin-bottom: 5px;
    padding: 0 10px 0 10px; 
    color: var(--black-400); 
    box-shadow: var(--shadow-black-300);
    /*danicari*/
} 

.timeline h3 {
    padding: 10px;
    font-size: 18px;  
}

.timeline h3 {
    font-weight: lighter;
    background: var(--blue);
}
 

.timeline::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    border-left: 2px dashed var(--blue);
    height: 100%;
    z-index: 1;
    transform: translateX(-50%);
}

.timeline-content {
    /* border: 1px solid var(--blue); */
    position: relative;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 3px 25px 0px rgba(10, 55, 90, 0.2)
}

.timeline-nodes:nth-child(odd) h3,
.timeline-nodes:nth-child(odd) p {
    text-align: right;
}

.timeline-nodes:nth-child(odd) .timeline-date {
    text-align: left;
}

.timeline-nodes:nth-child(even) .timeline-date {
    text-align: right;
}

.timeline-nodes:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    top: 5%;
    left: 100%;
    width: 0;
    border-left: 10px solid var(--blue);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-nodes:nth-child(even) .timeline-content::after {
    content: "";
    position: absolute;
    top: 5%;
    right: 100%;
    width: 0;
    border-right: 10px solid var(--blue);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-image {
    position: relative;
    z-index: 100;
}

.timeline-image::before {
    content: "";
    /* width: 80px;
    height: 80px; */
    width: 50px;
    height: 50px;
    border: 2px dashed var(--blue);
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 1;


}

.timeline-image img {
    position: relative;
    z-index: 100;
}

/*small device style*/

@media (max-width: 767px) {

    .timeline-nodes:nth-child(odd) h3,
    .timeline-nodes:nth-child(odd) p {
        text-align: left
    }

    .timeline-nodes:nth-child(even) {
        flex-direction: row;
    }

    .timeline::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 4%;
        width: 0;
        border-left: 2px dashed var(--blue);
        height: 100%;
        z-index: 1;
        transform: translateX(-50%);
    }

    .timeline h3 {
        font-size: 1.7rem;
    }

    .timeline p {
        font-size: 14px;
    }

    .timeline-image {
        position: absolute;
        left: 0%;
        top: 60px;
        /*transform: translateX(-50%;);*/
    }

    .timeline-nodes:nth-child(odd) .timeline-content::after {
        content: "";
        position: absolute;
        top: 5%;
        left: auto;
        right: 100%;
        width: 0;
        border-left: 0;
        border-right: 10px solid var(--blue);
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }

    .timeline-nodes:nth-child(even) .timeline-content::after {
        content: "";
        position: absolute;
        top: 5%;
        right: 100%;
        width: 0;
        border-right: 10px solid var(--blue);
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }

    .timeline-nodes:nth-child(even) .timeline-date {
        text-align: left;
    }

    .timeline-image::before {
        width: 65px;
        height: 65px;
    }
}
/*end timelime*/

/*begin untuk berita*/
.fontsBerita{
  margin: 20px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--black-900);
  /*text-transform: capitalize;*/
}
.fontsTimelime2{
  margin: 20px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--black-900);
  text-transform: capitalize;
}
.itemBerita{
  padding: 15px 10px;
}
.itemBeritaColor{
  /*background: #ffdf60;*/
  background: #cac8c4ab;
  padding: 10px 35px;
}
.itemBeritaColor1{
  /*background: #4fa746;*/
  background: #fdf7f7;
  padding: 10px 35px;
}
.itemBerita h4{
  text-align: center;
  font-size: 34px;
  border-bottom: 3px solid #4fa746;
  display: inline-flex;
  font-family: 'Poppins', sans-serif;
  color: #000;
  /*color: var(--black-900);*/
    /*align-items: center;*/
}
.full-widths{
  text-align:center
}

/*end untuk berita*/

    </style>
    <title>CASN KLHK 2021</title> 
  </head>
  <body>
    <style type="text/css">
 
.visible-xs,.visible-sm,.visible-md,.visible-lg{
    display:none !important
}
.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{
    display:none !important
}
@media (min-width:768px){
    .navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{
        margin-left:-15px
    }.navbar-default .navbar-brand{
        color:#666666
    }
    .navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{
        color:#212121;
        background-color:transparent
    } .navbar-brand{
        font-size:24px
    }
    .img-responsive{
        display:block;
        max-width:100%;
        height:auto;
            box-shadow: var(--shadow-black-100);
    }
    .visible-xs,.visible-sm,.visible-md,.visible-lg{
        display:none !important
    }
    .visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{
        display:none !important
    }
}
@media (max-width:767px){
    .visible-xs{
        display:block !important;
        box-shadow: var(--shadow-black-100);
    }
    .effect-5{ 
      height: 130px;
      width: 130px;
      border: 15px solid var(--color-2);
      border-radius: 50%;
      left: 80%;
      top: -30px; 
    }
    .effect-wrap .effect-2 {
        right: -10%;
        top: 0%;
        font-size: 30px;
        color: var(--color-2); 
        animation: spin_01 7s linear infinite;
    }
    .effect-wrap .effect-3 {
      left: 5%;
      bottom: 34%;
    }
    .fun-facts-item {
        padding: 15px 5px;
        text-align: center;
        box-shadow: var(--shadow-black-100);
        border-radius: 10px;
        height: 90%;
        width: 70%;
        margin: auto;
    }
} 
@media (min-width:768px) and (max-width:991px){
    .hidden-sm{
        display:none !important
    }
}
@media (max-width:767px){
    .hidden-xs{
        display:none !important
    }
}
@media (min-width:768px) and (max-width:991px){
    .visible-sm{
        display:block !important
    }
} 
/**/
          ul.timeline2 {
    list-style-type: none;
    position: relative;
}
/*ul.timeline2:before {
    content: ' ';
    background:var(--bg_silver);
    display: inline-block;
    position: absolute;
    left: 4px;
    width: 2px;
    height: 97%;
    z-index: 400;
}*/
ul.timeline2:before {
    content: ' ';
    background: var(--main-color);
    display: inline-block;
    position: absolute;
    left: 4px;
    width: 1.3px;
    height: 98%;
    z-index: 400;
}
ul.timeline2 > li {
    margin: 30px 0;
    padding-left: 35px;
}
/*ul.timeline2 > li {
    margin: 20px 0;
    padding-left: 35px;
}*/
ul.timeline2 > li::after {
  padding-left: 35px;
    border-bottom: 1px solid black;
}
ul.timeline2 > li::before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    /*border: 3px solid #22c0e8;*/
    left: -8px;
    width: 25px;
    height: 25px;
    z-index: 400;

    /**/
    background-size: cover;
    background-image: url(https://casn.menlhk.go.id/2021/demo/img/icon.png);
}.timeline2 li{
  font-size: 16px;
  font-weight: 400;
  color: var(--black-900);
}a.float-right{
  /*font-weight: 600;*/
  color: var(--black-400);
}a.leftJudul{
  font-weight: 600;
  color: var(--black-900);
}a.leftJudul1{
  font-weight: 600;
  color: #000;
}a.float-right1{
  font-weight: 600;
  color: #000;
}.colorp{
  color: #000!important;
}
.how-it-works-item{
      padding: 30px;
      text-align:center;
      position: relative;
      z-index: 1;
    }
    .how-it-works-item.line-right::before{
      content: '';
      position: absolute;
      height: 2px;
      width: 100%;
      left:55%;
      top: 59px;
      background-color: var(--main-color);
      z-index: -1;
    }
    .how-it-works-item .step{
      display: inline-block;
      height: 75px;
      width: 75px;
      /*background-color: var(--main-color);*/
      font-size: 32px;
      text-align: center;
      line-height: 70px;
      border-radius: 5px;
      color: #fff;
      font-weight: 700;
    }
    .how-it-works-item h3{
      margin: 20px 0;
      font-size: 16px;
      font-weight: 500;
      color: var(--black-900);
      text-transform: capitalize;
    }
    .how-it-works-item p{
      font-size: 16px;
      font-weight: 300;
      margin:0;
      color: var(--black-400);
      line-height: 26px;
    }
     .workingspace.col-lg-5 h4{
          color: red;
        }.itemIsiBerita{
          font-size: 15px;
          padding-top: 15px;
        }.itemIsiBerita-2{
          font-size: 15px;
        }.iconBerita{
          font-size: 12px;
          border-bottom: 1px solid #000
        }
         /* begin datatables*/
      .dataTables_wrapper .dataTables_paginate .paginate_button{
        padding: 5px 10px!important;
      }.dataTables_wrapper .dataTables_paginate {
    float: none!important;
    text-align: center!important;
  }
  /* end datatables*/
   body.dark{
        background-color: var(--bg-dark);
        --black-100: var(--bg-dark);
        --black-000: var(--bg-dark);
        --main-to-dark-color : var(--bg-dark);
        --dark-to-dark-color: var(--main-dark);
        --shadow-black-100:var(--shadow-black-300);
        --black-alpha-100:rgba(255,255,255,0.05);
        --black-900:#fff;
        --black-400:#bbb;
      }
      .toggle-theme{
        position: fixed;
        right: 0;
        top: calc(50% - 20%);
        height: 40px;
        width: 40px;
        background-color: var(--dark-to-main-color);
        z-index: 1200;
        color: #fff;
        cursor: pointer;
        border-radius: 50%;
        box-shadow: var(--shadow-black-300);
        font-size: 16px;
        text-align: center;
      }
      .toggle-theme i{
        line-height: 40px;
      }