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

:root {
  --bg-color: #f9f9f9;
  --bg-box: #f9f9f9;
  --color-1: #15223a;
  --text-1: #0481ff;
  --text-2: #262b33;
  --text-3: #3c434b;
  --box-1: 0 8px 14px hsl(219deg 48% 6% / 40%);
  --btn-bg: linear-gradient(145deg, #00e060, #00b94a);
  --btn-shadow: 0 6px 15px rgba(0, 0, 0, 0.3),
    inset 0 2px 3px rgba(255, 255, 255, 0.3);
}

body {
  min-height: 100vh;
  background-color: var(--bg-color);
  word-break: break-word;
  word-wrap: break-word;
  font-family: "Roboto", "Open Sans", "Arial", sans-serif;
  transition: background-color 1s ease;
}

body.dark {
  --bg-color: #10192c;
  --bg-box: #15213a;
  --color-1: #15213a;
  --text-1: #7abcff;
  --text-2: #f0f2f4;
  --text-3: #d1d6db;
  --box-1: 0 8px 14px hsla(222, 11%, 82%, 0.4);
  --btn-bg: linear-gradient(145deg, #009c43, #007b33);
  --btn-shadow: 0 6px 15px rgba(0, 0, 0, 0.6),
    inset 0 2px 3px rgba(255, 255, 255, 0.15);
}

/* Header */
.head-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--color-1);
}

.head-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 10%;
  height: 100%;
  background-color: #f9f9f9;
  transition: left 1s ease;
  filter: blur(60px);
}

.head-1:hover::before {
  left: 100%;
}

.head-2 {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 2rem;
  width: 100%;
  font-size: 15px;
  z-index: 2;
  color: #f9f9f9;
}

.head-3 {
  display: flex;
  align-items: center;
}

.head-2 span {
  margin: 0 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.head-2 a {
  text-decoration: none;
  color: #f9f9f9;
}

.head-2 span:hover,
.head-2 a:hover {
  color: var(--text-1);
}
/* End Header */

/* Navbar */
.nav-1 {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  backdrop-filter: none;
  transition: background-color 1s ease, backdrop-filter 1s ease;
}

.nav-1.scrolled {
  background-color: transparent;
}

.nav-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.nav-3 {
  flex-shrink: 0;
  margin-left: 2rem;
}

.nav-4 {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-6 {
  display: flex;
  align-items: center;
  margin-right: 2rem;
  gap: 1rem;
}

.nav-7 {
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-weight: 550;
  padding: 5px 15px;
  color: var(--text-1);
  transition: color 0.8s ease;
}

.nav-7::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background-color: var(--text-1);
  transition: width 0.8s ease, opacity 0.8s ease;
  opacity: 0;
}

.nav-7:hover {
  color: var(--text-2);
}

.nav-7:hover::after {
  width: 100%;
  opacity: 1;
}

.nav-7.nav-8 {
  color: var(--text-2);
}

.nav-7.nav-8::after {
  width: 100%;
  opacity: 1;
  background-color: var(--text-1);
}

.nav-5 {
  display: none;
}
/* End Navbar */

/* Carousel Img */
.cl-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  padding: 1rem;
  width: 100%;
}

.cl-2 {
  position: relative;
  max-width: 1000px;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.cl-3 {
  display: none;
}

.cl-3 img {
  vertical-align: middle;
  height: auto;
  width: 100%;
  border-radius: 1rem;
}

.cl-4 {
  text-align: center;
  padding: 10px 0;
  margin-top: 5px;
}

.cl-5 {
  display: inline-block;
  cursor: pointer;
  width: 10px;
  height: 10px;
  margin: 10px 5px;
  border-radius: 50%;
  background-color: var(--text-1);
  transition: background-color 0.6s ease;
}

.cl-6,
.cl-5:hover {
  background-color: black;
}

.fade {
  animation-name: fade;
  animation-duration: 2.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* End Carousel Img */

/* Tittel */
.jd-cd-1,
.jd-cd-2,
.jd-cd-3,
.jd-cd-4,
.jd-cd-5,
.jd-cd-6,
.jd-cd-7,
.jd-cd-8,
.jd-cd-9,
.jd-cd-10,
.jd-cd-11 {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.jd-cd-1 span,
.jd-cd-2 span,
.jd-cd-3 span,
.jd-cd-4 span,
.jd-cd-5 span,
.jd-cd-6 span,
.jd-cd-7 span,
.jd-cd-8 span,
.jd-cd-9 span,
.jd-cd-10 span,
.jd-cd-11 span {
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--text-3);
}

.jd-cd-1 h2,
.jd-cd-2 h2,
.jd-cd-3 h2,
.jd-cd-4 h2,
.jd-cd-5 h2,
.jd-cd-6 h2,
.jd-cd-7 h2,
.jd-cd-8 h2,
.jd-cd-9 h2,
.jd-cd-10 h2,
.jd-cd-11 h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--text-1);
}

.jd-cd-1 p,
.jd-cd-2 p,
.jd-cd-3 p,
.jd-cd-4 p,
.jd-cd-5 p,
.jd-cd-6 p,
.jd-cd-7 p,
.jd-cd-8 p,
.jd-cd-9 p,
.jd-cd-10 p,
.jd-cd-11 p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-2);
}

