.absolute-footer {
  display: none;
}

.t5s-hero-banner {
  isolation: isolate;
}

/* PestMan footer UX */
.t5s-footer-pestman * {
  letter-spacing: 0;
}

.t5s-footer-pestman {
  position: relative;
  background: #007d34;
  color: #fff;
  padding: 64px 16px 36px;
}

.t5s-footer-pestman>div:first-child {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  /* max-width: 1060px;
  margin: 0 auto; */
}

.t5s-footer-pestman h2 {
  margin: 0;
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
}

.t5s-footer-pestman h2+p {
  margin: 0 0 20px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
}

.t5s-footer-pestman .grid.grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
}

.t5s-footer-pestman .mt-20 {
  margin-top: 80px;
}

.t5s-footer-pestman .mt-16 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 36px;
  max-width: 900px;
  margin: 64px auto 0;
}

.t5s-footer-pestman .mt-14 {
  max-width: 900px;
  margin: 56px auto 0;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

.t5s-footer-pestman .h-px {
  height: 1px;
  max-width: 1060px;
  margin: 16px auto 0;
  background: rgba(255, 255, 255, 0.7);
}

.t5s-footer-menu h3 {
  margin: 0 0 18px;
  color: #ffad12;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.t5s-footer-menu ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.t5s-footer-menu li {
  margin: 0;
  padding: 0;
}

.t5s-footer-menu a {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.t5s-footer-menu a:hover {
  color: #ffad12;
}

.t5s-footer-newsletter form {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.t5s-footer-newsletter p {
  margin: 0;
  padding: 0;
}

.t5s-footer-newsletter input {
  display: block;
  width: 150px;
  height: 32px;
  margin: 0;
  padding: 0 14px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  color: #111;
  font-size: 13px;
  line-height: 32px;
}

.t5s-footer-newsletter input::placeholder {
  color: #111;
  opacity: 1;
}

.t5s-footer-newsletter input:focus {
  outline: 2px solid rgba(255, 173, 18, 0.45);
  outline-offset: 0;
}

.t5s-footer-newsletter button,
.t5s-footer-newsletter input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  height: 32px;
  min-height: 32px;
  margin: 0;
  padding: 0 18px;
  border: 1px solid #d38a00;
  border-radius: 0;
  background: #ffad12;
  box-shadow: none;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  line-height: 30px;
  text-transform: none;
  cursor: pointer;
}

.t5s-footer-newsletter button:hover,
.t5s-footer-newsletter input[type="submit"]:hover {
  background: #fff;
  color: #111;
}

.t5s-footer-pestman img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  .t5s-footer-pestman {
    padding-top: 44px;
  }

  .t5s-footer-pestman>div:first-child {
    grid-template-columns: 1fr;
  }

  .t5s-footer-pestman .grid.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 20px;
  }

  .t5s-footer-pestman .mt-16 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .t5s-footer-newsletter form {
    align-items: stretch;
    flex-direction: column;
  }

  .t5s-footer-newsletter input {
    width: 100%;
  }

  .t5s-footer-newsletter button,
  .t5s-footer-newsletter input[type="submit"] {
    width: 100%;
  }
}

/* Product detail page */
.t5s-product-detail {
  background: #fff;
  color: #111;
}

.t5s-product-detail-container {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.t5s-product-detail-hero {
  padding: 38px 0 30px;
  background: #fff;
}

.t5s-product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.t5s-product-gallery {
  min-width: 0;
}

.t5s-product-main-swiper {
  width: 100%;
  height: 470px;
  background: #fff;
}

.t5s-product-main-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.t5s-product-main-swiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t5s-product-gallery-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 470px;
  border: 1px solid #ddd;
  color: #777;
  font-size: 14px;
  font-weight: 700;
}

.t5s-product-thumb-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.t5s-product-thumb-prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  border: 1px solid #2f8a35;
  border-radius: 0;
  background: #fff;
  color: #2f8a35;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.t5s-product-thumb-swiper {
  width: 100%;
}

.t5s-product-thumb-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 105px;
  padding: 0;
  border: 1px solid #d7d7d7;
  background: #fff;
  cursor: pointer;
  opacity: 1;
}

.t5s-product-thumb-swiper .swiper-slide-thumb-active {
  border-color: #2f8a35;
}

.t5s-product-thumb-swiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t5s-product-summary h1 {
  margin: 0 0 16px;
  color: #0b7d2b;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.t5s-product-description {
  margin: 0 0 14px;
  color: #111;
  font-size: 13px;
  line-height: 1.42;
}

.t5s-product-specs {
  display: grid;
  gap: 9px;
  margin: 0;
}

.t5s-product-specs div {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 13px;
  line-height: 1.35;
}

.t5s-product-specs dt {
  display: inline;
  color: #111;
  font-size: inherit;
  font-weight: 800;
}

.t5s-product-specs dd {
  display: inline;
  margin: 0;
  color: #111;
  font-size: inherit;
  line-height: inherit;
}

.t5s-product-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0 26px;
  padding: 8px 15px;
  border: 0;
  background: #238233;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.t5s-product-contact-link:hover {
  background: #166b26;
  color: #fff;
}

.t5s-product-technical-inline {
  margin-top: 0;
}

.t5s-product-technical-inline h2 {
  margin: 0 0 16px;
  color: #111;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.t5s-product-richtext {
  color: #111;
  font-size: 13px;
  line-height: 1.42;
}

.t5s-product-richtext p,
.t5s-product-richtext ul,
.t5s-product-richtext ol {
  margin: 0 0 10px;
}

.t5s-product-richtext ul,
.t5s-product-richtext ol {
  padding-left: 18px;
}

.t5s-product-richtext li {
  margin-bottom: 5px;
}

.t5s-product-richtext strong,
.t5s-product-richtext b {
  color: #111;
  font-weight: 800;
}

.t5s-product-content-section {
  padding: 36px 0 70px;
  background: #fff;
}

.t5s-product-content-card {
  padding: 20px 16px 34px;
  border: 0;
  border-top: 3px solid #ffad12;
  background: #f7f7f7;
}

.t5s-product-content-card h2 {
  margin: 0 0 18px;
  color: #0b7d2b;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.t5s-product-content-card .t5s-product-richtext {
  font-size: 13px;
  line-height: 1.48;
}

.t5s-product-content-card .t5s-product-richtext p {
  margin-bottom: 14px;
}

.t5s-product-content-card .t5s-product-richtext h3,
.t5s-product-content-card .t5s-product-richtext h4 {
  margin: 16px 0 8px;
  color: #ff9900;
  font-size: 16px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .t5s-product-detail-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .t5s-product-main-swiper {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .t5s-product-detail-container {
    width: min(100% - 24px, 980px);
  }

  .t5s-product-detail-hero {
    padding-top: 24px;
  }

  .t5s-product-main-swiper {
    height: 320px;
  }

  .t5s-product-thumb-swiper .swiper-slide {
    height: 82px;
  }

  .t5s-product-summary h1 {
    font-size: 22px;
  }

  .t5s-product-content-card h2 {
    font-size: 26px;
  }
}

.t5s-products-archive {
  background: #fff;
  color: #111;
  overflow: hidden;
}

.t5s-product-detail {
  background: #fff;
  color: #111;
}

.t5s-product-detail-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.t5s-product-detail-hero {
  padding: 42px 0 74px;
  background: linear-gradient(180deg, #f7f7f7 0%, #eef8ec 100%);
}

.t5s-product-detail-breadcrumb {
  min-height: 24px;
  margin-bottom: 28px;
  color: #5f6b61;
  font-size: 13px;
  font-weight: 600;
}

.t5s-product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.t5s-product-gallery-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 44px;
  border: 1px solid #e8ece8;
  background: #fff;
}

.t5s-product-gallery-main img {
  max-width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.t5s-product-gallery-main span {
  color: #777;
  font-size: 15px;
  font-weight: 700;
}

.t5s-product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.t5s-product-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  min-height: 88px;
  padding: 8px;
  border: 1px solid #e1e5e1;
  background: #fff;
  cursor: pointer;
}

.t5s-product-thumb.is-active,
.t5s-product-thumb:hover {
  border-color: #2f8a35;
}

.t5s-product-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.t5s-product-category {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  background: #fff4da;
  color: #2f8a35;
  font-size: 13px;
  font-weight: 800;
}

.t5s-product-summary h1 {
  margin: 0;
  color: #2f8a35;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.t5s-product-description {
  margin: 20px 0 0;
  color: #222;
  font-size: 17px;
  line-height: 1.6;
}

.t5s-product-specs {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.t5s-product-specs div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 18px;
  border: 1px solid #e4e9e3;
  background: #fff;
}

.t5s-product-specs dt {
  color: #2f8a35;
  font-size: 14px;
  font-weight: 800;
}

.t5s-product-specs dd {
  margin: 0;
  color: #111;
  font-size: 14px;
  line-height: 1.45;
}

.t5s-product-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 14px 28px;
  border: 1px solid #d99500;
  background: #ffad12;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.t5s-product-content-section {
  padding: 70px 0;
  background: #fff;
}

.t5s-product-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.t5s-product-content-card {
  padding: 34px;
  border: 1px solid #e6e6e6;
  background: #fff;
}

.t5s-product-content-card-wide {
  background: #fbfbfb;
}

.t5s-product-content-card h2,
.t5s-product-section-heading h2 {
  margin: 0 0 20px;
  color: #2f8a35;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.t5s-product-richtext {
  color: #222;
  font-size: 16px;
  line-height: 1.68;
}

.t5s-product-richtext p,
.t5s-product-richtext ul,
.t5s-product-richtext ol {
  margin: 0 0 16px;
}

.t5s-product-richtext ul,
.t5s-product-richtext ol {
  padding-left: 22px;
}

.t5s-product-richtext li {
  margin-bottom: 8px;
}

.t5s-product-richtext strong {
  color: #111;
}

.t5s-product-related {
  padding: 66px 0 76px;
  background: #f5f5f5;
}

.t5s-product-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.t5s-products-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.t5s-products-hero-image,
.t5s-products-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.t5s-products-hero-image {
  object-fit: cover;
  z-index: -2;
}

.t5s-products-hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(16, 36, 24, 0.76) 0%, rgba(16, 36, 24, 0.56) 42%, rgba(16, 36, 24, 0.22) 100%);
}

.t5s-products-hero-inner {
  padding: 74px 0 86px;
}

.t5s-products-breadcrumb {
  margin-bottom: 68px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.t5s-products-hero h1 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.t5s-products-hero h1 span {
  display: block;
  color: #ffad12;
}

.t5s-products-hero p {
  max-width: 410px;
  margin: 24px 0 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.t5s-products-hero a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 13px 22px;
  border: 1px solid #db9300;
  background: #ffad12;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.t5s-products-main {
  position: relative;
  padding: 62px 0 92px;
}

.t5s-products-main::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: 48px;
  width: 330px;
  height: 520px;
  background: rgba(255, 173, 18, 0.18);
  clip-path: polygon(50% 0, 100% 26%, 100% 100%, 50% 82%, 0 100%, 0 26%);
  pointer-events: none;
  z-index: 0;
}

.t5s-products-search,
.t5s-products-categories,
.t5s-products-results {
  position: relative;
  z-index: 1;
}

