:root {
  --whiteSec: #f2fbff;
  --biruMF: #012f70;
  --biruMF2: var(--merahJap);
  --orange: #faab52;
  --biruMuda: #1a9ed8;
  --white: #fff;
  --gradient: linear-gradient(
    76deg,
    rgba(1, 47, 112, 0.85) -44.22%,
    rgba(44, 128, 164, 0.85) 83.13%
  );
  --abuAbu: #7a7a7a;
  --abuRataRata: #9f9b9b;
  --abuTua: #9f9b9b;
  --black: #000;
  --red: #d41a1f;
  --green: #408730;
  --paddingSection: 60px 142px;
  --merahJap: #ca4124;
  --merahJapRGB: 202, 65, 36;
  --orangeJap: #f7921c;
  --orangeJapRGB: 247, 146, 28;
  --darkBlueJap: #1b8cc6;
  --darkBlueJapRGB: 27, 140, 198;
  --blueJap: #01b0ea;
  --blueJapRGB: 1, 176, 234;
  --limeJap: #8bc93a;
  --limeJapRGB: 139, 201, 58;
  --greenJap: #17925d;
  --greenJapRGB: 20, 149, 90;
}

body {
  font-family: "Roboto", sans-serif;
}

section {
  padding: var(--paddingSection);
}

@media (max-width: 768px) {
  section {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 20px 10px;
  }
}

a {
  text-decoration: none;
}

.social-links {
  position: fixed;
  bottom: 30%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  background-color: var(--darkBlueJap);
  padding: 12px 5px 12px 10px;
  border-radius: 15px 0px 0px 15px;
}

.borderr {
  padding: 4px 0;
  border-bottom: 1px solid #ccc;
  opacity: 50%;
}

.social-icon svg {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon svg:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.social-image {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .social-links {
    bottom: 50%;
    right: 0;
    padding: 8px 5px 8px 7px;
    transform: translate(0, 50%);
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }

  .social-image {
    width: 25px;
    height: 25px;
  }
}

.btn-primary {
  background-color: var(--greenJap);

  border-color: var(--greenJap);

  color: #ffffff;
}
.btn-aduan {
  background-color: var(--merahJap);

  border-color: var(--merahJap);

  color: #ffffff;
}

.text-primary {
  color: var(--greenJap) !important;
}

.btn-primary:hover {
  background-color: rgba(var(--greenJapRGB), 0.8);

  border-color: rgba(var(--greenJapRGB), 0.8);

  color: #ffffff;
}
.btn-aduan:hover {
  background-color: rgba(var(--merahJapRGB), 0.8);

  border-color: rgba(var(--merahJapRGB), 0.8);

  color: #ffffff;
}

.main-content {
  padding-top: 0;
}

@media (max-width: 768px) {
  .main-content {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding-top: 0;
  }
}

.btn-primary:focus,
.btn-primary.focus {
  background-color: var(--greenJap);

  border-color: var(--greenJap);

  color: #ffffff;

  box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

.btn-title {
  justify-content: center;
  align-items: center;
  display: flex;
}

.btn-primary:active,
.btn-primary.active {
  background-color: #ffffff;

  border-color: #ffffff;

  color: #1a9ed8;
}

.navbar {
  background-color: white;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

  position: fixed;

  width: 100%;

  top: 0;

  z-index: 1000;
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.navbar-toggler-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 5px 0;
}

@media (max-width: 888px) {
  .navbar-toggler {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
  }

  .nav-links.responsive {
    height: 400px;
    display: flex;
  }
}

.navbar > .container {
  margin: 0 auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  height: 4rem;
}

.logo img {
  width: 100%;
  height: 1.8rem;
  margin-top: -10px;
}

.nav-container {
  margin: 0 auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  height: 4rem;

  width: 100%;

  padding: 0 8rem;
}

.nav-links {
  display: flex;

  gap: 5px;

  list-style: none;

  align-items: center;

  height: 100%;

  margin: 0;
}

.nav-links a {
  text-decoration: none;

  color: #4e4e4e;

  font-size: 18px;

  padding: 0px 16px;

  position: relative;

  /* border-radius: 50px; */

  transition: all 0.3s;
}

.nav-links a:hover {
  color: var(--greenJap);
}

/* .nav-links a:hover {

  color: #1a9ed8;


} */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;

  align-items: center;

  gap: 5px;
}

.dropdown-toggle::after {
  all: unset;
}

.arrow {
  display: inline-block;

  transition: transform 0.3s;

  font-size: 18px;

  margin-left: 5px;
}

.backdrop {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  z-index: 999;

  transition: opacity 0.3s ease;

  opacity: 0;

  pointer-events: none;
}

.backdrop.show {
  opacity: 1;

  pointer-events: auto;
}

/* Pastikan dropdown tetap terlihat saat cursor berada di atas menu */
.navbar .nav-links .dropdown:hover .dropdown-menu {
  display: block;
  visibility: visible;
}

/* Mencegah dropdown menghilang saat hover */
.navbar .nav-links .dropdown .dropdown-menu {
  display: none;
  visibility: hidden;
  position: absolute;
  z-index: 999;
}

/* Menjaga dropdown tetap muncul di atas elemen lain */
.navbar .nav-links .dropdown:hover .dropdown-menu {
  display: block;
  visibility: visible;
}

.dropdown-menu {
  position: absolute;

  top: 100%;

  left: 0;

  background-color: white;
  opacity: 80%;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

  /* border-radius: 4px; */

  min-width: 150px;

  display: none;

  list-style: none;

  padding: 8px 0;

  z-index: 1000;
}

.dropdown-menu a {
  padding: 8px 16px;

  display: block;

  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: rgb(208, 208, 208);
  opacity: 100%;
  border-radius: 0;
  color: #000;
}

.dropdown:hover .arrow {
  transform: rotate(90deg);
}

.language-selector {
  display: flex;

  align-items: center;

  gap: 8px;
}

.globe-icon {
  font-size: 20px;
}

.language-select {
  border: none;

  background: transparent;

  font-size: 14px;

  color: #333;

  cursor: pointer;

  padding-right: 15px;
}

.language-select:focus {
  outline: none;
}

.nav-links a.active {
  color: #2196f3;
}

.nav-links a.active::after {
  content: "";

  position: absolute;

  bottom: -2px;

  left: 0;

  width: 100%;

  height: 2px;

  background-color: #2196f3;
}

.mobile-menu-btn {
  display: none;

  cursor: pointer;
}

.aspect-video {
  aspect-ratio: 16/9;
}

.carousel-item.index-carousel img {
  transition: transform 2s ease-in-out;
}

.carousel-item.index-carousel.active img {
  transform: scale(1.2);
}

.carousel-item.index-carousel .carousel-item-next img,
.carousel-item.index-carousel .carousel-item-prev img {
  transform: scale(1.1);
}

.carousel-control-prev-icon {
  background-image: none;
}

.carousel-control-next-icon {
  background-image: none;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;

  flex: 0 1 auto;

  width: 15px;

  height: 15px;

  padding: 0;

  margin-right: 3px;

  margin-left: 3px;

  text-indent: -999px;

  cursor: pointer;

  background-color: #fff;

  background-clip: padding-box;

  border: 0;

  border-top: 10px solid transparent;

  border-bottom: 10px solid transparent;

  opacity: 0.5;

  transition: opacity 0.6s ease;

  border-radius: 50%;
}

.carousel-indicators [data-bs-target]:hover {
  opacity: 1;
}

.carousel-indicators .active {
  opacity: 1;
}

#cardCarousel,
#cardCarousel1,
#cardCarousel2,
#cardCarousel3 {
  margin-bottom: 8rem;
}

#cardCarousel .carousel-indicators,
#cardCarousel1 .carousel-indicators,
#cardCarousel2 .carousel-indicators,
#cardCarousel3 .carousel-indicators {
  bottom: -50px;
}

#cardCarousel .carousel-inner,
#cardCarousel1 .carousel-inner,
#cardCarousel2 .carousel-inner,
#cardCarousel3 .carousel-inner {
  padding: 2rem 1rem;
}

#cardCarousel .carousel-indicators [data-bs-target] {
  width: 12px;

  height: 12px;

  border: 1px solid #003976;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;
}

#cardCarousel1 .carousel-indicators [data-bs-target] {
  width: 12px;

  height: 12px;

  border: 1px solid var(--orange);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;
}

#cardCarousel .carousel-indicators.program [data-bs-target] {
  border: 1px solid var(--biruMuda);
}

#cardCarousel1 .carousel-indicators.program [data-bs-target] {
  border: 1px solid var(--orange);
}

#cardCarousel .carousel-indicators [data-bs-target]:hover {
  background-color: #003976;
}

#cardCarousel1 .carousel-indicators [data-bs-target]:hover {
  background-color: var(--orange);
}

#cardCarousel .carousel-indicators.program [data-bs-target]:hover {
  background-color: var(--biruMuda);
}

#cardCarousel .carousel-indicators.program .active {
  background-color: var(--biruMuda);
}

#cardCarousel .carousel-indicators .active {
  background-color: #003976;
}

#cardCarousel1 .carousel-indicators .active {
  background-color: var(--orange);
}

#cardCarousel .carousel-control-next,
#cardCarousel1 .carousel-control-next,
#cardCarousel2 .carousel-control-next,
#cardCarousel3 .carousel-control-next,
.carousel-control-prev {
  opacity: 1;
  width: 10% !important;
}

#cardCarousel .carousel-control-prev,
#cardCarousel1 .carousel-control-prev,
#cardCarousel2 .carousel-control-prev,
#cardCarousel3 .carousel-control-prev {
  left: -100px;
}

#cardCarousel .carousel-control-next,
#cardCarousel1 .carousel-control-next,
#cardCarousel2 .carousel-control-next,
#cardCarousel3 .carousel-control-next {
  right: -100px;
}
.advantages-grid {
  display: grid;
  margin: 4rem auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  padding: 0 1rem;
}

.advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  background: white;
  border-radius: 8px;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.advantage-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.advantage-card:hover img {
  transform: scale(1.1);
}

.advantage-card .advantage-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #003976;
  line-height: 1.2;
  margin: 0;
}

.advantage-card .advantage-paragraph {
  font-size: 1.1rem;
  color: #4e4e4e;
  line-height: 1.6;
  margin: 0;
}

/* Laptop/Small Desktop */
@media (max-width: 1200px) {
  .advantages-grid {
    gap: 1.5rem;
    margin: 3rem auto;
  }

  .advantage-card {
    padding: 1.5rem 1rem;
  }

  .advantage-card .advantage-title {
    font-size: 1.4rem;
  }

  .advantage-card .advantage-paragraph {
    font-size: 1rem;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem auto;
  }

  .advantage-card img {
    width: 85px;
    height: 85px;
  }
}

/* Large Mobile */
@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem auto;
  }

  .advantage-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .advantage-card .advantage-title {
    font-size: 1.3rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .advantages-grid {
    margin: 1.5rem auto;
  }

  .advantage-card {
    padding: 1.25rem;
  }

  .advantage-card img {
    width: 70px;
    height: 70px;
  }

  .advantage-card .advantage-title {
    font-size: 1.2rem;
  }

  .advantage-card .advantage-paragraph {
    font-size: 0.95rem;
  }
}

.hero {
  position: relative;

  background-image: url("../images/banner_tentang.png");

  background-size: cover;

  background-position: center;

  min-height: 400px;

  display: flex;

  align-items: center;

  padding: 80px 0;
}

