.hidden_c {
  display: none;
}
.heading_underline h2 {
  text-decoration: underline;
  text-underline-offset: 10px;
}
h2 {
  color: #88b84d;
}

a:not(.button):not(.nav-top-link):not(.ux-logo-link):not([class*="bg-"]) {
  color: #88b84d;
}

a:not(.button):not(.nav-top-link):not(.ux-logo-link):not([class*="bg-"]):hover {
  color: #1d90c8;
}

.mobile-nav.nav-right .header-block {
  width: fit-content !important;
}
.off-canvas-left .mfp-content,
.off-canvas-right .mfp-content {
  background-color: white !important;
}
.off-canvas-left .mfp-content .header-block-block-3 {
  margin: 0 auto;
}
.off-canvas-left .mfp-content .header-block-block-3 .ux-logo-link {
  padding-top: 0;
}
/* Scrolling text marquee UX */
.t5s-scrolling-text {
  --t5s-marquee-speed: 28s;
  --t5s-marquee-bg: #88b84d;
  --t5s-marquee-color: #fff;
  --t5s-marquee-accent: #1d90c8;
  --t5s-marquee-font: 1.125rem;
  position: relative;
  left: 50%;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  background: var(--t5s-marquee-bg);
  color: var(--t5s-marquee-color);
  white-space: nowrap;
}

.header-block:has(.t5s-scrolling-text),
.header-block-block-1:has(.t5s-scrolling-text) {
  width: 100%;
}

.t5s-scrolling-track {
  display: flex;
  width: max-content;
  animation: t5s-marquee-left var(--t5s-marquee-speed) linear infinite;
  will-change: transform;
}

.t5s-scrolling-text.is-reverse .t5s-scrolling-track {
  animation-name: t5s-marquee-right;
}

.t5s-scrolling-text:hover .t5s-scrolling-track {
  animation-play-state: paused;
}

.t5s-scrolling-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: max-content;
  padding: 6px 0;
}

.t5s-scrolling-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 22px;
  color: var(--t5s-marquee-color);
  font-size: var(--t5s-marquee-font);
  font-weight: 400;
  line-height: 1.2;
}

.t5s-scrolling-item::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--t5s-marquee-accent);
  box-shadow: 0 0 0 4px
    color-mix(in srgb, var(--t5s-marquee-accent) 22%, transparent);
}

@keyframes t5s-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-6.25%);
  }
}

@keyframes t5s-marquee-right {
  from {
    transform: translateX(-6.25%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 640px) {
  .t5s-scrolling-group {
    padding: 6px 0;
  }

  .t5s-scrolling-item {
    padding: 0 16px;
    font-size: calc(var(--t5s-marquee-font) * 0.82);
  }
}

@media (prefers-reduced-motion: reduce) {
  .t5s-scrolling-track {
    animation: none;
    transform: none;
  }

  .t5s-scrolling-group:not(:first-child) {
    display: none;
  }

  .t5s-scrolling-text {
    white-space: normal;
  }
}
.nav.header-nav.header-bottom-nav {
  gap: 24px;
}
.header-nav.header-nav-main.nav.nav-right {
  gap: 14px;
}
.header-nav.header-nav-main.nav.nav-right .header-block {
  width: fit-content !important;
}
.header-nav.header-nav-main.nav.nav-right li a {
  color: #231f20 !important;
}
.header-nav.header-nav-main.nav.nav-right li a:hover {
  color: #88b84d !important;
}
.header-button-1 .button span,
.header-button-1 .button i {
  color: white !important;
}
.header-button-1 .button {
  border: 1px solid #88b84d !important;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.header-button-1 .button:hover {
  color: #88b84d !important;
  border-color: #88b84d !important;
}
.header-button-1 .button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
  transform: translateY(-100%);
  transition: transform 0.25s ease;
  z-index: 0;
  pointer-events: none;
}
.header-button-1 .button:hover::before {
  transform: translateY(0);
}
.header-button-1 .button > * {
  position: relative;
  z-index: 1;
}
.header-button-1 .button:hover span,
.header-button-1 .button:hover i {
  color: #88b84d !important;
}

/* Home awards marquee UX */
.ux-home-awards {
  --ux-home-awards-speed: 34s;
  --ux-home-awards-per-view: 8;
  width: 100%;
}

.ux-home-awards__track {
  display: flex;
  width: max-content;
  animation: ux-home-awards-marquee var(--ux-home-awards-speed) linear infinite;
  will-change: transform;
}

.ux-home-awards:hover .ux-home-awards__track {
  animation-play-state: paused;
}

.ux-home-awards__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ux-home-awards__item {
  flex: 0 0 calc(100vw / var(--ux-home-awards-per-view));
  padding: 0 1.5rem;
}

.ux-home-awards__image img {
  object-fit: contain;
}

@keyframes ux-home-awards-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .ux-home-awards {
    --ux-home-awards-per-view: 5;
  }

  .ux-home-awards__item {
    padding: 0 1rem;
  }
}

@media (max-width: 640px) {
  .ux-home-awards {
    --ux-home-awards-per-view: 3;
  }

  .ux-home-awards__item {
    padding: 0 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ux-home-awards__track {
    animation: none;
    transform: none;
  }

  .ux-home-awards__group:nth-child(2) {
    display: none;
  }
}

.ux-about-team article,
.ux-about-team .c-img,
.ux-about-team .grid > * {
  visibility: visible !important;
}

/* Home banner thumb slider UX */
.ux-home-banner {
  min-height: 48.5rem;
}

.ux-home-banner-bg-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ux-home-banner-bg-swiper .swiper-wrapper,
.ux-home-banner-bg-swiper .swiper-slide,
.ux-home-banner__bg {
  width: 100%;
  height: 100%;
}

.ux-home-banner__bg {
  display: block;
  padding-top: 0;
}

.ux-home-banner__bg img {
  object-fit: cover;
}

.ux-home-banner__inner {
  min-height: 48.5rem;
  padding-top: 5rem;
  padding-bottom: 4.25rem;
}

.ux-home-banner-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 16.5rem;
  padding: 0.625rem 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.ux-home-banner-badge--top {
  top: 0;
  right: 5rem;
}

.ux-home-banner-badge--middle {
  top: 9rem;
  right: 18.75rem;
}

.ux-home-banner-badge--bottom {
  top: 19.25rem;
  right: 7rem;
}

.ux-home-banner-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  border-radius: 999rem;
  background: #88b84d;
  color: #fff;
}

.ux-home-banner-badge__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.ux-home-banner-badge strong,
.ux-home-banner-badge small {
  display: block;
}

.ux-home-banner-badge strong {
  font-size: 1rem;
  line-height: 1.25;
}

.ux-home-banner-badge small {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.35;
  font-weight: 600;
}

.ux-home-banner-thumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(39rem, 100%);
}

.ux-home-banner-thumbs__prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  line-height: 1;
  cursor: pointer;
}

.ux-home-banner-thumb-swiper {
  width: 100%;
}

.ux-home-banner-thumb-swiper .swiper-slide {
  cursor: pointer;
  opacity: 0.78;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.ux-home-banner-thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
  transform: translateY(-0.125rem);
}

.ux-home-banner-thumb-swiper .c-img {
  border: 0.0625rem solid rgba(255, 255, 255, 0.86);
}

