/*
Theme Name: Halal Fun Theme
Theme URI: https://halalfunconsulting.com/ (Ganti jika URL sebenarnya berbeda)
Author: Halal Fun Consulting / Nama Anda  (Sesuaikan nama author)
Author URI: https://halalfunconsulting.com/ (Ganti jika URL author berbeda)
Description: Tema kustom untuk Halal Fun Consulting berdasarkan desain HTML, CSS, dan JS.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: halalfun-theme
Tags: custom-logo, custom-menu, featured-images, theme-options, responsive-layout, one-column, two-columns
*/

:root {
  /* COLOR PALETTE */
  --primary-color: #00348a;
  --secondary-color: #677791;
  --tertiary-color: #b09673;

  /* BACKGROUND COLOR */
  --background-color: #809ac5;

  /* GENERAL COLOR */
  --color-dark: #000;
  --color-white: #fff;

  /* BORDER RADIUS */
  --border-radius: 10px;

  /* FONT SIZE */
  --font-heading: calc(1vw + 3rem);
  --font-subheading: 2rem;
  --font-small: 0.8rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

/* GENERAL STYLE CLASS */
.container {
  margin: 0 auto;
  padding: 2rem 64px;
  position: relative;
  max-width: 100rem;
}
@media (max-width: 40rem) {
  .container {
    padding: 1rem;
  }
}
.m-bottom-small {
  margin-bottom: 2rem;
}
.color-primary {
  color: var(--primary-color);
}
.section-subheading {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 500;
  text-align: center;
}
.section-heading {
  font-size: 48px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}
.section-desc {
  text-align: center;
  max-width: 70rem;
  margin: 0 auto;
  font-size: 20px;
}
.btn {
  display: inline-block;
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  color: var(--color-white);
  text-align: center;
  background-color: var(--primary-color);
}
/* NAV STYLE */
.site-nav {
  padding: 1rem;
  display: flex;
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 100;
  box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.6);
}
.site-nav--secondary {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 1rem;
}
.site-links {
  display: flex;
  list-style: none;
  align-items: center;
}
.site-links > li {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
}
.site-links > * {
  transition: all 0.3s ease;
}
.site-links:hover > *:not(:hover) {
  opacity: 0.6;
}
.site-cta--btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: pulse 1.5s ease infinite;
  transition: all 1s ease;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 52, 138, 1);
  }
  100% {
    box-shadow: 0 0 0 0.5rem rgba(0, 52, 138, 0);
  }
}
.site-cta--btn div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.4rem;
  height: 1.4rem;
  background-color: var(--background-color);

  border-radius: 50%;
}
.site-links a:link,
.site-links a:visited {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.site-cta a:link,
.site-cta a:visited {
  background-color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  color: var(--color-white);
  text-decoration: none;
}
.dropdown-nav {
  position: relative;
}
.dropdown-nav > ul {
  display: none;
}
.dropdown-trigger {
  position: relative;
  z-index: 10;
}
.dropdown-trigger img {
  transition: all 0.7s ease;
}
.dropdown-nav:hover > .dropdown-trigger img {
  transform: rotate(180deg);
}
.dropdown-nav:hover > .dropdown-trigger.flag img {
  transform: none;
}
.flag {
  display: flex;
  align-items: center;
  gap: 5px;
}
.flag img {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
.dropdown-nav:hover > ul {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  background-color: var(--color-white);
  z-index: 5;
  list-style: none;
  border-radius: var(--border-radius);
  width: 100%;
  padding-top: 3.1rem;
  animation: fadeIn 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.dropdown-nav--flag:hover > ul {
  width: 7rem;
}
.dropdown-nav--jasa:hover > ul {
  width: calc(100% + 3rem);
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
.dropdown-nav:hover > ul li {
  margin-bottom: 0.2rem;
}

/* HEADER STYLE */
.homepage-header {
  height: 100vh;
  padding: 2rem;
  position: relative;
  min-height: 47rem;
}
.header-normal {
  padding: 2rem;
  background-image: url(./assets/images/header-normal.webp);
  background-size: cover;
  background-position: center;
}
.header-normal--content {
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  text-align: center;
}
.header-normal--text h1 {
  font-size: var(--font-heading);
  color: var(--color-white);
  font-weight: 400;
}
.header-normal--text p {
  font-size: 2rem;
  color: var(--color-white);
  font-weight: 400;
}
@media (max-width: 50rem) {
  .homepage-about {
    position: relative;
    z-index: 50;
    margin-top: -15rem;
  }
  .header-normal--text h1 {
    font-size: 2rem;
  }
  .header-normal--text p {
    font-size: 1rem;
  }
  .header-normal--content {
    padding: 6rem 0;
  }
}
.header-about {
  height: 100vh;
  padding: 2rem;
  position: relative;
}
.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.header-img {
  object-position: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 10;
  position: absolute;
}
.header-content {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 100%;
  height: 100%;
  /* padding: 2.5rem; */
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 80rem;
  margin-top: 4rem;
}
@media (max-width: 1005px) {
  .header-content {
    margin-top: 8rem;
  }
}
@media (max-width: 45rem) {
  .header-content {
    margin-top: 0;
  }
}
.header-about .header-content {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
@media (max-width: 50rem) {
  .header-about .header-content {
    justify-content: flex-start;
  }
}
.header-about h1 {
  font-weight: 400;
}
.header-about .header-cta {
  justify-content: center;
}
.header-content h1 {
  font-size: 55px;
  color: var(--color-white);
  font-weight: 600;
}
.highlight {
  background-color: var(--color-white);
  color: var(--primary-color);
  padding: 0 0.5rem;
}
.header-content p {
  font-size: 20px;
  color: var(--color-white);
}
.header-content--img {
  text-align: center;
}
.header-content--img img {
  width: 100%;
  transform: translateY(calc(5rem + 5vh));
}

.header-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header-cta-links {
  color: var(--primary-color);
  background-color: var(--color-white);
  padding: 0.5rem 2rem;
  margin-top: 2rem;
  border: none;
  display: flex;
  align-items: center;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

.header-cta-links img {
  width: 3rem;
  cursor: pointer;
}
.header-cta-links span {
  color: var(--color-white);
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
}
.homepage-links {
  width: 230px;
  height: 52px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  justify-content: center;
  gap: 5px;
}
.homepage-links span {
  color: var(--primary-color);
  font-size: 20px;
}
.homepage-links img {
  width: 17.5px;
  height: 13.5px;
}
.header-cta-links--btn {
  background-color: transparent;
  gap: 5px;
  padding: 0.5rem 0;
}
/* BUTUH REVISI */
/* @media (max-width: 40rem) {
    .homepage-links {
      width: 132px;
      height: 26px;
    }
    .homepage-links span {
      color: var(--primary-color);
      font-size: 14px;
    }
    .homepage-links img {
      width: 17.5px;
      height: 13.5px;
    }
  } */
.header-cta-links--btn img {
  width: 32px;
  height: 32px;
}
.header-about--img {
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 50;
  gap: 1rem;
  padding: 0 2rem;
}
@media (max-width: 60rem) {
  .header-about--img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    transform: translateY(0);
    bottom: 100px;
  }
}
.about-img--container {
  margin-top: 2rem;
  width: calc(20vw + 4rem);
  max-width: 20rem;
  max-height: 20rem;
  height: calc(20vw + 4rem);
  overflow: hidden;
  border-radius: var(--border-radius);
}
.about-img--container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
/* HEADER RESPONSIVE STYLE */
@media (max-width: 63rem) {
  .site-nav--secondary {
    display: none;
    visibility: hidden;
  }
  .site-nav {
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 0;
    position: absolute;
  }
  .header-content h1 {
    font-size: calc(1vw + 2rem);
  }
  .header-cta-links {
    padding: 5px 10px;
    letter-spacing: 0;
    font-size: var(--font-small);
  }
  .header-cta-links--btn {
    padding: 0;
  }
}
@media (max-width: 47rem) {
  .header-content h1 {
    font-size: calc(3vw + 2rem);
  }
  .header-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 8rem;
    align-items: normal;
  }
  .header-content--img {
    max-width: 100%;
    text-align: center;
  }
  .header-content--img img {
    transform: none;
    max-width: 30rem;
    max-width: 20rem;
  }
}
/* ABOUT STYLE (HOMEPAGE) */
.section-about {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: center;
}

.about-img {
  overflow: hidden;
  text-align: center;
  border-radius: 12px;
}
.about-img img {
  max-width: 100%;
}
.about-subheading {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.about-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-desc p:not(:first-child) {
  margin-bottom: 2rem;
}

.about-link {
  padding: 1rem 2rem;
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--color-white);
  border-radius: var(--border-radius);
  font-size: var(--font-small);
  letter-spacing: 1px;
}
@media (max-width: 50rem) {
  .section-about {
    grid-template-columns: 1fr;
    margin-top: 3rem;
    text-align: center;
  }
}
@media (max-width: 40rem) {
  .section-about {
    margin-top: 2rem;
    padding: 0;
  }
}
@media (max-width: 20rem) {
  .section-about {
    margin-top: 0rem;
  }
}
/* SECTION BANNER */
.banner-info {
  background-color: #f7faff;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  margin-top: 2rem;
}
.banner-info--secondary {
  background-image: url(./assets/images/bg-cta-info.webp);
  border-radius: 0;
  padding: 4rem 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 3rem;
}
.banner-info--secondary span {
  color: var(--color-white) !important;
}
.banner-info--content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.banner-info--content span {
  font-style: italic;
  color: var(--primary-color);
  font-size: 25px;
}
.banner-info--content span:first-child {
  font-size: 50px;
  font-weight: bold;
}

@media (max-width: 35rem) {
  .banner-info {
    background-color: #f7faff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
    gap: 1rem;
  }
  .banner-info img {
    width: 32px;
    height: 32px;
  }

  .banner-info--content {
    display: flex;
    align-items: center;
  }
  .banner-info--content span {
    font-style: italic;
    color: var(--primary-color);
    font-size: 12px;
  }
  .banner-info--content span:first-child {
    font-size: 12px;
    font-weight: bold;
  }
}

/* SECTION BANNER CTA */
.banner-cta {
  padding: 2rem 0;
  background-color: var(--primary-color);
  color: var(--color-white);
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  text-align: left;
}
@media (max-width: 60rem) {
  .banner-cta {
    text-align: center;
  }
}

.banner-cta p {
  font-size: 2rem;
  max-width: 50rem;
}
.banner-cta a:link,
.banner-cta a:visited {
  text-decoration: none;
  padding: 0.5rem 2rem;
  background-color: var(--color-white);
  color: var(--primary-color);
  border-radius: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 47rem) {
  .banner-cta p {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
  .banner-cta {
    gap: 2rem;
  }
  .banner-cta a:link {
    padding: 5px 2rem;
  }
}
/* SERVICES STYLE */
.section-slider {
  padding: 4rem 0;
}
.swiper-slide {
  height: auto !important;
  padding: 0 1rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
  position: relative;
}
.serviceSwiper .swiper-slide > div {
  height: 100%;
}
.serviceSwiper .swiper-slide .swiper-slide--card {
  height: 522px;
}
.serviceSwiper .swiper-slide .swiper-slide--card img {
  height: 360px;
  max-height: 50rem;
  transform: scale(1.1);
}
.serviceSwiper .swiper-desc {
  /* padding: 0 1rem; */
}
.serviceSwiper .swiper-desc--heading {
  margin-bottom: 0;
}
@media (max-width: 50rem) {
  .serviceSwiper .swiper-slide .swiper-slide--card {
    height: 480px;
    padding-bottom: 1rem;
  }
  .serviceSwiper .swiper-slide .swiper-slide--card img {
    height: 292px;
    max-height: 50rem;
  }
}
.our-team {
  display: flex;
  margin: 2rem 0;
  flex-wrap: wrap;
  justify-content: center;
  /* gap: 1rem; */
}
.our-team .swiper-slide {
  width: auto;
}
.our-team .swiper-slide > div {
  width: 13rem;
  min-height: 13rem;
}
.our-team .swiper-slide img {
  max-height: 100%;
}
.swiper-slide--card {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 5px 5px 1rem rgba(0, 0, 0, 0.5);
}
.swiper-slide--secondary {
  box-shadow: 0 0 0 2px var(--primary-color), 5px 5px 0 3px var(--primary-color);
  justify-content: center;
  border-radius: var(--border-radius);
}
.swiper-slide--secondary .swiper-desc--heading {
  color: var(--primary-color);
}
.swiper-slide img {
  width: 100%;
  max-height: 15rem;
  object-fit: cover;
}
.swiper-desc {
  padding: 1rem;
  font-size: var(--font-small);
}
.swiper-desc--heading {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.swiper-wrapper {
  padding: 3rem 0;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: var(--primary-color);
  width: 1rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}
.swiper-desc--list {
  list-style: none;
  margin-top: 1rem;
}
.swiper-slide--news {
  padding: 2px;
  padding-bottom: 0;
  position: relative;
}
.swiper-desc--news {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 2rem 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--color-white);
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0)
  );
  font-size: var(--font-small);
}
.swiper-desc--news p:last-child {
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.swiper-slide--news img {
  width: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
}
/* MISSION STYLE */
.mission-container {
  display: flex;
  flex-direction: column;
}

.mission-content {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding: 2rem 1rem;
  border-bottom: 1px solid black;
  transition: all 0.3s ease;
}
.mission-content:hover {
  background-color: var(--primary-color);
  color: var(--color-white);
  border-radius: var(--border-radius);
}

.mission-content--heading {
  display: flex;
  align-items: center;
  max-width: 30rem;
  gap: 10px;
}

.mission-content--heading span:first-child {
  font-size: 4rem;
}
.mission-content--heading span:last-child {
  font-size: 1.4rem;
  font-weight: bold;
}
.section-mission--cta {
  text-align: center;
  margin-top: 2rem;
}
.section-mission--cta .btn {
  padding: 0.5rem 4rem;
}
@media (max-width: 40rem) {
  .mission-content {
    grid-template-columns: 1fr;
  }
}
/* SECTION CTA STYLE */
.section-cta {
  background-image: linear-gradient(
      to top,
      rgba(0, 52, 138, 0.5),
      rgba(0, 52, 138, 0.5)
    ),
    url(./assets/images/bg-cta.webp);
  padding: 4rem 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-container {
  text-align: center;
}
.cta-container h5 {
  font-size: 3rem;
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 2rem;
}
.cta-container p {
  max-width: 35rem;
  margin: 0 auto;
  color: var(--color-white);
  margin-bottom: 3rem;
}

.btn-cta {
  background-color: var(--color-white);
  color: var(--primary-color);
  display: flex;
  max-width: 16rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
}
@media (max-width: 40rem) {
  .cta-container h5 {
    font-size: 1.3rem;
  }
  .cta-container {
    padding: 0 10px;
  }
}
/* FOOTER STYLE */
.footer {
  padding: 4rem 2rem 2rem 2rem;
  display: grid;
  grid-template-columns: 30rem 1fr;
  gap: 4rem;
}
.footer a:link,
.footer a:visited {
  text-decoration: none;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 5px;
}
.footer-about img {
  margin-bottom: 1rem;
}
.footer-about hr {
  background-color: var(--primary-color);
  margin-bottom: 2rem;
}
.footer-about p {
  margin-bottom: 2rem;
}
.btn-footer {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  max-width: 15rem;
  gap: 1rem;
  color: var(--color-white) !important;
}
.btn-footer img {
  margin: 0;
}
.footer-links--container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid black;
  padding-bottom: 2rem;
}
.footer-links--section p {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.footer-links--section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer--info {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-about--divider {
  margin-top: 2rem;
}
.footer-about--select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
}
.footer-select--container {
  position: relative;
  max-width: 243px;
}
.footer-select--container::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(./assets/icon/Down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 10;
}
.footer-copy {
  text-align: center;
  grid-column: 1 / -1;
}
/* FOOTER RESPONSIVE */
@media (max-width: 63rem) {
  .footer-links--container {
    flex-direction: column;
    gap: 2rem;
  }
  .footer--info {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 53.2rem) {
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 40rem) {
  .mission-content {
    margin-top: 0;
    padding: 1rem 1rem;
  }
  .header-content h1 {
    font-size: 1.8rem;
  }
  .header-cta {
    justify-content: flex-start;
  }
  .mission-content--heading {
    align-items: flex-start;
    gap: 1rem;
  }
  .mission-content--heading span:first-child {
    font-size: 3rem;
  }
  .mission-content--heading span:last-child {
    font-size: 1.1rem;
  }
}

/* OUR TEAM STYLE */
.our-team .swiper-slide {
  display: flex;
  justify-content: center;
}
.swiper-slide--team {
  border-radius: var(--border-radius);
  border: 2px solid var(--color-dark);
  overflow: hidden;
  max-width: 20rem;
  position: relative;
  box-shadow: 5px 5px 1rem 0 rgba(0, 0, 0, 0.3);
}
.swiper-slide--team img {
  width: 100%;
}
.img-author {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 5px;
  text-align: center;
  border-top: 2px solid var(--color-dark);
  height: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.img-author p:first-child {
  color: var(--primary-color);
  font-weight: bold;
}
/* ABOUT US STYLE */
.about-us.section-about {
  margin-top: 9rem;
}
.about-us img {
  transform: scale(1.1);
}
.about-us--card {
  box-shadow: 5px 5px 1rem 0 rgba(0, 0, 0, 0.3);
}
.header-about .header-content {
  margin-top: 10rem;
}
.about-us h5 {
  color: var(--primary-color);
}
.section-vision {
  background-color: var(--primary-color);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--border-radius);
  color: var(--color-white);
}
.section-vision .heading {
  font-size: var(--font-heading);
  margin-bottom: 1rem;
}
.section-vision .desc {
  font-size: 20px;
}
@media (max-width: 62rem) {
  .header-about .header-content {
    margin-top: 4rem;
  }
  .about-us.section-about {
    margin-top: 9rem;
  }
  .section-vision .desc {
    font-size: 16px;
  }
}
@media (max-width: 35rem) {
  .about-us.section-about {
    margin-top: 15rem;
  }
}
@media (min-width: 753px) and (max-width: 960px) {
  .header-about .header-content {
    margin-top: 9rem;
  }
}
/* CEO STYLE */
.ceo-img img {
  overflow: hidden;
  box-shadow: none;
}
.ceo-img {
  max-width: 30rem;
  max-height: 40rem;
  border-radius: var(--border-radius);
  box-shadow: 1rem 1rem 2rem 0 rgba(0, 0, 0, 0.3);
}
.section-bio {
  margin-bottom: 3rem;
}
.section-bio--heading {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.section-bio--list {
  margin-left: 1rem;
  font-style: italic;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 50rem) {
  .ceo-about {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 3rem;
  }
}

/* BENEFIT STYLE */
.benefit-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  justify-items: center;
}
.benefit-container > div {
  padding: 1rem;
}
.benefit-content {
  max-width: 20rem;
  border-radius: var(--border-radius);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.3);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.benefit-content hr {
  background-color: var(--primary-color);
  height: 3px;
  margin-right: -15px;
}
.benefit-content img {
  width: 64px;
  height: 64px;
}
.benefit-content--heading {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
}
.benefit-content--subheading {
  font-size: 14px;
  color: var(--primary-color);
}
.section-benefit {
  padding: 2rem 0;
  margin-bottom: 4rem;
}
.section-benefit h2 {
  margin-bottom: 2rem;
}
.benefitSwiper {
  display: none;
  height: 0;
  visibility: hidden;
}

@media (max-width: 50rem) {
  .benefit-container {
    display: none;
    visibility: hidden;
  }
  .benefit-content {
    height: 100%;
  }
  .benefitSwiper .swiper-slide {
    display: flex;
    justify-content: center;
  }
  .benefitSwiper {
    visibility: visible;
    height: auto;
  }
}

/* STYLE LAYANAN */
.section-layanan {
  margin-bottom: 2rem;
}
.layanan-img {
  padding: 5px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius);
  display: flex;
}
.layanan-img img {
  border-radius: var(--border-radius);
}
.layanan-cta {
  background-color: var(--primary-color);
  padding: 5px 10px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  color: var(--color-white);
  max-width: 15rem;
}

@media (max-width: 50rem) {
  .layanan-cta {
    margin: 0 auto;
  }
}

/* KARIR STYLE */
.section-karir .section-heading {
  text-align: left;
}

.karir-container {
  margin: 2rem 0;
}

.karir-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.karir-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
}

.karir-cta a {
  text-decoration: none;
  display: flex;
  gap: 3px;
  color: var(--color-dark);
}

.karir-info {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.karir-heading {
  font-size: 1.4rem;
}
.karir-info > div {
  display: flex;
  gap: 5px;
  font-size: 12px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid var(--color-dark);
  border-radius: 20px;
}

.karir-req {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.karir-req ul {
  margin-left: 1rem;
}

.section-application {
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: 5px 5px 2rem rgba(0, 0, 0, 0.3);
}
@media (max-width: 50rem) {
  .karir-info > div {
    gap: 5px;
    padding: 1px 10px;
  }
  .karir-cta {
    position: absolute;
    top: 0;
    right: 0;
  }
  .karir-req {
    grid-template-columns: 1fr;
  }
  .karir-btn {
    font-size: 12px;
  }
}
.karir-btn {
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid var(--color-dark);
  margin-top: 2rem;
  display: inline-block;
}
.application-heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-kontak {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 50rem) {
  .section-kontak {
    grid-template-columns: 1fr;
  }
}
.section-kontak--heading {
  font-size: var(--font-heading);
  margin-bottom: 2rem;
}
.kontak-form input,
.kontak-form textarea {
  width:100%;
  margin-bottom:2rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  border: none;
  box-shadow: 5px 5px 1rem rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
}
.info-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  box-shadow: 5px 5px 1rem rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.card-heading {
  font-size: 1.4rem;
  font-weight: bold;
}

.info-card img {
  width: 3rem;
}
.form-button {
  padding: 10px;
  display: block;
  font-size: 16px;
  background-color: var(--primary-color);
  color: var(--color-white);
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 5px 5px 1rem rgba(0, 0, 0, 0.3);
  width: 100%;
}
/* MOBILE STYLE */
#menuButton {
  color: var(--color-dark);
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 4px;
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: none;
  visibility: hidden;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--primary-color);
  transition: left var(--transition-speed) ease;
  z-index: 1000;
  padding: 1rem;
  overflow: auto;
}
.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.menu-list {
  list-style: none;
  padding: 2rem 0;
}

.menu-list li {
  margin: 0.5rem 0;
  color: var(--color-white);
}

.menu-list a {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  align-items: center;
}

.submenu {
  display: none;
  list-style: none;
  /* background-color: rgba(255, 255, 255, 0.1); */
  padding-left: 1rem;
}

.submenu.active {
  display: block;
}

.dropdown-toggle {
  position: relative;
}
.dropdown-img {
  width: 20px;
  height: 20px;
  background-color: var(--background-color);
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
.dropdown-menu--icon {
  display: flex;
  align-items: center;
  gap: 5px;
}
.side-menu.active {
  left: 0;
}
@media (max-width: 63rem) {
  #menuButton {
    display: block;
    visibility: visible;
  }
}

.whySwipper .swiper-slide--secondary {
  width: 389px;
  height: 389px;
}

.whySwipper p {
  font-size: 16px;
}
.whySwipper .swiper-desc--heading {
  font-size: 25px;
}
.swiper-list > div {
  width: 14px;
  height: 14px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c1ccdd;
  border-radius: 50%;
}
.swiper-list > div img {
  width: 9.43px;
  height: 9.43px;
}
.swiper-list {
  display: flex;
  gap: 10px;
  align-items: center;
}
.swiper-list p {
  font-size: 14px;
}
.img-author {
  justify-content: flex-start;
  margin-top: 20px;
}

.img-author p:first-child {
  font-size: 16px;
}
.img-author p:last-child {
  font-size: 14px;
}
.swiper-slide--news {
  width: 438px;
  height: 563px;
}
.swiper-slide--news img {
  height: 100% !important;
}
.about-subheading {
  font-size: 24px;
  font-weight: 600;
}
.about-heading {
  font-size: 48px;
  font-weight: 600;
  color: var(--primary-color);
}
@media (max-width: 50rem) {
  .whySwipper .swiper-slide--secondary {
    width: auto;
    height: 389px;
  }
  .swiper-slide--news {
    width: auto;
  }
  .about-heading {
    font-size: 28px;
    color: var(--color-dark);
  }
  .about-subheading {
    font-size: 16px;
  }
  .section-heading {
    font-size: 28px;
  }
  .section-desc {
    font-size: 12px;
  }
  .homepage-links {
    width: 132px;
    height: 26px;
    font-size: 14px;
  }
  .homepage-links span {
    font-size: 10px;
    padding-inline-start: 0;
  }
  .swiper-list p {
    font-size: 12px;
  }
  .whySwipper p {
    font-size: 12px;
  }
  .whySwipper .swiper-desc--heading {
    font-size: 18px;
  }
}
@media (max-width: 1300px) {
  .container {
    padding: 2rem;
  }
  .section-about {
    gap: 2rem;
  }
}
@media (min-width: 1440px) {
  .section-about {
    gap: 2rem;
  }
}

.videoContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
}

/* GOOGLE MAPS IFRAME STYLE */
.iframeContainer {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.iframe-maps {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.3);
}

/* FAQ STYLES */
.faq-container {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}
.faq-container h5 {
  margin-bottom: 2rem;
  font-size: 2em;
}
@media (max-width: 50rem) {
  .faq-container {
    padding: 0;
  }
  .faq-container h5 {
    font-size: 1.5rem;
  }
}

.faq-item {
  border-bottom: 1px solid #000;
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem 0;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: #333;
}

.icon {
  font-size: 1.5em;
  color: #666;
  transition: transform 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1rem;
  margin-bottom: 1rem;
}

.faq-answer p {
  margin: 0;
  padding: 1rem 0;
  color: #666;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}
#artikelContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
#artikelContainer article {
  border-bottom: 1px solid #000;
}
#artikelContainer a:link,
#artikelContainer a:visited {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 50rem) {
  #artikelContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 40rem) {
  #artikelContainer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
#artikel {
  border-bottom: 1px solid black;
}
#artikel img {
  width: 100%;
  height: 100%;
}
.entry-header > img {
  width: 100%;
  height: 100%;
}
#artikelContainer .entry-meta {
  display: flex;
  gap: 1rem;
}
#artikelContainer .entry-title {
  font-weight: 500;
  margin-bottom: 1rem;
}
#artikelContainer .entry-content {
  margin-bottom: 1rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.pagination a {
  color: var(--primary-color);
  text-decoration: none;
}

.wp-post-image {
  max-width: 100%;
}

.kontak-info a:link,
.kontak-info a:visited {
  text-decoration: none;
  color: inherit;
}
.kontak-info a:hover,
.kontak-info a:active {
  color: var(--primary-color);
}
.berita-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: blue;
}
