/********** Template CSS **********/
:root {
    --primary: #E88F2A;
    --secondary: #FAF3EB;
    --light: #FFFFFF;
    --dark: #2B2825;
}
body {
    font-family: 'Roboto', sans-serif !important;
    font-size: 18px !important;
}
.judul{
    font-family: Playfair Display;
}
.font-secondary {
    font-family: 'Pacifico', cursive;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.border-inner {
    position: relative;
}

.border-inner * {
    position: relative;
    z-index: 1;
}

.border-inner::before {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: none;
    border: 1px solid var(--light);
    z-index: 0;
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}
/*** Navbar Start ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 15px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        padding: 10px 15px;
    }
}
.navbar-dark .navbar-toggler {
    color: #fff !important;
    border-color: #fff !important;
}
.navbar-toggler-icon {
    background-color: #fff; /* Mengubah warna latar belakang menjadi hitam */
    border-radius: 5px; /* Menyesuaikan agar tidak ada sudut melengkung jika diinginkan */
}
.navbar-toggler {
    position: relative;
    right: 20px; /* Atur jarak dari kanan sesuai kebutuhan */
}
.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 700;
}
.dropend .dropdown-toggle {
  color: salmon;
  /*margin-left: 1em;*/
}
.dropdown-item {
  font-weight: 700;
}
.dropdown-item:hover {
  background-color: #fff;
  color: #111 !important;
}
.dropdown .dropdown-menu {
  display: none;
}
.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
  margin-top: 0.125em;
  margin-left: 0.125em;
}
@media screen and (min-width: 769px) {
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }
  /*.dropend .dropdown-toggle {
    margin-left: 0.5em;
  }*/
}
.navbar-nav.ms-auto .nav-link {
    color: #111 !important; /* Atau sesuaikan warna sesuai kebutuhan */
}

/* Mengatur font-size dan margin pada dropdown-item */
.dropdown-menu .dropdown-item {
    font-size: 16px; /* Sesuaikan dengan ukuran font navbar utama */
    font-weight: 700;
    padding: 10px 15px; /* Sesuaikan margin dalam item */
    color: #fff !important;
    text-transform: uppercase; /* Sesuaikan jika ingin huruf besar */
}

/* Mengatur hover untuk dropdown-item */
.dropdown-menu .dropdown-item:hover {
    background-color: #979494 !important;
    color: #fff !important;
}

/* Mengatur posisi dan margin dropdown */
.dropdown-menu {
    margin-top: 0; /* Hapus margin ekstra pada dropdown */
}

/* Mengatur posisi dropdown di layar lebar */
@media screen and (min-width: 769px) {
    .dropdown:hover > .dropdown-menu {
        position: absolute;
        margin-top: 0.125em;
        left: 0;
    }
}

.dropdown-menu {
    background-color: #979494 !important;
}

/*** Navbar End ***/

.hero-header {
    background: url(../img/hero.jpg) top right no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 10px;
    left: 50%;
    bottom: 0;
    margin-left: -30px;
    background: #0075ff;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 180px;
    height: 2px;
    left: 50%;
    bottom: 4px;
    margin-left: -90px;
    background: #0075ff;
}

.service::after,
.contact::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 45px);
    top: 135px;
    left: 0;
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../img/service.jpg) center center no-repeat;
    background-size: cover;
    z-index: -1;
}