.hero-overlay {
  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  opacity: 0.8;

  background-color: var(--greenJap);

  z-index: 3;
}

.width-hero {
  width: 100%;
}

.hero-wrapper {
  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 4;
}

.hero-content {
  display: flex;

  align-items: center;

  gap: 24px;

  z-index: 5;

  height: 100%;
}

.hero-title {
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  margin-bottom: 1rem;
}

.hero-description {
  color: #4e4e4e;

  font-size: 1.4rem;

  line-height: 1.6;

  margin: 0;
  text-align: center;
}

.lb-wrapper {
  background-color: rgba(var(--greenJapRGB), 0.05);
}

@media (max-width: 769px) {
  .hero {
    display: block;
    margin: 10px 0;
  }

  .hero-content {
    display: block;
    text-align: center;
    margin: 10% 0;
  }

  .width-hero {
    width: 100%;
  }
}

#campaign-detail h5 {
  color: #003976;

  font-size: 1rem;

  margin-bottom: 1.2rem;
}

#campaign-detail h3 {
  color: #003976;

  font-weight: bold;

  font-size: 2rem;

  margin-bottom: 1.2rem;
}

#campaign-detail p {
  color: #4e4e4e;

  font-size: 1.2rem;

  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  #campaign-detail h3 {
    font-size: 1.5rem;
  }
  #campaign-detail h5 {
    font-size: 0.8rem;
  }
  #campaign-detail p {
    font-size: 1rem;
  }
}


.show-more {
  background-color: var(--darkBlueJap);

  color: white;

  padding: 8px 30px;

  border-radius: 50px;
}

.show-more:hover {
  background-color: rgba(var(--darkBlueJapRGB), 0.8);

  color: white;
}

.more-button {
  background-color: var(--darkBlueJap);

  color: white;

  padding: 8px 30px;

  border-radius: 50px;
}

.more-button:hover {
  background-color: rgba(var(--darkBlueJapRGB), 0.8);

  color: white;
}

.campaign-card {
  width: 100%;
  height: 500px;

  max-width: 380px;

  background: white;

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s ease;

  position: relative;
}

.campaign-card:hover {
  transform: translateY(-5px);
}

.campaign-card-image {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.campaign-card-content {
  padding: 1rem;

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  border-top-left-radius: 20px;

  border-top-right-radius: 20px;

  background-color: white;
}

.campaign-card-tag {
  display: inline-block;

  padding: 2px 16px;

  border-radius: 100px;

  font-size: 14px;

  font-weight: 500;

  margin-bottom: 16px;
}

.tag-blue {
  background-color: #e8f4fe;

  color: #1a9ed8;
  width: fit-content;
}

.tag-pink {
  color: #d22188;

  background-color: rgba(210, 33, 136, 0.2);
}

.tag-green {
  color: rgba(65, 131, 64, 1);

  background-color: rgba(65, 131, 64, 0.2);
}

.campaign-card-title {
  color: #003976;

  font-size: 1.2rem;

  font-weight: bolder;

  margin: 0;

  line-height: 1.3;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;
}

@media (max-width: 769px) {
  .lb-wrapper .row {
    display: block;
  }

  #campaign-detail {
    text-align: center;
  }

  #campaign-detail h5 {
    display: none;
  }

  .lb-wrapper {
    padding: 10px 0;
  }

  .more-button {
    display: none;
  }

  /* .col-card {
    display: none;
  } */

  .my-wrapper {
    display: flex;
  }

  .my-slide {
    width: 50% !important;
    flex-shrink: 0;
  }

  .campaign-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    min-height: 500px;
  }
  .campaign-card img {
    height: 100%;
  }
}

.programs-wrapper {
  padding: 6rem 0;
}

.programs-title {
  color: #003976;

  font-size: 2rem;

  font-weight: bold;

  margin-bottom: 1.2rem;

  text-align: center;
}

.programs-description {
  color: #4e4e4e;

  font-size: 1.2rem;

  margin-bottom: 1.5rem;

  text-align: center;

  line-height: 2;
}

@media (max-width: 768px) {
  .programs-title {
    font-size: 1.5rem;
  }

  .programs-description p {
    font-size: 1rem;
  }
}

.program-card {
  position: relative;

  width: 100%;

  max-width: 300px;

  background: white;

  border-radius: 16px;

  padding: 1.5rem;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.program-card-icon img {
  width: 1.5rem;

  height: 1.5rem;

  color: #4caf50;

  margin-bottom: 1rem;
}

.program-card-content {
  display: flex;

  flex-direction: column;

  /* gap: 16px; */
}

.program-card-image {
  width: 100%;

  height: 160px;

  object-fit: cover;

  border-radius: 8px;
}

.program-card-title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 100px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-card-title {
  color: #003976;

  font-size: 1.8rem;

  font-weight: 600;

  margin: 0;

  line-height: 1;
}

.program-card-description {
  color: #666;

  font-size: 1.2rem;

  line-height: 1.5;

  margin: 0;

  display: -webkit-box;

  -webkit-line-clamp: 3;

  line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.program-card-read-more {
  display: flex;

  align-items: center;

  width: 100%;

  justify-content: space-between;

  color: #003976;

  text-decoration: none;

  font-weight: 500;

  font-size: 1rem;
}

.program-card-read-more:hover {
  cursor: pointer;
}

.program-card-read-more:hover .play-button {
  background-color: var(--greenJap);
}

.program-card-read-more:hover {
  color: var(--greenJap);
}

.program-card:hover .program-card-read-more {
  color: var(--greenJap);
}

.program-card:hover .play-button {
  background-color: var(--greenJap);
}

.program-card-read-more .play-button {
  background-color: #003976;

  color: white;

  width: 1.6rem;

  height: 1.6rem;

  border-radius: 0.5rem;

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: Arial, Helvetica, sans-serif;
}

.article-card {
  width: 100%;

  max-width: 600px;

  background: white;

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-card-image {
  width: 100%;

  height: 300px;

  overflow: hidden;
}

.article-card-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.article-card-content {
  position: relative;

  height: 230px;
}

.article-card-content-inside {
  position: absolute;

  width: 90%;

  height: 250px;

  top: -50px;

  left: 50%;

  transform: translateX(-50%);

  background-color: white;

  border-radius: 16px;

  padding: 1rem;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-card-tags {
  display: flex;

  gap: 8px;

  margin-bottom: 16px;
}

.article-tag {
  color: #1a9ed8;

  font-size: 14px;

  font-weight: 500;

  text-transform: uppercase;
}

.article-tag:not(:last-child)::after {
  content: ",";

  color: #1a9ed8;
}

.article-card-title {
  color: #333;

  font-size: 24px;

  font-weight: 600;

  margin: 0 0 16px 0;

  line-height: 1.3;

  border-bottom: 1px solid #5a5a5a;
  display: -webkit-box;

  -webkit-line-clamp: 2;

  line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.article-card-description {
  color: #666;

  font-size: 16px;

  line-height: 1.6;

  margin: 0 0 16px 0;

  display: -webkit-box;

  -webkit-line-clamp: 3;

  line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.article-card-meta {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #666;

  font-size: 14px;
}

.article-meta-icon {
  width: 16px;

  height: 16px;

  color: var(--greenJap);
}

.article-date {
  color: #666;
}

.article-author {
  color: #666;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

  transform: translateY(-2px);

  transition: all 0.3s ease;
}

.carousel-button {
  background-color: #003976;

  color: white;

  width: 40px;

  height: 40px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
  .article-card {
    max-width: 100%;
  }

  .article-card-image {
    height: 200px;
  }

  .article-card-title {
    font-size: 20px;
  }

  .article-card-content {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .program-card {
    max-width: 100%;
  }

  .program-card-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .campaign-card {
    max-width: 100%;
  }

  .campaign-card-image {
    height: 240px;
  }

  .campaign-card-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 300px;

    padding: 60px 0;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 16px;
  }
}

@media (max-width: 888px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;

    /* position: absolute;

    top: 100%;

    left: 0; */

    width: 100%;

    flex-direction: column;

    padding: 20px;

    gap: 15px;
    /* background: white;

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;

    box-shadow: none;

    padding-left: 20px;
  }

  .language-selector {
    margin-left: 0;
  }
}

/* Tentang Kami */
.header-section {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 60px 142px;
}

.header-section-2 {
  position: relative;
  background-size: cover;
  background-position: center;
  /* min-height: 400px; */
  display: flex;
  align-items: center;
  /* padding: 60px 142px; */
}

.header-section.tentang {
  background-image: url("../images/bg-header.jpg");
}

.header-section.privacy-policy {
  background-image: url("../images/bg-header.jpg");
}

.header-section.program {
  background-image: url("../images/bg-header.jpg");
}
.header-section-2.program {
  background-image: url("../images/bg-header.jpg");
}

.header-section.gallery {
  background-image: url("../images/bg-header.jpg");
}

.header-section.kontak {
  background-image: url("../images/bg-header.jpg");
}

.header-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
  background-color: rgba(var(--greenJapRGB), 0.99);
  z-index: 3;
}

.header-section-2 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
  background-color: #012f70;
  z-index: 3;
}

.header-wrapper {
  position: absolute;
  padding: 60px 0px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}

.header-wrapper-2 {
  /* position: absolute; */
  /* padding: 60px 142px; */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}

.header-section .nav-link,
.header-section h1 {
  z-index: 2;
}

.header-section-2 .nav-link,
.header-section-2 h1 {
  z-index: 2;
}

.header-section .nav-link a {
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.header-section h1 {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  color: var(--whiteSec);
}

.header-section p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--white);
}

.header-section .breadcrumb .breadcrumb-item,
.header-section .breadcrumb .breadcrumb-item a {
  color: var(--white);
  text-decoration: none;
}

.header-section-2 .nav-link a {
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.header-section-2 h1 {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  color: var(--whiteSec);
}

.header-section-2 p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--white);
}

.header-section-2 .breadcrumb .breadcrumb-item,
.header-section-2 .breadcrumb .breadcrumb-item a {
  color: var(--white);
  text-decoration: none;
}

.section-desc .text-sub-title,
.section-desc .text-title,
.section-nilai .text-sub-title,
.section-nilai .text-title,
.section-struktur .text-sub-title,
.section-struktur .text-title {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
}

.section-nilai .text-nilai {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  color: var(--biruMF);
}

.section-nilai .text-sub-nilai {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: var(--abuAbu);
}

.section-desc .text-sub-title,
.section-nilai .text-sub-title,
.section-struktur .text-sub-title {
  color: var(--biruMuda);
}

.section-desc .text-title,
.section-nilai .text-title,
.section-struktur .text-title {
  color: var(--biruMF);
}

.section-desc .download-btn {
  background-color: var(--biruMF2);
  border-radius: 32px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  padding: 8px 16px;
  color: var(--white);
}

.profile-img-container {
  position: relative;
  text-align: center;
  width: 530px;
  height: 323px;
  flex-shrink: 0;
}

.profile-img-container .profile-img {
  width: 100%;
  height: 100%;
  display: block;
}

.profile-img-container .profile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 57, 118, 0.15);
  z-index: 1;
}

.profile-img-container .profile-overlay p {
  position: absolute;
  left: 30px;
  right: 0;
  top: 270px;
  bottom: 0;
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  white-space: nowrap;
  z-index: 2;
}

.section-vision .card-vision .card-body-vision {
  padding: 21px 42px 12px 42px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 4px 7.2px 0px rgba(0, 0, 0, 0.15);
}

.section-vision .card-mission .card-body-mission {
  padding: 50px 42px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 4px 7.2px 0px rgba(0, 0, 0, 0.15);
}

.section-vision,
.section-sejarah,
.section-pencapaian {
  background-color: var(--white);
}

.section-vision p,
.section-sejarah p,
.section-pencapaian p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: var(--abuAbu);
}

