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

/*--------------------
Global CSS
--------------------*/

:root {
  --main-color: #ef8f00;
  --secondary-color: #134074;
  --tertiary-color: #eef4ed;
  --secondary-dark-color: #180161c;
  --color-1: #ef8f00;
  --color-2: #f5ae10;
  --color-3: #09d69c;
  --color-4: #180161;
  --bg-dark: #2b2c2f;
  --main-to-dark-color: var(--secondary-color);
  --dark-to-main-color: var(--bg-dark);
  --shadow-black-100: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-black-300: 0 5px 15px rgba(0, 0, 0, 0.3);
  --black-900: #000000;
  --black-400: #555555;
  --black-100: #f7f7f7;
  --black-000: #ffffff;
  --black-alpha-100: rgba(0, 0, 0, 0.05);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  background-color: #ffffff;
  line-height: 1.5;
}

body.dark {
  background-color: var(--bg-dark);
  --black-100: var(--bg-dark);
  --black-000: var(--bg-dark);
  --main-to-dark-color: var(--bg-dark);
  --dark-to-main-color: var(--secondary-color);
  --shadow-black-100: var(--shadow-black-300);
  --black-alpha-100: rgba(255, 255, 255, 0.05);
  --black-900: #ffffff;
  --black-400: #bbbbbb;
}

* {
  margin: 0;
  padding: 0;
  outline: none !important;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  list-style: none;
}

.none-sm {
  display: block;
}

