:root {
  --primary-color: #a57918;
  --secondary-color: #fff8cc;
  --gradient-color: linear-gradient(140deg, #a57918 25%, #7a5402 95%);
  --text-color-1: #000;
  --text-color-2: #fff;
  --shadowbox: rgba(0, 0, 0, 0.7);
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins.woff2") format("woff2");
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

::selection {
  background: var(--primary-color);
  color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
}

body {
  background-color: var(--secondary-color);
  font-size: 20px;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  margin: 0;
  min-height: 100vh;
}

.wrapper {
  font-size: 15px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Marquee */
.marquee {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1rem;
}

/* Hamburger Menu */
.header-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  position: relative;
  z-index: 20;
}

.header-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-color-1);
  border-radius: 3px;
  transition: all 0.5s;
}

.header-toggle input {
  display: block;
  position: absolute;
  background-color: var(--text-color-1);
  width: 40px;
  height: 28px;
  left: -5px;
  top: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 30;
}

/* Hamburger Menu Animation */
.header-toggle span:nth-child(2) {
  transform-origin: 0 0;
}
.header-toggle span:nth-child(4) {
  transform-origin: 0 100%;
}

span:nth-child(2).slide {
  background-color: var(--text-color-1);
  transform: rotate(45deg) translate(-1px, -1px);
  z-index: 9999;
}

span:nth-child(4).slide {
  background-color: var(--text-color-1);
  transform: rotate(-45deg) translate(-1px, 0);
  z-index: 9999;
}

span:nth-child(3).slide {
  opacity: 0;
  transform: scale(0);
}

/* Hamburger End */