.section-vision .text-sub-title,
.section-vision .text-title,
.section-sejarah .text-sub-title,
.section-sejarah .text-title,
.section-pencapaian .text-sub-title,
.section-pencapaian .text-title {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
}

.section-vision .text-sub-title,
.section-sejarah .text-sub-title,
.section-pencapaian .text-sub-title {
  color: var(--biruMuda);
}

.section-vision .text-title,
.section-sejarah .text-title,
.section-pencapaian .text-title {
  color: var(--biruMF);
}

.section-vision .card-mission .card-body-mission .title-card .text,
.section-vision .card-vision .card-body-vision .title-card .text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.section-vision .card-mission .card-body-mission .title-card .text h3,
.section-vision .card-mission .card-body-mission .title-card .text h2,
.section-vision .card-vision .card-body-vision .title-card .text h3,
.section-vision .card-vision .card-body-vision .title-card .text h2 {
  font-style: normal;
  font-weight: 600;
  line-height: 45px;
}

.section-vision .card-mission .card-body-mission .title-card .text h3,
.section-vision .card-vision .card-body-vision .title-card .text h3 {
  font-size: 24px;
  color: var(--biruMF2);
}

.section-vision .card-mission .card-body-mission .title-card .text h2,
.section-vision .card-vision .card-body-vision .title-card .text h2 {
  font-size: 48px;
  color: var(--biruMuda);
}

.section-vision .card-mission .card-body-mission .title-card .text p,
.section-vision .card-vision .card-body-vision .title-card .text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: var(--abuAbu);
}

.section-nilai p,
.section-nilai span {
  font-size: 16px;
  color: var(--abuAbu);
  margin-top: 10px;
  font-style: normal;
  font-weight: 400;
}

/* Section Struktur */

.img-struktur {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.img-struktur img {
  width: 100%;
  height: 100%;
}

.section-pencapaian .container-penc {
  width: 100%;
  gap: 40px;
}

.section-pencapaian .container-penc h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.64px;
  color: var(--biruMF);
}

.section-pencapaian .container-penc p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--abuAbu);
}

.section-pencapaian .card {
  border: none;
  padding: 20px;
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  height: 100%;
}

.section-pencapaian .card .img-card {
  width: 100%;
  height: 150px;
}

.section-pencapaian .card .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-pencapaian .card .card-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: -0.48px;
  margin-top: 10px;
  color: var(--biruMF);
}

.section-pencapaian .card .card-text-tgl {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuTua);
}

.section-pencapaian .card .card-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuAbu);
}

footer {
  background-color: #003976;
  color: #fff;
}

footer h3,
footer h4 {
  margin: 0 0 10px;
}

footer h4 {
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.68px;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 5px;
  font-size: 14 px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.4px;
}

footer form input {
  padding: 8px;
  width: calc(100% - 40px);
  margin-bottom: 10px;
}

footer form button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 20px;
}

footer .addres {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  color: #fff;
  letter-spacing: 1px;
}

footer .contact {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 1px;
}

footer .form-email {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  padding: 5px;
  max-width: 300px;
}

footer .input-email {
  border: none;
  outline: none;
  padding: 10px;
  flex: 1;
  border-radius: 20px;
  font-size: 14px;
}

footer .button-submit {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 8px 10px;
}

footer .copyright p {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  margin-bottom: -40px;
}

.carousel-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.carousel-btn {
  background-color: #00a6e6;
  color: white;
  border: none;
  padding: 10px 10px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.arrow {
  padding-top: 2px;
}

.sejarah-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: auto;
}

.sejarah-container .sejarah-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.sejarah-container .sejarah-wrapper .item-carousel {
  min-width: 100%;
  box-sizing: border-box;
}

.sejarah-container .item-carousel .carousel-box {
  padding: 40px;
  border-radius: 16px;
  background-color: var(--biruMuda);
  min-height: 50px;
  color: var(--white);
}

.sejarah-container .item-carousel .carousel-box .title-carousel {
  margin-top: 30px;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  color: var(--white);
}

.sejarah-container .item-carousel .carousel-box ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 5px;
  color: var(--white);
}

/* Tentang Kami */

/* Program Open */

/* Semua Program */
.section-filter {
  background-color: var(--whiteSec);
}

.section-filter {
  padding: 20px 142px;
}

.section-informasi,
.section-program {
  background-color: var(--white);
}

.section-filter .kategori {
  background-color: var(--white);
  border: 1px solid var(--abuRataRata);
  border-radius: 54px;
  padding: 3px 12px;
  overflow: hidden;
}

.section-filter .kategori span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.4px;
  color: var(--black);
}

.section-filter .filter {
  background-color: var(--biruMuda);
  border-radius: 54px;
  padding: 0 10px;
}

.form-select {
  margin-top: 4px;
  width: 150px;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.section-filter .filter span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.4px;
  color: var(--white);
}

.section-filter .search-box .input-search::placeholder {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.4px;
  color: var(--abuTua);
  margin-top: 10px;
}

.section-filter .search-box .input-search {
  border: none;
  outline: none;
  flex: 1;
  border-radius: 20px;
  font-size: 14px;
  margin-top: 10px;
}

.section-filter .search-box form input {
  padding: 0 5px;
  width: calc(100% - 40px);
  margin-bottom: 10px;
}

.section-filter .search-box .form-search {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  padding: 0 5px;
  max-width: 300px;
}

.section-filter .search-box .button-search {
  background-color: transparent;
  color: white;
  border: none;
  border-radius: 54px;
  padding: 0 10px;
}

.section-informasi h2,
.section-informasi h3,
.section-program h2,
.section-program h3 {
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
}

.section-informasi h2,
.section-program h2 {
  color: var(--orange);
}

.section-informasi h3,
.section-program h3 {
  color: var(--biruMF);
}

.section-informasi p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.section-informasi .card-text-expanded,
.section-informasi .card-text-expanded {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.section-informasi .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.15);
  background-color: var(--white);
  transition: width 0.3s ease;
  max-width: 100%;
}

.section-informasi .card .card-body {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  z-index: 1;
  transition: all 0.3s ease;
}

.section-informasi .card .card-body.expanded {
  height: 100%;
  width: 100%;
  max-width: 100%;
}

.section-informasi .card .card-body a,
.section-informasi .card .card-body a:hover {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  color: var(--biruMF);
}

.section-informasi .card .card-body .card-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.64px;
  color: var(--biruMF);
}

.section-informasi .card .card-body .card-text,
.section-informasi .card .card-body .card-text-expanded {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  color: var(--abuAbu);
  display: block;
}

/* .section-informasi .card .card-body.expanded .card-text {
  display: block;
}
.section-informasi .card .card-body.expanded .card-text.expanded {
  display: block;
} */

.section-informasi .card .img-card {
  max-width: 333px;
  height: 100%;
  z-index: 2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.section-informasi .card .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px 12px 12px 0px;
}

.section-informasi .card .card-body.expanded + .col-md-4 .img-card {
  transform: translateX(100%);
  /* Geser gambar ke kanan */
  opacity: 0;
  /* Sembunyikan gambar */
}

.section-informasi .btn-program,
.section-informasi .btn-program:hover {
  padding: 5px 16px;
  border-radius: 48px;
  background-color: var(--biruMuda);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  color: var(--white);
}

.section-program .card {
  border: none;
  display: flex;
  flex-direction: coxlumn;
  align-items: flex-start;
  gap: 7px;
  flex-shrink: 0;
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.section-program .card .label {
  margin-top: 10px;
  padding: 4px 12px 1px 12px;
  border-radius: 12px;
}

.section-program .card .label span {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 156.207%;
  letter-spacing: -0.26px;
  color: var(--white);
}

.section-program .card .img-card {
  width: 100%;
  height: 121px;
}

.section-program .card .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-program .card .card-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.64px;
  color: var(--biruMF);
}

.section-program .card .card-text {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  color: var(--abuAbu);
}

.section-program .btn-program,
.section-program .btn-program:hover {
  padding: 5px 16px;
  border-radius: 48px;
  background-color: var(--biruMuda);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  color: var(--white);
}

.section-program .card .label.komun {
  background-color: var(--biruMuda);
}

.section-program .card .label.kesehatan {
  background-color: var(--red);
}

.section-program .card .label.lingkungan {
  background-color: var(--green);
}

/* Semua Program */

/* List Program */
.section-program {
  background-color: var(--white);
}

.section-program1 h3 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.5px;
  color: var(--biruMF);
}

.section-program .card {
  border: none;
  padding: 20px 31px;
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  z-index: 3;
}

.section-program .card .label {
  padding: 4px 12px 1px 12px;
  border-radius: 12px;
}

.section-program .card .label span {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  color: var(--white);
}

.section-program .card .img-card {
  width: 216px;
  height: 121px;
}

.section-program .card .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-program .card .card-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  color: var(--biruMF);
}

.section-program .card .card-text {
  margin-top: -20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuAbu);
}

.section-program .card .card-text-tahun {
  margin-top: -10px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  color: var(--abuAbu);
}

.label.komun {
  background-color: var(--biruMuda);
}

.label.kesehatan {
  background-color: var(--red);
}

.label.lingkungan {
  background-color: var(--green);
}

.label.sosial {
  background-color: #faab52;
}

.btn-program,
.btn-program:hover {
  padding: 5px 16px;
  border-radius: 48px;
  background-color: var(--biruMuda);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  color: var(--white);
}

/* List Program */

/* Kategori Kesehatan */
.section-kesehatan,
.section-sosial,
.section-lingkungan,
.section-komunitas {
  background-color: var(--white);
  margin: -20px 0;
}

.section-kesehatan h5,
.section-sosial h5,
.section-lingkungan h5,
.section-komunitas h5 {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  color: var(--biruMF);
  margin-top: 10px;
}

.section-kesehatan .card-text-tahun,
.section-sosial .card-text-tahun,
.section-lingkungan .card-text-tahun,
.section-komunitas .card-text-tahun {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: var(--biruMF);
}

.section-kesehatan .card-text,
.section-sosial .card-text,
.section-lingkungan .card-text,
.section-komunitas .card-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuAbu);
}

.section-kesehatan .card,
.section-sosial .card,
.section-lingkungan .card,
.section-komunitas .card {
  border: none;
  padding: 20px 31px;
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
  width: 100%;
  z-index: 3;
}

.btn-program-kategori,
.btn-program-kategori:hover {
  padding: 10px 30px;
  margin: 0px 5px;
  border-radius: 48px;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  color: var(--white);
}

.btn-program-kategori.kesehatan {
  background-color: var(--red);
}

.btn-program-kategori.lingkungan {
  background-color: var(--green);
}

.btn-program-kategori.sosial {
  background-color: var(--orange);
}

.btn-program-kategori.komunitas {
  background-color: var(--biruMuda);
}

.program .page-item.active .page-link,
.program .page-item.active .page-link:hover {
  background-color: var(--biruMuda);
  color: white;
}

.program .page-item.disabled .page-button svg {
  background-color: #c8c8c8;
}

.program .page-item .page-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--biruMF);
  border: none;
  background-color: transparent;
  border-radius: 50%;
  text-decoration: none;
  padding: 5px 0 0 0;
  width: 25px;
  height: 25px;
}

.program .page-item .page-link:hover {
  background-color: transparent;
}