@media (max-width: 1024px) {
  .ux-home-banner,
  .ux-home-banner__inner {
    min-height: 42rem;
  }

  .ux-home-banner__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 640px) {
  .ux-home-banner,
  .ux-home-banner__inner {
    min-height: 38rem;
  }

  .ux-home-banner__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.ux-home-services__icon .c-img img {
  object-fit: contain;
  box-sizing: border-box;
  padding: 14%;
}

.module-tabs .tab-content {
  display: none;
}

.module-tabs .tab-content.active {
  display: block;
}

.module-tabs .tab-link.active {
  border-color: #1d90c8;
  background: #1d90c8;
  color: #000;
}

.ux-home-featured-customers__logo img {
  object-fit: contain;
}

/* Home customer feedback vertical columns */
.ux-home-customer-feedback__viewport {
  height: 43rem;
  overflow: hidden;
}

.ux-home-customer-feedback__column {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.ux-home-customer-feedback__column .swiper-wrapper {
  display: flex;
  flex-direction: column;
  transition-timing-function: linear !important;
  animation: ux-home-customer-feedback-up
    var(--ux-home-customer-feedback-speed, 18000ms) linear infinite;
  will-change: transform;
}

.ux-home-customer-feedback__column[data-direction="down"] .swiper-wrapper {
  animation-name: ux-home-customer-feedback-down;
}

.ux-home-customer-feedback__column:hover .swiper-wrapper {
  animation-play-state: paused;
}

.ux-home-customer-feedback__column .swiper-slide {
  height: auto;
  width: 100% !important;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}

.ux-home-customer-feedback__card {
  overflow: hidden;
  border: 0.0625rem solid rgba(136, 184, 77, 0.2);
  background: #fff;
  width: 100%;
}

.ux-home-customer-feedback__card .c-img {
  width: 100%;
  overflow: hidden;
}

.ux-home-customer-feedback__card img {
  object-fit: contain;
  background: #fff;
}

@keyframes ux-home-customer-feedback-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes ux-home-customer-feedback-down {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .ux-home-customer-feedback__viewport {
    height: 37rem;
  }
}

@media (max-width: 640px) {
  .ux-home-customer-feedback__viewport {
    height: 31rem;
  }

  .ux-home-customer-feedback__column .swiper-wrapper {
    gap: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ux-home-customer-feedback__column .swiper-wrapper {
    animation: none;
    transform: none;
  }
}

.ux-home-news__title,
.ux-home-news__excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.ux-home-news__title {
  -webkit-line-clamp: 2;
}

.ux-home-news__excerpt {
  -webkit-line-clamp: 2;
}

.ux-home-form {
  background-color: var(--ux-home-form-bg, #f4f4f4);
  border-bottom: 0.125rem solid #88b84d;
}

.ux-home-form__panel {
  background-color: var(--ux-home-form-panel-bg, #1d90c8);
}

.ux-home-form__leaf {
  position: absolute;
  bottom: -5rem;
  width: 13rem;
  height: 20rem;
  opacity: 0.75;
}

.ux-home-form__leaf--left {
  left: 0;
  background-color: #e1ecd4;
  border-radius: 100% 0 100% 0;
  transform: rotate(-38deg);
  transform-origin: bottom right;
}

.ux-home-form__leaf--right {
  left: 13.5rem;
  background-color: #c6dbc9;
  border-radius: 0 100% 0 100%;
  transform: rotate(38deg);
  transform-origin: bottom left;
}

.ux-home-form__form form,
.ux-home-form__form p,
.ux-home-form__form label,
.ux-home-form__form span {
  margin: 0;
}

.ux-home-form__form form > p {
  margin-bottom: 0.625rem;
}

.ux-home-form__form form > p:last-of-type {
  margin-bottom: 0;
  text-align: center;
}

.ux-home-form__form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.ux-home-form__form select,
.ux-home-form__form textarea {
  display: block;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background-color: #fff;
  color: #111;
  font-size: 0.8125rem;
  line-height: 1.5;
  box-shadow: none;
}

.ux-home-form__form
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.ux-home-form__form select {
  min-height: 2.5rem;
  padding: 0.625rem 0.75rem;
}

.ux-home-form__form textarea {
  min-height: 10rem;
  padding: 0.75rem;
  resize: vertical;
}

.ux-home-form__form input::placeholder,
.ux-home-form__form textarea::placeholder {
  color: #222;
  opacity: 1;
}

.ux-home-form__form input:focus,
.ux-home-form__form select:focus,
.ux-home-form__form textarea:focus {
  outline: 0.125rem solid #88b84d;
  outline-offset: 0;
}

.ux-home-form__form input[type="submit"],
.ux-home-form__form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  margin: 0.75rem auto 0;
  padding: 0.625rem 1rem;
  border: 0;
  border-radius: 0;
  background-color: #fff;
  color: #111;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  text-transform: none;
  box-shadow: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.ux-home-form__form input[type="submit"]:hover,
.ux-home-form__form button[type="submit"]:hover {
  background-color: #88b84d;
  color: #fff;
}

.ux-home-form__form .wpcf7-spinner {
  display: block;
  margin: 0.5rem auto 0;
}

.ux-home-form__form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.25rem;
  color: #8b0000;
  font-size: 0.75rem;
}

.ux-home-form__form .wpcf7-response-output {
  margin: 0.75rem 0 0;
  padding: 0.5rem 0.75rem;
  border-width: 0.0625rem;
  font-size: 0.8125rem;
}

@media (max-width: 1023px) {
  .ux-home-form__content {
    min-height: 22rem;
  }

  .ux-home-form__leaf--left {
    left: calc(50% - 13rem);
  }

  .ux-home-form__leaf--right {
    left: 50%;
  }
}

@media (max-width: 575px) {
  .ux-home-form__leaf {
    width: 9rem;
    height: 14rem;
    bottom: -3.5rem;
  }

  .ux-home-form__leaf--left {
    left: calc(50% - 9rem);
  }

  .ux-home-form__leaf--right {
    left: 50%;
  }
}

/* Service detail page */
.service-detail-hero {
  background-position: center;
  background-size: cover;
}

.service-detail-hero__breadcrumb,
.service-detail-hero__breadcrumb a,
.service-detail-hero__breadcrumb span {
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.service-detail-hero__breadcrumb .rank-math-breadcrumb p,
.product-detail__breadcrumb .rank-math-breadcrumb p,
.post-detail-hero__breadcrumb .rank-math-breadcrumb p,
.t5s-project-archive__breadcrumb .rank-math-breadcrumb p,
.t5s-category-hero__breadcrumb .rank-math-breadcrumb p,
.t5s-product-cat__breadcrumb .rank-math-breadcrumb p,
.ux-banner-all__breadcrumb .rank-math-breadcrumb p,
.ux-page-contact-wrapper .rank-math-breadcrumb p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.t5s-product-cat__breadcrumb,
.t5s-product-cat__breadcrumb a,
.t5s-product-cat__breadcrumb span,
.ux-banner-all__breadcrumb,
.ux-banner-all__breadcrumb a,
.ux-banner-all__breadcrumb span {
  color: #fff;
}

.t5s-product-cat__breadcrumb a:hover,
.ux-banner-all__breadcrumb a:hover {
  color: #1d90c8;
}

.service-detail-intro__icon {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border: 0.1875rem solid #fff;
  border-radius: 999rem;
  background: #88b84d;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.16);
}

.service-detail-icon,
.service-detail-benefit-icon {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  color: #88b84d;
  font-size: 1.5rem;
}

.service-detail-icon .c-img,
.service-detail-benefit-icon .c-img {
  width: 100%;
}

.service-detail-icon img,
.service-detail-benefit-icon img {
  object-fit: contain;
}

.service-detail-faq summary {
  list-style: none;
}

.service-detail-faq summary::-webkit-details-marker {
  display: none;
}

.service-detail-faq[open] summary i {
  transform: rotate(45deg);
}

.service-detail-faq summary i {
  transition: transform 0.2s ease;
}

.service-detail-quote__leaf {
  position: absolute;
  right: 4rem;
  bottom: -3.5rem;
  width: 7.5rem;
  height: 10rem;
  border-radius: 100% 0 100% 0;
  background: #88b84d;
  transform: rotate(-38deg);
}

.service-detail-quote__leaf::after {
  content: "";
  position: absolute;
  left: -4.5rem;
  bottom: 0;
  width: 7.5rem;
  height: 10rem;
  border-radius: 0 100% 0 100%;
  background: #b8d99c;
  transform: rotate(76deg);
  transform-origin: bottom right;
}

@media (max-width: 767px) {
  .service-detail-quote__leaf {
    right: 1.5rem;
    width: 5rem;
    height: 7rem;
  }
}

/* About page about-us UX */
.ux-about-about-us__leaf {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.ux-about-about-us__leaf--light {
  right: 10.5rem;
  bottom: 5rem;
  width: 14rem;
  height: 24rem;
  border-radius: 100% 0 100% 0;
  background: #acd56c;
  transform: rotate(-38deg);
  transform-origin: bottom right;
}

.ux-about-about-us__leaf--dark {
  right: -2rem;
  bottom: 5rem;
  width: 15rem;
  height: 24rem;
  border-radius: 0 100% 0 100%;
  background: #2f7564;
  transform: rotate(38deg);
  transform-origin: bottom left;
}

.ux-about-about-us__image {
  position: relative;
  z-index: 1;
}

.ux-about-about-us__image img {
  object-fit: contain;
  object-position: bottom center;
}

@media (max-width: 1023px) {
  .ux-about-about-us__leaf--light {
    right: 6rem;
    bottom: 2rem;
    width: 10rem;
    height: 17rem;
  }

  .ux-about-about-us__leaf--dark {
    right: -1.5rem;
    bottom: 2rem;
    width: 10rem;
    height: 17rem;
  }
}

@media (max-width: 575px) {
  .ux-about-about-us__leaf {
    opacity: 0.45;
  }
}

.ux-home-branch-locator__control {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 2.5rem;
  margin: 0;
  border: 0.0625rem solid #cfd3d6;
  background: #fff;
}

.ux-home-branch-locator__control > i {
  position: absolute;
  left: 0.75rem;
  z-index: 1;
  color: #88b84d;
  pointer-events: none;
}

.ux-home-branch-locator__control input,
.ux-home-branch-locator__control select {
  width: 100%;
  min-height: 2.5rem;
  margin: 0;
  padding: 0.5rem 0.75rem 0.5rem 2rem;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: #88b84d;
  font-size: 0.8125rem;
  box-shadow: none;
}

.ux-home-branch-locator__control input:focus,
.ux-home-branch-locator__control select:focus {
  outline: 0.125rem solid #88b84d;
  outline-offset: -0.125rem;
}

.ux-home-branch-locator__list {
  display: grid;
  gap: 1rem;
  max-height: 25rem;
  padding-right: 0.75rem;
  overflow-y: auto;
  scrollbar-color: #88b84d #d8d8d8;
  scrollbar-width: thin;
}

.ux-home-branch-locator__item {
  border: 0.0625rem solid transparent;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ux-home-branch-locator__item.is-active {
  border-color: #88b84d;
  box-shadow: 0 0 0 0.125rem rgba(136, 184, 77, 0.12);
}

.ux-home-branch-locator__map-column {
  position: relative;
  width: min(100%, 29rem);
  margin: 0 auto;
}

.ux-home-branch-locator__map {
  position: relative;
  width: 100%;
}

.ux-home-branch-locator__map .c-img img {
  object-fit: contain;
}

.ux-home-branch-locator__markers {
  position: absolute;
  inset: 0;
}

.ux-home-branch-locator__marker {
  position: absolute;
  z-index: 3;
  display: block;
  width: 5%;
  height: auto;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 0;
  background: transparent;
  transform-origin: 50% 100%;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.ux-home-branch-locator__marker img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ux-home-branch-locator__marker.is-service {
  width: 2%;
  aspect-ratio: 1;
}

.ux-home-branch-locator__marker:hover,
.ux-home-branch-locator__marker.is-active {
  z-index: 5;
  transform: scale(1.35);
  filter: drop-shadow(0 0.125rem 0.2rem rgba(0, 0, 0, 0.3));
}

.ux-home-branch-locator__legend {
  position: absolute;
  left: 0;
  top: 44%;
  z-index: 4;
  display: grid;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(244, 244, 244, 0.95);
  color: #111;
  font-size: 0.75rem;
}

.ux-home-branch-locator__legend span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ux-home-branch-locator__legend-marker {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border: 0.125rem solid #fff;
  border-radius: 50%;
  background: #88b84d;
  box-shadow: 0 0 0 0.0625rem #88b84d;
}

.ux-home-branch-locator__legend-marker.is-service {
  width: 0.5rem;
  height: 0.5rem;
  background: #88b84d;
}

.ux-home-branch-locator.is-loading [data-branch-list] {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 767px) {
  .ux-home-branch-locator__legend {
    top: auto;
    bottom: 8%;
  }
}

.ux-home-about__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-template-rows: repeat(4, 7.875rem);
  gap: 0.75rem;
  margin: 0 auto;
}

.ux-home-about__intro {
  grid-column: 3 / 7;
  grid-row: 1 / 3;
  align-self: start;
  padding: 0 1.5rem;
}

.ux-home-about__image,
.ux-home-about__image .c-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ux-home-about__image img {
  object-fit: cover;
}

.ux-home-about__image--1 {
  grid-column: 1;
  grid-row: 1;
  transform: translateY(3.4375rem);
}

.ux-home-about__image--2 {
  grid-column: 1;
  grid-row: 2;
  transform: translateY(3.4375rem);
}

.ux-home-about__image--3 {
  grid-column: 2;
  grid-row: 1;
}

.ux-home-about__image--4 {
  grid-column: 2;
  grid-row: 3;
}

.ux-home-about__image--5 {
  grid-column: 4 / 6;
  grid-row: 4;
}

.ux-home-about__image--6 {
  grid-column: 7;
  grid-row: 2;
}

.ux-home-about__image--7 {
  grid-column: 8;
  grid-row: 1;
  transform: translateY(3.4375rem);
}

.ux-home-about__image--8 {
  grid-column: 8;
  grid-row: 2;
  transform: translateY(3.4375rem);
}

.ux-home-about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: #88b84d;
}

.ux-home-about__stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.ux-home-about__stat span {
  display: block;
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25;
}

.ux-home-about__stat--years {
  grid-column: 2;
  grid-row: 2;
  background: #1d90c8;
}

.ux-home-about__stat--projects {
  grid-column: 3 / 5;
  grid-row: 3;
  background: #88b84d;
  color: #fff;
}

.ux-home-about__stat--customers {
  grid-column: 5 / 7;
  grid-row: 3;
  background: #88b84d;
  color: #fff;
}

.ux-home-about__stat--employees {
  grid-column: 7;
  grid-row: 1;
  background: #1d90c8;
}

.ux-home-about__stat--branches {
  grid-column: 7;
  grid-row: 3;
  background: #1d90c8;
}

.ux-service-industries__icon .c-img img {
  object-fit: contain;
}

.ux-service-industries__item h3 {
  text-wrap: balance;
}

.ux-service-industries__decor {
  position: absolute;
  right: -6.5rem;
  z-index: 0;
  width: 10rem;
  height: 20rem;
  border-radius: 10rem 0 0 10rem;
  background: #1d90c8;
}

.ux-service-industries__decor--top {
  top: 4.5rem;
}

.ux-service-industries__decor--bottom {
  bottom: -6rem;
}

@media (max-width: 1023px) {
  .ux-home-about__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .ux-home-about__intro {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 0 0 1rem;
  }

  .ux-home-about__image,
  .ux-home-about__stat {
    grid-column: auto;
    grid-row: auto;
    min-height: 9rem;
    transform: none;
  }

  .ux-home-about__image .c-img {
    padding-top: 100%;
    height: auto;
  }

  .ux-home-about__image--5,
  .ux-home-about__image--8,
  .ux-home-about__stat--projects,
  .ux-home-about__stat--customers {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .ux-home-about__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .ux-home-about__stat strong {
    font-size: 1.625rem;
  }

  .ux-home-about__image--5,
  .ux-home-about__image--8,
  .ux-home-about__stat--years {
    grid-column: span 2;
  }

  .ux-home-about__image--5 .c-img,
  .ux-home-about__image--8 .c-img {
    padding-top: 56%;
  }
}

.ux-service-list__image {
  overflow: hidden;
  background: #e8e8e8;
}

.ux-service-list__image img {
  transition: transform 0.35s ease;
}

.ux-service-list__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 144, 200, 0.76);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ux-service-list__title a {
  color: #88b84d;
  transition: color 0.25s ease;
}

.ux-service-list__card:hover .ux-service-list__image img {
  transform: scale(1.04);
}

.ux-service-list__card:hover .ux-service-list__overlay {
  opacity: 1;
}

.ux-service-list__card:hover .ux-service-list__title a {
  color: #1d90c8;
}

.ux-project-list__search,
.ux-product-list__search {
  position: relative;
}

.ux-project-list__search input,
.ux-product-list__search input {
  width: 100%;
  min-height: 2.75rem;
  margin: 0;
  padding: 0.625rem 3.25rem 0.625rem 1.25rem;
  border: 0.0625rem solid #cfd5dc;
  border-radius: 999rem;
  color: #111;
  font-size: 0.875rem;
  box-shadow: none;
}

.ux-project-list__search input:focus,
.ux-product-list__search input:focus {
  border-color: #88b84d;
  outline: 0;
  box-shadow: 0 0 0 0.125rem rgba(136, 184, 77, 0.12);
}
.absolute-footer {
  display: none;
}
.ux-project-list__search button,
.ux-product-list__search button {
  position: absolute;
  right: 8px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #88b84d;
  color: #fff;
  transform: translateY(-50%);
  cursor: pointer;
}

.ux-product-list__image img {
  object-fit: contain;
  padding: 1rem;
}

.ux-project-list__card,
.ux-product-list__card {
  height: 100%;
}

.ux-project-list__card h3,
.ux-project-list__card p,
.ux-product-list__card h3,
.ux-product-list__card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.ux-project-list__card h3,
.ux-product-list__card h3 {
  -webkit-line-clamp: 2;
}

.ux-product-list__card p {
  -webkit-line-clamp: 2;
}

.ux-project-list__card p {
  -webkit-line-clamp: 3;
}

.ux-project-list__image {
  display: block;
  overflow: hidden;
}

.ux-project-list__image img {
  transition: transform 0.5s ease;
}

.ux-project-list__image:hover img {
  transform: scale(1.05);
}

.ux-project-list__loader,
.ux-product-list__loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4rem;
  background: rgba(255, 255, 255, 0.68);
}

.ux-project-list__loader[hidden],
.ux-product-list__loader[hidden] {
  display: none;
}

.ux-project-list__loader span,
.ux-product-list__loader span {
  width: 2rem;
  height: 2rem;
  border: 0.1875rem solid rgba(136, 184, 77, 0.22);
  border-top-color: #88b84d;
  border-radius: 50%;
  animation: ux-product-list-spin 0.8s linear infinite;
}

.ux-project-list__pagination a,
.ux-product-list__pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  color: #5f6368;
  font-size: 0.875rem;
  line-height: 1;
}

.ux-project-list__pagination a.is-active,
.ux-product-list__pagination a.is-active {
  background: #88b84d;
  color: #fff;
}

.product-detail {
  border-top: 0.25rem solid #1d90c8;
}

.product-detail__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.25rem;
  color: #111;
  font-size: 0.8125rem;
  font-weight: 600;
}

.product-detail__breadcrumb a {
  color: #111;
}

.product-detail__breadcrumb a:hover {
  color: #88b84d;
}

.product-detail-gallery__main img,
.product-detail-gallery__thumb img {
  object-fit: contain;
  padding: 1rem;
}

.product-detail-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-detail-gallery__thumb {
  display: block;
  padding: 0;
  border: 0.0625rem solid #d5d8dc;
  background: #fff;
  cursor: pointer;
}

.product-detail-gallery__thumb.is-active {
  border-color: #88b84d;
}

.product-detail__technical p {
  margin-bottom: 0.625rem;
}

.product-detail__technical p:last-child {
  margin-bottom: 0;
}

.product-detail-content__inner {
  border-top: 0.125rem solid #1d90c8;
}

.product-detail-content .s-content h2,
.product-detail-content .s-content h3 {
  color: #1d90c8;
}

.product-detail-content .s-content strong {
  color: #111;
}

.post-detail-hero {
  position: relative;
  min-height: 41.875rem;
  padding: 1.875rem 0 6rem;
  overflow: hidden;
  background-color: #132015;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.post-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.post-detail-hero .container {
  position: relative;
  z-index: 1;
}

.post-detail-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}

.post-detail-hero__breadcrumb a {
  color: #fff;
}

.post-detail-hero__breadcrumb a:hover {
  color: #1d90c8;
}

.post-detail-hero__title {
  width: min(100%, 53rem);
  margin: 8rem 0 0;
  color: #1d90c8;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.22;
}

.post-detail-layout {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) 19rem;
  gap: 1.5rem;
  align-items: start;
}

.post-detail-layout,
.post-detail-content,
.post-detail-content__entry {
  min-width: 0;
}

.post-detail-share {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.post-detail-share a,
.post-detail-share button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 0.625rem;
  background: #fff;
  color: #7a7f86;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.post-detail-share a:hover,
.post-detail-share button:hover {
  background: #88b84d;
  color: #fff;
}

.post-detail-meta {
  margin: 0 0 1.25rem;
  color: #111;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.post-detail-content__title {
  margin: 0;
  color: #111;
  font-size: clamp(1.625rem, 2.4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.post-detail-content__divider {
  height: 0.0625rem;
  margin: 1.5rem 0 2rem;
  background: #d8d8d8;
}

.post-detail-content__entry {
  color: #111;
  font-size: 1rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.post-detail-content__entry *,
.post-detail-content__entry p,
.post-detail-content__entry li,
.post-detail-content__entry a,
.post-detail-content__entry h2,
.post-detail-content__entry h3,
.post-detail-content__entry h4,
.post-detail-content__entry h5,
.post-detail-content__entry h6 {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.post-detail-content__entry h2,
.post-detail-content__entry h3 {
  margin: 1.5rem 0 1rem;
  color: #111;
  font-weight: 800;
  line-height: 1.25;
}

.post-detail-content__entry h2 {
  font-size: 1.625rem;
}

.post-detail-content__entry h3 {
  font-size: 1.25rem;
}

.post-detail-content__entry img {
  width: 100%;
  height: auto;
}

.post-detail-content__entry iframe,
.post-detail-content__entry video,
.post-detail-content__entry embed,
.post-detail-content__entry object,
.post-detail-content__entry table,
.post-detail-content__entry pre {
  max-width: 100%;
}

.post-detail-content__entry table,
.post-detail-content__entry pre {
  display: block;
  overflow-x: auto;
}

.post-detail-content__entry blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 0.1875rem solid #88b84d;
  background: #fafafa;
  color: #2f64d6;
  font-weight: 700;
}

.post-detail-sidebar {
  position: sticky;
  top: 5rem;
}

.post-detail-sidebar__box {
  background: #f9f7ef;
  padding: 1rem;
}

.post-detail-sidebar__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  color: #88b84d;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.2;
}

.post-detail-sidebar__heading::after {
  content: "";
  flex: 1;
  height: 0.0625rem;
  background: #88b84d;
}

.post-detail-toc {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-detail-toc li {
  margin: 0;
  padding: 0.875rem 0;
  border-bottom: 0.0625rem solid #c7c0ae;
}

.post-detail-toc li:last-child {
  border-bottom: 0;
}

.post-detail-toc li.is-child {
  padding-left: 0.75rem;
}

.post-detail-toc a {
  color: #111;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
}

.post-detail-toc a:hover {
  color: #88b84d;
}

.post-detail-featured-list {
  display: grid;
  gap: 1.25rem;
}

.post-detail-sidebar-card__image {
  display: block;
  margin-bottom: 0.75rem;
  background: #e9ecef;
}

.post-detail-sidebar-card__title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #111;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-detail-sidebar-card__title a {
  color: #111;
}

.post-detail-sidebar-card__title a:hover {
  color: #88b84d;
}

.post-detail-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.post-detail-related__head h2 {
  margin: 0;
  color: #88b84d;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.post-detail-related__head a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1d90c8;
  padding: 0.75rem 1.25rem;
  color: #111;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.post-detail-related__head a:hover {
  background: #88b84d;
  color: #fff;
}

.post-detail-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.post-detail-related-card__image {
  display: block;
  margin-bottom: 0.875rem;
  background: #e9ecef;
}

.post-detail-related-card__title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #111;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-detail-related-card__title a {
  color: #111;
}

.post-detail-related-card__title a:hover {
  color: #88b84d;
}

.post-detail-related-card__excerpt {
  display: -webkit-box;
  margin: 0.625rem 0 0;
  overflow: hidden;
  color: #333;
  font-size: 0.875rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 991px) {
  .post-detail-hero {
    min-height: 30rem;
  }

  .post-detail-hero__title {
    margin-top: 5rem;
  }

  .post-detail-layout {
    grid-template-columns: 1fr;
  }

  .post-detail-share {
    position: static;
    display: flex;
  }

  .post-detail-sidebar {
    position: static;
  }

  .post-detail-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .post-detail-hero {
    min-height: 24rem;
    padding-bottom: 4rem;
  }

  .post-detail-body {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .post-detail-content {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .post-detail-content__title {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .post-detail-content__entry {
    font-size: 0.9375rem;
    line-height: 1.75;
  }

  .post-detail-content__entry h2 {
    font-size: 1.375rem;
  }

  .post-detail-content__entry h3 {
    font-size: 1.125rem;
  }

  .post-detail-related__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .post-detail-related__head h2 {
    font-size: 1.875rem;
  }

  .post-detail-related__grid {
    grid-template-columns: 1fr;
  }
}

@keyframes ux-product-list-spin {
  to {
    transform: rotate(360deg);
  }
}

.t5s-project-archive__hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 42rem;
  overflow: hidden;
  padding-top: 3.25rem;
  background-color: #193429;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.t5s-project-archive__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.t5s-project-archive__hero .container {
  position: relative;
  z-index: 1;
}

.t5s-project-archive__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 7.5rem;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.4;
}

.t5s-project-archive__breadcrumb a,
.t5s-project-archive__breadcrumb span {
  color: #fff;
}

.t5s-project-archive__hero h1 {
  max-width: 48rem;
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
}

.t5s-project-archive .ux-project-list {
  margin-top: -2.5rem;
}

.t5s-project-archive .ux-project-list .container {
  max-width: 67.5rem;
}

.t5s-project-archive .ux-project-list__search {
  max-width: 39rem;
}

.t5s-project-archive .ux-project-list__search input {
  min-height: 2.375rem;
  border-radius: 999rem;
  background: #fff;
}

.t5s-project-archive .ux-project-list__search button {
  right: -8px;
  background: #88b84d;
  color: #fff;
}

.t5s-project-archive .ux-project-list nav[aria-label] a {
  min-width: 8.75rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.t5s-project-archive .ux-project-list__card {
  border-top: 0.25rem solid #1d90c8;
  background: #f4f4f4;
  box-shadow: none;
}

.t5s-project-archive .ux-project-list__card:first-child {
  background: #1d90c8;
}

.t5s-project-archive .ux-project-list__card h3,
.t5s-project-archive .ux-project-list__card h3 a,
.t5s-project-archive .ux-project-list__card p,
.t5s-project-archive .ux-project-list__card a:last-child {
  color: #111;
}

@media (max-width: 991px) {
  .t5s-project-archive__hero {
    min-height: 30rem;
  }

  .t5s-project-archive .ux-project-list {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .t5s-project-archive__hero {
    min-height: 23rem;
    padding-top: 2rem;
  }

  .t5s-project-archive__breadcrumb {
    margin-bottom: 5rem;
  }

  .t5s-project-archive .ux-project-list__search button {
    right: 0.25rem;
  }
}

.t5s-category-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 26.75rem;
  overflow: hidden;
  background-color: #193429;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.t5s-category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.t5s-category-hero .container {
  position: relative;
  z-index: 1;
}

.t5s-category-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 8rem;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.4;
}

.t5s-category-hero__breadcrumb a,
.t5s-category-hero__breadcrumb span {
  color: #fff;
}

.t5s-category-hero h1 {
  max-width: 48rem;
  margin: 0;
  color: #1d90c8;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
}

.t5s-category-content {
  padding: 4rem 0 6.25rem;
  background: #fff;
}

.t5s-category-search {
  margin: 0 auto 1.875rem;
}

.t5s-category-search input {
  width: 100%;
  min-height: 2.625rem;
  margin: 0;
  padding: 0.625rem 1rem;
  border: 0.0625rem solid #d8dde3;
  border-radius: 0;
  color: #111;
  font-size: 0.875rem;
  box-shadow: none;
}

.t5s-category-search input:focus {
  border-color: #88b84d;
  outline: 0;
  box-shadow: 0 0 0 0.125rem rgba(136, 184, 77, 0.12);
}

.t5s-category-results-wrap {
  position: relative;
}

.t5s-category-children-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.t5s-category-child-card {
  min-width: 0;
  overflow: hidden;
}

.t5s-category-child-card__image {
  display: block;
  background: #193429;
  border-top: 0.25rem solid #1d90c8;
}

.t5s-category-child-card__image img {
  transition: transform 0.35s ease;
}

.t5s-category-child-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.3));
}

.t5s-category-child-card__content {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  color: #fff;
}

.t5s-category-child-card__title {
  display: block;
  color: white;
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1.1;
}

.t5s-category-child-card__excerpt {
  display: -webkit-box;
  max-width: 33rem;
  margin-top: 0.25rem;
  overflow: hidden;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.t5s-category-child-card__image:hover img {
  transform: scale(1.04);
}

.t5s-category-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 1.75rem;
  border: 0.0625rem solid #d5d8dc;
}

.t5s-category-tabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.625rem;
  padding: 0.625rem 1rem;
  border-right: 0.0625rem solid #d5d8dc;
  color: #6f9080;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

.t5s-category-tabs a:last-child {
  border-right: 0;
}

.t5s-category-tabs a:hover,
.t5s-category-tabs a.is-active {
  background: #88b84d;
  color: #fff !important;
}

.t5s-category-post-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.75rem;
}