.jd-cd-1 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.jd-cd-2 {
  margin-top: 6rem;
  margin-bottom: 3rem;
}

.jd-cd-3 {
  margin-top: 8rem;
  margin-bottom: 4rem;
}

.jd-cd-4 {
  margin-top: 6rem;
  margin-bottom: 3rem;
}

.jd-cd-5 {
  margin-top: 6rem;
  margin-bottom: 3rem;
}

.jd-cd-6 {
  margin-top: 6rem;
  margin-bottom: 2rem;
}

.jd-cd-7 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.jd-cd-8 {
  margin-top: 5rem;
  margin-bottom: 4rem;
}

.jd-cd-9 {
  margin-top: 5rem;
  margin-bottom: 3rem;
}

.jd-cd-10 {
  margin: 3rem 0;
}

.jd-cd-11 {
  margin-top: 5rem;
  margin-bottom: 3rem;
}
/* End Tittel */

/* Home Card 3 */
.card-t-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 1rem;
  gap: 1.5rem;
}

.card-t-2 {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 2rem;
  width: 400px;
  border-radius: 1rem;
  background-color: var(--bg-box);
  box-shadow: 0 2px 8px hsl(219deg 48% 8% / 20%);
}

.card-t-3 {
  margin: 0 auto;
  width: 100px;
  object-fit: cover;
}

.card-t-4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-2);
}

.card-t-5 {
  font-size: 16px;
  color: var(--text-3);
}
/* End Home Card 3 */

/* About Card 3 */
.ab-cd-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 1rem;
  gap: 1.5rem;
}

.ab-cd-2 {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 2rem;
  width: 400px;
  border-radius: 1rem;
  background-color: var(--bg-box);
  box-shadow: 0 2px 8px hsl(219deg 48% 8% / 20%);
}

.ab-cd-3 {
  margin: 0 auto;
  width: 100px;
  object-fit: cover;
}

.ab-cd-4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-2);
}

.ab-cd-5 {
  font-size: 16px;
  color: var(--text-3);
}
/* End About Card 3 */

/* Card About */
.abo-1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.abo-2 {
  display: flex;
  width: 1000px;
  padding: 1rem;
  border-radius: 20px;
  background-color: var(--bg-box);
  transition: transform 0.7s ease-in-out, box-shadow 0.7s ease-in-out;
}

.abo-2:hover {
  transform: scale(1.02);
  box-shadow: var(--box-1);
}

.abo-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
}

.abo-3 img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.abo-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  width: calc(100% - 250px);
  color: var(--text-2);
}

.abo-4 h2 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 10px;
}

.abo-4 p {
  font-size: 16px;
  margin-top: 0;
}
/* End Card About */

/* Produk */
.pk-2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.pk-4 {
  margin-top: 4rem;
}

.pk-5 {
  list-style: none;
  padding: 1.4rem 0;
  position: relative;
}

.pk-5::before {
  content: "";
  top: 0;
  bottom: 0;
  position: absolute;
  width: 1px;
  background-color: var(--text-1);
  left: 50%;
}

.pk-5 li {
  margin-bottom: 10rem;
  position: relative;
}

.pk-5 li::before,
.pk-5 li::after {
  content: "";
  display: table;
}

.pk-5 li::after {
  clear: both;
}

.pk-5 li .pk-7::before {
  content: "";
  display: inline-block;
  position: absolute;
  border-top: 15px solid transparent;
  border-left: 15px solid var(--text-1);
  border-right: 0 solid var(--text-1);
  border-bottom: 15px solid transparent;
  top: 80px;
  right: -15px;
}

.pk-5 li .pk-7::after {
  content: "";
  position: absolute;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid var(--bg-box);
  border-right: 0 solid var(--bg-box);
  border-bottom: 14px solid transparent;
  top: 81px;
  right: -13px;
}

.pk-5 li.timeline-inverted .pk-7 {
  float: right;
}

.pk-5 li.timeline-inverted .pk-7::before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.pk-5 li.timeline-inverted .pk-7::after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -13px;
  right: auto;
}

.pk-6 {
  width: 150px;
  height: 150px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1rem;
}

.pk-7 {
  position: relative;
  float: left;
  width: 40%;
  padding: 2rem;
  border: 1px solid var(--text-1);
  border-radius: 1rem;
  background-color: var(--bg-box);
}

.pk-8 {
  display: flex;
  align-items: center;
}

.pk-8 h3 {
  color: var(--text-2);
  font-size: 19px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.pk-9 {
  display: flex;
  align-items: baseline;
}

.pk-9 p {
  text-align: left;
  color: var(--text-3);
  font-size: 15px;
}

.pk-10 {
  margin-top: 1rem;
  color: var(--text-1);
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--text-1);
  border-radius: 0.5rem;
  padding: 10px 20px;
  font-size: 13px;
  cursor: pointer;
  font-weight: bold;
  background-color: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
  display: inline-block;
}

.pk-10:hover {
  color: white;
  z-index: 2;
}