.t5s-products-search {
  display: flex;
  align-items: center;
  width: min(540px, 100%);
  margin: 0 auto 28px;
}

.t5s-products-search-input {
  width: 100%;
  height: 34px;
  border: 1px solid #d9dfe3;
  border-radius: 999px;
  padding: 0 42px 0 18px;
  background: #fff;
  color: #111;
  font-size: 13px;
  box-shadow: none;
}

.t5s-products-search-input:focus {
  border-color: #2f8a35;
  box-shadow: 0 0 0 2px rgba(47, 138, 53, 0.12);
  outline: none;
}

.t5s-products-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  margin-left: -34px;
  border: 0;
  border-radius: 999px;
  background: #2f8a35;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.t5s-products-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.t5s-products-categories a,
.t5s-products-categories span {
  min-width: 170px;
  padding: 10px 18px;
  border: 1px solid #d9dfe3;
  border-radius: 999px;
  background: #fff;
  color: #2f8a35;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.t5s-products-categories a:hover {
  border-color: #2f8a35;
  background: #f0f8ef;
}

.t5s-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.t5s-products-card {
  min-height: 350px;
  border: 1px solid #e6e6e6;
  background: #fff;
}

.t5s-products-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  padding: 22px;
  background: #fff;
  text-decoration: none;
}

.t5s-products-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.24s ease;
}

.t5s-products-card:hover .t5s-products-card-image img {
  transform: scale(1.04);
}

.t5s-products-card-body {
  min-height: 130px;
  padding: 20px;
  background: #f4f4f4;
}

.t5s-products-card h3 {
  margin: 0;
  color: #111;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.t5s-products-card h3 a {
  color: inherit;
  text-decoration: none;
}

.t5s-products-card p {
  margin: 10px 0 0;
  color: #555;
  font-size: 13px;
  line-height: 1.45;
}

.t5s-products-card-link {
  display: inline-block;
  margin-top: 14px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.t5s-products-builder-image-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 150px;
  background: #f4f4f4;
  color: #999;
  font-size: 13px;
  font-weight: 700;
}

.t5s-products-empty {
  grid-column: 1 / -1;
  margin: 20px 0;
  color: #2f8a35;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.t5s-products-pagination {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 12px;
}

.t5s-products-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-height: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #777;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.t5s-products-page-link.is-active,
.t5s-products-page-link:hover {
  background: #2f8a35;
  color: #fff;
}

.t5s-products-main.is-loading .t5s-products-results {
  opacity: 0.45;
  pointer-events: none;
}

.t5s-products-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: start;
  justify-content: center;
  padding: 70px max(16px, calc((100vw - 1120px) / 2)) 82px;
  background: #f4f4f4;
}

.t5s-products-cta-title {
  position: relative;
  min-height: 420px;
}

.t5s-products-cta-title::after {
  content: "";
  position: absolute;
  left: 70px;
  bottom: 0;
  width: 470px;
  max-width: 78%;
  height: 280px;
  background: rgba(47, 138, 53, 0.12);
  clip-path: polygon(50% 0, 100% 38%, 100% 100%, 50% 72%, 0 100%, 0 38%);
}

.t5s-products-cta-title h2 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: #2f8a35;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.t5s-products-cta-form {
  padding: 44px 42px;
  background: #ffad12;
}

.t5s-products-cta-form input,
.t5s-products-cta-form select,
.t5s-products-cta-form textarea {
  width: 100%;
  min-height: 38px;
  margin-bottom: 12px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-size: 13px;
  box-shadow: none;
}

.t5s-products-cta-form textarea {
  min-height: 150px;
}

.t5s-products-cta-form input[type="submit"],
.t5s-products-cta-form button[type="submit"] {
  display: block;
  width: auto;
  min-width: 120px;
  margin: 18px auto 0;
  padding: 11px 18px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1024px) {

  .t5s-product-detail-layout,
  .t5s-product-content-grid {
    grid-template-columns: 1fr;
  }

  .t5s-product-gallery-main {
    min-height: 420px;
  }

  .t5s-product-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .t5s-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .t5s-products-cta {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .t5s-products-cta-title {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .t5s-product-detail-hero {
    padding: 28px 0 48px;
  }

  .t5s-product-detail-layout {
    gap: 28px;
  }

  .t5s-product-gallery-main {
    min-height: 300px;
    padding: 24px;
  }

  .t5s-product-gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .t5s-product-summary h1 {
    font-size: 34px;
  }

  .t5s-product-specs div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .t5s-product-content-section,
  .t5s-product-related {
    padding: 44px 0;
  }

  .t5s-product-content-card {
    padding: 24px 18px;
  }

  .t5s-product-content-card h2,
  .t5s-product-section-heading h2 {
    font-size: 27px;
  }

  .t5s-product-related-grid {
    grid-template-columns: 1fr;
  }

  .t5s-products-hero {
    min-height: 430px;
  }

  .t5s-products-hero-inner {
    padding: 48px 0 58px;
  }

  .t5s-products-breadcrumb {
    margin-bottom: 42px;
  }

  .t5s-products-hero h1 {
    font-size: 38px;
  }

  .t5s-products-main {
    padding: 42px 0 56px;
  }

  .t5s-products-categories {
    gap: 10px;
  }

  .t5s-products-categories a {
    min-width: 0;
    width: 100%;
  }

  .t5s-products-grid {
    grid-template-columns: 1fr;
  }

  .t5s-products-card-image {
    height: 210px;
  }

  .t5s-products-cta {
    padding-top: 46px;
    padding-bottom: 56px;
  }

  .t5s-products-cta-title h2 {
    font-size: 30px;
  }

  .t5s-products-cta-form {
    padding: 28px 20px;
  }
}

.t5s-hero-bg-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.t5s-hero-bg-item.is-active {
  opacity: 1;
}

.t5s-hero-banner {
  min-height: 740px;
}

.t5s-hero-banner > .absolute.inset-0.bg-black\/55 {
  background: rgba(0, 0, 0, 0.58);
}

.t5s-hero-banner > .container {
  min-height: 736px;
  max-width: 1310px;
  padding-top: 54px;
  padding-bottom: 78px;
}

.t5s-hero-banner .t5s-hero-title {
  max-width: 750px;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: 0;
}

.t5s-hero-banner .t5s-hero-title span {
  line-height: inherit;
}

.t5s-hero-banner .t5s-hero-title + p {
  margin-top: 56px;
  max-width: 560px;
  font-size: 20px;
  line-height: 1.65;
}

.t5s-hero-banner a[href] span {
  font-size: 0;
}

.t5s-hero-banner a[href] span::before {
  content: "\2192";
  font-size: 18px;
  line-height: 1;
}

.t5s-process-section {
  background: #f5f5f5;
}

.t5s-process-section .row,
.t5s-process-section .col {
  max-width: none;
}

.t5s-process-title {
  margin: 0;
  color: #2f7f35;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.t5s-process-desc {
  max-width: 470px;
  margin: 12px auto 0;
  color: #111;
  font-size: 16px;
  line-height: 1.5;
}

.t5s-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.t5s-process-card {
  background: #fff;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.t5s-process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.t5s-process-card-image {
  display: block;
  width: 100%;
  height: 184px;
  object-fit: cover;
}

.t5s-process-card-body {
  min-height: 120px;
  padding: 18px 18px 24px;
}

.t5s-process-card-title {
  margin: 0;
  color: #128030;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.t5s-process-card-text {
  margin: 14px 0 0;
  color: #111;
  font-size: 14px;
  line-height: 1.45;
}

.t5s-network-section {
  background: #fff;
  border-bottom: 22px solid #f1fff0;
}

.t5s-network-section .row,
.t5s-network-section .col {
  max-width: none;
}

.t5s-network-title {
  margin: 0;
  color: #2f7f35;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.t5s-network-title span {
  color: #f8ad12;
}

.t5s-network-filter {
  position: relative;
  display: block;
}

.t5s-network-filter::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 13px;
  height: 13px;
  border: 2px solid #2f8a35;
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.t5s-network-filter select {
  width: 100%;
  height: 34px;
  border: 1px solid #d2d2d2;
  border-radius: 0;
  background: #fff;
  color: #128030;
  font-size: 14px;
  font-weight: 600;
  padding: 0 38px;
}

.t5s-network-list-wrap {
  background: #fff7e8;
}

.t5s-network-list {
  max-height: 420px;
  overflow: auto;
  padding-right: 12px;
}

.t5s-network-list::-webkit-scrollbar {
  width: 4px;
}

.t5s-network-list::-webkit-scrollbar-thumb {
  background: #2f8a35;
}

.t5s-network-card {
  background: #fff;
  padding: 20px 22px;
}

.t5s-network-card+.t5s-network-card {
  margin-top: 18px;
}

.t5s-network-card.is-hidden {
  display: none;
}

.t5s-network-card.is-active {
  outline: 2px solid #2f8a35;
}

.t5s-network-card-label {
  display: inline-flex;
  background: #f6f6f6;
  color: #111;
  font-size: 13px;
  padding: 8px 10px;
}

.t5s-network-card h4 {
  margin: 16px 0 12px;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.t5s-network-card p {
  display: flex;
  gap: 9px;
  margin: 10px 0 0;
  color: #111;
  font-size: 14px;
  line-height: 1.45;
}

.t5s-network-card i {
  color: #f8ad12;
  font-style: normal;
}

.t5s-network-canvas-wrap {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.t5s-network-canvas {
  display: block;
  width: 100%;
  height: auto;
}

.t5s-network-legend {
  width: 126px;
  margin-top: -180px;
  margin-left: 4px;
  background: rgba(246, 246, 246, 0.92);
  padding: 12px 14px;
}

.t5s-network-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 14px;
  line-height: 1.7;
}

.t5s-network-legend i {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid #2f8a35;
  background: #fff;
}

.t5s-network-legend i.is-branch {
  background: #2f8a35;
  border-color: #fff;
  box-shadow: 0 0 0 1px #2f8a35;
}

.t5s-network-button {
  min-width: 184px;
  justify-content: center;
}

.t5s-customer-logos-section {
  background: #f5f5f5;
}

.t5s-customer-logos-section .row,
.t5s-customer-logos-section .col {
  max-width: none;
}

.t5s-customer-logos-title {
  margin: 0;
  color: #2f7f35;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.t5s-customer-logos-desc {
  max-width: 470px;
  margin: 8px auto 0;
  color: #111;
  font-size: 15px;
  line-height: 1.55;
}

.t5s-customer-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.t5s-customer-tab {
  min-width: 154px;
  height: 32px;
  border: 1px solid #d8dce2;
  background: #fff;
  color: #128030;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.t5s-customer-tab.active,
.t5s-customer-tab:hover {
  border-color: #f8ad12;
  background: #f8ad12;
  color: #111;
  font-weight: 700;
}

.t5s-customer-tab-content {
  display: none;
}

.t5s-customer-tab-content.active {
  display: block;
}

.t5s-customer-logo-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 28px 30px;
  align-items: center;
}

.t5s-customer-logo-item {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  filter: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.t5s-customer-logo-item:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.t5s-customer-logo-item img {
  display: block;
  max-width: 118px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1199px) {
  .t5s-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .t5s-customer-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .t5s-process-section {
    padding: 44px 0 52px;
  }

  .t5s-process-title {
    font-size: 31px;
  }

  .t5s-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 360px;
  }

  .t5s-network-section {
    padding: 44px 0 58px;
  }

  .t5s-network-title {
    font-size: 31px;
  }

  .t5s-network-list {
    max-height: 360px;
  }

  .t5s-network-legend {
    margin: 14px auto 0;
  }

  .t5s-customer-logos-section {
    padding: 44px 0 56px;
  }

  .t5s-customer-logos-title {
    font-size: 31px;
  }

  .t5s-customer-tab {
    min-width: 132px;
  }

  .t5s-customer-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

.t5s-services-section {
  background: #fff7e8;
  border-top: 3px solid #f8ad12;
}

.t5s-services-section .row,
.t5s-services-section .col {
  max-width: none;
}

.t5s-services-title {
  margin: 0;
  color: #2f7f35;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.t5s-services-desc {
  margin: 10px auto 0;
  color: #111;
  font-size: 16px;
  line-height: 1.55;
}

.t5s-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 26px;
  margin-top: 36px;
}

.t5s-service-card-media {
  display: flex;
  height: 240px;
  align-items: center;
  justify-content: center;
  background: #eeeeee;
  color: #f8ad12;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.t5s-service-card-media:hover {
  background: #f3f3f3;
  transform: translateY(-2px);
}

.t5s-service-card-media svg {
  width: 92px;
  height: 92px;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.t5s-service-icon-image {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.t5s-service-card-title {
  margin: 18px 0 6px;
  color: #128030;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: 0;
}

.t5s-service-card-title a {
  color: inherit;
}

.t5s-service-card-title a:hover {
  color: #f8ad12;
}

.t5s-service-card-desc {
  margin: 0;
  color: #111;
  font-size: 14px;
  line-height: 1.5;
}

.t5s-services-button {
  min-width: 132px;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1199px) {
  .t5s-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .t5s-services-title {
    font-size: 31px;
  }

  .t5s-services-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .t5s-service-card-media {
    height: 150px;
  }
}

.t5s-awards-slider-section {
  width: 100%;
  overflow: hidden;
  background: #FFF7E8;
  padding: 0;
}

.t5s-awards-slider {
  height: var(--t5s-awards-height, 220px);
}

.t5s-awards-slider .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}

.t5s-awards-slider .swiper-slide {
  height: var(--t5s-awards-height, 220px);
}

.t5s-awards-item {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.t5s-awards-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(var(--t5s-awards-height, 220px) - 44px);
  object-fit: contain;
}

.t5s-trust-partner-section {
  background: #fff;
  padding: 62px 0 74px;
}

.t5s-trust-title {
  max-width: 720px;
  margin: 0 auto 12px;
  color: #2f7f35;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.33;
  text-align: center;
  letter-spacing: 0;
}

.t5s-trust-description {
  max-width: 590px;
  margin: 0 auto;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.48;
  text-align: center;
}

.t5s-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.t5s-trust-card {
  min-height: 382px;
  background: #effcef;
  padding: 42px 18px 30px;
  text-align: center;
}

.t5s-trust-card.is-featured {
  box-shadow: 0 7px 13px rgba(0, 0, 0, 0.2);
}

.t5s-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 86px;
  margin-bottom: 12px;
}

.t5s-trust-icon svg {
  width: 86px;
  height: 86px;
  fill: none;
  stroke: #050505;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.t5s-trust-card h3 {
  margin: 0;
  color: #171717;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.t5s-trust-line {
  display: block;
  width: 74px;
  height: 1px;
  margin: 10px auto 10px;
  background: #efc047;
}

.t5s-trust-card p {
  max-width: 270px;
  margin: 0 auto;
  color: #171717;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.t5s-customer-solutions-section {
  background: #f4f4f4;
  border-top: 3px solid #efc047;
  padding: 42px 0 58px;
}

.t5s-solutions-title {
  max-width: 520px;
  margin: 0 auto 8px;
  color: #2f7f35;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.32;
  text-align: center;
  letter-spacing: 0;
}

.t5s-solutions-description {
  max-width: 455px;
  margin: 0 auto;
  color: #050505;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.t5s-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.t5s-solution-card {
  position: relative;
  display: block;
  min-height: 400px;
  overflow: hidden;
  background-color: #d8d8d8;
  background-position: center;
  background-size: cover;
  color: #fff;
  text-decoration: none;
}

.t5s-solution-card:hover {
  color: #fff;
}

.t5s-solution-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 10%, rgba(0, 0, 0, 0.28) 56%, rgba(0, 0, 0, 0.72) 100%),
    rgba(0, 0, 0, 0.16);
  transition: background 220ms ease;
}

.t5s-solution-card:hover .t5s-solution-card-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 10%, rgba(0, 0, 0, 0.2) 52%, rgba(0, 0, 0, 0.76) 100%),
    rgba(47, 127, 53, 0.1);
}

