/*!
README - STYLEGUIDE BRIEFLY

Find the style by section component, using Find or CTRL + F
HEADER STYLE, BREADCRUMB STYLE, BANNER STYLE, CONTENT STYLE, LISTING STYLE, FOOTER STYLE

Make this stylesheet still readable and after using this file, dont forget to use beautify after development
Thankyou Whello Developer
*/


/* -----------------------------
         SITE HEADER
-------------------------------*/
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: .3s;
  -o-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}

.site-header li {
  padding-left: 0;
}

.site-header li::before {
  display: none;
}

.site-header {
  background-color: #fff;
}

.site-header.sticky-active {
  -webkit-box-shadow: 0 4px 4px 0 rgb(0 0 0 / 6%);
  -moz-box-shadow: 0 4px 4px 0 rgb(0 0 0 / 6%);
  box-shadow: 0 4px 4px 0 rgb(0 0 0 / 6%);
}

.site-header .navbar-header>.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.site-header .site-branding a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.site-header .site-branding img {
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -o-object-position: left;
  object-position: left;
}

.site-header .main-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-header .menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
}

.site-header .menu-item,
.site-footer li {
  list-style: none;
}

.site-header .menu .menu-item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.site-header .menu-item a {
  font-size: var(--text-sm);
  line-height: 21px;
}

.site-header .menu-item:not([class*="btn-"]) a {
  color: var(--green-800);
}

.site-header [class*="btn-"] a {
  color: var(--green-600);
  padding: 10px 25px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
  border: 1px solid var(--green-600);
}


.site-header [class*="btn-"]:hover a,
.site-header [class*="btn-"].current-menu-item a {
  background-color: var(--green-600);
  color: var(--white);
}

.site-header .menu>.menu-item-has-children>a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.single-post .menu.menu .menu-item.blog-menu>a,
.menu.menu .current-menu-item:not([class*="btn-"])>a {
  font-weight: 700;
  color: var(--green-600);
  position: relative;
  padding-bottom: 3px;
  margin-top: 3px;
}

.single-post .menu.menu .menu-item.blog-menu>a::after,
.menu.menu .current-menu-item:not([class*="btn-"])>a:after {
  content: '';
  width: 14px;
  height: 2px;
  background-color: var(--green-600);
  bottom: 0;
  left: 35%;
  position: absolute;
}

.menu.menu .current-menu-item:not([class*="btn-"])>a:hover:after {
  background-color: var(--green-400);
}

.site-header .sub-menu>.menu-item>a {
  text-align: left;
  display: block;
}

