/*
 Theme Name: Astra Child
 Template: astra
 Version: 1.0.0
*/
@font-face {
  font-family: "Ubuntu Sans";
  src: url("./font/UbuntuSans-Variable.ttf");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --primary-font: "Ubuntu Sans";
}
html {
  scroll-behavior: smooth;
}
/* google translate style */

#gt_float_wrapper {
  font-family: var(--primary-font) !important;
}
#gt_float_wrapper .nturl {
  font-family: var(--primary-font) !important;
}
#gt_float_wrapper .gt-lang-code {
  font-family: var(--primary-font) !important;
}

/* end */

/* carousel image hero home */
.carouselHeroHome{
    height: 700px;
}


.carouselHeroHome .swiper, .carouselHeroHome .swiper-wrapper, .carouselHeroHome figure{
    
    height: 100%;
}
.carouselHeroHome .swiper-slide-inner .swiper-slide-image {
   aspect-ratio: 3 / 2;
  width: 100%;
  height: 100%;
   object-fit: cover;
  object-position: center;
  display: block;
}

.carouselHeroHome .swiper-slide-inner::before {
  content: "";
  width: 100%;
  height:100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3); /* warna overlay (hitam 50%) */
  z-index: 1;
}
/* end */


.mainContainer {
  margin: auto !important;
  width: 100% !important;
  max-width: 1280px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 0 10px !important;
}

/* swiper about */
.aboutSwiperWrapper {
  position: relative;
  width: 100%;
  padding: 0 40px 0 40px;
}
.aboutSwiper {
  margin: auto;
  display: flex;
  justify-content: center;
  width: 96%;
  /* background-color: aqua; */
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
}
.aboutSwiper .aboutSwiperWrap .swiper-slide {
  /* background-color: blanchedalmond; */
  display: flex;
  justify-content: center;
  width: 100%;
}
.aboutSwiper .aboutSwiperWrap .swiper-slide .card {
  background-color: white;
  width: 100%;
  max-width: 290px;
  height: 280px;
  border-radius: 15px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}
.aboutSwiperWrap .swiper-slide .card .wrapImg {
  width: 100%;
  max-width: 300px;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
}
.aboutSwiperWrap .swiper-slide .card .wrapImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* filter before hover */
  filter: gray;
  -webkit-filter: saturate(1);
  -webkit-transition: all 1s ease-in-out;
}
.aboutSwiperWrap .swiper-slide .card:hover .wrapImg img {
  /* filter on hover */
  filter: none;
  -webkit-filter: saturate(1.5);
  cursor: pointer;
  /* -webkit-transform: scale(1.03); */
}

.aboutSwiper .swiper-button-prev.custom-prev,
.aboutSwiper .swiper-button-next.custom-next {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  z-index: 10;
  /* background: rgba(0, 0, 0, 0.5); */
  color: black;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}
.aboutSwiper .swiper-button-prev.custom-prev::after,
.aboutSwiper .swiper-button-next.custom-next::after {
  font-size: 14px !important; /* custom size default Swiper icon */
  font-weight: 900;
  color: black; /* ganti warna */
}

.aboutSwiper .swiper-button-prev.custom-prev {
  left: -10px; /* berada di luar container */
}

.aboutSwiper .swiper-button-next.custom-next {
  right: -10px; /* berada di luar container */
}
/* end */

/* swiper product home shortcode */
.elementor-shortcode .prodSwiperWrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  display: flex;
  justify-content: center;
  /* background-color: antiquewhite; */
}
.prodSwiper {
  margin: auto;
  display: flex;
  justify-content: center;
  width: 96%;
  /* background-color: aqua; */
  overflow: hidden;

  padding-top: 20px;
  padding-bottom: 20px;
}

.prodSwiper .prodSwiperWrap .swiper-slide {
  /* background-color: blanchedalmond; */
  display: flex;
  justify-content: center;
}
.prodSwiper .prodSwiperWrap .swiper-slide .card {
  background-color: white;
  width: 97%;
  max-width: 330px;
  height: 440px;
  border-radius: 15px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
.prodSwiperWrap .swiper-slide .card .wrapImg {
  width: 100%;
   max-width: 330px; 
  height: 380px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
}
.prodSwiperWrap .swiper-slide .card .wrapImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* filter before hover */
  filter: gray;
  -webkit-filter: saturate(1);
  -webkit-transition: all 1s ease-in-out;
}
.prodSwiperWrap .swiper-slide .card:hover .wrapImg img {
  /* filter on hover */
  filter: none;
  -webkit-filter: saturate(1.5);
  cursor: pointer;
  /* -webkit-transform: scale(1.03); */
}
.prodSwiperWrap .swiper-slide .card .prodinationName {
  width: 100%;
  height: calc(440px - 380px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 20px;
}
.prodSwiperWrapper .swiper-button-prev.custom-prev,
.prodSwiperWrapper .swiper-button-next.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  /* background: rgba(0, 0, 0, 0.5); */
  color: black;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}
.prodSwiperWrapper .swiper-button-prev.custom-prev::after,
.prodSwiperWrapper .swiper-button-next.custom-next::after {
  font-size: 24px !important; /* custom size default Swiper icon */
  font-weight: 800;
  color: rgb(0, 0, 0); /* ganti warna */
}

.prodSwiperWrapper .swiper-button-prev.custom-prev {
  left: -10px; /* berada di luar container */
}

.prodSwiperWrapper .swiper-button-next.custom-next {
  right: -10px; /* berada di luar container */
}

.prodSwiperWrapper .swiper-slide {
  cursor: pointer;
}

/* end swiper product home */

/* swiper news home shortcode */
.elementor-shortcode .newsSwiperWrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  display: flex;
  justify-content: center;
  /* background-color: antiquewhite; */
}
.newsSwiper {
  margin: auto;
  display: flex;
  justify-content: center;
  width: 100%;
  /* background-color: aqua; */
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
}

.newsSwiper .newsSwiperWrap .swiper-slide {
  /* background-color: blanchedalmond; */
  display: flex;
  justify-content: center;
}
.newsSwiper .newsSwiperWrap .swiper-slide .card {
  /* background-color: white; */
  width: 100%;
  max-width: 280px;
  height: 440px;
  border-radius: 15px;
  /* box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1); */
}
.newsSwiperWrap .swiper-slide .card .wrapImg {
  width: 100%;
  /* max-width: 290px; */
  height: 280px;
  border-radius: 30px;
  overflow: hidden;
}
.newsSwiperWrap .swiper-slide .card .wrapImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* filter before hover */
  filter: gray;
  -webkit-transform: scale(1);
  -webkit-transition: all 1s ease-in-out;
}
.newsSwiperWrap .swiper-slide .card:hover .wrapImg img {
  /* filter on hover */
  filter: none;
  -webkit-transform: scale(1.2);
  cursor: pointer;
  /* -webkit-transform: scale(1.03); */
}
.newsSwiperWrap .swiper-slide .card .newsinationName {
  margin-top: 20px;
  width: 100%;
  padding: 0;
  height: calc(440px - 280px);
  display: flex;
  flex-direction: column;
  font-family: var(--primary-font);
  box-sizing: border-box;
  gap: 10px;
}
.newsinationName .newsDate {
  font-weight: 400;
  font-size: 14px;
  color: rgb(94, 94, 94);
}
.newsinationName .span {
  font-weight: 400;
  font-size: 18px;
  color: rgb(52, 59, 60, 0.92);
}
.newsSwiperWrapper .swiper-button-prev.custom-prev,
.newsSwiperWrapper .swiper-button-next.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  /* background: rgba(0, 0, 0, 0.5); */
  color: black;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}