.btn-1 {
  background-color: var(--main-color);
  padding: 5px;
  border: none;
  color: #eee;
  border-radius: 30px;
  font-size: 14px;
  text-transform: capitalize;
  transition: all 0.5s ease;
  box-shadow: var(--shadow-black-300);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.icon-btn-1 {
  position: absolute;
  left: -23%;
  right: -20%;
  top: 30%;
  z-index: 2;
  bottom: 0;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
  opacity: 0;
  color: #eee;
}

.btn-1:hover .icon-btn-1 {
  transform: scale(1.1);
  opacity: 1;
}

.btn-1::before {
  content: "";
  background: var(--main-color);
  position: absolute;
  color: #eee;
  z-index: 1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s;
}

.btn-1:hover::before {
  transform: skewX(-45deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-1 span {
  transition: all 0.2s ease-in-out;
}

.btn-1:hover span {
  opacity: 0;
  transform: scale(-1);
}

.btn-2 {
  background-color: var(--main-color);
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  color: #ffffff;
  font-size: 16px;
  text-transform: capitalize;
  transition: all 0.5s ease;
  box-shadow: var(--shadow-black-100);
  font-weight: 500;
}

.btn-2:focus {
  box-shadow: var(--shadow-black-100);
}

.btn-2:hover {
  color: var(--main-color);
  background-color: #ffffff;
}

.btn-3 {
  background-color: var(--main-color);
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  color: #ffffff;
  font-size: 20px;
  text-transform: capitalize;
  transition: all 0.5s ease;
  box-shadow: var(--shadow-black-100);
  font-weight: 500;
}

.btn-3:focus {
  box-shadow: var(--shadow-black-100);
}

.btn-3:hover {
  color: var(--main-color);
  background-color: #ffffff;
}

.btn-4 {
  background-color: var(--main-color);
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  color: #ffffff;
  font-size: 20px;
  text-transform: capitalize;
  animation: pulse_02 1.5s ease-in;
  box-shadow: var(--shadow-black-100);
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}

.btn-4:focus {
  box-shadow: var(--shadow-black-100);
}

.btn-4:hover {
  color: var(--main-color);
  background-color: #ffffff;
}

.btn-hero {
  background-color: var(--main-color);
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  color: transparent;
  font-size: 16px;
  text-transform: capitalize;
  transition: all 0.5s ease;
  box-shadow: 1px 2px 5px black;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.btn-hero:focus {
  box-shadow: var(--shadow-black-300);
}

.btn-hero:hover {
  color: #ffffff;
}

.icon-btn-hero {
  color: #eeee;
  position: absolute;
  transition: transform 0.3s ease-in-out;
  font-size: 17px;
  left: 15px;
  z-index: 2;
}

.btn-hero:hover .icon-btn-hero {
  color: #eeee;
  transform: translateX(33px) scale(1.4);
}

.btn-hero:hover .dashboard-icon {
  color: #eeee;
  transform: translateX(55px) scale(1.4);
}

.btn-hero span {
  color: #f7f7f7;
  position: relative;
  padding-left: 23px;
  left: 0;
  transition: left 0.3s ease-in-out;
}

.btn-hero:hover span {
  left: 110%;
}

.btn-hero::before {
  content: "";
  background: var(--secondary-dark-color);
  position: absolute;
  width: 10px;
  height: 58px;
  z-index: 1;
  left: -10%;
  right: 105%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  top: -5px;
  bottom: 0;
  transition: width 0.4s;
}

.btn-hero:hover::before {
  width: 260px;
}

@keyframes spin_01 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes bounceTop_01 {
  0%,
  100% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(0px);
  }
}

@keyframes bounceTop_02 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  75% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse_01 {
  0% {
    transform: scale(0.94);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.94);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulse_02 {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse_03 {
  0% {
    transform: translateY(-200px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse_04 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomInOut_01 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.effect-wrap .effect {
  position: absolute;
  z-index: -1;
}

.effect-wrap .effect-1 {
  left: 25%;
  top: 15%;
  font-size: 20px;
  color: var(--color-2);
  animation: spin_01 5s linear infinite;
}

.effect-wrap .effect-2 {
  right: 5%;
  top: 20%;
  font-size: 25px;
  color: rgba(255, 255, 255, 0.5);
  animation: spin_01 7s linear infinite;
}

.effect-wrap .effect-3 {
  left: 2%;
  top: 64%;
  font-size: 25px;
  color: var(--color-1);
  animation: bounceTop_01 3s linear infinite;
}

.section-padding {
  padding: 90px 0px;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  color: var(--black-900);
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  margin: 0;
}

.section-title h2 span {
  color: var(--main-color);
  text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff,
    1px 1px 0 #ffffff;
}

.owl-carousel .owl-dots {
  padding: 0 15px;
  text-align: center;
  margin-top: 20px;
}

.owl-carousel button.owl-dot {
  height: 6px;
  width: 24px;
  background-color: #dddddd;
  display: inline-block;
  margin: 0 4px;
  border-radius: 5px;
}

.owl-carousel button.owl-dot.active {
  background-color: var(--secondary-dark-color);
}

.corousel-warp {
  position: relative;
}

/* Gaya Tombol Navigasi */
.custom-nav {
  position: relative;
  z-index: 2;
  top: 350px;
  bottom: 50%;
  opacity: 0.4;
}

.custom-nav .prev-btn {
  left: 0;
}

.custom-nav .next-btn {
  right: 0;
}

.custom-nav .prev-btn,
.custom-nav .next-btn {
  background-color: var(--main-color);
  color: #fff;
  padding: 5px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 50px;
  font-weight: bold;
  position: absolute;
}

/*--------------------
Preloader
--------------------*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2100;
  background-color: var(--main-to-dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader span {
  display: block;
  height: 60px;
  width: 60px;
  background-color: var(--tertiary-color);
  border-radius: 50%;
  animation: zoomInOut_01 1s ease infinite;
}

/*--------------------
Navbar
--------------------*/
.navbar {
  background-color: transparent;
  padding: 20px 0;
  transition: all 0.5s ease;
}

.navbar .nav-link {
  display: flex;
  align-items: center;
}

.navbar .nav-link i {
  width: 22px;
  text-align: center;
  margin-right: 8px;
}

.navbar.navbar-shrink {
  box-shadow: 0 10px 10px rgba(255, 255, 255, 0.1);
  background-color: var(--secondary-color);
  padding: 10px 0;
  font-size: 10px;
}

.navbar.navbar-shrink .navbar-nav {
  margin: auto;
}

.navbar > .container {
  padding: 0 15px;
}

.navbar .navbar-brand {
  font-size: 30px;
  color: #ffffff;
  font-weight: 500;
  /* text-transform: capitalize; */
}

.navbar .nav-item {
  margin-right: 40px;
}

.navbar .nav-item .nav-link {
  color: #ffffff;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 300;
  padding: 5px 0;
  position: relative;
}

.navbar .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 2px;
  background-color: var(--tertiary-color);
  transition: all 0.5s ease;
  transform: scale(0);
}

.navbar .nav-item .nav-link.active::before,
.navbar .nav-item .nav-link:hover::before {
  transform: scale(1);
}

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

/*--------------------
Hero Section
--------------------*/
.hero {
  min-height: 100vh;
  padding: 90px 0;
  background-color: var(--main-to-dark-color);
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.hero-text {
  width: auto;
  text-align: left;
}

.hero .hero-text h1 {
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--tertiary-color);
  margin: 0 0 30px;
}

.hero .hero-btn {
  margin-top: 40px;
}
.hero .hero-btn .video-play-btn {
  background-color: var(--main-color);
  border-radius: 50%;
  margin-left: 20px;
  height: 50px;
  width: 50px;
  padding: 0;
  animation: pulse_01 2s ease infinite;
}

.hero .hero-btn .video-play-btn:hover {
  animation: none;
  box-shadow: #ffffff;
}

.hero .hero-btn .video-play-btn i {
  line-height: 50px;
  color: #eee;
}

.hero-text p {
  font-size: clamp(13px, 2.2vw, 18px);
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  margin: 0;
  font-weight: 300;
}

.hero-img img {
  max-width: 400px;
  width: 70%;
  animation: bounceTop_01 3s ease infinite;
}

.hero-img {
  position: relative;
}

.hero-logo {
  display: block;
  margin: 0 auto 20px;
  width: clamp(140px, 25vw, 300px);
  max-height: 120px;
}

/* Tablet */
@media (max-width: 991px) {
  .hero-logo {
    max-height: 100px;
    margin: 0 auto 20px;
    display: block;
  }
}

/* HP */
@media (max-width: 576px) {
  .hero-logo {
    max-height: 80px;
  }

  .hero .hero-text h1 {
    font-size: 26px;
    text-align: center;
  }

  .hero-text p {
    font-size: 14px;
    text-align: center;
  }
}

@media (min-width: 769px) {
  .hero-text {
    width: auto;
    text-align: left;
  }

  .hero-logo {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .hero-text {
    width: 100%;
    text-align: center;
  }

  .hero-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* HP + TABLET: jadi 1 kolom & CENTER SEUTUHNYA */
@media (max-width: 991px) {
  .hero-text-col {
    display: flex;
    justify-content: center;
  }

  .hero-text {
    width: 100%;
    max-width: 600px; /* biar gak melebar aneh */
    text-align: center;
  }

  .hero-logo {
    display: block;
    margin: 0 auto 20px;
  }
}

/* DESKTOP: balik ke layout awal */
@media (min-width: 992px) {
  .hero-text-col {
    display: block;
  }

  .hero-text {
    text-align: left;
    width: auto;
  }

  .hero-logo {
    margin: 0 0 20px 0;
  }
}

/*--------------------
Video Popup
--------------------*/
.video-popup {
  padding: 30px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1999;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.video-popup.open {
  opacity: 1;
  visibility: visible;
}
.video-popup-inner {
  width: 100%;
  max-width: 900px;
  position: relative;
}

.video-popup .video-popup-close {
  position: absolute;
  right: 0;
  top: -30px;
  height: 30px;
  width: 30px;
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  color: #ffffff;
}

.video-popup .iframe-box {
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.video-popup #player-1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*--------------------
Social Media
--------------------*/
@media (max-width: 576px) {
  .socmed li {
    transform: scale(0.85);
  }
}

.socmed .row i {
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--tertiary-color);
  margin-right: 6px;
}
.socmed {
  padding: 15px 0;
  text-align: center;
  background-image: linear-gradient(
    var(--main-to-dark-color),
    var(--black-000)
  );
  font-size: 16px;
  font-weight: 700;
  color: #cccccc;
  bottom: 0%;
  width: 100%;
  position: absolute;
  z-index: 1;
}

.socmed a {
  text-decoration: none;
  color: #ffffff;
}

.socmed ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 0 auto;
}

.socmed li {
  background-color: var(--tertiary-color);
  font-size: 0.85em;
}

.socmed ul li {
  position: relative;
  display: flex;
  list-style: none;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.322);
  transition: 0.5s;
}

.socmed ul li:hover {
  width: 180px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0);
}

.socmed ul li::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(45deg, var(--i), var(--j));
  opacity: 0;
  transition: 0.5s;
}

.socmed ul li:hover::before {
  opacity: 1;
}

.socmed ul li::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  background: linear-gradient(45deg, var(--i), var(--j));
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
  filter: blur(20px);
}

.socmed ul li:hover::after {
  opacity: 0.5;
}

.socmed ul i {
  color: var(--i);
  font-size: 1.75em !important;
  transition: 0.5s;
  transition-delay: 0.25s;
}

.socmed ul li:hover i {
  transform: scale(0);
  font-size: 1.75em;
  transition-delay: 0.25s;
}

.socmed ul li span {
  position: absolute;
}

.socmed ul li .text-icon {
  color: #fff;
  font-size: 1.1em !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: scale(0);
  transition: 0.5s;
  transition-delay: 0s;
}

.socmed ul li:hover .text-icon {
  transform: scale(1);
  transition-delay: 0.25s;
}

@media (max-width: 576px) {
  .socmed ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  /* Paksa 3 icon per baris */
  .socmed ul li {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: 60px;
  }
}

/*--------------------
Features Section
--------------------*/
/*--------------------
Features Section
--------------------*/
.features {
  display: flex;
}
.features .features-carousel {
  justify-content: space-between;
}

.features .feature-item {
  box-shadow: var(--shadow-black-100);
  margin: 15px;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.features .feature-item::before,
.features .feature-item::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  transition: all 0.5s ease;
  opacity: 0;
}

.features .feature-item::before {
  height: 20px;
  width: 20px;
  background-color: var(--color-4);
  left: -20px;
  top: 40%;
}

.features .feature-item:hover:before {
  left: 10px;
  opacity: 1;
}

.features .feature-item::after {
  height: 40px;
  width: 40px;
  background-color: var(--color-2);
  right: -30px;
  top: 80%;
}

.features .feature-item:hover::after {
  right: -15px;
  opacity: 1;
}

.features .feature-item .icon {
  height: 80px;
  width: 80px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 30px;
  color: var(--main-color);
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
}

.features .feature-item .icon::before {
  content: "";
  position: absolute;
  left: -180%;
  top: -50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--i), var(--j));
  transition: all 0.5s ease;
  z-index: -1;
  filter: blur(3px);
}

.features .feature-item:hover .icon {
  color: #ffffff;
  font-size: 24px;
}

.features .feature-item:hover .icon::before {
  left: 0;
  top: -10%;
  border-radius: 50%;
  opacity: 1;
  filter: none;
}

.features .feature-item .icon i {
  line-height: 60px;
}
.features .feature-item h3 {
  font-size: 22px;
  margin: 0 0 20px;
  color: var(--black-900);
  font-weight: 500;
  text-transform: capitalize;
}

.features .feature-item p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: var(--black-400);
  margin: 0 0 15px;
}

/* Mode Terang selengkapnya */
body:not(.dark) .features .feature-item .selengkapnya {
  color: var(
    --black-100
  ); /* Ganti dengan warna yang Anda inginkan di mode terang */
}

.features .feature-item .selengkapnya {
  display: inline-block;
  background-color: var(--main-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--black-900);
  padding: 5px;
  margin: 0 0 10px;
  border-radius: 10px;
}

/* Features End  */

body .BPH {
  background-color: var(--black-100);
}

.BPH .container {
  background-color: var(--black-000);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 5px 7px 8px -3px rgba(0, 0, 0, 0.38);
  width: 80%;
  animation: pulse_02 1.5s ease-in;
}

.BPH-carousel .item {
  width: 100%;
  padding: 0 15px; /* JARAK ANTAR SLIDE */
  box-sizing: border-box;
}

.BPH-title {
  color: var(white);
  margin-bottom: 100px;
  margin-top: 50px;
  animation: pulse_02 1.5s ease-in;
}

.BPH-text {
  padding: 15px 20px;
  box-sizing: border-box;
}

.BPH-title h2 span {
  color: var(--secondary-color);
  text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff,
    1px 1px 0 #ffffff;
}

.BPH-title h2 {
  font-size: 40px;
  color: white;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  margin: 0 0 20px;
}

.BPH-title p {
  font-size: 20px;
  color: var(--black-900);
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.BPH-text h4 {
  font-weight: 650;
}

.BPH-text h2 {
  font-weight: 700;
  color: var(--main-color);
  margin: 0 0 5 0px;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}

.BPH-text p {
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  margin: 0 0 5px;
  font-weight: 400;
  text-align: justify;
}

.BPH-text ul {
  padding-left: 20px; /* jarak dari kiri */
  margin-top: 10px; /* jarak dari judul */
}

.BPH-text li {
  margin-bottom: 6px; /* jarak antar nama */
  font-size: 18px;
  line-height: 28px;
  color: var(--black-900);
  margin: 0px;
  font-weight: 400;
  margin: 0 0 0px;
  list-style: none;
  text-align: left;
  list-style: decimal;
}

.BPH-img img {
  max-width: 400px;
  width: 100%;
}

.BPH-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark .BPH .container {
  background-color: var(--bg-dark);
  color: var(--black-900);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* CARD TIAP SLIDE */
.bph-card {
  background-color: var(--black-000);
  padding: 30px;
  border-radius: 18px;
  width: 100%;
  box-sizing: border-box;
  margin: 0;

  position: relative;

  /* Shadow utama */
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.1),
    0 4px 10px -6px rgba(0, 0, 0, 0.06);

  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.jurusan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.bph-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 22px 55px -18px rgba(0, 0, 0, 0.16),
    0 10px 22px -12px rgba(0, 0, 0, 0.1);
}

.owl-carousel .item {
  padding: 10px 0;
}

/* Mobile */
@media (hover: hover) {
  .BPH-card:hover {
    transform: translateY(-7px);
  }
}

@media (max-width: 768px) {
  .BPH-card {
    padding: 20px;
  }

  .BPH .container {
    width: 95%;
    padding: 15px;
  }

  .owl-carousel .owl-stage {
    display: flex;
  }

  .owl-carousel .owl-item {
    display: flex;
  }

  .owl-carousel .owl-item .item {
    width: 100%;
  }

  .BPH-carousel .item {
    padding: 0 10px;
  }

  .BPH-card ol {
    padding-left: 0;
    list-style-position: inside;
  }
}

body.dark .BPH .container h2,
body.dark .BPH .container p,
body.dark .BPH .container li {
  color: var(--black-900);
}

/* BPH End */

/*--------------------
Fun Facts Section
--------------------*/
.fun-facts {
  background-color: var(--black-100);
}

.fun-facts .section-title {
  margin-bottom: 20px;
}

.fun-facts .section-title h2 {
  text-align: left;
}

.fun-facts img {
  max-width: 450px;
  width: 100%;
  /* box-shadow: var(--shadow-black-100);
    border-radius: 32px; */
  animation: bounceTop_01 3s ease infinite;
  margin-top: 50px;
}

.fun-facts-text {
  font-size: 16px;
  line-height: 26px;
  color: var(--black-400);
  margin: 0 0 15px;
  font-weight: 300;
}

.fun-facts-text p {
  font-size: 16px;
  line-height: 26px;
  color: var(--black-400);
  margin: 0 0 15px;
  font-weight: 400;
  text-align: justify;
}

.fun-facts-text h4 {
  margin-bottom: 20px;
  font-size: 27px;
  line-height: 26px;
  color: var(--main-color);
  margin: 0 0 15px;
  font-weight: 700;
  outline: 2px solid #ffffff;
  text-shadow: -0.5px -0.5px 0 #ffffff, 0.5px -0.5px 0 #ffffff,
    -0.5px 0.5px 0 #ffffff, 0.5px 0.5px 0 #ffffff;
}

.fun-fact-item {
  padding: 30px 30px;
  text-align: center;
  box-shadow: var(--shadow-black-100);
  border-radius: 10px;
  margin-top: 30px;
}

.fun-fact-item h3 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px;
}

.fun-fact-item span {
  font-size: 16px;
  line-height: 26px;
  /* text-transform: uppercase; */
  font-weight: 300;
  margin: 0;
  display: block;
  color: #ffffff;
}

.fun-fact-item.style-1 {
  background-color: rgb(9, 85, 185);
}

.fun-fact-item.style-2 {
  background-color: rgb(9, 85, 185);
}

.fun-fact-item.style-3 {
  background-color: rgb(38, 102, 185);
}

.fun-fact-item.style-4 {
  background-color: rgb(38, 102, 185);
}

.fun-fact-item.style-5 {
  background-color: rgb(81, 128, 189);
}

.fun-fact-item.style-6 {
  background-color: rgb(81, 128, 189);
}

/*--------------------
App Screenshots Section
--------------------*/
.screenshot-item {
  margin: 15px;
}

.screenshot-item img {
  width: 100%;
  max-width: 250px;
  display: block;
  margin: auto;
}

/* App Download Section */
.app-download {
  background-image: url("../images/Pengurus.jpeg");
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.app-download .section-title h2 {
  color: #ffffff;
}

.app-download::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--main-to-dark-color);
  opacity: 0.6;
}

.app-download-item {
  background-color: var(--black-000);
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: var(--shadow-black-100);
  margin-bottom: 25px;
}

.app-download-item i {
  font-size: 30px;
  color: var(--main-color);
  display: inline-block;
}
.app-download-item h3 {
  font-size: 28px;
  color: var(--black-900);
  margin: 20px 0;
  font-weight: 700;
  text-transform: capitalize;
}
.app-download-item p {
  font-size: 16px;
  color: var(--black-400);
  font-weight: 400;
  margin: 0 0 30px;
  line-height: 26px;
}

.app-download-item ul {
  font-size: 16px;
  color: var(--black-400);
  font-weight: 400;
  margin: 0 0 30px;
  line-height: 26px;
  text-align: left;
}

/*--------------------
How It Works Section
--------------------*/
.how-it-works-item {
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ppdb-banner {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-black-100);
}

.ppdb-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.how-it-works-item.line-right::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  left: 50%;
  top: 60px;
  background-color: var(--main-color);
  z-index: -1;
}

