/********** Template CSS **********/
:root {
    /*--primary: #025ce3;*/
    /*--secondary: #9ac2fe;*/
    --primary:#0e0a5e !important;
    --secondary:#1c13b9 !important;
    --light: #F7F8FC !important;
    --dark: #111111 !important;
    --blue:#0d6efd !important;
}

#brand-image{
    color: var(--primary);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background-color: var(--secondary);
    transition: opacity 0.15s ease;
    color: white;
}
.back-to-top:hover {
    background-color: v#655dee;
    color: white;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-icon {
 background: linear-gradient(to bottom, transparent 10%, gray 100%)
  /* background-image: url(../img/bg-01.png); 
   background-size: cover;  
   background-position: center center; 
   background-repeat: no-repeat; */
}

.bg-contact {
    position: relative;
    background-image: url(../img/bg-contact.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh; /* Pastikan ini diatur sesuai kebutuhan */
}

.bg-contact-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Opacity untuk latar belakang */
    z-index: 0; /* Pastikan overlay berada di belakang konten */
}

/* Konten yang ada di dalam .bg-contact harus memiliki z-index yang lebih tinggi dari overlay */
.bg-contact .content {
    position: relative;
    z-index: 1; /* Supaya konten terlihat di atas overlay */
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn-custom{
    border-radius: 10px;
}
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 10px 20px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--blue);
    /*    background-color: #e6f0ff;*/
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
    border-radius: 3rem;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 5%; /* Posisikan di tengah secara vertikal */
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* Supaya tidak mengganggu klik item */
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  pointer-events: auto; /* Aktifkan pointer pada tombol */
  background-color: var(--primary); /* Tambahkan latar belakang jika diinginkan */
  color: #fff; /* Warna teks/ikon */
  border-radius: 50%; /* Buat tombol berbentuk lingkaran */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  cursor: pointer;
}

.owl-carousel .owl-nav .owl-prev {
  left: -80px; /* Sesuaikan jarak dari sisi kiri */

}

.owl-carousel .owl-nav .owl-next {
  right: -80px; /* Sesuaikan jarak dari sisi kanan */
}




.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/carousel-1.jpg) top right no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}



/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
}


/*** Product ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item img {
    transition: .5s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item small a:hover {
    color: var(--primary) !important;
}


/*** Testimonial ***/
.testimonial-carousel{
    width: 80%;
}
.testimonial-carousel .owl-item .testimonial-item img {
    width: 30px;
    height: auto;
    transition: transform 0.3s ease; /* Animasi saat berubah */
}
.testimonial-carousel .owl-item.center .testimonial-item img {
    transform: scale(1.5); 
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
    margin-right: 0;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    bottom: 0;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--blue) !important;
    transform: scale(1.2); 
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: var(--primary);
    border-radius: 3rem;
    font-size: 30px;
    transition: .5s;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;

}

.footer .copyright {
    margin-top: 3.5rem;
    padding: 25px 0 ;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    bottom: 0;
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

#inner-carousel {
    max-width: 600px; /* Lebar maksimum Carousel 2 */
    background-color: transparent; /* Latar belakang semi-transparan */
    border-radius: 10px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2); /* Bayangan */
    padding: 0; /* Ruang dalam */
    bottom: 0;
}
#inner-carousel .active{ 
    /*background-color: red;*/
}

#inner-carousel .carousel-item img {
    max-height: 120px; /* Batasi tinggi gambar */
    object-fit: cover; /* Sesuaikan proporsi gambar */
}

#inner-carousel .carousel-item {
    display: flex;
    justify-content: center; 
    align-items: center;
}
.home{
    padding-top: 5rem;
}
.loker{
    padding-top: 5rem;
}
.applicant{
    padding-top: 5rem;
}

.loker-list{
    margin-top: 6.5rem;
    padding: 0 35px;
    margin-bottom: 3rem;

}

.card-custom {
    border-radius: 25px; /* Sesuaikan nilai untuk melengkungkan sudut */
    overflow: hidden;    /* Pastikan konten di dalam card, termasuk gambar, mengikuti bentuk rounded */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Opsional: Tambahkan shadow untuk efek estetis */
    transition: transform 0.3s ease;
}

