
  
  .card-info {
    /* background-color: #218f8f; */
    -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 30px -10px rgba(255, 255, 255, 0.1);
    text-align: left;
    padding: 20px;
    /* opacity: 0.5; */
    /* padding-left: 100px; */
    border-radius: 4px; }
    .card-info h3 {
      font-size: 18px;
      font-weight: bold; }
      .card-info h5 {
        font-size: 20px;
         }
         .card-info .btn{
            padding: 10px;
            border-radius: 20px;
            }
            .card-info a{
                color: red;
                font-weight: bold;
            }


  .card-info [class^="icon-"] {
    opacity: 0.5;
    position: absolute;
    right: 20px;
    top: 10px;
    margin-bottom: 30px;
    font-size: 60px;
    color: #ffffff; }

    .article {
      -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
      box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    }
    .article span{
        font-size: 10px;
        font-style: italic;
        color: rgb(110, 110, 110);
    }

    .floating-logo {
      position: fixed;
      bottom: 10px; 
      right: 20px;
      width: 60px; 
      height: 60px;
      z-index: 1000; /* Pastikan z-index tidak terlalu tinggi jika tidak diperlukan */
      transition: opacity 0.3s ease; 
      background-color: white;
      display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 5px;

    }
    
    .floating-logo span {
      font-size: 60px; /* Adjust size to fit within the container */
      color: #25D366;
    }
    
    @keyframes float {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0);
        }
    }
    
.card-service .custom-feature p {
   color: black;
}


/* Prevent background scroll when modal is open */
.modal-open {
    overflow: hidden;
}

/* Optional: Add blur effect to background when modal is open */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.527);
}

/* css modal */
/* .modal-content{
   background-color: #008B8B;
   color: white;
   position: fixed; 
   z-index: 1000; 
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   width: 80%; 
   max-width: 500px; 
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
   border-radius: 10px;

}

.modal-body {
  display: block;
  justify-content: center;
  align-items: center;
  flex: 1;
  text-align: center;
}

.btn-white {
    background-color: white;
}

.modal-footer {
    background-color: white;
} */

/* css modal */
.modal-content {
  background-color: #008B8B;
  color: white;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.modal-body{
  display: flex;
  flex: 1;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;
  text-align: center;
  gap: 1rem; 
}

.btn-white {
  background-color: white;
}

.modal-footer {
  background-color: white;
}

.navbarr {
    display: none; /* Navbar awalnya disembunyikan */
    position: fixed;
    top: 0;
    width: 100%;
    /* background-color: #333; */
    background-image: url('../img/bg-nav.webp');
    height:90px;
    padding: 10px;
    z-index: 1000;
}

/* CSS */
.responsive-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .responsive-table thead {
    background-color: #f0f0f0;
  }
  
  .responsive-table th, .responsive-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  .responsive-table th {
    font-weight: bold;
  }
  
  .responsive-table td img {
    width: 100px;
    /* height: 50px; */
    object-fit: cover;
    /* border-radius: 50%; */
  }
  
  .responsive-table td button {
    margin: 5px;
  }
  
  /* Responsive styles */
  @media only screen and (max-width: 768px) {
    .responsive-table {
      font-size: 14px;
    }
    .responsive-table th, .responsive-table td {
      padding: 5px;
    }
    .responsive-table td img {
      width: 30px;
      height: 30px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .responsive-table {
      font-size: 12px;
    }
    .responsive-table th, .responsive-table td {
      padding: 2px;
    }
    .responsive-table td img {
      width: 20px;
      height: 20px;
    }
  }



.preview-text {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Batasi teks menjadi 3 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; /* Menampilkan '...' di akhir teks yang terpotong */
  max-height: 5em; /* Set tinggi maksimum berdasarkan jumlah baris */
  line-height: 1.5em; /* Set tinggi baris */
}

.table-cell {
  height: 200px;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-title {
  color: #a51890;
  font-size: 25px;
}

card-login {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 50%;
  margin: 0 auto;
}


.admin-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 80%;
  max-width: 1000px;
  margin: auto;
}

.admin-card {
  background-color: #1e6d73;
  color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.admin-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  padding: 20px;
}

.admin-card-content {
  text-align: center;
  padding: 20px;
}

.admin-card h2 {
  font-size: 1.5em;
  color: #ffffff;
}

.admin-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .admin-dashboard {
      grid-template-columns: 1fr;
  }

  .admin-card h2 {
      font-size: 1.2em;
  }
}


.article-preview-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.article-preview-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.article-preview-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-preview-content {
  padding: 20px;
}

.article-preview-content h2 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
}

