@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Questrial&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: "Just Lovely Slanted";
  src: url("font/just-lovely_slanted.woff2") format("woff2"),
    url("font/just-lovely_slanted.woff") format("woff"),
    url("font/just-lovely_slanted.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

:root {
  --default-font: "Raleway", system-ui, -apple-system, "Segoe UI", "Roboto",
    "Helvetica Neue", "Arial";
  --heading-font: "Lora", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

:root {
  --accent-color: #039ebd;
  --background-color: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #12282c;
  --contrast-color: #ffffff;
  --secondary-color: #ffb200;
  scroll-behavior: smooth;
}

:root {
  --nav-color: #496268;
  --nav-hover-color: #039ebd;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #496268;
  --nav-dropdown-hover-color: #039ebd;
}

body {
  font-family: var(--default-font);
}

/* Header */
.header {
  color: var(--default-color);
  background-color: rgba(0, 0, 0, 0);
  padding: 20px 0;
  transition: 0.4s;
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

@media (max-width: 991px) {
  .header {
    position: sticky;
    padding: 10px 0;
  }
}

.header .header-container {
  background-color: #ffffff;
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  margin-right: 15px;
}

.header .logo-2 img {
  max-height: 50px;
  margin-right: 8px;
}

@media (max-width: 991px) {
  .header .logo img {
    max-height: 45px;
    margin-right: 8px;
  }

  .header .logo-2 img {
    max-height: 30px;
  }
}

.header .btn-daftar,
.header .btn-daftar:focus {
  color: var(--contrast-color);
  background: var(--secondary-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.4s;
}

.header .btn-daftar:hover,
.header .btn-daftar:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--secondary-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .btn-daftar {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navbarmenu {
    order: 3;
  }
}

@media (min-width: 1200px) {
  .navbarmenu {
    padding: 0;
  }

  .navbarmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbarmenu li {
    position: relative;
  }

  .navbarmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navbarmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navbarmenu a,
  .navbarmenu a:focus {
    color: var(--nav-color);
    font-size: 17px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.4s;
    position: relative;
  }

  .navbarmenu a i,
  .navbarmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.4s;
  }

  .navbarmenu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: 0.4s;
  }

  .navbarmenu a:hover:before,
  .navbarmenu li:hover > a:before,
  .navbarmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbarmenu li:hover > a,
  .navbarmenu .active,
  .navbarmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navbarmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.4s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navbarmenu .dropdown ul li {
    min-width: 200px;
  }

  .navbarmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navbarmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navbarmenu .dropdown ul a:hover,
  .navbarmenu .dropdown ul .active:hover,
  .navbarmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navbarmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbarmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navbarmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/*  */

/* Mobile Header */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navbarmenu {
    padding: 0;
    z-index: 1001;
  }

  .navbarmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.4s;
    z-index: 9998;
  }

  .navbarmenu a,
  .navbarmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.4s;
  }

  .navbarmenu a i,
  .navbarmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.4s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navbarmenu a i:hover,
  .navbarmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navbarmenu a:hover,
  .navbarmenu .active,
  .navbarmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navbarmenu .active i,
  .navbarmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navbarmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navbarmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navbarmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navbarmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.4s;
  }

  .mobile-nav-active .navbarmenu > ul {
    display: block;
  }
}
/*  */

/* Banner */
.carousel-control {
  z-index: 1;
  background: transparent;
  border: 0;
}
.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;
}
.carousel-control-pause,
.carousel-control-play {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  align-items: 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: #f9ad3d;
  width: 0%;
  margin: 0px 0px 0px 0px;
  border: none;
  z-index: 11;
  position: relative;
}
@media (min-width: 992px) {
  .carousel-control-pause,
  .carousel-control-play {
    font-size: 50px;
  }
}

.carousel-control-prev-icon {
  background-image: url("../img/carousel-prev.svg");
}

.carousel-control-next-icon {
  background-image: url("../img/carousel-next.svg");
}

.carousel-indicators {
  bottom: 4rem;
}

.carousel-indicators [data-bs-target] {
  width: 30px;
}

@media (min-width: 881px) {
  .carousel-indicators [data-bs-target] {
    width: 70px;
    margin-right: 10px;
    margin-left: 10px;
  }
}

.banner-img {
  width: 100%;
  height: 9rem;
  object-fit: cover;
}