.card-custom:hover {
    transform: scale(1.04); /* Perbesar ukuran elemen card */
}

.rounded-15{
    border-radius: 25px;
}

.carousel-indicators{
    bottom: -4rem;
    margin-bottom: 2rem;
}
.carousel-indicators [data-bs-target] {
    width: 12px; /* Lebar dot */
    height: 12px; /* Tinggi dot */
    border-radius: 50%; /* Membuat tombol berbentuk bulat */
    background-color: #999; /* Warna default dot */
    margin: 0 5px; /* Jarak antar dot */
    border: 2px solid transparent; /* Tambahkan border untuk styling */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Animasi saat berubah */
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--primary); /* Warna dot aktif */
    transform: scale(1.2); /* Perbesar dot aktif */
    border: 2px solid var(--secondary); /* Border dot aktif */
}


.custom-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    margin: 20px 0;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    padding: 0 150px;
}

.step {
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 1;
}

.step .step-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ddd;
    color: #fff;
    font-weight: bold;
    position: relative;
}

.step.active .step-circle {
    background-color: #0d6efd;
}

.step.completed .step-circle {
    background-color: #28a745;
}

.step .step-label {
    margin-top: 5px;
    font-size: 14px;

}

.step-bar {
    height: 4px;
    background-color: #ddd;
    flex: 1;
    margin-top: 18px;
    z-index: 0;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;

}

.step-bar.active {
    background-color: #0d6efd;

}
.step.active .step-label {
  color: #0d6efd;
}
.form-step h3 {
 color: #0d6efd; 
}
/* Styling for active steps */
.step.completed + .step-bar {
    background-color: #28a745;
}
.step.completed .step-label{
    font-weight: bold;
    color: #28a745;
}
/* Add space for connecting lines */
.step-indicator .step-bar {
    /*    margin-top: -28px;*/
}
.step-buttons {
    display: flex;
    justify-content: center; /* Tombol berada di tengah */
    gap: 10px;
}
.step-buttons .btn {
    border-radius: 10px;
}

/* Tombol Next dan Previous di kanan */
.step-buttons-right {
    display: flex;
    justify-content: flex-end; 
    gap: 10px;
}

.appinput{
    border-radius: 10px;
}

.select2-container .select2-selection--single {
    height: 38px;
}

.custom-group{
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
    text-align: center;
    white-space: nowrap;
    border-radius: 10px;
}

.input-group-text-custom {
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #555;
  white-space: nowrap;
  border: 1px solid #ced4da;
  border-radius: 10px;
}

.input-group-custom{
 border-top-right-radius: 0; border-bottom-right-radius: 0;
}
.cstm{
    border-top-left-radius: 0; border-bottom-left-radius: 0;

}
.cstm-focus {
  color: #555;
  border-color: #9edc8a;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(28, 118, 253, 0.25);
}
.custom-swal-popup {
    width: 400px; /* Atur lebar sesuai kebutuhan */
    height: auto; /* Atur tinggi jika diperlukan */
    font-size: 14px; /* Atur ukuran font */
}

.custom-radio-group {
  display: flex;
  gap: 0.8rem;
  margin-top: -3px;
  margin-bottom: 10px;
}


/* Hilangkan tampilan default radio button */
.custom-radio input[type="radio"] {
    display: none;
}


/* Tampilan dasar untuk radio button */
.custom-radio {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 24px;
    gap: 8px;
}

/* Lingkaran untuk radio button */
.custom-radio .radiomark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 5px;
    border: 0.5px solid #000;
    transition: background-color 0.3s, border-color 0.3s;
}

/* Tampilan saat radio button dicentang */
.custom-radio input[type="radio"]:checked + .radiomark {
    background-color: #3585fd;
    border-color: #4caf50;
}

/* Lingkaran kecil di tengah untuk menandakan pilihan */
.custom-radio .radiomark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Tampilkan lingkaran kecil saat radio button dicentang */
.custom-radio input[type="radio"]:checked + .radiomark::after {
    display: block;
}

.custom-radio .radiomark:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}