.article-preview-content p {
  font-size: 1em;
  color: #666;
  margin-bottom: 15px;
}

.article-preview-read-more {
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
  transition: color 0.2s ease;
}

.article-preview-read-more:hover {
  color: #a51890;
}

.article-preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .article-preview-content h2 {
      font-size: 1.2em;
  }

  .article-preview-content p {
      font-size: 0.9em;
  }
}

.logo-wt {
  position: relative;
  /* min-height: 100px; */
  /* background-image:  url('../img/logo-wt.png');
  background-size: contain;
  background-position: center; 
  background-repeat: no-repeat; */
  padding: 20px;  
  z-index: 1;
}

.logo-wt::before {
  content: ""; 
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/logo-wt.png'); 
  background-size: contain; 
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3; 
  z-index: -1; 
  border-radius: 10px;
}


/* Media Queries untuk Responsivitas */
@media (max-width: 992px) {
  .logo-wt {
    background-position: top; 
    min-height: 250px;
    padding: 15px; 
  }
}

@media (max-width: 768px) {
  .logo-wt {
    background-size: contain; 
    background-position: top;
    min-height: 200px; 
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .logo-wt {
    background-size: contain; 
    min-height: 150px;
    padding: 8px; 
    border-radius: 5px;
  }
}

.custom-feature {
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  text-align: center;
  padding: 20px;
  border-radius: 4px; }
  .custom-feature h3 {
    font-size: 20px;
    font-weight: bold; }
  .custom-feature p {
    font-size: 16px; }
  .custom-feature *:last-child {
    margin-bottom: 0; }
  .custom-feature [class^="icon-"] {
    display: block;
    margin-bottom: 10px;
    font-size: 50px;
    color: #a51890 }

        /* Responsif untuk tampilan tablet */
    @media (max-width: 768px) {
      .custom-feature h3 {
        font-size: 23px;
        font-weight: bold; }
        .custom-feature p {
          font-size: 18px; }
    }

    /* Responsif untuk tampilan smartphone */
    @media (max-width: 576px) {
      .custom-feature h3 {
        font-size: 23px;
        font-weight: bold; }
        .custom-feature p {
          font-size: 18px; }
    }

    .custom-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .custom-grid .col-lg-3:nth-child(4),
    .custom-grid .col-lg-3:nth-child(5) {
      margin-top: 20px; /* Memberi jarak ke bawah */
    }

    .heading {
      font-size: 25px;
      font-weight: 600;
    }

    .team{
      -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
      box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
      /* background-color:white; */
    }

    .team h2 {
      font-size: 16px; }
    
    .team .pic {
      margin-bottom: 30px; }
      .team .pic img {
        border-radius: 4px; }
    
    .team .position {
      display: block;
      margin-bottom: 20px;
      font-size: 14px; }

    .slider-team-wrap .owl-dots {
      position: absolutre;
      margin-top: 20px; }
    
    .slider-team-wrap .slider-nav a {
      display: inline-block;
      width: 40px;
      height: 40px;
      position: relative;
      background: #a51890;
      border-radius: 4px;
      position: relative;
      top: 0;
      -webkit-transition: .2s all ease;
      -o-transition: .2s all ease;
      transition: .2s all ease; }
      .slider-team-wrap .slider-nav a i {
        color: #ffffff;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
      .slider-team-wrap .slider-nav a:hover {
        background: #ffffff;
        top: -2px; }
        .slider-team-wrap .slider-nav a:hover i {
          color: #0f2394; }
    
    .more {
      position: relative;
      padding-right: 30px;
      display: inline-block;
      font-style: italic;
      text-decoration: underline; }
      .more i {
        position: absolute;
        top: 50%;
        right: 0;
        font-size: 12px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background: transparent;
        color: #ffffff;
        line-height: 1.6;
        text-align: center;
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease; }
      .more:hover {
        color: #ffffff; }
        .more:hover span {
          background: #a51890; }
      .more.dark {
        color: #3a365f; }
        .more.dark > span {
          color: #000000; }
        .more.dark:hover {
          color: #a51890; }
          .more.dark:hover span {
            color: #ffffff;
            background: #a51890; }

.site-section-end {
  background-color: #a51890; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  padding: 20px; 
  box-sizing: border-box;
  flex-direction: column; 
}

.site-section-end h2 {
  color: #ffffff;
  text-align: center; 
  font-size: 2rem; 
  margin: 0; 
}

.site-section-end p {
  color: #ffffff; 
  text-align: center; 
  /* font-size: 1rem;  */
  margin: 10px 0 0; 
}

.site-section-end a {
  font-size: 1rem;
}

.site-section-youtube {
  background-color: #f8f9fa; /* Warna latar belakang yang lembut */
  padding: 50px 0;
}

.container-y {
  max-width: 1200px; /* Lebar maksimum untuk kontainer */
  margin: auto; /* Pusatkan kontainer */
}

.section-title {
  font-size: 2.5rem; /* Ukuran font untuk judul */
  /* color: #333;  */
}

.youtube {
  display: flex;
  flex-wrap: wrap; /* Untuk baris video yang responsif */
  justify-content: center; /* Pusatkan video */
}

.youtube-vid {
  flex: 1 1 300px; /* Membuat video fleksibel */
  margin: 15px; /* Jarak antar video */
  max-width: 100%; /* Pastikan tidak lebih lebar dari wadah */
}

.youtube-vid iframe {
  width: 100%; /* Video mengisi lebar wadah */
  height: auto; /* Tinggi otomatis untuk menjaga aspek rasio */
}

.btn-watch-more {
  display: inline-block;
  margin-top: 30px; /* Jarak atas untuk tombol */
  padding: 10px 20px; /* Ruang dalam tombol */
  font-size: 1.2rem; /* Ukuran font tombol */
  color: #fff; /* Warna teks tombol */
  background-color: #a51890; 
  border: none; /* Hapus border */
  border-radius: 50px; /* Sudut tombol melengkung */
  text-decoration: none; /* Hapus garis bawah */
  text-align: center; /* Pusatkan teks */
}

.btn-watch-more i {
color: white;
font-size: 1.5rem;
}

.btn-watch-more:hover {
  background-color: #a51890; /* Warna tombol saat hover */
}

.btn-container {
  text-align: center; /* Pusatkan tombol dalam wadah */
  margin-top: 10px; /* Jarak atas untuk wadah tombol */
}

.text-desc {
  text-align: justify;
}

.btn-trans {
  border-color: white;
  border-width: medium;
  border-radius: 50px;
  color: white;
}

.btn-trans-blue {
  border-color: #a51890;
  border-width:thin;
  border-radius: 50px;
  color: #a51890;
}

.btn-review {
  border-color: #a51890;
  border-width:thin;
  border-radius: 10px;
  color: #a51890;
  font-size: large;
}

.hero-inner {
  padding: 9rem 0 7rem 0;
  margin-bottom: auto;
  background: #1A374D; }

  .imgAbout{
    background-color: #a51890;
    /* color: #000; */
    /* background-image: url('../img/gal_1.jpg'); */
    top: 0;
    left: 0;
    right: 0;
    z-index: 8;
    position: fixed;

  }

  .floating-block {
    background: #ffffff;
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
    width: 100%;
    padding: 20px;
    top: 20px; }
    .floating-block h2 {
      font-size: 16px;
      font-weight: 700;
      margin: 0; }
    .floating-block h3 {
      font-size: 13px; 
  }

.service-site{
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
  padding: 20px;
}
.service-site .site1{
  background: rgb(215, 229, 255);
  background: linear-gradient(90deg, rgba(215, 229, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}
.service-site .site2{
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(215,229,255,1) 100%);
}

@media (max-width: 768px) {
  .responsive-bg {
      padding: 15px; /* Kurangi padding pada layar sedang */
      box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
  }
}

/* Responsif untuk layar kecil atau smartphone */
@media (max-width: 576px) {
  .responsive-bg {
      padding: 10px; /* Lebih kecil padding untuk layar kecil */
      box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
  }
}

.service-img img {
  /* background: url("../img/gal_1.jpg") no-repeat center center; */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  max-height: 400px;
  width: auto;
  align-items: center;
  margin-top: 20px;
  }

  @media (max-width: 768px) {
    .service-img img{
      height: 300px !important;
        /* background: url("../img/service-mobile.jpg") no-repeat center center; */
        background-size: cover;
    }}
  @media (max-width: 991.98px) {
    .service-img img {
      height: 300px !important;
      margin-bottom: 30px; } }

@media (max-width: 991.98px) {
  .counter-wrap {
    margin-bottom: 30px; } 
  
}


  /* Styling for the list group */
  .custom-list-group .list-group-item {
    background-color: #ffffff; /* White background */
    border: none;
    padding-left: 20px; /* Adding padding for the left border */
    position: relative;
    transition: background-color 0.3s;
}

.custom-list-group .list-group-item:hover {
    background-color: #f8f9fa; /* Light background on hover */
}

/* Left border line */
.custom-list-group .list-group-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: #a51890; /* Primary color */
}

/* Text styling */
.custom-list-group .list-group-item h5 {
    color: #a51890; /* Primary color for heading */
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
}

.custom-list-group .list-group-item p {
    color: #6c757d; /* Secondary color for description text */
    margin-bottom: 0;
    font-size: 12px;
}


/* Left border line */
.custom-list-group-brance .list-group-item-brance::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50px;
  bottom: 50px;
  width: 5px;
  background-color: #a51890; /* Primary color */
}
/* Text styling */
.custom-list-group-brance .list-group-item-brance h5 {
  color: #a51890; /* Primary color for heading */
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: bold;
}

.custom-list-group-brance .list-group-item-brance p {
  color: #6c757d; /* Secondary color for description text */
  margin-bottom: 0;
  font-size: 12px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-list-group .list-group-item {
        padding: 15px;
    }
}

.breadcrumb {
  background-color: transparent;
  align-items: center;
  justify-content: center;
}

  .full-width-image {
    width: 100vw; /* Lebar penuh viewport */
    height: 40vh; /* Tinggi yang tetap */
    overflow: hidden; /* Potong bagian yang melampaui batas */ 
  }
  
  .full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Menjaga proporsi gambar */
    object-position: center; /* Menempatkan gambar di tengah */
    display: block; /* Menghapus spasi bawah default gambar */
  }
  /* Responsif untuk tampilan tablet */
  @media (max-width: 768px) {
    .full-width-image {
        height: 30vh; /* Menurunkan tinggi untuk tampilan tablet */
    }
  }

  /* Responsif untuk tampilan smartphone */
  @media (max-width: 576px) {
    .full-width-image {
        height: 30vh; /* Menurunkan tinggi untuk tampilan smartphone */
    }
  }

.detail-brance h1{
  /* font-size: 30px; */
  align-items: center;
}

  /* Responsif untuk tampilan tablet */
  @media (max-width: 768px) {
    .detail-brance h1 {
      font-size: 30px;
    }
  }

  /* Responsif untuk tampilan smartphone */
  @media (max-width: 576px) {
    .detail-brance h1 {
      font-size: 25px;
    }
  }

.brance-end {
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
}

/* Membuat map-container fleksibel */
.map-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%; /* Lebar peta mengikuti lebar kolom */
  height: 100%; /* Menyesuaikan tinggi kolom */
  max-width: 600px; /* Membatasi lebar peta di layar besar */
  max-height: 420px; /* Membatasi tinggi peta */
}

/* Menjaga agar konten di dalam kolom dan map responsif di layar kecil */
@media (max-width: 768px) {
  .col-lg-6 {
      flex: 0 0 100%; /* Kolom akan mengambil lebar penuh pada tablet dan mobile */
  }

  .map-container iframe {
      height: 250px; /* Mengurangi tinggi peta pada layar kecil */
      max-width: 100%; /* Mengatur lebar peta agar 100% dari kolom */
  }
}

.service24{
  display: flex;
  flex-direction: column;
  border-left: 5px solid #a51890;
  margin-left: 50px;
}

.info  {
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
   }

.info .info-icon{
  font-size: 24px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  position: relative;
  color: #0d1861;
  background-color: #ffffff; }
  .info .info-icon i {
    position: absolute;
    font-size: 40px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .text-icon p {
    color: #24252a;
    text-align: left;
    font-size: 12px;
    align-items: center;
    padding-left: 30px;
    align-items: center;
   }


  @media (max-width: 768px) {
    .info {
      /* justify-content: center;  */
      flex-direction: row;
    } /* Ikon dan teks tetap sejajar di layar kecil */
    .info .info-icon i {
        font-size: 40px;
      }

  .info-icon {
      font-size: 20px; /* Sesuaikan ukuran ikon di layar kecil */
  }

  .text-icon p {
      font-size: 16px; /* Sesuaikan ukuran teks di layar kecil */
  }

  @media (max-width: 576px) {
    .info {
      /* justify-content: center; */
      flex-direction: row; /* Ikon dan teks tetap sejajar di layar kecil */
  }

  .info-icon {
      font-size: 20px; /* Sesuaikan ukuran ikon di layar kecil */
  }

  .text-icon p {
      font-size: 14px; /* Sesuaikan ukuran teks di layar kecil */
  }
  .info .info-icon i {
    font-size: 50px;
  }
}}

.gal-item {
  display: block;
  margin-bottom: 8px; }
  .gal-item img {
    border-radius: 4px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    opacity: 1; }
  .gal-item:hover img {
    opacity: .5; }

    .custom-feature img {
      margin-bottom: 30px;
      border-radius: 4px; }

.site-section3 {
  background-color:  #a51890;
}


.about_section {
  background-color: #a51890;
  color: #ffffff;
  border-radius: 250px 0 250px 0;
}

.about_section img {
  border-radius: 250px 0 250px 0;
}


.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box {
  position: relative;
}

.about_section .img-box img {
  width: 100%;
  border-radius: 220px 0 220px 0;
}

/* .about_section .detail-box p {
  margin-top: 15px;
} */

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #f8842b;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #f8842b;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
  

.layout_padding {
  padding: 90px 0;
}

.layout_margin {
  margin: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
}

.heading_container h2 span {
  color: #7335b7;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.me-4 {
  margin-right: 1.5rem !important;
}
.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;}

  .navbar-logo {
    max-width: 60px; /* Menentukan lebar maksimum gambar */
    height: auto;     /* Sesuaikan tinggi secara otomatis */
    border-radius: 50%;
  }
  @media (max-width: 768px) {
    .navbar-logo {
      max-width: 50px; /* Lebar gambar di mobile */
      height: auto;    /* Sesuaikan tinggi secara otomatis */
    }
  }



.app {
  background-color: white;
   border-radius: 20px;
}
@media (max-width: 768px) {
  .app {
    color: rgb(255, 255, 255);
    font-weight: 400;
    background-color:  #97268f;
    padding: 10px;
    border-radius: 20px;
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    justify-content: center;
    align-items: center;
  }}