.t5s-category-section + .t5s-category-section {
  margin-top: 2.5rem;
}

.t5s-category-section-title {
  margin: 0 0 1.25rem;
  color: #88b84d;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.25;
}

.t5s-category-post-card__image {
  display: block;
  margin-bottom: 1rem;
  background: #f4f4f4;
}

.t5s-category-post-card__title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #111;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.t5s-category-post-card__title a {
  color: #111;
}

.t5s-category-post-card__title a:hover {
  color: #88b84d;
}

.t5s-category-post-card__excerpt {
  display: -webkit-box;
  margin: 0.5rem 0 0;
  overflow: hidden;
  color: #333;
  font-size: 0.875rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.t5s-category-loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4rem;
  background: rgba(255, 255, 255, 0.68);
}

.t5s-category-loader[hidden] {
  display: none;
}

.t5s-category-loader span {
  width: 2rem;
  height: 2rem;
  border: 0.1875rem solid rgba(136, 184, 77, 0.22);
  border-top-color: #88b84d;
  border-radius: 50%;
  animation: ux-product-list-spin 0.8s linear infinite;
}

.t5s-category-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
}

.t5s-category-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.625rem;
  height: 1.625rem;
  color: #5f6368;
  font-size: 0.875rem;
  line-height: 1;
}