@media (min-width: 992px) {
  .banner-img {
    height: calc(100vh - 3px);
  }
}

.carousel-indicators .active {
  background-color: rgba(249, 173, 61, 1);
}
/*  */

/* Feature */
.section-feature {
  padding: 0;
  position: relative;
  overflow: hidden;
  margin-top: -4.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .section-feature {
    margin-top: 1rem;
  }
}

.section-feature .features-wrapper {
  background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
  border-radius: 15px;
  padding: 1.5rem;
}

.section-feature .features-wrapper .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.section-feature .features-wrapper .feature-item .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  flex-shrink: 0;
}

.section-feature .features-wrapper .feature-item .feature-icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.section-feature .features-wrapper .feature-item .feature-text h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.section-feature .features-wrapper .feature-item .feature-text p {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .section-feature .floating-features .features-wrapper {
    flex-direction: column;
  }
}
/*  */

/* Testimoni */
.section-testimoni {
  margin-top: -40px;
  background: #e6eaef;
}

.section-testimoni .container {
  padding-top: 100px;
  padding-bottom: 1rem;
}

@media (max-width: 991px) {
  .section-testimoni .container {
    padding-top: 70px;
    padding-bottom: 1rem;
  }
}

.section-testimoni .tab-content {
  background: #fff;
  border-radius: 10px;
  padding: 80px;
  position: relative;
}

@media (min-width: 992px) {
  .section-testimoni .tab-content {
    margin-left: -150px;
  }
  .section-testimoni .tab-content-2 {
    margin-right: -150px;
  }
}

.section-testimoni .tab-content-2 {
  margin-left: 0;
}

@media (max-width: 991px) {
  .section-testimoni .tab-content {
    padding: 20px;
  }
}

.section-testimoni .container img {
  max-width: 100%;
  /* height: auto; */
  height: 35rem;
  max-height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .section-testimoni .container img {
    width: 100%;
    height: 10rem;
  }
}

.section-testimoni .tab-content h2 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #3c4d52;
  font-family: var(--heading-font);
}

@media (max-width: 991px) {
  .section-testimoni .tab-content h2 {
    font-size: 35px;
  }
}

@media (min-width: 992px) {
  .section-testimoni .testimoni-card-container {
    padding-top: 18px;
  }
}

.testimoni-item-1 {
  line-height: 1.5em;
  font-size: 0.9rem;
  background-color: #f2f2f2;
  border-top: 6px solid var(--secondary-color);
  padding-top: 25px;
  padding-bottom: 20px;
  padding-right: 30px;
  padding-left: 30px;
  box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
}

.testimoni-item-2 {
  line-height: 1.5em;
  font-size: 0.9rem;
  background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
  border-top: 6px solid var(--secondary-color);
  padding-top: 25px;
  padding-bottom: 20px;
  padding-bottom: 20px;
  padding-right: 30px;
  padding-left: 30px;
  max-width: 520px;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.58);
  color: #fff;
}

