/* Impor font Poppins dari Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Gunakan font Poppins di seluruh dokumen */
body {
  font-family: "Poppins", sans-serif;
}

/* Contoh penerapan untuk elemen lain */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700; /* Bold */
}

p {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Normal */
}

.logo {
  width: 90px;
}

.text-nav {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.img-banner {
  height: 720px;
  flex-shrink: 0;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.lazy-load {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.text-small-banner {
  font-size: 35px;
}

.carousel-indicators-custom [data-bs-target] {
  width: 10px !important;
  height: 10px !important;
  border-radius: 100% !important;
  opacity: 1;
  background-color: #fff;
}

.carousel-caption-custom {
  position: absolute;
  right: 9%;
  bottom: 1.25rem;
  left: 9%;
  /* padding-top: 1.25rem; */
  padding-bottom: 10.25rem !important;
  color: #fff;
  text-align: center;
}

.carousel-indicators-custom button {
  background-color: #fff;
}

.carousel-indicators-custom .active {
  background-color: #ffc727;
}

.text-banner-1 {
  color: #000;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 40px;
  font-weight: 700;
  line-height: 120%; /* 57.6px */
  letter-spacing: 0.72px;
  text-transform: uppercase;
}

.text-ceo {
  color: #ffc727;
}

.p-banner {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 166.5%; /* 29.97px */
  letter-spacing: 0.72px;
}

.text-section {
  color: #ffc727;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 4.64px;
  text-transform: uppercase;
}

.title-section {
  color: #000;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 124.5%; /* 59.76px */
  text-transform: capitalize;
}

.subtitle-section {
  color: #000;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 3.045px;
  text-transform: uppercase;
}

.line-subtitle-section {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.line-subtitle-section::before,
.line-subtitle-section::after {
  content: "";
  width: 80px;
  height: 2px;
  background-color: #000;
}

.line-subtitle-section::before {
  margin-right: 15px;
}

.line-subtitle-section::after {
  margin-left: 15px;
}

.title-section-2 {
  color: #ffc727;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 124.5%;
  text-transform: capitalize;
}

.bg-services {
  background: linear-gradient(90deg, #151515 30%, #ffc727 130%);
}

.img-hover-effect {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.img-hover-effect:hover {
  /* transform: scale(0.9); Zoom Out */
  transform: scale(1.1); //Zoom In
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  filter: brightness(0.7);
}

.bg-footer {
  background: #000;
}

.img-footer {
  width: 170px;
}

.text-footer {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.nav-link:hover {
  color: #ffc727 !important;
}

.icon-footer {
  border-radius: 66px;
  border: 1px solid #262626;
  background: linear-gradient(180deg, #1a1a1a 0%, rgba(26, 26, 26, 0) 100%);
}

.bg-copyright {
  background: #c6c6c6;
}

.text-copyright {
  color: #666;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.108px;
}

/* Feel free to change duration  */
.animated {
  -webkit-animation-duration: 1000 ms;
  animation-duration: 1000 ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* .owl-animated-out - only for current item */
/* This is very important class. Use z-index if you want move Out item above In item */
.owl-animated-out {
  z-index: 1;
}
/* .owl-animated-in - only for upcoming item
/* This is very important class. Use z-index if you want move In item above Out item */
.owl-animated-in {
  z-index: 0;
}
/* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css:  */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.img-project {
  height: 635px;
  width: 630px;
}

.video-project {
  height: 750px;
  width: 300px;
}

/* .owl-item.center img {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.owl-item img {
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;
} */

#owl-content-creation .owl-item.center img {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

#owl-content-creation .owl-item img {
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;
}

.img-testimoni {
  height: 700px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 3rem;
  height: 3rem;
  background-color: #00000080;
}

.carousel-caption-testimoni {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.text-brand {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 166.5%; /* 29.97px */
  letter-spacing: 0.72px;
}

.text-ig {
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  line-height: 166.5%; /* 23.31px */
  letter-spacing: 0.56px;
}

.card-center {
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.bg-testimoni {
  background: linear-gradient(
    176deg,
    rgba(0, 0, 0, 0.7) 19.67%,
    rgba(17, 24, 42, 0) 121.51%
  );
}

.color-footer-icon {
  color: #ffc727;
}

.text-footer {
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 166.5%;
  letter-spacing: 0.84px;
}

.fs-icon-footer {
  font-size: 40px !important;
}

/* .bg-message {
  background: linear-gradient(180deg, #000 0.03%, rgba(18, 25, 43, 0) 109.04%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
} */

.bg-message {
  background: linear-gradient(
    180deg,
    #1a1a1a 0.03%,
    rgb(255 255 255 / 0%) 109.04%
  );
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.label-form-message {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.445px;
  text-transform: uppercase;
}

.owl-theme-custom .owl-dots .owl-dot span {
  border-radius: 0px !important;
  width: 12px !important;
  height: 12px !important;
  background: #000000 !important;
}

.owl-theme-custom .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  width: 12px !important;
  height: 12px !important;
  background-color: #000 !important;
  margin: 5px 8px;
  box-shadow: 0 0 0 5px #fff, 0 0 0 9px #ffc727;
  margin-top: 20px;
}

.nav-pills-custom .nav-link.active,
.nav-pills-custom .show > .nav-link {
  color: #000;
  font-weight: bold;
  background-color: #fff !important;
  border-bottom: 3px solid #ffc727;
  /* border-radius: 0px; */
}

.nav-pills-custom .nav-link:hover {
  color: #000 !important;
  font-weight: bold;
}

.nav-item-custom {
  border-right: 4px solid #000;
  padding-right: 15px;
  margin-right: 15px;
}

.nav-item-custom:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.form-control-transparant {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-control-transparant:focus {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.yellow-line {
  width: 144px;
  height: 3px;
  background-color: #ffc727;
}

.yellow-line-2 {
  width: 200px;
  height: 3px;
  background-color: #ffc727;
}

.black-line {
  width: 122px;
  height: 3px;
  background-color: #000000;
}

.black-line-2 {
  width: 150px;
  height: 3px;
  background-color: #000000;
}

.text-sub-footer {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 166.5%; /* 26.64px */
  letter-spacing: 0.64px;
}

.card-text {
  color: #fff;
  text-align: justify;
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: 166.5%;
  letter-spacing: 0.84px;
}

.logo-testimoni {
  width: 100px;
  height: 100px;
}

.bg-get-in-touch {
  background: linear-gradient(180deg, #ffc727 0%, #000 87%),
    linear-gradient(
      262deg,
      rgba(255, 199, 39, 0.24) -6.82%,
      rgba(21, 21, 21, 0) 59.76%
    );
  padding: 50px 0;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#back-to-top.show {
  display: block;
  opacity: 1;
}

#back-to-top i {
  font-size: 24px;
}

#back-to-top.show {
  display: block;
  opacity: 1;
}

/* #business-apps,
#content-creation,
#webiste {
  display: none;
} */

#navbar {
  background-color: #ffffff;
  transition: opacity 0.3s ease-in-out;
}

#carouselBannerIndoPc {
  padding-top: 5%;
}

#navbar.scrolled {
  /* background-color: rgba(255, 199, 39, 0.2); */
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.bg-business-apps {
  background-color: #ffc727;
}

.text-business-apps {
  font-size: 15px;
}

.video-thumbnail {
  width: 100%;
  height: 415px;
  position: relative;
  cursor: pointer;
}

.video-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-left: 17px;
  padding-right: 17px;
  padding-top: 4px;
  border-radius: 25%;
}

.play-icon:hover {
  background-color: rgba(
    255,
    0,
    0,
    0.7
  ); /* Warna latar belakang berubah saat hover */
  transform: translate(-50%, -50%) scale(1.2); /* Membesarkan ikon saat hover */
}

.play-icon i {
  transition: transform 0.3s ease; /* Menambahkan transisi untuk ikon */
}

.play-icon:hover i {
  transform: scale(1.1); /* Ikon menjadi sedikit lebih besar saat hover */
}

.play-icon i {
  color: white;
}

.video-short-thumbnail {
  width: 100%;
  height: 600px;
  position: relative;
  cursor: pointer;
}

.video-short-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Untuk perangkat besar (Tablet Landscape, Laptop) */
@media (max-width: 1024px) {
  .img-banner {
    height: 30vh;
  }
  .text-banner-1 {
    font-size: 15px;
  }
  .text-small-banner {
    font-size: 7px;
  }
  .p-banner {
    font-size: 12px;
    font-weight: 400;
    color: white;
  }
  .carousel-caption-custom {
    position: absolute;
    right: 7%;
    bottom: 1rem;
    left: 7%;
    padding-bottom: 3rem !important;
    color: #fff;
    text-align: center;
  }
  .icon-footer {
    width: 40px;
    height: 40px;
  }
  .text-small-banner {
    font-size: 13px;
  }
}

/* Mobile Screen */
@media (max-width: 768px) {
  .video-thumbnail {
    width: 100%;
    height: 300px;
    position: relative;
    cursor: pointer;
  }

  .video-short-thumbnail {
    width: 100%;
    height: 450px;
    position: relative;
    cursor: pointer;
  }

  .img-banner {
    height: 21vh;
  }

  .text-business-apps {
    font-size: 8px;
  }

  .bg-footer {
    background: #000;
    margin-top: -10px;
  }

  #carouselBannerIndoPc {
    padding-top: 20%;
  }

  .card-text {
    font-size: 12px;
  }

  .text-brand {
    font-size: 14px;
  }

  .text-ig {
    font-size: 12px;
  }

  .logo-testimoni {
    width: 70px;
    height: 70px;
  }

  .carousel-caption-testimoni {
    width: 95%;
    top: 28% !important;
  }

  .carousel-control-prev-testimonial {
    top: 20% !important;
  }

  .carousel-control-next-testimonial {
    top: 20% !important;
  }

  .img-testimoni {
    height: 360px;
  }

  .img-project {
    height: 345px;
  }

  .bg-get-in-touch {
    padding: 30px 0;
    padding-bottom: 8px;
  }

  .video-project {
    height: 600px;
  }

  .carousel-caption-custom {
    position: absolute;
    right: 7%;
    bottom: 3rem;
    left: 7%;
    padding-bottom: 1.5rem !important;
    color: #fff;
    text-align: center;
  }

  .carousel-indicators {
    margin-bottom: 0rem !important;
  }

  .text-banner-1 {
    font-size: 11px;
  }

  .text-small-banner {
    font-size: 7px;
  }

  .p-banner {
    font-size: 9px;
    font-weight: 400;
    color: white;
  }

  .btn-custom-mobile {
    font-size: 10px !important;
    padding: 4px 8px !important;
  }

  .yellow-line {
    width: 110px;
    height: 1px;
  }

  .black-line {
    margin-left: 10%;
    width: 70px;
    height: 1px;
  }

  .black-line-2 {
    width: 95px;
    height: 1px;
    margin-left: 20%;
  }

  .title-section,
  .title-section-2 {
    font-size: 36px;
    line-height: 120%;
  }

  .text-section {
    font-size: 30px;
    letter-spacing: 3.64px;
    text-align: center;
  }

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

  .btn-center {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .img-banner {
    height: 21vh;
  }

  .carousel-caption-custom {
    position: absolute;
    right: 7%;
    bottom: 1rem;
    left: 7%;
    padding-bottom: 1.5rem !important;
    color: #fff;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .img-banner {
    height: 21vh;
  }

  .text-small-banner {
    font-size: 10px;
  }

  .carousel-caption-custom {
    position: absolute;
    right: 7%;
    bottom: 6rem;
    left: 7%;
    padding-bottom: 1rem !important;
    color: #fff;
    text-align: center;
  }

  .logo {
    width: 50px;
  }

  .text-banner-1 {
    font-size: 13px;
  }

  .title-section,
  .title-section-2 {
    font-size: 28px;
    line-height: 115%;
    text-align: center;
  }
}