.t5s-category-pagination a.is-active {
  background: #88b84d;
  color: #fff !important;
}

.t5s-category-empty {
  margin: 0;
  padding: 3rem 0;
  color: #5f6368;
  text-align: center;
}

@media (min-width: 1200px) {
  .t5s-category-archive .container {
    max-width: 67.5rem;
  }
}

@media (max-width: 991px) {
  .t5s-category-children-grid,
  .t5s-category-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .t5s-category-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .t5s-category-tabs a {
    border-bottom: 0.0625rem solid #d5d8dc;
  }
}

@media (max-width: 640px) {
  .t5s-category-hero {
    min-height: 20rem;
  }

  .t5s-category-hero__breadcrumb {
    margin-bottom: 5rem;
  }

  .t5s-category-content {
    padding: 2.5rem 0 4rem;
  }

  .t5s-category-children-grid,
  .t5s-category-post-grid {
    grid-template-columns: 1fr;
  }

  .t5s-category-child-card__title {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  .ab_team {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr) minmax(0, 0.72fr);
  }
}

/* KTX Process UX */
.ktx-process {
  padding: 80px 0;
  background-color: #f0f2f5;
  font-family: "Inter", sans-serif;
}

.ktx-process .process-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #88b84d;
  margin-bottom: 20px;
}

.ktx-process .process-desc {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
  color: #666;
  line-height: 1.8;
}

.ktx-process .timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.ktx-process .timeline-line {
  position: absolute;
  top: 38px;
  left: 5%;
  width: 90%;
  height: 4px;
  background: #e4e7ec;
  z-index: 1;
}

.ktx-process .timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  width: 16%;
}

.ktx-process .step-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #d9dde3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 32px;
  font-weight: 700;
  color: #8c95a3;
  transition: 0.3s;
}

.ktx-process .timeline-step h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
}

.ktx-process .timeline-step.active .step-circle {
  background: #88b84d;
  border-color: #88b84d;
  color: #fff;
  box-shadow: 0 8px 20px rgba(136, 184, 77, 0.35);
}

.ktx-process .timeline-step.active h3 {
  color: #88b84d;
}

.ktx-process .process-content {
  max-width: 1000px;
  margin: auto;
}

.ktx-process .ktx-content-item {
  display: none;
  background: #f8faf8;
  border-left: 5px solid #88b84d;
  padding: 30px;
  border-radius: 10px;
  animation: ktxFadeIn 0.3s ease;
}

.ktx-process .ktx-content-item.active {
  display: block;
}

.ktx-process .ktx-content-item h4 {
  color: #88b84d;
  margin-bottom: 15px;
  font-size: 24px;
}

.ktx-process .ktx-content-item p {
  line-height: 1.8;
  color: #444;
  visibility: visible !important;
  animation: none !important;
  transform: none !important;
}

@keyframes ktxFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slider-home-certifications
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #2f64d6 !important;
}

/* Home product cards: use real WooCommerce action links instead of decorative icons. */
.product-small.box.emzeo-home-products-grid::after {
  content: none !important;
  display: none !important;
}

.product-small.box.emzeo-home-products-grid .price bdi::after {
  content: " \0111" !important;
}

.product-small.box.emzeo-home-products-grid .image-tools {
  align-items: center;
  background: transparent;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  transform: none;
  transition: opacity 0.18s ease;
}

.product-small.box.emzeo-home-products-grid .quick-view {
  align-items: center;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
  color: #111827 !important;
  display: inline-flex !important;
  font-size: 0 !important;
  height: 50px;
  justify-content: center;
  line-height: 1;
  margin: 0 !important;
  min-height: 0;
  opacity: 0;
  padding: 0 !important;
  position: static;
  pointer-events: none;
  text-indent: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  width: 50px;
}

.product-small.box.emzeo-home-products-grid:hover .quick-view {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-small.box.emzeo-home-products-grid .quick-view::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-size: 1.2rem;
  font-weight: 900;
}

.product-small.box.emzeo-home-products-grid .add-to-cart-grid,
.product-small.box.emzeo-home-products-grid .emzeo-card-cart {
  bottom: 10px;
  opacity: 1 !important;
  position: absolute !important;
  right: 10px !important;
  transform: none !important;
  z-index: 5;
}

.product-small.box.emzeo-home-products-grid .add-to-cart-grid,
.product-small.box.emzeo-home-products-grid .add-to-cart-grid:hover,
.product-small.box.emzeo-home-products-grid .emzeo-card-cart,
.product-small.box.emzeo-home-products-grid .emzeo-card-cart:hover {
  background: transparent !important;
  border: 0 !important;
  min-height: 0;
  padding: 0 !important;
}

.product-small.box.emzeo-home-products-grid .cart-icon {
  align-items: center;
  background: #049847;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(4, 152, 71, 0.28);
  color: #fff;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  margin: 0;
  width: 28px;
}

.product-small.box.emzeo-home-products-grid .cart-icon strong {
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
  margin-top: -2px;
}

.product-small.box.emzeo-home-products-grid .cart-icon,
.product-small.box.emzeo-home-products-grid .cart-icon.tooltip {
  align-items: center !important;
  background: #049847 !important;
  border: 0 !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 10px rgba(4, 152, 71, 0.28) !important;
  color: #fff !important;
  display: inline-flex !important;
  height: 28px !important;
  justify-content: center !important;
  margin: 0 !important;
  min-height: 28px !important;
  min-width: 28px !important;
  padding: 0 !important;
  width: 28px !important;
}

.product-small.box.emzeo-home-products-grid .cart-icon strong {
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #fff !important;
  display: flex !important;
  font-size: 1.55rem !important;
  font-weight: 400 !important;
  height: 28px !important;
  justify-content: center !important;
  line-height: 1 !important;
  margin: 2px 0 0 0 !important;
  margin-top: 2px !important;
  padding: 0 !important;
  position: static !important;
  width: 28px !important;
}

.product-small.box.emzeo-home-products-grid .cart-icon strong::before,
.product-small.box.emzeo-home-products-grid .cart-icon strong::after {
  content: none !important;
  display: none !important;
}

.emzeo-home-products-grid a.added_to_cart {
  display: none !important;
}

/* Emzeo custom footer */
.emzeo-footer {
  background: #087a2c;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.emzeo-footer .section-content {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1332px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.emzeo-footer .row {
  max-width: 100%;
  width: 100%;
}

.emzeo-footer .row.row-large {
  margin-left: auto;
  margin-right: auto;
}

.emzeo-footer .row.row-large > .col {
  padding-left: 15px;
  padding-right: 15px;
}

.emzeo-footer-main {
  padding: 38px 0 34px;
}

.emzeo-footer h3 {
  color: #fff;
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 24px;
  position: relative;
}

.emzeo-footer h3::after {
  background: rgba(255, 255, 255, 0.36);
  bottom: -12px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100px;
}

.emzeo-footer ul {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
}

.emzeo-footer .large-6:first-child ul {
  list-style-position: inside;
  padding-left: 0;
}

.emzeo-footer li {
  margin-left: 0 !important;
  margin: 0 0 10px;
}

.emzeo-footer strong,
.emzeo-footer a {
  color: #fff !important;
}

.emzeo-footer-policy {
  margin-bottom: 28px;
}

