:root{
    --primary:#1c92c4;
    --primary-light:#eefafd;
    --primary-dark:#0e293e;
    --secondary:#f08e33;
    --secondary-lght:#fef8ee;
    --secondary-dark:#401a0a;
}

.glide{
    position: relative;
}

.glide__track{
    width: 100%;
    position: relative;
}
.glide__slide{
    width: 100%;
   
    background-size: cover;
    background-position: center;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    background-color: #1c92c4;
}
.glide__slide .slide-content{
    max-width: 540px;
    width: 100%;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-shadow: 1px 1px 4px #0e293e;
    transition: all 35s ease-in;
}
.slide-content h3{
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 0;
}

.slide-tombol{
    padding: 10px 30px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border: 1px solid #fff;
    background-color: var(--primary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease-in;
    max-width: max-content;
    text-shadow: none;
}
.slide-tombol:hover{
    background-color: #fff;
    color: var(--primary) ;
    border-color: var(--primary);
}
.glide__bullets {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 30px;
    bottom: 30px;
    
  }
  .glide__bullet {
    position: relative;
    border: none;
    background-color: transparent;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
  }
  .glide__bullet--active{
    display: flex ;
    justify-items: center;
    align-items: center;
  }
  .glide__bullet--active:before {
    content: '';
    width: 40px;
    height: 2px;
    display: inline-block;
    background-color: #fff;
    transition: all .35s ease-in;
  }
  .glide__bullet--active:after {
    content: '';
    width: 40px;
    height: 2px;
    display: inline-block;
    background-color:#fff;
    transition: all .35s ease-in;
  }

  .glide__bullet--active:first-child:before{
    display: none;
  }
  .glide__bullet--active:last-child:after{
    display: none;
  }

  .glide__bullet--active {
    font-weight: bold;
    font-size: 30px;
  }
  .glide__bullet--active:before {
    background-color: #fff; /* Warna strip */
  }