:root {
  --background: #fff8f8;
  --text: #6d6d6d;
  --h1: #ffffff;
  --h2: #ffffff;
  --color1: #;
  --color2: #;
  --color3: #;
  --button1: #f26e5f;
  --outline1: #b1373d;
  --button2: #d4e4f4;
  --outline2: #85acd4;
}

footer {
  display: none;
}

nav {
  display: none;
}

*,
body,
html {
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  color: var(--text);
  /* overflow: hidden; */
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

p {
  font-size: 14px;
}

section {
  width: 1200px;
}

a {
  list-style: none;
  text-decoration: none;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: var(--background);

  padding: 0px;
  margin: 0px;

  gap: 40px;
  overflow-x: hidden;
}

.conten-area {
  display: flex;
  align-items: flex-start;
  justify-content: center;

  margin-top: 50px;

  width: 100vw;
  /* height: 100%; */
  /* background: #000; */
}

/* header */

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 70px;
  box-shadow: 0px 3px 26.100000381469727px rgba(0, 0, 0, 0.25);
  background-color: var(--background);

  z-index: 10;
}

header > img {
  object-fit: cover;
  object-position: center center;
}

#logo-utama {
  width: 100px;
}

header > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  width: 1200px;
}

header > div .menu {
  display: flex;
  flex-direction: row;
  gap: 30px;
  list-style: none;
}

header > div .menu a {
  cursor: pointer;
  height: 20px;
  display: inline-block;

  font-size: 15px;
}

header > div .menu a::after {
  content: "";
  display: block;
  padding-bottom: 2px;
  border-bottom: var(--outline2) solid 1px;
  transform: scaleX(0);
  transition: 0.2s linear;
}

header > div .menu a:hover::after {
  transform: scaleX(0.5);
}

header > div .menu a:hover {
  color: var(--outline2);
}

.btn-beli {
  display: flex;
  align-items: center;
  position: relative;
}

.btn-beli img {
  height: 55px;
  width: 55px;
  position: absolute;
  left: 0;
  bottom: 0;

  object-fit: cover;
  object-position: center center;
}

.btn-beli button {
  cursor: pointer;
  padding: 7px;
  border-radius: 100px;
  background-color: var(--button1);
  border-right: var(--outline1) solid 4px !important;
  border-bottom: var(--outline1) solid 4px !important;
  border: 1px solid var(--outline1);
}

.btn-beli button:hover {
  background-color: #ff6352e3;
}

.btn-beli button:active {
  background-color: var(--outline1);
}

.btn-beli button p {
  color: white;
  margin-left: 50px;
  margin-right: 10px;
}

/* wrap-content */

.wrap-content {
  display: flex;
  flex-direction: column;
  width: 1200px;

  margin-top: 100px;
  gap: 40px;
}

.hero {
  border-radius: 20px;
  background-position: center center;
}

.hero > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}

.hero > div h1 {
  color: var(--h1);
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #896464;
  line-height: 70px;
}

.hero-judul {
  margin-left: 50px;
}

/* video */

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

.video iframe {
  border-radius: 20px;
  border: transparent;
}

.hubungi {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  height: 140px;
  border-radius: 20px;
  background-image: linear-gradient(
    10deg,
    rgba(248, 186, 173, 1) 47%,
    rgba(253, 212, 210, 1) 100%
  );
}

.hubungi > img {
  margin-left: 50px;
  width: 250px;
}

.hubungi.footer {
  background: #ffeace;
  margin-bottom: 50px;
}

.hubungi > h3 {
  font-size: 40px;
  margin-left: 50px;
  color: white;
}

.hubungi .btn-hubungi {
  display: flex;
  align-items: center;
  position: relative;

  margin-right: 50px;
}

.btn-hubungi img {
  height: 65px;
  width: 65px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin-bottom: 10px;

  object-fit: cover;
  object-position: center center;
}

.btn-hubungi button {
  cursor: pointer;
  padding: 10px;
  border-radius: 100px;
  background-color: var(--button2);
  border-right: var(--outline2) solid 4px !important;
  border-bottom: var(--outline2) solid 4px !important;
  border: 1px solid var(--outline2);
}

.btn-hubungi button:hover {
  background-color: #b4d4f3;
}

.btn-hubungi button:active {
  background-color: var(--outline2);
}

.btn-hubungi button p {
  color: black;
  margin-left: 50px;
  margin-right: 10px;
  font-weight: 600;
  font-size: 20px;
}

/* tanya */

.tanya {
  display: flex;
  flex-direction: row;
  border-radius: 20px;
  gap: 20px;
}

.tanya img {
  width: 70%;
}

