/* styles.css */
.img-container {
  width: 100%;
  /* Set the desired width for the container */
  overflow: hidden;
  /* Hide any overflowing content */
}

.img-container img {
  width: 100%;
  /* Make the image width 100% of the container */
  height: auto;
  /* Allow the height to adjust proportionally */
}

/* Style untuk gambar desktop */
@media screen and (min-width: 768px) {
  #desktop-image {
    display: block;
  }

  .img-container {
    height: 200px;
  }

  #recard{
    width: 50%;
  }

  #mobile-image {
    display: none;
  }
}

/* Style untuk gambar mobile */
@media screen and (max-width: 767px) {
  #desktop-image {
    display: none;
  }

  #recard{
    width: 100%;
  }

  #mobile-image {
    display: block;
    height: 180px;
  }

  .img-container {
    height: 180px;
  }
}

svg {
  display: block;
  height: 100px;
  width: 100px;
  color: #287240; /* SVG path use currentColor to inherit this */
}

.circle {
  stroke-dasharray: 76;
  stroke-dashoffset: 76;
  animation: draw 1s forwards;
}

.tick {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation: draw 1s forwards 1s;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.flexible{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.btn-kirin{
  background-color:#91466f;
  color:white;
}
.btn-kirin:hover{
  background-color:#7a2d57;
  color: white;
}