body {
    font-family: 'Poppins', sans-serif !important;
    background-color: #FFF;
    color: #013757;
}

a{
  text-decoration: none;
}

footer{
  border-radius: 30px 30px 0px 0px;
}
footer .footer-header{
  background: linear-gradient(to right, #238ddb, #165180, #327eb1);
  padding: 40px 30px 40px 30px;
  border-radius: 20px;
  width: 80%;
  margin-top: -123px;
  margin-left: auto;
  margin-right: auto;
}

footer .footer-header img{
  filter: brightness(0) invert(1);
  width: 200px;
  margin-right: 20px;
}

footer ul{
  list-style: none;
  padding-left: 0;
}
footer h6{
  font-weight: 600;
  color: #FFF;
  margin-bottom: 30px;
}
footer ul li{
  margin-bottom: 7px;
}
footer ul li a{
  text-decoration: none;
  color: #FFF;
  font-size: 0.9rem;
}
footer .list-icon{
  display: flex;
}
footer .list-icon li{
  margin-right: 10px;
}
footer .list-icon li a{
  font-size: 1.5rem;
}
ul{
  list-style: none;
  padding-left: 0;
}

ul li a{
  text-decoration: none;
  font-size: 0.9rem;
}

.blank-image{
  filter: grayscale(1) !important;
  scale: 1 !important;
  width: 100%;
  opacity: 0.4;
}
.list-icon{
  display: flex;
}
.list-icon li{
  margin-right: 10px;
}
.list-icon li a{
  font-size: 1.5rem;
}

.about-us img{
  width: 100%;
  border-radius: 20px;
}

.box{
  border: 2px solid #e2e2e2;
  padding: 30px;
  border-radius: 30px;
}


.blog-box{
  background: #ffffff;
  border: 1px solid #16518038;
  border-radius: 20px 20px 20px 20px;
}

.blog-box img{
  border-radius: 20px 20px 0px 0px;
  max-height: 271px;
  object-fit: cover;
}

.blog-box .blog-description{
  padding: 1.5rem;
}
.blog-box .blog-description .label{    
  margin-bottom: 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.blog-box .blog-description .label .label-list{
  background: #ffb339;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 10pt;
  color: #165181;
  margin: 3px;
  font-weight: 600;
}
.blog-box .blog-description h5 {
    color: #165180;
    font-size: 16px;
}
.blog-box .blog-description p{
  color: #595959;
}


.blog2colomn-box{
  background: #ffffff;
  border: 1px solid #16518038;
  border-radius: 20px 20px 20px 20px;
}

.blog2colomn-box img{
  border-radius: 20px 20px 0px 0px;
}

.blog2colomn-box .blog2colomn-description{
  padding: 1.5rem;
}
.blog2colomn-box .blog2colomn-description .label{    
  margin-bottom: 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.blog2colomn-box .blog2colomn-description .label .label-list{
  background: #ffb339;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 9pt;
  color: #165181;
  margin: 3px;
  font-weight: 400;
}
.blog2colomn-box .blog2colomn-description h5{
  color: #165180;
}
.blog2colomn-box .blog2colomn-description p{
  color: #595959;
}

.bg-primary{
  background:#165180 !important;
}
.bg-primary-light{
  background:#e5f6fe !important;
}

.btn-primary{
  background: #165180;
  border: 1px solid #165180;
}

.btn-primary:hover{
  background: #237dc4;
  border: 1px solid #237dc4;
}

.btn-warning{
  background: #FFB339 !important;
}

.btn-outline-primary {
    color: #165180;
    border-color: #165180;
}
.btn-outline-primary:hover{
    color: #FFF !important;
    border-color: #165180;
    background-color: #165180;
}
.btn-outline-white {
    color: #ffffff !important;
    border-color: #f8f9fa;
}
.btn-outline-white:hover {
    color: #165180 !important;
    background-color: #f8f9fa;
    border-color: #165180;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: none;
  display: none;
  flex-direction: column;
  min-width: 160px;
  border: 0px;
  overflow: hidden;
  z-index: 100;
  box-shadow: unset;
  -webkit-transition: all ease .238s;
  -moz-transition: all ease .238s;
  transition: all ease .238s;
  border: 1px solid #00000042;
  padding: 0px;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-item{    
  background: #ffb339;
  padding: 0.6rem 2rem;
  padding-left: 0.8rem;
  font-weight: 500;
  color: #165181;
  border-bottom: 1px solid #0000004a;
}
.dropdown-item a{
  background: #ffb339;
}

.dropdown-menu a:hover {
  background: #165181;
  color: #FFF;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fit-content{
  width: fit-content !important;
}

.gallery {
  width: 100%;
}

.gallery .gallery-item{
  width: 300px; /* Atau persentase, misalnya 25% */
  margin-bottom: 10px;
  padding: 0px;
}
.gallery .gallery-item img{
  width: 100%;
  border-radius: 20px;
}

.gallery .gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #165180a3;
  filter: brightness(100%);
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.gallery .gallery-item:hover::before {
  opacity: 0; /* Gambar dan overlay menghilang saat hover */
}


.header-section-hero{
  height: 600px;
  background: #175282;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-position: center;
  background-size: cover;
  border-radius: 0px 0px 10% 10%;

}
.header-section-hero::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0e365784;
  filter: brightness(100%);
  z-index: 0;
  border-radius: 0px 0px 10% 10%;
}
.header-section-hero .header-title{
  z-index: 1;
}

.header-section{
  height: 400px;
  background: #175282;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-position: center;
  background-size: cover;
  border-radius: 0px 0px 70% 70%;
  
}
.header-section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #16508084;
  filter: brightness(100%);
  z-index: 0;
  border-radius: 0px 0px 30% 30%;
}
.header-section .header-title{
  z-index: 1;
}

.list-circle-warning {
  list-style: none; /* Hilangkan default numbering */
  counter-reset: my-counter;
  padding-left: 0;
}

.list-circle-warning li {
  counter-increment: my-counter;
  position: relative;
  padding-left: 4em; /* Spasi untuk nomor */
  margin-bottom: 1em;
}

.list-circle-warning li::before {
  content: counter(my-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: #ffb339;
  color: #165180;
  text-align: center;
  line-height: 3em;
  font-weight: bold;
}


.navbar {
  background-color: #FFF;
}
.navbar-light .navbar-nav .nav-link {
    color: #165180;
    font-weight: 600;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    color: #5cc2fd;
}
.navbar .navbar-brand .logo{
  
}
.navbar .navbar-brand .logo img{
  width: 200px;
}
.hero-section {
  height: 600px;
  position: relative;
}

.hero-section .swiper {
    height: 100%;
    border-radius: 30px 30px 0px 0px;
}

.hero-section .swiper-slide {
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
}
.hero-section .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #165180a3;
    filter: brightness(100%);
    z-index: -1;
}
.hero-section .swiper-slide .content {
    max-width: 900px;
}

.hero-section .swiper-pagination {
  position: absolute;
  left: 20px;             
  top: 55%;              
  transform: translateY(-50%); 
  display: flex;
  flex-direction: column;   
  gap: 10px;          
  z-index: 10;
  width: 10px;
  align-items: center;
}


.hero-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: white;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.hero-section .swiper-pagination-bullet-active {
  opacity: 1;
  width: 15px;
  height: 15px;
  background-color: #165180;
  border: 2px solid #FFF;
}


.jurnal {
    margin-top: -120px;
    padding: 30px 0;
    background: #e5f6fe !important;
}

.jurnal-box {
    width: 200px;
    height: 300px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    margin: auto;
    background-size: cover !important;
    background-position: center !important;

}

.jurnal-list-item {
  display: flex;
  margin-bottom: 20px;
  border: 2px solid #ffb339;
  border-radius: 15px;
  background: #ffffff;
  padding: 20px;
  position: relative;
}
.jurnal-list-item img{
    width: 200px;
    border-radius: 15px;
    margin-right: 13px;
    object-fit: cover;
    margin-top: -55px;
    height: 250px;
}
.jurnal-list-item .description{
}


.people-box{
  text-align: center;
}
.people-box .deskripsi{
  background: #165180;
  padding: 29px;
  border-radius: 0px 0px 23% 23%;
  position: relative;
  color: #FFF;
}
.people-box .deskripsi::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #dadada;
  filter: brightness(100%);
  z-index: -1;
  border-radius: 0px 0px 15% 15%;
}

/* Fullscreen Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Loader Animation (Simple Spinner) */
#preloader img {
  width: 30%;
  animation: pulse 2s infinite ease-in-out;
}

