@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --image-width: 12rem;
  --image-height: 12rem;
  --color-bg: #fcfcf6;
  --color-primary: #f4f4f4;
  --color-white-transparent: rgba(255, 255, 255, 0.05);
  --color-text: #191918;
  --color-text-60: rgba(25, 25, 24, 0.6);
  --color-accent: #a9d975;
  --color-accent-60: rgba(169, 217, 117, 0.6);
  --color-accent-10: rgba(169, 217, 117, 0.1);
  --color-accent-40: rgba(169, 217, 117, 0.4);
  --color-accent-2: #f6acc5;
  --font-base: "Inter", sans-serif;
  --font-brand: "Philosopher", serif;
}

body {
  margin-bottom: 1000px;
  background: rgb(244, 244, 244);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background: linear-gradient(180deg, rgb(244, 244, 244) 0%, rgb(244, 244, 244) 5%, rgb(255, 255, 255) 100%);
  color: var(--color-text);
  font-family: var(--font-base);
  margin: auto;
}

section {
  max-width: 1024px;
}

.promo-on-top {
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  background-color: #000000;
  color: #ffffff;
  z-index: 12;
}
.promo-on-top .title {
  width: 100%;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
}
.promo-on-top .date {
  width: 100%;
  text-align: center;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
header .header-wrapper {
  padding: 0 1rem;
  height: 72px;
  display: flex;
  align-items: center;
  max-width: 1024px;
  margin: auto;
}
header .header-wrapper .logo-header {
  display: flex;
  align-items: center;
  height: 44px;
}
header .header-wrapper .logo-header img {
  height: 100%;
}
header .header-wrapper .logo-header .logo-text {
  font-family: var(--font-brand);
  font-size: 2rem;
  margin-left: 0.75rem;
}
header .header-wrapper nav.menu-desktop {
  flex: 1 1 0%;
  justify-content: center;
  text-align: center;
  display: none;
}
header .header-wrapper nav.menu-desktop a {
  margin-right: 1rem;
  letter-spacing: 1px;
  font-size: 1rem;
}
header .header-wrapper .menu-header {
  height: 28px;
  flex: 1 1 0%;
  text-align: right;
}
header .header-wrapper .menu-header svg {
  height: 100%;
}
header a.chat {
  display: none;
}

/*===Mobile Menu Section Mobile Style===*/
section.mobile-menu {
  position: fixed;
  background-color: var(--color-accent);
  z-index: 20;
  bottom: 100vh;
  left: 0;
  right: 0;
  height: 100%;
  opacity: 0;
  transition: bottom 1s, opacity 1.5s;
  transition-timing-function: ease-in-out;
}
section.mobile-menu.show {
  bottom: 0;
  opacity: 1;
}
section.mobile-menu .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
section.mobile-menu .close svg {
  width: 40px;
  height: 40px;
}
section.mobile-menu .container {
  padding: 4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.mobile-menu .container .menu-item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 2rem;
}
section.mobile-menu .container .menu-item {
  font-size: 1.5rem;
  font-family: var(--font-base);
  color: var(--color-text-60);
  margin: 1rem 0;
  text-align: center;
}
section.mobile-menu .container .chat,
section.mobile-menu .container .login {
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text-60);
}
section.mobile-menu .container .chat a,
section.mobile-menu .container .login a {
  padding: 1rem 2rem;
}