.menu-item-has-children>.icon-submenu {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.menu-item-has-children>.icon-submenu:before,
.menu-item-has-children>.icon-submenu:after {
  content: '';
  position: absolute;
  top: 50%;
  left: -webkit-calc(100% - 6px);
  left: -moz-calc(100% - 6px);
  left: calc(100% - 6px);
  z-index: 1;
  display: block;
  width: 8px;
  height: 2px;
  background-color: #0e0e0e;
  -webkit-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  transition: all .25s ease-out;
  margin: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.menu-item-has-children>.icon-submenu:before {
  -webkit-transform: translate(-100%, -50%) rotate(45deg);
  -moz-transform: translate(-100%, -50%) rotate(45deg);
  -ms-transform: translate(-100%, -50%) rotate(45deg);
  -o-transform: translate(-100%, -50%) rotate(45deg);
  transform: translate(-100%, -50%) rotate(45deg);
  left: -webkit-calc(100% - 5px);
  left: -moz-calc(100% - 5px);
  left: calc(100% - 5px);
}

.menu-item-has-children>.icon-submenu:after {
  -webkit-transform: translate(-25%, -50%) rotate(-45deg);
  -moz-transform: translate(-25%, -50%) rotate(-45deg);
  -ms-transform: translate(-25%, -50%) rotate(-45deg);
  -o-transform: translate(-25%, -50%) rotate(-45deg);
  transform: translate(-25%, -50%) rotate(-45deg);
  left: -webkit-calc(100% - 6px);
  left: -moz-calc(100% - 6px);
  left: calc(100% - 6px);
}

.menu-item-has-children.menu-item-active>.icon-submenu:before {
  -webkit-transform: translate(-100%, -50%) rotate(-45deg);
  -moz-transform: translate(-100%, -50%) rotate(-45deg);
  -ms-transform: translate(-100%, -50%) rotate(-45deg);
  -o-transform: translate(-100%, -50%) rotate(-45deg);
  transform: translate(-100%, -50%) rotate(-45deg);
}

.menu-item-has-children.menu-item-active>.icon-submenu:after {
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
  -moz-transform: translate(-25%, -50%) rotate(45deg);
  -ms-transform: translate(-25%, -50%) rotate(45deg);
  -o-transform: translate(-25%, -50%) rotate(45deg);
  transform: translate(-25%, -50%) rotate(45deg);
}

.menu-item-has-children.menu-item-active>.icon-submenu:before,
.menu-item-has-children.menu-item-active>.icon-submenu:after {
  background-color: var(--green-600);
}

.site-header .menu-item-has-children .sub-menu {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -moz-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.site .hamburger-menu {
  width: 26px;
  /* padding: 5px; */
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.hamburger-menu span {
  width: 100%;
  height: 2.6px;
  display: block;
  background-color: var(--green-600);
  -webkit-transform: rotate(0deg) translate(0px);
  -moz-transform: rotate(0deg) translate(0px);
  -ms-transform: rotate(0deg) translate(0px);
  -o-transform: rotate(0deg) translate(0px);
  transform: rotate(0deg) translate(0px);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.hamburger-menu span:not(:last-child) {
  margin-bottom: 6.2px;
}

.toggle-onactive .hamburger-menu span:first-child {
  -webkit-transform: rotate(45deg) translate(5px, 7px);
  -moz-transform: rotate(45deg) translate(5px, 7px);
  -ms-transform: rotate(45deg) translate(5px, 7px);
  -o-transform: rotate(45deg) translate(5px, 7px);
  transform: rotate(45deg) translate(5px, 7px);
}

.toggle-onactive .hamburger-menu span:nth-child(2) {
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
  opacity: 0;
}

.toggle-onactive .hamburger-menu span:last-child {
  -webkit-transform: rotate(-45deg) translate(6px, -8px);
  -moz-transform: rotate(-45deg) translate(6px, -8px);
  -ms-transform: rotate(-45deg) translate(6px, -8px);
  -o-transform: rotate(-45deg) translate(6px, -8px);
  transform: rotate(-45deg) translate(6px, -8px);
  width: 100%;
}

html.noprevent-scroll {
  overflow: hidden;
}

/* sidebar catalogue */
.sidebar-sticky.wpb_column {
  position: -webkit-sticky;
  position: sticky;
  height: 100%;
  z-index: 50;
}

/* ------------------------------
      Section row banner
---------------------------------*/
.landing-text-banner p {
  border-left: 4px solid var(--green-800);
  padding-left: 14px;
  font-weight: 600;
}

.landing-text-banner h1 {
  margin-bottom: 24px;
  margin-right: -1px;
}

.col-media-home-banner>.vc_column-inner>.wpb_wrapper {
  padding-left: 55px;
}

.col-media-home-banner>.vc_column-inner>.wpb_wrapper figure img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  max-width: 470px;
  width: 100%;
  max-height: 470px;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: #9dd149;
}

.col-media-home-banner>.vc_column-inner>.wpb_wrapper figure .vc_single_image-wrapper {
  position: relative;
}

.col-media-home-banner>.vc_column-inner>.wpb_wrapper figure .vc_single_image-wrapper::before,
.col-media-home-banner>.vc_column-inner>.wpb_wrapper figure .vc_single_image-wrapper::after {
  content: '';
  position: absolute;
  z-index: 1;
}

.col-media-home-banner>.vc_column-inner>.wpb_wrapper figure .vc_single_image-wrapper::before {
  top: 0;
  left: -36px;
  background: url(/wp-content/uploads/2022/09/Ellipse-2.png) center/contain no-repeat;
  width: 111px;
  height: 111px;
}

.col-media-home-banner>.vc_column-inner>.wpb_wrapper figure .vc_single_image-wrapper::after {
  bottom: 55px;
  right: -30px;
  background: url(/wp-content/uploads/2022/09/Ellipse-3.png) center/contain no-repeat;
  width: 111px;
  height: 111px;
}

/* -------------------------------
      Site Footer
---------------------------------*/
/* site footer banner */
.site-footer-banner,
.banner-japo-adsense {
  background: -webkit-linear-gradient(348.99deg, #213b17 39.33%, #356e21 90.04%, #67b94a 111.14%);
  background: -moz-linear-gradient(348.99deg, #213b17 39.33%, #356e21 90.04%, #67b94a 111.14%);
  background: -o-linear-gradient(348.99deg, #213b17 39.33%, #356e21 90.04%, #67b94a 111.14%);
  background: linear-gradient(101.01deg, #213b17 39.33%, #356e21 90.04%, #67b94a 111.14%);
}

.wpb_single_image.site-footer-banner-media .vc_single_image-wrapper {
  position: relative;
}

.wpb_single_image.site-footer-banner-media .vc_single_image-wrapper::before {
  content: '';
  background: url(/wp-content/uploads/2022/08/ornamen-banner-japo.png) no-repeat;
  position: absolute;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.col-content-banner-footer .wpb_text_column h4 {
  margin-bottom: 0;
  font-weight: 600;
}

.col-content-banner-footer .wpb_text_column h2 {
  margin-bottom: 32px;
}

.row-content-footer .wpb_column:first-child>.vc_column-inner .wpb_wrapper {
  width: 100%;
  max-width: 470px;
}

.row-content-footer .text-about {
  line-height: 30px;
}

.logo-lable-footer-spacing>.logo-groups .logo-group-item:not(.logo-group-item:last-child) {
  margin-right: 40px;
  height: 26px;
  width: auto;
}

.cta-footer>.vc_column-inner>.wpb_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.cta-footer>.vc_column-inner>.wpb_wrapper .whbutton-wrapper:not(.whbutton-wrapper:last-child) {
  margin-right: 32px;
}

.site-footer .copyright p {
  color: var(--green-600);
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 21px;
}

.list-content-footer h3 {
  font-size: 20px;
  line-height: 1.2;
}

.list-content-footer h3,
.list-content-footer h4,
.list-content-footer h5 {
  color: var(--green-600);
  font-weight: 700;
  margin-bottom: 24px;
}

.list-content-footer p,
.list-content-footer p a {
  font-weight: 400;
  color: var(--green-600);
}

.site-footer div>a:hover,
.list-content-footer p a:hover {
  color: var(--green-400);
  font-weight: 400;
}

.icon-text-wrapper.icon-size--large img,
.logo-lable-footer-spacing .logo-group-item img {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.logo-lable-footer-spacing .logo-group-item:hover img {
  -webkit-transform: scale(1.12);
  -moz-transform: scale(1.12);
  -ms-transform: scale(1.12);
  -o-transform: scale(1.12);
  transform: scale(1.12);
}

.icon-text-wrapper.icon-size--large:hover img {
  -webkit-transform: scale(0.95) rotate(1deg);
  -moz-transform: scale(0.95) rotate(1deg);
  -ms-transform: scale(0.95) rotate(1deg);
  -o-transform: scale(0.95) rotate(1deg);
  transform: scale(0.95) rotate(1deg);
}

/* ----------------------------------
    image section rounded custom
-------------------------------------*/
/* 
  row-first-section-image, row-second-section-image = page home
  col-media-content = page agen 
  media-content-cta = layout Section cta banner
*/
.vc_row.row-first-section-image>.wpb_column:first-child img,
.vc_row.row-second-section-image>.wpb_column:last-child img,
.vc_row.col-media-content-cta>.wpb_column:first-child img {
  -webkit-border-radius: 117px 48px 117px 48px;
  -moz-border-radius: 117px 48px 117px 48px;
  border-radius: 117px 48px 117px 48px;
}

.vc_row.row-first-section-image>.wpb_column:last-child img,
.vc_row.col-media-content-cta>.wpb_column:last-child img {
  -webkit-border-radius: 101.5px 101.5px 101.5px 30px;
  -moz-border-radius: 101.5px 101.5px 101.5px 30px;
  border-radius: 101.5px 101.5px 101.5px 30px;
}

.vc_row.row-second-section-image>.wpb_column:first-child img {
  -webkit-border-radius: 101.5px 30px 101.5px 101.5px;
  -moz-border-radius: 101.5px 30px 101.5px 101.5px;
  border-radius: 101.5px 30px 101.5px 101.5px;
}

.vc_row.col-media-section>.wpb_column:last-child img {
  -webkit-border-radius: 48px 117px 48px 117px;
  -moz-border-radius: 48px 117px 48px 117px;
  border-radius: 48px 117px 48px 117px;
}

.vc_row.col-media-section>.wpb_column:first-child img {
  -webkit-border-radius: 101.5px 101.5px 30px 101.5px;
  -moz-border-radius: 101.5px 101.5px 30px 101.5px;
  border-radius: 101.5px 101.5px 30px 101.5px;
}

/* ----------------------------
      Banner Adsense
-------------------------------*/
.banner-japo-adsense .vc_single_image-wrapper::before {
  content: '';
  background: url(/wp-content/uploads/2022/08/ornamen-banner-japo.png) no-repeat;
  position: absolute;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.content-text-banner p strong {
  margin-top: 40px;
  display: block;
}

/* ----------------------------
      extra Class Custom
------------------------------ */
/* class d-flex */
.d-flex .wpb_column>.vc_column-inner>.wpb_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-center .wpb_column>.vc_column-inner>.wpb_wrapper {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* class heading text section */
.heading-text-section h4 {
  color: var(--green-400);
  font-weight: 600;
  margin-bottom: 0;
}

/* home page section list about japo */
.content-list-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.content-list-section>.wpb_wrapper {
  width: 100%;
  max-width: 532px;
}

.content-list-section h3,
.content-list-section h4 {
  margin-bottom: 16px;
}

.content-list-section h3~h3 {
  margin-top: 35px;
}

.content-list-section p {
  margin-bottom: 24px;
  margin-top: 0;
}

.mr-29-6 {
  margin-right: 29px;
}

.mr-40 {
  margin-right: 40px;
}

.wa-white:hover .cta-whbutton {
  background-color: var(--white);
  color: var(--green-800);
}

.max-600 p{
  max-width: 600px;
  width: 100%;
}

.col-banner-cta-home h2 {
  margin-bottom: 32px;
}



/* --------------------------
      Listing
----------------------------*/
.listing {
  margin: -15px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}


.listing .listing-item {
  padding: 15px;
}

.listing .thumbnail-item img {
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
  transform: scale(1.01);
  transition: transform 1000ms ease-in-out,
    -webkit-transform 1000ms ease-in-out,
    -moz-transform 1000ms ease-in-out,
    -o-transform 1000ms ease-in-out;
}



/* --------------------------
    Listing Style Blog
-----------------------------*/
/* card */

.listing-blog.listing-style-card .listing-item {
  padding-bottom: 35px;
}

.listing-blog.listing-style-card .pagination {
  margin-top: 45px;
}

.listing-blog.listing-style-card .thumbnail-item {
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  margin-bottom: 24px;
}

.listing-blog .read-more p {
  margin-top: 24px;
}

.listing-blog .read-more p strong {
  position: relative;
  padding-right: 24px;
  -webkit-transition: var(--duration);
  -o-transition: var(--duration);
  -moz-transition: var(--duration);
  transition: var(--duration);
  color: var(--green-600);
}

.listing-blog .read-more p strong::after {
  content: '';
  position: absolute;
  background: url(/wp-content/uploads/2022/08/japo-ic-arrow-circle.svg) no-repeat;
  width: 16px;
  height: 16px;
  top: 3px;
  right: 0;
  -webkit-transition: var(--duration);
  -o-transition: var(--duration);
  -moz-transition: var(--duration);
  transition: var(--duration);
}

.listing-blog .listing-item:hover .image-wrapper>img {
  overflow: hidden;
  transform: scale(1.12);
  transition: transform 1000ms ease-in-out,
  -webkit-transform 1000ms ease-in-out,
  -moz-transform 1000ms ease-in-out,
  -o-transform 1000ms ease-in-out;
}

.listing-blog .listing-item .image-wrapper>img {
    transition: transform 1000ms ease-in-out,
    -webkit-transform 1000ms ease-in-out,
    -moz-transform 1000ms ease-in-out,
    -o-transform 1000ms ease-in-out;
}

.listing-blog .listing-item .read-more p strong {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.listing-blog .listing-item:hover .read-more p strong {
  padding-right: 30px;
  color: var(--green-800);
}

.listing-blog .date-post {
  color: var(--grey-600);
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 4px;
}

.listing-blog .content-item h4 {
  font-size: 25px;
  font-weight: 800;
  line-height: 37.5px;
  color: var(--green-900);
  margin-bottom: 14px;
}

.listing-blog .listing-item:hover h4 {
  color: var(--green-600);
}

.listing-overview-post.listing-blog .listing-item .excerpt-listing p,
.listing-blog .listing-item .excerpt-listing p {
  line-height: normal;
  -webkit-line-clamp: 3;
}



 


/* ----------------------------
    Listing Style Catalogue
-------------------------------*/
.vc_row.pattern-blog>.wpb_column>.vc_column-inner>.wpb_wrapper {
  position: relative;
}

.vc_row.pattern-blog>.wpb_column>.vc_column-inner>.wpb_wrapper::before {
  content: '';
  background: url(/wp-content/uploads/2022/08/homepage-ornamen2.png) no-repeat;
  width: 109px;
  height: 109px;
  position: absolute;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* card */
.listing-catalogue .listing-item:hover h4 {
  color: var(--green-400);
}

.listing-overview-catalogue .listing-item h4,
.listing-catalogue .listing-item h4 {
  color: var(--green-900);
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}


.listing-catalogue .listing-item .thumbnail-item {
  -webkit-transition: .3s;
  -o-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}

.listing-catalogue.listing-style-card .listitem-wrapper {
  padding: 24px;
  background-color: var(--white);
  -webkit-box-shadow: 0 4px 14px 0 rgb(0 0 0 / 6%);
  -moz-box-shadow: 0 4px 14px 0 rgb(0 0 0 / 6%);
  box-shadow: 0 4px 14px 0 rgb(0 0 0 / 6%);
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.listing-catalogue .listing-item:hover .listitem-wrapper {
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
 -webkit-transform: translateY(-10px);
 -moz-transform: translateY(-10px);
 -ms-transform: translateY(-10px);
 -o-transform: translateY(-10px);
 transform: translateY(-10px);
}

.listing-overview-catalogue.listing-style-card .image-wrapper {
  height: 250px;
}

.listing-catalogue.listing-style-card .image-wrapper img,
.listing-overview-catalogue.listing-style-card .image-wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  width: auto;
  height: 100%;
}

.listing-catalogue.listing-style-card .thumbnail-item {
  margin-bottom: 30px;
}

.listing-catalogue.listing-style-card .title-listing {
  margin-bottom: 24px;
}

.listing-catalogue.listing-style-card .thumbnail-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.listing-catalogue.listing-style-card .listitem-link>*+* {
  margin-left: 11px;
}


.listing-catalogue .category-item,
.listing-catalogue .category-item a {
  color: var(--green-600);
  font-weight: 700;
  font-size: var(--text-sm);
  line-height: 21px;
  margin-bottom: 4px;
}

/* wh-filter */
.listing-catalogue.listing-style-card .listitem-link a,
.listing-overview-catalogue.listing-catalogue .listitem-link a {
  max-width: 33.33%;
  width: 33.33%;
}


/* --------------------------
    Listing Style Agent
-----------------------------*/
/* card */
.listing-agent.listing-style-card .listitem-wrapper {
  background-color: var(--white);
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;
}

.listing-agent.listing-style-card .thumbnail-item {
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  margin-bottom: 24px;
}

.listing-agent.listing-style-card .see-location {
  margin-top: 16px;
}

.listing-agent .listitem-link {
  margin-top: 24px;
}

.listing-agent.listing-style-card .thumbnail-item img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/* list */
.listing-agent.listing-style-listing .listitem-wrapper {
  background-color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.listing-agent.listing-style-listing .thumbnail-item .image-wrapper img {
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
}

.listing-agent.listing-style-card .listitem-link a,
.listing-agent.listing-style-listing .listitem-link a {
  max-width: 50%;
  width: 50%;
}

.listing-agent.listing-style-listing .see-location {
  margin-top: 15px;
}

.listing-agent .listing-item:hover h5 {
  color: var(--green-400);
}

.listing-agent .listing-item h5 {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}


.listing-agent h5 {
  color: var(--green-900);
  margin-bottom: 16px;
}

.listing-agent .address {
  margin-top: 0;
  font-size: 14px;
  line-height: 21px;
}

.listing-agent .title-listing {
  color: var(--green-800);
  font-weight: 600;
  margin-bottom: 4px;
}

.listing-agent .see-location {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-600);
}

.listing-agent .see-location::before {
  content: '';
  position: absolute;
  background: url(/wp-content/uploads/2022/08/japo-ic-location.svg) no-repeat;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
}

/* image hover */
.listing-agent.listing-style-card .listing-item .thumbnail-item img,
.listing-catalogue .listing-item .thumbnail-item img {
    transition: transform 1000ms ease-in-out,
    -webkit-transform 1000ms ease-in-out,
    -moz-transform 1000ms ease-in-out,
    -o-transform 1000ms ease-in-out;
}


.listing-agent.listing-style-card .listing-item:hover .thumbnail-item img,
.listing-catalogue .listing-item:hover .thumbnail-item img {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
  transform: scale(1.04);
  overflow: hidden;
}

.col-open-keagenan h2 {
  margin-bottom: 32px;
}


.listing-agent.listing-style-card .listing-item .see-location {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}


.listing-agent.listing-style-card .listing-item .see-location:hover {
  color: var(--green-400);
}



/* ------------------------------
    Global custom link listing
----------------------------------*/
.listing .listitem-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-width: 100%;
  max-width: 100%;
}

.listing .listitem-link a {
  min-height: 51px;
  max-height: 51px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.listing .listitem-link a img {
  width: auto;
  height: 26px;
}

.listing .listitem-link .link-shopee {
  border: 1px solid var(--orange);
}

.listing .listitem-link .link-tokopedia {
  border: 1px solid var(--green-500);
}

.listing .listitem-link .link-instagram {
  border: 1px solid var(--purple);
}

.listing .listitem-link .link-whatsapp {
  border: 1px solid #25d366;
}

.listing .listitem-link {
  -webkit-transition: .4s;
  -o-transition: .4s;
  -moz-transition: .4s;
  transition: .4s;
}

.listing .listitem-link a {
  -webkit-transition: .4s;
  -o-transition: .4s;
  -moz-transition: .4s;
  transition: .4s;
}

.listing .listitem-link a:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.listing .listitem-link .link-shopee:hover {
  background-color: var(--orange);
}

.listing .listitem-link .link-tokopedia:hover {
  background-color: var(--green-500);
}

.listing .listitem-link .link-whatsapp:hover {
  background-color: #25d366;
}

.listing .listitem-link .link-instagram:hover {
  background-color: var(--purple);
}



/* ---------------------------
          Review List
------------------------------*/

.review-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.review-list .listing-item {
  padding: 15px;
}

.review-list .listitem-wrapper {
  background-color: var(--grey);
  padding: 24px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  margin: -15px 0;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;
}

.review-list .listitem-wrapper .excerpt-listing {
  margin-bottom: 40px;
}

.review-list h4 {
  margin-bottom: 0;
}

.review-list .content-item .product-review {
  color: var(--green-600);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}




/* ----------------------------
    Single Blog
-------------------------------*/
.single-post .news-article {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-post .post-thumbnail img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.single-post .entry-header,
.single-post .entry-content {
/*  max-width: 750px;*/
  width: 100%;
  margin: 0 auto;
}

.vc_section.row-single-banner-cta {
  background: -webkit-linear-gradient(351.25deg, #213B17 38.98%, #356E21 83.59%, #67B94A 112.05%);
  background: -moz-linear-gradient(351.25deg, #213B17 38.98%, #356E21 83.59%, #67B94A 112.05%);
  background: -o-linear-gradient(351.25deg, #213B17 38.98%, #356E21 83.59%, #67B94A 112.05%);
  background: linear-gradient(98.75deg, #213B17 38.98%, #356E21 83.59%, #67B94A 112.05%);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  margin: 0 auto;
  position: relative;
}

.vc_section.row-single-banner-cta::before {
  content: '';
  width: 94px;
  height: 140px;
  background: url(/wp-content/uploads/2022/08/ornamen-banner-japo.png) no-repeat;
  bottom: 16.33px;
  left: 26px;
  position: absolute;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.vc_section.row-single-banner-cta .wpb_column:last-child .whbutton-wrapper:not(.whbutton-wrapper:last-child) {
  margin-right: 23.66px;
}

.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4,
.single-post .entry-content h5,
.single-post .entry-content h6 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.single-post .entry-content h1 {
  margin-bottom: 42px;
}

.single-post .entry-content a,
.single-post .entry-content p a {
  color: var(--green-600);
  font-weight: 700;
  -webkit-transition: .4s;
  -o-transition: .4s;
  -moz-transition: .4s;
  transition: .4s;
}

.single-post .entry-content a:hover,
.single-post .entry-content p a:hover {
  color: var(--green-400);
}

.single-post .entry-content p img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.single-post .entry-content .break {
  margin-top: 0;
}

.share-post li::before {
  display: none;
}

.share-post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.info-list,
.info-list .info-list-category,
.info-list .post-view,
.info-list .info-list-share .wpb_column>.vc_column-inner>.wpb_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-share p {
  margin-right: 7px;
  font-weight: 600;
  position: relative;
  padding-left: 27px;
}

.text-share p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  background-color: var(--green-800);
  width: 4px;
  height: 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.info-list .post-view span {
  margin-right: 22px;
}

.share-item {
  -webkit-transition: .3s;
  -o-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}

.share-item:hover {
  filter: brightness(0.9);
}

.share-post li {
  padding-left: 0;
  margin-bottom: 0;
}

.info-list p,
.estimate-post-featured {
  color: var(--green-800);
  font-size: var(--text-sm);
}

.news-article h2 {
  margin-bottom: 40px;
}

.vc_section.row-single-banner-cta .wpb_column .cta-whbutton {
  padding: 8px 25px;
}



/* -------------------------
      WH Filter
-------------------------- */

.filter-item>label {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--green-900);
  line-height: 30px;
  margin-bottom: 24px;
}

.whfilter-overview .info-results {
  display: none;
}

.filter-item input[type="text"] {
  height: 38px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  border: 1px solid var(--grey-400);
  font-size: var(--text-sm);
  line-height: 21px;
  padding: 8px 38px 8px 14px;
  width: 100%;
}

.filter-item.search {
  position: relative;
}

.filter-item.search::after {
  content: '';
  width: 16px;
  height: 16px;
  background: url(/wp-content/uploads/2022/08/japo-ic-search.svg) no-repeat;
  bottom: 11px;
  right: 11px;
  position: absolute;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.filter-item .meta-radio-group input[type="radio"]:checked~*,
.whfilter-filter span:hover,
.whfilter-filter input[type="radio"]:checked {
  color: var(--green-600);
  font-weight: 600;
}

.form-blog ::-webkit-input-placeholder,
.form-catalogue ::-webkit-input-placeholder {
  color: var(--grey-400) !important;
}

.meta-radio-group .meta-input {
  visibility: hidden;
  display: none;
}

.meta-radio-group label:not(label:last-child) {
  margin-bottom: 16px;
}

.meta-radio-group label {
  cursor: pointer;
}

label.meta-item-active span {
  color: var(--green-600);
  font-weight: 600;
}


/* --------------------------------------
      Page Contact
----------------------------------------*/

.row-contact>.wpb_column:first-child {
  width: 58.4%;
}

.row-contact>.wpb_column:last-child {
  width: 41.6%;
}

.row-contact>.wpb_column:last-child h1 {
  margin-bottom: 32px;
}

.layout-in-page-contact .row-layout-banner-cta .wpb_column:last-child {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -moz-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.col-media-content-cta .wpb_column:first-child {
  width: 56.4%;
}

.col-media-content-cta .wpb_column:last-child {
  width: 43.6%;
}

.col-content-contact h2 {
  margin-bottom: 32px;
}

.col-content-contact>.vc_column-inner>.wpb_wrapper {
  width: 100%;
}

.col-media-section,
.col-media-content-cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.col-content-contact>.vc_column-inner {
  margin-left: 16px;
}


/* image section home */
.row-first-section-image,
.row-second-section-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.row-first-section-image>.wpb_column:first-child,
.row-second-section-image>.wpb_column:last-child {
  width: 53%
}

.row-first-section-image>.wpb_column:last-child,
.row-second-section-image>.wpb_column:first-child {
  width: 47%
}

.row-second-section-image>.wpb_column:first-child>.vc_column-inner>.wpb_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.row-second-section-image>.wpb_column:first-child>.vc_column-inner {
  padding-right: 11px;
}

.row-second-section-image>.wpb_column:last-child {
  margin-top: -19%;
  display: inline-block;
}


/* 404 */
.entry-404 h1 {
  margin-bottom: 32px;
}


/* image section agen */

.col-open-keagenan .col-media-section .wpb_column:first-child {
  width: 41%;
}

.col-open-keagenan .col-media-section .wpb_column:last-child {
  width: 59%;
}

.col-open-keagenan .col-media-section .wpb_column:last-child>.vc_column-inner {
  padding-left: 13px;
}


/* thank-you page */
.row-thank-you>.wpb_column:first-child h1 {
  width: 100%;
  max-width: 616px;
}


/* ---------------------------
      Pattern
---------------------------- */

.pattern-content {
  position: relative;
}

.pattern-content::before {
  content: '';
  width: 133px;
  height: 133px;
  background: url(/wp-content/uploads/2022/08/homepage-ornamen2.png) no-repeat;
  position: absolute;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.pattern-content.right-top {
  margin-bottom: -63px;
}

.pattern-content.right-top::before {
  top: -63px;
  right: 30px;
}

.pattern-content.right-top-custom::before {
  top: -33px;
  right: 95px;
}

.pattern-content.left-top::before {
  top: -26px;
  left: -28px;
}

.site {
  position: relative;
  /* overflow: hidden; */

}

.site::before,
.site::after {
  content: '';
  position: absolute;
  background: url(/wp-content/uploads/2022/09/homepage-ornamen1-japo.png) no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  z-index: -1;
}


/* page next styling */
.prev.page-numbers,
.next.page-numbers {
  width: 10px;
  height: 10px;
  background: url(/wp-content/uploads/2022/08/japo-ic-left-arrow.svg) no-repeat;
}

.next.page-numbers {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* table of content */
div#ez-toc-container#ez-toc-container {
  background: #f7fdfa;
  border: 1px solid #ccfae1;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 32px;
}

div#ez-toc-container ul.ez-toc-list a:hover {
  color: var(--green-400);
}

div#ez-toc-container nav {
  margin-top: 14px;
}

div#ez-toc-container#ez-toc-container ul.ez-toc-list a:visited,
div#ez-toc-container ul.ez-toc-list a {
  color: var(--green-600);
  font-weight: 500;
}

div#ez-toc-container nav li::before,
div#ez-toc-container a::before {
  display: none;
}

/* compotition product */
.composition-product  {
  margin-bottom: 10px !important;
}

.composition-product li {
  margin-bottom: 2px;
}

a.close-detail-product,
a.read-more-product {
  color: var(--green-800);
  font-weight: 600;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;
}

a.close-detail-product:hover,
a.read-more-product:hover {
  color: var(--green-400);
}

.meta-desc-product {
  margin-bottom: 24px !important;
  font-size: 15px;
}

.modal-dialog-desc-product {
  font-size: 14px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;
}

a.close-detail-product {
  margin-top: 16px;
  margin-bottom: 24px !important;
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.rounded-20 img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}


/*navigation single post*/
.section-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -moz-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between; 
  color: var(--green-600);
  font-weight: 600;
}

.previous-article-link span,
.new-article-link span {
  width: 10px;
  height: 10px;
  background: url(/wp-content/uploads/2022/08/japo-ic-left-arrow.svg) no-repeat;
  display: inline-block;
}

.section-navigation a:hover {
    color: var(--green-900);
}

.nextpost span{
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.wh-post-nav a {
    font-size: 16px;
    font-weight: 600;
}

.wh-post-nav {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

.wh-post-nav a.nextpost.new-article-link {
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
}

/* New Style Single Psot */





.single-box-cta .vc_column-inner > .wpb_wrapper {
    border-radius: 15px;
    background: #67B94A;
    padding: 30px;
}

.sidebar-product-list .vc_column-inner > .wpb_wrapper {
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #356E21;
    background: #FFF;
}

.content-post-sidebar > .vc_row.wpb_row.vc_row-fluid {
    position: sticky;
    top: 185px;
}

.sidebar-product-list li a {
  color: #213B17;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.sidebar-product-list li:before {
  display: none;
}

.sidebar-product-list li:after {
    content: '';
    width: 15px;
    height: 15px;
    background: url(/wp-content/uploads/2020/08/arrow-icon.svg) center/contain no-repeat;
    display: inline-block;
    position: absolute;
    right: 0;
}

.sidebar-product-list li{
    padding-left: 0;
    margin-bottom: 19px;
    display: flex;
    align-items: center;
}

.sidebar-product-list li,
.sidebar-product-list ul {
  list-style: none;
}

.sidebar-product-list ul {
  margin-top: 24px;
}

.single-box-cta h2,
.single-box-cta p {
    color: var(--white);
}

.single-post .single-box-cta h2 {
  margin-bottom: 24px;
  font-size: 30px;
  line-height: 1.5;
}

.sidebar-product-list h2 {
  font-size: 30px;
  line-height: 1.5;
}

.single-box-cta span.label-cta {
    color: #356E21;
    font-weight: 400;
}

.content-wrapper-post {
    margin-top: 80px;
}