.testimoni-item-3 {
  line-height: 1.5em;
  font-size: 0.9rem;
  background-color: #f2f2f2;
  border-top: 7px solid var(--secondary-color);
  padding-top: 25px;
  padding-bottom: 20px;
  padding-right: 30px;
  padding-left: 30px;
  box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .testimoni-item-1 {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: 15px;
  }

  .testimoni-item-3 {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

@media (min-width: 992px) {
  .testimoni-item-1 {
    height: calc(100% - 36px);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    margin-top: 35px;
  }

  .testimoni-item-2 {
    height: calc(100% + 36px);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .testimoni-item-3 {
    height: calc(100% - 36px);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: 36px;
  }
}

.testimoni-item-1 small,
.testimoni-item-2 small,
.testimoni-item-3 small {
  line-height: 1.2em;
}

.testimoni-item-1 img,
.testimoni-item-2 img,
.testimoni-item-3 img {
  margin-bottom: 1.5rem;
  box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
  border-radius: 50% !important;
}

/* Berita */
.section-berita {
  margin-top: -40px;
  background: #e6eaef;
}

.section-berita .container {
  padding-top: 100px;
  padding-bottom: 1rem;
}

@media (max-width: 991px) {
  .section-berita .container {
    padding-top: 70px;
    padding-bottom: 1rem;
  }
}

.section-berita .tab-content {
  background: #fff;
  border-radius: 10px;
  padding: 80px;
  position: relative;
}

@media (min-width: 992px) {
  .section-berita .tab-content {
    margin-left: -150px;
  }
  .section-berita .tab-content-2 {
    margin-right: -150px;
  }
}

.section-berita .tab-content-2 {
  margin-left: 0;
}

@media (max-width: 991px) {
  .section-berita .tab-content {
    padding: 20px;
  }
}

.section-berita .container img {
  max-width: 100%;
  /* height: auto; */
  height: 35rem;
  max-height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .section-berita .container img {
    width: 100%;
    height: 10rem;
  }
}

.section-berita .btn-custom-1 {
  padding: 15px 30px;
  color: #fff;
  background: var(--secondary-color);
}

@media (max-width: 991px) {
  .section-berita .btn-custom-1 {
    padding: 5px 15px;
  }
}

.section-berita .btn-custom-1:hover {
  background: color-mix(in srgb, var(--secondary-color), transparent 15%);
}

.section-berita .btn-custom-1:focus {
  color: #fff;
}

.section-berita .tab-content h2 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #3c4d52;
  font-family: var(--heading-font);
}

@media (max-width: 991px) {
  .section-berita .tab-content h2 {
    font-size: 35px;
  }
}
/*  */

/* Galeri */
.hex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.hex {
  position: relative;
  width: calc(20% - 10px); /* 5 per baris = 20% */
  /* aspect-ratio: 1 / 0.866; */
  aspect-ratio: 1 / 1.125;
  margin: 5px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
}

.hex::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: box-shadow 0.5s;
}

.hex:hover::after {
  box-shadow: inset 0 0 0 200px rgba(36, 36, 36, 0.7);
}

.hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hex .hex-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

.hex .hex-overlay a {
  color: #000000;
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
}

.hex:nth-child(9n + 1),
.hex:nth-child(9n + 2),
.hex:nth-child(9n + 3),
.hex:nth-child(9n + 4),
.hex:nth-child(9n + 5) {
  margin-bottom: 2%;
}

.hex:nth-child(9n + 6),
.hex:nth-child(9n + 7),
.hex:nth-child(9n + 8),
.hex:nth-child(9n + 9) {
  margin-top: -6.5%;
}

@media (max-width: 991px) {
  .hex:nth-child(9n + 6),
  .hex:nth-child(9n + 7),
  .hex:nth-child(9n + 8),
  .hex:nth-child(9n + 9) {
    margin-top: -4.5%;
  }
}

.hex:nth-child(9n + 6) {
  margin-left: calc(10% + 5px);
}

.hex:nth-child(9n + 9) {
  margin-right: calc(10% + 5px);
}

.hex:nth-child(14n + 10),
.hex:nth-child(14n + 11),
.hex:nth-child(14n + 12),
.hex:nth-child(14n + 13),
.hex:nth-child(14n + 14) {
  margin-top: -5%;
}

@media (max-width: 991px) {
  .hex:nth-child(14n + 10),
  .hex:nth-child(14n + 11),
  .hex:nth-child(14n + 12),
  .hex:nth-child(14n + 13),
  .hex:nth-child(14n + 14) {
    margin-top: -4%;
  }
}
/*  */

/* Video */
.section-video {
  position: relative;
  background-color: color-mix(in srgb, #12282c, transparent 20%);
  padding-bottom: 15rem;
}

.section-video-bg {
  filter: none;
  mix-blend-mode: multiply;
  opacity: 0.4;
  pointer-events: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.section-video .first-video iframe {
  width: 100%;
  height: 30rem;
}

@media (max-width: 991px) {
  .section-video .first-video iframe {
    height: 10rem;
  }
}

.section-video .card {
  margin-top: -0.45rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

.section-video-2 {
  margin-top: -15rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .section-video-2 {
    margin-bottom: 8rem;
  }
}

.section-video-2 .video-container iframe {
  width: 100%;
  height: 18rem;
}

@media (max-width: 991px) {
  .section-video-2 .video-container iframe {
    height: 10rem;
  }
}

.section-video-2 .card {
  margin-top: -2rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  transition-duration: 0.4s;
}

@media (min-width: 992px) {
  .section-video-2 .card {
    height: 40%;
    max-height: 11rem;
  }

  .section-video-2 .card:hover {
    transform: translateY(-1rem);
  }
}

@media (max-width: 991px) {
  .section-video-2 .card {
    margin-top: -0.45rem;
    width: 100%;
    padding-bottom: 1.35rem;
  }
}

.section-video-2 .link-media-section-video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  /* border: 1px solid var(--secondary-color); */
  font-size: 12px;
  /* color: var(--secondary-color); */
  border: 1px solid #cccccc;
  color: #cccccc;
  transition: 0.4s;
}

.section-video-2 .link-media-section-video:hover {
  color: #ffffff;
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.framed-video {
  height: 14rem;
}

.framed-video .card {
  height: 14rem;
  font-size: 1rem;
}

@media (min-width: 992px) {
  .framed-video {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  .framed-video .card-body {
    border-top: 6px solid var(--secondary-color);
  }

  .framed-lainnya {
    height: 22rem;
  }

  .framed-lainnya .card {
    height: 22rem;
  }
}
/*  */

/* Akzi Sistem */
.section-akzi-sistem {
  position: relative;
  z-index: 1;
}

.section-akzi-sistem .img-akzi-sistem {
  width: 40px;
  height: 40px;
}

@media (max-width: 991px) {
  .section-akzi-sistem .img-akzi-sistem {
    width: 25px;
    height: 35px;
  }
}

.section-akzi-sistem h3 {
  color: #fff;
  font-family: var(--heading-font);
  transition-duration: 0.4s;
}

.section-akzi-sistem .hover {
  transition-duration: 0.4s;
  background-color: var(--secondary-color);
  color: #fff;
}

.section-akzi-sistem .hover:hover {
  background-color: color-mix(in srgb, #12282c, transparent 20%);
}

.section-akzi-sistem .hover:hover h3 {
  color: #fff;
}
/*  */

/* Footer */
.section-footer {
  color: #ffffff;
  background-color: #000000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: left;
  position: relative;
  z-index: 1;
  border-top: 6px solid var(--secondary-color);
}

.section-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-color: color-mix(in srgb, #12282c, transparent 12%);
}

.section-footer .footer-atas {
  padding-top: 60px;
  padding-bottom: 20px;
}

.section-footer .footer-detail .logo {
  margin-bottom: 0.5rem;
}

.section-footer .footer-detail .logo img {
  max-width: 100%;
  display: block;
}

.section-footer .footer-detail p {
  font-size: 0.8rem;
}

.section-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.4s;
}

.section-footer .link-media-footer a:hover {
  color: #ffffff;
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.section-footer .quick-link {
  color: #ffffff;
}

.section-footer .quick-link:hover {
  color: var(--secondary-color);
}

.section-footer .footer-links {
  margin-bottom: 30px;
}

.section-footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.section-footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.section-footer .footer-links ul li:first-child {
  padding-top: 0;
}

.section-footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  line-height: 1;
}

.section-footer .footer-links ul a:hover {
  color: #a66030;
}

.section-footer .copyright {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.5);
}

.section-footer .copyright p {
  margin-bottom: 0;
  font-size: 0.8rem;
}
/*  */

/* Utility */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.4s;
}

.cursor-pointer {
  cursor: pointer;
}

.h2-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #3c4d52;
  font-family: var(--heading-font);
  line-height: 1em;
}

@media (max-width: 991px) {
  .h2-title {
    font-size: 35px;
  }
}

.img-zoom-effect img {
  transition: all 0.5s;
}

.img-zoom-effect:hover img {
  transform: scale(1.3);
}

.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;
  }
}