.pk-10::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  z-index: -1;
  left: -40px;
  transform: skewX(45deg);
  background-color: var(--text-1);
  transition: all 1s;
}

.pk-10:hover::before {
  width: 160%;
}
/* End Produk */

/* Card Testimoni */
.ti-1 {
  display: grid;
  max-width: 1210px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  padding: 0.5rem;
  gap: 20px;
}

.ti-2 {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-radius: 2rem;
  background-color: var(--bg-box);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.ti-2:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-1);
}

.ti-3 {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.ti-4 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.ti-5 {
  line-height: 1.5;
  font-style: italic;
  font-size: 15px;
  min-height: 70px;
  margin-bottom: 5px;
  color: var(--text-2);
}

.ti-6 {
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 10px;
  color: #ffc107;
}

.ti-8 {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--text-2);
}

.ti-9 {
  font-size: 11px;
  margin: 3px 0 0 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
}
/* End Card Testimoni */

/* Sosial Media */
.sl-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin: 5rem 0;
}

.sl-2,
.sl-3 {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
}

.card1,
.card2,
.card3,
.card4 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 150px;
  height: 150px;
  outline: none;
  border: none;
  background-color: var(--bg-box);
  transition: 0.2s ease-in-out;
  cursor: pointer;
  box-shadow: 1px 1px 0px rgb(179, 175, 175), 2px 2px 0px rgb(179, 175, 175),
    3px 3px 0px rgb(179, 175, 175), 4px 4px 0px rgb(179, 175, 175),
    5px 5px 0px rgb(179, 175, 175);
}

.card1 {
  border-radius: 90px 5px 5px 5px;
}

.card2 {
  border-radius: 5px 90px 5px 5px;
}

.card3 {
  border-radius: 5px 5px 5px 90px;
}

.card4 {
  border-radius: 5px 5px 90px 5px;
}

.wp {
  margin: 0;
  fill: #25d366;
  width: 50px;
  height: 50px;
}

.im {
  margin: 0;
  fill: #c13584;
  width: 50px;
  height: 50px;
}

.tk {
  margin: 0;
  fill: #010101;
  width: 50px;
  height: 50px;
}

.fk {
  margin: 0;
  fill: #1877f2;
  width: 50px;
  height: 50px;
}

.card1:hover {
  scale: 1.1;
  background-color: #25d366;
  box-shadow: 1px 1px 0px #60e691, 2px 2px 0px #1faa50, 3px 3px 0px #1faa50,
    4px 4px 0px #1faa50, 5px 5px 0px #1faa50;
}

.card1:hover .wp {
  fill: white;
}

.card2:hover {
  scale: 1.1;
  background-color: #c13584;
  box-shadow: 1px 1px 0px #d160a5, 2px 2px 0px #9f296d, 3px 3px 0px #9f296d,
    4px 4px 0px #9f296d, 5px 5px 0px #9f296d;
}

.card2:hover .im {
  fill: white;
}

.card3:hover {
  scale: 1.1;
  background-color: #010101;
  box-shadow: 1px 1px 0px #333, 2px 2px 0px #111, 3px 3px 0px #111,
    4px 4px 0px #111, 5px 5px 0px #111;
}

.card3:hover .tk {
  fill: white;
}

.card4:hover {
  scale: 1.1;
  background-color: #1877f2;
  box-shadow: 1px 1px 0px #5c9aff, 2px 2px 0px #1460c4, 3px 3px 0px #1460c4,
    4px 4px 0px #1460c4, 5px 5px 0px #1460c4;
}

.card4:hover .fk {
  fill: white;
}
/* End Sosial Media */

/* Maps */
.mp-1 {
  max-width: 1350px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.mp-2 iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
/* End Maps */

/* Buttons WhatsApp */
.Btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  height: 60px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 5;
  background: var(--btn-bg);
  box-shadow: var(--btn-shadow);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.sign svg {
  width: 30px;
  transition: transform 0.3s ease;
}

.sign svg path {
  fill: white;
}

.btnText {
  color: white;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}

.Btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4),
    inset 0 2px 3px rgba(255, 255, 255, 0.4);
}