.how-it-works-item .step {
  display: inline-block;
  height: 60px;
  width: 60px;
  background-color: var(--main-color);
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  color: #ffffff;
  margin: 0 0 15px;
}

.how-it-works-item h3 {
  margin: 20px 0;
  font-size: 22px;
  font-weight: 500;
  color: var(--black-900);
  text-transform: capitalize;
}
.how-it-works-item p {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  color: var(--black-400);
  line-height: 26px;
}

/*--------------------
Testimonials Section
--------------------*/
.testimonials {
  background-color: var(--black-100);
}

.testimonial-item {
  margin: 15px;
  padding: 30px;
  box-shadow: var(--shadow-black-100);
  border-radius: 10px;
  text-align: center;
  background-color: var(--black-000);
}

.testimonial-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18), 0 6px 14px rgba(0, 0, 0, 0.12);
}
.testimonial-item .listguru {
  text-align: left;
  color: var(--black-400);
}

.testimonial-item .img-box {
  height: 175px;
  width: 175px;
  display: inline-block;
  margin-bottom: 30px;
  border: 4px solid var(--main-color);
  border-radius: 50%;
  position: relative;
}
.testimonial-item .img-box img {
  border-radius: 50%;
  width: 100%;
}
.testimonial-item .img-box i {
  position: absolute;
  height: 30px;
  width: 30px;
  background-color: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  left: calc(100% - 15px);
  top: calc(50% - 15px);
}
.testimonial-item p {
  font-size: 16px;
  margin: 0 0 20px;
  color: var(--black-400);
  line-height: 26px;
  font-weight: 300;
}
.testimonial-item h3 {
  font-size: 18px;
  color: var(--black-900);
  font-weight: 500;
  margin: 0 0 5px;
  text-transform: capitalize;
}