/* Animasi pulse */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* (Opsional) animasi spin */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


.service-box {
  background: #165180;
  color: #FFF;
  padding: 50px 20px 50px 20px;
  border-radius: 20px;
  height: 100%;
}
.service-box .service-box-icon i{
  font-size: 5rem;
  color: #5bc1fc;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  width: 10px;
  height: 10px;
  background-color: #165180;
  border: 2px solid #165180;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #165180;
}

.text-primary {
    --bs-text-opacity: 1;
    color: #165180 !important ;
}

.text-warning{
  color: #FFB339 !important;
}

.testimoni-list-item{    
  display: flex;
  margin-bottom: 20px;
  border: 1px solid #ffb339;
  border-radius: 15px;
  background: #165181;
  color: #FFF;
}
.testimoni-list-item img{
  width: 150px;
  height: auto;
  border-radius: 15px;
  margin-right: 13px;
  object-fit: cover
}
.testimoni-list-item .description{
  padding: 10px;
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2{
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #165180;
  font-weight: 600;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 68px;
  height: 5px;
  background: #ffc008;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.wrapper-warning-light{
  padding: 30px;
  border: 2px solid #ffb339;
  border-radius: 20px;
  background: aliceblue;
}

.writing-box{
  width: 100%;
  position: relative;
  height: 100%;
}
.writing-box img{
  width: 100%;
  height: 350px;
  object-fit: cover;
  background-position: center;
  border-radius: 20px;
}
.writing-box .description{
  position: absolute;
  width: 100%;
  color: #FFF;
  padding: 20px;
  bottom: 0;
  background: linear-gradient(to top, rgb(22 81 128) 39%, rgba(0, 0, 0, 0) 72%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 20px;
}

.writing-box .description p{
  font-size: 10pt;
}

.writing-main-box{
  width: 100%;
  min-height: 500px;
  position: relative;
  height: calc(100% - 20px);
}
.writing-main-box img{
  width: 100%;
  height: 350px;
  object-fit: cover;
  background-position: center;
  border-radius: 20px;
}
.writing-main-box .description{
  position: absolute;
  width: 100%;
  color: #FFF;
  padding: 20px;
  bottom: 0;
  background: linear-gradient(to top, rgb(22 81 128) 39%, rgba(0, 0, 0, 0) 72%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 20px;
}

.writing-list-item {
    display: flex;
    margin-bottom: 20px;
    border: 1px solid #ffb339;
    border-radius: 15px;
    background: #165181;
    color: #FFF;
    justify-content: start;
    align-items: center;
    padding: 5px;
    gap: 15px;
}
.writing-list-item img {
    width: 120px;
    max-height: 120px;
    border-radius: 5px;
    object-fit: cover;
    flex-shrink:0;
}
.writing-list-item .description{
  padding: 0px;
}
.writing-list-item .description h5 {
    font-size: 13px;
    color: #FFF;
    font-weight: 400;
    line-height: 15px;
}
.writing-list-item .description h5:hover {
    color: #ffb339;
}
.description .label{    
  margin-bottom: 2px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.description .label .label-list{
  background: #ffb339;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 8pt;
  color: #165181;
  margin: 3px;
  font-weight: 600;
}
.description p span{
  margin-right: 10px;
}
.writing-list-item .description h6{
  font-size: 12pt;
}
.writing-list-item .description p{
  font-size: 10pt;
  margin-bottom: 10px;
}

.testimoni-box {
  display: flex;
  margin-bottom: 20px;
  border: 1px solid #ffffff;
  border-radius: 15px;
  background: #efefef;
  color: #165180;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.testimoni-box img {    
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin-right: 13px;
  object-fit: cover;
  border: 8px solid #ffffff;
  margin-top: -55px;
}
.testimoni-box .description {    
  padding: 40px 40px 40px 40px;
}
q {
  quotes: "“" "”";
  font-style: italic;
  color: #165180;
  font-size: 10pt;
  position: relative;
}
q::before {
  content: open-quote;
  font-size: 4em;
  vertical-align: top;
  color: #ffb339;
  position: absolute;
  top: -30px;
  left: -23px;
}

q::after {
  content: close-quote;
  font-size: 3em;
  vertical-align: top;
  color: #ffb339;
  position: absolute;
  bottom: -21px;
  right: -15px;
}
.rating{
  color: #ffb339;
  font-size: 20pt;
}


:root {
    --swiper-navigation-size: 30px
}


@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: 1.5rem;
      padding-left: 1.5rem;
    }
}

@media (max-width: 768px) {
  .jurnal-box {
    width: 173px;
    height: 242px;
  }
}

@media (max-width: 576px) {
  .blog2colomn-box img {
      max-height: 195px !important;
  }
  .blog2colomn-box .blog2colomn-description {
      padding: 0.5rem;
  }
  .blog2colomn-box .blog2colomn-description h6 {
      font-size: 10pt;
  }
  .blog2colomn-box .blog2colomn-description a {
      font-size: 10pt;
  }
  
  .jurnal-list-item {
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
  .jurnal-list-item img{
      width: 160px;
      border-radius: 15px;
      margin-right: 13px;
      object-fit: cover;
      margin-bottom:30px;
  }
  .description .label .label-list {
      font-size: 7pt;
  }
  .lead {
      font-size: 1rem;
      font-weight: 300;
  }
  #preloader img {
    width: 50%;
  }
  .service-box {
      padding: 20px 10px 20px 10px;
  }
  .service-box h5 {
    font-size: 1rem;
  }
  .service-box p {    
    font-size: 0.8rem;
  }
  .service-box .service-box-icon i {
      font-size: 4rem;
  }
}