/* Button Start */
.button {
  display: inline-block;
  color: transparent;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  padding: 0.5rem 1.3rem;
  font-size: 0.9rem;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

/* Button End */

/* Nav Header */
.header {
  background-color: var(--secondary-color);
  box-shadow: 1px 1px 2px var(--shadowbox);
  display: grid;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 0.8rem;
  grid-template-columns: 2fr 2fr 1fr;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.header.hide {
  transform: translateY(-100%);
}

.header .logo {
  display: flex;
  cursor: pointer;
  align-items: center;
  margin-left: 1rem;
}

.logo img {
  border-radius: 50%;
  box-shadow: 1px 1px 2px var(--shadowbox);
}

.logo h2 a {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-left: 1rem;
}

.header-auth {
  justify-self: center;
  align-content: center;
}

.header-list {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.header-list a {
  padding: 0 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color-1);
  transition: all 0.3s ease-in-out;
}

.header-list a:hover {
  color: var(--primary-color);
  font-weight: 600;
}

.header-list .kelas {
  position: relative;
}

/* dropdown disembunyikan dulu */
.dropdown {
  display: none;
  position: absolute;
  top: 100%; /* muncul di bawah menu utama */
  left: 0;
  background: var(--secondary-color);
  box-shadow: 0 4px 10px var(--shadowbox);
  list-style: none;
  min-width: 200px;
  border-radius: 8px;
  padding: 1rem;
  z-index: 9999;
}

.dropdown li a {
  padding: 1rem;
  color: #333;
}

.dropdown li a:hover {
  background: var(--secondary-color);
}

/* tampilkan dropdown saat hover */
.kelas.open .dropdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Nav End */

/* Hero Start */
.hero-container {
  display: grid;
  padding: 1rem;
  margin: 0 70px;
  margin-top: 120px;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  justify-content: center;
  align-content: center;
}

.hero-container .hero-text {
  margin-right: 5rem;
}

.hero-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  line-height: 3rem;
  margin-bottom: 1rem;
}

.hero-text .hero-desc {
  margin-bottom: 1rem;
}

.hero-image {
  justify-self: end;
}

.hero-image img {
  object-fit: cover;
  background-position: center;
  width: 100%;
  border-radius: 10px;
  box-shadow: 5px 5px 7px var(--shadowbox);
}

/* Stat Start */
.stat-section {
  background-image: var(--gradient-color);
  padding: 2rem 0;
  margin: 1rem auto;
  width: 100%;
  display: flex;
  justify-content: center;
  color: var(--text-color-2);
}

.stat-box {
  padding: 0 2rem;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
}

.stat-section .start {
  border-right: 1px solid white;
}
/* Stat End */

/* Ilmu Alat Start */
.ilmu-alat {
  margin: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ilmu-alat img {
  width: 85vw;
  border-radius: 10px;
}
/* Ilmu Alat End */

/* Prakata Start */

.prakata {
  display: grid;
  padding: 1rem;
  margin: 0 70px;
  margin-top: 100px;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  justify-content: center;
  align-content: center;
}

.prakata .hero-text h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Prakata End */

/* Program Start */
h3.program-title {
  font-size: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;

  text-align: center;
}

.program-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 1rem 70px;
  gap: 2rem;
  justify-content: center;
}

.program-card {
  box-shadow: 1px 1px 2px var(--shadowbox);
  border-radius: 10px;
  outline-color: transparent;
  outline-width: 1px;
  outline-style: solid;
  transition: all 0.3s ease;
}

.program-card:hover {
  outline-color: black;
  outline-width: 1px;
  outline-style: solid;
}

.program-icon {
  background-color: white;
  color: #000;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  border-radius: 10px 10px 0 0;
}

.program-desc {
  background-color: var(--primary-color);
  border-radius: 0 0 10px 10px;
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  text-align: center;
}

.program-desc h4 {
  color: var(--text-color-2);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.program-card p {
  font-size: 0.8rem;
}
/* Program End */

/* FAQ Start */
.faq-section {
  max-width: 90vw;
  margin: 3rem auto;
  padding: 0 20px;
}

.faq-section h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.faq-item {
  background: rgb(254, 242, 165);
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 15px 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(120deg);
}
/* FAQ End */

/* Pop Up Start */
.pop-up {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Konten Pop-up */
.popup-content {
  position: relative;
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Tombol close */
.close-btn {
  position: absolute;
  top: 10 px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-color-1);
}

/* Animasi */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.btn-circle {
  margin: 1.5rem 0;
}
/* Pop Up End */

/* Test Start */

.test-container {
  display: flex;
  flex-direction: column;
  margin: 0 70px;
}
.test-title {
  text-align: center;
}

.test-title h3 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.test-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin: 50px 100px;
}
/* Test End */

/* Kelas Start */
.kelas-top {
  margin: 100px;
  margin-left: 120px;
  margin-bottom: 50px;
}

.kelas-top h2 {
  font-size: 2rem;
}

.kelas-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 100px;
  gap: 2rem;
  justify-items: center;
}

.kelas-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 1px 1px 2px var(--shadowbox);
}

.kelas-card img {
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}

.kelas-title {
  padding: 1rem 2rem;
}

.kelas-title h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.kelas-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kelas-bottom p {
  font-size: 1rem;
}

.kelas-bottom a {
  border-width: 1px;
}
.kelas-bottom a:hover {
  border-width: 1px;
}

h3.bundling {
  font-size: 2rem;
  text-align: center;
  margin: 50px;
}

/* Benefit Start */
.benefit-section h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.benefit-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px 48px 16px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.benefit-item {
  display: flex;
  gap: 12px;
}
.icon {
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 4px;
  width: 24px;
  height: 24px;
}
.text {
  flex: 1;
}
.text strong {
  font-weight: 700;
  font-size: 15px;
  color: #3f4a44;
}
.text p {
  margin: 6px 0 0 0;
  font-weight: 400;
  font-size: 15px;
  color: #3f4a44;
}

/* Kelas End */

/* About Start */
.about-hero {
  display: grid;
  padding: 1rem;
  margin: 0 70px;
  margin-top: 120px;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  justify-content: center;
  align-content: center;
}

