/* ==========================================================================
   MIXIN
   ========================================================================== */
@keyframes shine {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}
/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
:root body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

h1, h2, h3, h4, h5,
ul, li, p, a {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.desktop-only {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }
}

.mobile-only {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .mobile-only {
    display: block !important;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1280px;
  }
}
@media only screen and (max-width: 1024px) {
  .container {
    width: 95%;
  }
}

.text-green {
  color: #009444;
}

.text-red {
  color: #FA0000;
}

.main-title {
  position: relative;
  font-size: 6rem;
  font-weight: bold;
  font-family: "Poppins", serif;
  text-align: center;
  line-height: 60px;
  z-index: 1;
}
@media only screen and (max-width: 1200px) {
  .main-title {
    font-size: 5rem;
    line-height: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .main-title {
    font-size: 3rem;
    line-height: 35px;
  }
}
.main-title.sub {
  font-size: 5rem;
  line-height: 55px;
}
@media only screen and (max-width: 1200px) {
  .main-title.sub {
    font-size: 3.8rem;
    line-height: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .main-title.sub {
    font-size: 2.4rem;
  }
}
.main-title.left {
  text-align: left;
}

.blog-single-fullwidth-img {
  position: relative;
  padding-top: 475px;
  height: 720px;
}
.blog-single-fullwidth-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 60%);
  background: -webkit-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 60%);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}
@media only screen and (max-width: 1200px) {
  .blog-single-fullwidth-img::after {
    background: -moz-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 80%);
    background: -webkit-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 80%);
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
  }
}
@media only screen and (max-width: 1024px) {
  .blog-single-fullwidth-img::after {
    background: -moz-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
  }
}
@media only screen and (max-width: 1024px) {
  .blog-single-fullwidth-img {
    height: 300px;
    padding-top: 100px !important;
  }
  .blog-single-fullwidth-img .main-title {
    font-size: 3rem;
  }
}
.blog-single-fullwidth-img + div {
  margin-top: -75px;
  border-radius: 80px 80px 0 0;
}
@media only screen and (max-width: 1200px) {
  .blog-single-fullwidth-img + div {
    border-radius: 50px 50px 0 0;
  }
}
@media only screen and (max-width: 1024px) {
  .blog-single-fullwidth-img + div {
    border-radius: 30px 30px 0 0;
  }
}

.img-fluid {
  height: 150vh;
  width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* .img-fluid {
  height: 110vh; width: 100%;background-size: cover;background-position: center; background-repeat: no-repeat;
} */
.margin-img-best-employee {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.margin-inhouse {
  margin: 50px 90px 50px 90px;
}

.padding-credibility {
  padding: 30px 30px 30px 30px;
}

.img-container {
  padding: 10px;
}

.padding-card-article {
  padding-right: 50px;
  margin-bottom: 20px;
}

.title-img-2 {
  margin-top: -80px;
}

.title-img {
  margin-top: -150px;
}

.padding-discovery-page {
  padding: 50px;
}

.card-discovery {
  padding-right: 50px;
  text-align: end !important;
}

.w-partner-title {
  width: 90%;
}

.custom-row {
  display: flex;
  align-items: center;
}

.custom-col-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
}

.custom-col-right {
  flex: 2;
  border-left: 2px #009444 solid;
  padding-left: 50px;
  position: relative;
}

.custom-testimonial-box {
  border: 1px #0d4728 solid;
  padding: 16px;
  display: flex;
  border-radius: 25px 100px 100px 25px;
  position: relative;
}

.custom-text-content {
  width: 100%;
  text-align: justify;
  margin-right: 300px;
  font-weight: 300;
}

.custom-image-content {
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
}

.best-employee {
  border-right: 2px white solid !important;
}

.card-service {
  width: 400px;
  height: 780px;
}

.bod-title-section {
  margin-top: 30px;
}

.bod-padding-outer {
  padding: 50px 50px 50px 50px;
}

.bod-padding {
  width: 80%;
  padding: 50px;
}

.align-item-about {
  align-items: center;
  height: 80vh;
}

.padding-text-partner {
  padding: 0px 20px 0px 20px;
}

.padding-system-career {
  padding: 65px 120px 65px 120px;
}

.padding-system-career-p {
  padding: 0px 200px 0px 200px;
}

.form-group label {
  font-size: 24px;
}

.form-control {
  height: 70px;
  font-size: 24px;
}

.form-control {
  height: 70px;
}

.padding-career {
  padding: 0px 138px 0px 138px;
}

.overlay-text-article {
  position: absolute;
  bottom: 5%; /* Adjust vertical position */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Center horizontally */
  color: white; /* Text color */
  text-align: center; /* Center text inside the element */
  width: auto; /* Adjust width as needed */
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .overlay-text-article {
    width: 80%;
  }
}

.fs-50 {
  font-size: 50px;
  line-height: 100%;
}

.unique-page-section {
  padding: 50px;
  background-color: #A7E7A7;
  border-radius: 60px 60px 0px 0px !important;
  margin-top: -50px !important;
}

.unique-container {
  display: flex;
  padding: 0px 100px;
  justify-content: center;
  align-items: center;
}

.unique-image {
  z-index: 2;
  border-radius: 15px;
  max-width: 100%;
}

.unique-info {
  background-color: #009444;
  width: 100%;
  height: 100px;
  margin-left: -50px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 0px 70px 0px;
}

.unique-info > div {
  margin: 0;
}

.unique-name {
  font-weight: bold;
  margin: 0px 80px 0px 80px;
  color: white;
}

.unique-rank {
  color: #FFFFFF;
  opacity: 0.6;
  font-weight: bold;
  margin: 10px 90px 0px 90px;
}

.unique-button {
  background-color: white;
  border-radius: 25px;
  color: #009444;
  padding: 10px 50px;
  text-decoration: none;
  font-size: 22px;
  margin-right: 20px;
}

.owl-carousel {
  position: relative; /* Pastikan kontainer memiliki posisi relatif */
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none; /* Tambahkan pointer-events: none untuk menghindari masalah klik */
}

.owl-carousel .owl-nav button {
  background: none;
  border: none;
  font-size: 2em; /* Sesuaikan ukuran ikon */
  pointer-events: auto; /* Pastikan tombol dapat diklik */
}

.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 10px; /* Sesuaikan jarak dari kiri */
}

.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: 10px; /* Sesuaikan jarak dari kanan */
}

.owl-prev {
  width: 60px;
  background-color: transparent !important;
  border-radius: 100% !important;
  height: 60px;
  position: absolute;
  top: 40%;
  color: #009444 !important;
  /* margin-left: -10px; */
  display: block !important;
  border: 2px solid #009444 !important;
}

.owl-prev:hover {
  width: 60px;
  background-color: #009444 !important;
  border-radius: 100% !important;
  color: white !important;
  height: 60px;
  position: absolute;
  top: 40%;
  /* margin-left: -10px; */
  display: block !important;
  border: 0px solid black;
}

.owl-next:hover {
  width: 60px;
  background-color: #009444 !important;
  border-radius: 100% !important;
  color: white !important;
  height: 60px;
  position: absolute;
  top: 40%;
  /* margin-left: -10px; */
  display: block !important;
  border: 0px solid black;
}

.owl-next {
  width: 60px;
  height: 60px;
  background-color: transparent !important;
  border-radius: 100% !important;
  position: absolute;
  top: 40%;
  /* right: -25px; */
  color: #009444 !important;
  display: block !important;
  border: 2px solid #009444 !important;
}

.owl-prev i, .owl-next i {
  font-size: 4em;
  /* transform : scale(1,2); */
  width: 100%;
  height: auto;
  display: block;
}

.product-box {
  display: flex;
  flex-direction: column;
}

.product-content {
  background: white;
  border-radius: 25px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ini memastikan konten mengambil seluruh tinggi kotak */
}

.product-image {
  width: 100%;
  height: auto; /* Atau atur tinggi tertentu jika diperlukan */
}

.word-break {
  overflow-wrap: break-word; /* Versi modern dari word-wrap */
}

.btn-text-style-2 {
  font-size: 22px;
  font-weight: 500;
  line-height: 128%;
}

.btn-text-style-3 {
  font-size: 25px;
  line-height: 98%;
}

.card-content-team {
  padding: 60px 60px 60px 60px;
}

.p1 {
  font-size: 18px;
  line-height: 112%;
  letter-spacing: 2%;
}

.fs-h1 {
  font-size: 60px;
  line-height: 98%;
}

