* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  width: 97%;
  margin-inline: auto;
}

header {
  height: 100vh;
  background-color: #443627;
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../../img/bg/bg-2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; */
}

.navigation {
  width: 100%;
  padding: 0px 0 0px 0;
  background-color: #4436279c;
  position: fixed;
  top: 0px;
  z-index: 9999;
}

.navigation .box-navigation {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navigation .box-navigation .box:nth-child(1) {
  align-items: center;
  margin-top: 7px;
}

.navigation .box-navigation .box:nth-child(1) a {
  text-decoration: none;
  align-items: center;
}

.navigation .box-navigation .box:nth-child(1) img {
  width: 40px;
  height: 40px;
}

.navigation .box-navigation .box:nth-child(2) ul {
  display: flex;
  flex-direction: row;
}

.navigation .box-navigation .box:nth-child(2) ul li {
  list-style-type: none;
  margin-left: 40px;
}

.navigation .box-navigation .box:nth-child(2) ul li a {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.navigation .box-navigation .box:nth-child(2) ul li a:hover {
  color: rgb(235, 151, 41);
}

.navigation .box-navigation .box:nth-child(3) {
  display: none;
}

.navigation .box-navigation .box:nth-child(2) ul li i {
  display: none;
}

/* hero style */
header .hero {
  width: 100%;
  height: 100vh;
  position: absolute;
  text-align: center;
  justify-content: center;
  align-items: center;
  justify-content: center;
  padding-top: 375px;
}

header .hero .padan {
  height: 200px;
  width: 600px;
}

header .hero h1 {
  padding-top: 5px;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,500&display=swap");

:root {
  --shiny-cta-bg: #000000;
  --shiny-cta-bg-subtle: #1a1818;
  --shiny-cta-fg: #ffffff;
  --shiny-cta-highlight: rgb(235, 151, 41);
  --shiny-cta-highlight-subtle: #f6c866;
}

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}

@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}

.shiny-cta {
  --animation: gradient-angle linear infinite;
  --duration: 3s;
  --shadow-size: 2px;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  padding: 1.25rem 2.5rem;
  font-family: inherit;
  font-size: 1.125rem;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 360px;
  color: var(--shiny-cta-fg);
  background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg))
      padding-box,
    conic-gradient(
        from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
        transparent,
        var(--shiny-cta-highlight) var(--gradient-percent),
        var(--gradient-shine) calc(var(--gradient-percent) * 2),
        var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
        transparent calc(var(--gradient-percent) * 4)
      )
      border-box;
  box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);

  &::before,
  &::after,
  span::before {
    content: "";
    pointer-events: none;
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    translate: -50% -50%;
    z-index: -1;
  }

  &:active {
    translate: 0 1px;
  }
}

/* Dots pattern */
.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
      circle at var(--position) var(--position),
      white calc(var(--position) / 4),
      transparent 0
    )
    padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(
    from calc(var(--gradient-angle) + 45deg),
    black,
    transparent 10% 90%,
    black
  );
  border-radius: inherit;
  opacity: 0.4;
  z-index: -1;
}

/* Inner shimmer */
.shiny-cta::after {
  --animation: shimmer linear infinite;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(
    -50deg,
    transparent,
    var(--shiny-cta-highlight),
    transparent
  );
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
}

.shiny-cta span {
  z-index: 1;

  &::before {
    --size: calc(100% + 1rem);
    width: var(--size);
    height: var(--size);
    box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
    opacity: 0;
  }
}

/* Animate */
.shiny-cta {
  --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
  transition: var(--transition);
  transition-property: --gradient-angle-offset, --gradient-percent,
    --gradient-shine;

  &,
  &::before,
  &::after {
    animation: var(--animation) var(--duration),
      var(--animation) calc(var(--duration) / 0.4) reverse paused;
    animation-composition: add;
  }

  span::before {
    transition: opacity var(--transition);
    animation: calc(var(--duration) * 1.5) breathe linear infinite;
  }
}

.shiny-cta:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-cta-highlight-subtle);

  &,
  &::before,
  &::after {
    animation-play-state: running;
  }

  span::before {
    opacity: 1;
  }
}

@keyframes gradient-angle {
  to {
    --gradient-angle: 360deg;
  }
}

@keyframes shimmer {
  to {
    rotate: 360deg;
  }
}