.t5s-solution-card-content {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  z-index: 1;
}

.t5s-solution-card-content strong {
  display: block;
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.08;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.t5s-solution-card-content span {
  display: block;
  max-width: 300px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.55);
}

.t5s-featured-projects-section {
  background: #f4f4f4;
  padding: 58px 0 66px;
}

.t5s-featured-projects-heading {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.t5s-featured-projects-heading h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.t5s-featured-projects-heading h2 span {
  display: inline;
}

.t5s-project-title-green {
  color: #1e7a31;
}

.t5s-project-title-orange {
  color: #f0a300;
}

.t5s-featured-projects-heading p {
  max-width: 360px;
  margin: 8px auto 0;
  color: #111;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.t5s-featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.t5s-featured-project-card {
  overflow: hidden;
  background: #fff;
}

.t5s-featured-project-media {
  position: relative;
  display: block;
  height: 206px;
  overflow: hidden;
  background: #d8d8d8;
  border-top: 3px solid #f0a300;
}

.t5s-featured-project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.t5s-featured-project-card:hover .t5s-featured-project-media img {
  transform: scale(1.035);
}

.t5s-featured-project-content {
  min-height: 164px;
  padding: 20px 20px 22px;
}

.t5s-featured-project-content h3 {
  margin: 0;
  color: #050505;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.t5s-featured-project-content h3 a {
  color: inherit;
  text-decoration: none;
}

.t5s-featured-project-content p {
  margin: 16px 0 0;
  color: #111;
  font-size: 12px;
  line-height: 1.55;
}

.t5s-featured-project-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  color: #050505;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.t5s-featured-projects-action {
  margin-top: 32px;
  text-align: center;
}

.t5s-featured-projects-action a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #d79000;
  background: #f8ad12;
  padding: 8px 18px;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease;
}

.t5s-featured-projects-action a:hover {
  background: #fff;
  color: #111;
}

.t5s-certificates-section {
  background: #fff7e8;
  padding: 66px 0 84px;
}

.t5s-certificates-heading {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.t5s-certificates-heading h2 {
  margin: 0;
  color: #2f7f35;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.t5s-certificates-heading p {
  margin: 10px auto 0;
  color: #050505;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.48;
  text-align: center;
}

.t5s-certificates-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
  margin-top: 34px;
}

.t5s-certificate-card {
  position: relative;
  display: block;
  height: 274px;
  overflow: hidden;
  background: #fff;
  color: #fff;
  text-decoration: none;
}

.t5s-certificate-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t5s-certificate-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(72, 38, 7, 0.68);
  opacity: 0;
  transition: opacity 180ms ease;
}

.t5s-certificate-card:hover .t5s-certificate-overlay {
  opacity: 1;
}

.t5s-certificate-zoom {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.t5s-certificate-zoom svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.t5s-about-collage-section {
  background: #f4f4f4;
  padding: 88px 0 78px;
}

.t5s-about-collage-inner {
  position: relative;
  height: 647px;
  max-width: 1360px;
}

.t5s-about-center {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 470px;
  transform: translateX(-50%);
  text-align: center;
}

.t5s-about-center h2 {
  margin: 0;
  color: #2f7f35;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.t5s-about-center p {
  max-width: 460px;
  margin: 14px auto 0;
  color: #050505;
  font-size: 18px;
  line-height: 1.45;
}

.t5s-about-center a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  border: 1px solid #d79000;
  background: #f8ad12;
  min-width: 230px;
  padding: 12px 26px;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease;
}

.t5s-about-center a:hover {
  background: #fff;
  color: #111;
}