.fs-h2 {
  font-size: 50px;
  line-height: 98%;
}

.fs-h3 {
  font-size: 26px;
  line-height: 116%;
}

.fs-t1 {
  font-size: 48px;
  line-height: 100%;
}

.fs-t2 {
  font-size: 32px;
  line-height: 100%;
}

.fs-regular {
  font-size: 18px;
}

.fs-custom1 {
  font-size: 36px;
}

.fs-custom2 {
  font-size: 20px;
}

.fs-article {
  font-size: 20px;
  line-height: 128%;
}

.fs-article-h1 {
  font-size: 31px;
  line-height: 128%;
}

.padding-products {
  padding: 50px 120px 50px 120px;
}

.height-article {
  background-color: #A7E7A7;
  height: 70rem;
}

/* Extra small devices (mobile phones) */
@media (max-width: 574px) {
  .padding-discovery-page {
    padding: 25px;
  }
  .margin-img-best-employee {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .fs-50 {
    text-align: center;
    font-size: 20px;
    line-height: 100%;
  }
  .p1 {
    font-size: 12px;
    line-height: 112%;
    letter-spacing: 2%;
  }
  .fs-h1 {
    font-size: 40px;
    line-height: 98%;
  }
  .fs-h2 {
    font-size: 40px;
    line-height: 98%;
  }
  .fs-h3 {
    font-size: 20px;
    line-height: 116%;
  }
  .fs-t1 {
    font-size: 36px;
    line-height: 100%;
  }
  .fs-t2 {
    font-size: 22px;
    line-height: 100%;
  }
  .fs-regular {
    font-size: 12px;
  }
  .fs-custom1 {
    font-size: 30px;
  }
  .fs-custom2 {
    font-size: 14px;
  }
  .padding-index {
    padding: 56px 0px 56px 0px;
  }
  .intro-img {
    width: 80% !important;
    margin-bottom: 20px;
  }
  .video-session {
    border: #009444 25px solid;
    width: 100%;
    height: 300px;
    border-radius: 25px;
  }
  #kaleidVideo {
    width: 100%;
    height: 250px;
  }
  .div-intro-img {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .margin-img-team {
    margin-top: 50px;
  }
  .kaleid-section2 {
    padding: 84px 20px 0px 20px;
  }
  .index-product-text {
    width: 320px;
  }
  .card-activities {
    margin-top: 50px;
  }
  .border-radius-testimonial {
    border-radius: 250px 250px 50px 50px;
  }
  .div-testimonial {
    margin-bottom: 50px;
  }
  .core-title {
    padding-top: 20px;
    font-size: 26px;
    line-height: 98%;
  }
  .core-description {
    display: none;
  }
  .img-feature {
    height: 500px !important;
  }
  .owl-carousel-core .owl-nav {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none; /* Tambahkan pointer-events: none untuk menghindari masalah klik */
  }
  .img-philosophy {
    padding: 30px;
  }
  .product-category-section {
    padding: 100px 50px 100px 50px !important;
  }
  .padding-product-mix {
    padding-left: 10px;
    padding-right: 10px;
  }
  .width-product-mix {
    width: 90%;
  }
  .padding-responsive {
    padding: 20px;
  }
  .padding-discovery-last {
    padding: 0px 50px 0px 50px;
  }
  .padding-article {
    padding: 56px 20px 56px 20px !important;
  }
  .card-content-team {
    padding: 30px 30px 30px 30px;
  }
  .btn-text-style-2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 128%;
  }
  .btn-text-style-3 {
    font-size: 19px;
    line-height: 98%;
  }
  .padding-features {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .padding-products {
    padding: 50px 50px 50px 50px;
  }
  .owl-carousel .owl-nav {
    display: none;
  }
  .unique-container {
    flex-direction: column;
    padding: 0 20px;
  }
  .unique-info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 10px;
    margin-left: 0;
    height: auto;
  }
  .unique-info > div {
    margin: 10px 0;
    text-align: center;
  }
  .unique-name {
    margin: 0;
  }
  .unique-rank {
    margin: 10px 0 0 0;
  }
  .unique-button {
    margin: 20px 0 0 0;
    padding: 10px 20px;
    font-size: 18px;
  }
  .fs-article {
    font: size 12px;
    line-height: 128%;
  }
  .fs-article-h1 {
    font-size: 22px;
    line-height: 128%;
  }
  .content-styling {
    height: 100px;
    width: 100%; /* Ensure the div has a width */
    overflow: hidden; /* Prevent overflow */
    white-space: normal; /* Ensure normal wrapping */
    overflow-wrap: break-word; /* Break long words */
  }
  .fs-article {
    font-size: 12px;
    line-height: 128%;
  }
  .height-article {
    background-color: #A7E7A7;
    height: 35rem;
  }
  .padding-career {
    padding: 0px 30px 0px 30px;
  }
  .form-group label {
    font-size: 18px;
  }
  .form-control {
    height: 40px;
    font-size: 18px;
  }
  .form-control {
    height: 40px;
  }
  .padding-system-career {
    padding: 30px 60px 30px 60px;
  }
  .padding-system-career-p {
    padding: 0px 20px 0px 20px;
  }
  .padding-text-partner {
    padding: 0px 40px 0px 40px;
  }
  .align-item-about {
    padding-top: 50px;
    align-items: start;
    height: 60vh;
  }
  .bod-padding {
    width: 100%;
    padding: 10px;
  }
  .bod-padding-outer {
    padding: 50px 20px 50px 20px;
  }
  .card-service {
    width: 400px;
    height: 650px;
  }
  .best-employee {
    border-right: 0px white solid !important;
  }
  .custom-row {
    flex-direction: column;
    text-align: center;
  }
  .custom-col-left {
    width: 100%;
    border-left: none;
    padding-left: 0;
  }
  .custom-col-right {
    padding-left: 0;
    border-left: none;
    margin-top: 20px;
  }
  .custom-testimonial-box {
    flex-direction: column;
    border-radius: 25px;
    padding: 16px;
    position: relative;
  }
  .custom-text-content {
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  .custom-image-content {
    position: static;
    margin: 20px auto 0;
    transform: none;
    max-width: 150px;
  }
  .w-partner-title {
    width: 80%;
  }
  .card-discovery {
    padding-top: 20px;
    padding-right: 30px;
    text-align: center !important;
  }
  .title-img {
    margin-top: -130px;
  }
  .title-img-2 {
    margin-top: -100px;
  }
  .padding-card-article {
    padding: 0px 30px 0px 30px;
    margin-bottom: 20px;
  }
  .img-container {
    padding: 10px;
  }
  .discovery-social-image-2 {
    margin-top: 25px;
  }
  .padding-credibility {
    padding: 0px 30px 0px 30px;
  }
  .margin-inhouse {
    margin: 50px 0px 50px 0px;
  }
  .img-fluid {
    margin-top: -100px;
    margin-bottom: -200px;
    height: 65vh;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .padding-index {
    padding: 56px 0px 56px 0px;
  }
  .padding-article {
    padding: 56px 20px 56px 20px !important;
  }
  .intro-img {
    width: 60% !important;
    margin-bottom: 20px !important;
  }
  .div-intro-img {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .video-session {
    border: #009444 25px solid;
    width: 100%;
    height: 300px;
    border-radius: 25px;
  }
  #kaleidVideo {
    width: 100%;
    height: 250px;
  }
  .img-card-index {
    text-align: center;
    width: 80% !important;
  }
  .div-img-card-index {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .margin-img-team {
    margin-top: 50px;
  }
  .kaleid-section2 {
    padding: 84px 20px 0px 20px;
  }
  .index-product-text {
    width: 435px;
  }
  .card-activities {
    margin-top: 50px;
  }
  .border-radius-testimonial {
    border-radius: 300px 300px 50px 50px;
  }
  .core-title {
    font-size: 36px;
    line-height: 98%;
  }
  .core-description {
    display: none;
  }
  .owl-carousel-core .owl-nav {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none; /* Tambahkan pointer-events: none untuk menghindari masalah klik */
  }
  .img-philosophy {
    padding: 10px;
  }
  .product-category-section {
    padding: 100px 50px 100px 50px !important;
  }
  .padding-product-mix {
    padding-left: 10px;
    padding-right: 10px;
  }
  .width-product-mix {
    width: 90%;
  }
  .padding-responsive {
    padding: 20px;
  }
  .padding-discovery-last {
    padding: 0px 20px 0px 20px;
  }
  .btn-text-style {
    font-size: 19px;
    font-weight: 500;
    line-height: 128%;
  }
  .padding-features {
    padding-left: 100px;
    padding-right: 100px;
  }
  .unique-container {
    flex-direction: column;
    padding: 0 20px;
  }
  .unique-info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-left: 0;
    height: auto;
  }
  .unique-info > div {
    margin: 10px 0;
    text-align: center;
  }
  .unique-name {
    margin: 0;
  }
  .unique-rank {
    margin: 10px 0 0 0;
  }
  .unique-button {
    margin: 20px 0 0 0;
    padding: 10px 20px;
    font-size: 18px;
  }
  .fs-article {
    font-size: 12px;
    line-height: 128%;
  }
  .align-item-about {
    padding-top: 50px;
    align-items: start;
    height: 40vh;
  }
  .text-service {
    height: 150px;
  }
  .custom-row {
    flex-direction: column;
    text-align: center;
  }
  .custom-col-left {
    width: 100%;
    border-left: none;
    padding-left: 0;
  }
  .custom-col-right {
    padding-left: 0;
    border-left: none;
    margin-top: 20px;
  }
  .custom-testimonial-box {
    flex-direction: column;
    border-radius: 25px;
    padding: 16px;
    position: relative;
  }
  .custom-text-content {
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  .custom-image-content {
    position: static;
    margin: 20px auto 0;
    transform: none;
    max-width: 150px;
  }
  .img-fluid {
    height: 80vh;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -100px;
    margin-bottom: -200px;
  }
}
/* Medium devices (landscape tablets) */
@media (min-width: 769px) and (max-width: 992px) {
  .padding-index {
    padding: 56px 0px 56px 0px;
  }
  .padding-article {
    padding: 56px 55px 56px 55px;
  }
  .intro-img {
    width: 60% !important;
  }
  .div-intro-img {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .kaleid-section {
    padding: 93px 70px 93px 70px;
  }
  .video-session {
    border: #009444 25px solid;
    width: 100%;
    height: 500px;
    border-radius: 25px;
  }
  #kaleidVideo {
    width: 100%;
    height: 450px;
  }
  .kaleid-section3 {
    padding: 0px 0px 100px 0px;
  }
  .kaleid-section2 {
    padding: 84px 20px 0px 20px;
  }
  .img-card-index {
    text-align: center;
    width: 80% !important;
  }
  .div-img-card-index {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .margin-img-team {
    margin-top: 30px;
  }
  .sustainibility-point {
    margin-left: 30px;
  }
  .index-product-text {
    width: 570px;
  }
  .card-activities {
    margin-top: 50px;
  }
  .border-radius-testimonial {
    border-radius: 200px 200px 50px 50px;
  }
  .core-title {
    font-size: 55px;
    line-height: 98%;
  }
  .owl-carousel-core .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none; /* Tambahkan pointer-events: none untuk menghindari masalah klik */
  }
  .img-philosophy {
    padding: 50px;
  }
  .product-category-section {
    padding: 100px 225px 100px 225px !important;
  }
  .img-category-product-center {
    text-align: center;
  }
  .padding-product-mix {
    padding-left: 100px;
    padding-right: 100px;
  }
  .width-product-mix {
    width: 60%;
  }
  .padding-responsive {
    padding: 20px;
  }
  .padding-discovery-last {
    padding: 0px 50px 0px 50px;
  }
  .btn-text-style {
    font-size: 25px;
    font-weight: 500;
    line-height: 128%;
  }
  .padding-sustainibility {
    margin: 0px 50px 0px 50px;
  }
  .padding-features {
    padding-left: 125px;
    padding-right: 125px;
  }
  /* .img-product {
    height:150px;
  } */
  .padding-left-50 {
    padding-left: 30px;
  }
  .unique-container {
    flex-direction: column;
    padding: 0 20px;
  }
  .unique-info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-left: 0;
    height: auto;
  }
  .unique-info > div {
    margin: 10px 0;
    text-align: center;
  }
  .unique-name {
    margin: 0;
  }
  .unique-rank {
    margin: 10px 0 0 0;
  }
  .unique-button {
    margin: 20px 0 0 0;
    padding: 10px 20px;
    font-size: 18px;
  }
  .fs-article {
    font-size: 12px;
    line-height: 128%;
  }
  .align-item-about {
    padding-top: 50px;
    align-items: start;
    height: 40vh;
  }
  .text-service {
    height: 150px;
  }
  .custom-row {
    flex-direction: column;
    text-align: center;
  }
  .custom-col-left {
    width: 100%;
    border-left: none;
    padding-left: 0;
  }
  .custom-col-right {
    padding-left: 0;
    border-left: none;
    margin-top: 20px;
  }
  .custom-testimonial-box {
    flex-direction: column;
    border-radius: 25px;
    padding: 16px;
    position: relative;
  }
  .custom-text-content {
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  .custom-image-content {
    position: static;
    margin: 20px auto 0;
    transform: none;
    max-width: 150px;
  }
  .img-fluid {
    height: 70vh;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: -100px;
  }
}
/* Large devices (desktops) */
@media (min-width: 993px) and (max-width: 1200px) {
  .padding-index {
    padding: 56px 0px 56px 0px;
  }
  .padding-article {
    padding: 56px 110px 56px 110px;
  }
  .kaleid-section {
    padding: 93px 140px 93px 140px;
  }
  .video-session {
    border: #009444 25px solid;
    width: 100%;
    border-radius: 25px;
  }
  #kaleidVideo {
    width: 100%;
    height: 650px;
  }
  .kaleid-section3 {
    padding: 0px 140px 100px 140px;
  }
  .kaleid-section2 {
    padding: 84px 120px 0px 120px;
  }
  .img-card-index {
    width: 100% !important;
  }
  .sustainibility-point {
    margin-left: 30px;
  }
  .index-product-text {
    width: 870px;
  }
  .card-activities {
    margin-bottom: 50px;
  }
  .border-radius-testimonial {
    border-radius: 200px 200px 50px 50px;
  }
  .core-title {
    font-size: 55px;
    line-height: 98%;
  }
  .owl-carousel-core .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none; /* Tambahkan pointer-events: none untuk menghindari masalah klik */
  }
  .img-philosophy {
    padding: 100px;
  }
  .product-category-section {
    padding: 100px 225px 100px 225px !important;
  }
  .img-category-product-center {
    text-align: center;
  }
  .padding-product-mix {
    padding-left: 100px;
    padding-right: 100px;
  }
  .width-product-mix {
    width: 60%;
  }
  .padding-discovery-last {
    padding: 0px 100px 0px 100px;
  }
  .btn-text-style {
    font-size: 25px;
    font-weight: 500;
    line-height: 128%;
  }
  .padding-sustainibility {
    margin: 0px 50px 0px 50px;
  }
  .padding-features {
    padding-left: 150px;
    padding-right: 150px;
  }
  .container-title {
    height: 35px;
    overflow: hidden;
  }
  .container-description {
    height: 60px;
    overflow-y: hidden;
  }
  .padding-left-50 {
    padding-left: 50px;
  }
  .unique-container {
    flex-direction: column;
    padding: 0 20px;
  }
  .unique-info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-left: 0;
    height: auto;
  }
  .unique-info > div {
    margin: 10px 0;
    text-align: center;
  }
  .unique-name {
    margin: 0;
  }
  .unique-rank {
    margin: 10px 0 0 0;
  }
  .unique-button {
    margin: 20px 0 0 0;
    padding: 10px 20px;
    font-size: 18px;
  }
  .text-service {
    height: 150px;
  }
  .img-fluid {
    height: 70vh;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: -100px;
  }
}
/* Extra large devices (large desktops) */
@media (min-width: 1201px) {
  .padding-article {
    padding: 56px 110px 56px 110px;
  }
  .padding-index {
    padding: 56px 140px 56px 140px !important;
  }
  .kaleid-section {
    padding: 93px 140px 93px 140px;
  }
  .video-session {
    border: #009444 25px solid;
    width: 100%;
    border-radius: 25px;
  }
  #kaleidVideo {
    width: 100%;
    height: 650px;
  }
  .kaleid-section3 {
    padding: 0px 140px 100px 140px;
  }
  .kaleid-section2 {
    padding: 84px 120px 0px 120px;
  }
  .img-card-index {
    width: 100% !important;
  }
  .sustainibility-point {
    margin-left: 30px;
  }
  .index-product-text {
    width: 870px;
  }
  .border-radius-testimonial {
    border-radius: 200px 200px 50px 50px;
  }
  .core-title {
    font-size: 55px;
    line-height: 98%;
  }
  .owl-carousel-core .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none; /* Tambahkan pointer-events: none untuk menghindari masalah klik */
  }
  .img-philosophy {
    padding: 100px;
  }
  .product-category-section {
    padding: 100px 225px 100px 225px !important;
  }
  .img-category-product-center {
    text-align: center;
  }
  .padding-product-mix {
    padding-left: 100px;
    padding-right: 100px;
  }
  .width-product-mix {
    width: 60%;
  }
  .width-product-mix {
    width: 60%;
  }
  .padding-card-discovery {
    padding-left: 170px;
  }
  .padding-card-discovery-social {
    padding-left: 180px;
  }
  .padding-card-discovery-credibility {
    padding-left: 150px;
  }
  .padding-discovery-last {
    padding: 0px 150px 0px 150px;
  }
  .btn-text-style {
    font-size: 25px;
    font-weight: 500;
    line-height: 128%;
  }
  .padding-sustainibility {
    margin: 0px 50px 0px 50px;
  }
  .padding-features {
    padding-left: 150px;
    padding-right: 150px;
  }
  .container-title {
    height: 35px;
    overflow: hidden;
  }
  .container-description {
    height: 60px;
    overflow-y: hidden;
  }
  .padding-left-50 {
    padding-left: 50px;
  }
  .bod-section {
    display: flex;
    align-items: center;
  }
  .bod-title-section {
    margin-top: 0px;
  }
  .text-service {
    height: 150px;
  }
}
.btn-mcs {
  display: inline-block;
  min-width: 180px;
  padding: 15px 0;
  border-radius: 30px;
  transition: 0.3s ease all;
  overflow: hidden;
  font-size: 1.8rem;
  text-align: center;
}
.btn-mcs.small {
  min-width: 160px;
  padding: 9px 0;
}
.btn-mcs.btn__white {
  color: #009444 !important;
  background: #fff;
  border: 1px solid #fff;
}
.btn-mcs.btn__white:hover {
  color: #fff !important;
  background: #009444;
  border: 1px solid #fff;
}
.btn-mcs.btn__green {
  color: #fff !important;
  background: #009444;
  border: 1px solid #009444;
}
.btn-mcs.btn__green:hover {
  color: #009444 !important;
  background: #fff;
}
.btn-mcs.btn__green-light {
  color: #000 !important;
  background: #A7E7A7;
  border: 1px solid #A7E7A7;
}
.btn-mcs.btn__green-light:hover {
  color: #000 !important;
  background: #fff;
}