/*===Hero Section Mobile Style===*/
section.hero {
  padding: 6rem 1rem 1rem;
  text-align: center;
  margin: auto;
}
section.hero .hero-tag {
  font-size: 1rem;
  color: var(--color-text-60);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
section.hero h1 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 110%;
  margin-bottom: 0.75rem;
}
section.hero .hero-description {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
section.hero .hero-btn {
  background-color: var(--color-accent);
  color: var(--color-text-90);
  border-radius: 100px;
  padding: 1rem 2rem;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.25rem;
}
section.hero .hero-btn-wrapper {
  display: flex;
  justify-content: center;
}

section.why {
  padding: 2rem 2rem;
}
section.why .judul {
  margin-bottom: 2rem;
}
section.why p {
  margin-bottom: 2rem;
}

/*===Tema Section Mobile Style===*/
section.tema {
  padding: 0 0;
  margin-top: 4rem;
}
section.tema .featured-tema {
  padding: 0.5rem;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
section.tema .lihat-semua-tema {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
section.tema .all-tema-btn {
  background-color: var(--color-accent-2);
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  text-align: center;
}

/*===Harga Section Mobile Style===*/
section.harga {
  padding: 4rem 2rem;
}
section.harga .judul {
  margin-bottom: 3rem;
}
section.harga .list-paket .card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem 1rem;
  margin: 2rem 0;
  position: relative;
}
section.harga .list-paket .card .diskon {
  background-color: #f72323;
  color: yellow;
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
}
section.harga .list-paket .card.highlight {
  background-color: var(--color-accent-2);
}
section.harga .list-paket .card .judul {
  font-size: 2.5rem;
  margin-bottom: 0;
}
section.harga .list-paket .card .price-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
section.harga .list-paket .card .original-price {
  color: var(--color-text);
  font-size: 1.5rem;
  text-decoration: line-through;
  text-align: center;
  font-weight: 600;
  margin-right: 1rem;
}
section.harga .list-paket .card .rp {
  color: var(--color-accent);
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 4px 4px 11px rgba(0, 0, 0, 0.36);
}
section.harga .list-paket .card ul li {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 150%;
  color: var(--color-text);
}
section.harga .list-paket .card ul li.strong {
  font-weight: 700;
}
section.harga .checkout-btn,
section.harga .hubungi-admin {
  margin: 1rem;
  display: flex;
  justify-content: center;
}

footer {
  height: 80px;
  text-align: center;
  font-weight: 500;
}

/*===Tema Page Style===*/
body.tema header {
  margin-bottom: 10rem;
}
body.tema section.category {
  display: flex;
  padding: 2rem;
  flex-wrap: wrap;
}
body.tema section.category .card {
  display: flex;
  justify-content: center;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  width: 200px;
  height: 200px;
}
body.tema section.category .card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.tema section.category .card .icon img {
  width: 6rem;
}

/*===Shared Style===*/
/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-accent);
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
.glass {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(5px);
}

.glass-2 {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

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

.h-center {
  display: flex;
  justify-content: center;
}

.v-center {
  display: flex;
  align-items: center;
}

.font-brand {
  font-family: var(--font-brand) !important;
}

.btn {
  border-radius: 100px;
  padding: 0.5rem 2rem;
  box-shadow: 0 0 transparent, 0 0 transparent, 0 12px 24px rgba(62, 65, 86, 0.15);
  cursor: pointer;
  font-family: var(--font-brand);
  color: var(--color-text-60);
}

.btn-primary {
  background-color: var(--color-accent);
}

.btn-primary-2 {
  background-color: var(--color-accent-2);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-accent);
}

.btn-lg {
  font-size: 1.25rem;
  font-weight: 700;
}

.btn-highlight {
  background-color: var(--color-accent);
  color: #ffffff;
}

.login-btn {
  background-color: var(--color-accent);
  border-radius: 100px;
  padding: 0.5rem 2rem;
  display: none;
}

.judul {
  font-family: var(--font-base);
  font-size: 1.5rem;
  text-align: center;
  line-height: 105%;
  letter-spacing: 1px;
  font-weight: 700;
}
.judul .weak {
  opacity: 0.5;
}
.judul .highlight {
  font-family: var(--font-brand);
  font-size: 2rem;
}

.shadow-lg {
  box-shadow: 0 0 transparent, 0 0 transparent, 0 12px 24px rgba(62, 65, 86, 0.15);
}

.judul-featured {
  font-family: var(--font-art);
  font-size: 2rem;
  color: var(--color-accent);
  text-shadow: rgba(246, 172, 196, 0.9) 0px 0px 28px;
  font-style: italic;
  font-weight: 300;
}

section {
  margin: 0 auto;
}

section.fitur-harga {
  width: 100%;
  padding: 1.5rem 10%;
}

p,
ul {
  font-size: 1.3rem;
  line-height: 150%;
  letter-spacing: 1px;
  opacity: 0.9;
  font-weight: 400;
}
p .highlight,
ul .highlight {
  font-family: var(--font-brand);
  font-size: 2rem;
}

.tema-card {
  max-width: 300px;
  width: 45%;
  height: 100%;
  display: flex;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #ffffff;
  flex-direction: column;
  padding: 0 0 0.5rem;
  margin: 0.5rem;
  position: relative;
}
.tema-card > div {
  height: 100%;
}
.tema-card .best {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #f72323;
  color: #f4f4f4;
  padding: 4px 6px;
  border-radius: 4px;
  display: none;
}
.tema-card .best.is-best {
  display: flex;
}
.tema-card .best svg {
  height: 100%;
}
.tema-card .best .text {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  margin-left: 6px;
}
.tema-card .image {
  width: 100%;
}
.tema-card .image img {
  width: 100%;
}
.tema-card .content {
  padding: 0.5rem 0.75rem;
}
.tema-card .content .title {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  text-align: left;
  margin-bottom: 6px;
}
.tema-card .content .tags {
  display: flex;
  flex-wrap: wrap;
}
.tema-card .content .tags .tag {
  background-color: #f7c501;
  padding: 2px 6px;
  margin-right: 4px;
  margin-bottom: 4px;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.5rem;
}
.tema-card .content .preview-button {
  display: flex;
  justify-content: center;
  background-color: transparent;
  margin-top: 1rem;
}
.tema-card .content .preview-button a {
  box-shadow: 0 0 transparent, 0 0 transparent, 0 12px 24px rgba(62, 65, 86, 0.15);
  background-color: var(--color-accent);
  border-radius: 100px;
  text-align: center;
  padding: 0.5rem 1.2rem;
  height: 100%;
  width: 100%;
  text-align: center;
  font-weight: 300;
}

span.featured {
  font-family: var(--font-art);
  font-size: 1.2rem;
  color: var(--color-accent);
  text-shadow: rgba(246, 172, 196, 0.9) 0px 0px 28px;
  font-style: italic;
}

.main-description {
  margin: 0 auto 1.5rem;
}

.fitur {
  height: 100%;
}

.harga .paket {
  position: sticky;
  bottom: 0;
  height: 360px;
  width: 100%;
  background-color: var(--color-accent);
  margin: 2rem 0;
  color: var(--color-text);
}
.harga .paket .card-side {
  padding: 0;
}
.harga .paket .is-back .card-content-block {
  padding: 1.2rem;
}
.harga .paket ul {
  margin-top: 1rem;
  font-size: 1.6rem;
}
.harga .paket .judul {
  position: relative;
  text-align: left;
  font-size: 4rem;
  font-weight: 700;
  top: -4px;
  left: -8px;
  line-height: 70%;
  margin: 0;
}
.harga .paket-1 {
  z-index: 3;
}
.harga .paket-2 {
  z-index: 2;
}
.harga .paket-3 {
  z-index: 1;
}
.harga .harga-asli {
  text-decoration: line-through;
  font-size: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.harga .harga-diskon {
  font-size: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: -16px auto 0;
}

.countdown {
  text-align: center;
  margin: 0.5rem 0 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: yellow;
}
.countdown .days:after {
  content: " hari ";
}
.countdown .hours:after {
  content: " jam ";
}
.countdown .minutes:after {
  content: " menit ";
}
.countdown .seconds:after {
  content: " detik ";
}

section.countdown {
  position: fixed;
  margin: auto;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 10;
  color: var(--color-text);
  font-size: 1rem;
}
section.countdown .countdown {
  margin-top: -0.5rem;
  text-align: center;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
}
section.countdown .countdown .box {
  width: 40px;
}
section.countdown .countdown .label {
  font-size: 0.75rem;
}
section.countdown .countdown > div {
  display: inline-block;
  min-width: 20px;
  padding: 6px;
  margin: 5px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

section.hero-3d {
  position: sticky;
  top: 300px;
  height: 400px;
}

._3d-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 12rem;
  margin-bottom: 300px;
}

._3d-perspective {
  perspective: 1500px;
  transform-style: preserve-3d;
  justify-content: center;
  align-items: center;
  width: var(--image-width);
  height: var(--image-width);
  position: relative;
  left: 0;
  transform: scale(1.05) translate3d(0, 0, 0) rotateX(0) rotateY(34deg) rotateZ(0);
}

._3d-wrapper {
  transform-style: preserve-3d;
  width: var(--image-width);
  height: var(--image-width);
  position: relative;
  will-change: transform;
  transform: rotateX(0) rotateY(0) rotateZ(0) scale3d(1, 1, 1);
}

.face {
  transform-style: preserve-3d;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: var(--image-width);
  height: var(--image-height);
  position: absolute;
}
.face img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.face.face-01 {
  transform: rotateX(90deg) rotateY(0) rotateZ(180deg) translate3d(0, calc(-0.5 * var(--image-height)), 0);
}
.face.face-02 {
  transform: translate3d(0, 0, calc(-0.5 * var(--image-height))) rotateX(90deg) rotateY(0) rotateZ(0);
}
.face.face-03 {
  transform: translate3d(0, calc(-0.5 * var(--image-height)), 0) rotateX(180deg) rotateY(0) rotateZ(180deg);
}
.face.face-04 {
  transform: translate3d(0, calc(0.5 * var(--image-height)), 0) rotateX(180deg) rotateY(0) rotateZ(0);
}
.face.face-05 {
  transform: rotateX(-45deg) rotateY(0) rotateZ(0) translate3d(0, calc(-0.5 * var(--image-height)), 0);
}
.face.face-06 {
  transform: rotateX(-45deg) rotateY(0) rotateZ(-180deg) translate3d(0, calc(-0.5 * var(--image-height)), 0);
}
.face.face-07 {
  transform: translate3d(0, calc(0.35 * var(--image-height)), calc(0.35 * var(--image-height))) rotateX(45deg) rotateY(0) rotateZ(-180deg);
}
.face.face-08 {
  transform: translate3d(0, calc(-0.35 * var(--image-height)), calc(-0.35 * var(--image-height))) rotateX(45deg) rotateY(0) rotateZ(0);
}

.card-container {
  perspective: 1000px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.card-side {
  backface-visibility: hidden;
  background-color: var(--color-accent);
  color: var(--color-text);
  padding: 2.5rem 1.75rem 1.75rem;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.card-side.is-front {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  transform-style: preserve-3d;
  display: block;
}

.card-side.is-back {
  transform-style: preserve-3d;
  transform: rotateX(0) rotateY(180deg) rotateZ(0);
}

.card-icon-wrap {
  grid-row-gap: 0.25rem;
  flex-direction: column;
  display: flex;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: #000;
  border-radius: 999px;
  color: var(--color-bg);
}

.card-icon-wrap.is-back {
  bottom: 1rem;
  left: 1rem;
}

.card-icon-wrap.is-front {
  left: auto;
  right: 1rem;
}

.card-content-block {
  grid-row-gap: 0.5rem;
  flex-direction: column;
  margin-bottom: 1.5rem;
  display: flex;
}

.card-component-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.card-icon {
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
}

.service-icon {
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 1.5rem;
}

.card-icon-item {
  background-color: var(--black);
  border-radius: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}

.card-flip {
  cursor: pointer;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto 2rem;
  height: 20rem;
  position: relative;
  will-change: transform;
  transform-style: preserve-3d;
}

.card-title {
  color: var(--black);
  font-size: 2rem;
  font-weight: 400;
}

.card-number {
  color: var(--black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Creato Display, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

/*====Tema Page=====*/
section.headline {
  margin-top: 4rem;
}

section.filter {
  margin-top: 2rem;
  padding: 0 1rem;
}
section.filter .judul {
  font-size: 1.5rem;
  font-family: var(--font-brand);
  text-align: left;
  margin: 1rem 0;
}
section.filter .pills {
  display: flex;
  overflow-x: scroll;
}
section.filter .pills::-webkit-scrollbar {
  display: none;
}
section.filter .pills .pill {
  padding: 0.5rem 1.25rem;
  margin-right: 0.5rem;
  width: auto;
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid var(--color-accent);
  white-space: nowrap;
}
section.filter .pills .pill.active {
  background-color: var(--color-accent);
}
section.filter .type-pills {
  position: sticky;
  bottom: 70px;
}
section.filter .selected {
  margin-top: 0.5rem;
}

section.filter-sticky {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1rem 1rem;
  display: none;
}

.tema-list {
  padding: 0.5rem;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  min-height: 400px;
}

/*=====Music Page=====*/
.music-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.music-list .music-card {
  width: 80%;
  padding: 1.2rem;
  background: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s;
  margin: 0.5rem 0;
}
.music-list .music-card .icon-title-wrapper {
  display: flex;
}
.music-list .music-card .music-icon {
  width: 40px;
  height: 40px;
  margin: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.music-list .music-card .music-icon svg {
  width: 100%;
  height: 100%;
}
.music-list .music-card .music-title {
  text-align: left;
  display: flex;
  align-items: center;
  font-weight: 700;
  flex: 1 1 0%;
}
.music-list .music-card:hover {
  transform: scale(1.05);
}
.music-list #progressWrapper {
  display: none;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-top: 0.5rem;
}
.music-list #timer,
.music-list #duration {
  font-size: 14px;
  min-width: 40px; /* Ensure fixed width */
}
.music-list #progressContainer {
  flex-grow: 1;
  height: 8px;
  background-color: #ddd;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.music-list #progressBar {
  width: 0%;
  height: 100%;
  background-color: var(--color-accent);
  border-radius: 4px;
  transition: width 0.1s linear;
}

section.search-bar {
  display: flex;
  justify-content: center;
  margin: 0 auto 1rem;
  position: sticky;
  top: 70px;
  padding: 1.5rem;
  /* Search Bar Container */
  /* Search Input */
  /* Search Button */
  /* Hover Effects */
  /* Focus Effects */
}
section.search-bar .search-container {
  display: flex;
  align-items: center;
  width: 300px;
  border: 2px solid #ccc;
  border-radius: 25px;
  padding: 5px 10px;
  background-color: white;
  transition: 0.3s;
}
section.search-bar #searchInput {
  border: none;
  outline: none;
  flex-grow: 1;
  padding: 8px;
  font-size: 16px;
  background: transparent;
}
section.search-bar #searchInput:focus, section.search-bar #searchInput:active {
  outline: none;
  border: none;
}
section.search-bar #searchBtn {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3;
}
section.search-bar #searchBtn svg {
  width: 20px;
  height: 20px;
  color: rgba(0, 0, 0, 0.3);
}
section.search-bar .search-container:hover {
  border-color: #007bff;
}
section.search-bar .search-container:focus-within {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

@media screen and (min-width: 768px) {
  :root {
    --image-width: 16rem;
    --image-height: 16rem;
  }
  section.countdown {
    margin-top: 12px;
  }
  header .header-wrapper nav.menu-desktop {
    display: block;
    justify-content: right;
    display: flex;
  }
  header .header-wrapper .menu-header {
    display: none;
  }
  header .header-wrapper .login-btn {
    display: block;
  }
  header .header-wrapper a.chat {
    width: 36px;
    margin: 0 1.5rem;
    color: var(--color-accent-2);
    display: flex;
    flex-direction: column;
  }
  header .header-wrapper a.chat .chat-label {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--color-text-60);
    text-align: center;
  }
  section {
    max-width: 768px;
    padding: 0;
  }
  /*===Hero Section Desktop Style===*/
  section.hero {
    padding: 8rem 4rem 1rem;
    text-align: center;
    margin: auto;
  }
  section.hero .hero-tag {
    font-size: 1.25rem;
    color: var(--color-text-60);
    font-weight: 500;
    margin-bottom: 1rem;
  }
  section.hero h1 {
    font-weight: 700;
    font-size: 4rem;
    line-height: 110%;
    margin-bottom: 1rem;
  }
  section.hero .hero-description {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
  }
  section.hero .hero-btn {
    background-color: var(--color-accent);
    color: var(--color-text-60);
    border-radius: 100px;
    padding: 1rem 2rem;
    font-family: var(--font-brand);
    font-weight: 700;
  }
  section.hero .hero-btn-wrapper {
    display: flex;
    justify-content: center;
  }
  ._3d-container {
    margin-top: 20rem;
  }
  ._3d-perspective {
    left: 0;
  }
  section {
    max-width: 640px;
    margin: 3rem auto;
  }
}/*# sourceMappingURL=style.css.map */