.program .page-item .page-button svg {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--biruMuda);
  padding: 5px 6px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
}

.section-kesehatan #cardCarousel .card .card-title h1,
.section-lingkungan #cardCarousel .card .card-title h1,
.section-komunitas #cardCarousel .card .card-title h1,
.section-sosial #cardCarousel .card .card-title h1 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  color: var(--biruMF);
}

/* Kategori Kesehatan */

/* Detail Program */
.section-detail-singkat {
  background-color: var(--whiteSec);
}

.section-detail-gallery {
  background-color: var(--white);
}

.section-detail-singkat .left-box h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  color: var(--biruMF);
}

.section-detail-singkat .left-box p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.section-detail-singkat .right-box .img-kegiatan {
  height: 149px;
  align-self: stretch;
}

.section-detail-singkat .right-box .img-kegiatan img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.section-detail-singkat .container-gallery {
  gap: 16px;
}

.section-detail-singkat .container-gallery .item-gallery-top {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.section-detail-singkat .container-gallery .item-gallery-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.section-detail-singkat
  .container-gallery
  .item-gallery-top
  .image-container-left {
  position: relative;
  max-width: 973px;
  height: 316px;
}

.section-detail-singkat
  .container-gallery
  .item-gallery-top
  .image-container-right {
  position: relative;
  max-width: 443px;
  height: 316px;
}

.section-detail-singkat
  .container-gallery
  .item-gallery-bottom
  .image-container-left {
  position: relative;
  max-width: 443px;
  height: 316px;
}

.section-detail-singkat
  .container-gallery
  .item-gallery-bottom
  .image-container-right {
  position: relative;
  max-width: 973px;
  height: 316px;
}

.section-detail-singkat .container-gallery img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  padding: 4px;
}

.section-detail-singkat .container-gallery .caption {
  position: absolute;
  bottom: 0;
  left: 10px;
  color: #fff;
  padding: 5px 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.48px;
  max-width: 90%;
}

/* Detail Program */
/* Program Close*/

/* Publikasi Open */
/* Artikel */
.header-detail {
  padding: 60px 142px;
}

.header-detail .breadcrumb .breadcrumb-item,
.header-detail .breadcrumb .breadcrumb-item a {
  color: var(--biruMF);
  text-decoration: none;
}

.header-detail .nav-link,
.header-detail h1 {
  z-index: 2;
}

.header-detail .nav-link a {
  color: var(--biruMF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.section-artikel,
.section-artikel-detail {
  background-color: var(--white);
}

.section-artikel-detail .title-artikel {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  color: var(--black);
}

.section-artikel-detail .sub-text-artikel {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.4px;
  color: #b5b5b5;
}

.section-artikel-detail .con {
  padding: 0 150px;
}

.section-artikel-detail .con .text-artikel {
  text-align: justify;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.section-artikel-detail .with-image .title-artikel-image {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  color: var(--black);
  margin: 30px 0;
}

.section-artikel-detail .with-image .img {
  height: 100%;
  margin-bottom: 30px;
}

.section-artikel-detail .with-image .img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-artikel-detail .deskripsi-artikel .title-deskripsi {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  color: var(--abuTua);
  margin: 10px 0;
  text-align: center;
}

.section-artikel-detail .deskripsi-artikel .conta p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  text-align: justify;
  line-height: normal;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.section-artikel-detail .deskripsi-artikel .title-artikel-image {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  color: var(--black);
  margin: 30px 0;
}

.section-artikel-detail .back-button {
  background-color: var(--biruMuda);
  padding: 10px;
  border: none;
  width: 144px;
  border-radius: 32px;
  margin-bottom: 30px;
}

/* Artikel */

/* Events */
.section-event-1 {
  background-color: var(--white);
}

.section-event-1 .title-sub {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.section-event-1 .title {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 55px;
  letter-spacing: -0.8px;
  color: var(--abuAbu);
  width: 50%;
  margin-bottom: 30px;
}

.section-event-1 .grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 128px;
}

.section-event-1 .grid-layout .img-event {
  max-width: 703px;
  height: 409px;
  align-self: stretch;
  width: 100%;
}

.section-event-1 .grid-layout .img-event img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.section-event-1 .grid-layout .text-event span {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 55px;
  letter-spacing: -0.4px;
  color: orange;
}

.section-event-1 .grid-layout .text-event h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 55px;
  letter-spacing: -0.8px;
  color: var(--biruMF);
}

.section-event-1 .grid-layout .text-event p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuAbu);
}

.section-event-1 .grid-layout .text-event .ikuti-event {
  background-color: var(--biruMuda);
  padding: 10px;
  border: none;
  width: 150px;
  color: var(--white);
  border-radius: 48px;
}

.section-event-2 {
  background-color: var(--whiteSec);
}

.section-event-2 .grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 150px;
}

.section-event-2 .grid-layout h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 41px;
  color: var(--biruMuda);
  letter-spacing: -0.96px;
}

.section-event-2 .grid-layout span {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.64px;
  color: var(--biruMF);
}

.section-event-3 {
  background-color: var(--white);
}

.section-event-3 .title {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 55px;
  letter-spacing: -0.8px;
  color: var(--biruMF);
  text-align: center;
  margin-bottom: 42px;
}

.section-event-3 .card {
  border: none;
  padding: 25px;
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  height: 100%;
}

.section-event-3 .card .img-card {
  width: 100%;
}

.section-event-3 .card .img-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.section-event-3 .card .card-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: -0.48px;
  margin-top: 10px;
  color: var(--biruMF);
}

.section-event-3 .card .card-text-tgl {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuTua);
}

.section-event-3 .card .card-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuAbu);
}

/* Events */

/* Pendaftaran Event */
.section-pendaftaran .grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.container-ebook-2 {
  position: relative;
  text-align: center;
}

.container-ebook-2:hover {
  background-color: #003976;
  background-size: cover;
  background-position: center;
}

.overlay-content-2:hover {
  padding: 15px;
  margin-right: 20px;
  height: 100%;
  width: 100%;
  background-color: #003976;
  color: white;
  text-align: left;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.overlay-content-2 {
  color: transparent;
  text-align: left;
  position: absolute;
  bottom: 5px;
  left: 5px;
}

.section-pendaftaran .overlay-box {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 100%;
  display: flex;
  align-items: center;
  padding: 263px 143px 263px 143px;
  background-image: url("../images/frame-2.png");
}

.section-pendaftaran .form-box {
  position: relative;
  min-height: 100%;
  padding: 50px 76px 50px 37px;
}

.section-pendaftaran .overlay-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
  background-color: #012f70;
  z-index: 3;
}

.section-pendaftaran .overlay-box .overlay-wrapper {
  position: absolute;
  padding: 40px 143px 40px 143px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}

.section-pendaftaran .overlay-box .nav-link,
.section-pendaftaran .overlay-box h1,
.section-pendaftaran .overlay-box h5 {
  z-index: 2;
}

.section-pendaftaran .overlay-box .nav-link a {
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.section-pendaftaran .overlay-box h1 {
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  color: var(--white);
}

.section-pendaftaran .overlay-box h5 {
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  color: var(--orange);
}

.section-pendaftaran .overlay-box p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--white);
}

.section-pendaftaran .form-box h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 65px;
  color: var(--biruMF);
}

.section-pendaftaran input[type="number"]::-webkit-outer-spin-button,
.section-pendaftaran input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.section-pendaftaran input[type="number"] {
  -moz-appearance: textfield;
}

.section-pendaftaran .form-box .btn-submit-event {
  background-color: var(--biruMuda);
  padding: 10px 18px;
  border: none;
  width: 140px;
  color: var(--white);
  border-radius: 48px;
}

/* Pendaftaran Event */

/* E-Book */
.section-ebook .section-title {
  font-size: 40px;
  color: var(--biruMF);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.8px;
}

.section-ebook .section-desc {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.48px;
  background-color: transparent;
  color: var(--abuAbu);
}

.search-box-1 .input-search::placeholder {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.4px;
  color: var(--abuTua);
  margin-top: auto;
}

.search-box-1 .input-search {
  border: none;
  outline: none;
  flex: 1;
  border-radius: 20px;
  font-size: 14px;
  margin-top: 10px;
}

.search-box-1 form input {
  padding: 5px;
  width: calc(100% - 40px);
  margin-bottom: 10px;
}

.search-box-1 .form-search {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--abuAbu);
  border-radius: 20px;
  padding: 0 10px;
  max-width: 300px;
}

.search-box-1 .button-search {
  background-color: transparent;
  color: white;
  border: none;
  border-radius: 50%;
}

.section-ebook .container-ebook {
  width: 253px;
  height: 383px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
}

.section-ebook .container-ebook .img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 253px;
  height: 383px;
  z-index: 1;
}

.section-ebook .container-ebook .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-ebook .container-ebook .overlay-content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  color: white;
  text-align: left;
  padding: 10px;
  border-radius: 5px;
  width: calc(100% - 20px);
  transition: transform 0.3s ease;
  display: none;
}

.section-ebook .container-ebook:hover .overlay-content {
  display: block;
}

.section-ebook .container-ebook .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 57, 118, 0.62);
  z-index: 2;
  transition: opacity 0.3s ease;
  display: none;
}

.section-ebook .overlay-content .description {
  display: none;
  transform: translateY(20px);
  transition: transform 0.3s ease, visibility 0.3s ease;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  color: #f3f4ff;
}

.section-ebook .container-ebook:hover .overlay-content .description,
.section-ebook .container-ebook:hover .overlay {
  display: block;
  transform: translateY(0);
  visibility: visible;
}

.section-ebook .overlay-content h1 {
  font-size: 33.524px;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
  color: #f3f4ff;
  margin: 10px 0;
}

.section-ebook .overlay-content p {
  margin: 5px 0;
}

.section-ebook .overlay-content p {
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  color: #f3f4ff;
  margin: -10px 0;
}

.section-ebook .overlay-content .rating {
  color: #ffd700;
  font-size: 19px;
  margin-top: 5px;
}

.section-ebook .overlay-content .rating span {
  margin-right: 2px;
}

.section-ebook .ebook-list .grid-layout {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  width: 350.283px;
  height: 225.354px;
  gap: 15px;
}

.section-ebook .ebook-list .grid-layout .img-book {
  width: 150.454px;
  height: 210.354px;
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out;
}

.section-ebook .ebook-list .grid-layout .img-book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.section-ebook .ebook-list .grid-layout .img-book:hover img {
  transform: scale(1.1);
}

.section-ebook .ebook-list .grid-layout .text-book h1 {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--black);
}

.section-ebook .ebook-list .grid-layout .text-book span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.6);
}

.section-ebook .ebook-list .grid-layout .text-book .votes {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.6);
}

.section-ebook .ebook-list .grid-layout .text-book p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.048px;
  color: rgba(0, 0, 0, 0.6);
}

.section-ebook .ebook-list .grid-layout .text-book .rating span {
  color: #ffd700;
  font-size: 19px;
  margin-top: 5px;
}

/* E-Book */

/* Detail E-Book */
.section-detail-ebook .grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.section-detail-ebook .grid-layout .img-ebook {
  width: 280.399px;
  height: 400.711px;
  justify-self: end;
  transition: transform 0.3s ease-in-out;
}

.section-detail-ebook .grid-layout .img-ebook img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0px 16.762px 67.049px 0px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.section-detail-ebook .grid-layout .img-ebook:hover img {
  transform: scale(1.1);
}

.text-ebook {
  padding: 40px 0;
}