.testimonial-item h2 {
  color: var(--black-900);
}
.testimonial-item span {
  display: block;
  font-size: 16px;
  color: var(--black-400);
  font-weight: 300;
}
.testimonial-item .rating {
  margin-top: 10px;
}
.testimonial-item .rating i {
  display: inline-block;
  font-size: 16px;
  color: var(--color-2);
}

/*--------------------
Team Section
--------------------*/
.team {
  background-color: var(--black-100);
}

.team-item img {
  filter: brightness(70%);
}

.team-item:hover img {
  filter: brightness(100%);
  transition: 0.5s;
}

.team-item {
  margin: 15px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-black-100);
}

.team-item:hover {
  margin: 15px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-black-300);
  transition: 0.5s;
}

.team-item h3 {
  font-size: 18px;
  color: var(--black-900);
  font-weight: 500;
  margin: 15px 0 5px;
  text-transform: capitalize;
}

.team-item span {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: var(--black-400);
  text-transform: capitalize;
}

/*--------------------
FAQ Section
--------------------*/
.faq .accordion-button {
  font-size: 18px;
  font-weight: 500;
  color: var(--black-400);
  margin: 0;
  text-transform: capitalize;
  transition: all 0.5s ease;
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background-color: var(--main-color);
  color: #ffffff;
}