.label-group {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* Hilangkan tampilan default checkbox */
.custom-checkbox input[type="checkbox"] {
    display: none;
}

/* Tampilan dasar untuk checkbox */
.custom-checkbox {
    position: relative;
    display: inline-block;
    cursor: pointer;
    line-height: 24px;
    margin: 0 20px;
    padding: 0 30px;
}

/* Kotak untuk checkbox */
.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 5px; /* Opsional, untuk kotak dengan sudut melengkung */
    border: 0.5px solid #000;

}

/* Tampilan saat checkbox dicentang */
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #4caf50; /* Ganti warna sesuai kebutuhan */
    border-color: #4caf50;
}

/* Ikon centang */
.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 10px;
    top: 3px;
    width: 6px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Tampilkan centang saat dicentang */
.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    display: block;
}

.select2-container.is-invalid .select2-selection {
  border: 1px solid #dc3545; /* Warna merah untuk invalid */
  border-radius: 0.375rem;
}

.select2-container.is-valid .select2-selection {
  border: 1px solid #198754; /* Warna hijau untuk valid */
  border-radius: 0.375rem;
}
.datepicker .datepicker-dropdown .dropdown-menu{
    background-color: red;
}

.calender {
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24' fill='%23cccccc'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5a3 3 0 00-3 3v13a3 3 0 003 3h14a3 3 0 003-3V7a3 3 0 00-3-3zm0 16H5V10h14zM5 8V7h14v1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.list-group-item{
  border: 0px solid rgba(0, 0, 0, 0.05);
}
.search-bar {
  min-width: 360px;
  padding: 0 20px;
}
.search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;

}

.search-form input{
    border-radius: 15px;
}

.accordion-button p {
    margin-bottom: auto; /* Sesuaikan dengan kebutuhan */
}
.accordion-body p {
    margin-bottom: 5px; /* Sesuaikan dengan kebutuhan */
}

/* Mengubah background seluruh kalender */
.datepicker {
    background-color: #66b8ff; /* Warna biru muda */
    border-radius: 10px;
}

/* Mengubah warna tanggal yang dipilih */
.datepicker table tr td.active,
.datepicker table tr td.active:hover {
    background-color: #007bff !important; /* Warna biru */
    color: #fff !important; /* Warna teks putih */
}

/* Mengubah warna hover tanggal */
.datepicker table tr td:hover {
    background-color: #e9ecef !important; /* Warna abu muda */
    color: #000 !important; /* Warna teks hitam */
}

/* Mengubah warna tanggal hari ini */
.datepicker table tr td.today,
.datepicker table tr td.today:hover {
    background-color: #ffeb3b !important; /* Warna kuning */
    color: #000 !important; /* Warna teks hitam */
}

table tr td .custom-checkbox {
    margin: 0 0;    
}


@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }


}



@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--light);
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        margin-left: 5px;
        width: 98.5%;

    }
    .step-indicator {
        padding: 0 5px;
        margin-bottom: 5px;
    }

    .step .step-circle {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .step .step-label {
     font-size: 10px;
     word-wrap: break-word; /* Memastikan kata panjang terputus */
     white-space: normal; /* Mengizinkan pembungkusan teks */
     max-width: 80px; /* Batas lebar untuk teks */
     text-align: center; /* Menjaga teks tetap rata tengah */
     display: flex; /* Menjadikan elemen flex container */
     align-items: center; /* Pusatkan secara vertikal */
     justify-content: center; /* Pusatkan secara horizontal */
     height: 40px; /* Tambahkan jika Anda ingin tinggi yang konsisten */
 }
 .shared-font #mapicon #comname #mailicon #mail {
    font-size: 24px !important;
}

}