.t5s-about-center a span {
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.t5s-about-center a span::before {
  content: "\2197";
  font-size: 14px;
  line-height: 1;
}

.t5s-about-photo,
.t5s-about-stat {
  position: absolute;
  overflow: hidden;
}

.t5s-about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t5s-about-photo-1 {
  top: 70px;
  left: 0;
  width: 150px;
  height: 154px;
}

.t5s-about-photo-2 {
  top: 0;
  left: 164px;
  width: 148px;
  height: 160px;
}

.t5s-about-photo-3 {
  top: 240px;
  left: 0;
  width: 150px;
  height: 146px;
}

.t5s-about-photo-4 {
  top: 348px;
  left: 164px;
  width: 148px;
  height: 154px;
}

.t5s-about-photo-5 {
  top: 70px;
  right: 0;
  width: 150px;
  height: 154px;
}

.t5s-about-photo-6 {
  top: 175px;
  right: 164px;
  width: 148px;
  height: 146px;
}

.t5s-about-photo-7 {
  top: 240px;
  right: 0;
  width: 150px;
  height: 160px;
}

.t5s-about-photo-8 {
  left: 50%;
  bottom: 0;
  width: 326px;
  height: 126px;
  transform: translateX(-50%);
}

.t5s-about-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.t5s-about-stat strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.t5s-about-stat span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.t5s-about-stat-light {
  background: #e9dfac;
  color: #16823b;
}

.t5s-about-stat-orange {
  background: #f8ad12;
  color: #16823b;
}

.t5s-about-stat-green-soft {
  background: #72ad6b;
  color: #fff;
}

.t5s-about-stat-green {
  background: #2b8430;
  color: #fff;
}

.t5s-about-stat-1 {
  top: 174px;
  left: 164px;
  width: 148px;
  height: 160px;
}

.t5s-about-stat-2 {
  top: 0;
  right: 164px;
  width: 150px;
  height: 160px;
}

.t5s-about-stat-3 {
  top: 348px;
  left: 328px;
  width: 310px;
  height: 154px;
}

.t5s-about-stat-4 {
  top: 348px;
  left: 657px;
  width: 310px;
  height: 154px;
}

.t5s-about-stat-5 {
  top: 336px;
  right: 164px;
  width: 150px;
  height: 160px;
}

.t5s-feedback-marquee-section {
  overflow: hidden;
  background: #effcef;
  border-top: 4px solid #f8ad12;
  padding: 24px 0 0;
}

.t5s-feedback-marquee-heading {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.t5s-feedback-marquee-heading h2 {
  margin: 0;
  color: #2f7f35;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.t5s-feedback-marquee-heading p {
  max-width: 440px;
  margin: 30px auto 0;
  color: #050505;
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

.t5s-feedback-marquee-columns {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  height: var(--t5s-feedback-height, 680px);
  margin-top: 28px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.t5s-feedback-marquee-column {
  position: relative;
  overflow: hidden;
}

.t5s-feedback-marquee-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
}

.t5s-feedback-marquee-column.is-up .t5s-feedback-marquee-track {
  animation: t5sFeedbackMarqueeUp var(--t5s-feedback-column-speed, var(--t5s-feedback-speed, 34s)) linear infinite;
}

.t5s-feedback-marquee-column.is-down .t5s-feedback-marquee-track {
  animation: t5sFeedbackMarqueeDown var(--t5s-feedback-column-speed, var(--t5s-feedback-speed, 34s)) linear infinite;
}

.t5s-feedback-marquee-column:hover .t5s-feedback-marquee-track {
  animation-play-state: paused;
}

.t5s-feedback-marquee-item {
  flex: 0 0 auto;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(47, 127, 53, 0.08);
}

.t5s-feedback-marquee-image {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes t5sFeedbackMarqueeUp {
  from {
    transform: translateY(0);
  }

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

@keyframes t5sFeedbackMarqueeDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 1199px) {
  .t5s-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }

  .t5s-solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .t5s-certificates-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .t5s-about-collage-inner {
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .t5s-about-center,
  .t5s-about-photo,
  .t5s-about-stat {
    position: static;
    width: auto;
    height: auto;
    transform: none;
  }

  .t5s-about-center {
    grid-column: 1 / -1;
    width: auto;
    margin-bottom: 4px;
  }

  .t5s-about-photo,
  .t5s-about-stat {
    min-height: 138px;
  }

  .t5s-about-stat-3,
  .t5s-about-stat-4 {
    grid-column: span 2;
  }

  .t5s-about-photo-8 {
    grid-column: span 2;
  }

  .t5s-feedback-marquee-columns {
    gap: 14px;
  }
}

.t5s-hero-banner .row,
.t5s-hero-banner .col {
  max-width: none;
}

.t5s-hero-badge {
  min-width: 264px;
  min-height: 66px;
  border-color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(2px);
}

.t5s-hero-badge > span:first-child {
  width: 50px;
  height: 50px;
}

.t5s-hero-badge strong {
  font-size: 16px;
}

.t5s-hero-badge span span {
  font-size: 14px;
}

.t5s-hero-badge-1 {
  top: 66px;
  right: 104px;
}

.t5s-hero-badge-2 {
  top: 214px;
  right: 324px;
}

.t5s-hero-badge-3 {
  top: 377px;
  right: 154px;
}

.t5s-hero-badges {
  z-index: 2;
}

.t5s-hero-gallery {
  right: 0 !important;
  bottom: 38px !important;
  width: 600px !important;
  max-width: 48vw !important;
  z-index: 4;
}

.t5s-hero-gallery-prev {
  position: absolute;
  left: -34px;
  top: 50%;
  z-index: 5;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  font-size: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t5s-hero-gallery-prev::before {
  content: "\2190";
  font-size: 18px;
  line-height: 1;
}

.t5s-hero-gallery-prev:hover {
  background: #f8ad12;
  border-color: #f8ad12;
  color: #191919;
}

.Swiper_banner_hero .swiper-slide {
  cursor: pointer;
  overflow: hidden;
}

.Swiper_banner_hero .swiper-slide img {
  height: 184px;
  border-color: rgba(255, 255, 255, 0.75) !important;
  transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.Swiper_banner_hero .swiper-slide:not(.is-active) img {
  opacity: 0.88;
}

.Swiper_banner_hero .swiper-slide.is-active img {
  border-color: #f8ad12 !important;
  opacity: 1;
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  .t5s-hero-banner .t5s-hero-badges,
  .t5s-hero-banner .t5s-hero-gallery {
    display: block !important;
  }
}

.t5s-news-tabs-section {
  background: #fff;
  padding: 64px 0 70px;
}

.t5s-news-tabs-heading {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.t5s-news-tabs-heading h2 {
  margin: 0;
  color: #2f8a35;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.16;
}

.t5s-news-tabs-heading p {
  margin: 14px 0 0;
  color: #111;
  font-size: 15px;
  line-height: 1.65;
}

.t5s-news-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.t5s-news-tab-button {
  min-width: 164px;
  height: 36px;
  padding: 0 22px;
  border: 1px solid #cbd6e0;
  background: #fff;
  color: #2f8a35;
  font-size: 13px;
  font-weight: 600;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.t5s-news-tab-button:hover,
.t5s-news-tab-button.is-active {
  border-color: #2f8a35;
  background: #2f8a35;
  color: #fff;
}

.t5s-news-tabs-panels {
  margin-top: 38px;
}

.t5s-news-tab-panel {
  display: none;
}

.t5s-news-tab-panel.is-active {
  display: block;
}

.t5s-news-tabs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.t5s-news-tab-card {
  min-width: 0;
}

.t5s-news-tab-media {
  display: block;
  height: 182px;
  overflow: hidden;
  background: #f1f1f1;
}

.t5s-news-tab-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.t5s-news-tab-card:hover .t5s-news-tab-media img {
  transform: scale(1.04);
}

.t5s-news-tab-card h3 {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.t5s-news-tab-card h3 a {
  color: #111;
}

.t5s-news-tab-card h3 a:hover {
  color: #2f8a35;
}

.t5s-news-tab-card p {
  margin: 12px 0 0;
  color: #111;
  font-size: 14px;
  line-height: 1.55;
}

.t5s-news-tabs-action {
  margin-top: 36px;
  text-align: center;
}

.t5s-news-tabs-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 24px;
  border: 1px solid #cc8500;
  background: #f8ad12;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.t5s-news-tabs-action a:hover {
  background: #2f8a35;
  border-color: #2f8a35;
  color: #fff;
}

.t5s-audit-form-section {
  background: #f4f4f4;
  padding: 28px 0;
  overflow: hidden;
}

.t5s-audit-form-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 468px;
  align-items: stretch;
  min-height: 590px;
}

.t5s-audit-form-copy {
  position: relative;
  min-height: 590px;
  padding: 76px 40px 0 0;
}

.t5s-audit-form-copy h2 {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0;
  color: #2f8a35;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
}

.t5s-audit-leaf {
  position: absolute;
  left: 0;
  bottom: -82px;
  width: 680px;
  height: 430px;
  pointer-events: none;
}

.t5s-audit-leaf span {
  position: absolute;
  bottom: 0;
  width: 310px;
  height: 430px;
  opacity: 0.52;
}

.t5s-audit-leaf span:first-child {
  left: 30px;
  background: #dceccd;
  border-radius: 78% 0 58% 42% / 62% 0 42% 38%;
  transform: rotate(-52deg);
  transform-origin: right bottom;
}

.t5s-audit-leaf span:last-child {
  right: 42px;
  background: #abc9b3;
  border-radius: 0 78% 42% 58% / 0 62% 38% 42%;
  transform: rotate(52deg);
  transform-origin: left bottom;
}

.t5s-audit-form-panel {
  background: #f8ad12;
  padding: 44px 40px 34px;
  text-align: center;
}

.t5s-audit-form-title {
  max-width: 350px;
  margin: 0 auto 28px;
  color: #111;
  font-size: 20px;
  line-height: 1.5;
}

.t5s-audit-form-fields form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.t5s-audit-form-fields form p,
.t5s-audit-form-fields .wpcf7-form p,
.t5s-audit-form-fields .wpforms-field {
  width: 100%;
  margin: 0;
  padding: 0;
}

.t5s-audit-form-fields form input,
.t5s-audit-form-fields form select,
.t5s-audit-form-fields form textarea {
  width: 100%;
  height: 38px;
  margin: 0;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  color: #111;
  font-size: 14px;
  line-height: 38px;
}

.t5s-audit-form-fields form input::placeholder,
.t5s-audit-form-fields form textarea::placeholder {
  color: #111;
  opacity: 1;
}

.t5s-audit-form-fields form select {
  appearance: auto;
}

.t5s-audit-form-fields form textarea {
  display: block;
  min-height: 186px;
  padding-top: 12px;
  line-height: 1.5;
  resize: vertical;
}

.t5s-audit-form-fields form input:focus,
.t5s-audit-form-fields form select:focus,
.t5s-audit-form-fields form textarea:focus {
  outline: 2px solid rgba(47, 138, 53, 0.28);
  outline-offset: 0;
}

.t5s-audit-form-fields form button,
.t5s-audit-form-fields form input[type="submit"],
.t5s-audit-form-fields .wpforms-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 140px;
  height: 38px;
  margin-top: 12px;
  padding: 0 20px;
  border: 1px solid #b8b8b8;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  line-height: 36px;
  text-transform: none;
  cursor: pointer;
}

.t5s-audit-form-fields form button:hover,
.t5s-audit-form-fields form input[type="submit"]:hover,
.t5s-audit-form-fields .wpforms-submit:hover {
  border-color: #2f8a35;
  background: #2f8a35;
  color: #fff;
}

.t5s-audit-form-fields .wpcf7-spinner {
  position: absolute;
}

.t5s-audit-form-fields .wpcf7-not-valid-tip,
.t5s-audit-form-fields .wpforms-error {
  margin-top: 5px;
  color: #7b1b00;
  font-size: 12px;
  text-align: left;
}

.t5s-audit-form-fields .wpcf7-response-output {
  margin: 14px 0 0;
  padding: 8px 12px;
  border-color: rgba(17, 17, 17, 0.35);
  color: #111;
  font-size: 13px;
}

.t5s-intro-stats-section {
  position: relative;
  background: #fffaf0;
  padding: 58px 0 0;
  overflow: hidden;
}

.t5s-intro-stats-inner {
  position: relative;
  min-height: 590px;
}

.t5s-intro-stats-heading {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.t5s-intro-stats-heading h2 {
  margin: 0;
  color: #2f8a35;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.16;
}

.t5s-intro-stats-heading p {
  margin: 14px 0 0;
  color: #111;
  font-size: 15px;
  line-height: 1.6;
}

.t5s-intro-stats-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  align-items: end;
  gap: 64px;
  margin-top: 62px;
}

.t5s-intro-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px 72px;
  align-self: center;
  padding-left: 82px;
}

.t5s-intro-stat-item {
  text-align: center;
}

.t5s-intro-stat-item strong {
  display: block;
  color: #2f8a35;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.08;
}

.t5s-intro-stat-item span {
  display: block;
  margin-top: 8px;
  color: #2f8a35;
  font-size: 15px;
  line-height: 1.35;
}

.t5s-intro-stat-item p {
  margin: 6px 0 0;
  color: #111;
  font-size: 13px;
  line-height: 1.45;
}

.t5s-intro-stats-visual {
  position: relative;
  min-height: 360px;
}

.t5s-intro-stats-visual img {
  display: block;
  width: min(560px, 100%);
  max-height: 420px;
  object-fit: contain;
  object-position: bottom center;
}

.t5s-intro-stats-leaf {
  position: absolute;
  right: -310px;
  bottom: 92px;
  z-index: 1;
  width: 590px;
  height: 360px;
  pointer-events: none;
}

.t5s-intro-stats-leaf span {
  position: absolute;
  bottom: 0;
  width: 295px;
  height: 360px;
}

.t5s-intro-stats-leaf span:first-child {
  left: 0;
  background: #a8d06c;
  border-radius: 72% 0 55% 45% / 64% 0 38% 36%;
  transform: rotate(-52deg);
  transform-origin: right bottom;
}

.t5s-intro-stats-leaf span:last-child {
  right: 0;
  background: #2f705d;
  border-radius: 0 72% 45% 55% / 0 64% 36% 38%;
  transform: rotate(52deg);
  transform-origin: left bottom;
}

.t5s-service-detail {
  background: #fff;
  color: #111;
}

.t5s-service-detail-hero {
  position: relative;
  min-height: 430px;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.t5s-service-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.34));
}

.t5s-service-detail-hero .t5s-service-detail-container {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 78px;
}

.t5s-service-detail-breadcrumb {
  margin-bottom: 72px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.t5s-service-detail-breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
}

.t5s-service-detail-hero-content {
  max-width: 620px;
}

.t5s-service-detail-hero-content h1 {
  margin: 0;
  color: #fff;
  font-size: 43px;
  font-weight: 800;
  line-height: 1.14;
}

.t5s-service-detail-hero-content h1 strong,
.t5s-service-detail-hero-content h1 span {
  color: #f8ad12;
}

.t5s-service-detail-hero-content p {
  max-width: 530px;
  margin: 18px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
}

.t5s-service-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  min-height: 34px;
  padding: 0 18px;
  background: #f8ad12;
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

.t5s-service-detail-cta:hover {
  background: #2f8a35;
  color: #fff;
}

.t5s-service-intro-section {
  position: relative;
  z-index: 3;
  margin-top: -58px;
  padding: 0 0 68px;
}

.t5s-service-intro-card {
  position: relative;
  max-width: 770px;
  margin: 0 auto;
  padding: 36px 54px 30px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.14);
  text-align: center;
}

.t5s-service-intro-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  display: flex;
  width: 56px;
  height: 56px;
  transform: translateX(-50%);
  border: 3px solid #fff;
  border-radius: 50%;
  background: #2f8a35;
}

.t5s-service-intro-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  margin: auto;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 13px 0 -4px #2f8a35, 0 13px 0 -2px #fff;
}