.Btn:active {
  transform: translateY(2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

.Btn:hover .sign svg,
.Btn:hover .btnText {
  animation: float 1.5s ease-in-out infinite;
}
/* End Buttons WhatsApp */

/* Footer */
.footer {
  padding: 2rem;
  background-color: var(--color-1);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: justify;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  gap: 1rem;
}

.footer-col {
  padding: 1rem;
  margin: 0 auto;
}

.footer-col p {
  color: white;
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

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

.footer-logo img {
  width: 200px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.footer-col li {
  margin-bottom: 15px;
}

.footer-col a {
  color: white;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--text-1);
}

.social-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.social-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  margin: 0 5px;
  transition: 0.3s;
}

.social-button:hover {
  background-color: #f2f2f2;
  box-shadow: 0px 0px 6px 3px #00000027;
}

.social-buttons svg {
  width: 30px;
  transition: 0.3s;
}

.em-1 {
  background-color: #0a66c2;
}

.em-1 svg {
  fill: #f2f2f2;
}

.em-1:hover svg {
  fill: #0a66c2;
}

.wh-1 {
  background-color: #25d366;
}

.wh-1 svg {
  fill: #f2f2f2;
}

.wh-1:hover svg {
  fill: #25d366;
}

.ig-1 {
  background-color: #c13584;
}

.ig-1 svg {
  fill: #f2f2f2;
}

.ig-1:hover svg {
  fill: #c13584;
}

.tk-1 {
  background-color: #010101;
}

.tk-1 svg {
  fill: #f2f2f2;
}

.tk-1:hover svg {
  fill: #010101;
}

.fk-1 {
  background-color: #1877f2;
}

.fk-1 svg {
  fill: #f2f2f2;
}

.fk-1:hover svg {
  fill: #1877f2;
}

.lk-1 {
  background-color: #ea4335;
}

.lk-1 svg {
  fill: #f2f2f2;
}

.lk-1:hover svg {
  fill: #ea4335;
}

.footer hr {
  border: 0;
  margin: 2rem auto;
  max-width: 1200px;
  border-top: 1px solid white;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: white;
}
/* End Footer */

/* Blog */
.ns-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.ns-2 {
  display: grid;
  justify-items: center;
  padding: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.ns-3 {
  display: block;
  text-decoration: none;
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  cursor: pointer;
  color: black;
  background-color: var(--bg-box);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.8s ease, box-shadow 0.9s ease;
}

.ns-3:hover {
  cursor: pointer;
  text-decoration: none;
  transform: scale(1.01);
  box-shadow: var(--box-1);
}

a.ns-3 {
  -webkit-tap-highlight-color: transparent;
}

.ns-3 img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
}

.ns-3 h3 {
  text-align: left;
  margin: 1rem 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-2);
}

.ns-3 p {
  text-align: justify;
  margin: 1rem 0.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-3);
}

.ns-4 {
  display: inline-block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 1rem;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 550;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  transition: all 0.5s ease 0s;
  cursor: pointer;
  color: var(--bg-color);
  background-color: var(--text-1);
}

.ns-4:hover {
  background-color: #23c483;
  transform: translateY(-3px);
}

.ns-4:active {
  transform: translateY(-1px);
}
/* End Blog */

/* Blog Content */
.nw-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.nw-2 {
  max-width: 1300px;
  width: 100%;
  padding: 25px;
  box-sizing: border-box;
}

.nw-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  color: var(--text-2);
  text-align: center;
}

.nw-3 h2 {
  max-width: 900px;
  width: 100%;
  margin-top: 1rem;
  font-size: 30px;
  font-weight: 750;
  text-align: center;
}

.nw-4 {
  max-width: 900px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nw-3 p {
  max-width: 900px;
  width: 100%;
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
/* End Blog Content */

/* Logo */
.lo-1 {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.lo-2 {
  display: grid;
  align-items: center;
  justify-content: center;
  position: relative;
  grid-template-columns: 50px 500px 50px;
}

.lo-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.2rem;
  gap: 0.5rem;
  margin-top: 2rem;
}

.lo-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-size: 15px;
  border-radius: 1rem;
  text-decoration: none;
  color: var(--text-2);
  background-color: var(--bg-box);
  box-shadow: 0 2px 8px hsl(219deg 48% 8% / 20%);
  transition: background-color 0.5s, color 0.5s, box-shadow 0.5s;
}

.lo-4:hover {
  color: #f9f9f9;
  background-color: var(--text-1);
}

.lo-5 {
  width: 1px;
  height: 50px;
  margin-top: 3px;
  background-color: var(--text-1);
}

.lo-6 {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatUpDown 5s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

.lo-7 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  width: 300px;
  height: auto;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  background-color: #023258;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lo-8 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* End Logo */

/* Tabel Harga Pasir */
.hp-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
}

.hp-2 {
  margin: 0 1rem;
  overflow-x: auto;
}

.hp-2::-webkit-scrollbar {
  height: 5px;
}

.hp-2::-webkit-scrollbar-thumb {
  border-radius: 2rem;
  background-color: var(--text-2);
}

.hp-3 {
  min-width: 1200px;
  margin-bottom: 0.5rem;
  border-collapse: collapse;
  color: white;
  overflow: hidden;
  text-align: center;
  font-size: 15px;
}

.hp-3 th,
.hp-3 td {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hp-3 th {
  background: #002b5c;
  font-weight: 600;
}

.hp-3 tr:nth-child(even) {
  background: #0059b3;
}

.hp-3 tr:nth-child(odd) {
  background: #0073e6;
}

.hp-3 tr:hover {
  background-color: #66a3ff;
  transition: 0.3s ease;
}

.hp-3 a {
  color: #00e060;
  text-decoration: none;
  font-weight: bold;
}

.hp-3 a:hover {
  color: white;
  text-decoration: none;
}
/* End Tabel Harga Pasir */

/* Tabel Wa */
.tw-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  max-width: 1360px;
  width: 100%;
  gap: 2rem;
  margin: 4rem auto;
  background-color: #002b5c;
}

.tw-2 {
  max-width: 768px;
  padding: 0 0.5rem;
  width: 100%;
  color: white;
}

.tw-2 h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.tw-2 p {
  font-size: 22px;
  font-weight: 700;
}

.tw-3 {
  display: flex;
  align-items: center;
  width: 220px;
  gap: 0.5rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-color: #1faa4a;
}

.tw-3:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.25);
}

