html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* Menghilangkan scroll */
}

.no-scroll::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scroll {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #00000042;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #525252;
}

.scroll::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}


.g-6{
  --bs-gutter-y: 35px;
  --bs-gutter-x: 35px;
}

.black {
  color: #101216;
}

.red {
  color: #DB1A40;
}

.blue {
  color: #4472C4;
}

.green {
  color: #4CA33E;
}


a {
  text-decoration: none;
  color: #101216;
}

.btn:focus-visible {
  box-shadow: none;
}


.modal-backdrop {
  backdrop-filter: blur(9px);
}


.modal-backdrop.fade {
  opacity: 0;
  /* Awal (tidak terlihat) */
  transform: translateY(-100%);
  /* Awal di atas layar */
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.modal-backdrop.show {
  opacity: 0.5;
  /* Warna backdrop menjadi gelap */
  transform: translateY(0);
  /* Backdrop turun ke posisi normal */
}

.modal-footer {
  border-top: 0px;
  padding-top: 0px;
}

.modal-footer .btn {
  border-color: #DB1A40;
  color: #DB1A40;
  transition: all ease-in-out 0.3s;
  padding: 0.4rem 1.2rem;
  font-weight: 700;
}

.modal-footer .btn:hover {
  background-color: #DB1A40;
  color: #ffffff;
}

.daterangepicker {
  color: #101216 !important;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #DB1A40 !important;
}

body {
  font-family: "Inter", sans-serif;
  background-size: cover;
  color: #ffffff;
}

body#home{
  background-size: cover;
}

body#contact{
  background-size: cover;
}

body#about{
 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preload-video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#bg-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover; 
  max-width: 100%;
}

#bg-video.mobile {
  object-fit: fill; 
}


.navbar {
  padding: 15px 15px 15px 15px;
}

.bg-light {
  background-color: #FFFFFF !important;
  border: 1px solid #E7E7E7;
  box-shadow: 0px 4px 47px 0px #0000000D;
}

.navbar-nav {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}

.navbar-nav li a {
  padding: 0 2rem !important;
  color: #2D2D2D;
  font-weight: 400;
}

.navbar-nav .nav-link.active {
  font-weight: 700;
}

.navbar-brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0px;
  line-height: 0px;
}

.navbar-brand img {
  max-height: 50px;
}


footer{
  background-color: #FFFFFF;
  border: 1px solid #E7E7E7;
  box-shadow: 0px 4px 47px 0px #0000000D;
  padding: 15px 15px 15px 15px;
  position: relative;
  z-index: 10;
}

footer img{
  max-width: 40px !important;
}


/* home */
.home p{
  font-weight: 400;
  font-size: 17px;
  line-height: 100%;
  margin-top: 15px;
}

.home .card{
  box-shadow: 0px 4px 72.9px 0px #0000000D;
  height: 311px;
  border-radius: 30px;
  position: relative;
}

.home .card img{
  height: 100%;
  transition: 0.5s ease-in-out;
  border-radius: 30px;
}

.home .card img.hover-images{
  position: absolute;
  transition: 0.5s ease-in-out;
  opacity: 0;
}

.home a:hover img{
  opacity: 0;
}

.home a:hover .hover-images{
  opacity: 100%;
}

/* about */

.about.container-fluid{
  padding: 0px !important;
}