@media (max-width: 768px) {

    #header-carousel .carousel-item {
        position: relative;
        min-height: 430px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    #peluang-karir .container{
        padding-bottom: 8.3vh;
    }

    .testimonial-carousel{
        width: 100%;
    }
    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        width: 2rem;
        height: 2rem;
        font-size: 12px;

    }
    .testimonial-carousel .owl-item .testimonial-item img {
        width: 20px;
        height: auto;
        transition: transform 0.3s ease; 
        transform: scale(1); 
    }
    .testimonial-carousel .item {
        width: 250px; 
    }
    .testimonial-carousel .owl-item.center .testimonial-item * {
        color: blue !important;
        transform: scale(1.05); 
    }
    .testimonial-carousel .owl-item.center .testimonial-item img {
        transition: transform 0.3s ease; 
        transform: scale(1.5); 
    }
    
    .owl-carousel .owl-nav .owl-prev {
        left: 0; /* Sesuaikan jarak dari sisi kiri */
    }

    .owl-carousel .owl-nav .owl-next {
        right: 0; /* Sesuaikan jarak dari sisi kanan */
    }

    #brand-image{
        display: none;
    }
    .dropdown-item:hover,
    .dropdown-item:focus {
        margin-left: 5px;
        width: 97%;

    }



    .carousel-indicators [data-bs-target] {
        width: 9px; /* Lebar dot */
        height: 9px; /* Tinggi dot */

    }

    .carousel-indicators [data-bs-target].active {
        transform: scale(1.1); /* Perbesar dot aktif */
        border: 0.5px solid var(--secondary); /* Border dot aktif */
    }
    .carousel-indicators{
        bottom: -3rem;

    }
    .step-indicator {
        padding: 0 5px;
        margin-bottom: 5px;
    }

    .step .step-circle {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .step .step-label {
     font-size: 10px;
     word-wrap: break-word; /* Memastikan kata panjang terputus */
     white-space: normal; /* Mengizinkan pembungkusan teks */
     max-width: 80px; /* Batas lebar untuk teks */
     text-align: center; /* Menjaga teks tetap rata tengah */
     display: flex; /* Menjadikan elemen flex container */
     align-items: center; /* Pusatkan secara vertikal */
     justify-content: center; /* Pusatkan secara horizontal */
     height: 40px; /* Tambahkan jika Anda ingin tinggi yang konsisten */
 }

 h3{
    font-size: 16px;
}

.step-bar {
    height: 2px;
    background-color: #ddd;
    flex: 1;
    margin-top: 1px;
    z-index: 0;
}
.footer{
    font-size: 12px;
}
.footer img{
    width: 50%;
}
.shared-font {
    font-size: 20px !important;
}
}
@media (max-width: 750px) {
    .navbar-toggler {
      padding: 0.3rem 0.5rem;
      font-size: 0.8rem;
      line-height: 1;
      background-color: transparent;
      border: 1px solid transparent;
      border-radius: 0;
      transition: box-shadow 0.15s ease-in-out;
  }
  #header-carousel .carousel-item {
    min-height: 396px; /* Tinggi minimum untuk max-width 550px */
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
}
.shared-font {
    font-size: 18px !important;
}
}

.wd-100 {
    width: 100% !important;
}

@media (max-width: 700px) {
    #header-carousel .carousel-item {
        min-height: 368px; /* Tinggi minimum untuk max-width 550px */
    }
    .wd-100{
        width: 88% !important;
    }

}
@media (max-width: 650px) {
    #header-carousel .carousel-item {
        min-height: 352px; /* Tinggi minimum untuk max-width 550px */
    }
    .card-custom {
        border-radius: 20px; 
    }

    .loker-list{
        margin-top: 0.8rem;
        padding: 0 ;
        margin-bottom: 1.8rem;

    }
    .loker-list .card-item{
        padding: 0.3rem !important;

    }
    .card-custom:hover {
        transform: scale(1.03); /* Perbesar ukuran elemen card */
    }
    .shared-font {
        font-size: 16px !important;
    }

}
@media (max-width: 600px) {
    #header-carousel .carousel-item {
        min-height: 326px; /* Tinggi minimum untuk max-width 550px */
    }
    #peluang-karir .container{
        padding-bottom: 15.5vh;
    }


}
@media (max-width: 575px) {
    #header-carousel .carousel-item {
        min-height: 318px; /* Tinggi minimum untuk max-width 550px */
    }  
    .shared-font {
        font-size: 14px !important;
    }  
}
@media (max-width: 550px) {
    #header-carousel .carousel-item {
        min-height: 304px; /* Tinggi minimum untuk max-width 550px */
    }    
}
@media (max-width: 525px) {
    #header-carousel .carousel-item {
        min-height: 295px; /* Tinggi minimum untuk max-width 550px */
    }
    
}
@media (max-width: 500px) {
    #header-carousel .carousel-item {
        min-height: 276px; /* Tinggi minimum untuk max-width 450px */
    }
    .testimonial-carousel .owl-item .testimonial-item * {
        transform: scale(0.8); 
    }
    .testimonial-carousel .owl-item.center .testimonial-item * {
        transform: scale(0.9); 
    }
    #peluang-karir .container{
        padding-bottom: 19.5vh;
    }

}
@media (max-width: 490px) {
    #header-carousel .carousel-item {
        min-height: 271px; /* Tinggi minimum untuk max-width 450px */
    }

}
@media (max-width: 475px) {
    #header-carousel .carousel-item {
        min-height: 264px; /* Tinggi minimum untuk max-width 450px */
    }

}