.newsSwiperWrapper .swiper-button-prev.custom-prev::after,
.newsSwiperWrapper .swiper-button-next.custom-next::after {
  font-size: 24px !important; /* custom size default Swiper icon */
  font-weight: 800;
  color: rgb(0, 0, 0); /* ganti warna */
}

.newsSwiperWrapper .swiper-button-prev.custom-prev {
  opacity: 0;
  left: -10px; /* berada di luar container */
}

.newsSwiperWrapper .swiper-button-next.custom-next {
  opacity: 0;
  right: -10px; /* berada di luar container */
}

.newsSwiperWrapper .swiper-slide {
  cursor: pointer;
}
/* end swiper news home */

/* style untuk hover card Team di halaman About */
.cardTeam {
  position: relative;
  display: inline-block;
  flex: 1;
}
.cardTeam .cardTitleTeam {
  background-color: #93c042;
  margin: 0;
  padding: 10px 10px 30px 10px;
  position: absolute;
  z-index: 1000;
  -webkit-transform: rotate(-90deg) translateY(100%);
  -webkit-transform-origin: bottom;
  top: 40px;
  right: -60px;
  -webkit-transition: all 0.3s ease-in-out;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.cardTeam:hover .cardTitleTeam {
  right: 0px;
}
/* end */

/* style card product */

.cardProduct {
  width: 100%;
  max-width: 380px;
  height: 460px;
}

/* end */

/* style for card News */

.cardNews {
  background-color: white;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.cardNews .cardTextNews {
  padding: 15px;
}
.cardTextNews .newsTitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.cardTextNews .newsDisplay {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

/* style card product */

.contCardProduct {
  /* background-color: antiquewhite; */
}
.cardProduct {
  overflow: hidden;
  cursor: pointer;
}
/* .cardProduct:hover {
  cursor: pointer;
} */
.contProductName {
  position: absolute;
  bottom: -20px;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
}
.cardProduct:hover .contProductName {
  transform: translateY(-10px);
}

/* end */

/* swiper single produk */
.singleProdukSwiper {
  margin: auto;
  /* margin-top: 100px; */
  padding: 40px;
  position: relative;
  width: 100%;
  max-width: 920px;
  display: flex;
  justify-content: center;
  height: 500px;
}
.sProdukSwiper {
  margin: auto;
  display: flex;
  justify-content: center !important;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
}

.sProdukSwiper .sProdukSwiperWrap {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 50%;
}
.sProdukSwiper .sProdukSwiperWrap .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
}
.sProdukSwiperWrap .swiper-slide .wrapImg {
  width: 100%;
  max-width: 170px;
  height: 160px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 3px 15px rgb(0, 0, 0, 0.1);
  background-color: white;
  padding: 2px;
  position: relative;
  -webkit-filter: grayscale(50%);
  -webkit-transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  /* filter before hover */
}
.sProdukSwiperWrap .swiper-slide-active .wrapImg {
  -webkit-filter: saturate(1.3);
  -webkit-transform: scale(1.6);
}
.sProdukSwiperWrap .swiper-slide-active {
  position: absolute;
  z-index: 100;
}

.sProdukSwiperWrap .swiper-slide .wrapImg img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.singleProdukSwiper .swiper-button-prev.custom-prev,
.singleProdukSwiper .swiper-button-next.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 101;
  /* background: rgba(0, 0, 0, 0.5); */
  color: black;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}
.singleProdukSwiper .swiper-button-prev.custom-prev::after,
.singleProdukSwiper .swiper-button-next.custom-next::after {
  font-size: 24px !important; /* custom size default Swiper icon */
  font-weight: 800;
  color: rgb(0, 0, 0); /* ganti warna */
}

.singleProdukSwiper .swiper-button-prev.custom-prev {
  opacity: 1;
  left: 0px; /* berada di luar container */
}

.singleProdukSwiper .swiper-button-next.custom-next {
  opacity: 1;
  right: 0px; /* berada di luar container */
}

.singleProdukSwiper .swiper-slide {
  cursor: pointer;
}
/* end swiper news home */

/* style animation whatsapp */
@keyframes ringScaleFullCycle {
  0% {
    transform: scale(1) rotate(0deg);
  }
  5%,
  15%,
  25% {
    transform: scale(1.2) rotate(-15deg);
  }
  10%,
  20%,
  30% {
    transform: scale(1.2) rotate(15deg);
  }
  35% {
    transform: scale(1) rotate(0deg);
  }
  /* 10%,
  20%,
  30% {
    transform: scale(1.2) rotate(-15deg);
  }
  15%,
  25%,
  35% {
    transform: scale(1.2) rotate(15deg);
  }
  40% {
    transform: scale(1) rotate(0deg);
  } */
  100% {
    transform: scale(1) rotate(0deg);
  }
}
/* end */

/* style single-produk */
.single-produk {
  font-family: var(--primary-font) !important;
}

.single-produk .site-content {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
  background-color: white;
  /* opsional: hilangkan padding default */
}
.single-produk .site-content .ast-container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
  /* background-color: rgb(23, 125, 215); */
  /* opsional: hilangkan padding default */
}
.single-produk .site-main {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  /* background-color: rgb(0, 136, 255); */
}
.single-produk .main-container {
  /* background-color: #93c042 !important; */
  margin: 0 !important;
  padding: 0 !important;
}
.single-produk .main-container .entry-hero-image {
  /* background-color: #93c042 !important; */
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-height: 900px !important;
  overflow: hidden;
}
.single-produk .main-container .entry-hero-image img {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
}
.single-produk .main-container .mainContainer {
  width: 100% !important;
  height: max-content !important;
  display: flex !important;
  flex-direction: column !important;
}