.about-text p {
  font-size: 0.9rem;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2.motto-visi {
  font-size: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.about-container {
  display: flex;
  margin: 20px 100px;
  gap: 2rem;
}

.about-container .motto {
  flex: 1;
}

.motto h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.about-container .visi {
  flex: 1;
}

.about-container div h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* About End */

/* Milestone Start */
.experience-section {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  position: relative;
}

h2.ex-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Timeline line */
.timeline {
  position: relative;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #d45428, #e8baab, transparent);
}

/* Card */
.card {
  background: var(--secondary-color);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 10px var(--shadowbox);
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -34px;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #aaa;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.card h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #555;
}

.card p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.card .date {
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.card .title {
  font-size: 20px;
  font-weight: bold;
  text-align: start;
  color: var(--primary-color);
}
.card .description {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin-top: 6px;
}

/* Button */
.btn-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.toggle-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.toggle-btn:hover {
  background: #333;
  transform: scale(1.05);
}

.info-container {
  display: flex;
  flex-direction: column;
  justify-items: center;
  margin: 2rem;
}

.info-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.card-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--secondary-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px var(--shadowbox);
  transition: transform 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.detail {
  font-size: 15px;
  color: #555;
  margin-bottom: 5px;
}

.total {
  font-size: 16px;
  font-weight: bold;
  color: #444;
}

/* Milestone End */

/* Kontak Start */
.contact-container {
  margin: 100px 70px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.contact-text h2 {
  font-size: 2.6rem;
  line-height: 3rem;
}

.contact-text h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.icon-contain {
  margin: 2rem 70px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-icon a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.contact-icon a:hover {
  color: var(--text-color-1);
}

.contact-icon a i {
  margin-right: 1rem;
}

/* Kontak End */

/* Footer Start */
.bottom-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin: 70px;
  gap: 2rem;
}

.head-about {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about .head-about img {
  width: 60px;
}

.about .head-about h3 {
  font-size: 2rem;
}

.left-bottom .about p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.left-bottom .social-media {
  display: flex;
  gap: 10px;
}

.left-bottom .social-media a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.left-bottom .social-media a:hover {
  color: var(--text-color-1);
}

.right-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
}

.right-bottom div h4 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.right-bottom div ul li {
  margin-bottom: 1rem;
}

.right-bottom div ul li a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.right-bottom div ul li a:hover {
  color: var(--text-color-1);
}

/* Bottom Container End */

.footer {
  margin-top: auto;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--text-color-1);
}
/* Footer End */

/* Responsive Break Points */
@media screen and (max-width: 1024px) {
  /* Nav */

  .header-toggle {
    display: flex;
    position: fixed;
    right: 20px;
    top: 25px;
    z-index: 2000;
  }

  .header-list {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    background-color: var(--secondary-color);
    color: var(--text-color-1);
    width: 100%;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    transform: translateY(-100%);
    z-index: 99;
    opacity: 0;
    transition: all 1s;
  }

  .header-list.slide {
    opacity: 1;
    transform: translateY(0);
  }

  .header-auth {
    opacity: 0;
    transform: translateY(-100%);
    z-index: -99;
    position: absolute;
    top: 20px;
    transform: translate(0, -50%);
  }

  .header-auth.slide {
    opacity: 1;
    transform: translateY(0);
    z-index: 99;
  }

  .hero-text > * {
    margin-right: 0;
  }

  /* Nav End */

  /* Hero Start */
  .hero-container .hero-text {
    margin-right: 1rem;
  }
  /* Hero Start */

  /* Program Start */
  .program-container {
    grid-template-columns: 1fr 1fr;
  }
  /* Program End */

  /* Kelas Start */

  .kelas-container {
    grid-template-columns: 1fr 1fr;
  }
  /* Kelas End */

  /* About Start */
  .about-hero {
    margin: 100px 15px;
    align-items: center;
  }
  /* About End */

  /* Contact Start */
  .contact-container {
    grid-template-columns: 1fr;
  }

  /* Contact End */

  /* Footer Start */
  .bottom-container {
    grid-template-columns: 1fr;
  }
  /* Footer End */

  .right-bottom {
    justify-items: start;
  }
}

@media screen and (max-width: 768px) {
  /* Nav Start */
  .header {
    order: -1;
    justify-items: end;
    grid-template-columns: 2fr 1fr;
  }

  .header-toggle {
    display: flex;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 200;
  }

  .header-list {
    justify-content: center;
    align-items: start;
    transition: all 1s;
  }

  .header-list > li {
    margin: 2.3rem 2rem;
  }

  .header-list.slide {
    opacity: 1;
    transform: translateX(0);
  }

  .header-auth {
    opacity: 0;
    transform: translateY(-100%);
    z-index: -99;
    position: absolute;
    top: 2rem;
    left: 2rem;
  }

  .header-auth::after {
    content: "";
    display: block;
    width: 85vw;
    height: 1px;
    background: var(--primary-color);
    margin: 1rem 0;
  }

  .header-auth.slide {
    opacity: 1;
    transform: translateY(0);
    z-index: 99;
  }

  /* tampilkan dropdown saat hover */
  .kelas.open .dropdown {
    left: 100%;
    opacity: 1;
  }
  /* Nav end */

  /* Faq Start */

  .faq-section h2 {
    font-size: 2rem;
  }
  /* Faq End */

  /* Hero Start */

  .hero-container {
    grid-template-columns: 1fr;
    margin: 0 15px;
    margin-top: 70px;
  }

  .hero-container .hero-text {
    margin-right: 0;
  }

  .hero-text h2 {
    font-size: 2rem;
    margin-right: 1rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  /* Stat Start */
  .stat-section {
    padding: 1rem 0;
  }

  .stat-box {
    padding: 0 1rem;
    text-align: center;
  }

  .stat-number {
    font-size: 2rem;
    font-weight: 700;
  }
  /* Stat End*/

  /* Prakata Start */
  .prakata {
    grid-template-columns: 1fr;
    margin: 0 15px;
  }

  .prakata .hero-image {
    justify-self: center;
  }

  .fahmi .hero-text {
    text-align: start;
  }
  /* Prakata End */

  /* Program Start */
  .program-container {
    grid-template-columns: 1fr;
    margin: 2rem;
  }
  /* Program End */

  /* Pop-up Start */
  .popup-content {
    margin: auto 1rem;
  }

  .btn-circle {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
  }

  /* Pop-up End */

  /* Test Start */
  .test-container {
    justify-items: center;
    margin: 15px;
  }

  .test-gallery {
    justify-content: center;
    margin: 15px;
    margin-top: 2rem;
  }
  /* Test End */

  /* Kelas Start */
  .kelas-top {
    margin: 100px 15px;
    text-align: center;
    margin-bottom: 1rem;
  }

  .kelas-top h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .kelas-container {
    margin: 50px 15px;
  }
  h3.bundling {
    text-align: center;
  }
  /* Kelas End */

  /* benefit start */
  .benefit-section {
    margin: 15px;
  }

  /* benefit end */

  /* About Start */
  .about-hero {
    grid-template-columns: 1fr;
    margin: 0 15px;
    padding: 0;
  }

  .about-text {
    margin: 100px 10px;
    text-align: center;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    margin: 20px 15px;
  }
  /* About End */

  /* Contact Start */

  .contact-container {
    margin: 100px 1rem;
    margin-bottom: 2rem;
  }
  .icon-contain {
    margin: 2rem 1rem;
  }
  .contact-text h2 {
    font-size: 2rem;
  }
  .contact-text h3 {
    font-size: 1.5rem;
  }

  .contact-text p {
    font-size: 0.9rem;
  }
  .youtube iframe {
    width: 350px;
    height: 200px;
  }
  /* Contact End */

  /* Footer Start */
  .bottom-container {
    margin: 2rem;
  }

  .right-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 2rem;
  }

  /* Footer End */
}

@media screen and (max-width: 576px) {
  .header {
    justify-items: stretch;
    grid-template-columns: 3fr 1fr;
  }

  .logo img {
    display: none;
  }

  .header-toggle {
    top: 25px;
  }

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

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

  .kelas-container {
    grid-template-columns: 1fr;
  }
}
button#chatbase-bubble-button {
  margin: 1rem;
}