.t5s-service-intro-card h2,
.t5s-service-section-heading h2 {
  margin: 0;
  color: #2f8a35;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
}

.t5s-service-intro-card p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.t5s-service-risks-section {
  padding: 0 0 76px;
}

.t5s-service-section-heading {
  max-width: 640px;
  margin: 0 auto 38px;
  text-align: center;
}

.t5s-service-section-heading p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.t5s-service-risk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 26px;
}

.t5s-service-risk-card {
  background: #f3f3f3;
}

.t5s-service-risk-card img {
  display: block;
  width: 100%;
  height: 224px;
  object-fit: cover;
}

.t5s-service-risk-card div {
  padding: 18px 20px 20px;
}

.t5s-service-risk-card h3 {
  margin: 0;
  color: #2f8a35;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.t5s-service-risk-card p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.t5s-service-solutions-section {
  background: #fff7d4;
  padding: 70px 0 72px;
}

.t5s-service-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 80px;
}

.t5s-service-receive-section {
  padding: 70px 0 74px;
}

.t5s-service-receive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.t5s-service-icon-card {
  text-align: center;
}

.t5s-service-receive-grid .t5s-service-icon-card {
  min-height: 178px;
  padding: 30px 18px 24px;
  border: 1px solid #9fcfa7;
  background: #fff;
}

.t5s-service-icon-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.t5s-service-icon-card h3 {
  margin: 0;
  color: #2f8a35;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.t5s-service-icon-card p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.t5s-service-faq-section {
  padding: 64px 0 72px;
}

.t5s-service-faq-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
}

.t5s-service-faq-title h2 {
  margin: 0;
  color: #2f8a35;
  font-size: 30px;
  font-weight: 800;
}

.t5s-service-faq-title p {
  margin: 12px 0 0;
  font-size: 13px;
}

.t5s-service-faq-list {
  display: grid;
  gap: 12px;
}

.t5s-service-faq-item {
  background: #effcef;
}

.t5s-service-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 46px;
  padding: 0 18px;
  color: #2f8a35;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.t5s-service-faq-item summary::-webkit-details-marker {
  display: none;
}

.t5s-service-faq-item summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2f8a35;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.t5s-service-faq-item[open] summary span {
  transform: rotate(45deg);
}

.t5s-service-faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.55;
}

.t5s-service-disease-section {
  padding: 0 0 72px;
}

.t5s-service-disease-inner {
  position: relative;
  min-height: 230px;
  padding: 46px 260px 40px 80px;
  background: #fff7e8;
  overflow: hidden;
}

.t5s-service-disease-inner blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #111;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.28;
}

.t5s-service-disease-inner blockquote strong,
.t5s-service-disease-inner blockquote em {
  color: #f8ad12;
  font-style: normal;
}

.t5s-service-disease-leaf {
  position: absolute;
  right: 30px;
  bottom: -40px;
  width: 220px;
  height: 170px;
}

.t5s-service-disease-leaf span {
  position: absolute;
  bottom: 0;
  width: 110px;
  height: 170px;
}

.t5s-service-disease-leaf span:first-child {
  left: 0;
  background: #a8d06c;
  border-radius: 72% 0 55% 45% / 64% 0 38% 36%;
  transform: rotate(-52deg);
  transform-origin: right bottom;
}

.t5s-service-disease-leaf span:last-child {
  right: 0;
  background: #2f8a35;
  border-radius: 0 72% 45% 55% / 0 64% 36% 38%;
  transform: rotate(52deg);
  transform-origin: left bottom;
}

.t5s-archive-banner {
  position: relative;
  min-height: 462px;
  background: #1f3f31 center / cover no-repeat;
  color: #fff;
}

.t5s-archive-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.22));
}

.t5s-archive-banner-inner {
  position: relative;
  z-index: 2;
  padding: 62px 0 72px;
}