@keyframes breathe {
  from,
  to {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
}

/* hero style */

/* location style */

.location {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: rgb(255, 249, 234);
}

.location .box-location {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.location .box-location .box:nth-child(1) {
  max-width: 1000px;
  max-height: 700px;
  padding-right: 40px;
  text-align: justify;
}

.location .box-location .box:nth-child(1) h1 {
  font-size: 52px;
  padding-top: 100px;
}

.location .box-location .box:nth-child(1) a {
  line-height: 2;
  text-align: justify;
  font-size: 25px;
  text-decoration: none;
  color: #000000;
}

.location .box-location .box:nth-child(1) a:visited {
  line-height: 2;
  text-align: justify;
  font-size: 25px;
  text-decoration: none;
  color: #000000;
}

.location .box-location .box:nth-child(2) iframe {
  border-radius: 20px;
  width: 500px;
  height: 500px;
  transition: 0.3s ease-in-out;
}

.location .box-location .box:nth-child(2) iframe:hover {
  transform: scale(1.1);
}

/* location style */

/* juklak style */

.juklak {
  width: 100%;
  display: flex;
  background-color: rgb(255, 249, 234);
}

.juklak .box-juklak .box.box:nth-child(1) h1 {
  padding-top: 100px;
  text-align: center;
  font-size: 52px;
}

.juklak .box-juklak .box.box:nth-child(2) {
  display: flex;
  padding-top: 20px;
  align-items: center;
  justify-content: center;
}

.juklak .box-juklak .box.box:nth-child(2) iframe {
  height: 950px;
  border-radius: 20px;
}

.juklak .box-juklak .box.box:nth-child(3) a {
  text-decoration: none;
  font-size: 20px;
}

.juklak .box-juklak .box.box:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
}

/* juklak style */

/* demo style */

.demo {
  width: 100%;
  display: flex;
  background-color: rgb(255, 249, 234);
}

.demo .box-demo .box.box:nth-child(1) h1 {
  padding-top: 100px;
  text-align: center;
  font-size: 52px;
}

.demo .box-demo .box.box:nth-child(2) {
  display: flex;
  padding-top: 20px;
  align-items: center;
  justify-content: center;
}

.demo .box-demo .box.box:nth-child(2) iframe {
  height: 576px;
  width: 1024px;
  border-radius: 5%;
}

/* demo style */

/* judge */

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
}

.responsive-cell-block {
  min-height: 75px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: space-evenly;
}

.outer-container {
  padding-top: 80px;
  padding-right: 50px;
  padding-bottom: 10px;
  padding-left: 50px;
  background-color: rgb(255, 249, 234);
}

.inner-container {
  max-width: 1320px;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
}

.section-head-text {
  margin-top: 100px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
  font-size: 52px;
  font-weight: 700;
  line-height: 48px;
  color: rgb(0, 0, 0);
  margin: 0 0 10px 0;
}

.section-subhead-text {
  font-size: 25px;
  color: rgb(153, 153, 153);
  line-height: 35px;
  max-width: 470px;
  text-align: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 60px;
  margin-left: 0px;
}