.single-produk .main-container .contDesc {
  width: 100%;
  margin-top: 20px;
  padding: 0 30px 30px 30px;
  display: flex;
}
.single-produk .main-container .mainContainer .contSpec {
  margin-top: 0px;
  width: 30%;
  min-width: 250px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.single-produk .main-container .mainContainer .contSpec .specTitle {
  margin: 0;
  padding: 0;
  align-self: flex-start;
  font-size: 24px;
}
.single-produk .main-container .mainContainer .contDesc .contSpec {
  margin-right: 20px;
  width: 30%;
  display: flex;
  flex-direction: column;

  /* background-color: #2eff59; */
}
.single-produk .main-container .mainContainer .specDetail {
  padding: 0 !important;
  width: 100%;
  /* background-color: #2eff59; */
}
.specDetail pre {
  margin: 0;
}

.single-produk .entry-title {
  /* background-color: khaki; */
  margin-top: 20px;
  font-size: 42px !important;
  font-weight: 700 !important;
}

/* style footer Contact us */
.contContactUs * {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
}
.contContactUs {
  margin: 130px 0 0 0;
  padding: 0px 30px;
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contContactUs .titleCTAIcon {
  margin: 0;
  padding-bottom: 30px;
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: row;
  position: relative;
  /* background-color: rgb(33, 153, 55); */
  /* align-items: center; */
}
.contContactUs .titleCTAIcon::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  /* background-color: rgb(33, 153, 55); */
  /* align-items: center; */
}
.contContactUs .titleCTAIcon .titleText {
  /* background-color: antiquewhite; */
  /* flex: 1; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* align-items: center; */
}
.titleCTAIcon .titleText h2 {
  flex: 1;
  font-size: 48px;
  font-weight: 500;
}
.titleCTAIcon .titleText p {
  flex: 1;
  margin-left: 5px;
  font-size: 16px;
  font-weight: 300;
}
.contContactUs .titleCTAIcon .groupIcon {
  margin: 0;
  padding: 0;
  /* background-color: rgb(165, 95, 3); */
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
}
.groupIcon .circleBorder {
  padding: 15px;
  border: solid 1px black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contContactUs .circleBorder img {
  width: 20px;
  height: 20px;
}
.contContactUs .contact {
  margin-top: 30px;
  margin-bottom: 100px;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.contContactUs .contact .item {
  /* background-color: antiquewhite; */
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.contContactUs .contact .item img {
  width: 70%;
}

/* end contact us */

/* style WA Fixed Custom */
.contWACustom {
  /* background-color: antiquewhite; */
  max-width: 200px;
  position: fixed;
  z-index: 1000;
  right: 40px;
  bottom: 20px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.contWACustom .contCUCustom {
  background-color: white;
  margin: 0 0 40px 0;
  padding: 5px;
  width: 70%;
  min-width: 100px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  border-radius: 15px 15px 0 15px;
  display: flex;
  justify-content: center;
}
 .contWACustom .contCUCustom span{
       font-family: var(--primary-font) !important;
  }
.contWACustom .contBtnWA {
  width: 30%;
}
#btnWACustom {
  display: inline-block;
  animation: ringScaleFullCycle 4.2s ease-in-out infinite;
  transform-origin: center center;
  cursor: pointer;
}
.contWACustom .btnWACustom {
  margin: 0;
  padding: 10px;
  width: 50px;
  height: 50px;
  background-color: #2eff59;
  /* padding: 20px; */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contWACustom svg {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
#backdropWACustom {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1001;
}
#backdropWACustom #myPopupCustom {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#backdropWACustom #myPopupCustom .contentPopup {
  position: relative;
  width: max-content;
  max-width: 50%;
  padding: 30px;
  height: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 15px;
}
#myPopupCustom .contentPopup .closePopupCustom {
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  padding: 0px 10px 0px 10px;
  top: -10px;
  right: -10px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
}
#myPopupCustom .contentPopup .closePopupCustom:hover {
  background-color: #93c042;
  color: white;
}
#myPopupCustom .contentPopup .btnGroupWa button {
  border-radius: 10px;
  font-family: var(--primary-font);
}
/* end WA Fixed Custom */

/* end */

/* style single-blog_news */
.single-blog_news {
  font-family: var(--primary-font) !important;
}

.single-blog_news .site-content {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
  background-color: white;
  /* opsional: hilangkan padding default */
}
.single-blog_news .site-content .ast-container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
  /* background-color: rgb(23, 125, 215); */
  /* opsional: hilangkan padding default */
}
.single-blog_news .site-main {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  /* background-color: rgb(0, 136, 255); */
}
.single-blog_news .main-container {
  /* background-color: #93c042 !important; */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}
.single-blog_news .main-container .entry-hero-image {
  /* background-color: #93c042 !important; */
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-height: 900px;
  overflow: hidden;
}
.single-blog_news .main-container .entry-hero-image img {
  /* background-color: #93c042 !important; */
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
}
.single-blog_news .main-container .contDesc {
  position: relative;
  width: 85%;
  margin-top: 40px;
  /* padding: 20px; */
}
.single-blog_news .main-container .contDesc .entry-header {
  margin-top: 10px;
  /* padding: 20px; */
}
.single-blog_news .post-navigation {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  margin-top: 2rem;
  font-family: var(--primary-font);
}

.single-produk .post-navigation {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  margin-top: 2rem;
  font-family: var(--primary-font);
}

.nav-previous,
.nav-next {
  max-width: 50%;
}

.nav-previous a,
.nav-next a {
  text-decoration: none;
  color: #003366;
  display: flex !important;
  flex-direction: column !important;
  height: 50px !important;
  gap: 10px !important;
}