.t5s-archive-banner-breadcrumb {
  margin-bottom: 82px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.t5s-archive-banner-content {
  max-width: 620px;
}

.t5s-archive-banner-content h1 {
  margin: 0;
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.12;
}

.t5s-archive-banner-content h1 span {
  color: #f8ad12;
}

.t5s-archive-banner-content p {
  max-width: 560px;
  margin: 20px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.65;
}

.t5s-archive-banner-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  margin-top: 24px;
  padding: 0 18px;
  background: #f8ad12;
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

.t5s-archive-banner-content a:hover {
  background: #2f8a35;
  color: #fff;
}

.t5s-services-archive-section {
  padding: 70px 0 52px;
  background: #fff;
}

.t5s-services-archive-heading,
.t5s-service-industries-heading,
.t5s-service-why-heading {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.t5s-services-archive-heading h2,
.t5s-service-industries-heading h2,
.t5s-service-why-heading h2 {
  margin: 0;
  color: #2f8a35;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
}

.t5s-services-archive-heading h2 span {
  color: #f8ad12;
}

.t5s-services-archive-heading p,
.t5s-service-industries-heading p,
.t5s-service-why-heading p {
  max-width: 610px;
  margin: 14px auto 0;
  color: #111;
  font-size: 14px;
  line-height: 1.6;
}

.t5s-services-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 26px;
  margin-top: 42px;
}

.t5s-services-archive-image {
  display: block;
  height: 185px;
  overflow: hidden;
  background: #f0f0f0;
}

.t5s-services-archive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.t5s-services-archive-card:hover .t5s-services-archive-image img {
  transform: scale(1.04);
}

.t5s-services-archive-card h3 {
  margin: 15px 0 0;
  color: #2f8a35;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.32;
}

.t5s-services-archive-card h3 a {
  color: inherit;
}

.t5s-services-archive-card p {
  margin: 9px 0 0;
  color: #111;
  font-size: 13px;
  line-height: 1.55;
}

.t5s-service-industries-section {
  position: relative;
  padding: 40px 0 74px;
  overflow: hidden;
  background: #fff;
}

.t5s-service-industries-inner {
  position: relative;
}

.t5s-service-industries-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.t5s-service-industry-item {
  display: flex;
  min-height: 118px;
  padding: 20px 10px 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: #effcef;
  color: #2f8a35;
  text-align: center;
}

.t5s-service-industry-icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.t5s-service-industry-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.t5s-service-industry-icon img {
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
}

.t5s-service-industry-item strong {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.t5s-service-industries-leaf {
  position: absolute;
  right: -230px;
  bottom: -56px;
  z-index: 1;
  width: 360px;
  height: 390px;
  opacity: 0.42;
  pointer-events: none;
}

.t5s-service-industries-leaf span {
  position: absolute;
  width: 170px;
  height: 245px;
  background: #f8d37a;
}

.t5s-service-industries-leaf span:nth-child(1) {
  top: 0;
  left: 86px;
  border-radius: 72% 0 55% 45% / 64% 0 38% 36%;
  transform: rotate(-45deg);
}

.t5s-service-industries-leaf span:nth-child(2) {
  bottom: 0;
  left: 0;
  border-radius: 72% 0 55% 45% / 64% 0 38% 36%;
  transform: rotate(-45deg);
}

.t5s-service-industries-leaf span:nth-child(3) {
  bottom: 0;
  right: 0;
  border-radius: 0 72% 45% 55% / 0 64% 36% 38%;
  transform: rotate(45deg);
}

.t5s-service-why-section {
  padding: 46px 0 68px;
  background: #fff;
}

.t5s-service-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 38px;
}

.t5s-service-why-image {
  height: 184px;
  background: #f0f0f0;
  overflow: hidden;
}

.t5s-service-why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t5s-service-why-card h3 {
  margin: 16px 0 0;
  color: #2f8a35;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.t5s-service-why-card p {
  margin: 8px 0 0;
  color: #111;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1023px) {
  .t5s-hero-banner {
    min-height: 560px;
  }

  .t5s-hero-banner > .relative,
  .t5s-hero-banner > .container {
    min-height: 560px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .t5s-hero-banner .t5s-hero-title {
    max-width: 640px;
    font-size: 48px;
  }

  .t5s-hero-banner .t5s-hero-title + p {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.55;
  }

  .t5s-news-tabs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .t5s-audit-form-inner {
    grid-template-columns: 1fr;
  }

  .t5s-audit-form-copy {
    min-height: 420px;
    padding: 52px 0 0;
  }

  .t5s-audit-form-copy h2 {
    max-width: 720px;
    font-size: 38px;
  }

  .t5s-audit-form-panel {
    max-width: 468px;
    width: 100%;
    margin: 0 auto;
  }

  .t5s-intro-stats-inner {
    min-height: 0;
  }

  .t5s-intro-stats-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 42px;
  }

  .t5s-intro-stats-grid {
    max-width: 560px;
    margin: 0 auto;
    padding-left: 0;
  }

  .t5s-intro-stats-visual img {
    margin: 0 auto;
  }

  .t5s-intro-stats-leaf {
    right: -250px;
    bottom: 36px;
    opacity: 0.55;
  }

  .t5s-service-detail-hero-content h1 {
    font-size: 36px;
  }

  .t5s-service-solution-grid,
  .t5s-service-receive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .t5s-service-disease-inner {
    padding-right: 180px;
    padding-left: 46px;
  }

  .t5s-services-archive-grid,
  .t5s-service-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .t5s-service-industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .t5s-archive-banner {
    min-height: 390px;
  }

  .t5s-archive-banner-inner {
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .t5s-archive-banner-breadcrumb {
    margin-bottom: 46px;
  }

  .t5s-archive-banner-content h1 {
    font-size: 32px;
  }

  .t5s-services-archive-section {
    padding-top: 46px;
  }

  .t5s-services-archive-heading h2,
  .t5s-service-industries-heading h2,
  .t5s-service-why-heading h2 {
    font-size: 29px;
  }

  .t5s-services-archive-grid,
  .t5s-service-why-grid {
    grid-template-columns: 1fr;
  }

  .t5s-services-archive-image,
  .t5s-service-why-image {
    height: 215px;
  }

  .t5s-service-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .t5s-service-industries-leaf {
    right: -280px;
    opacity: 0.28;
  }

  .t5s-service-detail-hero {
    min-height: 360px;
  }

  .t5s-service-detail-hero .t5s-service-detail-container {
    padding-top: 44px;
    padding-bottom: 58px;
  }

  .t5s-service-detail-breadcrumb {
    margin-bottom: 38px;
  }

  .t5s-service-detail-hero-content h1 {
    font-size: 30px;
  }

  .t5s-service-intro-section {
    padding-bottom: 48px;
  }

  .t5s-service-intro-card {
    padding: 34px 22px 24px;
  }

  .t5s-service-intro-card h2,
  .t5s-service-section-heading h2 {
    font-size: 28px;
  }

  .t5s-service-risk-grid,
  .t5s-service-solution-grid,
  .t5s-service-receive-grid,
  .t5s-service-faq-layout {
    grid-template-columns: 1fr;
  }

  .t5s-service-risk-card img {
    height: 210px;
  }

  .t5s-service-solutions-section,
  .t5s-service-receive-section,
  .t5s-service-faq-section {
    padding: 48px 0;
  }

  .t5s-service-disease-inner {
    min-height: 250px;
    padding: 34px 24px 110px;
  }

  .t5s-service-disease-inner blockquote {
    font-size: 22px;
  }

  .t5s-service-disease-leaf {
    right: 12px;
    transform: scale(0.75);
    transform-origin: right bottom;
  }

  .t5s-intro-stats-section {
    padding: 44px 0 0;
  }

  .t5s-intro-stats-heading h2 {
    font-size: 31px;
  }

  .t5s-intro-stats-heading p {
    font-size: 14px;
  }

  .t5s-intro-stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .t5s-intro-stat-item strong {
    font-size: 34px;
  }

  .t5s-intro-stats-visual {
    min-height: 260px;
  }

  .t5s-intro-stats-visual img {
    max-height: 300px;
  }

  .t5s-intro-stats-leaf {
    right: -285px;
    bottom: 12px;
    transform: scale(0.72);
  }

  .t5s-audit-form-section {
    padding: 0 0 40px;
  }

  .t5s-audit-form-inner {
    min-height: 0;
  }

  .t5s-audit-form-copy {
    min-height: 330px;
    padding-top: 42px;
  }

  .t5s-audit-form-copy h2 {
    font-size: 30px;
  }

  .t5s-audit-leaf {
    width: 420px;
    height: 270px;
    bottom: -48px;
  }

  .t5s-audit-leaf span {
    width: 190px;
    height: 270px;
  }

  .t5s-audit-form-panel {
    padding: 34px 22px 30px;
  }

  .t5s-audit-form-title {
    font-size: 18px;
  }

  .t5s-news-tabs-section {
    padding: 44px 0 52px;
  }

  .t5s-news-tabs-heading h2 {
    font-size: 30px;
  }

  .t5s-news-tabs-nav {
    gap: 8px;
  }

  .t5s-news-tab-button {
    min-width: 0;
    flex: 1 1 calc(50% - 8px);
    padding: 0 12px;
  }

  .t5s-news-tabs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .t5s-news-tab-media {
    height: 220px;
  }

  .t5s-feedback-marquee-section {
    padding-top: 32px;
  }

  .t5s-feedback-marquee-heading h2 {
    font-size: 30px;
  }

  .t5s-feedback-marquee-heading p {
    margin-top: 18px;
    font-size: 14px;
  }

  .t5s-feedback-marquee-columns {
    grid-template-columns: 1fr;
    height: calc(var(--t5s-feedback-height, 680px) * 0.78);
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
  }

  .t5s-feedback-marquee-column:nth-child(2),
  .t5s-feedback-marquee-column:nth-child(3) {
    display: none;
  }

  .t5s-about-collage-section {
    padding: 44px 0 52px;
  }

  .t5s-about-collage-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .t5s-about-center h2 {
    font-size: 30px;
  }

  .t5s-about-center p {
    font-size: 15px;
  }

  .t5s-about-photo,
  .t5s-about-stat {
    min-height: 128px;
  }

  .t5s-about-stat strong {
    font-size: 28px;
  }

  .t5s-about-stat-3,
  .t5s-about-stat-4 {
    grid-column: span 2;
  }

  .t5s-certificates-section {
    padding: 46px 0 56px;
  }

  .t5s-certificates-heading h2 {
    font-size: 30px;
  }

  .t5s-certificates-heading p {
    font-size: 15px;
  }

  .t5s-certificates-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
  }

  .t5s-certificate-card {
    height: 190px;
  }

  .t5s-featured-projects-section {
    padding: 42px 0 50px;
  }

  .t5s-featured-projects-heading h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .t5s-featured-projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .t5s-featured-project-media {
    height: 220px;
  }

  .t5s-featured-project-content {
    min-height: auto;
  }

  .t5s-customer-solutions-section {
    padding: 36px 0 46px;
  }

  .t5s-solutions-title {
    font-size: 30px;
    line-height: 1.24;
  }

  .t5s-solutions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 26px;
  }

  .t5s-solution-card {
    min-height: 286px;
  }

  .t5s-solution-card-content strong {
    font-size: 26px;
  }

  .t5s-trust-partner-section {
    padding: 44px 0 52px;
  }

  .t5s-trust-title {
    font-size: 32px;
    line-height: 1.25;
  }

  .t5s-trust-description {
    font-size: 17px;
  }

  .t5s-trust-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .t5s-trust-card {
    min-height: auto;
    padding: 34px 18px 28px;
  }

  .t5s-hero-banner {
    min-height: 520px;
  }

  .t5s-hero-banner > .relative,
  .t5s-hero-banner > .container {
    min-height: 520px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .t5s-hero-banner .t5s-hero-title,
  .t5s-hero-title {
    font-size: 42px;
  }

  .t5s-hero-banner .t5s-hero-title + p {
    margin-top: 24px;
    font-size: 16px;
  }
}

/* Product detail final override */
.t5s-product-detail {
  background: #fff;
  color: #111
}

.t5s-product-detail-container {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto
}

.t5s-product-detail-hero {
  padding: 38px 0 30px;
  background: #fff
}

.t5s-product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
  gap: 50px;
  align-items: start
}

.t5s-product-gallery {
  min-width: 0
}

.t5s-product-main-swiper {
  width: 100%;
  height: 470px;
  background: #fff
}

.t5s-product-main-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center
}

.t5s-product-main-swiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.t5s-product-gallery-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 470px;
  border: 1px solid #ddd;
  color: #777;
  font-size: 14px;
  font-weight: 700
}

.t5s-product-thumb-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 20px
}

.t5s-product-thumb-prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  border: 1px solid #2f8a35;
  border-radius: 0;
  background: #fff;
  color: #2f8a35;
  font-size: 18px;
  line-height: 1;
  cursor: pointer
}

.t5s-product-thumb-swiper {
  width: 100%
}

.t5s-product-thumb-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 105px;
  padding: 0;
  border: 1px solid #d7d7d7;
  background: #fff;
  cursor: pointer;
  opacity: 1
}

.t5s-product-thumb-swiper .swiper-slide-thumb-active {
  border-color: #2f8a35
}

.t5s-product-thumb-swiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.t5s-product-summary h1 {
  margin: 0 0 16px;
  color: #0b7d2b;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0
}

.t5s-product-description {
  margin: 0 0 14px;
  color: #111;
  font-size: 13px;
  line-height: 1.42
}

.t5s-product-specs {
  display: grid;
  gap: 9px;
  margin: 0
}

.t5s-product-specs div {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 13px;
  line-height: 1.35
}

.t5s-product-specs dt {
  display: inline;
  color: #111;
  font-size: inherit;
  font-weight: 800
}

.t5s-product-specs dd {
  display: inline;
  margin: 0;
  color: #111;
  font-size: inherit;
  line-height: inherit
}

.t5s-product-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0 26px;
  padding: 8px 15px;
  border: 0;
  background: #238233;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none
}

.t5s-product-contact-link:hover {
  background: #166b26;
  color: #fff
}

.t5s-product-technical-inline {
  margin-top: 0
}

.t5s-product-technical-inline h2 {
  margin: 0 0 16px;
  color: #111;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0
}

.t5s-product-richtext {
  color: #111;
  font-size: 13px;
  line-height: 1.42
}

.t5s-product-richtext p,
.t5s-product-richtext ul,
.t5s-product-richtext ol {
  margin: 0 0 10px
}

.t5s-product-richtext ul,
.t5s-product-richtext ol {
  padding-left: 18px
}

.t5s-product-richtext li {
  margin-bottom: 5px
}

.t5s-product-richtext strong,
.t5s-product-richtext b {
  color: #111;
  font-weight: 800
}

.t5s-product-content-section {
  padding: 36px 0 70px;
  background: #fff
}

.t5s-product-content-card {
  padding: 20px 16px 34px;
  border: 0;
  border-top: 3px solid #ffad12;
  background: #f7f7f7
}

.t5s-product-content-card h2 {
  margin: 0 0 18px;
  color: #0b7d2b;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0
}

.t5s-product-content-card .t5s-product-richtext {
  font-size: 13px;
  line-height: 1.48
}

.t5s-product-content-card .t5s-product-richtext p {
  margin-bottom: 14px
}

.t5s-product-content-card .t5s-product-richtext h3,
.t5s-product-content-card .t5s-product-richtext h4 {
  margin: 16px 0 8px;
  color: #ff9900;
  font-size: 16px;
  font-weight: 800
}

@media (max-width:900px) {
  .t5s-product-detail-layout {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .t5s-product-main-swiper {
    height: 420px
  }
}

@media (max-width:640px) {
  .t5s-product-detail-container {
    width: min(100% - 24px, 980px)
  }

  .t5s-product-detail-hero {
    padding-top: 24px
  }

  .t5s-product-main-swiper {
    height: 320px
  }

  .t5s-product-thumb-swiper .swiper-slide {
    height: 82px
  }

  .t5s-product-summary h1 {
    font-size: 22px
  }

  .t5s-product-content-card h2 {
    font-size: 26px
  }
}

/* Branch network ajax */
.t5s-branch-network {
  padding: 42px 0 58px;
  background: #fff;
  color: #111
}

.t5s-branch-heading {
  text-align: center;
  margin-bottom: 38px
}

.t5s-branch-heading h2 {
  margin: 0;
  color: #2f8a35;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0
}

.t5s-branch-heading p {
  margin: 12px 0 0;
  color: #111;
  font-size: 16px;
  line-height: 1.45
}

.t5s-branch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px
}

