body {
  /* font-family: "Roboto", system-ui, -apple-system, "Segoe UI"; */
  font-family: "Noto Sans", sans-serif, system-ui, -apple-system, "Segoe UI";
}

a {
  text-decoration: none;
}

a:hover {
  color: #ffcd00;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #a66030;
}

iframe {
  max-width: 100%;
}

.lovely {
  font-family: Just Lovely Slanted, sans-serif;
  font-size: 1.5em;
  font-weight: 400;
}
.lovely-normal {
  font-family: Just Lovely Slanted, sans-serif;
  font-size: 1.25em;
}
@media (max-width: 991px) {
  .lovely {
    font-size: 0.8em;
  }
}

/*  */
.header {
  color: #0c1218;
  background-color: transparent;
  padding: 1.25rem 0;
  transition-duration: 0.4s;
  z-index: 3;
  top: 0;
}

.header .header-container {
  background: #ffffff;
  border-radius: 3rem;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
}

.header .logo img {
  max-height: 3.25rem;
}

.header .header-social-links {
  padding-right: 0.5rem;
}

.header .header-social-links a {
  color: rgba(12, 18, 24, 0.6);
  padding-left: 0.5rem;
  display: inline-block;
  transition-duration: 0.4s;
  font-size: 1.15rem;
}

.header .header-social-links a:hover {
  color: #ffcd00;
}

.header .logo {
  order: 1;
}

.header .header-social-links {
  order: 2;
}

.navbar-menu {
  order: 3;
}

@media (max-width: 991px) {
  .header .header-container {
    flex-wrap: wrap;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    justify-content: center;
  }

  .navbar-menu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 4rem 1rem 1rem 1rem;
    padding: 1rem 0;
    margin: 0;
    border-radius: 1rem;
    background-color: #ffffff;
    overflow-y: auto;
    transition-duration: 0.4s;
    z-index: 5;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
  }

  .navbar-menu a,
  .navbar-menu a:focus {
    color: #0c1218;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition-duration: 0.4s;
  }

  .navbar-menu a:hover,
  .navbar-menu .active,
  .navbar-menu .active:focus {
    color: #ffcd00;
  }

  .navbar-menu .dropdown > .dropdown-active {
    display: block;
    background-color: #f7f7f7;
  }

  .navbar-menu .dropdown ul {
    position: static;
    display: none;
    z-index: 2;
    padding: 0.5rem 0;
    margin: 0.5rem 1rem;
    background-color: #ffffff;
    border: 1px solid #ccc;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .header .header-social-links {
    margin-right: 1rem;
  }

  .mobnav-active .mobnav-btn {
    color: #fff;
    position: absolute;
    font-size: 2rem;
    top: 1rem;
    right: 1rem;
    z-index: 5;
  }

  .mobnav-active .navbar-menu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    transition-duration: 0.4s;
  }

  .mobnav-active .navbar-menu > ul {
    display: block;
  }
}

@media (min-width: 992px) {
  .header .header-container {
    justify-content: space-between;
  }

  .header .header-social-links {
    order: 3;
  }

  .header .logo img {
    margin-right: 0.5rem;
  }

  .navbar-menu {
    padding: 0;
    order: 2;
  }

  .navbar-menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar-menu li {
    position: relative;
  }

  .navbar-menu li:hover > a,
  .navbar-menu .active,
  .navbar-menu .active:focus {
    color: #ffcd00;
    /* text-decoration: underline; */
  }

  .navbar-menu a {
    position: relative;
  }

  .navbar-menu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 4px;
    bottom: -6px;
    left: 0;
    background-color: #a66030;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar-menu a:hover:before,
  .navbar-menu li:hover > a:before,
  .navbar-menu .active:before {
    visibility: visible;
    width: 50px;
  }

  .navbar-menu a,
  .navbar-menu a:focus {
    color: #0c1218;
    /* padding: 1.15rem 1rem; */
    padding: 1.15rem 1rem 0 0;
    margin-left: 1.15rem;
    margin-bottom: 1.15rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition-duration: 0.4s;
  }

  .navbar-menu a i,
  .navbar-menu a:focus i {
    font-size: 0.8rem;
    line-height: 0;
    margin-left: 5px;
    transition-duration: 0.4s;
  }

  .navbar-menu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 100%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
  }

  .navbar-menu .dropdown ul li {
    min-width: 200px;
  }

  .navbar-menu .dropdown ul a:hover,
  .navbar-menu .dropdown ul .active,
  .navbar-menu .dropdown ul .active:hover,
  .navbar-menu .dropdown ul li:hover > a {
    color: #ffcd00;
  }

  .navbar-menu .dropdown ul a {
    padding: 0.65rem 1.25rem;
    font-size: 1rem;
    text-transform: none;
    color: #0c1218;
    margin: 0;
  }

  .navbar-menu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar-menu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navbar-menu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/*  */