.img-wrapper {
  width: 85%;
  align-items: center;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-media-links {
  width: 125px;
  display: flex;
  justify-content: center;
}

.name {
  font-size: 25px;
  font-weight: 700;
  color: rgb(102, 102, 102);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
}

.position {
  font-size: 25px;
  font-weight: 700;
  color: rgb(255, 153, 0);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.team-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.team-card-container {
  width: 280px;
  margin: 0 0 40px 0;
}

@media (max-width: 500px) {
  .outer-container {
    padding: 10px 20px 10px 20px;
  }

  .section-head-text {
    text-align: center;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap");

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}

/* .judge {
  width: 100%;
  height: 100vh;
  display: flex;
}

.judge .box-judge .box.box:nth-child(1) h1 {
  padding-top: 110px;
  text-align: center;
  font-size: 52px;
}

.judge .box-judge .box.box:nth-child(2) p {
}

.judge .box-judge .box.box:nth-child(2) img {
  display: flex;
  width: 300px;
} */

/* judge */

/* rundown */

.rundown {
  width: 100%;
  height: 100vh;
  display: flex;
  background-color: rgb(255, 249, 234);
}

.rundown .box-rundown .box.box:nth-child(1) h1 {
  padding-top: 110px;
  text-align: center;
  font-size: 52px;
}

.rundown .box-rundown .box.box:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* rundown */

/* contact */

.contact {
  width: 100%;
  height: 100vh;
  display: flex;
  padding-bottom: 100px;

  background-color: rgb(255, 249, 234);
}

.contact .box-contact .box.box:nth-child(1) h1 {
  padding-top: 110px;
  text-align: center;
  font-size: 52px;
}

.contact .box-contact .box.box:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 50px;
}

.contact .box-contact .box.box:nth-child(2) a {
  text-decoration: none;
  font-size: 15px;
}

.btn-cp {
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
  border: none;
  align-items: center;

  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 100px;
  font-size: 20px;
  place-content: center;

  padding: 0.75rem 1rem;
  font-size: 0.825rem;
  line-height: 1rem;

  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  color: #fff;
}

.btn-cp:hover {
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(252, 232, 3, 0.08);
  color: rgb(255, 153, 0);
  transform: translate(0, -0.25rem);
  background-color: rgba(0, 0, 0, 0.5);
}

/* contact

/* footer style */

.foot {
  width: 100%;
  height: 6vh;
  display: flex;
  background-color: rgb(75, 55, 0);
  align-items: center;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
/* footer style */

@media screen and (max-width: 1375px) {
  .location .box-location .box:nth-child(1) {
    padding-right: 0px;
  }

  .location .box-location .box:nth-child(2) iframe {
    width: 700px;
    height: 400px;
  }

  .location .box-location .box:nth-child(1) h1 {
    text-align: center;
  }

  .location .box-location .box:nth-child(1) a {
    font-size: 20px;
  }

  .location .box-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}

@media screen and (max-width: 900px) {
  .navigation .box-navigation .box:nth-child(2) {
    display: flex;
    position: absolute;
    top: 50px;
    right: 50px;
    background-color: rgba(0, 0, 0, 0.4);
    width: 200px;
    border-radius: 15px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .navigation .box-navigation .menu-navigation.menu-active {
    opacity: 1;
    pointer-events: all;
    top: 100px;
  }

  .navigation .box-navigation .box:nth-child(2) ul {
    flex-direction: column;
  }

  .navigation .box-navigation .box:nth-child(2) ul li {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    margin-left: 0;
  }

  .navigation .box-navigation .box:nth-child(2) ul li i {
    color: rgb(255, 255, 255);
    margin-inline: 10px;
    font-size: 22px;
    display: flex;
  }

  .navigation .box-navigation .box:nth-child(3) {
    display: flex;
    align-items: center;
  }

  .navigation .box-navigation .box:nth-child(3) i {
    font-size: 30px;
  }

  header .hero .padan {
    height: 180px;
    width: 580px;
  }

  .location .box-location .box:nth-child(1) {
    padding-right: 0px;
  }

  .location .box-location .box:nth-child(2) iframe {
    width: 700px;
    height: 400px;
  }

  .location .box-location .box:nth-child(1) a {
    font-size: 20px;
  }

  .location .box-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}

@media screen and (max-width: 760px) {
  header .hero .padan {
    height: 100px;
    width: 300px;
  }

  /* location */

  .location .box-location .box:nth-child(2) iframe {
    width: 650px;
    height: 400px;
  }

  .location .box-location .box:nth-child(1) h1 {
    text-align: center;
  }

  .location .box-location .box:nth-child(1) a {
    font-size: 18px;
  }

  /* location */

  /* juklak */

  .juklak .box-juklak .box.box:nth-child(1) h1 {
    font-size: 45px;
  }

  .juklak .box-juklak .box.box:nth-child(2) iframe {
    width: 530px;
    height: 300px;
  }
}
/* juklak */

/* @media screen and (max-width: 875px) {
  .location .box-location .box:nth-child(2) iframe {
    width: 600px;
    height: 300px;
  }

  .location .box-location .box:nth-child(1) h1 {
    font-size: 38px;
  }

  .location .box-location .box:nth-child(1) p {
    font-size: 18px;
  }
} */

@media screen and (max-width: 700px) {
  .location .box-location .box:nth-child(2) iframe {
    width: 570px;
    height: 480px;
  }

  .location .box-location .box:nth-child(1) h1 {
    text-align: center;
  }

  .location .box-location .box:nth-child(1) a {
    font-size: 16px;
  }
}

@media screen and (max-width: 620px) {
  .location .box-location .box:nth-child(2) iframe {
    width: 500px;
    height: 350px;
  }

  .location .box-location .box:nth-child(1) h1 {
    text-align: center;
  }

  .location .box-location .box:nth-child(1) a {
    font-size: 16px;
  }
}

@media screen and (max-width: 560px) {
  .location .box-location .box:nth-child(1) {
    padding-right: 0px;
  }

  .location .box-location .box:nth-child(2) iframe {
    width: 350px;
    height: 250px;
  }

  .location .box-location .box:nth-child(1) h1 {
    font-size: 52px;
    text-align: center;
  }

  .location .box-location .box:nth-child(1) a {
    font-size: 14px;
  }

  .location .box-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .juklak .box-juklak .box.box:nth-child(2) iframe {
    height: 450px;
    width: 320px;
    border-radius: 20px;
  }

  .demo .box-demo .box.box:nth-child(2) iframe {
    height: 260px;
    width: 640px;
  }
}