.faq .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

/*--------------------
Contact Section
--------------------*/
.contact {
  background-color: var(--black-100);
}

.contact-info h3 {
  font-size: 22px;
  color: var(--black-900);
  font-weight: 500;
  margin: 0 0 40px;
}

.contact-info-item {
  position: relative;
  padding-left: 55px;
  margin-bottom: 30px;
}
.contact-info-item i {
  position: absolute;
  height: 40px;
  width: 40px;
  left: 0;
  top: 0;
  border-radius: 50%;
  font-size: 16px;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  text-align: center;
  line-height: 38px;
}
.contact-info-item h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--black-900);
}
.contact-info-item p {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  line-height: 26px;
  color: var(--black-400);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-control {
  height: 52px;
  border: 1px solid transparent;
  box-shadow: var(--shadow-black-100);
  border-radius: 30px;
  padding: 0 24px;
  color: var(--black-100);
  background-color: var(--black-000);
  transition: all 0.5s ease;
}

.contact-form .form-control::placeholder {
  color: var(--black-400);
}

.contact-form textarea.form-control {
  height: 140px;
  padding-top: 12px;
  resize: none;
}

.contact-form .form-control:focus {
  border-color: var(--main-color);
}

/*--------------------
Footer
--------------------*/
.footer {
  background-color: var(--main-color);
  background: linear-gradient(60deg, var(--main-color), var(--secondary-color));
  padding: 35px 0 0;
  color: #eeee;
}

.footer-menu li a {
  display: flex;
  align-items: center;
}

.footer-menu li a i {
  width: 22px; /* lebar ikon dikunci */
  min-width: 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  font-size: 1rem;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 25px;
  text-transform: capitalize;
}

.footer-slogan .slogan {
  color: white;
  padding: 30px;
}

.school-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-school-logo {
  font-size: 1.4rem;
  font-weight: 600;
}

.socmed-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.4s ease-in-out;
}