.lovely {
  font-family: Just Lovely Slanted, sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  color: var(--secondary-color);
}

@media (min-width: 992px) {
  .gx-lg-custom-1 {
    --bs-gutter-x: 5rem;
  }

  .mt-lg-custom-1 {
    margin-top: 8.5rem;
  }

  .mt-lg-custom-2 {
    margin-top: 10rem;
  }
}

@media (max-width: 991px) {
  .mt-lg-custom-1 {
    margin-top: 1rem;
  }

  .mt-lg-custom-2 {
    margin-top: 1rem;
  }
}
/*  */

/* Content */
.section-deskripsi {
  /* margin-top: 3rem; */
  position: relative;
}

.section-berita-detail .berita-container-2 ul,
.section-deskripsi ul {
  list-style: initial !important;
  /* list-style-position: inside !important; */
  margin-inline-start: 15px;
  padding-inline-start: 40px;
  margin-top: 0;
  margin-bottom: 10px;
}

.section-berita-detail .berita-container-2 ol,
.section-deskripsi ol {
  list-style: decimal !important;
  /* list-style-position: inside !important; */
  margin-inline-start: 15px;
  padding-inline-start: 40px;
  margin-top: 0;
  margin-bottom: 10px;
}

.section-deskripsi tbody tr td {
  /* border: #d3d3d3 1px dotted; */
  display: block;
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .section-deskripsi tbody tr td {
    display: table-cell;
    margin-bottom: initial;
  }
}