.about .row{
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.about .content-img{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
}

.about .title-img{
  position: absolute;
  left: 8px;
  bottom: 5px;
  font-family: Inter;
  font-weight: 600;
  font-size: 13px;
  line-height: 120%;
  vertical-align: middle;
  text-transform: capitalize;
}

.about .content-right{
  margin-left: 3rem;
}

.about .list-submenu{
  margin-left: 1rem;
  font-family: Inter;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  vertical-align: middle;
  padding-top: 4rem;
}

.about .list-submenu a{
  color: #A7A7A7;
  padding: 10px;
  border-radius: 100px;
  margin-right: 40px;
}

.about .list-submenu a.active{
  color: #565757;
  font-weight: 600;
  background-color: #FEE134;
}


.about .content-right h1{
  font-family: Inter;
  font-weight: 700;
  font-size: 72px;
  line-height: 120%;
  letter-spacing: -3%;
  color: #1E1E1E;
  margin-left: 1rem;
}

.accordion {
  width: 80%;
  --bs-accordion-bg: transparent;
}

.accordion-item {
  border: none;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #757575;
  background-color: transparent;
  box-shadow: none;
}

.accordion-button {
  font-family: Inter;
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  vertical-align: middle;
  color: #757575;
  padding-bottom: 8px;
}

.accordion-button svg{
  margin-right: 20px;
}


.accordion-body {
  font-family: Inter;
  font-weight: 400;
  font-size: 17px;
  line-height: 140%;
  vertical-align: middle;
  color: #757575;
  padding-top: 0px;
}

.detail-about{
  margin-bottom: 30px;
  overflow-y: auto;
}

.detail-about p{
  font-family: Inter;
  font-weight: 400;
  font-size: 17px;
  line-height: 140%;
  vertical-align: middle;
  color: #757575;
}

.detail-about ul{
  margin-block-start: 0px;
  padding-inline-start: 0px;
  margin-left: 1.2rem;

}

.detail-about li{
  font-family: Inter;
  font-weight: 400;
  font-size: 17px;
  line-height: 140%;
  vertical-align: middle;
  color: #757575;
}

.content-aboutus{
  margin-left: 1rem;
}

.content-aboutus h3{
  font-family: Inter;
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  vertical-align: middle;
  color: #757575;
}

/* product */
.product{
  color: #1E1E1E;
  overflow-y: hidden;
}


.product h1{
  font-family: Inter;
  font-weight: 700;
  font-size: 72px;
  line-height: 120%;
  letter-spacing: -3%;
}

.product h3{
  color: #757575;
  font-family: Inter;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  vertical-align: middle;
}

.product h4{
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  vertical-align: middle;
  color: #A7A7A7;
}

.product p{
  font-family: Inter;
  font-weight: 400;
  font-size: 17px;
  line-height: 140%;
  vertical-align: middle;
}

.product ol{
  font-weight: bold;
}

.list-product{
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  vertical-align: middle;
  padding: 10px;
}

.list-product a{
  color: #A7A7A7;
  padding: 10px;
  border-radius: 100px;
  margin-right: 40px;
}

.list-product a.active{
  color: #565757;
  font-weight: 600;
  background-color: #FEE134;
}

.detail-product{
  margin-bottom: 30px;
  overflow-y: auto;
}

.content-swiper {
  overflow: hidden;
  width: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 19px;
}

.swiper-slide p{
  font-family: Inter;
  font-weight: 400;
  font-size: 17px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin-top: 10px;
}


/* contact */
.contact{
  color: #1E1E1E;
}

.contact iframe{
  max-width: 511px;
  min-height: 380px;
  max-height: 390px;
  border-radius: 30px;
  border: 1px solid #D9D9D9 !important;
}

.contact .icon img{
  width: 24px;
  height: 24px;
}

.contact .detail p{
  font-family: Inter;
  font-weight: 400;
  font-size: 16.42px;
  line-height: 100%;
}

.contact h1{
  font-family: Inter;
  font-weight: 700;
  font-size: 72px;
  line-height: 120%;
  letter-spacing: -3%;
}

.contact form{
  position: relative;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  padding: 24px;
  background-color: #ffffff;
}

.contact .form-control{
  border-top: 1px solid  #D9D9D9;
  border-radius: 8px;
}

.contact label{
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 10px;
}

.contact textarea{
  height: 80px;
}

.contact button{
  border: 1px solid  #2C2C2C;
  background-color: #2C2C2C;
  height: 40px;
}

.contact button:hover,
.contact button:active,
.contact button:disabled{
  border: 1px solid  #222222 !important;
  background-color: #222222 !important;
  height: 40px;
}

.detail-contact{
  margin-bottom: 30px;
  overflow-y: auto;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* 404 */

.pageempty h1 {
  color: #101216;
  font-size: 8em;
  font-weight: 700;
  line-height: 100%;
}

.pageempty h2 {
  font-size: 8em;
  font-weight: 700;
  line-height: 100%;
}

.pageempty h3{
  color: #101216;
}


@media (min-width: 1600px) {
  .col-xxxl-6 {
      flex: 0 0 auto;
      width: 50%;
  }

  .py-xxxl-5{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

@media screen and (max-width: 1600px) {
  .contact h1 {
    font-family: Inter;
    font-weight: 700;
    font-size: 58px;
    line-height: 120%;
  }

  .contact iframe {
    max-width: 511px;
    min-height: 300px;
    max-height: 350px;
  }

}

@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1200px) {
  .home .card {
    height: 250px;
  }

  .home .logohome{
    width: 210px;
  }

  .accordion {
    width: 90%;
  }

  .about .content-right h1 {
    font-size: 60px;
  }

  .swiper-slide p{
    font-size: 14px;
  }

  .contact iframe {
    max-width: 511px;
    min-height: 200px;
    max-height: 300px;
  }

  .contact .detail p {
    font-size: 14px;
  }

  .contact h1 {
    font-size: 40px;
  }

  .contact label {
    font-size: 14px;
  }

  .contact .form-control {
    font-size: 0.8rem;
  }

}

@media screen and (max-width: 1023px) {
  
  .home .card{
    max-width: 205px;
    height: 144px;
    margin: 0 auto;
  }

  .home .logohome{
    display: none;
  }
  
  .home .row.wrapper{
    overflow-y: auto;
  }

  .home h1{
    font-family: Inter;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -3%;
    color: #1E1E1E;
  }

  .home .col-lg-4{
    margin-top: 15px;
  }

  .home .card img {
    border-radius: 12px;
  }

  .home .card span{
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
  }

  .about .center-page{
    overflow-y: auto;
  }

  .about .content-right {
    margin-left: 0;
  }

  .about .content-img{
    background-position: bottom center;
  }

  .about .title-img{
    font-size: 10px;
  }

  .about .list-submenu {
    margin-left: 0;
    font-family: Inter;
    font-weight: 500;
    font-size: 13px;
    padding-top: 1.8rem;
    text-align: center;
  }

  .about .list-submenu a {
    margin: 0 20px;
  }

  .about .content-right h1 {
    font-family: Inter;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    margin-left: 0rem;
  }

  .content-aboutus {
    margin-left: 0;
  }

  .detail-about{
    min-height: 250px;
  }

  .detail-about p {
    font-size: 11px;
  }

  .detail-about li {
    font-size: 11px;
  }

  .content-aboutus h3 {
    font-size: 14px;
  }

  .accordion {
    width: 100%;
  }

  .accordion-button {
    padding: 0px;

    font-size: 14px;
  }

  .accordion-body {
    font-size: 11px;
  }

  .accordion-button svg {
    margin-right: 10px;
    max-width: 20px;
  }

  .product .center-page{
    overflow-y: auto;
  }


  .product h1 {
    font-size: 32px;
  }

  .product h3{
    font-size: 15px;
  }

  .product h4 {
    font-size: 15px;
  }

  .product p {
    font-size: 12px;
  }

  .product ol{
    font-size: 12px;
  }

  .list-product {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .list-product a {
    margin-right: 0px;
  }

  .swiper-slide p{
    font-size: 12px;
  }

  .contact .form-msg{
    margin-bottom: 4rem;
  }

  .contact .form-control {
    font-size: 1rem;
  }

  footer svg{
    stroke: #D4D4D4;
    max-width: 24px;
  }

  footer svg.unix{
    fill: #D4D4D4;
  }

  footer .circle{
    margin: 0 auto;
    text-align: center;
    padding-bottom: 10px;
  }

  footer a span{
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    color: #D4D4D4;
    display: block;
  }

  footer a.active svg{
    stroke: #F2B821 !important;
  }

  footer a.active svg.unix{
    fill: #F2B821;
  }

  footer a.active span{
    color: #F2B821;
  }

}


@media screen and (max-width: 768px) {
  body#home{
    background: none;
    /* background-size: cover; */
  }

  body#about{
    background-image: url('/images/background-mobile-about.png');
  }
}