.t5s-branch-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 18px;
  align-items: center;
  min-height: 154px;
  padding: 28px 28px;
  background: #f3f3f3
}

.t5s-branch-card h3 {
  margin: 0 0 18px;
  color: #087c27;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0
}

.t5s-branch-card p {
  min-height: 42px;
  margin: 0 0 18px;
  color: #111;
  font-size: 14px;
  line-height: 1.5
}

.t5s-branch-card button,
.t5s-branch-detail a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: #238233;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer
}

.t5s-branch-card button {
  padding: 11px 17px
}

.t5s-branch-card button:hover,
.t5s-branch-card button.is-active,
.t5s-branch-detail a:hover {
  background: #166b26;
  color: #fff
}

.t5s-branch-mini-map,
.t5s-branch-detail-map {
  position: relative
}

.t5s-branch-mini-map img {
  display: block;
  width: 92px;
  height: 112px;
  object-fit: contain;
  margin-left: auto
}

.t5s-branch-mini-map i,
.t5s-branch-detail-map i {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #5b5a28;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(91, 90, 40, .18)
}

.t5s-branch-mini-map i {
  left: 50%;
  top: 50%
}

.t5s-branch-detail-target {
  margin-top: 42px
}

.t5s-branch-network.is-loading .t5s-branch-detail-target {
  opacity: .55
}

.t5s-branch-detail {
  border: 1px solid #238233;
  background: #fff
}

.t5s-branch-detail-head {
  padding: 30px 40px 28px 380px;
  background: #2f8a35;
  color: #fff
}

.t5s-branch-detail-head h3 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0
}

.t5s-branch-detail-head p {
  margin: 10px 0 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700
}

.t5s-branch-detail-body {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  padding: 0 40px 38px
}

.t5s-branch-detail-map {
  margin-top: -42px
}

.t5s-branch-detail-map img {
  display: block;
  width: 240px;
  height: 390px;
  object-fit: contain
}

.t5s-branch-detail-info {
  padding-top: 34px
}

.t5s-branch-main-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center
}

.t5s-branch-detail h4 {
  margin: 0 0 14px;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35
}

.t5s-branch-detail p {
  display: flex;
  gap: 8px;
  margin: 0 0 10px;
  color: #111;
  font-size: 13px;
  line-height: 1.45
}

.t5s-branch-detail p span {
  color: #ffad12;
  font-weight: 800
}

.t5s-branch-detail a {
  padding: 10px 16px;
  white-space: nowrap
}

.t5s-branch-stations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px
}

.t5s-branch-stations article {
  padding: 24px 22px;
  border: 1px solid #cfd8df;
  background: #fff
}

.t5s-branch-error {
  padding: 20px;
  background: #fff4da;
  color: #111;
  font-size: 14px;
  font-weight: 700
}

@media(max-width:900px) {
  .t5s-branch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .t5s-branch-detail-head {
    padding-left: 32px
  }

  .t5s-branch-detail-body {
    grid-template-columns: 1fr
  }

  .t5s-branch-detail-map {
    margin-top: 0
  }

  .t5s-branch-detail-map img {
    width: 220px;
    height: 320px;
    margin: 0 auto
  }

  .t5s-branch-main-row {
    grid-template-columns: 1fr
  }

  .t5s-branch-stations {
    grid-template-columns: 1fr
  }
}

@media(max-width:640px) {
  .t5s-branch-heading h2 {
    font-size: 30px
  }

  .t5s-branch-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .t5s-branch-card {
    grid-template-columns: minmax(0, 1fr) 92px;
    padding: 22px 18px
  }

  .t5s-branch-detail-head {
    padding: 24px 20px
  }

  .t5s-branch-detail-head h3 {
    font-size: 24px
  }

  .t5s-branch-detail-body {
    padding: 24px 20px 28px;
    gap: 20px
  }

  .t5s-branch-detail-info {
    padding-top: 0
  }
}

/* Product category archive */
.t5s-products-category-hero {
  background: linear-gradient(90deg, #173d25 0%, #31543b 48%, #d9e5d6 100%)
}

.t5s-products-categories a.is-active {
  border-color: #2f8a35;
  background: #2f8a35;
  color: #fff
}

.t5s-products-category-page .t5s-products-cta-form:empty {
  display: none
}

/* News category archive */
.t5s-news-category-page {
  background: #fff;
  color: #111
}

.t5s-news-category-hero {
  position: relative;
  min-height: 640px;
  background-position: center;
  background-size: cover;
  isolation: isolate
}

.t5s-news-category-hero:empty {
  background: #2f3d31
}

.t5s-news-category-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: -1
}

.t5s-news-category-hero-inner {
  padding: 36px 0 0;
  text-align: center
}

.t5s-news-category-breadcrumb {
  color: #fff;
  font-size: 13px;
  font-weight: 700
}

.t5s-news-category-breadcrumb a,
.t5s-news-category-breadcrumb strong {
  color: #fff;
  text-decoration: none
}

.t5s-news-category-breadcrumb span {
  margin: 0 8px;
  color: #fff
}

.t5s-news-category-hero h1 {
  margin: 230px 0 0;
  color: #ffad12;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0
}

.t5s-news-category-main {
  padding: 64px 0 92px;
  background: #fff
}

.t5s-news-category-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 28px;
  border: 1px solid #cfd3d6
}

.t5s-news-category-tabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-right: 1px solid #cfd3d6;
  background: #f7f7f7;
  color: #47707a;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-decoration: none
}

.t5s-news-category-tabs a:last-child {
  border-right: 0
}

.t5s-news-category-tabs a.is-active,
.t5s-news-category-tabs a:hover {
  background: #2f8a35;
  color: #fff
}

.t5s-news-category-search {
  margin-bottom: 34px
}

.t5s-news-category-input {
  width: 100%;
  height: 34px;
  border: 1px solid #cfd8df;
  border-radius: 0;
  padding: 0 16px;
  background: #fff;
  color: #111;
  font-size: 13px;
  box-shadow: none
}

.t5s-news-category-input:focus {
  border-color: #2f8a35;
  box-shadow: 0 0 0 2px rgba(47, 138, 53, .12);
  outline: 0
}

.t5s-news-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 28px
}

.t5s-news-category-card-image {
  display: block;
  height: 138px;
  margin-bottom: 18px;
  background: #eee;
  overflow: hidden
}

.t5s-news-category-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease
}

.t5s-news-category-card:hover .t5s-news-category-card-image img {
  transform: scale(1.04)
}

.t5s-news-category-card h2 {
  margin: 0 0 10px;
  color: #111;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0
}

.t5s-news-category-card h2 a {
  color: inherit;
  text-decoration: none
}

.t5s-news-category-card h2 a:hover {
  color: #2f8a35
}

.t5s-news-category-card p {
  margin: 0;
  color: #111;
  font-size: 13px;
  line-height: 1.45
}

.t5s-news-category-pagination {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px
}

.t5s-news-category-pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-height: 26px;
  border: 0;
  background: #f1f1f1;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer
}

.t5s-news-category-pagination button.is-active,
.t5s-news-category-pagination button:hover {
  background: #2f8a35;
  color: #fff
}

.t5s-news-category-empty {
  grid-column: 1/-1;
  margin: 0;
  padding: 24px;
  background: #f7f7f7;
  color: #2f8a35;
  font-size: 15px;
  font-weight: 800;
  text-align: center
}

.t5s-news-category-main.is-loading .t5s-news-category-results {
  opacity: .55;
  pointer-events: none
}

@media(max-width:900px) {
  .t5s-news-category-hero {
    min-height: 480px
  }

  .t5s-news-category-hero h1 {
    margin-top: 170px;
    font-size: 36px
  }

  .t5s-news-category-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .t5s-news-category-tabs a {
    border-bottom: 1px solid #cfd3d6
  }

  .t5s-news-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media(max-width:560px) {
  .t5s-news-category-hero {
    min-height: 380px
  }

  .t5s-news-category-hero h1 {
    margin-top: 120px;
    font-size: 30px
  }

  .t5s-news-category-tabs {
    grid-template-columns: 1fr
  }

  .t5s-news-category-tabs a {
    border-right: 0
  }

  .t5s-news-category-grid {
    grid-template-columns: 1fr
  }

  .t5s-news-category-card-image {
    height: 190px
  }
}

/* Scrolling text marquee UX */
.t5s-scrolling-text {
  --t5s-marquee-speed: 28s;
  --t5s-marquee-bg: #2f8a35;
  --t5s-marquee-color: #fff;
  --t5s-marquee-accent: #ffad12;
  --t5s-marquee-font: 18px;
  overflow: hidden;
  width: 100%;
  background: var(--t5s-marquee-bg);
  color: var(--t5s-marquee-color);
  white-space: nowrap
}

.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: 100%;
  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(-50%)
  }
}

@keyframes t5s-marquee-right {
  from {
    transform: translateX(-50%)
  }

  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) * .82)
  }
}

@media(prefers-reduced-motion:reduce) {
  .t5s-scrolling-track {
    animation: none;
    transform: none
  }

  .t5s-scrolling-group:nth-child(2) {
    display: none
  }

  .t5s-scrolling-text {
    white-space: normal
  }
}

/* Contact page UX */
.t5s-contact-page {
  background: #fff;
  color: #001b3f
}

.t5s-contact-breadcrumb {
  padding: 7px 0 58px;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  text-align: center
}

.t5s-contact-branches-wrap {
  padding: 0 0 82px;
  background: #fff
}

.t5s-contact-branches {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px
}

.t5s-contact-branch-card {
  min-height: 174px;
  padding: 28px 24px 22px;
  background: #f3f3f3
}

.t5s-contact-branch-card h3 {
  margin: 0 0 20px;
  color: #001b3f;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0
}

.t5s-contact-branch-card p {
  display: flex;
  gap: 8px;
  margin: 0 0 14px;
  color: #001b3f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.38
}

.t5s-contact-branch-card p span {
  flex: 0 0 auto;
  color: #f8ad12;
  font-size: 13px;
  line-height: 1.25
}

.t5s-contact-form-band {
  min-height: 650px;
  padding: 22px 16px 70px;
  background: #d8c7b7 center/cover no-repeat;
  position: relative
}

.t5s-contact-form-card {
  width: min(520px, 100%);
  margin: 0 auto;
  padding: 34px 42px 36px;
  background: #fff7e8
}

.t5s-contact-form-card h2 {
  margin: 0 0 32px;
  color: #2f8a35;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0
}

.t5s-contact-form form {
  margin: 0
}

.t5s-contact-form form p {
  margin: 0 0 16px;
  padding: 0
}

.t5s-contact-form form>div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px
}

.t5s-contact-form form label {
  display: block;
  margin: 0 0 7px;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2
}

.t5s-contact-form form label .required,
.t5s-contact-form form label span {
  color: #d42600
}

.t5s-contact-form form input,
.t5s-contact-form form select,
.t5s-contact-form form textarea {
  display: block;
  width: 100%;
  height: 36px;
  margin: 0;
  padding: 0 14px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  color: #111;
  font-size: 13px;
  line-height: 36px
}