.btn-socmed-footer {
  background-color: var(--black-100);
  padding: 20px;
  margin-right: 30px;
  border: none;
  border-radius: 30px;
  color: #ffffff;
  font-size: 14px;
  text-transform: capitalize;
  transition: all 0.5s ease;
  box-shadow: var(--shadow-black-300);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.icon-btn-socmed-footer {
  position: absolute;
  left: -35%;
  right: -20%;
  top: 20%;
  z-index: 2;
  bottom: 0;
  transition: all 0.2s ease-in-out;
  font-size: 17px;
  color: var(--black-400);
}

.btn-socmed-footer:hover .icon-btn-socmed-footer {
  transform: scale(1.2);
  color: var(--black-100);
  opacity: 1;
}

.btn-socmed-footer::before {
  content: "";
  background: linear-gradient(60deg, var(--i), var(--j));
  position: absolute;
  z-index: 1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s;
}

.btn-socmed-footer:hover::before {
  transform: skewX(-45deg) scale(2, 2);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-menu li {
  margin-right: 30px;
  margin-left: 60px;
  padding: 5px;
}

.footer-menu li a {
  text-decoration: none;
  color: #eee;
}

.footer .copyright-text {
  margin: 25px 0 0;
  padding: 15px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===============================
   FOOTER SOSMED - MOBILE 2 BARIS
   =============================== */
@media (max-width: 576px) {
  .socmed-footer {
    flex-wrap: wrap;
    max-width: 260px; /* kunci agar 3 per baris */
    margin: 0 auto;
    gap: 16px 20px;
  }

  .socmed-footer li {
    flex: 0 0 calc(33.333% - 14px);
    display: flex;
    justify-content: center;
  }

  .btn-socmed-footer {
    margin-right: 0; /* matikan margin desktop */
  }
}

/*--------------------
Togle Theme
--------------------*/
.button-theme {
  position: fixed;
  right: 2px;
  top: 50%;
  border-radius: 50%;
  width: 50px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.445);
  background-color: var(--main-color);
  z-index: 5;
  transition: background-color 0.4s ease-in-out;
}

.button-theme:hover {
  background-color: skyblue;
}

.button-theme i {
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

.button-theme:has(.bi-moon-stars-fill) {
  background-color: #749dd6;
}

.bi-moon-stars-fill {
  display: block;
  animation: bounceTop_02 7s linear infinite;
  transition: color 0.3s ease-in-out;
}

.button-theme:hover .bi-moon-stars-fill {
  display: block;
  color: #28096b;
}

.bi-sun-fill {
  display: block;
  animation: spin_01 7s linear infinite;
  transition: color 0.3s ease-in-out;
}

.button-theme:hover .bi-sun-fill {
  color: yellow;
}

/*--------------------
Togle To Top
--------------------*/
.button-to-top {
  position: fixed;
  right: 4%;
  bottom: 4%;
  border-radius: 25%;
  width: 50px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.445);
  background-color: var(--main-color);
  z-index: 2;
  transition: all 0.4s ease-in-out;
  animation: bounceTop_03 2s linear infinite;
}

.button-to-top i {
  font-size: 1.2rem;
  transition: all 0.7s ease-in-out;
  color: var(--black-000);
}

/* Jurusan Section */
body .jurusan {
  background-image: url("../images/Jurusan/background-departemen.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 300px;
}

.jurusan .container {
  background-color: var(--black-000);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 5px 7px 8px -3px rgba(0, 0, 0, 0.38);
  width: 80%;
  animation: pulse_02 1.5s ease-in;
}

.jurusan-carousel .item {
  width: 100%;
  padding: 0 15px; /* JARAK ANTAR SLIDE */
  box-sizing: border-box;
}

.jurusan-title {
  color: var(white);
  margin-bottom: 100px;
  margin-top: 50px;
  animation: pulse_02 1.5s ease-in;
}

.jurusan-text {
  padding: 15px 20px;
  box-sizing: border-box;
}

.jurusan-title h2 span {
  color: var(--secondary-color);
  text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff,
    1px 1px 0 #ffffff;
}

.jurusan-title h2 {
  font-size: 40px;
  color: white;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  margin: 0;
}

.jurusan-text h4 {
  color: var(--black-900);
  font-weight: 650;
  text-align: center;
}

.jurusan-text h2 {
  font-weight: 700;
  color: var(--main-color);
  margin: 0 0 5 0px;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}

.jurusan-text p {
  font-size: 18px;
  line-height: 28px;
  color: var(--black-900);
  margin: 0 0 5px;
  font-weight: 400;
  text-align: justify;
}

.jurusan-text ul {
  padding-left: 20px; /* jarak dari kiri */
  margin-top: 10px; /* jarak dari judul */
}

.jurusan-text li {
  margin-bottom: 6px; /* jarak antar nama */
  font-size: 18px;
  line-height: 28px;
  color: var(--black-900);
  margin: 0px;
  font-weight: 400;
  margin: 0 0 0px;
  list-style: none;
  text-align: left;
  list-style: decimal;
}

.jurusan-img img {
  max-width: 400px;
  width: 100%;
}

.jurusan-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD TIAP SLIDE */
.jurusan-card {
  background-color: var(--black-000);
  padding: 30px;
  border-radius: 18px;
  margin: 0;
  position: relative;

  /* Shadow utama */
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.1),
    0 4px 10px -6px rgba(0, 0, 0, 0.06);

  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.jurusan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.jurusan-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 22px 55px -18px rgba(0, 0, 0, 0.16),
    0 10px 22px -12px rgba(0, 0, 0, 0.1);
}

.owl-carousel .owl-stage {
  display: flex;
}

.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
}

.owl-carousel .owl-item .item {
  width: 100%;
}

/* Mobile */
@media (hover: hover) {
  .jurusan-card:hover {
    transform: translateY(-7px);
  }
}

@media (max-width: 768px) {
  .jurusan-card {
    padding: 20px;
  }

  .jurusan .container {
    width: 95%;
    padding: 15px;
  }

  .owl-carousel .owl-stage {
    display: flex;
  }

  .owl-carousel .owl-item {
    display: flex;
  }

  .owl-carousel .owl-item .item {
    width: 100%;
  }

  .jurusan-carousel .item {
    padding: 0 10px;
  }

  .jurusan-card ol {
    padding-left: 0;
    list-style-position: inside;
  }
}

/* Jurusan End */

/* sejarah start */
.sejarah p {
  text-align: justify;
  color: var(--black-900);
}
.sejarah ul {
  text-align: justify;
  color: var(--black-900);
}
#full-text {
  display: none;
}