.text-ebook h1 {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--biruMF);
}

.text-ebook h2 {
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  color: var(--biruMF);
}

.text-ebook p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  color: var(--abuAbu);
}

.img-ebook .button {
  padding: 5px 16px;
  width: 200px;
  text-align: center;
  justify-content: center;
  border-radius: 48px;
  background-color: #408730;
  display: flex;
  align-items: center;
  gap: 8px;
}

.img-ebook .button span {
  margin-top: 8px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
}

.section-detail-ebook-2 .card {
  border: none;
  padding: 24px 57px 0px 57px;
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
  max-width: 100%;
}

.section-detail-ebook-2 .rating-card .rating span {
  color: #ffd700;
  font-size: 19px;
}

.section-detail-ebook-2 .grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}

.section-detail-ebook-2 .grid-layout h1 {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 41px;
  color: var(--abuAbu);
  letter-spacing: -0.64px;
  text-transform: capitalize;
}

.section-detail-ebook-2 .grid-layout p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.48px;
  text-transform: capitalize;
  color: var(--abuAbu);
}

/* Detail E-Book */

/* Annual Report */
.img-report {
  width: 100%;
  height: 447px;
  align-self: stretch;
}

.img-report img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-annual-2 .grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.section-annual-2 .grid-layout .img-book {
  /* width: 147px;
  height: 226px; */
  flex-shrink: 0;
}

.section-annual-2 .grid-layout .img-book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-annual-2 .grid-layout .text-book h1 {
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  text-transform: capitalize;
  color: var(--black);
}

.section-annual-2 .grid-layout .text-book span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.6);
}

.section-annual-2 .grid-layout .text-book p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuAbu);
}

.section-annual-2 .grid-layout .text-book p .halaman {
  color: var(--abuAbu);
}

@media (max-width: 768px) {
  .section-annual-2 .grid-layout {
    grid-template-columns: 1fr;
  }
  .section-annual-2 .text-book {
    margin-top: 1rem;
    padding: 10px;
  }
  .section-annual-2 .grid-layout .text-book h1 {
    font-size: 28px;
    font-weight: bold;
  }
  .section-annual-2 .grid-layout .text-book span {
    font-size: 18px;
  }
  .section-annual-2 .grid-layout .text-book p {
    margin-bottom: 0;
    font-size: 15px;
  }
}

.section-annual .section-title {
  font-size: 40px;
  color: var(--biruMF);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.8px;
}

.section-annual .section-desc {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.48px;
  background-color: transparent;
  color: var(--abuAbu);
}

.section-annual .grid-layout {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: -32px;
}

.section-annual .grid-layout .img-grid {
  width: 197px;
  height: 302px;
}

.section-annual .grid-layout .img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-annual .grid-layout .text-grid {
  padding: 50px 0;
}

.section-annual .grid-layout .text-grid .text {
  display: flex;
  align-items: center;
  gap: 101px;
}

.section-annual .grid-layout .text-grid .text .info h1 {
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  text-transform: capitalize;
  color: var(--black);
}

.section-annual .grid-layout .text-grid .text .info span {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.section-annual .grid-layout .text-grid .text .info p {
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 0.032px;
  color: var(--black);
}

.section-annual .grid-layout .text-grid .text .info .button {
  padding: 2px 8px;
  width: 200px;
  text-align: center;
  border-radius: 20px;
  background-color: var(--biruMuda);
}

.section-annual .grid-layout .text-grid .text .info .button span {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  color: var(--white);
}

.section-annual .grid-layout .text-grid .text .deskripsi {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.32px;
  color: var(--abuAbu);
}

/* Annual Report */

/* News */
.section-news {
  background-color: var(--whiteSec);
}

.section-news h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  color: var(--biruMF);
}

.section-news p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuAbu);
}

.section-news .img-news {
  width: 100%;
  height: 458px;
}

.section-news .img-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.section-news .view-berita,
.section-news-2 .view-berita {
  margin: 10px 0;
  padding: 5px 16px;
  text-align: center;
  border-radius: 48px;
  background-color: var(--biruMuda);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  color: var(--white);
}

.section-news-2 h1 {
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.8px;
  color: var(--biruMF);
}

.section-news-2 p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
  margin-bottom: 20px;
}

.section-news-2 .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.section-news-2 .news-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.section-news-2 .news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-news-2 .news-item.big {
  grid-column: span 3;
  height: 400px;
}

.section-news-2 .news-item.small {
  height: 190px;
}

.section-news-2 .news-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  color: white;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(0, 57, 118, 0.7);
}

.section-news-2 .news-item .caption h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--white);
}

.section-news-2 .news-item .caption .detail {
  color: var(--white);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* News */

/* List News */
.section-list-news h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.8px;
  color: var(--biruMF);
}

.section-list-news p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.list-news .image {
  width: 100%;
  height: 227px;
  position: relative;
}

.list-news .image img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-news .image .caption {
  position: absolute;
  bottom: 0;
  left: 10px;
  color: white;
  padding: 10px;
  border-radius: 5px;
}

.list-news .image .caption h2 {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
  text-align: start;
  color: var(--white);
}

.list-news .image .caption a {
  text-align: start;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.06px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  color: var(--white);
}

/* List News */

/* Detail News */
.img-header {
  width: 100%;
  overflow: hidden;
}

.img-header img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.sec-detail-news .text-desc h1 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--biruMF);
}

.sec-detail-news .text-desc p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuAbu);
}

.sec-detail-news .news-other h1 {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 41px;
  letter-spacing: -0.64px;
  color: var(--biruMF);
}

.sec-detail-news .news-other .news-item.big .grid-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sec-detail-news .news-other .news-item.big .grid-item .img-other {
  width: 100%;
  height: 112px;
  overflow: hidden;
}

.sec-detail-news .news-other .news-item.big .grid-item .img-other img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.sec-detail-news .news-other .news-item.big .grid-item .text-other h1 {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--biruMF);
  border-bottom: 1px solid #000;
}

.sec-detail-news .news-other .news-item.big .grid-item .text-other p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.4px;
  color: var(--abuAbu);
}

.sec-detail-news .news-other .news-item.small {
  border-bottom: 2px solid #c8c8c8;
  padding-bottom: 10px;
  margin: 10px 0;
}

.sec-detail-news .news-other .news-item.small .grid-item {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
}

.sec-detail-news .news-other .news-item.small .grid-item .img-other {
  width: 69px;
  height: 49px;
  overflow: hidden;
}

.sec-detail-news .news-other .news-item.small .grid-item .img-other img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.sec-detail-news .news-other .news-item.small .grid-item p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.4px;
  color: var(--abuAbu);
  margin: 10px 0;
}

.sec-detail-news .news-other .news-item.small .grid-item .baca p {
  margin: 10px 0;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  color: var(--black);
}

.sec-detail-news .img-news-2 {
  height: 516px;
  width: 100%;
  overflow: hidden;
  margin: 20px 0;
}

.sec-detail-news .img-news-2 img {
  height: 100%;
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.sec-detail-news .grid-layouts p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.sec-detail-news .grid-layouts h1 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--biruMF);
}

.sec-detail-news .grid-layouts h1 .stroke {
  border-bottom: 1px solid var(--abuAbu);
}

.sec-detail-news .biru {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--biruMF);
}

.sec-detail-news .orange {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--orange);
}

.sec-detail-news-2 h1 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--biruMF);
}

.sec-detail-news-2 p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuAbu);
}

.sec-detail-news-2 .img-galeri {
  width: 324px;
  height: 279px;
  flex-shrink: 0;
  position: relative;
  border-radius: 10px;
}

.sec-detail-news-2 .img-galeri img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-detail-news-2 .img-galeri .caption {
  background-color: #000000a1;
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
  padding: 10px;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.sec-detail-news-2 .img-galeri .caption h1 {
  font-size: 16px;
  font-style: normal;
  color: white;
  line-height: 25px;
  letter-spacing: -0.48px;
  font-weight: 500;
}

.sec-detail-news-2 .img-galeri .caption a {
  color: var(--white);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.sec-detail-news-2 .card {
  border: none;
  background-color: transparent;
}

/* Detail News */

/* Gallery Foto */
.nav-galeri {
  padding: 15px 142px;
}

.nav-galeri .flex-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.nav-galeri .flex-nav h1 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  color: var(--biruMF);
}

.nav-galeri .flex-nav .item-nav {
  border-bottom: 2px solid #c8c8c8;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
}

.nav-galeri .flex-nav .item-nav.active {
  border-bottom: 4px solid var(--biruMuda);
}

.nav-galeri .flex-nav .item-nav:hover {
  border-bottom: 4px solid var(--biruMuda);
  cursor: pointer;
}

.sec-galeri-des .grid-layouts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 174px;
  align-self: stretch;
}

.sec-galeri-des .grid-layouts .text-title h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.96px;
  color: var(--biruMuda);
  white-space: nowrap;
}

.sec-galeri-des .grid-layouts .text-title h2 {
  white-space: nowrap;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.96px;
  color: var(--biruMF);
}

.sec-galeri-des .grid-layouts .text-des p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuAbu);
}

.sec-galeri-des .photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  /* gap: 5px; */
  margin-top: 40px;
}

.sec-galeri-des .photo-item {
  grid-column: span 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow: hidden;
}

/* .sec-galeri-des .photo-item:nth-child(1) {
  grid-column: span 1;
  grid-row: span 1;
}

.sec-galeri-des .photo-item:nth-child(2) {
  grid-column: span 2;
  grid-row: span 1;
}

.sec-galeri-des .photo-item:nth-child(3) {
  grid-column: span 2;
  grid-row: span 1;
}

.sec-galeri-des .photo-item:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
} */

.sec-galeri-des .photo-item img {
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sec-galeri-des .photo-item img:hover {
  transform: scale(1.05);
}

.sec-galeri-caro h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.8px;
  color: var(--biruMF);
}

.sec-galeri-caro p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.sec-galeri-caro .img-galeri {
  width: 100%;
  height: 279px;
  flex-shrink: 0;
  position: relative;
}

.sec-galeri-caro .img-galeri img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.sec-galeri-caro .img-galeri .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  padding: 10px;
  z-index: 3;
  /* border-radius: 5px; */
  transition: transform 0.3s ease;
  background-color: rgba(0, 57, 118, 0.7);
}

.sec-galeri-caro .img-galeri .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 57, 118, 0.62);
  z-index: 2;
  transition: opacity 0.3s ease;
  display: none;
}

.sec-galeri-caro .img-galeri .caption h1 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 0;
}
.sec-galeri-caro .img-galeri .caption h4 {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.sec-galeri-caro .img-galeri .caption p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.38px;
  color: #f3f4ff;
  display: none;
  transform: translateY(20px);
  transition: transform 0.3s ease, visibility 0.3s ease;
}
.sec-galeri-caro .img-galeri {
  overflow: hidden;
  border-radius: 5px;
}

.sec-galeri-caro .card:hover .img-galeri img {
  transform: scale(1.05);
}

.sec-galeri-caro .card {
  border: none;
  background-color: transparent;
}

.sec-galeri-caro-fil h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.8px;
  color: var(--biruMF);
}

.sec-galeri-caro-fil p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.sec-galeri-caro-fil .img-galeri {
  width: 250px;
  height: 348px;
  flex-shrink: 0;
  position: relative;
}

.sec-galeri-caro-fil .img-galeri img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-galeri-caro-fil .img-galeri .caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  padding: 10px;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.sec-galeri-caro-fil .img-galeri .caption h1 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
}