.main-no-banner {
  margin-top: 7.15rem;
  position: relative;
}

.main-no-banner::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 500px;
  content: "";
  background-image: url("../img/angle-grid-bg.svg");
  background-size: 1068px 580px;
  background-repeat: no-repeat;
  transform: rotate(180deg) scaleX(1);
  top: 0%;
  right: 0;
  opacity: 0.04;
  z-index: -1;
}

@media (max-width: 991px) {
  .main {
    margin-top: 7.15rem;
  }
}

/*  */
.section {
  color: #0c1218;
  padding: 2rem 0;
  scroll-margin-top: 6.5rem;
}

/*  */
.section.banner {
  padding: 0;
}

.carousel-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.carousel-control {
  z-index: 1;
}

.carousel-control:hover {
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
}

.carousel-control-pause,
.carousel-control-play {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  background-color: transparent;
  background-image: none;
  outline: none;
  border: none;
}

.carousel-control-pause,
.carousel-control-play {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.7;
  transition: opacity 0.15s ease;
}

.progress-bar-carousel {
  height: 3px;
  background-color: #ffcd00;
  width: 0%;
  margin: 0;
  border: none;
  z-index: 1;
  position: relative;
  opacity: 1;
}

.carousel-control-prev-icon {
  background-image: url("../img/carousel-prev.svg");
}

.carousel-control-next-icon {
  background-image: url("../img/carousel-next.svg");
}

.carousel-indicators {
  margin-bottom: 5rem;
}

.carousel-indicators .active {
  background-color: #ffcd00;
}

.card-tracking {
  background-color: #fefbf8;
  border-color: #fae0d1;
  margin-top: -3.5rem;
}

.card-tracking .card-body {
  padding: 2rem 1rem;
}

.card-tracking h3 {
  color: #e0702f;
}

@media (max-width: 991px) {
  .carousel-indicators {
    margin-bottom: 1.5rem;
  }

  .card-tracking {
    margin-top: -1.5rem;
  }

  .card-tracking .card-body {
    padding: 1rem 1rem;
  }

  .card-tracking h3 {
    font-size: 1.15rem;
  }
}

@media (min-width: 992px) {
  .carousel-control-pause,
  .carousel-control-play {
    font-size: 50px;
  }

  .carousel-indicators [data-bs-target] {
    width: 70px;
    margin-right: 10px;
    margin-left: 10px;
  }

  .carousel-banner img {
    height: calc(100vh - 3px);
  }
}

/*  */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

/* .section-header h3 {
  font-size: 2rem;
  border: 1px solid #0c1218;
  border-radius: 50%;
  padding: 1.35rem 1.75rem;
  color: #0c1218;
} */

/* .section-header .section-header-img {
  border: 1px solid #0c1218;
  border-radius: 50%;
} */

.section-header .section-header-img img {
  padding: 0.5rem 1rem;
  padding-left: 0;
  width: 5.25rem;
  height: auto;
}

.section-header h3 {
  display: flex;
  padding: 0;
  background-color: transparent;
  color: #a66030;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.section-header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section-header-title::before,
.section-header-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #0c1218;
}

.section-header-title::after {
  flex: 0 0 auto;
  width: 10%;
}

.section-header-title h2 {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  color: #a66030;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.section-header-title h2::before,
.section-header-title h2::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 5rem;
  background-color: #0c1218;
  top: 50%;
  transform-origin: center;
}

.section-header-title h2::before {
  left: 0;
  transform: translateX(-50%) translateY(-50%) rotate(15deg);
}