.tanya > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--button2);

  padding: 10px;
  border-radius: 20px;
  box-shadow: 0px 3px 26.100000381469727px rgba(0, 0, 0, 0.25);
}

.tanya > div p {
  font-size: 23px;
  color: black;

  width: 70%;
  font-weight: 600;
}

/* wrap-card */

.wrap-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrap-card > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.wrap-card > div h2 {
  font-size: 50px;
  color: white;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #896464;
}

.wrap-card > div .content-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  margin-top: 100px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  padding-bottom: 30px;
  width: 100%;

  background-color: #896464;
  border-radius: 20px;

  cursor: pointer;
}

.card:hover {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.card > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.card > div img {
  margin-top: -100px;
  width: 70%;
  margin-bottom: 20px;
}

.card > div p {
  color: #5e3032;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  width: 75%;
  line-height: 27px;
}

.card.yellow {
  background-color: #fdefb1;
}

.card.pink {
  background-color: #fdd4d2;
}

.card.blue {
  background-color: #d4e4f4;
}

/* jawab */

.jawab {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.jawab img {
  object-fit: cover;
  object-position: center center;
  width: 70%;
}

.jawab > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jawab > div h3 {
  color: #896464;
}

.jawab > div p {
  font-size: 20px;
  font-weight: 600;
}

/* apaja */

.apaja {
  display: flex;
  flex-direction: row;
  align-items: center;

  overflow: hidden;
  gap: 100px;
  border-radius: 20px;

  background: #f4f1d6;
}

.apaja img {
  width: 50%;
}

.apaja h3 {
  margin-left: 50px;
  color: #896464;
}

/* produk */

.produk {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.img-container {
  max-width: 90%;
  max-height: 90%;
}

.img-container img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

.wrap-img {
  display: flex;
  gap: 10px;
}

.img-kecil,
.img-besar-tambah {
  width: 250px;
  height: 250px;
  border-radius: 10px;

  object-fit: cover;
  object-position: center center;
}

.img-besar {
  width: 510px;
  border-radius: 10px;

  object-fit: cover;
  object-position: center center;
}

.wrap-img > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wrap-img > div > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.produk-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.produk-text .conten-produk-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  height: 85%;
  background-color: #fdf1e5;
  border-radius: 20px;
  gap: 50px;
}

.conten-produk-text h2 {
  line-height: 40px;
}

.conten-produk-text h3 {
  font-weight: 500;
  width: 70%;
}

.produk-btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  height: 50px;
}

.produk-btn button {
  width: 100%;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.shopee {
  background-color: #ffdebb;
  border-bottom: 5px solid #2d191a !important;
  border-right: 5px solid #2d191a !important;
  border: 1px solid #2d191a;
}

.chat-admin {
  background-color: #f8baad;
  border-bottom: 5px solid #2d191a !important;
  border-right: 5px solid #2d191a !important;
  border: 1px solid #2d191a;
}

.shopee:hover,
.chat-admin:hover {
  opacity: 90%;
}

.shopee:active {
  background-color: #2d191a;
}

.chat-admin:active {
  background-color: #2d191a;
}

.kelebihan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.kelebihan h3 {
  font-size: 50px;
}

.kelebihan ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  width: 100%;
}

.kelebihan ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 80px;
  gap: 30px;
  padding: 10px;
  padding-left: 20px;
  border-radius: 20px;
}