.t5s-contact-form form input::placeholder,
.t5s-contact-form form textarea::placeholder {
  color: #9a9a9a;
  opacity: 1
}

.t5s-contact-form form textarea {
  height: 88px;
  min-height: 88px;
  padding-top: 11px;
  line-height: 1.45;
  resize: vertical
}

.t5s-contact-form form input:focus,
.t5s-contact-form form select:focus,
.t5s-contact-form form textarea:focus {
  outline: 2px solid rgba(47, 138, 53, .28);
  outline-offset: 0
}

.t5s-contact-form form button,
.t5s-contact-form form input[type=submit],
.t5s-contact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  height: 34px;
  min-width: 110px;
  margin: 10px auto 0;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  background: #2f8a35;
  box-shadow: none;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 34px;
  text-transform: none;
  cursor: pointer
}

.t5s-contact-form form p:last-child {
  text-align: center
}

.t5s-contact-form form button:hover,
.t5s-contact-form form input[type=submit]:hover,
.t5s-contact-form .wpcf7-submit:hover {
  background: #176b24;
  color: #fff
}

.t5s-contact-form .wpcf7-form-control-wrap {
  display: block
}

.t5s-contact-form .wpcf7-not-valid-tip {
  margin-top: 5px;
  color: #c10000;
  font-size: 12px
}

.t5s-contact-form .wpcf7-response-output {
  margin: 14px 0 0;
  padding: 8px 10px;
  font-size: 13px
}

@media(max-width:900px) {
  .t5s-contact-branches {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .t5s-contact-form-band {
    min-height: 560px
  }

  .t5s-contact-form-card {
    margin-top: 20px
  }
}

@media(max-width:640px) {
  .t5s-contact-breadcrumb {
    padding-bottom: 32px
  }

  .t5s-contact-branches-wrap {
    padding-bottom: 44px
  }

  .t5s-contact-branches {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .t5s-contact-branch-card {
    min-height: 0;
    padding: 22px 18px
  }

  .t5s-contact-form-card {
    padding: 28px 20px
  }

  .t5s-contact-form-card h2 {
    font-size: 28px
  }

  .t5s-contact-form form>div {
    grid-template-columns: 1fr;
    gap: 0
  }

  .t5s-contact-form-band {
    padding-bottom: 44px
  }
}

/* Projects archive UX */
.t5s-projects-archive-section {
  padding: 24px 0 70px;
  background: #fff;
  color: #111
}

.t5s-projects-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
  width: min(620px, 100%);
  margin: 0 auto 26px
}

.t5s-projects-search input {
  width: 100%;
  height: 30px;
  margin: 0;
  padding: 0 18px;
  border: 1px solid #bfc7d1;
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
  color: #111;
  font-size: 13px;
  line-height: 30px
}

.t5s-projects-search input:focus {
  outline: 2px solid rgba(47, 138, 53, .22);
  outline-offset: 0
}

.t5s-projects-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #2f8a35;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer
}

.t5s-projects-filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 auto 42px
}

.t5s-projects-filters button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 30px;
  padding: 0 18px;
  border: 1px solid #bfc7d1;
  border-radius: 999px;
  background: #fff;
  color: #6b7280;
  font-size: 13px;
  line-height: 28px;
  cursor: pointer
}

.t5s-projects-filters button:hover,
.t5s-projects-filters button.is-active {
  border-color: #2f8a35;
  background: #2f8a35;
  color: #fff
}

.t5s-projects-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px
}

.t5s-projects-archive-card {
  background: #f3f3f3;
  border-top: 3px solid #f8ad12
}

.t5s-projects-archive-card:nth-child(4n) {
  background: #f8ad12
}

.t5s-projects-archive-image {
  display: block;
  height: 275px;
  overflow: hidden;
  background: #e5e5e5
}

.t5s-projects-archive-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease
}

.t5s-projects-archive-card:hover .t5s-projects-archive-image img {
  transform: scale(1.035)
}

.t5s-projects-archive-body {
  min-height: 250px;
  padding: 24px 26px 30px
}

.t5s-projects-archive-body h3 {
  margin: 0;
  color: #111;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0
}

.t5s-projects-archive-body h3 a {
  color: inherit
}

.t5s-projects-archive-body h3 a:hover {
  color: #2f8a35
}

.t5s-projects-archive-body p {
  margin: 24px 0 0;
  color: #111;
  font-size: 14px;
  line-height: 1.55
}

.t5s-projects-archive-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none
}

.t5s-projects-archive-more:hover {
  color: #2f8a35
}

.t5s-projects-empty {
  margin: 34px 0 0;
  text-align: center;
  color: #111;
  font-size: 15px;
  font-weight: 700
}

@media(max-width:760px) {
  .t5s-projects-archive-grid {
    grid-template-columns: 1fr
  }

  .t5s-projects-archive-image {
    height: 220px
  }

  .t5s-projects-archive-body {
    min-height: 0;
    padding: 22px 18px
  }

  .t5s-projects-archive-body h3 {
    font-size: 19px
  }

  .t5s-projects-filters {
    gap: 8px
  }

  .t5s-projects-filters button {
    min-width: 0
  }
}

/* News detail */
.t5s-news-detail {
  background: #eef2f6;
  color: #111
}

.t5s-news-detail-hero {
  position: relative;
  min-height: 672px;
  background: #27313a center/cover no-repeat;
  border-top: 5px solid #f8ad12;
  color: #fff
}

.t5s-news-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .58)
}

.t5s-news-detail-hero .t5s-news-detail-container {
  position: relative;
  z-index: 2;
  padding-top: 58px
}

.t5s-news-detail-breadcrumb {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4
}

.t5s-news-detail-breadcrumb a,
.t5s-news-detail-breadcrumb span {
  color: #fff
}

.t5s-news-detail-hero h1 {
  max-width: 900px;
  margin: 128px 0 0;
  color: #f8ad12;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0
}

.t5s-news-detail-body-section {
  padding: 64px 0 72px
}

.t5s-news-detail-layout {
  display: grid;
  grid-template-columns: 44px minmax(0, 760px) 250px;
  gap: 28px;
  align-items: start
}

.t5s-news-share {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 12px;
  justify-items: center
}

.t5s-news-share a,
.t5s-news-share button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #808892;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer
}

.t5s-news-share a:hover,
.t5s-news-share button:hover {
  background: #2f8a35;
  color: #fff
}

.t5s-news-article {
  padding: 42px 52px 56px;
  background: #fff
}

.t5s-news-meta {
  margin-bottom: 20px;
  color: #111;
  font-size: 14px;
  line-height: 1.4
}

.t5s-news-article>h2 {
  margin: 0 0 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid #cfcfcf;
  color: #111;
  font-size: 33px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0
}

.t5s-news-richtext {
  color: #111;
  font-size: 16px;
  line-height: 1.68
}

.t5s-news-richtext p {
  margin: 0 0 18px
}

.t5s-news-richtext h2,
.t5s-news-richtext h3 {
  margin: 26px 0 14px;
  color: #111;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0
}

.t5s-news-richtext h2 {
  font-size: 28px
}

.t5s-news-richtext h3 {
  font-size: 23px
}

.t5s-news-richtext img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px 0
}

.t5s-news-richtext ul,
.t5s-news-richtext ol {
  margin: 0 0 18px;
  padding-left: 22px
}

.t5s-news-richtext li {
  margin-bottom: 8px
}

.t5s-news-richtext strong,
.t5s-news-richtext b {
  font-weight: 800
}

.t5s-news-richtext blockquote {
  margin: 26px 0;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-left: 3px solid #f8ad12;
  background: #fff;
  color: #111;
  font-style: italic
}

.t5s-news-sidebar {
  display: grid;
  gap: 34px
}

.t5s-news-toc,
.t5s-news-featured {
  padding: 22px 20px;
  background: #fff7e8
}

.t5s-news-toc h3,
.t5s-news-featured h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #2f8a35;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0
}

.t5s-news-toc h3:after {
  content: "";
  height: 1px;
  flex: 1;
  background: #2f8a35
}

.t5s-news-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc
}

.t5s-news-toc li {
  counter-increment: toc;
  padding: 12px 0;
  border-bottom: 1px solid #bbb
}

.t5s-news-toc li a {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 6px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none
}

.t5s-news-toc li a:before {
  content: counter(toc) "."
}

.t5s-news-toc li a:hover {
  color: #2f8a35
}

.t5s-news-featured {
  background: transparent;
  padding: 0
}

.t5s-news-featured h3 {
  font-size: 23px
}

.t5s-news-featured article {
  margin-bottom: 28px
}

.t5s-news-featured article a {
  display: block;
  color: #111;
  text-decoration: none
}

.t5s-news-featured img {
  display: block;
  width: 100%;
  height: 112px;
  object-fit: cover;
  margin-bottom: 12px
}

.t5s-news-featured strong {
  display: block;
  color: #111;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.32
}

.t5s-news-featured a:hover strong {
  color: #2f8a35
}

.t5s-news-related-section {
  padding: 0 0 78px;
  background: #eef2f6
}

.t5s-news-related-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px
}

.t5s-news-related-heading h2 {
  margin: 0;
  color: #2f8a35;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0
}

.t5s-news-related-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 22px;
  border: 1px solid #d79000;
  background: #f8ad12;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none
}

.t5s-news-related-heading a:hover {
  background: #2f8a35;
  border-color: #2f8a35;
  color: #fff
}

.t5s-news-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px
}

.t5s-news-related-image {
  display: block;
  height: 142px;
  overflow: hidden;
  background: #ddd
}

.t5s-news-related-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.t5s-news-related-grid h3 {
  margin: 14px 0 0;
  color: #111;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35
}

.t5s-news-related-grid h3 a {
  color: inherit;
  text-decoration: none
}

.t5s-news-related-grid h3 a:hover {
  color: #2f8a35
}

.t5s-news-related-grid p {
  margin: 10px 0 0;
  color: #111;
  font-size: 14px;
  line-height: 1.5
}

@media(max-width:1024px) {
  .t5s-news-detail-layout {
    grid-template-columns: minmax(0, 1fr) 250px
  }

  .t5s-news-share {
    display: none
  }

  .t5s-news-detail-hero h1 {
    font-size: 42px
  }
}

@media(max-width:760px) {
  .t5s-news-detail-hero {
    min-height: 460px
  }

  .t5s-news-detail-hero .t5s-news-detail-container {
    padding-top: 34px
  }

  .t5s-news-detail-hero h1 {
    margin-top: 80px;
    font-size: 31px
  }

  .t5s-news-detail-body-section {
    padding: 36px 12px 44px
  }

  .t5s-news-detail-layout {
    grid-template-columns: 1fr
  }

  .t5s-news-article {
    padding: 28px 20px 34px
  }

  .t5s-news-article>h2 {
    font-size: 25px
  }

  .t5s-news-richtext {
    font-size: 15px
  }

  .t5s-news-related-heading {
    align-items: flex-start;
    flex-direction: column
  }

  .t5s-news-related-heading h2 {
    font-size: 30px
  }

  .t5s-news-related-grid {
    grid-template-columns: 1fr
  }

  .t5s-news-related-image {
    height: 210px
  }
}