.section-header-title h2::after {
  right: 0;
  transform: translateX(50%) translateY(-50%) rotate(15deg);
}

/*  */
.section-header-title-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section-header-title-2::before,
.section-header-title-2::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #0c1218;
}

.section-header-title-2 h2 {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  background-color: transparent;
  color: #a66030;
  font-size: 1.75rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .section-header-title-2 h2 {
    font-size: 1.25rem;
  }
}

.section-header-title-2 h2::before,
.section-header-title-2 h2::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 5rem;
  background-color: #0c1218;
  top: 50%;
  transform-origin: center;
}

.section-header-title-2 h2::before {
  left: 0;
  transform: translateX(-50%) translateY(-50%) rotate(15deg);
}

.section-header-title-2 h2::after {
  right: 0;
  transform: translateX(50%) translateY(-50%) rotate(15deg);
}

/* .section-header-title {
  position: relative;
  padding-right: 0;
  display: inline-block;
  background-color: transparent;
  border-right: 1px solid #0c1218;
  transform: skew(-20deg);
  border-left: 1px solid #0c1218;
  padding-left: 0;
  z-index: 2;
}

.section-header-title h2 {
  padding: 5px 20px;
  font-size: 2.5rem;
  color: #a66030;
  text-shadow: none;
  border-bottom: 0;
  background-color: #faf9fb;
}

.section-header-btn {
  font-size: 1.1rem !important;
  position: relative;
  z-index: 2;
  background-color: #faf9fb;
  border: 1px solid #0c1218 !important;
  transform: none;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-weight: bold !important;
  text-transform: uppercase;
  color: #0c1218;
  padding: 0.8rem 2rem !important;
  border-radius: 0 !important;
}

.section-header:after {
  content: "";
  display: inline-block;
  height: 1px;
  width: calc(100%);
  right: 0;
  background: #0c1218;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
}

.section-header h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  position: relative;
  color: #a66030;
} */

.section-header .header-border {
  width: 200px;
  height: 20px;
  margin: 0 auto;
  color: #ffcd00;
  opacity: 0.5;
}

@media (max-width: 991px) {
  .section-header .section-header-img img {
    width: 3.25rem;
  }
}

/*  */
/* .section.tentang-kami {
  background-color: #faf9fb;
} */
.section-main-content {
  position: relative;
  z-index: 1;
}

.section-main-content::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 500px;
  content: "";
  background-image: url("../img/angle-grid-bg.svg");
  background-size: 1068px 580px;
  background-repeat: no-repeat;
  transform: rotate(180deg) scaleX(1);
  top: 0%;
  right: 0;
  opacity: 0.04;
  z-index: -1;
}

.section-main-content::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 500px;
  content: "";
  background-image: url("../img/angle-grid-bg.svg");
  background-size: 1068px 580px;
  background-repeat: no-repeat;
  /* transform: rotate(180deg); */
  /* transform: scaleX(-1); */
  bottom: 0%;
  right: 0;
  opacity: 0.04;
  z-index: -1;
}

.bg-gradient-1 {
  position: relative;
  /* z-index: 1; */
}

.bg-gradient-1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 2rem;
  z-index: -2;
  background-image: linear-gradient(
    180deg,
    #fff,
    #efefef 25%,
    #efefef 75%,
    #fff
  );
}

/*  */
.framed-video-container {
  position: relative;
  display: inline-block;
  width: calc(100% - 1rem);
  /* margin-right: 15px; */
  padding: 1rem 0;
  border: 2px solid #ffcd00;
}

.framed-video-container-2 {
  transform: translateX(1rem);
  /* transform: translate(1rem, 1rem); */
}

.framed-video {
  height: 14rem;
}

.framed-video .card {
  height: 14rem;
}

@media (min-width: 992px) {
  .first-framed {
    height: calc(31rem + 3.5rem);
  }

  .first-framed .card {
    height: calc(31rem + 3.5rem);
    transform: translate(1rem, 1rem);
  }

  .framed-video {
    position: relative;
    display: inline-block;
    width: calc(100% - 1rem);
    margin-right: 15px;
    border: 2px solid #ffcd00;
  }

  .framed-video-brown {
    border: 2px solid #a66030;
  }

  .framed-video .card {
    transform: translate(1rem, 1rem);
  }
}