.sec-galeri-caro-fil .img-galeri .caption p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.38px;
  color: #f3f4ff;
  display: none;
  transform: translateY(20px);
  transition: transform 0.3s ease, visibility 0.3s ease;
}

.sec-galeri-caro-fil .card:hover .img-galeri .caption p {
  display: block;
  transform: translateY(0);
  visibility: visible;
}

.sec-galeri-caro-fil .card {
  border: none;
  background-color: transparent;
}

.sec-galeri-des-detail .text-title h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.96px;
  color: var(--biruMuda);
  white-space: nowrap;
}

.sec-galeri-des-detail .text-title h2 {
  white-space: nowrap;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.96px;
  color: var(--biruMF);
}

.sec-galeri-des-detail .text-des p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuAbu);
}

.sec-galeri-des-detail .photo-gallery {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  gap: 15px;
}

.sec-galeri-des-detail .photo-item {
  flex: 15%;
  max-width: 100%;
}

.sec-galeri-des-detail .photo-item img {
  vertical-align: middle;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sec-galeri-des-detail .photo-item img:hover {
  transform: scale(1.05);
}

.sec-galeri-vid .grid-layouts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 174px;
  align-self: stretch;
}

.sec-galeri-vid .grid-layouts .text-title h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.96px;
  color: var(--biruMuda);
  white-space: nowrap;
}

.sec-galeri-vid .grid-layouts .text-title h2 {
  white-space: nowrap;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.96px;
  color: var(--biruMF);
}

.sec-galeri-vid .grid-layouts .text-des p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuAbu);
}

.sec-galeri-vid .video-gallery h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: -0.8px;
  color: var(--biruMF);
}

.sec-galeri-vid .video-gallery p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.sec-galeri-vid .video-gallery .video-item {
  height: 469px;
  overflow: hidden;
  position: relative;
}

.sec-galeri-vid .video-gallery .video-item video,
.sec-galeri-vid .video-gallery .video-item .vjs-tech {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sec-galeri-vid .video-lainnya h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.8px;
  color: var(--biruMF);
}

.sec-galeri-vid .video-lainnya p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.sec-galeri-vid .card {
  border: none;
  background-color: transparent;
}

.sec-galeri-vid .video-lainnya .img-galeri {
  width: 100%;
  height: 362px;
  overflow: hidden;
}

.sec-galeri-vid .video-lainnya .img-galeri img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-galeri-vid .video-lainnya .caption p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 10px;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.sec-galeri-vid-fil .grid-layouts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 174px;
  align-self: stretch;
}

.sec-galeri-vid-fil .grid-layouts .text-title h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.96px;
  color: var(--biruMuda);
  white-space: nowrap;
}

.sec-galeri-vid-fil .grid-layouts .text-title h2 {
  white-space: nowrap;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.96px;
  color: var(--biruMF);
}

.sec-galeri-vid-fil .grid-layouts .text-des p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuAbu);
}

.sec-galeri-vid-fil-2 {
  background-color: var(--whiteSec);
}

.sec-galeri-vid-fil-2 .card {
  border: none;
  background-color: transparent;
}

.sec-galeri-vid-fil-2 .card .img-galeri {
  width: 100%;
  height: 362px;
  overflow: hidden;
}

.sec-galeri-vid-fil-2 .card .img-galeri img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-galeri-vid-fil-2 .card .caption p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.sec-galeri-vid-detail .text-title h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.96px;
  color: var(--biruMuda);
  white-space: nowrap;
}

.sec-galeri-vid-detail .text-title h2 {
  white-space: nowrap;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: -0.96px;
  color: var(--biruMF);
}

.sec-galeri-vid-detail .text-des p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  color: var(--abuAbu);
}

.sec-galeri-vid-detail .video-gallery h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: -0.8px;
  color: var(--biruMF);
}

.sec-galeri-vid-detail .video-gallery p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.sec-galeri-vid-detail .video-gallery .video-item {
  height: 469px;
  overflow: hidden;
  position: relative;
}

.sec-galeri-vid-detail .video-gallery .video-item video,
.sec-galeri-vid-detail .video-gallery .video-item .vjs-tech {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Gallery Foto */
/* Publikasi Close */

/* Kontak Kami */

.sec-kontak .grid-layouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 768px) {
  .sec-kontak .grid-layouts {
    grid-template-columns: 1fr;
  }
}

.sec-kontak .grid-layouts .left {
  background: #f3f4ff;
  border-right: none;
  padding: 60px 50px;
}

.sec-kontak .content-kontak h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 65px;
  color: var(--biruMF);
}

.sec-kontak .content-kontak h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 65px;
  color: var(--biruMF);
}

.sec-kontak .content-kontak p {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.8px;
  color: var(--biruMF);
}

.sec-kontak .grid-layouts .right {
  padding: 60px 30px;
}

.sec-kontak .content-kontak h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 65px;
  color: var(--biruMF);
}

.sec-kontak .content-kontak .btn-submit-event {
  background-color: var(--biruMuda);
  padding: 10px 25px;
  border: none;
  color: var(--white);
  border-radius: 48px;
}

.sec-map {
  /* border: 1px solid #c8c8c8; */
}

#subscribe-form {
  position: relative;
}
#subscribe-form .g-recaptcha {
  position: absolute;
  bottom: -100px;
  z-index: 10;
}

.sec-map h1 {
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--biruMF);
}

.sec-map p {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.sec-map maps {
  width: 100%;
  overflow: hidden;
}

/* Kontak Kami */

/* Faq */
.sec-faq .faq-title {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.96px;
  color: var(--biruMF);
  text-align: center;
}

.sec-faq .faq-title-sub {
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.72px;
  color: var(--biruMF);
}

.sec-faq .faq-parag {
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: -0.48px;
  color: var(--abuAbu);
}

.sec-faq .card .grid-layouts h1 {
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: start;
  color: #000;
}

.sec-faq .card .grid-layouts p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
}

.sec-faq .card {
  border: none;
  padding: 13px 20px 0px 20px;
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
  max-width: 100%;
}

.sec-faq .card .grid-layouts {
  display: grid;
  grid-template-columns: 5fr 1fr;
  gap: 0;
}

.sec-faq .card .grid-layouts .icon {
  display: flex;
  justify-content: end;
  cursor: pointer;
}

/* Faq */

/* Index */
/* .sec-event-index h2 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.72px;
  text-align: center;
  color: var(--biruMF);
} */

/* .sec-event-index p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  color: #2e4049;
} */

@media (max-width: 768px) {
  /* .sec-event-index h2 {
    font-size: 1.5rem;
  } */
  /* .sec-event-index p {
    font-size: 1rem;
  } */
}

.sec-event-index .card {
  border: none;
  background-color: transparent;
}

.sec-event-index .card .img-galeri {
  width: 100%;
  height: 248px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.sec-event-index .card .img-galeri img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-event-index .card .img-galeri .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  background-color: rgba(var(--darkBlueJapRGB), 0.7);
  font-size: 24px;
  font-weight: 500;
  color: white;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  opacity: 1;
}

.sec-event-index .card .img-galeri:hover .caption {
  display: block;
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.sec-event-index .card .img-galeri .caption h1 {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px;
  text-transform: capitalize;
  color: var(--white);
}

.sec-pers-index {
  background-color: var(--whiteSec);
}

.sec-pers-index h2 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.72px;
  text-align: center;
  color: var(--biruMF);
}

.sec-pers-index p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  color: #2e4049;
}

@media (max-width: 768px) {
  .sec-pers-index h2 {
    font-size: 1.5rem;
  }
  .sec-pers-index p {
    font-size: 1rem;
  }
}

.sec-pers-index .image {
  width: 100%;
  height: 227px;
  position: relative;
}

.sec-pers-index .image img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-pers-index .image .caption {
  position: absolute;
  bottom: 0;
  left: 10px;
  color: white;
  padding: 10px;
  border-radius: 5px;
}

.sec-pers-index .image .caption h2 {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
  text-align: start;
  color: var(--white);
}

.sec-pers-index .image .caption a {
  text-align: start;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.06px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  color: var(--white);
}

/* .sec-partner-index h2 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.72px;
  text-align: center;
  color: var(--biruMF);
} */

/* .sec-partner-index p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  color: #2e4049;
} */

@media (max-width: 768px) {
  /* .sec-partner-index h2 {
    font-size: 1.5rem;
  } */
  /* .sec-partner-index p {
    font-size: 1rem;
  } */
}

.sec-carousel-foto {
  width: 100%;
  max-width: 100%;
}