.nav-previous a .navLabel,
.nav-next a .navLabel {
  font-size: 16px;
  font-weight: 600;
}
.nav-previous a .navContent,
.nav-next a .navContent {
  padding: 0;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.nav-previous {
  text-align: left;
}

.nav-next {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.nav-previous a:hover,
.nav-next a:hover {
  color: #003366;
}

.single-blog_news .entry-date {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: rgb(143, 143, 143);
}
.single-blog_news .entry-title {
  font-size: 32px !important;
  font-weight: 500 !important;
}
.single-blog_news .entry-excerpt {
  font-size: 16px !important;
  font-weight: 400 !important;
}

/* end single blog news */

/* style our products dinamic */
.page-template-page-produk .site-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.page-template-page-produk .site-main .contHero {
  position: relative;
  display: block;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.page-template-page-produk .site-main .contHero::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.page-template-page-produk .site-main .contHero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.page-template-page-produk .site-main .contHero h1 {
  font-family: var(--primary-font);
  color: white;
  position: absolute;
  z-index: 2;
  bottom: 5%;
  left: 5%;
}
.produk-container {
  margin: 50px 0 0 0;
  width: 90%;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1rem;
}
.produk-container .produk-item {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 460px;
  background-color: white !important;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
}
.produk-item .bgProductName {
  width: 100%;
  height: 90px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  position: absolute;
  z-index: 1;
  bottom: -10px;
  left: 0;
  -webkit-transition: all 0.3s ease;
}
.produk-item:hover .bgProductName {
  position: absolute;
  color: white;
  bottom: 0px;
  left: 0px;
}
.produk-item .productName {
  position: absolute;
  color: white;
  bottom: 40px;
  left: 20px;
}
.produk-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 30px;
}

/* end */

/* style shortcode my_blog_news */

.mainBlogContainer {
  margin: 100px 0 0 0;
  padding: 0;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}
.mainBlogContainer .blogContainer {
  margin: 50px 0 0 0;
  width: 1142px;
  height: 100%;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  column-gap: 1.3rem;
  row-gap: 1.7rem;
}
.mainBlogContainer .blogContainer .blogItem {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: white !important;
  border-radius: 30px;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.1);
}
.mainBlogContainer .blogContainer .blogItem .blogImg {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.mainBlogContainer .blogItem .blogImg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 30px;
}
.mainBlogContainer .blogContainer .blogItem .blogText {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-sizing: border-box;
}
.mainBlogContainer .blogContainer .blogItem .blogDate {
  font-size: 11px;
  font-weight: 400;
}
.mainBlogContainer .blogItem .blogName {
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.mainBlogContainer .blogItem .blogExcerpt {
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.contBtnOurCatalogue {
  margin-top: 50px;
}
.btnDwnComPro {
  background-color: white;
  border: solid 1.5px black;
  font-family: var(--primary-font);
  color: black;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
}
.btnDwnComPro:hover {
  background-color: #93c042;
  color: white;
  border: none;
}
.btnDwnComPro:active {
  background-color: #7ea92c !important;
  color: white !important;
  border: none !important;
}

/* end */

@media (max-width: 922px) {
    
    /* mobile bar menu*/
     #ast-hf-mobile-menu li.menu-item {
        line-height: 3.5;
    }
    .ast-builder-menu-mobile .main-navigation .main-header-menu , .ast-builder-menu-mobile .main-navigation .main-header-menu .menu-link, .ast-builder-menu-mobile .main-navigation .ma-header-menu .sub-menu {
            display: block;
        }
    /*end */
  /* home style */
  .homeHeroText h2 {
    font-size: 50px !important;
    line-height: 50px !important;
  }

  /* swiper product home shortcode */
  .elementor-shortcode .prodSwiperWrapper {
    position: relative;
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
  }
  .prodSwiper {
    margin: auto;
    display: flex;
    justify-content: center;
    width: 96%;
    overflow: hidden;

    padding-top: 20px;
    padding-bottom: 20px;
  }

  .prodSwiper .prodSwiperWrap .swiper-slide {
    display: flex;
    justify-content: center;
  }
  .prodSwiper .prodSwiperWrap .swiper-slide .card {
    background-color: white;
    width: 97% !important;
    max-width: 700px;
    height: 440px;
    border-radius: 15px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  }
  .prodSwiperWrap .swiper-slide .card .wrapImg {
    width: 100%;
    max-width: 700px;
    height: 380px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
  }
  .prodSwiperWrap .swiper-slide .card .wrapImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* filter before hover */
    filter: gray;
    -webkit-filter: saturate(1);
    -webkit-transition: all 1s ease-in-out;
  }
  .prodSwiperWrap .swiper-slide .card:hover .wrapImg img {
    /* filter on hover */
    filter: none;
    -webkit-filter: saturate(1.5);
    cursor: pointer;
  }
  .prodSwiperWrap .swiper-slide .card .prodinationName {
    width: 100%;
    height: calc(440px - 380px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 20px;
  }
  .prodSwiperWrapper .swiper-button-prev.custom-prev,
  .prodSwiperWrapper .swiper-button-next.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
  }
  .prodSwiperWrapper .swiper-button-prev.custom-prev::after,
  .prodSwiperWrapper .swiper-button-next.custom-next::after {
    font-size: 24px !important; /* custom size default Swiper icon */
    font-weight: 800;
    color: rgb(0, 0, 0); /* ganti warna */
  }

  .prodSwiperWrapper .swiper-button-prev.custom-prev {
    left: -10px; /* berada di luar container */
  }

  .prodSwiperWrapper .swiper-button-next.custom-next {
    right: -10px; /* berada di luar container */
  }

  .prodSwiperWrapper .swiper-slide {
    cursor: pointer;
  }

  /* end swiper product home */

  /* style why choose pt tropikal */

  .contImgWhy {
    margin: 0px !important;
    padding: 0px 20px !important;
    margin-top: 50px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }
  .contImgWhy img {
    height: 460px !important;
  }

  .contTextWhy .whyTitle h2 {
    font-size: 34px !important;
    font-weight: 500px !important;
  }

  /* end why choose */

  /* style gallery home */
  .titleGallery h2 {
    font-size: 32px !important;
  }

  /* swiper about */
  .aboutSwiperWrapper {
    position: relative;
    width: 100%;
    padding: 0 40px 0 40px;
  }
  .aboutSwiper {
    margin: auto;
    display: flex;
    justify-content: center;
    width: 96%;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .aboutSwiper .aboutSwiperWrap .swiper-slide {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .aboutSwiper .aboutSwiperWrap .swiper-slide .card {
    background-color: white;
    width: 100% !important;
    max-width: 760px !important;
    height: 280px;
    border-radius: 15px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  }
  .aboutSwiperWrap .swiper-slide .card .wrapImg {
    width: 100% !important;
    max-width: 760px !important;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
  }
  .aboutSwiperWrap .swiper-slide .card .wrapImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* filter before hover */
    filter: gray;
    -webkit-filter: saturate(1);
    -webkit-transition: all 1s ease-in-out;
  }
  .aboutSwiperWrap .swiper-slide .card:hover .wrapImg img {
    /* filter on hover */
    filter: none;
    -webkit-filter: saturate(1.5);
    cursor: pointer;
  }

  .aboutSwiper .swiper-button-prev.custom-prev,
  .aboutSwiper .swiper-button-next.custom-next {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 10;
    color: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
  }
  .aboutSwiper .swiper-button-prev.custom-prev::after,
  .aboutSwiper .swiper-button-next.custom-next::after {
    font-size: 14px !important; /* custom size default Swiper icon */
    font-weight: 900;
    color: black; /* ganti warna */
  }

  .aboutSwiper .swiper-button-prev.custom-prev {
    left: -15px !important; /* berada di luar container */
  }

  .aboutSwiper .swiper-button-next.custom-next {
    right: -15px !important; /* berada di luar container */
  }
  /* end */

  /* end gallery */

  /* style cta Green */

  .ctaImageGreen h2 {
    font-size: 28px !important;
    font-weight: 500px !important;
  }
  /* eng cta  */

  /* style Latest News */
  .titleLatestNews h2 {
    font-size: 34px !important;
    font-weight: 500 !important;
  }

  /* swiper news home shortcode */
  .elementor-shortcode .newsSwiperWrapper {
    position: relative;
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
  }
  .newsSwiper {
    margin: auto;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .newsSwiper .newsSwiperWrap .swiper-slide {
    display: flex;
    justify-content: center;
  }
  .newsSwiper .newsSwiperWrap .swiper-slide .card {
    width: 100%;
    max-width: 760px !important;
    height: 440px;
    border-radius: 15px;
  }
  .newsSwiperWrap .swiper-slide .card .wrapImg {
    width: 100%;
    height: 280px;
    border-radius: 30px;
    overflow: hidden;
  }
  .newsSwiperWrap .swiper-slide .card .wrapImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* filter before hover */
    filter: gray;
    -webkit-transform: scale(1);
    -webkit-transition: all 1s ease-in-out;
  }
  .newsSwiperWrap .swiper-slide .card:hover .wrapImg img {
    /* filter on hover */
    filter: none;
    -webkit-transform: scale(1.2);
    cursor: pointer;
  }
  .newsSwiperWrap .swiper-slide .card .newsinationName {
    margin-top: 20px;
    width: 100%;
    padding: 0;
    height: calc(440px - 280px);
    display: flex;
    flex-direction: column;
    font-family: var(--primary-font);
    box-sizing: border-box;
    gap: 10px;
  }
  .newsinationName .newsDate {
    font-weight: 400;
    font-size: 14px;
    color: rgb(94, 94, 94);
  }
  .newsinationName .span {
    font-weight: 400;
    font-size: 18px;
    color: rgb(52, 59, 60, 0.92);
  }
  .newsSwiperWrapper .swiper-button-prev.custom-prev,
  .newsSwiperWrapper .swiper-button-next.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
  }
  .newsSwiperWrapper .swiper-button-prev.custom-prev::after,
  .newsSwiperWrapper .swiper-button-next.custom-next::after {
    font-size: 24px !important; /* custom size default Swiper icon */
    font-weight: 800;
    color: rgb(0, 0, 0); /* ganti warna */
  }

  .newsSwiperWrapper .swiper-button-prev.custom-prev {
    opacity: 0;
    left: -10px; /* berada di luar container */
  }

  .newsSwiperWrapper .swiper-button-next.custom-next {
    opacity: 0;
    right: -10px; /* berada di luar container */
  }

  .newsSwiperWrapper .swiper-slide {
    cursor: pointer;
  }
  /* end swiper product home */

  /* end */

  .contContactUs {
    margin-top: 50px !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
  .contContactUs .titleCTAIcon {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .titleCTAIcon .titleText h2 {
    font-size: 38px;
  }
  .titleCTAIcon .titleText p {
    font-size: 16px;
    font-weight: 300;
  }
  .groupIcon .circleBorder {
    padding: 8px;
    border: solid 1px black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contContactUs .circleBorder img {
    width: 20px !important;
    height: 20px !important;
  }
  .contContactUs .contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
  .contContactUs .contact .item img {
    width: 250px !important;
    -webkit-transform: translateX(-20px);
  }
  /* end home style */
}
@media (max-width: 767px) {
  /* home style */
  .homeHeroText h2 {
    font-size: 50px !important;
    line-height: 60px !important;
  }

  /* swiper product home shortcode */
  .elementor-shortcode .prodSwiperWrapper {
    position: relative;
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
  }
  .prodSwiper {
    margin: auto;
    display: flex;
    justify-content: center;
    width: 96%;
    overflow: hidden;

    padding-top: 20px;
    padding-bottom: 20px;
  }

  .prodSwiper .prodSwiperWrap .swiper-slide {
    display: flex;
    justify-content: center;
  }
  .prodSwiper .prodSwiperWrap .swiper-slide .card {
    background-color: white;
    width: 97% !important;
    max-width: 700px;
    height: 440px;
    border-radius: 15px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  }
  .prodSwiperWrap .swiper-slide .card .wrapImg {
    width: 100%;
    max-width: 700px;
    height: 380px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
  }
  .prodSwiperWrap .swiper-slide .card .wrapImg img {
    width: 700px;
    height: 380px;
    object-fit: cover;

    /* filter before hover */
    filter: gray;
    -webkit-filter: saturate(1);
    -webkit-transition: all 1s ease-in-out;
  }
  .prodSwiperWrap .swiper-slide .card:hover .wrapImg img {
    /* filter on hover */
    filter: none;
    -webkit-filter: saturate(1.5);
    cursor: pointer;
  }
  .prodSwiperWrap .swiper-slide .card .prodinationName {
    width: 100%;
    height: calc(440px - 380px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 20px;
  }
  .prodSwiperWrapper .swiper-button-prev.custom-prev,
  .prodSwiperWrapper .swiper-button-next.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
  }
  .prodSwiperWrapper .swiper-button-prev.custom-prev::after,
  .prodSwiperWrapper .swiper-button-next.custom-next::after {
    font-size: 24px !important; /* custom size default Swiper icon */
    font-weight: 800;
    color: rgb(0, 0, 0); /* ganti warna */
  }

  .prodSwiperWrapper .swiper-button-prev.custom-prev {
    left: -10px; /* berada di luar container */
  }

  .prodSwiperWrapper .swiper-button-next.custom-next {
    right: -10px; /* berada di luar container */
  }

  .prodSwiperWrapper .swiper-slide {
    cursor: pointer;
  }

  /* end swiper product home */

  /* style why choose pt tropikal */

  .contImgWhy {
    margin: 0px !important;
    padding: 0px !important;
    width: 100% !important;
    height: 300px !important;
    display: flex !important;
    justify-content: center !important;
  }
  .contImgWhy img {
    height: 200px !important;
  }
  .contImgWhy img {
    height: 200px !important;
  }
  .contTextWhy .whyTitle h2 {
    font-size: 34px !important;
    font-weight: 500px !important;
  }

  /* end why choose */

  /* style gallery home */
  .titleGallery h2 {
    font-size: 32px !important;
  }

  /* end gallery */

  /* /* style WA Fixed Custom */
  .contWACustom {
    max-width: 200px;
    position: fixed;
    z-index: 1000;
    right: 40px;
    bottom: 20px;
    display: flex;
    flex-direction: row;
    gap: 15px;
  }
  .contWACustom .contCUCustom {
    background-color: white;
    margin: 0 0 40px 0;
    padding: 5px;
    width: 70%;
    min-width: 100px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    border-radius: 15px 15px 0 15px;
    display: flex;
    justify-content: center;
  }
  .contWACustom .contCUCustom span{
       font-family: var(--primary-font) !important;
  }
  .contWACustom .contBtnWA {
    width: 30%;
  }
  #btnWACustom {
    display: inline-block;
    animation: ringScaleFullCycle 4.2s ease-in-out infinite;
    transform-origin: center center;
    cursor: pointer;
  }
  .contWACustom .btnWACustom {
    margin: 0;
    padding: 10px;
    width: 50px;
    height: 50px;
    background-color: #2eff59;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contWACustom svg {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  #backdropWACustom {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1001;
  }
  #backdropWACustom #myPopupCustom {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #backdropWACustom #myPopupCustom .contentPopup {
    position: relative;
    width: max-content;
    max-width: 60%;
    padding: 30px;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 15px;
  }
  #myPopupCustom .contentPopup .closePopupCustom {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    padding: 0px 10px 0px 10px;
    top: -10px;
    right: -10px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
  }
  #myPopupCustom .contentPopup .closePopupCustom:hover {
    background-color: #93c042;
    color: white;
  }
  #myPopupCustom .contentPopup .btnGroupWa {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  #myPopupCustom .contentPopup .btnGroupWa button {
    border-radius: 10px;
    font-family: var(--primary-font);
  }
  /* end WA Fixed Custom */

  /* swiper about */
  .aboutSwiperWrapper {
    position: relative;
    width: 100%;
    padding: 0 40px 0 40px;
  }
  .aboutSwiper {
    margin: auto;
    display: flex;
    justify-content: center;
    width: 96%;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .aboutSwiper .aboutSwiperWrap .swiper-slide {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .aboutSwiper .aboutSwiperWrap .swiper-slide .card {
    background-color: white;
    width: 100% !important;
    max-width: 760px !important;
    height: 280px;
    border-radius: 15px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  }
  .aboutSwiperWrap .swiper-slide .card .wrapImg {
    width: 100% !important;
    max-width: 760px !important;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
  }
  .aboutSwiperWrap .swiper-slide .card .wrapImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* filter before hover */
    filter: gray;
    -webkit-filter: saturate(1);
    -webkit-transition: all 1s ease-in-out;
  }
  .aboutSwiperWrap .swiper-slide .card:hover .wrapImg img {
    /* filter on hover */
    filter: none;
    -webkit-filter: saturate(1.5);
    cursor: pointer;
  }

  .aboutSwiper .swiper-button-prev.custom-prev,
  .aboutSwiper .swiper-button-next.custom-next {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 10;
    color: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
  }
  .aboutSwiper .swiper-button-prev.custom-prev::after,
  .aboutSwiper .swiper-button-next.custom-next::after {
    font-size: 14px !important; /* custom size default Swiper icon */
    font-weight: 900;
    color: black; /* ganti warna */
  }

  .aboutSwiper .swiper-button-prev.custom-prev {
    left: -15px !important; /* berada di luar container */
  }

  .aboutSwiper .swiper-button-next.custom-next {
    right: -15px !important; /* berada di luar container */
  }
  /* end */

  /* end gallery */

  /* style cta Green */

  .ctaImageGreen h2 {
    font-size: 28px !important;
    font-weight: 500px !important;
  }
  /* eng cta  */

  /* style Latest NEws */
  .titleLatestNews h2 {
    font-size: 34px !important;
    font-weight: 500 !important;
  }

  /* swiper news home shortcode */
  .elementor-shortcode .newsSwiperWrapper {
    position: relative;
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
    /* background-color: antiquewhite; */
  }
  .newsSwiper {
    margin: auto;
    display: flex;
    justify-content: center;
    width: 100%;
    /* background-color: aqua; */
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .newsSwiper .newsSwiperWrap .swiper-slide {
    display: flex;
    justify-content: center;
  }
  .newsSwiper .newsSwiperWrap .swiper-slide .card {
    width: 100%;
    max-width: 760px !important;
    height: 440px;
    border-radius: 15px;
  }
  .newsSwiperWrap .swiper-slide .card .wrapImg {
    width: 100%;
    height: 280px;
    border-radius: 30px;
    overflow: hidden;
  }
  .newsSwiperWrap .swiper-slide .card .wrapImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* filter before hover */
    filter: gray;
    -webkit-transform: scale(1);
    -webkit-transition: all 1s ease-in-out;
  }
  .newsSwiperWrap .swiper-slide .card:hover .wrapImg img {
    /* filter on hover */
    filter: none;
    -webkit-transform: scale(1.2);
    cursor: pointer;
  }
  .newsSwiperWrap .swiper-slide .card .newsinationName {
    margin-top: 20px;
    width: 100%;
    padding: 0;
    height: calc(440px - 280px);
    display: flex;
    flex-direction: column;
    font-family: var(--primary-font);
    box-sizing: border-box;
    gap: 10px;
  }
  .newsinationName .newsDate {
    font-weight: 400;
    font-size: 14px;
    color: rgb(94, 94, 94);
  }
  .newsinationName .span {
    font-weight: 400;
    font-size: 18px;
    color: rgb(52, 59, 60, 0.92);
  }
  .newsSwiperWrapper .swiper-button-prev.custom-prev,
  .newsSwiperWrapper .swiper-button-next.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
  }
  .newsSwiperWrapper .swiper-button-prev.custom-prev::after,
  .newsSwiperWrapper .swiper-button-next.custom-next::after {
    font-size: 24px !important; /* custom size default Swiper icon */
    font-weight: 800;
    color: rgb(0, 0, 0); /* ganti warna */
  }

  .newsSwiperWrapper .swiper-button-prev.custom-prev {
    opacity: 0;
    left: -10px; /* berada di luar container */
  }

  .newsSwiperWrapper .swiper-button-next.custom-next {
    opacity: 0;
    right: -10px; /* berada di luar container */
  }

  .newsSwiperWrapper .swiper-slide {
    cursor: pointer;
  }
  /* end swiper product home */

  /* end */

  .contContactUs {
    margin-top: 50px !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
  .contContactUs .titleCTAIcon {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .titleCTAIcon .titleText h2 {
    font-size: 38px;
  }
  .titleCTAIcon .titleText p {
    font-size: 16px;
    font-weight: 300;
  }
  .groupIcon .circleBorder {
    padding: 8px;
    border: solid 1px black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contContactUs .circleBorder img {
    width: 12px !important;
    height: 12px !important;
  }
  .contContactUs .contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
  .contContactUs .contact .item img {
    width: 250px !important;
    -webkit-transform: translateX(-20px);
  }
}
@media (max-width: 700px) {
  .homeHeroText h2 {
    font-size: 40px !important;
    line-height: 50px !important;
    margin-top: 20px !important;
  }
 
  /* swiper product home shortcode */
  .elementor-shortcode .prodSwiperWrapper {
    position: relative;
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
  }
  .prodSwiper {
    margin: auto;
    display: flex;
    justify-content: center;
    width: 90%;
    overflow: hidden;

    padding-top: 20px;
    padding-bottom: 20px;
  }

  .prodSwiper .prodSwiperWrap .swiper-slide {
    display: flex;
    justify-content: center;
  }
  .prodSwiper .prodSwiperWrap .swiper-slide .card {
    background-color: white;
    width: 97% !important;
    max-width: 700px;
    height: 440px;
    border-radius: 15px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  }
  .prodSwiperWrap .swiper-slide .card .wrapImg {
    width: 100%;
    max-width: 700px;
    height: 380px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
  }
  .prodSwiperWrap .swiper-slide .card .wrapImg img {
    width: 700px;
    height: 380px;
    object-fit: cover;

    /* filter before hover */
    filter: gray;
    -webkit-filter: saturate(1);
    -webkit-transition: all 1s ease-in-out;
  }
  .prodSwiperWrap .swiper-slide .card:hover .wrapImg img {
    /* filter on hover */
    filter: none;
    -webkit-filter: saturate(1.5);
    cursor: pointer;
  }
  .prodSwiperWrap .swiper-slide .card .prodinationName {
    width: 100%;
    height: calc(440px - 380px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 20px;
  }
  .prodSwiperWrapper .swiper-button-prev.custom-prev,
  .prodSwiperWrapper .swiper-button-next.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
  }
  .prodSwiperWrapper .swiper-button-prev.custom-prev::after,
  .prodSwiperWrapper .swiper-button-next.custom-next::after {
    font-size: 24px !important; /* custom size default Swiper icon */
    font-weight: 800;
    color: rgb(0, 0, 0); /* ganti warna */
  }

  .prodSwiperWrapper .swiper-button-prev.custom-prev {
    left: -10px; /* berada di luar container */
  }

  .prodSwiperWrapper .swiper-button-next.custom-next {
    right: -10px; /* berada di luar container */
  }

  .prodSwiperWrapper .swiper-slide {
    cursor: pointer;
  }

  /* end swiper product home */

  /* style why choose pt tropikal */

  .contImgWhy {
    margin: 0px !important;
    padding: 0px !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 500px !important;
  }
  .contImgWhy .imgOne img {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 300px !important;
    height: 200px !important;
  }
  .contImgWhy .imgTwo img {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 337px !important;
    height: 200px !important;
  }
  .contTextWhy .whyTitle h2 {
    font-size: 34px !important;
    font-weight: 500px !important;
  }

  /* end why choose */

  /* swiper about */
  .aboutSwiperWrapper {
    position: relative;
    width: 100%;
    padding: 0 40px 0 40px;
  }
  .aboutSwiper {
    margin: auto;
    display: flex;
    justify-content: center;
    width: 90%;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .aboutSwiper .aboutSwiperWrap .swiper-slide {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .aboutSwiper .aboutSwiperWrap .swiper-slide .card {
    background-color: white;
    width: 100% !important;
    max-width: 760px !important;
    height: 280px;
    border-radius: 15px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  }
  .aboutSwiperWrap .swiper-slide .card .wrapImg {
    width: 100% !important;
    max-width: 760px !important;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
  }
  .aboutSwiperWrap .swiper-slide .card .wrapImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* filter before hover */
    filter: gray;
    -webkit-filter: saturate(1);
    -webkit-transition: all 1s ease-in-out;
  }
  .aboutSwiperWrap .swiper-slide .card:hover .wrapImg img {
    /* filter on hover */
    filter: none;
    -webkit-filter: saturate(1.5);
    cursor: pointer;
  }

  .aboutSwiper .swiper-button-prev.custom-prev,
  .aboutSwiper .swiper-button-next.custom-next {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 10;
    color: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
  }
  .aboutSwiper .swiper-button-prev.custom-prev::after,
  .aboutSwiper .swiper-button-next.custom-next::after {
    font-size: 14px !important; /* custom size default Swiper icon */
    font-weight: 900;
    color: black; /* ganti warna */
  }

  .aboutSwiper .swiper-button-prev.custom-prev {
    left: -15px !important; /* berada di luar container */
  }

  .aboutSwiper .swiper-button-next.custom-next {
    right: -15px !important; /* berada di luar container */
  }
  /* end */

  /* end gallery */

  /* style Latest NEws */
  .titleLatestNews h2 {
    font-size: 34px !important;
    font-weight: 500 !important;
  }

  /* swiper news home shortcode */
  .elementor-shortcode .newsSwiperWrapper {
    position: relative;
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
  }
  .newsSwiper {
    margin: auto;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .newsSwiper .newsSwiperWrap .swiper-slide {
    display: flex;
    justify-content: center;
  }
  .newsSwiper .newsSwiperWrap .swiper-slide .card {
    width: 100%;
    max-width: 760px !important;
    height: 440px;
    border-radius: 15px;
  }
  .newsSwiperWrap .swiper-slide .card .wrapImg {
    width: 100%;
    max-width: 760px;
    height: 280px;
    border-radius: 30px;
    overflow: hidden;
  }
  .newsSwiperWrap .swiper-slide .card .wrapImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* filter before hover */
    filter: gray;
    -webkit-transform: scale(1);
    -webkit-transition: all 1s ease-in-out;
  }
  .newsSwiperWrap .swiper-slide .card:hover .wrapImg img {
    /* filter on hover */
    filter: none;
    -webkit-transform: scale(1.2);
    cursor: pointer;
  }
  .newsSwiperWrap .swiper-slide .card .newsinationName {
    margin-top: 20px;
    width: 100%;
    padding: 0;
    height: calc(440px - 280px);
    display: flex;
    flex-direction: column;
    font-family: var(--primary-font);
    box-sizing: border-box;
    gap: 10px;
  }
  .newsinationName .newsDate {
    font-weight: 400;
    font-size: 14px;
    color: rgb(94, 94, 94);
  }
  .newsinationName .span {
    font-weight: 400;
    font-size: 18px;
    color: rgb(52, 59, 60, 0.92);
  }
  .newsSwiperWrapper .swiper-button-prev.custom-prev,
  .newsSwiperWrapper .swiper-button-next.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
  }
  .newsSwiperWrapper .swiper-button-prev.custom-prev::after,
  .newsSwiperWrapper .swiper-button-next.custom-next::after {
    font-size: 24px !important; /* custom size default Swiper icon */
    font-weight: 800;
    color: rgb(0, 0, 0); /* ganti warna */
  }

  .newsSwiperWrapper .swiper-button-prev.custom-prev {
    opacity: 1;
    left: -40px; /* berada di luar container */
  }

  .newsSwiperWrapper .swiper-button-next.custom-next {
    opacity: 1;
    right: -40px; /* berada di luar container */
  }

  .newsSwiperWrapper .swiper-slide {
    cursor: pointer;
  }
  /* end swiper product home */

  /* end */

  /* swiper single produk */
  .singleProdukSwiper {
    margin: auto;
    position: relative;
    width: 100%;
    max-width: 920px;
    display: flex;
    justify-content: center;
    height: 500px;
  }
  .sProdukSwiper {
    margin: auto;
    display: flex;
    justify-content: center !important;
    align-items: center;
    width: 90%;
    height: 100%;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sProdukSwiper .sProdukSwiperWrap {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 50%;
  }
  .sProdukSwiper .sProdukSwiperWrap .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .sProdukSwiperWrap .swiper-slide .wrapImg {
    width: 100%;
    max-width: 130px;
    height: 120px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 3px 15px rgb(0, 0, 0, 0.1);
    background-color: white;
    padding: 2px;
    position: relative;
    -webkit-filter: grayscale(50%);
    -webkit-transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    /* filter before hover */
  }
  .sProdukSwiperWrap .swiper-slide-active .wrapImg {
    -webkit-filter: saturate(1.3);
    -webkit-transform: scale(1.6);
  }
  .sProdukSwiperWrap .swiper-slide-active {
    position: absolute;
    z-index: 100;
  }

  .sProdukSwiperWrap .swiper-slide .wrapImg img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
  }

  .singleProdukSwiper .swiper-button-prev.custom-prev,
  .singleProdukSwiper .swiper-button-next.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
    color: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
  }
  .singleProdukSwiper .swiper-button-prev.custom-prev::after,
  .singleProdukSwiper .swiper-button-next.custom-next::after {
    font-size: 24px !important; /* custom size default Swiper icon */
    font-weight: 800;
    color: rgb(0, 0, 0); /* ganti warna */
  }

  .singleProdukSwiper .swiper-button-prev.custom-prev {
    opacity: 1;
    left: 0px; /* berada di luar container */
  }

  .singleProdukSwiper .swiper-button-next.custom-next {
    opacity: 1;
    right: 0px; /* berada di luar container */
  }

  .singleProdukSwiper .swiper-slide {
    cursor: pointer;
  }
  /* end swiper singe produk */

  /* our product */
  .produk-container {
    margin: 50px 0 0 0;
    width: 100%;
    padding: 5px !important;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
  }
  .produk-container .produk-item {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 460px;
    background-color: white !important;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
  }
  .produk-item .bgProductName {
    width: 100%;
    height: 90px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    position: absolute;
    z-index: 1;
    bottom: -10px;
    left: 0;
    -webkit-transition: all 0.3s ease;
  }
  .produk-item:hover .bgProductName {
    position: absolute;
    color: white;
    bottom: 0px;
    left: 0px;
  }
  .produk-item .productName {
    position: absolute;
    color: white;
    bottom: 40px;
    left: 20px;
  }
  .produk-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    border-radius: 30px;
  }
  /* end */

  /* style single-produk */
  .single-produk {
    font-family: var(--primary-font) !important;
  }

  .single-produk .site-content {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
    background-color: white;
  }
  .single-produk .site-content .ast-container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
  }
  .single-produk .site-main {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .single-produk .main-container {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }
  .single-produk .main-container .entry-hero-image {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 500px !important;
    overflow: hidden;
  }
  .single-produk .main-container .entry-hero-image img {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  .single-produk .main-container .mainContainer {
    width: 100% !important;
    max-width: 1280px !important;
    height: max-content !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .single-produk .main-container .mainContainer .contDesc {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .single-produk .main-container .mainContainer .contSpec {
    margin-top: 0px;
    flex: 1;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .single-produk .main-container .mainContainer .contSpec .specTitle {
    margin: 0;
    padding: 0;
    align-self: flex-start;
  }
  .specTitle h2 {
    font-size: 18px !important;
  }
  .single-produk .main-container .mainContainer .contDesc .contSpec {
    margin-right: 20px;
    margin-bottom: 20px;
    width: 100%;
    float: left;
    display: flex;
    flex-direction: column;
  }

  .single-produk .main-container .mainContainer .specDetail {
    padding: 0 !important;
    width: 100%;
  }
  .specDetail pre {
    width: 100% !important;
    margin: 0;
  }

  .single-produk .entry-title {
    font-size: 26px !important;
    font-weight: 500 !important;
  }
  .single-produk .entry-content {
    font-size: 12px !important;
  }

  /* end */

  /* style single-blog_news */
  .single-blog_news {
    font-family: var(--primary-font) !important;
  }

  .single-blog_news .site-content {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
    background-color: white;
  }
  .single-blog_news .site-content .ast-container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
  }
  .single-blog_news .site-main {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .single-blog_news .main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
  }
  .single-blog_news .main-container .entry-hero-image {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 500px !important;
    overflow: hidden;
  }
  .single-blog_news .main-container .entry-hero-image img {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
  }
  .single-blog_news .main-container .contDesc {
    position: relative;
    width: 100%;
    margin-top: 40px;
  }
  .single-blog_news .main-container .contDesc .entry-header {
    margin-top: 10px;
  }
  .single-blog_news .post-navigation {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 2rem;
    font-family: var(--primary-font);
  }
  .single-produk .post-navigation {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 2rem;
    font-family: var(--primary-font);
  }

  .nav-previous,
  .nav-next {
    max-width: 50%;
  }

  .nav-previous a,
  .nav-next a {
    text-decoration: none;
    color: #003366;
    display: flex !important;
    flex-direction: column !important;
    height: 50px !important;
    width: 100% !important;
    gap: 5px !important;
    margin: 0;
    padding: 0;
  }

  .nav-previous a .navLabel,
  .nav-next a .navLabel {
    font-size: 14px;
    font-weight: 600;
  }
  .nav-previous a .navContent,
  .nav-next a .navContent {
    padding: 0;
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  .nav-previous {
    text-align: left;
  }

  .nav-next {
    display: flex;
    justify-content: flex-end;
    text-align: right;
  }

  .nav-previous a:hover,
  .nav-next a:hover {
    color: #003366;
  }

  .single-blog_news .entry-date {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgb(143, 143, 143);
  }
  .single-blog_news .entry-title {
    font-size: 26px !important;
    font-weight: 500 !important;
  }
  .single-blog_news .entry-excerpt {
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  /* end single blog news */

  .contContactUs {
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 50px !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
  .contContactUs .titleCTAIcon {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .titleCTAIcon .titleText h2 {
    font-size: 32px;
  }
  .titleCTAIcon .titleText p {
    font-size: 14px;
    font-weight: 300;
  }
  .groupIcon .circleBorder {
    padding: 8px;
    border: solid 1px black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contContactUs .circleBorder img {
    width: 12px !important;
    height: 12px !important;
  }
  .contContactUs .contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
  .contact .item {
    font-size: 14px;
  }
  .contContactUs .contact .item img {
    width: 200px !important;
    -webkit-transform: translateX(-10px);
  }
}