.tw-3 svg {
  fill: #00e060;
}

.tw-4 {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  margin-left: -10px;
  background-color: white;
}

.tw-5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
}

.tw-5 span {
  width: 50px;
  font-size: 12px;
  background-color: #d9fdd3;
  color: #1faa4a;
  border-radius: 1rem;
  padding: 2px 6px;
}

.tw-5 h3 {
  font-size: 16px;
  font-weight: 600;
  color: white;
}
/* End Tabel Wa */

/* Isi Produk */
.ip-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.ip-2 {
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}

.ip-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  color: var(--text-2);
}

.ip-3 h2 {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

.ip-3 h4 {
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
}

.ip-3 p {
  width: 100%;
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

.ip-4 {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* End Isi Produk */

/* Produk Card */
.pc-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 1rem;
}

.pc-2 {
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
  margin-top: 2rem;
  margin-bottom: 5rem;
  border-radius: 1rem;
  background-color: var(--bg-box);
  transition: all 0.5s ease;
}

.pc-2:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-1);
}

.pc-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.pc-4 {
  display: flex;
  width: 100%;
  max-width: 300px;
}

.pc-4 img {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
}

.pc-5 {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: justify;
  gap: 1rem;
}

.pc-5 h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-2);
  text-transform: uppercase;
}

.pc-5 h2 {
  font-size: 1.2rem;
  color: var(--text-2);
}

.pc-5 p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-3);
  flex-grow: 1;
}

.pc-6 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0.2rem;
  padding: 0.2rem 0;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.5s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-color: #1faa4a;
}

.pc-6:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.25);
}

.pc-7 {
  width: 40px;
  fill: white;
}

.pc-8 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pc-8 h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: white;
}
/* End Produk Card */

/* Carousel Harga Img  */
.ch-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
  width: 100%;
}

.ch-2 {
  position: relative;
  max-width: 1000px;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.ch-3 img {
  vertical-align: middle;
  height: auto;
  width: 100%;
  border-radius: 1rem;
}
/* End Carousel Harga Img  */

/* 404 */
.jd-cd-404 {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 5rem 0;
  gap: 2rem;
}

.jd-cd-404 span {
  display: block;
  text-transform: uppercase;
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: var(--text-3);
}

.jd-cd-404 h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--text-1);
}
/* End 404 */

/* RESPONSIF */
@media (max-width: 1220px) {
  /* Card Testimoni */
  .ti-1 {
    max-width: 1000px;
    grid-template-columns: repeat(2, 1fr);
  }
  /* End Card Testimoni */
}

@media (max-width: 1127px) {
  /* Blog */
  .ns-2 {
    gap: 4rem;
  }
  /* Blog */
}

@media (max-width: 1100px) {
  /* Card About */
  .abo-2 {
    width: 950px;
  }
  /* End Card About */

  /* Tabel Wa */
  .tw-1 {
    display: grid;
  }

  .tw-2 {
    text-align: center;
  }

  .tw-3 {
    margin: 0 auto;
  }
  /* End Tabel Wa */
}

@media (max-width: 1050px) {
  /* Produk Card */
  .pc-2 {
    max-width: 700px;
    padding: 2rem;
    margin: 4rem 0;
  }

  .pc-3 {
    flex-direction: column;
    gap: 1.5rem;
  }

  .pc-4 {
    display: flex;
    width: 100%;
    max-width: 650px;
  }

  .pc-4 img {
    height: 400px;
  }

  .pc-5 {
    text-align: center;
    gap: 1rem;
  }
  /* End Produk Card */
}

@media (max-width: 1020px) {
  /* Card Testimoni */
  .ti-1 {
    max-width: 700px;
  }
  /* End Card Testimoni */
}

@media (max-width: 1024px) {
  /* Footer */
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    gap: 1.5rem;
  }

  .footer-col {
    margin: 0 0;
    padding: 1rem;
    border-radius: 1rem;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* End Footer */
}

@media (max-width: 1000px) {
  /* Navbar */
  .nav-7 {
    padding: 5px 5px;
  }
  /* End Navbar */

  /* Card About */
  .abo-2 {
    flex-direction: column;
    align-items: center;
    width: 700px;
    height: 460px;
    padding: 0;
  }

  .abo-3 {
    margin-bottom: -15px;
  }

  .abo-4 {
    width: 650px;
    text-align: center;
  }

  .abo-4 h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .abo-4 p {
    font-size: 16px;
  }
  /* End Card About */

  /* Produk Pasir */
  .pk-5::before {
    left: 10%;
  }

  .pk-5 li {
    margin-bottom: 5rem;
  }

  .pk-5 li .pk-7::before {
    border-right: 15px solid var(--text-1);
    border-left: 0 solid var(--text-1);
    right: auto;
    left: -15px;
  }

  .pk-5 li .pk-7::after {
    border-right: 14px solid var(--bg-box);
    border-left: 0 solid var(--bg-box);
    right: auto;
    left: -13px;
  }

  .pk-6 {
    left: 10%;
  }

  .pk-7 {
    float: right;
    width: 75%;
    padding: 1.5rem;
  }
  /* End Produk Pasir */

  /* Carousel Img */
  .cl-1 {
    padding: 0;
    margin-top: 0;
  }

  .cl-2,
  .cl-3 img {
    border-radius: 0;
  }

  .ch-1 {
    margin: 0;
  }

  .ch-2,
  .ch-3 img {
    border-radius: 0;
  }

  .cl-5 {
    margin: 8px 8px;
  }
  /* End Carousel Img */
}