.sec-carousel-foto .swiper-foto {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.sec-carousel-foto .swiper-slide {
  width: auto;
  height: auto;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.sec-carousel-foto .swiper-slide img {
  width: 70%;
  height: 35%;
}

.sec-galeri-index {
  background-color: var(--whiteSec);
}

/* .sec-galeri-index h2 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.72px;
  text-align: center;
  color: var(--biruMF);
} */

@media (max-width: 768px) {
  /* .sec-galeri-index h2 {
    font-size: 1.5rem;
  } */
}

.gallery-section-title {
  display: flex;
  padding: 5px 15px;
  margin: 30px 450px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: var(--greenJap);
}

.section-title.video {
  background: rgba(26, 158, 216, 0.3);
}

.section-title.foto {
  background: rgba(210, 33, 136, 0.2);
}

.sec-carousel-vid {
  width: 100%;
  max-width: 100%;
}

.sec-carousel-vid .owl-carousel {
  width: 100%;
  max-width: 100%;
}

.video-section .item {
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
  transform: scale(0.9);
  position: relative;
}

.video-container {
  position: relative;
  overflow: hidden;
  width: 605px;
  /* height: 300px; */
}

@media (max-width: 1400px) {
  .video-container {
    width: 605px;
  }
}

@media (max-width: 768px) {
  .video-container {
    width: auto;
  }
}

.video-container video {
  width: 100%;
  /* height: 100%; */
  aspect-ratio: 16/9;
  border-radius: 10px;
  object-fit: cover;
}

.video-section .active .item {
  opacity: 1;
  transform: scale(1);
}

.video-section .owl-item {
  transition: transform 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-section .owl-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 10px;
  z-index: 10;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  font-size: 25px;
}

.owl-prev:hover,
.owl-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-item {
  position: relative;
}

.carousel-item .item .caption {
  position: absolute;
  top: 30%;
  color: white;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-50%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInCenter {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.carousel-item.index-carousel .item .caption.right {
  right: 10%;
  width: 690px;
  text-align: right;
  animation: slideInRight 2s ease-out;
}

.carousel-item.index-carousel .item .caption.left {
  text-align: left;
  width: 670px;
  left: 11%;
  animation: slideInLeft 2s ease-out;
}

.carousel-item.index-carousel .item .caption.center {
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 10%;
  width: 80%;
  animation: slideInCenter 2s ease-out;
}

.carousel-item.index-carousel .item .caption.left h1 {
  color: #fff;
  font-size: 80px;
  font-weight: 600;
}

.carousel-item.index-carousel .item .caption.right h1 {
  color: #fff;
  font-size: 80px;
  font-weight: 600;
}

.carousel-item.index-carousel .item .caption.center h1 {
  color: #fff;
  font-size: 90px;
  font-weight: 600;
}

.carousel-item.index-carousel .item .caption.left p {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  width: 500px;
}

.carousel-item.index-carousel .item .caption.center p {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
}

.carousel-item.index-carousel .item .caption.right p {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  width: 500px;
  margin: 0 26%;
}

/* Index */

.custom-alert {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 14px;
  color: white;
  z-index: 9999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: fadeInOut 3s ease-in-out;
}

.custom-alert.success {
  background-color: #4caf50;
  /* Hijau */
}

.custom-alert.error {
  background-color: #f44336;
  /* Merah */
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  10% {
    opacity: 1;
    transform: translateY(0);
  }

  90% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.sec-donasi .grid-layouts {
  display: grid;
  grid-template-columns: 3fr 1fr;
}

.title-camp {
  color: var(--biruMF);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
}

.desc-camp {
  color: var(--abuAbu);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.total-submit {
  color: #d22188;
  font-size: 14px;
  margin: 20px 0;
  font-style: normal;
  font-weight: 900;
  line-height: 20px;
}

.navbar {
  padding: 1rem;
}

.offcanvas {
  width: 300px !important;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 991.98px) {
  .nav-links {
    display: block;
  }

  .nav-links li {
    margin-bottom: 1rem;
  }

  .dropdown-menu {
    border: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
  }

  .nav-links .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
  }
}

@media (min-width: 992px) {
  .nav-links .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .offcanvas {
    display: none !important;
  }
}

.arrow {
  transition: transform 0.2s;
}

.dropdown.show .arrow {
  transform: rotate(90deg);
}

.globe-icon {
  font-size: 1.25rem;
}

/* Custom button styles */
.btn-primary.nav-donation {
  padding: 5px 10px;
  border-radius: 10px;
}

.carousel {
  position: relative;
  width: 100%;
  /* overflow: hidden; */
}

/* Carousel Items */
.index-carousel {
  position: relative;
}

.carousel-item .item {
  position: relative;
  width: 100%;
}

/* Image and Video Styling */
.carousel-item img,
.carousel-item video {
  width: 100%;
  /* height: 80vh; */
  aspect-ratio: 16/9;
  object-fit: cover;
  /* border-radius: 20px; */
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Caption Styling */
.caption {
  position: absolute;
  /* padding: 2rem; */
  max-width: 800px;
  z-index: 2;
}

/* Caption positions */
.caption.left {
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.caption.right {
  right: 10%;
  text-align: right;
  top: 50%;
  transform: translateY(-50%);
}

.caption.center {
  left: 50%;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Caption Content */
.caption h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.caption p {
  font-size: 1.2rem;
  line-height: 1.6;
  /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); */
}

/* Control Buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
}

.carousel-control-prev-icon i,
.carousel-control-next-icon i {
  color: #fff;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Indicators */
.carousel-indicators {
  margin-bottom: 2rem;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

/* Video Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99%;
  background: rgba(0, 0, 0, 0.5);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .caption h1 {
    font-size: 3rem;
  }

  .caption p {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .carousel-item img,
  .carousel-item video {
    /* height: 70vh; */
  }

  .caption h1 {
    font-size: 2.5rem;
  }

  .caption {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .carousel-item img,
  .carousel-item video {
    /* height: 60vh; */
    aspect-ratio: 16/9;
    height: auto;
  }

  .caption h1 {
    font-size: 2rem;
  }

  .caption p {
    font-size: 1rem;
  }

  .caption {
    /* max-width: 90%; */
    padding: 1.5rem;
  }

  .caption.left,
  .caption.right {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
  }
}

@media (max-width: 576px) {
  .carousel-item img,
  .carousel-item video {
    aspect-ratio: 16/9;
    height: auto;
  }

  .caption h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff !important;
    margin-bottom: 0.5rem !important;
  }

  .caption p {
    font-size: 1.2rem;
    color: #fff !important;
  }

  .caption {
    padding: 0.5rem;
    bottom: 15%;
  }

  .carousel-control-prev-icon i,
  .carousel-control-next-icon i {
    font-size: 2rem !important;
  }

  .carousel-indicators {
    margin-bottom: 1rem;
  }

  .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
}
.sec-galeri-index {
  background-color: var(--whiteSec);
}

/* .sec-galeri-index h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.72px;
  text-align: center;
  color: var(--biruMF);
} */

.gallery-section-title {
  display: flex;
  padding: 8px 15px;
  margin: 30px auto;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 500;
  color: var(--greenJap);
  max-width: 300px;
}

.sec-galeri-index .section-title.video {
  background: rgba(26, 158, 216, 0.3);
}

.sec-galeri-index .section-title.foto {
  background: rgba(210, 33, 136, 0.2);
}

.sec-carousel-vid {
  width: 100%;
  max-width: 100%;
}

/* .video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 8px;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.foto-item {
  transition: transform 0.3s ease;
}

.foto-item:hover {
  transform: translateY(-5px);
}

/* Owl Carousel Customization */
/* .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 15px;
}

.owl-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50%;
  pointer-events: auto;
  transition: background-color 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
  background: white !important;
}

.owl-carousel .owl-dots {
  margin-top: 20px;
  text-align: center;
}

.owl-carousel .owl-dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ddd !important;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.owl-carousel .owl-dot.active {
  background: var(--biruMF) !important;
} */

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .gallery-section-title {
    margin: 20px auto;
  }

  .owl-carousel .owl-nav {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .video-container {
    /*padding-top: 75%;  4:3 Aspect Ratio for mobile */
  }

  .foto-item img {
    height: auto !important;
    min-height: 150px;
  }
}

@media (max-width: 575.98px) {
  .gallery-section-title {
    margin: 15px auto;
    padding: 6px 12px;
  }

  .foto-item {
    margin-bottom: 15px;
  }
}

.layout-footer {
  background-color: var(--merahJap);
  color: #fff;
  padding: 30px 0px;
}

@media (max-width: 768px) {
  .layout-footer {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .layout-footer {
    /* padding: 30px 10px; */
  }
}

.footer-logo {
  margin-bottom: 10px;
  max-width: 150px;
}

@media (max-width: 768px) {
  .footer-logo {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  .img-galeri img {
    filter: brightness(50%);
  }
  .sec-event-index .card .img-galeri .caption {
    position: absolute;
    color: white;
    padding: 10px;
    border-radius: 5px;
    transition: transform 0.3s ease;
    font-size: 1.8rem;
    font-weight: bold;
    height: fit-content;
    bottom: 0;
    top: auto;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .carousel-item.index-carousel .item .caption.left h1,
  .carousel-item.index-carousel .item .caption.right h1,
  .carousel-item.index-carousel .item .caption.center h1 {
    font-size: 20px;
  }

  .carousel-item.index-carousel .item .caption.left p,
  .carousel-item.index-carousel .item .caption.right p,
  .carousel-item.index-carousel .item .caption.center p {
    font-size: 14px;
  }

  .subs {
    margin-top: 30px;
  }

  .subs h4 {
    font-size: 30px;
  }
}

.me-lg {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .header-wrapper {
    padding: 20px 30px;
  }
  .header-section {
    padding: 20px 10px;
    min-height: 200px;
  }
  .header-section-2 {
    padding: 20px 10px;
    /* min-height: 200px; */
  }
  .header-section h1 {
    font-size: 27px;
  }
  .header-section-2 h1 {
    font-size: 32px;
  }
  .section-desc .text-sub-title,
  .section-desc .text-title,
  .section-nilai .text-sub-title,
  .section-nilai .text-title,
  .section-struktur .text-sub-title,
  .section-struktur .text-title {
    font-size: 36px;
  }
  .card-vision {
    margin-bottom: 20px;
  }
  .section-vision .card-mission .card-body-mission .title-card .text h2,
  .section-vision .card-vision .card-body-vision .title-card .text h2 {
    font-size: 30px;
  }
  .section-vision .text-sub-title,
  .section-vision .text-title,
  .section-sejarah .text-sub-title,
  .section-sejarah .text-title,
  .section-pencapaian .text-sub-title,
  .section-pencapaian .text-title {
    font-size: 36px;
  }

  #sejarah .carousel-navigation {
    margin-bottom: 10px;
  }
  .me-lg {
    margin-right: 0;
  }
  .section-informasi .card .img-card {
    max-width: 100%;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .section-informasi .card .img-card img {
    border-radius: 0;
  }
  .section-informasi .card .img-card .rounded-start {
    all: unset;
  }
}

.testimonial-card {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 20px;
  padding: 20px;
  background: #fff;
}

.testimonial-img {
  position: absolute;
  left: -150px;
  top: 50%;
  transform: translate(50%, -50%);
  width: 150px !important;
  height: 150px !important;
  object-fit: cover !important;
  border: 5px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-container {
  background: rgb(232, 232, 232);
  background: linear-gradient(
    90deg,
    rgba(232, 232, 232, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  padding: 0;
  min-height: 250px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  width: 70%;
}
.testimonial-quote {
  position: relative;
  padding: 20px;
}

.testimonial-quote i {
  color: #393939;
}
.testi-profile {
  padding-left: 90px;
  padding-right: 10px;
  text-align: left;
  line-height: 1;
}
.testi-card-body {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.testimonial-img-container {
  width: 40%;
}

.ms-cstm-5 {
  margin-left: 3.5rem;
}

@media (max-width: 768px) {
  .ms-cstm-5 {
    margin-left: 0;
  }
  .testimonial-img {
    left: 50%;
    top: -100px;
    width: 100px !important;
    height: 100px !important;
    transform: translate(-50%, 50%);
  }
  .testimonial-img-container {
    padding-left: 0;
    padding-top: 60px;
    width: 100%;
  }
  .testimonial-quote-container {
    width: 100%;
  }
  .testi-card-body {
    flex-direction: column;
  }
  .testi-profile {
    padding-left: 10px;
  }
  .section-filter {
    padding: 10px;
  }
}

.ebook-container {
  /* display: flex;
  gap: 10px; */
}
/* .section-ebook .ebook-list .ebook-container .img-book {
  width: 70%;
} */

.img-book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.img-book:hover img {
  transform: scale(1.05);
}
.text-book {
  padding-left: 20px;
  padding-right: 50px;
}

.text-book h1 {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--black);
}

.text-book span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.6);
}
.text-book p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.048px;
  color: rgba(0, 0, 0, 0.6);
}

.section-ebook .overlay-content p {
  font-size: 14px;
  margin: 10px 0;
}

.section-ebook .container-ebook .overlay {
  background-color: rgba(0, 57, 118, 0.8);
}

.nav-links .parent-menu {
  padding: 0;
}

.navbar-collapse {
  justify-content: flex-end;
}

.deskripsi-artikel img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.deskripsi-artikel iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 10px;
}
.deskripsi-artikel p {
  font-size: 1.2rem !important;
}

@media (max-width: 768px) {
  .section-artikel-detail .title-artikel {
    font-size: 30px;
  }
  .header-detail {
    padding: 40px 10px;
  }
}
#cardCarousel .carousel-control-prev,
#cardCarousel1 .carousel-control-prev,
#cardCarousel2 .carousel-control-prev,
#cardCarousel3 .carousel-control-prev {
  left: 0;
}
#cardCarousel .carousel-control-next,
#cardCarousel1 .carousel-control-next,
#cardCarousel2 .carousel-control-next,
#cardCarousel3 .carousel-control-next {
  right: 0;
}
#cardCarousel .carousel-control-next {
  right: -100px;
}
#cardCarousel .carousel-control-prev {
  left: -100px;
}
.pers-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.pers-image .caption {
  background-color: white;
  bottom: 0;
  padding: 20px;
}

.pers-image img {
  height: 400px;
}

.pers-desc {
  color: #4e4e4e;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.news-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.news-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.news-card .first {
  height: 400px;
  border-radius: 20px;
}

.news-card .caption {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background-color: rgba(1, 47, 112, 0.85);
  max-width: 100%;
  color: white;
}
.news-card .caption a {
  color: white;
}

.donation-title {
  color: #003976;
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

.donation-subtitle {
  color: #003976;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  width: 100%;
  margin: 20px 0;
}

#donation-form .form-select {
  width: 100%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 28px;
}

.swiper-button-next.carousel-button {
  background-color: #ddd;
}
.checkIcon {
  position: absolute;
  top: -9px;
  right: -10px;
  color: green;
}
.bg-lightblue {
  background-color: #f0fbff !important;
}
.text-blue {
  color: var(--greenJap) !important;
}
.text-white {
  color: white !important;
}
.text-bold {
  font-weight: bold !important;
}
.w-10 {
  width: 10% !important;
}

#nextButtonCampaign {
  right: 20px;
}

.progress-bar {
  background-color: #003976 !important;
}

.invoice-title {
  font-size: 24px;
  font-weight: 600;
  color: #003976;
}

.maps iframe {
  width: 100%;
}

.slick-carousel .slick-slide {
  width: 100% !important;
}
.carousel-home .carousel-item {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
/* 
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 0px;
  color: rgba(0, 166, 230, 1) !important;
  border: none;
  width: 50px;
  height: 50px;
} */
.slick-prev:before,
.slick-next:before {
  color: rgba(0, 166, 230, 1) !important;
}

/* .slick-prev {
  left: 50px;
}

.slick-next {
  right: 50px;
} */

.carousel-home-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 500ms ease-in-out;
  transform: scale(1.25, 1.25);
}

.slick-active {
  img {
    transform: scale(1, 1);
  }
}

@keyframes scaleImage {
  0% {
    opacity: 0;
    transform: scale(1); /* Start at normal size */
  }
  30% {
    opacity: 1;
    transform: scale(1.2); /* Scale up quickly */
  }
  100% {
    opacity: 1;
    transform: scale(1); /* Scale back slowly to normal size */
  }
}

.carousel-home .carousel-item .caption {
  position: absolute;
  bottom: 10%;
  left: 10%;
  color: white;
}

.slick-prev:before,
.slick-next:before {
  font-size: 50px;
}

.slick-partners {
  margin: 40px 0;
}
#searchResults ul {
  list-style: none;
  padding: 0;
}

#searchResults li {
  padding: 10px;
  border: 1px solid #ddd;
  margin-bottom: 5px;
  border-radius: 5px;
}
#searchResults a {
  color: #003976;
}