.sejarahtombol {
  border: none;
  background-color: transparent;
  color: var(--main-color);
  font-weight: 600;
}
/* sejarah end  */

/* Berita Start */

.berita {
  background-image: url("../images/SMKN-1.jpg");
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  height: 350px;
}

.berita::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--main-to-dark-color);
  opacity: 0.6;
}

.berita .section-title h2 {
  color: #ffffff;
  margin-top: 70px;
  margin-bottom: 2%;
}

.berita .section-title h5 {
  color: var(--tertiary-color);
  text-align: center;
  font-size: 20px;
  font-style: italic;
}

.berita img {
  max-width: 600px;
  width: 100%;
  margin-top: 5%;
}

.berita-item {
  width: 85%;
}

.berita-item ul {
  list-style-type: none;
  display: flex;
  font-size: 12px;
  color: #aaaaaa;
  padding-left: 0px;
}

.berita-item li:first-of-type {
  margin-left: 20px;
  border: none;
  font-weight: 700;
}

.berita-item li {
  margin-left: 10px;
  border: 2px solid #aaaaaa;
  padding: 2px;
}

.berita-item h2 {
  text-align: center;
  margin-top: 40px;
  font-weight: 700;
  color: var(--black-900);
  font-size: 30px;
}
.berita-item h4 {
  margin-top: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--black-900);
  font-size: 20px;
}

