body {
  background: #e3f2fd;
}

.select-menu {
  width: 80px;
  cursor: pointer;
  /* margin: 50px auto; */
}

.select-menu .select-btn {
  display: flex;
  padding: 10px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  border: 1px solid #dddddd;
  border-radius: 12px;
}

.select-menu .options {
  position: absolute;
  width: 100px;
  overflow-y: auto;
  max-height: 295px;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
}

.select-menu .options .option {
  display: flex;
  height: 55px;
  cursor: pointer;
  padding: 0 16px;
  border-radius: 8px;
  align-items: center;
  background: #fff;
}

.select-menu .options .option:hover {
  background: #f2f2f2;
}

.select-menu .options .option i {
  font-size: 25px;
  margin-right: 12px;
}

.select-menu .options .option .option-text {
  font-size: 18px;
  color: #333;
}

.select-btn i {
  font-size: 25px;
  transition: 0.3s;
}

.select-menu.active .select-btn i {
  transform: rotate(-180deg);
}

.select-menu.active .options {
  display: block;
  opacity: 0;
  z-index: 10;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}

.select-wrapper {
  padding: 7px 7px 7px 12px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  border: 1px solid #dddddd;
  border-radius: 12px;
  transition: all 150ms ease;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}

.get-story-block {
  background: #fff;
  box-shadow: 0px 2px 10px rgba(25, 53, 77, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  width: 80%;
  height: 430px;
  margin: 8px;
}

@media screen and (max-width: 767px) {

  /* tampilan mobile */
  .get-story-block {
    margin-left: 16px;
    margin-right: 16px;
  }
}

.get-story-block .h-title {
  height: 45px;
}

.get-story-block .image {
  overflow: hidden;
  border-radius: 999px;
  flex-shrink: 0;
  background-color: #00204a;
}

.get-story-block .image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.get-story-block .image {
  border-radius: 4px;
}

.get-fact-block {
  background: #fff;
  border-radius: 16px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-top: 16px;
  width: 80%;
  height: 150px;
  margin: 8px;
}

.title-fact {
  font-family: Plus Jakarta Sans;
  font-size: 30px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0em;
  text-align: left;
  color: #016fff;
}

.subtitle-fact {
  font-family: Plus Jakarta Sans;
  font-size: 18 px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #121212;
}

.date-fact {
  font-family: Plus Jakarta Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #121212;
}

.overflow-ellipsis-fact-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.overflow-ellipsis-fact-subtitle {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* number of lines to show */
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.overflow-ellipsis {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.overflow-ellipsis-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* number of lines to show */
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.overflow-ellipsis-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.overflow-ellipsis-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.overflow-ellipsis-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* number of lines to show */
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.family-block {
  background: #fff;
  box-shadow: 0px 2px 10px rgba(25, 53, 77, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  /* width: 80%; */
  height: 80%;
}

.family-block .image {
  overflow: hidden;
  border-radius: 999px;
  flex-shrink: 0;
  background-color: #00204a;
}

.family-block .image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.family-block .image {
  border-radius: 4px;
}

.arrow-download {
  cursor: pointer;
  transition: filter 0.3s ease 0.3s;
}

.media-block {
  background: #fff;
  box-shadow: 0px 2px 10px rgba(25, 53, 77, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  /* width: 80%; */
  height: 80%;
}

@media (max-width: 690px) {
  .media-block {
    margin-left: 16px;
    margin-right: 16px;
  }
}

.media-block .image {
  overflow: hidden;
  border-radius: 999px;
  flex-shrink: 0;
  background-color: #00204a;
}

.media-block .image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.media-block .image {
  border-radius: 4px;
}

/* global at slide arrow slider */

.paginator {
  position: relative;
  float: right;
  margin-bottom: 20px;

  li {
    margin-top: 50px;
    position: relative;
    float: left;

    margin-right: 20px;
  }
}

.arrow {
  cursor: pointer;
  transition: filter 0.3s ease 0.3s;
}

/* CSS khusus untuk tampilan mobile (lebar layar kurang dari 768px, dapat disesuaikan) */
@media screen and (max-width: 767px) {

  /* Sembunyikan tombol prev dan next pada tampilan mobile */
  .paginator-center {
    display: none;
  }
}

.ctn-title-story {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

/* CSS khusus untuk tampilan mobile (lebar layar kurang dari 768px, dapat disesuaikan) */
@media screen and (max-width: 767px) {

  /* Sembunyikan tombol prev dan next pada tampilan mobile */
  .ctn-title-story {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: start;
    position: sticky;
    top: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    background: #fff;
  }
}

.story-web {
  visibility: visible;
}

.story-mobile {
  display: none;
}

@media screen and (max-width: 767px) {

  /* Sembunyikan tombol prev dan next pada tampilan mobile */
  .story-web {
    display: none;
  }

  .story-mobile {
    display: contents;
  }
}

#cardButton:hover,
active,
visited {

  text-decoration: none;
}

/* FADE FROM BOTTOM */
.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}