.full-screen {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0e3579;
  overflow: hidden;
  position: relative;
  z-index: 0;
}


.bg-jamurAccent {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 10%;
}
.bg-jamurAccent2 {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 10%;
}
.bg-jamurAccent2 img {
  width: 100%;
  height: auto;
  transform: scaleX(-1);
}

.bg-jamurAccent img {
  width: 100%;
  height: auto;
}


.full-screen .header {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 6rem;
}

.full-screen .header p {
  font-size: 24px;
  color: white;
  font-weight: 700;
}

.superscript {
  font-size: 0.5rem;
  font-weight: bold;
}

.superscript-right {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}


.text-card {
  font-size: 75px;
  line-height: 0.9;
  line-break: auto;
}

.text-card-description {
  font-size: 14px;
  line-height: 1.5;
  line-break: auto;
}

.parent {
  display: grid;
  padding-top: 3rem;
  padding-bottom: 3rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  width: 100%;
}

.card1 {
  grid-area: 1 / 1 / 2 / 2;
  border: white;
  border-radius: 1rem;
  border-style: solid;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
  gap: 10px;
  position: relative;
  z-index: 0;
  color: white;
  border-width: 2px;
  overflow: hidden;
  transition: transform 0.1s ease, background-color 0.3s, border-color 0.3s,
    scale 0.5s;
}
.accentLogoFirst {
  position: absolute;
  bottom: -4.5rem;
  opacity: 25%;
  right: 1rem;
  width: 40%;
  height: auto;
}

.accentLogoFirst svg {
  width: 100%;
  height: auto;
}

.card2 {
  grid-area: 1 / 2 / 2 / 3;
  border: white;
  border-radius: 1rem;
  border-style: solid;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
  gap: 10px;
  position: relative;
  z-index: 0;
  color: white;
  border-width: 2px;
  overflow: hidden;
  transition: transform 0.1s ease, background-color 0.3s, border-color 0.3s,
    scale 0.5s;
}
.card3 {
  grid-area: 1 / 3 / 2 / 4;
  border: white;
  border-radius: 1rem;
  border-style: solid;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
  gap: 10px;
  position: relative;
  z-index: 0;
  color: white;
  border-width: 2px;
  overflow: hidden;
  transition: transform 0.1s ease, background-color 0.3s, border-color 0.3s,
    scale 0.5s;
}

.card1:hover,
.card2:hover,
.card3:hover {
  background-color: #5B98B9;
  color: white;
  border: #AADBF6;
  border-radius: 1rem;
  border-style: solid;
  border-width: 2px;
  cursor: default;
}

.card1:hover .accentLogoFirst {
  display: flex;
}
.card2:hover .accentLogoFirst {
  display: flex;
}
.card3:hover .accentLogoFirst {
  display: flex;
}

.accentLogoFirst {
  display: none;
}

.logoFirst {
  width: 60px;
  height: 60px;
  padding-top: 0px;
  margin-top:-15px;
}

.logoFirstSecond {
  width: 60px;
  height: 60px;
  padding-top: 0px;
  margin-top:-15px;  
}

.carousel-inner {
  width: 100%;
  height: 450px; /* Atur sesuai kebutuhan */
  border-radius: 20px;
  overflow: hidden;
}

.carousel-item img {
  width: 100%; /* Pastikan gambar dalam carousel full width */
  height: 100%; /* Sesuaikan gambar dengan ukuran carousel */
  object-fit: cover; /* Menjaga aspek rasio gambar */
}

.carousel-inner {
  width: 100%;
  height: auto; /* Pastikan carousel menggunakan seluruh lebar */
}

.carousel {
  position: relative;
}

.slide{
  position: relative;
}

.btn-prev-carousel ,
.btn-next-carousel {
  background-color: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  font-size: 1.5rem;
  top: 50%;
  transform: translateY(-50%) scale(1.4);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-prev-carousel {
  left: -10%;
}

.btn-next-carousel {
  right: -10%;
}

/* SM */
@media (min-width: 640px) {
 
}

/* MD */
@media (max-width: 768px) {
  .full-screen {
    min-height: auto;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0e3579;
    overflow: hidden;
  }

  .full-screen .header {
    flex-direction: column;
    gap: 0;
    margin-bottom: 1rem;
  }

  .full-screen .header p {
    line-height: 1;
  }

  .parent {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 20px;
  }

  .card1 {
    grid-area: 1 / 1 / 2 / 2;
  }
  .card2 {
    grid-area: 2 / 1 / 3 / 2;
  }
  .card3 {
    grid-area: 3 / 1 / 4 / 2;
  }
}

/* TAB IPAD AIR */
@media (max-width: 1024px) {
  .full-screen {
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .parent {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 20px;
  }

  .card1 {
    grid-area: 1 / 1 / 2 / 2;
  }
  .card2 {
    grid-area: 2 / 1 / 3 / 2;
  }
  .card3 {
    grid-area: 3 / 1 / 4 / 2;
  }

  .btn-prev-carousel {
    left: 0%;
  }

  .btn-next-carousel {
    right: 0%;
  }

}

/* Media Queries untuk tampilan besar */
@media (min-width: 1024px) {
  .full-screen {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .carousel-inner {
    width: 100%;
    height: 450px;
  }
}

@media (min-width: 1536px) {
  .container {
    width: 100%;
  }
  
  .carousel-inner {
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
  }

}