.berita-item h5 {
  text-align: center;
  font-size: 15px;
  margin-bottom: 15px;
  color: var(--black-400);
  opacity: 0.7;
}

.berita-item h6 {
  text-align: center;
  color: var(--black-400);
  margin-bottom: 15px;
  opacity: 0.7;
}

.berita-item p {
  text-align: justify;
  color: var(--black-900);
  opacity: 0.9;
}
.berita-item span {
  font-weight: 0;
  font-size: 15px;
  color: var(--black-900);
}

.berita-item img {
  width: 1200px;
  display: flex;
  border-radius: 10px;
  margin: auto;
  animation: pulse_04 2s ease;
}

.berita-item .team-item img {
  border-radius: 5px;
}

/* Berita End */

/*--------------------
Responsive
--------------------*/
@media (max-width: 1025px) {
  .navbar .nav-item {
    margin-right: 30px;
  }

  .navbar .nav-item .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .pricing-plan,
  .how-it-works-item,
  .app-download-item {
    margin-bottom: 30px;
  }

  .how-it-works-item.line-right::before {
    content: none;
  }

  .how-it-works-item {
    box-shadow: var(--shadow-black-100);
    border-radius: 10px;
  }
}

@media (max-width: 767px) {
  .socmed {
    position: static;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .fun-facts .section-title h2 {
    text-align: center;
    margin-top: 20px;
  }

  .socmed .row i {
    margin-bottom: 10px;
  }

  .fun-facts-text h4 {
    text-align: center;
  }

  .custom-nav {
    top: 500px;
  }

  .custom-nav .prev-btn,
  .custom-nav .next-btn {
    padding: 5px 10px;
  }

  .footer-col-socmed .social-pages {
    margin-top: 30px;
  }

  .pilihan-utama {
    margin-top: 30px;
  }

  .footer-menu li {
    margin: auto;
  }

  .footer-menu li a i {
    display: none;
  }

  .organisasi-title {
    margin-top: 50px;
  }
  .none-sm {
    display: none;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 15px;
  }

  .section-padding {
    padding: 50px 5px;
  }

  .navbar-collapse {
    background-color: var(--dark-to-main-color);
    box-shadow: var(--shadow-black-300);
    padding: 20px 20px;
  }

  .navbar .nav-item {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .hero .hero-text {
    text-align: center;
  }

  .hero .hero-text h1 {
    font-size: 22px;
    margin: 0 0 20px;
  }

  .hero .hero-text p {
    font-size: 14px;
    line-height: 20px;
  }

  .hero-img {
    padding: 20px 0;
  }

  .custom-nav {
    display: none;
  }
}
