:root {
  --body: #0d2c10;
  --main: #257638;
  --main-light: #51ba5d;
  --soft-white: #f4f4f4;
  --text-description: #7e7e7e;
  --grey: #868686;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

.hero-banner {
  width: 100%;
  height: auto;
  object-fit: contain;
}

body {
  color: var(--body);
  font-family: "Inter", sans-serif;
}

:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* 1.2 - HTML5 Elements */
article,
aside,
details,
figcaption,
figure,
dialog,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* 1.3 - Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--body);
  margin: 0 0 13px 0;
  font-weight: 700;
  line-height: 1.2;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--body);
}
/* 1.4 - Links and Buttons */
a {
  color: var(--body);
  text-decoration: none;
  outline: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  color: var(--body);
  text-decoration: none;
  outline: none;
}

a:active {
  outline: none;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

textarea {
  resize: none;
}

.styled-none {
    padding: 0;
    list-style: none;
}

.text-center {
  text-align: center;
}
.text-white {
  color: var(--soft-white);
}
.text-main {
  color: var(--main);
}
.border-main {
  border-color: var(--main);
}

.text-main-light {
  color: var(--main-light);
}

.text-description {
  color: var(--text-description);
}

.bg-main {
  background-color: var(--main);
}

.bg-main-light {
  background-color: var(--main-light);
}

.bg-soft-white {
  background-color: var(--soft-white);
}

.border-main-light {
  border-color: var(--main-light);
}

.border-transparent {
  border-color: transparent;
}

.shadow-menu {
  box-shadow: 1px 2px 15px 2px #00000026;
}

.hidden {
  display: none;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.125rem;
  padding-left: 1.125rem;
}

.nav-desktop {
  display: none;
}

header {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  z-index: 50;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.logo {
  max-height: 60px;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
}

.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.rounded-b {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.nav-menu {
  display: flex;
  padding: 0 5rem;
  margin: 0;
  justify-content: space-between;
  align-items: center;
  border-radius: 9999px;
  font-weight: 500;
  list-style-type: none;
  background-color: #ffffff;
}

.nav-menu__item {
  position: relative;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.nav-menu__item:hover .nav-menu__item--nav {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.nav-menu__item--link {
  display: flex;
  position: relative;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom-width: 0.125rem;
}

.nav-menu__item--nav {
  position: absolute;
  visibility: hidden;
  padding: 0;
  margin: 0;
  border-radius: 0.25rem;
  border-top-width: 1px;
  list-style-type: none;
  background-color: #ffffff;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  opacity: 0;
  top: 115%;
}

.nav-menu__item--nav:before {
  position: absolute;
  left: 0.75rem;
  bottom: 100%;
  border: 0.625rem solid transparent;
  border-bottom-color: #fff;
  content: "";
}

.nav-menu__item--nav--item {
  border-top: 1px solid var(--main-light);
}

.nav-menu__item--nav--item:first-child {
  border-top: 0;
}

.nav-menu__item--nav--link {
  display: flex;
  padding: 0.625rem;
  white-space: nowrap;
}

.nav-menu__item--nav--link:hover {
  color: #ffffff;
  background-color: var(--main-light);
}

.policy {
  border-radius: 20px;
  display: grid;
  position: relative;
  z-index: 10;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
  background-color: #ffffff;
}

.policy__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.policy__item--image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  width: 6rem;
  height: 6rem;
}

.policy__item--image img {
  width: 2.5rem;
  height: 2.5rem;
}

.policy__item--content {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
}

.who-are-we__wrapper {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.625rem;
}

.who-are-we__container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.625rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.who-are-we__title--mobile {
  font-size: 2rem;
  line-height: 2.5rem;
  display: none;
}

.who-are-we__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.who-are-we__title--desktop {
  font-size: 2rem;
  line-height: 3rem;
  display: none;
  font-weight: bold;
  margin-top: 1rem;
}

.who-are-we__content {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.title {
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: bold;
}

.product-section__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.product-section__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.375rem;
  margin: 0 -3px;
}
.product-section__item--wrapper {
    flex-basis: calc(100% / 2);
    max-width: calc(100% / 2);
    padding: 0 3px;
}
.product-section__item {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  display: flex;
}

.product-section__item--img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-section__item--title {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  padding-bottom: 1.5rem;
  align-items: flex-end;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 2.47%,
    rgba(0, 0, 0, 0.2) 67.73%
  );
  color: #fff;
}
.product-section__item--title h4 {
  color: #fff;
  font-size: 14px;
}

.product-section__view-more {
  display: none;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  padding-left: 3rem;
  padding-right: 3rem;
  border-radius: 0.25rem;
  border-width: 1px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
  background-color: #ffffff;
  border-color: var(--body);
  margin: auto;
}

.partner-section {
  padding: 60px 0;
}
.partner-section__title {
  margin-bottom: 20px;
}
.partner-section__item--img {
  max-width: 80%;
  object-fit: contain;
  margin: auto;
}
.blogs-section__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.article-item {
  overflow: hidden;
  background-color: #ffffff;
  height: 100%;
}
.article__rounded {
  border-radius: 20px;
}
.article-item__content {
  display: flex;
  padding: 1rem;
  flex-direction: column;
  gap: 0.625rem;
}
.article-item__content-title {
  font-weight: 500;
  color: var(--main-light);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.article-item__content-description {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.article-item__content-extend {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
footer {
  padding-top: 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  row-gap: 2.5rem;
  column-gap: 1rem;
}
.footer__grid--cols-1,
.footer__grid--cols-4 {
  grid-column: span 12 / span 12;
}
.footer__grid--cols-2,
.footer__grid--cols-3 {
  grid-column: span 6 / span 6;
}

.footer__grid--cols-1 img {
  max-height: 100px;
  object-fit: contain;
  margin: auto;
}
.footer__grid--cols-1__content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 2.25rem;
}
.footer__grid--cols-1__content span {
  font-weight: 600;
}
.footer__grid--cols-1__content span span {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.footer__grid--cols-2 h4,
.footer__grid--cols-3 h4,
.footer__grid--cols-4 h4 {
  font-weight: bold;
  margin-bottom: 1.25rem;
}
.footer__grid--cols-2 ul,
.footer__grid--cols-3 ul {
  flex-direction: column;
  gap: 0.625rem;
  font-weight: 500;
}
.footer__grid--cols-4 ul {
  flex-direction: column;
  gap: 1rem;
  display: none;
}
.footer__grid--cols-4 ul span {
  font-weight: 500;
}
.socials {
  display: flex;
  margin-top: 1rem;
  gap: 1rem;
  justify-content: center;
}
.socials svg {
  width: 2rem;
  height: 2rem;
}
.footer__partners {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  row-gap: 2.5rem;
  column-gap: 1rem;
  margin-top: 3.5rem;
  margin-bottom: 1.75rem;
}
.footer__partners--cols-1 {
  grid-column: span 12 / span 12;
}

.footer__partners--cols-2 {
  grid-column: span 12 / span 12;
}
.collection-alert-no {
  grid-column: span 12 / span 12;
}
.footer_partner--title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--main);
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.footer_partner--content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-weight: 600;
}
.footer_partner--content span span {
  font-weight: normal;
}
.copyright {
  color: var(--text-description);
  text-align: center;
  font-size: 0.825rem;
  margin-bottom: 1.5rem;
}
.collection-page {
  padding: 2.5rem 0;
}
.product-list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}
.product__item {
  box-shadow: 1px 2px 15px 2px #00000026;
  background-color: var(--soft-white);
  border-radius: 10px;
  overflow: hidden;
}
.product__item h3 {
  padding: 0.375rem;
  font-weight: 600;
}

.pavigation {
  display: inline-flex;
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

.pavigation li:not(:first-child) {
  margin-left: -1px;
}
.pavigation__previous {
  display: flex;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  justify-content: center;
  align-items: center;
  border-width: 1px;
  height: 2.5rem;
  border-end-start-radius: 0.5rem;
  border-start-start-radius: 0.5rem;
}

.pavigation__item {
  display: flex;
  padding-left: 1rem;
  padding-right: 1rem;
  justify-content: center;
  align-items: center;
  border-width: 1px;
  height: 2.5rem;
}

.pavigation__next {
  display: flex;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  justify-content: center;
  align-items: center;
  border-width: 1px;
  height: 2.5rem;
  border-end-end-radius: 0.5rem;
  border-start-end-radius: 0.5rem;
}

.collection-nav {
  font-weight: 600;
  margin-top: 2.5rem;
}
.collection-tabs {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  overflow: auto;
}
.blog-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  overflow: auto;
}
.collection-item {
  display: flex;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 0.1875rem solid transparent;
  white-space: nowrap;
}
.collection-active {
  border-color: var(--main-light);
  color: var(--main-light);
}
.product-thumbs {
  margin-top: 0.625rem;
}
.product-thumbs.owl-carousel .owl-nav .owl-prev,
.product-thumbs.owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  background: rgb(80 185 92 / 80%);
  color: #fff;
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-template,
.blog-template,
.article-template {
  background-color: var(--soft-white);
}
.owl-carousel.product-thumbs .owl-prev {
  left: 0.5rem;
}
.owl-carousel.product-thumbs .owl-next {
  right: 0.5rem;
}
.justify-between {
  justify-content: space-between;
}

.slide-toggle ul {
  display: none;
}
.slide-toggle h4 {
    margin: 0;
    display: flex;
    align-items: center;
}
.slide-toggle .open svg {
    transform: rotate(180deg);
}
.flex {
  display: flex !important;
}
.product-detail__info-title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.product-detail__info-description {
  margin-bottom: 1.25rem;
}
.product-detail {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.625rem;
}
.product-detail__image,
.product-detail__info {
  grid-column: span 12 / span 12;
}
.product-detail__ctas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}
.product-detail__ctas-button {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 0.25rem;
  text-align: center;
  color: #ffffff;
}
.product-related__list.owl-carousel .owl-nav .owl-prev,
.product-related__list.owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  background: var(--main-light);
  color: #fff;
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-related__list .owl-prev {
  left: 0.5rem;
}
.product-related__list .owl-next {
  right: 0.5rem;
}
.product-related {
  margin-top: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--main-light);
  margin-bottom: 1.25rem;
}
.product-related--title {
  font-size: 1.5rem; /* 24px */
  line-height: 2rem; /* 32px */
  font-weight: bold;
}
.product-related--view-more {
  font-weight: 700;
}
.product-related--title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.hero-wrapper {
  position: relative;
}
.hero-wrapper__title {
  position: absolute;
  inset: 0;
  bottom: 25%;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.125rem;
}
.section-about-us {
  margin-top: 1.25rem;
}
.section-about-us-container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
  position: relative;
  margin-top: 0.625rem;
}
.section-about-us-item {
  padding-top: 240px;
  position: relative;
}
.section-about-us-item__image {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-about-us-item__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #51ba5d80;
  color: #fff;
  padding: 1.25rem 1.625rem;
    backdrop-filter: blur(10px);
}
.section-about-us-item__content-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid;
}
.section-about-us-item__content-content {
  font-weight: 500;
}
.leadership-team {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.leadership-team-container {
  margin-top: 0.625rem;
}
.leadership-team-container__rows-1 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
}
.leadership-team-container__rows-2 {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.leadership-team-item__content-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.leadership-team-item__content-content {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: #74757b;
}
.about-us-story {
  padding: 1.25rem 0;
}
.about-us-story .hero-banner {
  border-radius: 1.25rem;
  margin: 0.625rem 0;
}
.about-us-story-content {
  font-size: 0.875rem;
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.25rem;
}
.article-detail {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
.article-content,
.article-sidebar,
.article-related {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.article-related__wrapper {
  margin-top: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--main-light);
  margin-bottom: 1.25rem;
}
.ecosystem-page {
  background: var(--soft-white);
}

.section-ecosystem {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.section-ecosystem-container {
  margin-top: 0.625rem;
  position: relative;
}
.section-ecosystem-item.item-1 {
  background: #51ba5d;
}
.section-ecosystem-item.item-2 {
  background: #257638;
}
.section-ecosystem-item.item-3 {
  background: #ed145a;
}
.section-ecosystem-item.item-4 {
  background: #508867;
}
.section-ecosystem-item {
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
}
.section-ecosystem-item__content-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.625rem
}
.section-ecosystem-item__content-content {
  font-weight: 500;
  color: #fff;
}
.section-ecosystem-item__content {
  padding: 1rem;
}
.ecosystem-logo {
  display: none;
}
.ecosystem {
  position: relative;
}
.faq-page {
  background-color: var(--soft-white);
  padding-bottom: 0.625rem;
}
.accordion li {
  background: #fff;
  margin-top: 1rem;
  border: 1px solid var(--main-light);
  border-radius: 0.25rem;
}

.accordion-item {
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0.625rem;
  cursor: pointer;
  align-items: center;
  color: var(--main);
}
.accordion-item.active svg {
  transform: rotate(90deg);
}
.accordion-item svg {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.inner {
  font-size: 0.875rem;
  padding: 0.625rem;
  border-top: 1px solid var(--main-light);
  display: none;
}
.article-category {
  display: inline-flex;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 0.25rem;
  border-width: 1px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-color: var(--grey);
  color: var(--grey);
}
.blog-list-content {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
time {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #bebebe;
}
.blog-view-more {
  display: flex;
  margin-top: 1.25rem;
  justify-content: center;
}
.blog-view-more-btn {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 3rem;
  padding-right: 3rem;
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: #000000;
  background-color: #ffffff;
}
.article-excerpt {
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 0 0 20px 20px;
  margin: 0 -1rem;
}
.article-excerpt img {
  width: 100%;
}
.article-excerpt__content {
  display: flex;
  padding: 1rem;
  flex-direction: column;
  gap: 0.625rem;
}
.article-excerpt__content-title {
  font-weight: 500;
  color: var(--main-light);
}
.article-excerpt__content-description {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.article-excerpt__content-extend {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.article-content > div {
  margin-top: 1.25rem;
}
.article-content {
  order: 1;
}
.article-related {
  order: 2;
}
.article-sidebar {
  order: 3;
}
.bread-crumb-article {
  display: none;
  align-items: center;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.article-sidebar__wrapper-title {
  display: flex;
  margin-bottom: 2rem;
  justify-content: space-between;
  align-items: center;
}

.article-sidebar__title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}
.article-sidebar__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.blog-page .collection-nav {
  display: none;
}
.competitive--s1 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.competitive--s1__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--main);
  max-width: 13.75rem;
  margin-bottom: 0.625rem;
}
.competitive--s1__content {
  font-size: 0.875rem;
  font-weight: 500;
}
.competitive--s2 {
  display: block;
  text-align: center;
  background: var(--main);
  padding: 1.125rem 0;
  color: var(--soft-white);
}
.competitive--s2__title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  max-width: 15.75rem;
  margin-bottom: 0.625rem;
}
.competitive--s2__subtext {
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.competitive--s3 {
  display: none;
}
.competitive--s3__title {
  color: var(--main);
}
.competitive_s4__wrapper {
  background: #fff;
  margin: 0 -1rem;
}
.competitive_s4__wrapper,
.competitive_s5__wrapper,
.competitive_s6__wrapper,
.competitive_s7__wrapper,
.competitive_s8__wrapper {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.competitive__title {
  padding: 0 1rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 1.125rem;
}
.competitive__title:before {
  position: absolute;
  content: "";
  height: 0.3125rem;
  width: 5.75rem;
  background: var(--main-light);
  bottom: -0.3125rem;
  left: 1rem;
}
.article-related__title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.hSticky-nav {
  visibility: hidden;
  opacity: 0;
}
.hSticky-up {
  visibility: visible;
  opacity: 1;
}
.competitive-page {
  background: var(--soft-white);
}

.competitive-techincal .text-description {
  font-style: italic;
}
.competitive--s4__content,
.competitive--s5__content,
.competitive--s6__content,
.competitive--s7__content,
.competitive--s8__content {
  padding-left: 1rem;
  padding-right: 1rem;
}
.competitive_s5__wrapper,
.competitive_s7__wrapper {
  background: #51ba5d40;
  margin: 0 -1rem;
}
.competitive_s6__wrapper,
.competitive_s8__wrapper {
  background: #fff;
  margin: 0 -1rem;
}
.competitive--s4__content,
.competitive--s5__content,
.competitive--s6__content,
.competitive--s7__content,
.competitive--s8__content {
  margin-top: 0.625rem;
}

.standard-system__img {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.standard-system__img-1 { grid-area: 1 / 1 / 3 / 3; }
.standard-system__img-2 { grid-area: 1 / 3 / 2 / 4; }
.standard-system__img-3 { grid-area: 1 / 4 / 2 / 5; }
.standard-system__img-4 { grid-area: 1 / 5 / 2 / 6; }
.standard-system__img-5 { grid-area: 2 / 3 / 3 / 4; }
.standard-system__img-6 { grid-area: 2 / 4 / 3 / 5; }
.standard-system__img-7 { grid-area: 2 / 5 / 3 / 6; }
.standard-system, .experience-section {
  display: none;
}
footer ul {
  padding: 0;
  list-style: none;
}
.owl-carousel .owl-nav button {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.owl-carousel .owl-prev {
  left: 0;
}
.owl-carousel .owl-next {
  right: 0;
}
.owl-carousel svg {
width: 2rem;
height: 2rem;
}
.product-related__list .owl-stage-outer {
    padding: 15px 0;
}
.standard-system__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  border-radius: 0.625rem;
}
.product__item img {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}
.owl-carousel .owl-stage {
  display: flex;
}
.collection-desc {
    position: relative;
    padding-bottom: 30px;
    margin-top: 12px;
}
.collection-desc.is-expandable .collection-desc__info {
    height: 100px;
    overflow: hidden;
}
.collection-desc__view {
    font-weight: 500;
    margin: 12px 0 0;
    display: none;
    padding: 30px 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.5), #fff);
}
.collection-desc.is-expandable .collection-desc__view {
    display: block;
}
.section-about-us-item__content-content ul {
    padding-left: 20px;
}
.article-shadow {
    border: 0.5px solid #51BA5D
}
.blogs-section__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
}
.language {
  background: #EDEDED;
  border: 1px solid #E2E2E2;
  padding: 6px 8px 6px 30px;
  border-radius: 31px;
  background-image: url(//theme.hstatic.net/200000886243/1001255293/14/globe.svg?v=306);
  background-position: 8px center;
  background-repeat: no-repeat;
}
.footer__grid .slide-toggle li {
    line-height: 24px;
}
.article-image {
    display: flex;
}
.article-image img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
  width: 100%;
}