.activities {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .activities {
    margin-bottom: 50px;
  }
}
.activities:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
}
.activities__images {
  position: relative;
  width: 100%;
  height: 238px;
}
.activities__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activities__text {
  position: absolute;
  width: 80%;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.activities__text p {
  color: #fff;
  font-family: "Poppins", serif;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.activities__btn {
  position: absolute;
  bottom: -30px;
  right: 30px;
}
@media only screen and (max-width: 1200px) {
  .activities__btn {
    bottom: 25px;
  }
}

.card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  min-height: 700px;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .card {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .card {
    min-height: 400px;
  }
}
.card__body {
  padding: 20px;
}
.card__title {
  position: relative;
  display: flex;
  align-items: center;
  height: 150px;
}
@media only screen and (max-width: 1024px) {
  .card__title {
    height: auto;
  }
}
.card__title p {
  display: block;
  width: 100%;
  color: #009444;
  font-size: 4.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 42px;
}
@media only screen and (max-width: 1024px) {
  .card__title p {
    font-size: 3rem;
    padding: 20px;
    line-height: normal;
  }
}
.card__desc {
  font-size: 1.8rem;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .card__desc {
    font-size: 1.6rem;
  }
}
.card.service {
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .card.service {
    height: auto;
  }
}
.card.service .card__body {
  padding: 55px 40px;
}
@media only screen and (max-width: 1200px) {
  .card.service .card__body {
    padding: 30px 20px;
  }
}
.card.service .card__title p {
  font-size: 3.6rem;
}
@media only screen and (max-width: 1200px) {
  .card.service .card__title p {
    font-size: 3rem;
    padding: 0;
    margin-bottom: 20px;
  }
}
.card.service .card__desc p {
  font-size: 1.8rem;
}
.card.latest {
  position: relative;
  z-index: 2;
}
.card.latest .card__body {
  padding: 30px;
}

.header .header-wrapper {
  height: 100%;
}
.header.affix .logo-2 {
  padding: 17px 0;
}
@media only screen and (max-width: 1024px) {
  .header .logo-row {
    height: 70px;
  }
}
@media only screen and (max-width: 1024px) {
  .header .logo-2 {
    width: 150px;
    padding: 27px 0 0 20px;
  }
}

.footer {
  position: relative;
  background-color: #EAFFEA;
  padding: 70px 0;
}
@media only screen and (max-width: 1024px) {
  .footer {
    padding: 30px 0;
  }
}
.footer__logo {
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .footer__logo {
    text-align: center;
  }
}
.footer__logo img {
  width: 230px;
}
.footer__headline {
  color: #00BF68;
  font-size: 64px;
  line-height: 70px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
  .footer__headline {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer__headline {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }
}
.footer__sosmed {
  position: relative;
  margin-bottom: 10px;
}
.footer__sosmed-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  border: 3px #009444 solid;
  border-radius: 50%;
  padding: 5px 10px;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .footer__sosmed-icon {
    font-size: 1.6rem;
    width: 40px;
    height: 40px;
  }
}
.footer__sosmed-icon.shopee {
  background: url("../img/icons/icon-shopee.png") center/cover no-repeat;
}
.footer__sosmed-icon.tokopedia {
  background: url("../img/icons/icon-tokopedia.png") center/cover no-repeat;
}
.footer__widget-title {
  display: block;
  color: #000;
  font-size: 3rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .footer__widget-title {
    font-size: 2.5rem;
  }
}
.footer__widget-desc {
  color: #414042;
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  .footer__widget-desc {
    font-size: 1.6ren;
  }
}
.footer__copy a {
  color: #7e8082;
  font-size: 14px;
}
@media only screen and (max-width: 1024px) {
  .footer__copy a {
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .footer .widget {
    margin-bottom: 30px;
  }
}
.footer .shopee {
  background: url("../img/icons/icon-shopee.png") center/cover no-repeat;
}
.footer .tokopedia {
  background: url("../img/icons/icon-tokopedia.png") center/cover no-repeat;
}

@media only screen and (max-width: 1024px) {
  .home__banner .sm-video-bg .sm-content-cont {
    height: 350px !important;
  }
}
.home__bod {
  background: #A7E7A7;
  padding: 56px 0;
}
@media only screen and (max-width: 1024px) {
  .home__bod {
    padding: 30px 0;
  }
}
.home__bod .div-intro-img,
.home__bod .intro-img {
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .home__bod .div-intro-img,
  .home__bod .intro-img {
    height: auto;
  }
}
.home__bod .div-intro-img.bod,
.home__bod .intro-img.bod {
  border-radius: 50px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .home__bod .div-intro-img.bod,
  .home__bod .intro-img.bod {
    margin-bottom: 20px;
  }
}
.home__bod .div-intro-img.bod img,
.home__bod .intro-img.bod img {
  height: 100%;
  object-fit: cover;
}
.home__bod-text {
  position: relative;
  padding-left: 20px;
}
@media only screen and (max-width: 1024px) {
  .home__bod-text {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .home__bod-text .btn-mcs {
    display: block;
    margin: 0 auto;
  }
}
.home__bod-desc {
  color: #616161;
  font-size: 1.8rem;
  line-height: 20px;
}
.home__bod .main-title {
  margin-bottom: 20px;
  text-align: left;
}
@media only screen and (max-width: 1200px) {
  .home__bod .main-title {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .home__bod .main-title {
    font-size: 3rem;
    text-align: center;
  }
}
.home__bod .owl-carousel {
  padding-top: 50px;
  overflow: visible;
}
.home__bod .owl-carousel .owl-nav .owl-prev {
  left: -100px;
}
.home__bod .owl-carousel .owl-nav .owl-next {
  right: -100px;
}
@media only screen and (max-width: 1024px) {
  .home__bod .owl-carousel .intro-img {
    width: 100% !important;
  }
}
.home__bod .owl-theme .owl-dots {
  position: absolute;
  top: -30px; /* Sesuaikan nilai top sesuai kebutuhan */
  right: 150px; /* Sesuaikan nilai right sesuai kebutuhan */
}
.home__bod .owl-theme .owl-dots .owl-dot.active span, .home__bod .owl-theme .owl-dots .owl-dot:hover span {
  margin-top: 30px;
  background-color: #009444;
  opacity: 60%;
}
.home__bod .owl-theme .owl-dots .owl-dot span {
  margin-top: 30px;
  background-color: #009444;
  opacity: 25%;
  width: 20px; /* Mengubah lebar dots */
  height: 20px; /* Mengubah tinggi dots */
}
.home__bod .text-overlay {
  position: absolute;
  width: 80%;
  top: 70%;
  left: 55%;
  transform: translate(-50%, -50%);
  padding: 10px;
  color: white;
}
.home__bod .button-overlay {
  position: absolute;
  width: 75%;
  top: 100%;
  left: 95%;
  transform: translate(-50%, -50%);
  padding: 10px;
  color: white;
}
.home__awards {
  position: relative;
  padding: 50px 0;
}
@media only screen and (max-width: 1024px) {
  .home__awards {
    padding: 30px 0;
  }
}
.home__awards-images {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
.home__awards-images::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.home__awards-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__awards-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.home__awards-text p {
  color: #fff;
  margin-bottom: 20px;
}
.home__kaleidoskop {
  position: relative;
  padding-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .home__kaleidoskop {
    padding-bottom: 30px;
  }
}
.home__kaleidoskop-video {
  background: #009444;
  padding: 25px;
  border-radius: 25px;
  overflow: hidden;
}
.home__sustainability {
  position: relative;
  padding: 50px 0;
}
@media only screen and (max-width: 1024px) {
  .home__sustainability {
    padding: 0 0 30px;
  }
}
.home__sustainability-inner {
  width: 100%;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #F1F5F9;
}
@media only screen and (max-width: 1200px) {
  .home__sustainability-inner {
    padding: 20px;
  }
}
.home__sustainability-images {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .home__sustainability-images {
    margin-bottom: 20px;
  }
}
.home__sustainability-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__sustainability-text-title {
  color: #009444;
  font-family: "Poppins", serif;
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 48px;
}
@media only screen and (max-width: 1200px) {
  .home__sustainability-text-title {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .home__sustainability-text-title {
    font-size: 3.2rem;
    text-align: center;
    line-height: 40px;
  }
}
.home__sustainability-text-content {
  font-size: 1.8rem;
  margin-bottom: 30px;
  line-height: 30px;
}
@media only screen and (max-width: 1024px) {
  .home__sustainability-text-content {
    margin-bottom: 20px;
    text-align: center;
  }
}
.home__sustainability-text-list ul {
  padding-left: 50px;
}
@media only screen and (max-width: 1024px) {
  .home__sustainability-text-list ul {
    padding-left: 40px;
  }
}
.home__sustainability-text-list ul li {
  font-size: 3.2rem;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .home__sustainability-text-list ul li {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}
.home__sustainability-text .btn-mcs {
  margin-left: 20px;
}
@media only screen and (max-width: 1024px) {
  .home__sustainability-text .btn-mcs {
    display: block;
    margin: 0 auto;
    width: 180px;
  }
}
.home__sustainability .images-right .btn-mcs {
  margin-left: 0;
}
@media only screen and (max-width: 1024px) {
  .home__sustainability .images-right .btn-mcs {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1200px) {
  .home__sustainability .order-mobile {
    order: 2;
  }
}
@media only screen and (max-width: 1200px) {
  .home__sustainability.team .home__sustainability-text {
    text-align: center;
  }
}
@media only screen and (max-width: 1200px) {
  .home__sustainability.team .home__sustainability-text-content {
    text-align: center;
  }
}
.home__our-products {
  position: relative;
  padding: 70px 0 0;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .home__our-products {
    padding-top: 30px;
  }
}
.home__our-products-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .home__our-products-bg {
    height: 68vh;
    background-position: bottom;
    background-size: contain;
  }
}
.home__our-products-text {
  position: absolute;
  width: 100%;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1024px) {
  .home__our-products-text {
    top: 0;
    text-align: justify;
  }
}
.home__our-products-title {
  color: #009444;
  font-family: "Poppins", serif;
  font-size: 5rem;
  font-weight: bold;
  line-height: normal;
}
@media only screen and (max-width: 1200px) {
  .home__our-products-title {
    font-size: 4rem;
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .home__our-products-title {
    font-size: 3.5rem;
  }
}
.home__our-products-desc {
  color: #000;
  font-size: 1.8rem;
  line-height: 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
  .home__our-products-desc {
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .home__our-products .btn-mcs {
    display: block;
    margin: 0 auto;
    width: 180px;
  }
}
.home__our-partners {
  position: relative;
  padding: 70px 0;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .home__our-partners {
    padding: 30px 0;
  }
}
.home__our-partners-inner {
  position: relative;
  background: #A7E7A7;
  padding: 60px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1024px) {
  .home__our-partners-inner {
    padding: 40px 20px;
  }
}
.home__our-partners-bg {
  background-color: #009444;
  padding: 20px;
  height: 100%;
  border-radius: 200px 200px 50px 50px;
}
@media only screen and (max-width: 1024px) {
  .home__our-partners-bg {
    height: 100%;
    border-radius: 300px 300px 50px 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .home__our-partners .main-title {
    margin-bottom: 10px;
  }
}
.home__our-partners-images {
  position: relative;
  width: 100%;
}
.home__our-partners-images-container {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 10px solid #A7E7A7;
  overflow: hidden;
  margin-bottom: 24px;
}
.home__our-partners-text {
  position: relative;
  width: 100%;
  height: 130px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
  .home__our-partners-text {
    height: 200px;
  }
}
@media only screen and (max-width: 1024px) {
  .home__our-partners-text {
    height: auto;
    margin-bottom: 10px;
  }
}
.home__our-partners-name {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 100%;
  margin-bottom: 5px;
}
.home__our-partners-position {
  color: #fff;
  font-size: 2rem;
  line-height: 25px;
  margin-bottom: 5px;
}
.home__our-partners-position-company {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.home__our-partners-content {
  color: #fff;
  font-size: 1.8rem;
  text-align: left;
}
.home__join-us {
  position: relative;
  text-align: center;
}
.home__join-us-images {
  position: relative;
  height: 430px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .home__join-us-images {
    height: 365px;
  }
}
.home__join-us-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1024px) {
  .home__join-us-text {
    width: 80%;
  }
}
.home__join-us-text-title {
  color: #fff;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  line-height: normal;
}
@media only screen and (max-width: 1024px) {
  .home__join-us-text-title {
    font-size: 2.8rem;
  }
}
.home__join-us-text-desc {
  color: #fff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .home__join-us-text-desc {
    font-size: 1.8rem;
  }
}

.about {
  position: relative;
}
.about__banner {
  background-color: #009444;
  border-radius: 0px 80px 0px 0px !important;
}
@media only screen and (max-width: 1200px) {
  .about__banner {
    padding: 80px 0;
    border-radius: 40px 0 0 0;
  }
}
@media only screen and (max-width: 1024px) {
  .about__banner {
    padding: 50px 30px;
  }
}
.about__banner-desc {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 35px;
}
@media only screen and (max-width: 1024px) {
  .about__banner-desc {
    font-size: 2rem;
    text-align: center;
    line-height: 30px;
  }
}
.about__why {
  position: relative;
  padding: 80px 0;
  background: #EAFFEA;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
@media only screen and (max-width: 1200px) {
  .about__why {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .about__why {
    padding: 40px 0;
  }
}
.about__why-desc {
  color: #616161;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  .about__why-desc {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1024px) {
  .about__why-desc {
    font-size: 1.8rem;
  }
}
.about__why-sub {
  background-color: #A7E7A7;
  padding: 80px 0;
}
@media only screen and (max-width: 1200px) {
  .about__why-sub {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .about__why-sub {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 1200px) {
  .about__why-sub .main-title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 1024px) {
  .about__why-sub .main-title {
    font-size: 2rem;
  }
}
.about__history .owl-carousel-history .owl-prev,
.about__history .owl-carousel-history .owl-next {
  position: absolute;
  top: 40%;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  color: #fff !important;
  border: 2px solid #fff !important;
}
.about__history .owl-carousel-history .owl-prev:hover,
.about__history .owl-carousel-history .owl-next:hover {
  color: #009444 !important;
  background-color: #fff !important;
}
.about__vision {
  position: relative;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .about__vision {
    padding-bottom: 50px;
  }
}
.about__vision-images {
  position: relative;
  width: 100%;
  height: 100%;
}
.about__vision-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__vision-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .about__vision-text {
    width: 80%;
  }
}
.about__core-value-title {
  font-size: 3.6rem;
  line-height: 98%;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1200px) {
  .about__core-value-title {
    font-size: 3rem;
    line-height: 40px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .about__core-value-title {
    font-size: 2rem;
    line-height: normal;
  }
}
.about__core-value .overlay-text {
  position: absolute;
  top: 50%; /* Sesuaikan posisi vertikal */
  left: 50%; /* Sesuaikan posisi horizontal */
  transform: translate(-50%, -50%); /* Memastikan teks berada tepat di tengah */
  color: white; /* Warna teks */
  width: 100%;
  padding-left: 80px;
  padding-right: 80px;
}
@media only screen and (max-width: 1200px) {
  .about__core-value .overlay-text {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .about__core-value .overlay-text {
    padding: 0 20px;
  }
}
.about__core-value .core-description {
  font-size: 35px;
  font-weight: 300;
  line-height: 98%;
}
@media only screen and (max-width: 1200px) {
  .about__core-value .core-description {
    font-size: 3rem;
  }
}
.about__core-value .owl-carousel {
  padding: 50px 0;
  overflow: visible;
}
@media only screen and (max-width: 1024px) {
  .about__core-value .owl-carousel {
    padding: 30px 0;
  }
}
.about__core-value .owl-carousel .owl-nav .owl-prev {
  left: -100px;
}
.about__core-value .owl-carousel .owl-nav .owl-next {
  right: -100px;
}
.about__core-value .owl-theme .owl-dots .owl-dot span {
  margin-top: 30px;
  background-color: #009444;
  opacity: 25%;
  width: 20px; /* Mengubah lebar dots */
  height: 20px; /* Mengubah tinggi dots */
}
@media only screen and (max-width: 1024px) {
  .about__core-value .owl-theme .owl-dots .owl-dot span {
    margin-top: 10px;
    width: 10px;
    height: 10px;
  }
}
.about__core-value .owl-theme .owl-dots .owl-dot.active span, .about__core-value .owl-theme .owl-dots .owl-dot:hover span {
  opacity: 60%; /* Mengubah warna dots yang aktif atau saat di-hover menjadi lebih gelap */
}
.about__philosophy {
  position: relative;
  padding: 50px 0;
  margin-bottom: 50px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1200px) {
  .about__philosophy {
    padding-bottom: 0;
  }
}
.about__philosophy-logo {
  position: relative;
  width: 40%;
  margin: 0 auto 30px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .about__philosophy-logo {
    width: 50%;
  }
}
@media only screen and (max-width: 1200px) {
  .about__philosophy-text {
    margin-bottom: 30px;
  }
}
.about__philosophy-text.lush {
  margin-top: 45px;
}
@media only screen and (max-width: 1200px) {
  .about__philosophy-text.lush {
    margin-top: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .about__philosophy-text h2 {
    text-align: center;
    margin-bottom: 10px;
  }
}
.about__philosophy-text h2:after {
  content: "";
  position: absolute;
  height: 1px;
  background: #000;
}
@media only screen and (max-width: 1200px) {
  .about__philosophy-text h2:after {
    display: none;
  }
}
.about__philosophy-text h2.text-left:after {
  top: 20%;
  right: -15%;
  width: 35%;
}
@media only screen and (max-width: 1200px) {
  .about__philosophy-text h2.text-left:after {
    display: none;
  }
}
.about__philosophy-text h2.text-right:after {
  top: 50%;
  left: -15%;
  width: 50%;
}
@media only screen and (max-width: 1200px) {
  .about__philosophy-text h2.text-right:after {
    display: none;
  }
}
.about__philosophy-text h2.no-line:after {
  left: unset;
  right: 37%;
  width: 420px;
  height: 170px;
  border: 1px solid #000;
  border-right: none;
  border-bottom: none;
  background: transparent;
}
@media only screen and (max-width: 1200px) {
  .about__philosophy-text p {
    text-align: center;
  }
}
.about__philosophy .main-title {
  margin-bottom: 50px;
}

.bod__content {
  position: relative;
  background-color: #009444;
  overflow: visible;
}
.bod__inner {
  position: relative;
  padding: 50px;
  background-color: #A7E7A7;
  border-radius: 35px;
  margin-top: -27%;
}
@media only screen and (max-width: 1200px) {
  .bod__inner {
    padding: 30px;
    margin-top: 0;
  }
}
.bod__photo {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .bod__photo {
    margin-bottom: 30px;
  }
}
.bod__info {
  position: relative;
  text-align: center;
}
.bod__info .main-title {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #009444;
}
.bod__desc {
  position: relative;
  border-radius: 25px;
  padding: 80px 50px;
  background-color: white;
}
@media only screen and (max-width: 1024px) {
  .bod__desc {
    padding: 30px;
  }
}
.bod__desc p {
  color: #45724A;
  font-size: 24px;
  line-height: 28px;
  text-align: justify;
}
@media only screen and (max-width: 1200px) {
  .bod__desc p {
    font-size: 2rem;
    line-height: normal;
  }
}
@media only screen and (max-width: 1024px) {
  .bod__desc p {
    font-size: 1.8rem;
  }
}

.team {
  position: relative;
}
.team__bod {
  position: relative;
  padding: 50px 0 100px;
  background-color: #A7E7A7;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .team__bod {
    padding-bottom: 50px;
  }
}
.team__bod-images {
  position: relative;
  z-index: 2;
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  .team__bod-images {
    text-align: center;
    margin-bottom: 20px;
  }
}
.team__bod-images img {
  width: 310px;
}
@media only screen and (max-width: 1024px) {
  .team__bod-images img {
    width: 230px;
  }
}
.team__bod-detail {
  position: relative;
  height: 100px;
  margin: 0 -50px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 70px 0px 70px 0px;
  background-color: #009444;
}
@media only screen and (max-width: 768px) {
  .team__bod-detail {
    display: block !important;
    left: 0;
    height: auto;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    border-radius: 25px;
  }
}
.team__bod-detail p {
  margin: 0 30px;
}
@media only screen and (max-width: 1024px) {
  .team__bod-detail .unique-name {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .team__bod-detail .unique-name {
    font-size: 3rem;
    line-height: normal;
  }
}
@media only screen and (max-width: 1024px) {
  .team__bod-detail .unique-rank {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .team__bod-detail .unique-rank {
    font-size: 2rem;
    line-height: normal;
    margin-bottom: 20px;
  }
}
.team__best-employee-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.team__best-employee-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #A7E7A7;
}
.team__best-employee-inner {
  position: relative;
  overflow: hidden;
  padding: 50px;
  background-color: #009444;
  border-radius: 35px 35px 0px 0px;
}
@media only screen and (max-width: 1200px) {
  .team__best-employee-inner {
    padding: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .team__best-employee-inner {
    padding: 30px;
  }
}
.team__best-employee-inner img {
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .team__best-employee-inner .best-employee {
    border-right: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  .team__best-employee-inner .owl-carousel .owl-item img {
    width: 250px;
  }
}
.team__best-employee-title {
  color: #fff;
  font-size: 6rem;
  font-weight: bold;
  text-align: center;
  line-height: normal;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1200px) {
  .team__best-employee-title {
    font-size: 4.8rem;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .team__best-employee-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}
.team__best-employee-name {
  font-size: 35px;
  font-weight: bold;
  line-height: 40px;
}
@media only screen and (max-width: 1024px) {
  .team__best-employee-name {
    font-size: 2.8rem;
  }
}
.team__best-employee-rank {
  font-size: 20px;
  color: #F0DD7F;
}
@media only screen and (max-width: 1024px) {
  .team__best-employee-rank {
    font-size: 1.8rem;
  }
}
.team__testimonial {
  position: relative;
  padding: 50px;
  background: #fff;
}
@media only screen and (max-width: 1200px) {
  .team__testimonial {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .team__testimonial {
    padding: 30px 0;
  }
}
.team__testimonial h2 {
  color: #009444;
  font-size: 6rem;
  font-family: "Poppins", serif;
  font-weight: bold;
  line-height: 65px;
}
@media only screen and (max-width: 1200px) {
  .team__testimonial h2 {
    font-size: 4rem;
    line-height: 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .team__testimonial h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    line-height: 55px;
  }
}
.team__testimonial-box {
  position: relative;
  width: 530px;
  height: 245px;
  padding: 16px;
  border-radius: 25px;
  border: 3px #009444 solid;
}
@media only screen and (max-width: 1200px) {
  .team__testimonial-box {
    width: 450px;
  }
}
@media only screen and (max-width: 1024px) {
  .team__testimonial-box {
    width: 100%;
    height: auto;
  }
  .team__testimonial-box::before {
    display: none;
  }
}
.team__testimonial-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 1px;
  height: 100%;
  border-left: 3px #009444 solid;
}
@media only screen and (max-width: 1200px) {
  .team__testimonial-box:before {
    left: -40px;
  }
}
@media only screen and (max-width: 1024px) {
  .team__testimonial-images {
    order: -1;
    text-align: center;
    margin-bottom: 20px;
  }
}
.team__testimonial-images-inner {
  position: relative;
  width: 250px;
  height: 250px;
}
@media only screen and (max-width: 1024px) {
  .team__testimonial-images-inner {
    margin: 0 auto;
  }
}
.team__testimonial-images-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1024px) {
  .team__testimonial-images-inner img {
    object-fit: contain;
  }
}
.team__system-dev {
  position: relative;
  padding: 70px 0;
  background: #A7E7A7;
}
@media only screen and (max-width: 1200px) {
  .team__system-dev {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .team__system-dev {
    padding: 30px 0;
  }
}
.team__system-dev-title {
  color: #009444;
  font-family: "Poppins", serif;
  font-size: 6rem;
  font-weight: bold;
  line-height: 65px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
  .team__system-dev-title {
    font-size: 4rem;
    line-height: 45px;
  }
}
@media only screen and (max-width: 1024px) {
  .team__system-dev-title {
    font-size: 3rem;
    line-height: 35px;
  }
}
.team__system-dev-sub {
  font-size: 26px;
  line-height: 30px;
}
@media only screen and (max-width: 1200px) {
  .team__system-dev-sub {
    font-size: 2rem;
    line-height: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .team__system-dev-sub {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 1024px) {
  .team__system-dev .card__title p {
    padding: 0;
    margin-bottom: 20px;
  }
}
.team__system-dev .card .owl-item img {
  height: 250px;
  object-fit: cover;
}

.career__description {
  position: relative;
  padding: 50px 0px;
  background: #009444;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .career__description {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .career__description .fs-h3 {
    font-size: 1.8rem;
    line-height: normal;
  }
}
.career__form {
  position: relative;
  padding: 50px 0;
  background: #fff;
}
.career__form .main-title {
  margin-bottom: 20px;
}
.career__form .form-group {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1200px) {
  .career__form .form-group {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .career__form .form-group {
    margin-bottom: 30px;
  }
}
.career__form .form-group label {
  color: #000;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.career__form .form-group select,
.career__form .form-group input {
  border-radius: 8px;
  border: 2px solid #83B895;
  background: #F6F6F6;
}
.career__form .form-group select option,
.career__form .form-group input option {
  font-family: "Poppins", serif;
}
.career__form .g-recaptcha > div {
  margin: 0 auto;
}

.article {
  position: relative;
  background: #A7E7A7;
}
.article__latest {
  position: relative;
  background-color: #EAFFEA;
  z-index: 1;
}
.article__latest:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: #A7E7A7;
  z-index: 1;
}
.article__latest .main-title {
  padding: 50px 0;
}
@media only screen and (max-width: 1024px) {
  .article__latest .main-title {
    padding: 20px 0;
  }
}
.article__activities {
  position: relative;
  background: #A7E7A7;
  margin: 70px 0;
}
@media only screen and (max-width: 1200px) {
  .article__activities {
    margin: 50px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .article__activities {
    margin: 30px 0;
  }
}
.article__activities-inner {
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background-color: #EAFFEA;
}
.article__activities-inner .owl-item {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.article__activities-inner .owl-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 50%);
}
.article__activities-inner .owl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article__activities .main-title {
  margin: 10px 0;
}
.article__internal .card__article, .article__external .card__article {
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 30px;
  padding: 10px 13px;
}
.article__internal .card__article-images, .article__external .card__article-images {
  display: block;
}
@media only screen and (max-width: 768px) {
  .article__internal .card__article-images, .article__external .card__article-images {
    margin-bottom: 10px;
  }
}
.article__internal .card__article-title, .article__external .card__article-title {
  font-size: 18px;
  color: #8C8A88;
  line-height: 20px;
}
.article__internal .main-title, .article__external .main-title {
  text-align: left;
  margin-bottom: 28px;
}
.article__internal .main-title.sub, .article__external .main-title.sub {
  display: block;
  font-size: 4.8rem;
  line-height: 48px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #009444;
}
@media only screen and (max-width: 1200px) {
  .article__internal .main-title.sub, .article__external .main-title.sub {
    font-size: 4rem;
    line-height: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .article__internal .main-title.sub, .article__external .main-title.sub {
    font-size: 3.6rem;
    line-height: 36px;
  }
}

.products__banner {
  background-size: contain;
  background-position: center top;
  background-color: #c1b96a;
}
@media only screen and (max-width: 1200px) {
  .products__banner {
    background-size: 100%;
  }
}
.products__desc {
  position: relative;
  background: #009444;
}
.products__desc-inner {
  padding: 80px 0;
}
@media only screen and (max-width: 1200px) {
  .products__desc-inner {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .products__desc-inner {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .products__desc-inner p {
    line-height: normal;
  }
}
.products__category {
  position: relative;
  padding: 100px 0;
  background-color: #fff;
  border-radius: 0px 0px 0px 0px;
}
@media only screen and (max-width: 1200px) {
  .products__category {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .products__category {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 1200px) {
  .products__category-images {
    margin-bottom: 20px;
  }
}
.products__category-images img {
  width: 80%;
}
.products__category-text h2 {
  color: #009444;
  font-family: "Poppins", serif;
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
  .products__category-text h2 {
    font-size: 3.8em;
    line-height: 43px;
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .products__category-text h2 {
    font-size: 3em;
    line-height: 35px;
  }
}
.products__category-text p {
  font-size: 1.8rem;
  line-height: 25px;
}
@media only screen and (max-width: 1200px) {
  .products__category-text p {
    text-align: left;
  }
}
@media only screen and (max-width: 768px) {
  .products__category-text p {
    text-align: center;
  }
}
.products__mix {
  position: relative;
  padding: 80px 0;
  border-radius: none;
  background: #A7E7A7;
}
@media only screen and (max-width: 1024px) {
  .products__mix {
    padding: 50px 0 0;
  }
}
.products__mix-inner {
  background-color: #009444;
  padding: 50px;
  border-radius: 35px;
}
@media only screen and (max-width: 1024px) {
  .products__mix-inner {
    padding: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .products__mix .main-title {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 1024px) {
  .products__mix .fs-h3 {
    font-size: 1.8rem;
  }
}
.products__item {
  position: relative;
  padding: 50px 0;
}
.products__item-col {
  padding-left: 5px;
  padding-right: 5px;
}
@media only screen and (max-width: 1200px) {
  .products__item-col {
    padding: 0 15px;
  }
}
.products__item-container {
  position: relative;
  background: white;
  border-radius: 25px;
  padding: 10px;
  margin: 10px auto;
}
.products__item-title {
  position: relative;
  height: 60px;
  overflow: hidden;
}
.products__item-title p {
  position: absolute;
  bottom: 5px;
  color: #A82119;
  font-size: 18px;
  line-height: 98%;
  font-weight: bold;
}
.products__item-description {
  position: relative;
  height: 95px;
  overflow: hidden;
}
.products__item-description p {
  color: #414042;
  font-size: 10px;
  line-height: 150%;
}
.products__item-label {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 5px;
  left: 5px;
  background: url("../../front/img/products/icon-new.png") center/cover no-repeat;
}
.products__item .main-title {
  margin-bottom: 30px;
}
.products__item .img-product {
  width: 100%;
  min-height: 100%;
  height: 15vh;
  object-fit: contain;
}
.products__detail {
  position: relative;
  padding-top: 140px;
  background: #FFF5EC;
}
.products__detail .main-title {
  text-align: left;
}
.products__detail-title {
  color: #009444;
  font-size: 5.5rem;
  font-family: "Poppins", serif;
  font-weight: bold;
  line-height: 60px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .products__detail-title {
    font-size: 4rem;
    line-height: 50px;
    margin-bottom: 30px;
  }
}
.products__detail-desc {
  color: #616161;
  font-size: 2.8rem;
  font-family: "Poppins", serif;
  text-align: justify;
  line-height: 37px;
  margin-bottom: 55px;
}
@media only screen and (max-width: 1024px) {
  .products__detail-desc {
    font-size: 2.4rem;
    line-height: 30px;
    margin-bottom: 30px;
  }
}
.products__detail-tag {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  font-family: "Poppins", serif;
  border-radius: 10px;
  background-color: #EC9800;
  padding: 5px 10px;
  margin-bottom: 55px;
}
@media only screen and (max-width: 1024px) {
  .products__detail-tag {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
.products__detail-ingredients-container {
  position: relative;
  border: 5px solid #EC9800;
  border-radius: 0px 70px 70px 0px;
  padding: 45px 35px 25px 35px;
}
@media only screen and (max-width: 1024px) {
  .products__detail-ingredients-container {
    padding: 25px;
  }
}
.products__detail-ingredients-title {
  color: #EC9800;
  font-size: 30px;
  font-weight: 600;
  font-family: "Poppins", serif;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1024px) {
  .products__detail-ingredients-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
}
.products__detail-ingredients-title-sub {
  color: #fff;
  font-size: 25px;
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #EC9800;
}
@media only screen and (max-width: 1024px) {
  .products__detail-ingredients-title-sub {
    font-size: 2rem;
  }
}
.products__detail-ingredients-list ul {
  list-style: none;
}
.products__detail-ingredients-list ul li {
  position: relative;
  color: #AB6E00;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .products__detail-ingredients-list ul li {
    font-size: 2.6rem;
    line-height: 30px;
  }
}
.products__detail-ingredients-list ul li:last-child {
  margin-bottom: 0;
}
.products__detail-ingredients-list ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #EC9800;
  margin-right: 20px;
}
@media only screen and (max-width: 1024px) {
  .products__detail-ingredients-list ul li::before {
    width: 10px;
    height: 10px;
    margin-right: 15px;
  }
}
.products__detail-ingredients-footer {
  position: relative;
  border-radius: 70px, 70px, 0px, 0px;
  overflow: hidden;
}

.discoveries__content {
  position: relative;
  background: #EAFFEA;
  padding: 75px 0;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
@media only screen and (max-width: 1200px) {
  .discoveries__content {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .discoveries__content {
    padding: 40px 0;
  }
}
.discoveries__content img {
  width: 400px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1200px) {
  .discoveries__content img {
    width: 350px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .discoveries__content img {
    width: 300px;
    margin-bottom: 30px;
  }
}
.discoveries__content p {
  color: #45724A;
  font-family: "Poppins", serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 35px;
}
@media only screen and (max-width: 1200px) {
  .discoveries__content p {
    font-size: 2.4rem;
    line-height: normal;
  }
}
@media only screen and (max-width: 1024px) {
  .discoveries__content p {
    font-size: 1.8rem;
  }
}
.discoveries__environment {
  position: relative;
  padding: 200px 0 100px;
  background-color: #A7E7A7;
}
@media only screen and (max-width: 1200px) {
  .discoveries__environment {
    padding: 150px 0 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .discoveries__environment {
    padding: 80px 0 50px;
  }
}
.discoveries__environment.last {
  padding-top: 100px;
}
@media only screen and (max-width: 1200px) {
  .discoveries__environment.last {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .discoveries__environment.last {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .discoveries__environment .container {
    width: 100%;
  }
}
.discoveries__environment-inner {
  position: relative;
  background-color: #EAFFEA;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1024px) {
  .discoveries__environment-inner {
    padding: 50px 30px 30px;
  }
}
.discoveries__environment-inner-container {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .discoveries__environment-inner-container {
    margin-bottom: 30px;
  }
}
.discoveries__environment-images {
  position: relative;
  margin-top: -150px;
  text-align: center;
  margin-bottom: 85px;
}
@media only screen and (max-width: 1200px) {
  .discoveries__environment-images {
    margin-top: -100px;
    margin-bottom: 65px;
  }
}
@media only screen and (max-width: 1024px) {
  .discoveries__environment-images {
    margin-top: -75px;
    margin-bottom: 20px;
  }
}
.discoveries__environment-images img {
  width: 74%;
}
.discoveries__environment-desc {
  font-size: 1.8rem;
  line-height: 30px;
  margin: 20px 0;
}
@media only screen and (max-width: 1200px) {
  .discoveries__environment-desc p {
    font-size: 1.6rem;
    line-height: 28px;
    text-align: center;
  }
}
.discoveries__environment p {
  text-align: right;
}
@media only screen and (max-width: 1200px) {
  .discoveries__environment p {
    text-align: center;
  }
}
.discoveries__environment .main-title {
  font-size: 4.8rem;
}
@media only screen and (max-width: 1200px) {
  .discoveries__environment .main-title {
    font-size: 4rem;
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .discoveries__environment .main-title {
    font-size: 2.8rem;
  }
}
.discoveries__environment .main-title.sub {
  font-size: 3.2rem;
  line-height: 40px;
}
@media only screen and (max-width: 1024px) {
  .discoveries__environment .main-title.sub {
    font-size: 2.4rem;
    line-height: normal;
    text-align: center;
  }
}
.discoveries__manufacturing {
  position: relative;
  padding: 50px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.discoveries__manufacturing-card {
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .discoveries__manufacturing-card {
    margin-bottom: 50px;
  }
}
.discoveries__manufacturing-card img {
  height: 200px;
  margin-bottom: 20px;
}
.discoveries__manufacturing-card p {
  font-size: 2rem;
  line-height: 35px;
}
@media only screen and (max-width: 1024px) {
  .discoveries__manufacturing-card p {
    font-size: 1.8rem;
    line-height: normal;
  }
}
@media only screen and (max-width: 1024px) {
  .discoveries__manufacturing .main-title {
    font-size: 2.4rem;
    line-height: normal;
  }
}
.discoveries__inhouse {
  position: relative;
  background-color: white;
  border-radius: 35px;
  padding: 50px;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1024px) {
  .discoveries__inhouse {
    padding: 30px;
  }
}
.discoveries__inhouse .main-title {
  font-size: 4.8rem;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1200px) {
  .discoveries__inhouse .main-title {
    font-size: 4rem;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .discoveries__inhouse .main-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}
.discoveries__inhouse-desc p {
  font-size: 1.8rem;
  line-height: 30px;
  text-align: center;
  margin-top: 30px;
}
@media only screen and (max-width: 1200px) {
  .discoveries__inhouse-desc p {
    font-size: 1.6rem;
    line-height: 28px;
    margin-bottom: 20px;
  }
}

.achievements {
  position: relative;
}
.achievements__gallery {
  background-color: #A7E7A7;
}
.achievements__gallery-inner {
  position: relative;
  background: #FFF5EC;
  padding: 70px;
}
.achievements__gallery-item-wrapper {
  width: 20%;
}
@media only screen and (max-width: 768px) {
  .achievements__gallery-item-wrapper {
    width: 100%;
  }
}
.achievements__gallery-item-container {
  margin-bottom: 20px;
  text-align: center;
}
.achievements__gallery-item-images {
  position: relative;
  width: 100%;
  height: 200px;
  padding: 10px;
  border-radius: 20px;
  background-color: white;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .achievements__gallery-item-images {
    height: auto;
  }
}
.achievements__gallery-item-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.achievements__gallery-item-text {
  font-size: 1.6rem;
}

.our-services__content {
  position: relative;
  background-color: #A7E7A7;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1200px) {
  .our-services__content {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .our-services__content {
    padding-bottom: 50px;
  }
}
.our-services__content-title {
  position: relative;
  padding: 75px 0;
}
@media only screen and (max-width: 1024px) {
  .our-services__content-title {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .our-services__content-title .main-title.sub {
    font-size: 2.4rem;
  }
}

.our-partners__content {
  position: relative;
  background-color: #A7E7A7;
  padding: 75px 0;
}
@media only screen and (max-width: 1024px) {
  .our-partners__content {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .our-partners__content .main-title.sub {
    font-size: 2.8rem;
  }
}

/*# sourceMappingURL=custom-style.css.map */