.contact::after {
    background: linear-gradient(rgba(43, 40, 37, .5), rgba(43, 40, 37, .5)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.bg-offer {
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(https://fireworksbi.com/img/file/ZzNOQT09RTBNekEzTVRVMU16TlRFMk9U.jpg) center center no-repeat;
    background-size: cover;
}

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

.team-item:hover img {
    transform: scale(1.1);
    filter: blur(5px)
}

.team-item .team-overlay {
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-overlay {
    opacity: 1;
}

.testimonial-carousel .owl-dots {
    height: 45px;
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 2px;
    width: 10px;
    height: 25px;
    background: #DDDDDD;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    height: 45px;
    background: #0075ff !important;
}

.testimonial-carousel .owl-item .testimonial-item {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    opacity: 1;
}

.bg-img {
    background: linear-gradient(rgba(43, 40, 37, .5), rgb(255 255 255 / 50%)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}
.text-center {text-align: center !important;}
.text-shadow {text-shadow: 6px 4px 3px rgba(0, 0, 0, 0.21);}
.text-bold {font-weight: 700;}
.text-hitam {color: #111 !important;}
.text-putih {color: #fff !important;}
.text-miring {font-style: italic !important;}
.bg-primary {background-color: #3bb54a !important;}
.bg-putih{background: #ffffff !important;}
.bg-2 {background: #f8f8f8 !important;}
.bg-bookstand {background: #f8f8f891 !important;}
.widget-service {border: 1px solid #dddddd; border-radius: 4px; padding: 35px 40px 20px;}
.item-title {font-size: 24px;font-weight: 500;}
.margin-bottom-1 {margin-bottom: 10px !important;}
.margin-bottom-2 {margin-bottom: 20px !important;}
.margin-bottom-3 {margin-bottom: 30px !important;}
.margin-bottom-4 {margin-bottom: 40px !important;}
.margin-bottom-5 {margin-bottom: 50px !important;}
.tengah {float: none; margin: 0 auto;}
.errorfill{border-color: #ea6666 !important;}
.rs-process.process-style1 .services-item {
    position: relative;
    text-align: center;
    padding: 0px 30px 0px 30px;
}
.rs-process.process-style1 .services-item .services-icon {
    background-color: #FFFFFF;
    text-align: center;
    line-height: 160px !important;
    min-width: 160px;
    height: 160px;
    border-radius: 50% 50% 50% 50% !important;
    display: inline-block;
    transition: all ease .3s;
    font-size: 50px;
}
.rs-process.process-style1 .services-item .services-icon img {
    width: 100px;
    height: 100px;
    max-width: unset;
}
.rs-process.process-style1 .services-item .content-text .title {
    font-size: 18px;
    line-height: 32px;
    color: #ffffff;
    font-family: "Roboto", Sans-serif;
    margin: 20px 0 12px;
}
@keyframes glowing {
    0% {
        background-color: #35a498;
        box-shadow: 0 0 5px #35a498;
    }
    50% {
        background-color: #032d41;
        box-shadow: 0 0 20px #032d41;
    }
    100% {
        background-color: #35a498;
        box-shadow: 0 0 5px #35a498;
    }
}

.blink2 {
    display: inline-block; /* Change to inline-block for proper padding */
    padding: 15px 30px; /* Increased padding for better button size */
    font-size: 15px;
    background-color: #ffb524 !important; /* Button color */
    color: #fff;
    border-radius: 5px;
    text-decoration: none; /* Remove underline */
    text-align: center; /* Center the text */
    transition: background-color 0.3s ease; /* Smooth transition */
    animation: glowing 1300ms infinite; /* Glowing animation */
}

.blink2:hover {
    background-color: #ff9a00; /* Darker shade on hover */
}
.bg-dark {background-color: #0075ff !important;}
.text-primary {color: #fff !important;}
.text-blue{color: #0075ff !important}
.hilang {display:none;}
.box-img-logo {
    background: #fff;
    padding: 10px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    box-shadow: 1px 2px 5px 1px rgba(0,0,0,0.10);
}
.box-img {
    background: #fff;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    box-shadow: 1px 2px 5px 1px rgba(0,0,0,0.10);
}
@media (max-width: 995px) {
    .navbar {
        height: auto !important; /* Menghilangkan height 100px */
    }
}
@media (min-width: 992px) {
    .box-img-logo {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .box-img-logo {
        display: block; !important;
    }
}
ul.li {margin-left: 1.5em;list-style: none}
ul.li li {padding-bottom: 10px}
ul.li li:before {content: '\f061'; /* Kode untuk icon Font Awesome (fa-arrow-right) */font-family: 'Font Awesome 5 Free'; /* Pastikan menggunakan FontAwesome 5 atau lebih baru */font-weight: 900; /* Menentukan apakah ikon bold atau tidak */float: left;margin-left: -1.5em;color: #0075ff;}
.rounded {border-radius: 10px !important;}
.bg-light {background-color: #f4f6f8 !important;}
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

.table-modern thead th {
  background: #f3f4f6;
  color: #374151;
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.table-modern tbody td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
  border-color: #e5e7eb;
}

.table-modern tbody tr:hover {
  background-color: #f9fafb;
  transition: background 0.2s ease;
}

.website-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}
.website-link:hover {
  text-decoration: underline;
}

.not-available {
  color: #9ca3af;
  font-style: italic;
}

.table-modern {
  margin-bottom: 0;
}

/* Responsive scroll */
.table-responsive {
  padding: 0 1rem 1rem;
}