@media (max-width: 900px) {
  /* Navbar */
  .nav-7 {
    font-size: 14px;
  }
  /* End Navbar */
}

@media (max-width: 800px) {
  /* Tittel */
  .jd-cd-1 span,
  .jd-cd-2 span,
  .jd-cd-3 span,
  .jd-cd-4 span,
  .jd-cd-5 span,
  .jd-cd-6 span,
  .jd-cd-7 span,
  .jd-cd-8 span,
  .jd-cd-9 span,
  .jd-cd-10 span,
  .jd-cd-11 span {
    display: block;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--text-3);
  }

  .jd-cd-1 h2,
  .jd-cd-2 h2,
  .jd-cd-3 h2,
  .jd-cd-4 h2,
  .jd-cd-5 h2,
  .jd-cd-6 h2,
  .jd-cd-7 h2,
  .jd-cd-8 h2,
  .jd-cd-9 h2,
  .jd-cd-10 h2,
  .jd-cd-11 h2 {
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--text-1);
  }

  .jd-cd-1 p,
  .jd-cd-2 p,
  .jd-cd-3 p,
  .jd-cd-4 p,
  .jd-cd-5 p,
  .jd-cd-6 p,
  .jd-cd-7 p,
  .jd-cd-8 p,
  .jd-cd-9 p,
  .jd-cd-10 p,
  .jd-cd-11 p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-2);
  }
  /* End Tittel */
}

@media (max-width: 780px) {
  /* Card About */
  .abo-2 {
    width: 650px;
    height: 480px;
  }

  .abo-4 {
    width: 600px;
  }
  /* End Card About */
}

@media (max-width: 768px) {
  /* Footer */
  .footer-logo img {
    width: 150px;
  }

  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 0;
  }

  .footer-col li {
    margin-bottom: 10px;
  }

  .footer-col a {
    font-size: 14px;
  }
  /* Footer */

  /* Blog */
  .ns-3 img {
    height: 350px;
  }
  /* Blog */

  /* Tabel Wa */
  .tw-1 {
    gap: 1.5rem;
  }

  .tw-2 h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .tw-2 p {
    font-size: 18px;
  }

  .tw-3 {
    width: 210px;
    gap: 0.2rem;
  }

  .tw-4 {
    width: 60px;
    height: 60px;
    margin-right: 5px;
    margin-left: -5px;
  }
  /* End Tabel Wa */
}

@media (max-width: 750px) {
  /* Header */
  .head-2 {
    padding: 0.4rem 1rem;
    font-size: 14px;
  }
  /* End Header */

  /* Navbar */
  .nav-3 {
    margin-left: 1rem;
  }

  .nav-5 {
    display: block;
    font-size: 18px;
    margin-right: 1.5rem;
    color: var(--text-1);
    cursor: pointer;
    z-index: 20;
  }

  .nav-6 {
    position: absolute;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    top: 55px;
    left: 0;
    min-height: 100vh;
    width: 100%;
    padding: 2rem 0;
    gap: 4rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    background-color: var(--bg-color);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
  }

  .nav-6.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-7 {
    font-size: 1rem;
    padding: 5px 20px;
  }

  .nav-1.scrolled {
    background-color: var(--bg-color);
  }
  /* End Navbar */

  /* Carousel Img */
  .cl-5 {
    width: 8px;
    height: 8px;
    margin: 8px 8px;
  }
  /* End Carousel Img */

  /* Blog Content */
  .nw-3 {
    gap: 1rem;
  }

  .nw-3 h2 {
    margin-top: 0.5rem;
    font-size: 25px;
  }

  .nw-3 p {
    font-size: 15px;
  }
  /* End Blog Content */

  /* Buttons WhatsApp */
  .Btn {
    gap: 6px;
    padding: 0 15px;
    height: 50px;
  }

  .sign svg {
    width: 25px;
  }

  .btnText {
    font-size: 14px;
  }
  /* End Buttons WhatsApp */
}

@media (max-width: 710px) {
  /* Card Testimoni */
  .ti-1 {
    max-width: 650px;
  }
  /* End Card Testimoni */
}

