/* setting size of slider */
.bg-primary-color {
  background-color: rgb(255, 210, 0);
}

.bg-white {
  background-color: #ffffff;
}

.text-white {
  color: #ffffff;
}

.text-primary-color {
  color: rgb(255, 210, 0);
}

.group:hover .group-hover\:text-primary-color {
  color: rgb(255, 210, 0);
}

.text-primary-color\/50 {
  color: rgba(255, 210, 0, 0.5);
}

.bg-primary-color\/50 {
  background-color: rgba(255, 210, 0, 0.5);
}

.bg-primary-color\/10 {
  background-color: #FFFBCF;
}

.bg-black-gradient {
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6558998599) 0%, rgba(0, 0, 0, 0) 76%);
}

.bg-black-gradient-30 {
  background: rgb(0, 0, 0);
  background: linear-gradient(30deg, rgba(0, 0, 0, 0.738269081) 23%, rgba(0, 0, 0, 0) 100%);
}

html {
  font-family: "DM Sans", sans-serif;
}

/* components */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: rgb(255, 210, 0);
}

.landing-page .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.35);
}
.landing-page .content {
  text-align: center;
}
.landing-page span {
  color: rgb(255, 210, 0);
  font-size: 26px;
}
.landing-page p {
  color: #ffffff;
  font-size: 18px;
}
.landing-page .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}
@media (min-width: 992px) {
  .landing-page span {
    color: rgb(255, 210, 0);
    font-size: 28px;
  }
  .landing-page h2 {
    font-size: 68px;
  }
  .landing-page p {
    color: #ffffff;
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .landing-page span {
    color: rgb(255, 210, 0);
    font-size: 30px;
  }
  .landing-page h2 {
    font-size: 70px;
  }
  .landing-page p {
    color: #ffffff;
    font-size: 20px;
  }
  .landing-page .content {
    text-align: left;
    padding: 16px;
  }
  .landing-page .wrapper-paggination {
    position: absolute;
    left: 16px;
    bottom: 60px;
    right: initial;
    width: auto;
    padding: 16px;
  }
  .landing-page .swiper-pagination-bullet {
    background-color: #ffffff;
    opacity: 1;
    width: 15px;
    height: 15px;
  }
  .landing-page .swiper-pagination-bullet-active {
    background-color: rgb(255, 210, 0);
  }
}

.slider-gallery-product {
  display: none;
}

.slider-gallery-product-mobile {
  display: block;
}

.slider-gallery-unit-mobile {
  display: flex;
}

.slider-gallery-unit {
  display: none;
}

@media screen and (min-width: 1024px) {
  .slider-gallery-product {
    display: block;
  }

  .slider-gallery-product-mobile {
    display: none;
  }

  .slider-gallery-unit-mobile {
    display: none;
  }

  .slider-gallery-unit {
    display: flex;
  }
}
/* Layout */
.navbar {
  z-index: 100;
  /* scroll event on the header */
}
.navbar .overlay-navbar-mobile {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.325s ease-out visibility 0.325s ease-out;
}
.navbar .overlay-navbar-mobile.open {
  opacity: 1;
  visibility: visible;
}
.navbar .navbar-mobile {
  display: block;
}
.navbar .navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #252525;
  width: calc(100% - 100px);
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.325s ease-out;
}
.navbar .navbar-wrapper ul {
  flex-direction: column;
}
.navbar .navbar-wrapper.open {
  transform: translate3d(0, 0, 0);
}
.navbar .navbar-wrapper .btn-navbar-mobile:hover {
  color: rgb(255, 210, 0);
}
.navbar .navbar-back-menu {
  display: flex;
}
.navbar .navbar-menu > a {
  display: block;
  padding-top: 4px;
  padding-bottom: 4px;
}
.navbar .navbar-menu > a + span {
  opacity: 0;
}
.navbar .navbar-menu > a:hover {
  color: rgb(255, 210, 0);
}
.navbar .navbar-menu.active a {
  color: rgb(255, 210, 0);
}
.navbar.is-open .navbar-mobile span {
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .navbar {
    /* scroll event on the header */
  }
  .navbar.is-open .navbar-menu a {
    color: #ffffff;
  }
  .navbar .navbar-mobile {
    display: none;
  }
  .navbar .navbar-back-menu {
    display: none;
  }
  .navbar .navbar-wrapper {
    position: relative;
    background-color: transparent;
    width: auto;
    padding-top: 0;
    padding-left: 0;
    transform: none;
  }
  .navbar .navbar-wrapper ul {
    flex-direction: row;
  }
  .navbar .navbar-menu > a + span {
    transition: opacity 0.325s ease-out;
    opacity: 0;
  }
  .navbar .navbar-menu.active a {
    color: rgb(255, 210, 0);
  }
  .navbar .navbar-menu.active a + span {
    opacity: 1;
  }
  .navbar .navbar-menu a:hover + span {
    opacity: 1;
  }
}