.section-berita-detail .berita-container-2 table,
.section-deskripsi table {
  max-width: 100% !important;
  min-width: auto !important;
}

.section-berita-detail .berita-container-2 tbody td,
.section-deskripsi tbody td {
  padding: unset;
  white-space: initial;
}

.section-berita-detail .berita-container-2 img,
.section-deskripsi img {
  max-width: 100% !important;
  /* object-fit: cover; */
  display: initial;
}

@media (max-width: 992px) {
  .section-berita-detail .berita-container-2 img,
  .section-deskripsi img {
    height: auto !important;
  }
}

.section-berita-detail .berita-container-2 iframe,
.section-deskripsi iframe {
  max-width: 100% !important;
}

.section-berita-detail .berita-container-2 p,
.section-deskripsi p {
  margin-bottom: 1rem;
  white-space: initial;
  word-break: break-word;
}
/*  */

/* Berita Detail */
.section-berita-detail .clipboard-container::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.section-berita-detail img {
  max-width: 90% !important;
  max-height: 30rem !important;
  height: auto !important;
  object-fit: cover;
}

.section-berita-detail a {
  text-decoration: none !important;
}

.section-berita-detail a:hover {
  text-decoration: underline !important;
}

.section-berita-detail .berita-container-1 {
  position: relative;
  z-index: 3;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  color: #fff;
  display: inline-block;
  margin-left: 1.5rem;
}

.section-berita-detail .berita-container-1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -2%;
  width: 35vw;
  /* right: 0;
  width: 100vw; */
  height: 80%;
  z-index: -1;
  background-image: linear-gradient(
      180deg,
      hsla(0, 0%, 100%, 0.3),
      hsla(0, 0%, 100%, 0)
    ),
    linear-gradient(180deg, #f9b621, #f9b621);
}

.section-berita-detail .berita-container-1:after {
  content: "";
  position: absolute;
  top: -3%;
  right: 8%;
  width: 35vw;
  /* right: 0;
  width: 100vw; */
  height: 80%;
  z-index: -1;
  background-image: linear-gradient(
      180deg,
      hsla(0, 0%, 100%, 0.3),
      hsla(0, 0%, 100%, 0)
    ),
    linear-gradient(180deg, #f9b621, #f9b621);
}

.section-berita-detail .berita-container-2 {
  font-size: 1rem;
}

.section-berita-detail .btn-share-facebook {
  background-color: #117df2;
  display: flex;
  position: relative;
  width: 9rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  border-radius: 0.3rem;
  box-shadow: 0 0.3rem 0.8rem 0 rgb(0 0 0 / 8%);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}

.section-berita-detail .btn-share-whatsapp {
  background-color: #43d854;
  display: flex;
  position: relative;
  width: 9rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  border-radius: 0.3rem;
  box-shadow: 0 0.3rem 0.8rem 0 rgb(0 0 0 / 8%);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}

.section-berita-detail .btn-share-link {
  background-color: #000;
  display: flex;
  position: relative;
  width: 9rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  border-radius: 0.3rem;
  box-shadow: 0 0.3rem 0.8rem 0 rgb(0 0 0 / 8%);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}
/*  */

/* Lainnya */
.section-lainnya .btn-custom-1 {
  padding: 15px 30px;
  color: #fff;
  background: var(--secondary-color);
}

@media (max-width: 992px) {
  .section-lainnya .btn-custom-1 {
    padding: 5px 15px;
  }
}

.section-lainnya .btn-custom-1:hover {
  background: color-mix(in srgb, var(--secondary-color), transparent 15%);
}

.section-lainnya .btn-custom-1:focus {
  color: #fff;
}

.berita-hover {
  color: #3c4d52;
  transition-duration: 0.4s;
}

.berita-hover:hover {
  color: var(--secondary-color);
}