.kelebihan ul li:hover {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.kelebihan ul li p {
  font-size: 20px;
  font-weight: 600;
}

.kelebihan ul li h3 {
  font-size: 35px;
}

/* yuk */

.yuk {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fdf1e5;
  border-radius: 20px;

  height: 400px;
}

.yuk h3 {
  width: 60%;
  text-align: center;
}

.yuk p {
  width: 55%;
  text-align: center;
  font-size: 20px;
}

/* testimoni */

.testimoni {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.testimoni .testimonial-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-container.active {
  display: flex;
  animation: slideInRight 0.5s forwards;
}

.testimonial-container.reverse {
  animation: slideInLeft 0.5s forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.text-testimoni {
  padding: 50px;
  border: #f8baad solid 5px;
  border-radius: 20px;
  width: 60%;

  background-color: #fff;
}

.text-testimoni p,
.text-testimoni i {
  font-size: 20px;
}

.wrap-img-testimoni {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 80%;
}

.img-testimoni {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  background: #f8e2d5;
  padding: 20px;
  border-radius: 20px;
}

.img-testimoni p {
  font-size: 15px;
  font-weight: 600;
}

.img-testimoni img {
  height: 400px;
  object-fit: contain;
  object-position: center center;
  border-radius: 10px;
}

.wrap-button-testimoni {
  display: flex;
  flex-direction: row;
  gap: 20px;
  height: 20%;
}

.wrap-button-testimoni button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100px;
  border-radius: 20px;
  font-size: 100px;

  cursor: pointer;
}

.wrap-button-testimoni .btn-pink {
  background-color: #f8baad;
  border: transparent;
}

.wrap-button-testimoni .btn-cream {
  background-color: #f8e2d5;
  border: transparent;
}

.wrap-button-testimoni .btn-pink:hover {
  background-color: #faa695;
  border: transparent;
}

.wrap-button-testimoni .btn-cream:hover {
  background-color: rgb(255, 213, 190);
  border: transparent;
}

.wrap-button-testimoni .btn-pink:active {
  background-color: #e08775;
  border: transparent;
}

.wrap-button-testimoni .btn-cream:active {
  background-color: rgb(238, 172, 137);
  border: transparent;
}

.wrap-button-testimoni .btn-cream {
  background-color: #f8e2d5;
  border: transparent;
}

.arrow-pink {
  border: solid #f8e2d5;
  border-width: 0 10px 10px 0;
  display: inline-block;
  padding: 20px;
  border-radius: 10px;
}

.arrow-cream {
  border: solid #f8baad;
  border-width: 0 10px 10px 0;
  display: inline-block;
  padding: 20px;
  border-radius: 10px;
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  color: #f8baad;
}

@media only screen and (max-width: 600px) {
  *,
  body,
  html {
    font-family: "Poppins", sans-serif;
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    color: var(--text);
    /* overflow: hidden; */
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
  }

  p {
    font-size: 14px;
  }

  section {
    width: 99%;
  }

  body {
    width: 100vw;
    height: 100vh;
    background-color: var(--background);

    padding: 0px;
    margin: 0px;

    gap: 40px;
    overflow-x: hidden;
    position: relative;
  }

  .conten-area {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    width: 100%;
    /* height: 100%; */
    /* background: #000; */
    /* margin-bottom: 100px; */
  }

  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: sticky !important;
    bottom: 0;
    height: 50px;
    width: 100vw;
    background: #fdefb1;
    margin-top: 10px;
    box-shadow: 0px 3px 26.100000381469727px rgba(0, 0, 0, 0.25);
  }

  footer > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    color: #2d191a;
  }

  footer > div .bar i {
    color: #fdefb1;
  }

  footer > div .bar {
    width: 40px;
    height: 40px;
    background: #f8baad;

    border-radius: 100%;
    border: transparent;
    cursor: pointer;
  }

  footer > div .bar:active {
    background: #d2978b;
  }

  /* <nav> */

  nav {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;

    width: 100%;
    /* height: 70%; */
    box-shadow: 0px 3px 26.100000381469727px rgba(0, 0, 0, 0.25);
    background-color: #f8baad;
    animation: slideUp 0.5s ease forwards;
  }

  @keyframes slideUp {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(0);
    }
  }

  nav.show {
    display: block;
    transform: translateY(0);
  }

  nav.hide {
    animation: slideDown 0.5s ease forwards;
  }

  @keyframes slideDown {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(100%);
    }
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  nav ul li {
    color: white;
    font-size: 20px;
  }

  nav ul .btn-down-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 100%;
    background-color: white;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }

  nav ul .btn-down-nav i {
    color: #f8baad;
  }

  /* nav end */

  .btn-beli.mobile {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    /* width: 100%; */
  }

  .btn-beli {
    display: flex;
    align-items: center;
    position: relative;
  }

  .btn-beli img {
    height: 50px;
    width: 50px;
    position: absolute;
    left: 0;
    bottom: 0;

    object-fit: cover;
    object-position: center center;
  }

  .btn-beli button {
    cursor: pointer;
    padding: 5px;
    border-radius: 100px;
    background-color: var(--button1);
    border-right: var(--outline1) solid 4px !important;
    border-bottom: var(--outline1) solid 4px !important;
    border: 1px solid var(--outline1);
  }

  .btn-beli button:hover {
    background-color: #ff6352e3;
  }

  .btn-beli button:active {
    background-color: var(--outline1);
  }

  .btn-beli button p {
    color: white;
    margin-left: 45px;
    margin-right: 10px;
  }

  /* header */

  header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 40px;
    box-shadow: 0px 3px 26.100000381469727px rgba(0, 0, 0, 0.25);
    background-color: var(--background);

    z-index: 10;
  }

  header > img {
    object-fit: cover;
    object-position: center center;
  }

  #logo-utama {
    width: 80px;
  }

  header > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    width: 400px;
  }

  header > div .menu {
    display: none;
  }

  .btn-beli {
    display: none;
  }

  /* wrap-content */

  .wrap-content {
    display: flex;
    flex-direction: column;
    width: 90%;
    /* height: 80%; */

    overflow-x: hidden;

    margin-top: 10px;
    gap: 20px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-position: center center;
    border-radius: 20px;
  }

  .hero > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    margin-top: 30px;
  }

  .hero > div img {
    width: 100%;
  }

  .hero > div h1 {
    color: var(--h1);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #896464;
    line-height: 45px;
    font-weight: 800;
    font-size: 40px;

    width: 100%;
  }

  .hero > div h3 {
    font-size: 20px;
    width: 70%;
  }

  .hero-judul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 0px;
    width: 90%;
  }

  /* video */

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

  .video iframe {
    border-radius: 20px;
    border: transparent;
    width: 100% !important;
    height: 200px;
  }

  .hubungi {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 20px;
    background-image: linear-gradient(
      10deg,
      rgba(248, 186, 173, 1) 47%,
      rgba(253, 212, 210, 1) 100%
    );
  }

  .hubungi > img {
    margin-left: 50px;
    width: 250px;
  }

  .hubungi.footer {
    display: none;
    background: #ffeace;
    margin-bottom: 50px;
  }

  .hubungi > h3 {
    font-size: 18px;
    margin-left: 20px;
    color: white;
    line-height: 25px;
  }

  .hubungi .btn-hubungi {
    display: flex;
    align-items: center;
    position: relative;
    /* width: 100%; */
    margin-right: 20px;
  }

  .btn-hubungi img {
    height: 35px;
    width: 35px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin-bottom: 10px;

    object-fit: cover;
    object-position: center center;
  }

  .btn-hubungi button {
    cursor: pointer;
    padding: 0px;
    border-radius: 100px;
    background-color: var(--button2);
    border-right: var(--outline2) solid 4px !important;
    border-bottom: var(--outline2) solid 4px !important;
    border: 1px solid var(--outline2);
  }

  .btn-hubungi button:hover {
    background-color: #b4d4f3;
  }

  .btn-hubungi button:active {
    background-color: var(--outline2);
  }

  .btn-hubungi button p {
    color: black;
    margin-left: 15px;
    margin-right: 0px;
    font-weight: 600;
    font-size: 10px;
    width: 80px;
    padding: 10px;
  }

  /* tanya */

  .tanya {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    gap: 20px;
  }

  .tanya img {
    width: 100%;
  }

  .tanya > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--button2);

    padding: 10px;
    border-radius: 20px;
    box-shadow: 0px 3px 26.100000381469727px rgba(0, 0, 0, 0.25);
  }

  .tanya > div p {
    font-size: 12px;
    color: var(--text);

    width: 90%;
    font-weight: 600;
  }

  /* wrap-card */

  .wrap-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .wrap-card > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .wrap-card > div h2 {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    color: white;
    -webkit-text-stroke-width: 1.7px;
    -webkit-text-stroke-color: #896464;
    line-height: 40px;
  }

  .wrap-card > div .content-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 120px;
    width: 100%;
    margin-top: 100px;
  }

  .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    padding-bottom: 30px;
    width: 100%;

    background-color: #896464;
    border-radius: 20px;

    cursor: pointer;
  }

  .card:hover {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }

  .card > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .card > div img {
    margin-top: -100px;
    width: 70%;
    margin-bottom: 20px;
  }

  .card > div p {
    color: #5e3032;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    width: 75%;
    line-height: 27px;
  }

  .card.yellow {
    background-color: #fdefb1;
  }

  .card.pink {
    background-color: #fdd4d2;
  }

  .card.blue {
    background-color: #d4e4f4;
  }

  /* jawab */

  .jawab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .jawab img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
  }

  .jawab > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
  }

  .jawab > div h3 {
    color: #896464;
    font-size: 20px;
    line-height: 25px;
  }

  .jawab > div p {
    font-size: 15px;
    font-weight: 600;
  }

  /* apaja */

  .apaja {
    display: flex;
    flex-direction: column;
    align-items: center;

    overflow: hidden;
    gap: 20px;
    border-radius: 20px;

    background: #f4f1d6;
  }

  .apaja img {
    width: 100%;
  }

  .apaja h3 {
    margin-top: 20px;
    width: 90%;
    margin-left: 0px;
    color: #896464;
    font-size: 20px;
    line-height: 25px;
  }

  /* produk */

  .produk {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .img-container {
    max-width: 90%;
    max-height: 90%;
  }

  .img-container img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
    cursor: pointer;
  }

  .wrap-img {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;

    gap: 10px;
  }

  .wrap-img-kiri {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;
    border: #2d191a solid 1px;
  }

  .wrap-img-kanan {
    width: 70%;
    border: #2d191a solid 1px;
  }

  .img-kecil,
  .img-besar-tambah {
    width: 100%;
    height: 105px;
    border-radius: 10px;

    object-fit: cover;
    object-position: center center;
  }

  .img-besar {
    width: 100%;
    border-radius: 10px;

    object-fit: cover;
    object-position: center center;
  }

  .wrap-img > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .wrap-img > div > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .produk-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
  }

  .produk-text .conten-produk-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    height: 100%;
    background-color: #fdf1e5;
    border-radius: 20px;
    gap: 50px;
  }

  .conten-produk-text h2 {
    font-size: 25px;
    line-height: 40px;
    width: 100%;
  }

  .conten-produk-text h3 {
    font-size: 20px;
    font-weight: 500;
    width: 100%;
  }

  .produk-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    height: 50px;
  }

  .produk-btn button {
    width: 100%;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
  }

  .shopee {
    background-color: #ffdebb;
    border-bottom: 5px solid #2d191a !important;
    border-right: 5px solid #2d191a !important;
    border: 1px solid #2d191a;
  }

  .chat-admin {
    background-color: #f8baad;
    border-bottom: 5px solid #2d191a !important;
    border-right: 5px solid #2d191a !important;
    border: 1px solid #2d191a;
  }

  .shopee:hover,
  .chat-admin:hover {
    opacity: 90%;
  }

  .shopee:active {
    background-color: #2d191a;
  }

  .chat-admin:active {
    background-color: #2d191a;
  }

  .kelebihan {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .kelebihan h3 {
    font-size: 25px;
  }

  .kelebihan ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    width: 100%;
  }

  .kelebihan ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: auto;
    gap: 30px;
    padding: 10px;
    padding-left: 20px;
    border-radius: 20px;
  }

  .kelebihan ul li:hover {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }

  .kelebihan ul li p {
    font-size: 15px;
    font-weight: 600;
  }

  .kelebihan ul li h3 {
    font-size: 35px;
  }

  /* yuk */

  .yuk {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fdf1e5;
    border-radius: 20px;

    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    gap: 10px;
  }

  .yuk h3 {
    width: 90%;
    text-align: center;
    line-height: 25px;
    font-size: 20px;
  }

  .yuk p {
    width: 90%;
    text-align: center;
    font-size: 15px;
  }

  /* testimoni */

  .testimoni {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .testimoni .testimonial-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .text-testimoni {
    padding: 10px;
    border: #f8baad solid 5px;
    border-radius: 20px;
    width: 92%;

    background-color: #fff;
  }

  .text-testimoni p,
  .text-testimoni i {
    font-size: 15px;
  }

  .wrap-img-testimoni {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
    height: 0%;
    width: 100%;
  }

  .img-testimoni {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #f8e2d5;
    padding: 10px;
    border-radius: 20px;

    width: 60%;
  }

  .img-testimoni p {
    font-size: 10px;
    font-weight: 600;
  }

  .img-testimoni img {
    width: 100% !important;
    max-height: 250px;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
  }

  .wrap-button-testimoni {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 10%;
    width: 40%;
  }

  .wrap-button-testimoni button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    border-radius: 30px;
    font-size: 100px;

    cursor: pointer;
  }

  .wrap-button-testimoni .btn-pink {
    background-color: #f8baad;
    border: transparent;
  }

  .wrap-button-testimoni .btn-cream {
    background-color: #f8e2d5;
    border: transparent;
  }

  .wrap-button-testimoni .btn-pink:hover {
    background-color: #faa695;
    border: transparent;
  }

  .wrap-button-testimoni .btn-cream:hover {
    background-color: rgb(255, 213, 190);
    border: transparent;
  }

  .wrap-button-testimoni .btn-pink:active {
    background-color: #e08775;
    border: transparent;
  }

  .wrap-button-testimoni .btn-cream:active {
    background-color: rgb(238, 172, 137);
    border: transparent;
  }

  .wrap-button-testimoni .btn-cream {
    background-color: #f8e2d5;
    border: transparent;
  }

  .arrow-pink {
    border: solid #f8e2d5;
    border-width: 0 10px 10px 0;
    display: inline-block;
    padding: 20px;
    border-radius: 10px;
  }

  .arrow-cream {
    border: solid #f8baad;
    border-width: 0 10px 10px 0;
    display: inline-block;
    padding: 20px;
    border-radius: 10px;
  }

  .left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
  }

  .right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    color: #f8baad;
  }
}