/*  */
.framed-galeri {
  position: relative;
  display: inline-block;
  width: calc(100% - 1rem);
  /* margin-right: 15px; */
  padding: 1rem 0;
  border: 2px solid #ffcd00;
}

.framed-galeri .framed-galeri-container {
  transform: translateX(1rem);
  /* transform: translate(1rem, 1rem); */
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .grid-cols-lg-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid-cols-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bg-gradient-cover {
  background: rgb(0, 0, 0, 0.5);
}

.img-zoom-effect img {
  transition: all 0.5s;
}

.img-zoom-effect:hover img {
  transform: scale(1.3);
}

/*  */
.footer {
  color: #ffffff;
  background-color: #000000;
  background-image: url("../img/polda.webp");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  position: relative;
  z-index: 1;
  border-top: 3px solid #ffcd00;
}

.footer::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000000;
  opacity: 0.75;
}

.footer .footer-atas {
  padding-top: 50px;
}

.footer .footer-detail .logo {
  margin-bottom: 0.5rem;
}

.footer .footer-detail .logo img {
  max-width: 100%;
  max-height: 8rem;
  display: block;
}

.footer .footer-detail p {
  font-size: 0.8rem;
}

.footer .link-media-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .link-media-footer a:hover {
  color: #ffffff;
  border-color: #ffcd00;
  background-color: #ffcd00;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #a66030;
}

.footer .copyright {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.5);
}

.footer .copyright p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

@media (min-width: 1200px) {
  .footer {
    background-position-y: 200px;
  }
}

/*  */
.fs-7 {
  font-size: 0.75rem;
}
.fs-8 {
  font-size: 0.75rem;
}

@media (max-width: 991px) {
  .fs-8 {
    font-size: 0.5rem;
  }
  .fs-2 {
    font-size: 1.35rem !important;
  }
}

/*  */
.btn-arrow {
  color: #ffcd00;
  border-color: #ffcd00;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.5rem 5rem 0.5rem 1rem;
  text-transform: uppercase;
  position: relative;
  border-radius: 0;
}

.btn-arrow:hover {
  background-color: #ffcd00;
  border-color: #ffcd00;
  color: #0c1218;
}

.btn-arrow::before,
.btn-arrow::after {
  position: absolute;
  top: 50%;
  transition: right 0.15s ease, width 0.15s ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-arrow::before {
  right: 2rem;
  width: 2rem;
  height: 2px;
  content: "";
  background-color: #ffcd00;
}

.btn-arrow:hover::before {
  background-color: #0c1218;
  right: 1rem;
  width: 3rem;
}

.btn-arrow::after {
  position: absolute;
  top: calc(50% + 5px);
  right: 1.5rem;
  margin-top: -5px;
  content: "";
  border: solid transparent;
  border-left-color: #ffcd00;
  border-width: 5px;
}

.btn-arrow:hover::after {
  border-left-color: #0c1218;
  right: 0.5rem;
}

/*  */
.btn-arrow-2 {
  color: #e0702f;
  border-color: #e0702f;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.5rem 5rem 0.5rem 1rem;
  text-transform: uppercase;
  position: relative;
  border-radius: 0;
}

.btn-arrow-2:hover {
  background-color: #e0702f;
  border-color: #e0702f;
  color: #0c1218;
}

.btn-arrow-2::before,
.btn-arrow-2::after {
  position: absolute;
  top: 50%;
  transition: right 0.15s ease, width 0.15s ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-arrow-2::before {
  right: 2rem;
  width: 2rem;
  height: 2px;
  content: "";
  background-color: #e0702f;
}

.btn-arrow-2:hover::before {
  background-color: #0c1218;
  right: 1rem;
  width: 3rem;
}

.btn-arrow-2::after {
  position: absolute;
  top: calc(50% + 5px);
  right: 1.5rem;
  margin-top: -5px;
  content: "";
  border: solid transparent;
  border-left-color: #e0702f;
  border-width: 5px;
}

.btn-arrow-2:hover::after {
  border-left-color: #0c1218;
  right: 0.5rem;
}

@media (max-width: 991px) {
  .btn-arrow-2 {
    font-size: 0.75rem;
  }
}