@media (max-width: 700px) {
  /* Card About */
  .abo-2 {
    padding: 2rem 0rem;
    width: 90%;
    height: auto;
  }

  .abo-3 {
    margin-top: -20px;
  }

  .abo-4 {
    width: 90%;
  }

  .abo-4 h2 {
    font-size: 25px;
  }

  .abo-4 p {
    font-size: 15px;
  }
  /* End Card About */

  /* Produk Pasir */
  .pk-5::before {
    left: 12%;
  }

  .pk-5 li .pk-7::before {
    top: 60px;
  }

  .pk-5 li .pk-7::after {
    top: 61px;
  }

  .pk-6 {
    width: 120px;
    height: 120px;
    left: 12%;
  }

  .pk-7 {
    width: 70%;
  }

  .pk-8 h3 {
    font-size: 17px;
  }

  .pk-9 p {
    font-size: 13px;
  }

  .pk-10 {
    font-size: 12px;
  }
  /* End Produk Pasir */

  /* Produk Card */
  .pc-2 {
    margin: 4rem 1rem;
  }
  /* End Produk Card */
}

@media (max-width: 650px) {
  /* Logo */
  .lo-2 {
    grid-template-columns: 40px 400px 40px;
  }

  .lo-7 {
    width: 250px;
  }
  /* End Logo */
}

@media (max-width: 600px) {
  /* Maps */
  .mp-2 iframe {
    height: 300px;
  }
  /* End Maps */

  /* Isi Produk */
  .ip-3 h2 {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .ip-3 h4 {
    font-size: 1.2rem;
  }

  .ip-3 p {
    font-size: 0.9rem;
  }
  /* End Isi Produk */

  /* Produk Card */
  .pc-1 {
    margin-bottom: 4rem;
  }

  .pc-2 {
    margin: 1rem 1rem;
  }

  .pc-4 img {
    height: 300px;
  }

  .pc-5 {
    gap: 1rem;
  }

  .pc-5 h1 {
    font-size: 1.4rem;
  }

  .pc-5 h2 {
    font-size: 1.1rem;
  }

  .pc-5 p {
    font-size: 0.9rem;
  }

  .pc-7 {
    width: 35px;
  }

  .pc-8 h3 {
    font-size: 1rem;
  }
  /* End Produk Card */
}

@media (max-width: 550px) {
  /* Card About */
  .abo-3 {
    width: 200px;
    margin-bottom: -10px;
  }

  .abo-4 h2 {
    font-size: 24px;
  }

  .abo-4 p {
    font-size: 14px;
  }
  /* End Card About */

  /* Carousel Img */
  .cl-5 {
    width: 6px;
    height: 6px;
    margin: 8px 6px;
  }
  /* End Carousel Img */

  /* Blog Content */
  .nw-3 h2 {
    font-size: 22px;
  }

  .nw-3 p {
    font-size: 14px;
  }
  /* End Blog Content */

  /* Blog */
  .ns-1 {
    padding: 1rem;
    max-width: 1350px;
  }

  .ns-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
  }

  .ns-3 img {
    height: 300px;
  }

  .ns-4 {
    padding: 0.8rem;
    font-size: 14px;
  }
  /* End Blog */
}