/* Page */
.section-wo-we-are {
  margin-left: 0px;
  margin-right: 0;
  padding-left: 0px;
}
.section-wo-we-are .wrapper-who-whe-are {
  background-color: #FFFBCF;
  margin-top: 78px;
  overflow: hidden;
}
.section-wo-we-are h3 {
  font-size: 30px;
}
.section-wo-we-are .swiper-content {
  display: flex;
  flex-direction: column;
}
.section-wo-we-are .swiper-content h3, .section-wo-we-are .swiper-content p {
  width: 100%;
  text-align: left;
}
.section-wo-we-are .swiper-content h3 {
  margin-bottom: 24px;
}
.section-wo-we-are .box-des {
  width: 100%;
}
.section-wo-we-are .box-img {
  width: 100%;
  margin-top: 0px;
}
.section-wo-we-are .wrapper-paggination {
  position: absolute;
  left: 16px;
  bottom: 100%;
  right: initial;
  width: auto;
  padding: 16px;
  transform: translate(0px, -360px);
}
.section-wo-we-are .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.section-wo-we-are .slider-who-we-are .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 50px;
  width: 100%;
}
.section-wo-we-are .slider-who-we-are .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}
@media (min-width: 1024px) {
  .section-wo-we-are {
    margin-top: 78px;
    margin-bottom: 78px;
  }
  .section-wo-we-are .section-header h3, .section-wo-we-are .section-header p {
    text-align: center;
  }
  .section-wo-we-are .section-header p {
    width: 100%;
    max-width: 768px;
    padding-left: 32px;
    padding-right: 32px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-wo-we-are .swiper-who-we-are {
    margin-right: 0;
  }
  .section-wo-we-are .swiper-who-we-are .swiper-content {
    flex-direction: row;
  }
  .section-wo-we-are .swiper-who-we-are .swiper-content h3, .section-wo-we-are .swiper-who-we-are .swiper-content p {
    width: 100%;
    text-align: left;
  }
  .section-wo-we-are .swiper-who-we-are .swiper-content h3 {
    margin-bottom: 24px;
  }
  .section-wo-we-are .swiper-who-we-are .box-des {
    width: 50%;
  }
  .section-wo-we-are .swiper-who-we-are .box-img {
    width: 50%;
    padding-left: 32px;
    margin-top: 0px;
  }
  .section-wo-we-are .swiper-who-we-are .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
  .section-wo-we-are .swiper-who-we-are .wrapper-paggination {
    position: absolute;
    left: 64px;
    bottom: 0;
    right: initial;
    width: auto;
    padding: 16px;
    transform: none;
    padding: 62px 16px;
  }
}
@media (min-width: 1280px) {
  .section-wo-we-are .wrapper-paggination {
    position: absolute;
    left: 64px;
    bottom: 100px;
    right: initial;
    width: auto;
    padding: 16px;
    transform: none;
    padding: 0 16px 0;
  }
}

.section-testimoni .swiper-slide img {
  height: initial;
}
.section-testimoni .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: rgb(156, 163, 175);
}
.section-testimoni .swiper-pagination-bullet-active {
  background-color: rgb(255, 210, 0);
}

.slider-gallery-testimoni-mobile {
  display: flex;
}

.slider-gallery-testimoni {
  display: none;
}

@media screen and (min-width: 1024px) {
  .slider-gallery-testimoni-mobile {
    display: none;
  }

  .slider-gallery-testimoni {
    display: flex;
  }
}