.emzeo-footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.emzeo-footer-social a {
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  display: inline-flex;
  font-size: 1rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.emzeo-footer-badges {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.emzeo-footer-badge {
  align-items: center;
  border-radius: 30px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  line-height: 1.1;
}

.emzeo-footer-badge--bct {
  background: #177acb;
  gap: 10px;
  padding: 8px 12px;
}

.emzeo-footer-badge--bct::before {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  color: #177acb;
  content: "\2713";
  display: inline-flex;
  font-size: 1.75rem;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.emzeo-footer-badge--ncsc {
  color: #56b13d;
  font-size: 2rem;
}

.emzeo-footer-fanpage {
  background: #fff;
  color: #111827;
  max-width: 290px;
  overflow: hidden;
}

.emzeo-footer-fanpage__cover {
  background: linear-gradient(135deg, #eaf6e9, #ffffff);
  min-height: 118px;
  padding: 16px;
}

.emzeo-footer-fanpage__cover strong {
  color: #087a2c !important;
  display: block;
  font-size: 1.25rem;
}

.emzeo-footer-fanpage__body {
  padding: 14px;
}

.emzeo-footer-fanpage__body h4 {
  color: #111827;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 4px;
}

.emzeo-footer-fanpage__body p {
  color: #111827;
  font-size: 0.8125rem;
  line-height: 1.35;
  margin: 10px 0 12px;
}

.emzeo-footer-fanpage__follow {
  background: #1877f2;
  border-radius: 5px;
  color: #fff !important;
  display: block;
  font-weight: 800;
  padding: 8px 12px;
  text-align: center;
}

.emzeo-footer-bottom {
  background: #006500;
  color: #fff;
  padding: 18px 0 16px;
  text-align: center;
}

.emzeo-footer-bottom .col {
  padding-bottom: 0;
}

.emzeo-footer-dmca {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  display: inline-flex;
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.emzeo-footer-dmca span {
  padding: 6px 7px;
}

.emzeo-footer-dmca span:first-child {
  background: #9fca56;
}

.emzeo-footer-dmca span:last-child {
  background: #404040;
}

.emzeo-footer-copyright {
  font-size: 0.875rem;
}

.emzeo-footer + .absolute-footer,
.footer-wrapper .absolute-footer {
  display: none;
}

.home #main,
.home .page-wrapper,
.home .entry-content {
  padding-top: 0;
}

.page-wrapper {
  padding-bottom: 0 !important;
}

.emzeo-home-hero {
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.emzeo-home-hero .img,
.emzeo-home-hero .img-inner {
  width: 100%;
}

.emzeo-home-hero img {
  display: block;
  height: auto;
  width: 100%;
}

.emzeo-home-hero .flickity-page-dots {
  bottom: 18px;
}

.emzeo-home-hero .flickity-page-dots .dot {
  background: #fff;
  border-color: #fff;
  opacity: 0.75;
}

.emzeo-home-hero .flickity-page-dots .dot.is-selected {
  background: #facc15;
  border-color: #facc15;
  opacity: 1;
}

.emzeo-home-product-cats {
  background: #f4fbf2;
  border-top: 1px solid rgba(8, 122, 44, 0.14);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-bottom: 20px !important;
  width: 100vw;
}

.emzeo-home-product-cats .section-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  padding-left: 15px;
  padding-right: 15px;
}

.emzeo-home-product-cats__row {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1250px !important;
  width: 100%;
}

.emzeo-home-product-cats__row > .col {
  padding-bottom: 0 !important;
}

.emzeo-home-product-cats__heading {
  margin-bottom: 26px;
  text-align: center;
}

.emzeo-home-product-cats__heading h2 {
  color: #087a2c;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.emzeo-home-product-cats .product-category .col-inner {
  text-align: center;
}

.emzeo-home-product-cats .row,
.emzeo-home-product-cats .row-small {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.emzeo-home-product-cats .emzeo-product-cat-element {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 760px;
  width: 760px;
}

.emzeo-home-product-cats .container .row.emzeo-product-cat-element:not(.row-collapse),
.emzeo-home-product-cats .section-content .row.emzeo-product-cat-element:not(.row-collapse) {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 760px !important;
  width: 760px !important;
}

.emzeo-home-product-cats .product-category {
  flex-basis: 144px;
  max-width: 144px;
}

.emzeo-home-product-cats .box-category {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.emzeo-home-product-cats .box-category .box-image {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(8, 122, 44, 0.1);
  overflow: hidden;
}

.emzeo-home-product-cats .box-category .box-text {
  padding-bottom: 0;
  padding-top: 10px;
}

.emzeo-home-product-cats .box-category .header-title {
  color: #3f3f46;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.22;
  margin: 0;
  text-transform: none;
}

.emzeo-home-product-cats .box-category .count {
  display: none !important;
}

.emzeo-home-product-cats__next {
  display: none;
}

.emzeo-home-product-cats__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

.emzeo-home-product-cats__item {
  align-items: center;
  color: #3f3f46 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  text-align: center;
}

.emzeo-home-product-cats__item:hover {
  color: #087a2c !important;
}

.emzeo-home-product-cats__thumb {
  background: #f3f7ed;
  border-radius: 50%;
  display: block;
  height: 74px;
  overflow: hidden;
  position: relative;
  width: 74px;
}

.emzeo-home-product-cats__thumb img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
  width: 100%;
}

.emzeo-home-product-cats__item:hover img {
  transform: scale(1.06);
}

.emzeo-home-product-cats__badge {
  align-items: center;
  background: #f97316;
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-size: 0.64rem;
  font-weight: 900;
  inset: 8px 6px auto auto;
  justify-content: center;
  line-height: 1;
  max-width: 54px;
  min-height: 26px;
  padding: 4px 6px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-15deg);
}

.emzeo-home-product-cats__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.22;
  min-height: 2.32em;
}

@media (max-width: 1199px) {
  .emzeo-home-product-cats__list {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .emzeo-home-product-cats__list::-webkit-scrollbar {
    display: none;
  }

  .emzeo-home-product-cats__item {
    flex: 0 0 86px;
  }
}

@media (max-width: 549px) {
  .emzeo-home-product-cats {
    padding-bottom: 18px !important;
  }

  .emzeo-home-product-cats .section-content {
    padding-left: 0;
    padding-right: 0;
  }

  .emzeo-home-product-cats__row > .col {
    padding-bottom: 0 !important;
  }

  .emzeo-home-product-cats .emzeo-product-cat-element,
  .emzeo-home-product-cats .container .row.emzeo-product-cat-element:not(.row-collapse),
  .emzeo-home-product-cats .section-content .row.emzeo-product-cat-element:not(.row-collapse) {
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-width: 100% !important;
    overflow-x: auto;
    padding-bottom: 0;
    position: relative;
    scrollbar-width: none;
    width: 100% !important;
  }

  .emzeo-home-product-cats__row {
    position: relative;
  }

  .emzeo-home-product-cats__next {
    align-items: center;
    background: rgba(8, 122, 44, 0.92);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(8, 122, 44, 0.22);
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 1.6rem;
    font-weight: 700;
    height: 28px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 6px;
    top: 58%;
    transform: translateY(-50%);
    width: 28px;
    z-index: 5;
  }

  .emzeo-home-product-cats__next:focus {
    outline: 2px solid rgba(8, 122, 44, 0.35);
    outline-offset: 2px;
  }

  .emzeo-home-product-cats .emzeo-product-cat-element::-webkit-scrollbar {
    display: none;
  }

  .emzeo-home-product-cats .product-category {
    flex: 0 0 112px;
    max-width: 112px;
    padding-bottom: 0;
  }

  .emzeo-home-product-cats__thumb {
    height: 62px;
    width: 62px;
  }

  .emzeo-home-product-cats__heading {
    margin-bottom: 16px;
  }

  .emzeo-home-product-cats__heading h2 {
    font-size: 1.5rem;
  }

  .emzeo-home-product-cats__name {
    font-size: 0.78rem;
  }

  .emzeo-home-product-cats .box-category .header-title {
    font-size: 0.9rem;
    line-height: 1.16;
  }
}

.emzeo-home-reasons {
  background:
    linear-gradient(rgba(19, 95, 37, 0.95), rgba(19, 95, 37, 0.95)),
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.08) 0 130px, transparent 132px),
    radial-gradient(circle at 84% 44%, rgba(255, 255, 255, 0.06) 0 150px, transparent 152px),
    #145f25;
  color: #fff;
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
  width: 100vw;
}

.emzeo-home-reasons .section-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1160px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 1;
}

.emzeo-home-reasons::before,
.emzeo-home-reasons::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  height: 360px;
  position: absolute;
  width: 360px;
}

.emzeo-home-reasons::before {
  bottom: -120px;
  left: 5%;
}

.emzeo-home-reasons::after {
  right: 9%;
  top: 18%;
}

.emzeo-home-reasons__head {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 980px !important;
  text-align: center;
}

.emzeo-home-reasons__title.section-title-container {
  margin-bottom: 0;
}

.emzeo-home-reasons__title .section-title {
  border: 0;
  justify-content: center;
  margin: 0;
}

.emzeo-home-reasons__title .section-title b {
  display: none;
}

.emzeo-home-reasons__title .section-title-main {
  border: 0;
  color: #fff;
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0;
  text-transform: uppercase;
}

.emzeo-home-reasons__intro {
  color: #fff;
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  margin: 26px auto 28px;
  max-width: 960px;
}

.emzeo-home-reasons__grid {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1040px !important;
}

.emzeo-home-reasons__col {
  padding-bottom: 34px;
}

.emzeo-home-reasons__item.icon-box {
  align-items: flex-start;
  color: #fff;
  display: grid;
  gap: 0 14px;
  grid-template-columns: 60px minmax(0, 1fr);
  margin: 0;
}

.emzeo-home-reasons__item .icon-box-img {
  display: block;
  flex: 0 0 60px;
  grid-column: 1;
  grid-row: 1;
  padding-top: 4px;
  width: 60px;
}

.emzeo-home-reasons__item .icon-box-img .icon,
.emzeo-home-reasons__item .icon-box-img .icon-inner {
  height: 60px;
  width: 60px;
}

.emzeo-home-reasons__item .icon-box-img img {
  display: block;
  height: 60px;
  object-fit: contain;
  width: 60px;
}

.emzeo-home-reasons__item .icon-box-text {
  flex: 1 1 auto;
  grid-column: 2;
  grid-row: 1;
  padding-left: 0 !important;
}

.emzeo-home-reasons__item h5 {
  color: #fff;
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: 1.26rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 6px;
  text-transform: none;
}

.emzeo-home-reasons__item p {
  color: #fff;
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.emzeo-home-reasons__cta {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1040px !important;
  text-align: center;
}

.emzeo-home-reasons__button.button {
  background: #f59e0b !important;
  border: 0 !important;
  border-radius: 5px !important;
  color: #fff !important;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 275px;
  padding: 0.2rem 1.35rem;
}

.emzeo-home-reasons__button.button:hover {
  background: #e88f00 !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.emzeo-home-brands,
.emzeo-home-news {
  background: #fff;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.emzeo-home-brands .section-content,
.emzeo-home-news .section-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  padding-left: 15px;
  padding-right: 15px;
}

.emzeo-home-brands .section-content {
  overflow: hidden;
}

.emzeo-home-brands__heading-row,
.emzeo-home-news__row {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1250px !important;
  width: 100%;
}

.emzeo-home-brands__title.section-title-container,
.emzeo-home-news__title.section-title-container {
  margin-bottom: 22px;
}

.emzeo-home-brands__title .section-title,
.emzeo-home-news__title .section-title {
  border: 0;
  justify-content: center;
  margin: 0;
  text-align: center;
  width: 100%;
}

.emzeo-home-brands__title .section-title b,
.emzeo-home-news__title .section-title b {
  display: none;
}

.emzeo-home-brands__title .section-title-main,
.emzeo-home-news__title .section-title-main {
  border: 0;
  color: #172033;
  display: inline-block;
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
  padding: 0 0 12px;
  position: relative;
  text-transform: uppercase;
}

.emzeo-home-brands__title .section-title-main::after,
.emzeo-home-news__title .section-title-main::after {
  background: #c9a761;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 74px;
}

.emzeo-home-brands__track {
  align-items: center;
  display: flex !important;
  flex-wrap: nowrap !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  width: max-content !important;
  will-change: transform;
}

.emzeo-home-brands__track.is-marquee-ready {
  animation: emzeo-brand-marquee 28s linear infinite;
}

.emzeo-home-brands__track:hover {
  animation-play-state: paused;
}

.emzeo-home-brands__col {
  align-items: center;
  display: flex;
  flex: 0 0 180px !important;
  max-width: 180px !important;
  min-height: 92px;
  padding: 0 28px 0 !important;
  width: 180px !important;
}

.emzeo-home-brands__col > .col-inner {
  width: 100%;
}

.emzeo-home-brands__item {
  align-items: center;
  color: #087a2c;
  display: flex;
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif;
  justify-content: center;
  min-height: 78px;
  text-align: center;
  width: 100%;
}

.emzeo-home-brands__item img {
  display: block;
  height: 76px;
  max-height: 76px;
  max-width: 160px;
  object-fit: contain;
  width: 100%;
}

.emzeo-home-brands__item--dang-gia-trang img,
.emzeo-home-brands__item--bayer img {
  height: 86px;
  max-height: 86px;
}

.emzeo-home-brands__item strong,
.emzeo-home-brands__item span {
  display: inline-block;
  font-size: 1.48rem;
  font-weight: 900;
  line-height: 1;
}

.emzeo-home-brands__item small {
  color: #ef4444;
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.emzeo-home-brands__item--dang-gia-trang {
  flex-direction: column;
  font-size: 0.9rem;
}

.emzeo-home-brands__item--dang-gia-trang::before {
  content: none;
}

.emzeo-home-brands__item--tribat strong {
  color: #15803d;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.emzeo-home-brands__item--phu-nong {
  color: #16a34a;
  flex-direction: column;
}

.emzeo-home-brands__item--trang-nong strong {
  color: #0f8f39;
  font-size: 1.15rem;
}

.emzeo-home-brands__item--syngenta strong {
  color: #172554;
  font-size: 1.55rem;
  text-transform: lowercase;
}

.emzeo-home-brands__item--hoptri strong {
  color: #15803d;
  font-size: 1.55rem;
  text-transform: lowercase;
}

.emzeo-home-brands__item--bayer strong {
  align-items: center;
  border: 4px solid #20c4e8;
  border-radius: 50%;
  color: #1e3a8a;
  display: flex;
  font-size: 0.95rem;
  height: 70px;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 70px;
}

@keyframes emzeo-brand-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.emzeo-home-news {
  padding-bottom: 30px !important;
}

.emzeo-home-news__row > .col {
  background: #f1f3f7;
  border-radius: 3px;
  padding: 12px 18px 16px;
}

.emzeo-home-news__title.section-title-container {
  margin-bottom: 14px;
}

.emzeo-home-news__posts .post-item .col-inner {
  background: transparent;
}

.emzeo-home-news__posts.slider,
.emzeo-home-news__posts .flickity-viewport,
.emzeo-home-news__posts .flickity-slider {
  width: 100%;
}

.emzeo-home-news__posts.slider {
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  position: relative;
}

.emzeo-home-news__posts .flickity-prev-next-button {
  z-index: 5;
}

.emzeo-home-news__posts .flickity-prev-next-button.previous {
  left: 10px !important;
}

.emzeo-home-news__posts .flickity-prev-next-button.next {
  right: 10px !important;
}

.emzeo-home-news__posts .post-item {
  padding-left: 10px;
  padding-right: 10px;
}

.emzeo-home-news__posts.slider .post-item {
  flex-basis: 25%;
  max-width: 25%;
  padding-bottom: 0;
  width: 25%;
}

.emzeo-home-news__posts .box-image {
  border-radius: 2px;
  overflow: hidden;
}

.emzeo-home-news__posts .box-text {
  display: flex;
  flex-direction: column;
  padding: 11px 0 0;
}

.emzeo-home-news__posts .post-title {
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.42;
  margin-bottom: 9px;
  min-height: 3.36em;
}

.emzeo-home-news__posts .post-title a {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #3f3f46 !important;
  display: -webkit-box;
  overflow: hidden;
}

.emzeo-home-news__posts .from_the_blog_excerpt {
  color: #5f6368;
  font-size: 0.95rem;
  line-height: 1.55;
  min-height: 4.65em;
}

.emzeo-home-news__posts .is-divider {
  display: none;
}

.emzeo-home-news__posts .post-meta {
  color: #426c99;
  font-size: 0.82rem;
  margin-bottom: 7px;
  min-height: 1.25em;
}

.emzeo-home-news__posts .button.is-link {
  color: #00873c !important;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 2px;
  padding-left: 0;
  text-transform: none;
}

.emzeo-home-news__more.button {
  background: #e5e7eb !important;
  border: 0 !important;
  color: #111827 !important;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 16px;
  min-height: 37px;
  text-transform: none;
}

.emzeo-home-news__more.button::after {
  content: "\203A";
  font-size: 1.05rem;
  margin-left: 6px;
}

@media (max-width: 849px) {
  .emzeo-home-brands__col {
    flex-basis: 150px !important;
    max-width: 150px !important;
    min-height: 78px;
    padding-left: 22px !important;
    padding-right: 22px !important;
    width: 150px !important;
  }

  .emzeo-home-news__row > .col {
    padding-left: 12px;
    padding-right: 12px;
  }

  .emzeo-home-news__posts.slider .post-item {
    flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }

  .emzeo-home-reasons__title .section-title-main {
    font-size: 1.55rem;
  }

  .emzeo-home-reasons__intro {
    font-size: 0.95rem;
    margin-top: 20px;
  }

  .emzeo-home-reasons__col {
    padding-bottom: 26px;
  }
}

@media (max-width: 549px) {
  .emzeo-home-brands {
    padding-bottom: 18px !important;
    padding-top: 24px !important;
  }

  .emzeo-home-brands .section-content,
  .emzeo-home-news .section-content {
    padding-left: 10px;
    padding-right: 10px;
  }

  .emzeo-home-brands__title.section-title-container,
  .emzeo-home-news__title.section-title-container {
    margin-bottom: 12px;
  }

  .emzeo-home-brands__title .section-title-main,
  .emzeo-home-news__title .section-title-main {
    font-size: 1.05rem;
    padding-bottom: 9px;
  }

  .emzeo-home-brands__col {
    flex-basis: 132px !important;
    max-width: 132px !important;
    min-height: 70px;
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 132px !important;
  }

  .emzeo-home-brands__item strong,
  .emzeo-home-brands__item span {
    font-size: 1.05rem;
  }

  .emzeo-home-brands__item img {
    height: 56px;
    max-height: 56px;
    max-width: 112px;
  }

  .emzeo-home-brands__item--dang-gia-trang img,
  .emzeo-home-brands__item--bayer img {
    height: 62px;
    max-height: 62px;
  }

  .emzeo-home-news {
    padding-bottom: 22px !important;
  }

  .emzeo-home-news__row > .col {
    border-radius: 0;
    padding-top: 12px;
  }

  .emzeo-home-news__posts .post-title {
    font-size: 1rem;
  }

  .emzeo-home-news__posts .post-item {
    padding-left: 8px;
    padding-right: 8px;
  }

  .emzeo-home-news__posts.slider .post-item {
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
  }

  .emzeo-home-reasons {
    padding-bottom: 36px !important;
    padding-top: 40px !important;
  }

  .emzeo-home-reasons .section-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .emzeo-home-reasons__title .section-title-main {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .emzeo-home-reasons__intro {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .emzeo-home-reasons__item.icon-box {
    gap: 0 12px;
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .emzeo-home-reasons__item .icon-box-img {
    flex-basis: 50px;
    padding-top: 2px;
    width: 50px;
  }

  .emzeo-home-reasons__item .icon-box-img .icon,
  .emzeo-home-reasons__item .icon-box-img .icon-inner,
  .emzeo-home-reasons__item .icon-box-img img {
    height: 50px;
    width: 50px;
  }

  .emzeo-home-reasons__item h5 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .emzeo-home-reasons__item p {
    font-size: 0.9rem;
  }

  .emzeo-home-reasons__button.button {
    min-width: 0;
    width: 100%;
  }
}

.emzeo-home-intro {
  background: #fff;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 46px 0 0 !important;
  width: 100vw;
}

.emzeo-home-intro .section-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  padding-left: 15px;
  padding-right: 15px;
}

.emzeo-home-intro__row {
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px !important;
  width: 100%;
}

.emzeo-home-intro__content {
  padding-bottom: 0;
}

.co-intro-text > .col-inner {
  padding-bottom: 0 !important;
}

.emzeo-home-intro__content h2 {
  color: #020617;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px;
}

.emzeo-home-intro__content h3 {
  color: #087a2c;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 14px;
}

.emzeo-home-intro__content p {
  color: #111827;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 8px;
}

.emzeo-home-intro__link {
  align-items: center;
  background: #087a2c;
  border: 2px solid #087a2c;
  border-radius: 30px;
  color: #fff !important;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 12px;
  padding: 12px 20px;
  transition: all 0.2s ease;
}

.emzeo-home-intro__link:hover {
  background: #fff;
  color: #087a2c !important;
}

.emzeo-home-intro__media {
  padding-bottom: 0;
}

.emzeo-home-intro__image,
.emzeo-home-intro__image .img-inner {
  width: 100%;
}

.emzeo-home-intro__image img {
  display: block;
  height: auto;
  width: 100%;
}

@media (max-width: 549px) {
  .emzeo-home-intro__content h2,
  .emzeo-home-intro__content h3 {
    text-align: center;
  }

  .emzeo-home-intro__link {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }
}

.emzeo-home-products {
  background: #fff;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.emzeo-home-products__row {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1250px !important;
  width: 100%;
}

.emzeo-home-products__heading {
  margin-bottom: 30px;
  text-align: center;
}

.emzeo-home-products__heading h2 {
  color: #087a2c;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.emzeo-home-products-group {
  margin-bottom: 42px;
}

.emzeo-home-products-group:last-child {
  margin-bottom: 0;
}

.emzeo-home-products-group__head {
  align-items: center;
  border-bottom: 0;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 0 10px;
}

.emzeo-home-products-group__head h3 {
  color: #111827;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.emzeo-home-products-grid {
  margin-left: auto !important;
  margin-right: auto !important;
}

.emzeo-home-products-title.section-title-container {
  margin-bottom: 16px;
  max-width: none;
  padding-left: 10px;
  padding-right: 10px;
}

.emzeo-home-products-title .section-title {
  border-bottom: 0;
  margin: 0;
}

.emzeo-home-products-title .section-title b {
  display: none;
}

.emzeo-home-products-title .section-title-main {
  border: 0;
  color: #087a2c;
  display: inline-block;
  font-family: "Inter", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0;
  padding: 0 0 10px;
  position: relative;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

.emzeo-home-products-title .section-title-main::after {
  background: linear-gradient(90deg, #049847 0%, #8bc34a 100%);
  border-radius: 999px;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 54px;
}

.product-small.box.emzeo-home-products-grid {
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-small.box.emzeo-home-products-grid:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.product-small.box.emzeo-home-products-grid .box-image {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 0;
}

.product-small.box.emzeo-home-products-grid .box-image img {
  display: block;
  height: auto;
  width: 100%;
}

.product-small.box.emzeo-home-products-grid .box-text {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  padding: 8px 10px 12px;
  position: relative;
}

.product-small.box.emzeo-home-products-grid .product-cat {
  display: none;
}

.product-small.box.emzeo-home-products-grid .name {
  display: -webkit-box;
  line-height: 1.35;
  min-height: 2.8em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-small.box.emzeo-home-products-grid .name a {
  color: #111827 !important;
  font-size: 0.88rem;
  font-weight: 500 !important;
  line-height: 1.35;
}

.product-small.box.emzeo-home-products-grid .price,
.product-small.box.emzeo-home-products-grid .amount {
  color: #f00 !important;
  font-size: 0.95rem;
  font-weight: 800 !important;
  line-height: 1.2;
}

.product-small.box.emzeo-home-products-grid .price-wrapper {
  margin-top: 4px;
  padding-right: 36px;
}

.product-small.box.emzeo-home-products-grid .box-text .emzeo-card-cart {
  bottom: 8px !important;
  display: inline-flex !important;
  height: 28px !important;
  left: auto !important;
  min-height: 28px !important;
  min-width: 28px !important;
  position: absolute !important;
  right: 12px !important;
  top: auto !important;
  transform: none !important;
  width: 28px !important;
}

.product-small.box.emzeo-home-products-grid .price .woocommerce-Price-currencySymbol {
  display: none;
}

.product-small.box.emzeo-home-products-grid .price bdi::after {
  content: " \0111";
}

.product-small.box.emzeo-home-products-grid::after {
  align-items: center;
  background: #049847;
  border-radius: 50%;
  bottom: 10px;
  box-shadow: 0 4px 10px rgba(4, 152, 71, 0.28);
  color: #fff;
  content: "\f290";
  display: flex;
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-size: 0.78rem;
  font-weight: 900;
  height: 26px;
  justify-content: center;
  position: absolute;
  right: 10px;
  width: 26px;
}

.emzeo-home-products-grid .add-to-cart-button a,
.emzeo-home-products-grid a.add_to_cart_button {
  background: #049847 !important;
  border-color: #049847 !important;
  border-radius: 999px !important;
  color: #fff !important;
}

.product-small.box.emzeo-home-products-grid::after {
  content: none !important;
  display: none !important;
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart,
.product-small.box.emzeo-home-products-grid .emzeo-card-cart:hover {
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  bottom: 8px !important;
  display: inline-flex !important;
  height: 28px !important;
  justify-content: center !important;
  left: auto !important;
  min-height: 28px !important;
  min-width: 28px !important;
  opacity: 1 !important;
  padding: 0 !important;
  position: absolute !important;
  right: 12px !important;
  text-indent: 0 !important;
  top: auto !important;
  transform: none !important;
  visibility: visible !important;
  width: 28px !important;
  z-index: 6;
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart .cart-icon {
  align-items: center;
  background: #049847;
  border: 0 !important;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(4, 152, 71, 0.28);
  color: #fff;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart.loading,
.product-small.box.emzeo-home-products-grid .emzeo-card-cart.added,
.product-small.box.emzeo-home-products-grid .emzeo-card-cart.is-adding,
.product-small.box.emzeo-home-products-grid .emzeo-card-cart.is-added {
  opacity: 1 !important;
  pointer-events: auto;
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart.loading::after,
.product-small.box.emzeo-home-products-grid .emzeo-card-cart.is-adding::after {
  display: none !important;
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart.is-adding .cart-icon {
  animation: none;
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart.is-adding .cart-icon strong {
  font-size: 0 !important;
  margin: 0 !important;
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart.is-adding .cart-icon strong::before {
  animation: emzeo-cart-spin 0.75s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border-top-color: #fff;
  content: "" !important;
  display: block !important;
  height: 14px;
  width: 14px;
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart.is-added .cart-icon strong {
  font-size: 0 !important;
  margin: 0 !important;
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart.is-added .cart-icon strong::before {
  color: #fff;
  content: "\f00c" !important;
  display: block !important;
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-size: 0.85rem;
  font-weight: 900;
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart .cart-icon strong {
  align-items: center;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #fff !important;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  height: 28px;
  justify-content: center;
  line-height: 1;
  margin: 2px 0 0 0 !important;
  padding: 0 !important;
  position: static !important;
  text-align: center;
  width: 28px;
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart .cart-icon strong::before,
.product-small.box.emzeo-home-products-grid .emzeo-card-cart .cart-icon strong::after {
  content: none !important;
  display: none !important;
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart.is-added .cart-icon strong {
  font-size: 0 !important;
  margin: 0 !important;
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart.is-added .cart-icon strong::before {
  color: #fff !important;
  content: "\f00c" !important;
  display: block !important;
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-size: 0.85rem !important;
  font-weight: 900;
}

@keyframes emzeo-cart-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.88);
  }
}

@keyframes emzeo-cart-spin {
  to {
    transform: rotate(360deg);
  }
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart.is-adding .cart-icon strong {
  font-size: 0 !important;
  margin: 0 !important;
}

.product-small.box.emzeo-home-products-grid .emzeo-card-cart.is-adding .cart-icon strong::before {
  animation: emzeo-cart-spin 0.75s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border-top-color: #fff;
  content: "" !important;
  display: block !important;
  height: 14px;
  width: 14px;
}

.emzeo-cart-toast {
  background: #049847;
  border-radius: 30px;
  bottom: 24px;
  box-shadow: 0 10px 28px rgba(4, 152, 71, 0.28);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  left: 50%;
  line-height: 1.25;
  opacity: 0;
  padding: 11px 18px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 14px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 99999;
}

.emzeo-cart-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.emzeo-home-products-group__more {
  margin-top: 18px;
  text-align: center;
}

.emzeo-home-products-group__more a {
  border: 1px solid #049847;
  border-radius: 5px;
  color: #049847;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  padding: 9px 24px;
}

.emzeo-home-products-group__more a::after {
  content: "›";
  font-size: 1rem;
  line-height: 0.8;
  margin-left: 6px;
}

.emzeo-home-products-group__more a:hover {
  background: #049847;
  color: #fff;
}

.emzeo-home-products-more.button {
  border: 1px solid #049847;
  border-radius: 5px;
  color: #049847;
  display: table;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  margin: 18px auto 0;
  padding: 9px 24px;
}

.emzeo-home-products-more.button::after {
  content: "\203A";
  font-size: 1rem;
  line-height: 0.8;
  margin-left: 6px;
}

.emzeo-home-products-more.button:hover {
  background: #049847;
  color: #fff;
}

@media (max-width: 549px) {
  .emzeo-home-products {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .emzeo-home-products .section-content,
  .emzeo-home-products__row,
  .emzeo-home-products__row > .col,
  .emzeo-home-products__row > .col > .col-inner {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }

  .emzeo-home-products__row > .col {
    padding-bottom: 0 !important;
  }

  .emzeo-home-products-title.section-title-container {
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
  }

  .emzeo-home-products-title .section-title {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .emzeo-home-products__heading h2 {
    font-size: 1.5rem;
  }

  .emzeo-home-products-group__head h3 {
    font-size: 1.05rem;
  }

  .emzeo-home-products-title .section-title-main {
    font-size: 1.05rem;
    margin-left: auto;
    margin-right: auto;
  }

  .emzeo-home-products-title .section-title-main::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .emzeo-home-products-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .emzeo-home-products-grid.row-small {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .emzeo-home-products-grid.row-small > .col {
    display: flex;
    margin: 0 !important;
    padding: 0 !important;
  }

  .emzeo-home-products-grid .col-inner {
    display: flex;
    width: 100%;
  }

  .product-small.box.emzeo-home-products-grid {
    border-radius: 0;
    flex: 1 1 auto;
    margin: 0 !important;
  }

  .product-small.box.emzeo-home-products-grid .box-text {
    min-height: 88px;
  }

  .product-small.box.emzeo-home-products-grid .box-text .emzeo-card-cart {
    bottom: 17px !important;
    right: 10px !important;
  }
}

@media (max-width: 849px) {
  .emzeo-footer-main {
    padding: 30px 0 24px;
  }

  .emzeo-footer h3 {
    font-size: 1.25rem;
  }

  .emzeo-footer-fanpage {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .ktx-process .timeline {
    flex-wrap: wrap;
    gap: 20px;
  }

  .ktx-process .timeline-line {
    display: none;
  }

  .ktx-process .timeline-step {
    width: 30%;
  }

  .ktx-process .process-title {
    font-size: 32px;
  }

  .ktx-process .timeline-step h3 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .ktx-process .timeline-step {
    width: 47%;
  }

  .ktx-process .step-circle {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .ktx-process .process-title {
    font-size: 28px;
  }
  /* KTX Process UX */
  .ktx-process {
    padding: 30px 0;
    background-color: #f0f2f5;
    font-family: "Inter", sans-serif;
  }
}

/* Emzeo header overrides */
.header-wrapper,
.header-wrapper .header-main,
.header-wrapper .header-top,
.header-wrapper .header-bottom,
.header-wrapper .header-bg-color {
  background: #fff !important;
  color: #111827;
}

.header-wrapper {
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
}

.header-wrapper a,
.header-wrapper .nav > li > a,
.header-wrapper .nav-small > li > a,
.header-wrapper .html,
.header-wrapper .icon-menu,
.header-wrapper .icon-search,
.header-wrapper .social-icons i {
  color: #111827 !important;
}

.header-wrapper .nav > li > a:hover,
.header-wrapper .nav > li.active > a,
.header-wrapper .social-icons a:hover i {
  color: #049847 !important;
}

.header-wrapper .search-field {
  background: #fff;
  border-color: #d1d5db;
  color: #111827;
}

.header-wrapper .ux-search-submit,
.header-wrapper .button.secondary {
  background: #facc15 !important;
  border-color: #facc15 !important;
  color: #111827 !important;
}

.header-wrapper .nav-dropdown {
  background: #fff;
  border-color: #e5e7eb;
  color: #111827;
}

.header-main .header-inner {
  gap: 28px;
  height: 82px;
  min-height: 82px;
}

.header-main #logo {
  align-items: center;
  display: flex;
  min-width: 220px;
}

.header-main #logo a {
  align-items: center;
  display: inline-flex;
  min-height: 64px;
  width: 180px;
}

.header-main .flex-left {
  flex: 1 1 auto;
  max-width: 520px;
}

.header-main .flex-left > .nav,
.header-main .flex-right > .nav {
  width: 100%;
}

.header-main .header-block {
  width: 100%;
}

.emzeo-header-search-block {
  min-width: 360px;
  width: 100%;
}

.emzeo-header-search-block .searchform-wrapper {
  width: 100%;
}

.emzeo-header-search-block .searchform .flex-row {
  align-items: stretch;
  background: #f3f4f6;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
}

.emzeo-header-search-block .searchform .flex-col {
  flex: 0 0 auto;
}

.emzeo-header-search-block .searchform .flex-col.flex-grow {
  flex: 1 1 auto;
}

.emzeo-header-search-block .searchform .flex-row > .flex-col:last-child {
  flex: 0 0 60px;
  max-width: 60px;
}

.emzeo-header-search-block .search-field {
  background: transparent;
  border: 0;
  border-radius: 5px 0 0 5px;
  box-shadow: none;
  color: #111827;
  font-size: 0.9375rem;
  height: 44px;
  padding: 0 14px;
}

.emzeo-header-search-block .form-flat input:not([type="submit"]),
.emzeo-header-search-block .form-flat select,
.emzeo-header-search-block .form-flat textarea {
  border-radius: 5px;
}

.emzeo-header-search-block .ux-search-submit {
  align-items: center;
  align-self: stretch;
  border: 0 !important;
  border-radius: 0 5px 5px 0 !important;
  box-sizing: border-box;
  display: inline-flex;
  flex: 0 0 60px;
  height: auto;
  justify-content: center;
  margin: 0;
  min-height: 44px;
  min-width: 60px !important;
  padding: 0 !important;
  width: 60px !important;
}

.emzeo-header-cats a {
  color: #111827 !important;
  text-transform: none;
}

.emzeo-header-cats {
  display: none;
  flex-wrap: wrap;
  gap: 6px 16px;
  line-height: 1.1;
}

.emzeo-header-cats a:hover {
  color: #049847 !important;
}

.emzeo-header-actions {
  color: #111827;
  min-width: 520px;
  white-space: nowrap;
}

.emzeo-header-action,
.emzeo-header-cart {
  color: #111827 !important;
  text-transform: none;
}

.emzeo-header-action:hover,
.emzeo-header-cart:hover {
  color: #049847 !important;
}

.emzeo-header-actions .emzeo-header-action[href="/he-thong-cua-hang/"] {
  display: none !important;
}

.emzeo-header-action-icon {
  color: #049847;
  font-size: 1.375rem;
  min-width: 26px;
}

.emzeo-header-phone strong {
  font-size: 0.9375rem;
}

.emzeo-header-cart {
  border-color: #049847 !important;
  border-radius: 6px !important;
  gap: 10px;
  min-height: 50px;
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.emzeo-header-cart-icon {
  font-size: 1.625rem;
  line-height: 1;
  min-width: 30px;
  transform: translateY(6px);
}

.emzeo-header-cart > span:last-child {
  transform: translateY(6px);
}

.emzeo-header-cart-icon em {
  align-items: center;
  background: #facc15;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #111827;
  display: inline-flex;
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 700;
  height: 20px;
  justify-content: center;
  line-height: 1;
  min-width: 20px;
  padding: 0 4px;
  position: absolute;
  right: -7px;
  top: -10px;
}

.header-wrapper .header-bottom,
.header-wrapper .header-bottom .header-bg-color,
.header-bottom,
.header-bottom .header-bg-color {
  background: #087a2c !important;
}

.header-bottom {
  border: 0;
  box-shadow: none !important;
  height: 58px;
  min-height: 58px;
  position: relative;
  top: auto !important;
  transform: none !important;
  z-index: 8;
}

.header-wrapper,
.header-wrapper.stuck,
.header-wrapper .header-main,
.header-wrapper .header-bottom,
.header-wrapper.stuck .header-main,
.header-wrapper.stuck .header-bottom {
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.header-bottom::before,
.header-bottom::after {
  display: none !important;
}

.header-main {
  position: relative;
  z-index: 9;
}

.header-wrapper.stuck .header-main,
.header-wrapper.stuck .header-main .header-inner {
  height: 82px !important;
  min-height: 82px !important;
}

.header-wrapper.stuck .header-bottom {
  height: 58px !important;
  min-height: 58px !important;
  top: auto !important;
  transform: none !important;
}

.header-wrapper.stuck .header-bottom .flex-row,
.header-wrapper.stuck .header-bottom .header-nav,
.header-wrapper.stuck .emzeo-bottom-menu {
  height: 58px;
  min-height: 58px;
}

.header-bottom .flex-row {
  height: 58px;
  justify-content: center;
}

.header-bottom .header-nav {
  justify-content: center;
  width: 100%;
}

.header-bottom .nav > li {
  margin: 0 12px;
}

.header-bottom .nav > li > a {
  color: #fff !important;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 58px;
  min-height: 58px;
  padding: 0;
}

.header-bottom .nav > li.current-menu-item > a,
.header-bottom .nav > li.current_page_item > a,
.header-bottom .nav > li.active > a,
.header-bottom .nav > li > a:hover {
  color: #facc15 !important;
}

.header-bottom .nav > li.has-dropdown > a::after {
  border-top-color: currentColor;
  opacity: 1;
}

.header-bottom .header-block {
  width: 100%;
}

.emzeo-bottom-menu {
  display: flex;
  gap: 24px;
  justify-content: center;
  min-height: 58px;
  width: 100%;
}

.emzeo-bottom-menu a,
.emzeo-bottom-menu-item > a {
  align-items: center;
  color: #fff !important;
  display: inline-flex;
  gap: 6px;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.emzeo-bottom-menu-item.has-children > a::after,
.emzeo-bottom-subitem.has-children > a::after {
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  display: inline-block;
  height: 6px;
  margin-top: -3px;
  opacity: 0.9;
  transform: rotate(45deg);
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 6px;
}

.emzeo-bottom-menu-item.has-children:hover > a::after {
  opacity: 1;
  transform: translateY(2px) rotate(45deg);
}

.emzeo-bottom-subitem.has-children > a::after {
  margin-left: 14px;
  margin-top: 0;
  transform: rotate(-45deg);
}

.emzeo-bottom-subitem.has-children:hover > a::after {
  opacity: 1;
  transform: translateX(2px) rotate(-45deg);
}

.emzeo-bottom-menu a:hover,
.emzeo-bottom-menu-item:hover > a,
.emzeo-bottom-menu a.is-active {
  color: #facc15 !important;
}

.emzeo-bottom-menu-item,
.emzeo-bottom-subitem {
  align-items: center;
  display: inline-flex;
  min-height: 58px;
  position: relative;
}

.emzeo-bottom-subitem {
  display: block;
  min-height: 0;
  width: 100%;
}

.emzeo-bottom-menu-item > a > span {
  display: none;
}

.emzeo-bottom-submenu {
  background: #087a2c;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.18);
  display: none;
  left: 0;
  min-width: 280px;
  position: absolute;
  top: 100%;
  z-index: 60;
}

.emzeo-bottom-menu-item:hover > .emzeo-bottom-submenu,
.emzeo-bottom-subitem:hover > .emzeo-bottom-submenu {
  display: block;
}

.emzeo-bottom-submenu a,
.emzeo-bottom-subitem > a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff !important;
  display: flex;
  font-size: 0.9375rem;
  font-weight: 600;
  justify-content: space-between;
  line-height: 1.25;
  min-height: 40px;
  padding: 0 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

.emzeo-bottom-subitem > a {
  width: 100%;
}

.emzeo-bottom-submenu a:hover,
.emzeo-bottom-subitem:hover > a {
  background: #36a936;
  color: #facc15 !important;
}

.emzeo-bottom-submenu-child {
  left: 100%;
  top: 0;
}

@media (max-width: 1100px) {
  .header-main .header-inner {
    gap: 18px;
  }

  .emzeo-header-actions {
    gap: 14px;
    min-width: 440px;
  }

  .header-bottom .nav > li {
    margin: 0 8px;
  }

  .header-bottom .nav > li > a {
    font-size: 0.875rem;
  }

  .emzeo-bottom-menu {
    gap: 16px;
    font-size: 0.8125rem;
  }
}

@media (max-width: 849px) {
  html {
    --flatsome--header--sticky-height: 132px !important;
  }

  .header-wrapper,
  .header-wrapper .header-main,
  .header-wrapper .header-bottom,
  .header-wrapper .header-main .header-bg-color,
  .header-wrapper .header-bottom .header-bg-color {
    background: #049847 !important;
  }

  .header-wrapper {
    border-bottom: 0;
    box-shadow: none;
    min-height: 132px !important;
  }

  #header {
    min-height: 132px !important;
  }

  .header-main {
    height: 58px !important;
    min-height: 58px !important;
  }

  .header-wrapper.stuck .header-main,
  .header-wrapper.stuck .header-main .header-inner {
    height: 58px !important;
    min-height: 58px !important;
  }

  .header-main .header-inner {
    gap: 0;
    height: 58px;
    min-height: 58px;
    padding: 0 10px;
    position: relative;
  }

  .header-main #logo {
    height: 58px;
    left: 50%;
    min-width: 0;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 112px;
    z-index: 2;
  }

  .header-main #logo a {
    height: 58px;
    justify-content: center;
    min-height: 58px;
    width: 112px;
  }

  .header-main .show-for-medium.flex-left,
  .header-main .show-for-medium.flex-right {
    flex: 1 1 50%;
    max-width: 50%;
    width: 50%;
    z-index: 3;
  }

  .header-main .show-for-medium.flex-right {
    margin-left: auto;
  }

  .header-main .mobile-nav {
    min-height: 58px;
  }

  .header-main .mobile-nav > li {
    margin: 0;
  }

  .header-main .mobile-nav .nav-icon a,
  .header-main .mobile-nav .icon-menu,
  .header-main .mobile-nav .icon-shopping-cart {
    color: #fff !important;
  }

  .header-main .mobile-nav .nav-icon a {
    padding: 0;
  }

  .header-main .mobile-nav .icon-menu {
    font-size: 1.625rem;
  }

  .emzeo-header-search-block {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    height: auto !important;
    min-height: 0 !important;
    min-width: 0;
    padding: 0;
    width: 100%;
  }

  .header-bottom .emzeo-header-search-block,
  .header-bottom .emzeo-header-search-block p,
  .header-bottom .emzeo-header-search-block form,
  .header-bottom .emzeo-header-search-block .searchform,
  .header-bottom .emzeo-header-search-block .searchform-wrapper {
    line-height: 1;
    margin: 0 !important;
    padding: 0 !important;
  }

  .header-bottom .emzeo-header-search-block form,
  .header-bottom .emzeo-header-search-block .searchform,
  .header-bottom .emzeo-header-search-block .searchform-wrapper {
    height: 36px !important;
    min-height: 36px !important;
  }

  .emzeo-header-actions {
    gap: 0;
    justify-content: flex-end;
    min-width: 0;
    width: auto;
  }

  .emzeo-header-actions .emzeo-header-action {
    display: none !important;
  }

  .emzeo-header-cart span:last-child {
    display: none;
  }

  .header-main .header-block {
    width: auto;
  }

  .emzeo-header-cart {
    border: 0 !important;
    min-height: 42px;
    padding: 0 8px !important;
  }

  .emzeo-header-cart-icon {
    color: #fff;
    font-size: 1.75rem;
    min-width: 32px;
  }

  .emzeo-header-cart-icon em {
    border-color: #049847;
    right: -6px;
    top: -10px;
  }

  .emzeo-header-cats {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    margin-top: 7px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scrollbar-width: none;
    width: 100%;
  }

  .emzeo-header-cats::-webkit-scrollbar {
    display: none;
  }

  .emzeo-header-cats a {
    color: #fff !important;
    flex: 1 1 0;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.15;
    min-width: max-content;
    padding: 0 4px;
    text-align: center;
    white-space: nowrap;
  }

  .header-bottom {
    display: block !important;
    height: auto !important;
    min-height: 74px !important;
    padding: 2px 14px 8px;
  }

  .header-wrapper.stuck .header-bottom {
    height: auto !important;
    min-height: 74px !important;
    padding: 2px 14px 8px;
    position: relative !important;
    top: auto !important;
  }

  .header-bottom > .flex-row,
  .header-bottom .mobile-nav,
  .header-bottom .header-block,
  .header-wrapper.stuck .header-bottom > .flex-row,
  .header-wrapper.stuck .header-bottom .header-nav,
  .header-wrapper.stuck .emzeo-bottom-menu {
    display: block;
    height: auto !important;
    min-height: 0 !important;
    width: 100%;
  }

  .header-bottom > .flex-row {
    height: auto !important;
    min-height: 0 !important;
    padding: 0;
  }

  .header-bottom .mobile-nav > li {
    margin: 0;
    width: 100%;
  }

  .header-bottom .emzeo-header-search-block .searchform .flex-row {
    height: 36px !important;
    margin: 0 !important;
    max-height: 36px !important;
    min-height: 36px !important;
  }

  .header-bottom .emzeo-header-search-block .live-search-results {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .header-bottom .emzeo-header-search-block .search-field {
    color: #111827;
    height: 34px !important;
    min-height: 34px !important;
  }

  .header-bottom .emzeo-header-search-block .search-field::placeholder {
    color: #111827;
    opacity: 0.65;
  }

  .header-bottom .emzeo-header-search-block .searchform .flex-row > .flex-col:last-child {
    flex-basis: 42px;
    max-width: 42px;
  }

  .header-bottom .emzeo-header-search-block .ux-search-submit {
    flex-basis: 42px;
    height: 34px !important;
    min-height: 34px !important;
    min-width: 42px !important;
    width: 42px !important;
  }

  .mobile-sidebar {
    background: #fff;
    padding-bottom: 52px;
  }

  .mobile-sidebar .sidebar-menu {
    padding: 0;
  }

  .emzeo-mobile-drawer-account {
    align-items: center;
    background: #049847;
    color: #fff !important;
    display: flex;
    gap: 10px;
    min-height: 60px;
    padding: 10px 14px;
    text-transform: none;
  }

  .emzeo-mobile-drawer-account__icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
  }

  .emzeo-mobile-drawer-account__icon i {
    color: #fff;
    font-size: 1.25rem;
  }

  .emzeo-mobile-drawer-account strong,
  .emzeo-mobile-drawer-account small {
    display: block;
    line-height: 1.2;
  }

  .emzeo-mobile-drawer-account strong {
    font-size: 0.9375rem;
    font-weight: 800;
  }

  .emzeo-mobile-drawer-account small {
    font-size: 0.75rem;
    font-weight: 700;
  }

  .mobile-sidebar .nav-sidebar {
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 18px;
  }

  .mobile-sidebar .nav-sidebar > li {
    margin: 0;
  }

  .mobile-sidebar .nav-sidebar .searchform {
    margin: 0;
  }

  .mobile-sidebar .nav-sidebar .searchform .flex-row {
    align-items: center;
    background: #fff;
    border: 1px solid #dcdfe4;
    border-radius: 999px;
    height: 36px;
    overflow: hidden;
  }

  .mobile-sidebar .nav-sidebar .search-field {
    border: 0;
    box-shadow: none;
    color: #111827;
    font-size: 0.875rem;
    height: 34px;
    margin: 0;
  }

  .mobile-sidebar .nav-sidebar .search-field::placeholder {
    color: #8b95a1;
    opacity: 1;
  }

  .mobile-sidebar .nav-sidebar .ux-search-submit {
    background: transparent !important;
    border: 0 !important;
    color: #111827 !important;
    height: 34px;
    min-height: 34px;
    min-width: 42px !important;
    width: 42px !important;
  }

  .emzeo-mobile-drawer-menu {
    background: #fff;
    display: block;
    width: 100%;
  }

  .emzeo-mobile-drawer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .emzeo-mobile-drawer-menu li {
    margin: 0;
    position: relative;
  }

  .emzeo-mobile-drawer-menu a {
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    color: #111827 !important;
    display: flex;
    font-size: 0.875rem;
    font-weight: 500;
    justify-content: space-between;
    line-height: 1.3;
    min-height: 38px;
    padding: 8px 10px;
    text-transform: none;
  }

  .emzeo-mobile-drawer-menu .menu-item-has-children > a::after {
    color: #111827;
    content: "\f104";
    font-family: "fl-icons";
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.85;
  }

  .emzeo-mobile-drawer-menu .sub-menu {
    background: #f8faf8;
  }

  .emzeo-mobile-drawer-menu .sub-menu a {
    font-size: 0.8125rem;
    min-height: 36px;
    padding-left: 22px;
  }

  .emzeo-mobile-drawer-menu .sub-menu .sub-menu a {
    padding-left: 34px;
  }

  .emzeo-mobile-drawer-menu a i {
    color: #111827;
    font-size: 1rem;
    opacity: 0.85;
  }

  .emzeo-mobile-drawer-contact {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    bottom: 0;
    display: flex;
    left: 0;
    position: fixed;
    width: min(300px, 100vw);
    z-index: 1000;
  }

  .emzeo-mobile-drawer-contact a {
    align-items: center;
    color: #111827 !important;
    display: flex;
    flex: 1 1 0;
    font-size: 0.875rem;
    gap: 8px;
    justify-content: center;
    min-height: 42px;
    text-transform: none;
  }

  .emzeo-mobile-drawer-contact a + a {
    border-left: 1px solid #e5e7eb;
  }

  .emzeo-mobile-drawer-contact i {
    color: #111827;
  }
}