@media (max-width: 500px) {
  /* Produk Pasir */
  .pk-5::before {
    left: 12%;
  }

  .pk-5 li .pk-7::before {
    top: 50px;
  }

  .pk-5 li .pk-7::after {
    top: 51px;
  }

  .pk-6 {
    width: 100px;
    height: 100px;
    left: 12%;
  }

  .pk-7 {
    width: 65%;
  }

  .pk-8 h3 {
    font-size: 15px;
  }

  .pk-10 {
    font-size: 11px;
  }
  /* End Produk Pasir */

  /* Card Testimoni */
  .ti-1 {
    max-width: 350px;
    grid-template-columns: repeat(1, 1fr);
  }

  .ti-5 {
    font-size: 14px;
  }

  .ti-8 {
    font-size: 15px;
  }

  .ti-9 {
    font-size: 10px;
  }
  /* End Card Testimoni */

  /* Logo */
  .lo-2 {
    grid-template-columns: 30px 300px 30px;
  }

  .lo-4 {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .lo-7 {
    width: 200px;
  }
  /* End Logo */

  /* Tittel */
  .jd-cd-11 h2 {
    font-size: 1.8rem;
  }
  /* End Tittel */

  /* Produk Card */
  .pc-2 {
    padding: 1.5rem 1rem;
    margin: 1rem 0;
  }

  .pc-4 img {
    height: 250px;
  }
  /* End Produk Card */
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 450px) {
  /* Header */
  .head-2 span {
    margin: 0 8px;
  }
  /* End Header */

  /* Card About */
  .abo-3 {
    width: 180px;
  }

  .abo-4 h2 {
    font-size: 23px;
  }

  .abo-4 p {
    font-size: 13px;
  }
  /* End Card About */

  /* Tabel Wa */
  .tw-1 {
    gap: 2rem;
  }

  .tw-2 h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .tw-2 p {
    font-size: 16px;
  }

  .tw-3 {
    width: 190px;
    gap: 0.2rem;
  }

  .tw-4 {
    width: 55px;
    height: 55px;
    margin-right: 5px;
    margin-left: -5px;
  }

  .tw-5 span {
    width: 44px;
    font-size: 10px;
  }

  .tw-5 h3 {
    font-size: 14px;
  }
  /* End Tabel Wa */
}

@media (max-width: 420px) {
  /* Blog */
  .ns-3 img {
    height: 250px;
  }

  .ns-3 h3 {
    font-size: 1rem;
  }

  .ns-3 p {
    font-size: 0.8rem;
  }

  .ns-4 {
    letter-spacing: 0.5px;
    padding: 0.8rem;
  }
  /* End Blog */
}

@media (max-width: 400px) {
  /* Header */
  .head-2 {
    font-size: 13px;
  }

  .head-2 span {
    margin: 0 6px;
  }
  /* End Header */

  /* Navbar */
  .nav-4 {
    font-size: 16px;
  }
  /* End Navbar */

  /* Blog Content */
  .nw-3 h2 {
    font-size: 18px;
  }
  /* End Blog Content */

  /* Logo */
  .lo-2 {
    grid-template-columns: 30px 240px 30px;
  }

  .lo-3 {
    gap: 0.3rem;
    margin-top: 2rem;
  }

  .lo-4 {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .lo-7 {
    width: 180px;
  }
  /* End Logo */

  /* About Card 3 */
  .ab-cd-1,
  .card-t-1 {
    gap: 3rem;
  }
  .ab-cd-2 {
    gap: 1rem;
    padding: 2rem 1rem;
    width: 300px;
  }

  .card-t-3 {
    width: 80px;
  }

  .ab-cd-4,
  .card-t-4 {
    font-size: 18px;
  }

  .ab-cd-5,
  .card-t-5 {
    font-size: 14px;
  }
  /* End About Card 3 */

  /* Tittel */
  .jd-cd-1 span,
  .jd-cd-2 span,
  .jd-cd-3 span,
  .jd-cd-4 span,
  .jd-cd-5 span,
  .jd-cd-6 span,
  .jd-cd-7 span,
  .jd-cd-8 span,
  .jd-cd-9 span,
  .jd-cd-10 span,
  .jd-cd-11 span {
    font-size: 0.7rem;
  }

  .jd-cd-1 h2,
  .jd-cd-2 h2,
  .jd-cd-3 h2,
  .jd-cd-4 h2,
  .jd-cd-5 h2,
  .jd-cd-6 h2,
  .jd-cd-7 h2,
  .jd-cd-8 h2,
  .jd-cd-9 h2,
  .jd-cd-10 h2 {
    font-size: 1.8rem;
  }

  .jd-cd-11 h2 {
    font-size: 1.5rem;
  }

  .jd-cd-1 p,
  .jd-cd-2 p,
  .jd-cd-3 p,
  .jd-cd-4 p,
  .jd-cd-5 p,
  .jd-cd-6 p,
  .jd-cd-7 p,
  .jd-cd-8 p,
  .jd-cd-9 p,
  .jd-cd-10 p,
  .jd-cd-11 p {
    font-size: 0.8rem;
  }
  /* End Tittel */

  /* Produk Card */
  .pc-4 img {
    height: 200px;
  }

  .pc-5 h1 {
    font-size: 1.2rem;
  }

  .pc-5 h2 {
    font-size: 1rem;
  }

  .pc-5 p {
    font-size: 0.8rem;
  }
  /* End Produk Card */
}

@media (max-width: 382px) {
  /* Produk Pasir */
  .pk-8 h3 {
    font-size: 13px;
  }
  /* End Produk Pasir */
}

@media (max-width: 380px) {
  /* Footer */
  .social-button {
    width: 35px;
    height: 35px;
  }

  .footer-bottom p {
    font-size: 11px;
  }
  /* End Footer */
}

@media (max-width: 370px) {
  /* Header */
  .head-2 {
    font-size: 12px;
  }
  /* End Header */
}

@media (max-width: 360px) {
  /* Card Testimoni */
  .ti-1 {
    max-width: 290px;
  }

  .ti-5 {
    font-size: 14px;
  }

  .ti-8 {
    font-size: 15px;
  }

  .ti-9 {
    font-size: 10px;
  }
  /* End Card Testimoni */
}

@media (max-width: 355px) {
  /* Header */
  .head-2 {
    font-size: 11px;
  }
  /* End Header */
}

@media (max-width: 350px) {
  /* Card About */
  .abo-3 {
    width: 160px;
    margin-bottom: -5px;
  }

  .abo-4 h2 {
    font-size: 22px;
  }

  .abo-4 p {
    font-size: 12px;
  }
  /* End Card About */

  /* Produk Pasir */
  .pk-5 li .pk-7::before {
    top: 45px;
  }

  .pk-5 li .pk-7::after {
    top: 46px;
  }

  .pk-6 {
    width: 90px;
    height: 90px;
  }

  .pk-8 h3 {
    font-size: 12px;
  }

  .pk-9 p {
    font-size: 11px;
  }
  /* End Produk Pasir */

  /* Carousel Img */
  .cl-5 {
    margin: 6px 4px;
  }
  /* End Carousel Img */

  /* Sosial Media */
  .card1,
  .card2,
  .card3,
  .card4 {
    width: 130px;
    height: 130px;
  }
  /* End Sosial Media */
}

@media (max-width: 328px) {
  /* Produk Pasir */
  .pk-8 h3 {
    font-size: 11px;
  }

  .pk-9 p {
    font-size: 11px;
  }

  .pk-10 {
    font-size: 9px;
  }
  /* End Produk Pasir */
}