#searchResults a:hover {
  color: #003976;
  text-decoration: underline;
}
#searchResults .result-category {
  margin-bottom: 10px;
}

#homeCarousel .next {
  right: 50px;
  z-index: 5;
}
#homeCarousel .prev {
  left: 50px;
  z-index: 5;
}
#homeCarousel .slick-dots {
  bottom: 50px;
}

#homeCarousel .slick-dots li button:before {
  color: white;
  font-size: 20px;
}

.caption-title,
.caption-description {
  opacity: 0; /* Initially hidden */
}
.animate__animated {
  opacity: 1 !important; /* Visible when animated */
}
/* General styles for images */
.carousel-home img {
  transition: transform 2s ease, opacity 1s ease;
}

.image-scale {
  transform: scale(1);
  opacity: 1;
}

.image-scale-out {
  transform: scale(1.2);
  opacity: 0;
}

.animate-500 {
  animation-duration: 500ms;
}

.animate-250 {
  animation-duration: 250ms;
}

.img-cstm {
  position: relative;
  display: inline-block;
}

.img-cstm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
}

.style-article-detail-title {
  margin-top:3rem;
  font-size: 21.2px;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.my-btn-area {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mt-5-spesial {
  margin-top : 3rem;
}

.fit-content {
  width: fit-content
}

/* .kategori-select {
  width : 25%;
} */

@media (max-width: 768px) {
  .mt-5-spesial {
    margin-top : 1rem;
  }
  .my-btn-area {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .btn-sm {
    --bs-btn-padding-y: 0.1rem;
    --bs-btn-padding-x: 0.2rem;
    --bs-btn-font-size: 0.75rem;
    --bs-btn-border-radius: 0.25rem;
  }

  .header-section p {
    margin-bottom: 0.5rem;
  }

  .style-article-detail-title {
    margin-top:0.5rem;
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .header-section p {
    font-size:10px;
  }

  .header-section .nav-link a{
    font-size:8px;
  }
  .caption.right {
    top: 15%;
    left: 50%;
    width: 100%;
    bottom: 0;
    transform: translateX(-50%);
    text-align: end;
  }
  .caption.left {
    top: 15%;
    left: 50%;
    width: 100%;
    bottom: 0;
    transform: translateX(-50%);
    text-align: start;
  }
  
.caption.center {
  left: 50%;
  text-align: center;
  top: 40%;
  transform: translate(-50%, -50%);
}
  #homeCarousel .slick-dots {
    bottom: -30px;
  }
  .carousel-home .carousel-item .caption h1 {
    font-size: 16px;
  }
  .carousel-home .carousel-item .caption p {
    font-size: 12px;
  }
  #homeCarousel .slick-dots li button:before {
    color: #003976;
    font-size: 10px;
  }

  .campaign-card {
    margin-bottom: 20px;
  }
  .pers-image .caption {
    width: 100%;
  }
  .pers-image {
    margin-bottom: 20px;
  }
}

#articleCarousel .prev {
  left: -50px;
}
#articleCarousel .next {
  right: -50px;
}
#eventsCarousel .prev {
  left: -50px;
}
#eventsCarousel .next {
  right: -50px;
}
#galeriesCarousel .prev {
  left: -50px;
}
#galeriesCarousel .next {
  right: -50px;
}
#federationsCarousel .prev {
  left: -50px;
}
#federationsCarousel .next {
  right: -50px;
}
#partnersCarousel .prev {
  left: -50px;
}
#partnersCarousel .next {
  right: -50px;
}

.slick-partners .next {
  right: 0;
}

#videoCarousel .next {
  right: 0;
}
#eventCarousel .next {
  right: -50px;
}
#eventCarousel .prev {
  left: -50px;
}
#videoCarousel video {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#videoCarousel .slick-slide:not(.slick-center) video {
  transform: scale(0.8);
  filter: blur(1px);
  opacity: 0.7;
}

.btn-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 10px; */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-family: arial;
  font-size: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background-color: transparent !important;
  color: black !important;
  border-color: transparent !important;
}

.btn-carousel.prev {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 10px; */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-family: arial;
  font-size: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transform: translateX(-80%);
  z-index: 5;
}

.btn-carousel.next {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 10px; */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-family: arial;
  font-size: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transform: translateX(90%);
  z-index: 5;
}

.carousel-overlay {
  display: none;
}
.carousel-photo {
  aspect-ratio: 16/9;
}
.carousel-video-banner {
  width: 100%;
}
@media (max-width: 768px) {
  .carousel-photo {
    aspect-ratio: 9/16;
    object-fit: cover;
  }
  .carousel-video-banner {
    aspect-ratio: 9/16;
    object-fit: cover;
  }

  .carousel-photo.right {
    object-position: left;
  }

  .carousel-photo.left {
    object-position: right;
  }

  .carousel-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(1, 47, 112);
    background: linear-gradient(
      0deg,
      rgba(1, 47, 112, 1) 0%,
      rgba(255, 255, 255, 0) 100%
    );
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .slick-dots {
    width: unset;
    left: 0;
    right: 0;
  }
}

.new-campaign-card {
  border-radius: 10px;
  border: none;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* margin-bottom: 20px; */
}

.img-ebook {
  width: 60%;
}
#testimonialCarousel .card {
  margin-right: -45px;
}

@media (max-width: 768px) {
  .img-ebook {
    width: 100%;
  }
  .text-ebook h1 {
    font-size: 42px;
  }
  .section-detail-ebook-2 .card {
    padding: 24px 25px 0px 25px;
  }
  .section-detail-ebook-2 .grid-layout p {
    font-size: 24px;
  }

  #testimonialCarousel .carousel-control-next {
    right: 20px;
  }
  #testimonialCarousel .card {
    margin-right: 0px;
  }
}

#campaign-detail-content img {
  width: 100%;
  height: auto;
}

.sec-kontak .bg-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.sec-kontak .bg-container::after {
  content: "";
  display: block;
  height: 100%;
}

.sec-kontak .content-kontak {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.gallery-thumb {
  position: absolute;
}

.gallery-thumb .btn-danger {
  top: 10px;
  right: 10px;
}

.content-kontak .half {
  width: 50%;
}

@media (max-width: 768px) {
  .content-kontak .half {
    width: 100%;
  }
  .sec-kontak .bg-container {
    width: unset;
  }
}

/* new navbar */
.custom-navbar {
  width: 100%;
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  z-index: 1000;
  /* position: relative;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
}

.nav-container-2 {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  padding: 0.3125rem 0;
  text-decoration: none;
  width: 25%;
}
.nav-logo img {
  width: 40%;
}
.nav-toggle {
  display: none;
  padding: 0.25rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  background-color: transparent;
}

.nav-menu {
  display: flex;
  flex-grow: 1;
  align-items: center;
}

.nav-links-2 {
  display: flex;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.responsive {
    display: block;
  }
  .nav-logo img {
    width: 70%;
  }
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-menu-2 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 10rem;
  padding: 0.5rem 0;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown:hover .dropdown-menu-2 {
  display: block;
}
.federation-header {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.federation-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.federation-logo:hover {
  transform: scale(1.05);
}

.section-title {
  border-left: 2px solid var(--greenJap);
  padding-left: 15px;
  margin-bottom: 25px;
}

.company-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  background: white;
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.company-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.bg-light-gray {
  background-color: #f0f2f5;
}

.vision-mission {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.vision-mission-tab .nav-link {
  color: var(--secondary-color);
  border: none;
  border-radius: 0;
  padding: 15px 30px;
  font-weight: 500;
}

.vision-mission-tab .nav-link.active {
  color: var(--greenJap);
  background-color: transparent;
  border-bottom: 3px solid var(--greenJap);
}

.description-container {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

@media (max-width: 767.98px) {
  .federation-logo {
    width: 90px;
    height: 90px;
  }
}

.advantages-grid > .advantage-card:nth-child(3n + 1) .advantage-title {
  color: var(--merahJap);
}

.advantages-grid > .advantage-card:nth-child(3n + 2) .advantage-title {
  color: var(--greenJap);
}

.advantages-grid > .advantage-card:nth-child(3n) .advantage-title {
  color: var(--blueJap);
}
.gallery-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

/* For modal images */
#modalImage {
  max-height: 80vh;
  object-fit: contain;
}

/* Adjust spacing for mobile */
@media (max-width: 767.98px) {
  .gallery-img {
    height: 180px;
  }
}

.btn-outline-primary {
  color: var(--greenJap);
  border: 2px solid var(--greenJap);
  border-color: var(--greenJap);
}
.btn-outline-primary:hover {
  background-color: var(--greenJap);
  color: white;
}
.card-title {
  color: var(--greenJap);
}
#vision p {
  font-size: 1.4rem !important;
}
#mission p {
  font-size: 1.2rem !important;
}
a {
  color: var(--greenJap);
}

a:hover {
  color: rgba(var(--darkBlueJapRGB), 0.9);
}

.btn-darkBlue {
  background-color: var(--darkBlueJap);
  color: white;
  border: none;
}

.btn-darkBlue:hover {
  background-color: rgba(var(--darkBlueJapRGB), 0.9);
  color: white;
}