@media (max-width: 465px) {
    #header-carousel .carousel-item {
        min-height: 257px; /* Tinggi minimum untuk max-width 450px */
    }
}
/* Untuk layar dengan max-width 450px */
@media (max-width: 450px) {
    h1{
        font-size: 20px;
    }
    #header-carousel .carousel-item {
        min-height: 253px;
    }
    #peluang-karir .container{
        padding-bottom: 21.5vh;
    }
    h3,
    .shared-font {
        font-size: 12px !important;
    }

    .shared-font {
        font-size: 12px !important;
    }



}


/* Tambahkan breakpoint lain jika diperlukan */
@media (max-width: 384px) {
    #header-carousel .carousel-item {
        min-height: 210px; /* Contoh tinggi minimum untuk max-width 350px */
    }
    
    h3,
    .shared-font {
        font-size: 8px !important;
    }

    .shared-font {
        font-size: 9px !important;
    }

    .wd-100{
        width: 89% !important;
    }

}


@media (max-width: 450px) {
  .fs-1 { font-size: 1.35rem !important; }
  .fs-2 { font-size: 1.25rem !important; }
  .fs-3 { font-size: 1rem !important; }
  .fs-4 { font-size: 0.55rem !important; }
  .fs-5 { font-size: 0.55rem !important; }
  
  #footer h3,h4{
    font-size: 0.7rem !important;
}
}


@media (max-width: 576px) {
  .fs-1 { font-size: 1.35rem !important; }
  .fs-2 { font-size: 1.25rem !important; }
  .fs-3 { font-size: 1rem !important; }
  .fs-4 { font-size: 0.65rem !important; }
  .fs-5 { font-size: 0.55rem !important; }
  
  #footer h3,h4{
    font-size: 0.7rem !important;
}
}



/* Tablet (min-width: 576px) */
@media (min-width: 576px) {
  .fs-1 { font-size: 2rem !important; }
  .fs-2 { font-size: 1.5rem !important; }
  .fs-3 { font-size: 1.55rem !important; }
  .fs-4 { font-size: 1.50rem !important; }
  .fs-5 { font-size: 1.25rem !important; }
  .wd-100{
    width: 90% !important;
}
}

/* Laptop/desktop standar (min-width: 992px) */
@media (min-width: 992px) {
  .fs-1 { font-size: 2.5rem !important; }
  .fs-2 { font-size: 2rem !important; }
  .fs-3 { font-size: 1.5rem !important; }
  .fs-4 { font-size: 1rem !important; }
  .fs-5 { font-size: 0.9rem !important; }
  .w-100 {
    width: 80% !important;
}
.wd-100{
  width: 100% !important;
}
h3{
    font-size: 1.1rem !important;
}
#footer h3,h4{
    font-size: 1.5rem !important;
}
}

/* Monitor besar 22 inch ke atas (min-width: 1440px) */
@media (min-width: 1440px) {
  .fs-1 { font-size: 2.75rem !important; }
  .fs-2 { font-size: 2.25rem !important; }
  .fs-3 { font-size: 1.75rem !important; }
  .fs-4 { font-size: calc(1.275rem) !important; }
  .fs-5 { font-size: 1.3rem !important; }
  .w-100 {
    width: 90% !important;
}
h3{
    font-size: 1.5rem !important;
}
#footer h3,h4{
    font-size: 1.8rem !important;
}
}

#footer h3{
    color: white !important;
}
