@charset "UTF-8";
body {
  font-family: "Sen", sans-serif;
  background: #33477C;
}

.container-max {
  max-width: 1400px;
  position: relative;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

p {
  font-weight: 300;
}

.section-head {
  margin-bottom: 0;
}
.section-head .section-title {
  font-size: 2.2rem;
  font-weight: 400;
  color: #EBEBED;
  line-height: 1.3;
}
.section-head .section-description {
  font-size: 18px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.5;
  text-align: justify;
}

.site-header {
  padding: 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.site-header.scrolled {
  background: #EBEBED;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.site-header.scrolled .nav-link {
  color: #33477C !important;
}
.site-header.scrolled .nav-link:hover {
  background: rgba(11, 30, 63, 0.08);
}
.site-header.scrolled .mobile-toggle span {
  background: #33477C;
}
.site-header .header-wrapper {
  display: flex;
  align-items: center;
  height: 60px;
  width: 100%;
}
.site-header .header-wrapper .logo-left {
  flex-shrink: 0;
  margin-right: 20px;
}
.site-header .header-wrapper .logo-left a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header .header-wrapper .logo-left img {
  height: 60px;
  width: auto;
  display: block;
}
.site-header .header-wrapper .nav-center {
  flex: 1;
  display: flex;
}
.site-header .header-wrapper .nav-center .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  align-items: center;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item {
  flex: 1;
  text-align: center;
  position: relative;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item.menu-item-has-children:hover .sub-menu {
  display: block;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Sen", sans-serif;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item a:hover {
  background: rgba(255, 255, 255, 0.12);
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item a i {
  font-size: 10px;
  margin-top: 1px;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1e3a6e;
  list-style: none;
  padding: 4px 0;
  margin: 0;
  min-width: 260px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 100;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.2s ease;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item .sub-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.site-header .header-wrapper .mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.site-header .header-wrapper .mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.offcanvas-menu {
  background: #33477C;
  width: 300px;
}
.offcanvas-menu .offcanvas-header {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.offcanvas-menu .offcanvas-header .offcanvas-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.offcanvas-menu .offcanvas-header .offcanvas-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.offcanvas-menu .offcanvas-header .offcanvas-close:hover {
  opacity: 0.7;
}
.offcanvas-menu .offcanvas-body {
  padding: 10px 0;
}
.offcanvas-menu .offcanvas-body .offcanvas-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li a {
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.5px;
  font-family: "Sen", sans-serif;
  transition: all 0.3s ease;
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li a:hover, .offcanvas-menu .offcanvas-body .offcanvas-nav li a.active {
  color: #EBEBED;
  padding-left: 25px;
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li.has-sub .offcanvas-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li.has-sub .offcanvas-nav-row a {
  flex: 1;
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li.has-sub .offcanvas-nav-row .sub-arrow {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 20px;
  cursor: pointer;
  font-size: 11px;
  transition: all 0.3s ease;
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li.has-sub .offcanvas-nav-row .sub-arrow.open i {
  display: inline-block;
  transform: rotate(180deg);
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li.has-sub .offcanvas-sub {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.2);
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li.has-sub .offcanvas-sub.open {
  display: block;
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li.has-sub .offcanvas-sub li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: none;
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li.has-sub .offcanvas-sub li a {
  padding: 11px 20px 11px 30px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0;
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li.has-sub .offcanvas-sub li a:hover {
  padding-left: 35px;
  color: #ffffff;
}

.site-footer {
  background: #33477C;
  color: white;
}
.site-footer .newsletter-section {
  padding: 50px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .newsletter-section .newsletter-content .newsletter-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}
.site-footer .newsletter-section .newsletter-content .newsletter-header i {
  font-size: 24px;
  color: #ffffff;
}
.site-footer .newsletter-section .newsletter-content .newsletter-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #33477C;
}
.site-footer .newsletter-section .newsletter-content .newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 700px;
}
.site-footer .newsletter-section .newsletter-content .newsletter-form .form-input {
  flex: 1;
  background: transparent;
  border: 2px solid white;
  border-radius: 8px;
  padding: 14px 20px;
  color: white;
  font-size: 16px;
}
.site-footer .newsletter-section .newsletter-content .newsletter-form .form-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .newsletter-section .newsletter-content .newsletter-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .newsletter-section .newsletter-content .newsletter-form .form-input:focus {
  outline: none;
  border-color: #33477C;
}
.site-footer .newsletter-section .newsletter-content .newsletter-form .theme-btn {
  width: 85px;
  height: 55px;
  border: none;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: #33477C;
}
.site-footer .newsletter-section .newsletter-content .newsletter-form .theme-btn i {
  font-size: 28px;
}
.site-footer .footer-main {
  padding: 60px 0px 40px;
}
.site-footer .footer-main .footer-column .footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0 0 20px 0;
}
.site-footer .footer-main .footer-column .footer-logo .brand-highlight {
  color: #EBEBED;
}
.site-footer .footer-main .footer-column .footer-description {
  max-width: 380px;
  font-size: 16px;
  line-height: 1.7;
  color: #e6e6e6;
  margin: 0 0 25px 0;
}
.site-footer .footer-main .footer-column .social-links {
  display: flex;
  gap: 12px;
}
.site-footer .footer-main .footer-column .social-links .social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6e6e6;
  transition: all 0.3s ease;
}
.site-footer .footer-main .footer-column .social-links .social-link i {
  font-size: 24px;
}
.site-footer .footer-main .footer-column .social-links .social-link:hover {
  background: #EBEBED;
}
.site-footer .footer-main .footer-column .footer-title {
  font-size: 16px;
  font-weight: 600;
  color: #EBEBED;
  margin: 0 0 40px 0;
  letter-spacing: 0.5px;
}
.site-footer .footer-main .footer-column .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-main .footer-column .footer-links li {
  margin-bottom: 8px;
}
.site-footer .footer-main .footer-column .footer-links li a {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.site-footer .footer-main .footer-column .footer-links li a:hover {
  color: #EBEBED;
}
.site-footer .footer-main .footer-column .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-main .footer-column .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #e6e6e6;
}
.site-footer .footer-main .footer-column .contact-list li i {
  font-size: 18px;
  color: #b3b3b3;
  flex-shrink: 0;
  margin-top: 0;
}
.site-footer .footer-main .footer-column .contact-list li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-main .footer-column .contact-list li a:hover {
  color: #EBEBED;
}
.site-footer .footer-main .footer-column .contact-list li a.main-phone {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
}
.site-footer .footer-main .footer-column .contact-list li span {
  line-height: 1.6;
  font-size: 16px;
  color: #b3b3b3;
}
.site-footer .footer-main .footer-column .contact-list li:nth-child(1) i, .site-footer .footer-main .footer-column .contact-list li:nth-child(3) i {
  margin-top: 0px;
}
.site-footer .footer-main .footer-column .contact-list li:nth-child(2) i {
  margin-top: 5px;
}
.site-footer .footer-bottom {
  padding: 25px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .footer-bottom .bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-bottom .bottom-content .copyright {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.site-footer .footer-bottom .bottom-content .copyright .developer-link {
  color: #EBEBED;
  text-decoration: none;
  font-weight: 600;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom {
  display: flex;
  gap: 15px;
  align-items: center;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom a:hover {
  color: #EBEBED;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom span {
  color: rgba(255, 255, 255, 0.3);
}
.site-footer .whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.site-footer .whatsapp-float img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.home .home-about-section {
  padding: 0;
  margin-top: 30px;
}
.home .home-about-section .row {
  align-items: flex-start;
}
.home .home-about-section .home-left-col {
  display: flex;
  flex-direction: column;
}
.home .home-about-section .home-left-col .home-main-img {
  flex: 1;
  overflow: hidden;
}
.home .home-about-section .home-left-col .home-main-img img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.home .home-about-section .home-left-col .home-bottom-strip {
  padding: 20px 0;
  display: flex;
  align-items: center;
}
.home .home-about-section .home-left-col .home-bottom-strip .strip-logo {
  flex-shrink: 0;
  width: 100px;
}
.home .home-about-section .home-left-col .home-bottom-strip .strip-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.home .home-about-section .home-left-col .home-bottom-strip .strip-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}
.home .home-about-section .home-left-col .home-bottom-strip .strip-list li {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 6px;
}
.home .home-about-section .home-left-col .home-bottom-strip .strip-list li:last-child {
  margin-bottom: 0;
}
.home .home-about-section .home-right-col {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.home .home-about-section .home-right-col .right-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 0 30px;
}
.home .home-about-section .home-right-col .right-top .border-line {
  width: 80%;
  height: 0.5px;
  background: #EBEBED;
}
.home .home-about-section .home-right-col .right-top .circle-collage {
  width: 250px;
  height: 250px;
  overflow: hidden;
}
.home .home-about-section .home-right-col .right-top .circle-collage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.home .home-about-section .home-right-col .right-top .cert-text p {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.7;
  letter-spacing: 0.7px;
  margin-bottom: 0px;
}
.home .home-about-section .home-right-col .right-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 40px 0;
  background-color: #EBEBED;
}
.home .home-about-section .home-right-col .right-bottom .product-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.home .home-about-section .home-right-col .right-bottom .product-images .product-img-item {
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.home .home-about-section .home-right-col .right-bottom .product-images .product-img-item img {
  width: 180px;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.home .home-about-section .home-right-col .right-bottom .contact-strip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  background: #EBEBED;
}
.home .home-about-section .home-right-col .right-bottom .contact-strip .contact-strip-logo {
  width: 70px;
  flex-shrink: 0;
  margin-top: -10px;
}
.home .home-about-section .home-right-col .right-bottom .contact-strip .contact-strip-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.home .home-about-section .home-right-col .right-bottom .contact-strip .contact-strip-info {
  flex: 1;
}
.home .home-about-section .home-right-col .right-bottom .contact-strip .contact-strip-info .address {
  font-size: 16px;
  color: #333;
  margin-bottom: 0;
}
.home .home-about-section .home-right-col .right-bottom .contact-strip .contact-strip-info .contact {
  font-size: 16px;
  margin: 0;
}
.home .home-about-section .home-right-col .right-bottom .contact-strip .contact-strip-info .contact strong {
  color: #1e3a6e;
}

.error-page-section {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.error-page-section .error-deco {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}
.error-page-section .error-deco svg {
  width: 200px;
  height: 200px;
}
.error-page-section .error-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 50px 60px;
  text-align: center;
  max-width: 500px;
  position: relative;
  z-index: 2;
}
.error-page-section .error-card .error-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #c0533a;
  margin-bottom: 15px;
}
.error-page-section .error-card .error-subtitle .line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #c0533a;
}
.error-page-section .error-card .error-title {
  font-family: "Raleway", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #33477C;
  margin-bottom: 30px;
}
.error-page-section .error-card .btn-back-home {
  display: inline-block;
  padding: 14px 35px;
  background: #c0533a;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.error-page-section .error-card .btn-back-home:hover {
  background: rgb(160.6656, 69.4544, 48.5344);
  box-shadow: 0 6px 20px rgba(192, 83, 58, 0.3);
}

.page-template-page-about-php .about-rott-section {
  padding: 0;
}
.page-template-page-about-php .about-rott-section .about-top-row {
  padding: 40px 0 20px;
}
.page-template-page-about-php .about-rott-section .about-top-row .about-content-col {
  padding-right: 40px;
}
.page-template-page-about-php .about-rott-section .about-top-row .about-content-col .section-head {
  margin-bottom: 0;
}
.page-template-page-about-php .about-rott-section .about-top-row .about-content-col .section-head .section-title {
  margin-bottom: 8px;
}
.page-template-page-about-php .about-rott-section .about-top-row .about-content-col .section-head .about-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  color: #EBEBED;
  margin-bottom: 20px;
}
.page-template-page-about-php .about-rott-section .about-top-row .about-content-col .section-head .section-description {
  margin: 0;
}
.page-template-page-about-php .about-rott-section .about-top-row .about-img-col .about-img-wrap {
  border-radius: 8px;
  overflow: hidden;
}
.page-template-page-about-php .about-rott-section .about-top-row .about-img-col .about-img-wrap img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-about-php .about-rott-section .about-bottom-wrap {
  padding: 10px 0;
}
.page-template-page-about-php .about-rott-section .about-bottom-wrap .about-bottom-row {
  background: #EBEBED;
}
.page-template-page-about-php .about-rott-section .about-bottom-wrap .about-bottom-row .bottom-col-title {
  font-size: 16px;
  font-weight: 400;
  color: #33477C;
  text-align: center;
  margin-bottom: 5px;
}
.page-template-page-about-php .about-rott-section .about-bottom-wrap .about-bottom-row .expertise-col .expertise-intro {
  font-size: 16px;
  font-weight: 400;
  color: #33477C;
  margin-bottom: 0px;
}
.page-template-page-about-php .about-rott-section .about-bottom-wrap .about-bottom-row .expertise-col .expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-template-page-about-php .about-rott-section .about-bottom-wrap .about-bottom-row .expertise-col .expertise-list li {
  font-size: 16px;
  font-weight: 400;
  color: #33477C;
  padding: 0;
  line-height: 1.6;
}
.page-template-page-about-php .about-rott-section .about-bottom-wrap .about-bottom-row .expertise-col .expertise-list li::before {
  content: "• ";
}
.page-template-page-about-php .about-rott-section .about-bottom-wrap .about-bottom-row .expertise-col .compliance-title {
  font-size: 16px;
  font-weight: 400;
  color: #33477C;
  margin-bottom: 0px;
}
.page-template-page-about-php .about-rott-section .about-bottom-wrap .about-bottom-row .expertise-col .compliance-text {
  font-size: 16px;
  color: #33477C;
  line-height: 1.4;
  margin: 0;
}
.page-template-page-about-php .about-rott-section .about-bottom-wrap .about-bottom-row .expertise-col .compliance-text strong {
  font-weight: 700;
}
.page-template-page-about-php .about-rott-section .about-bottom-wrap .about-bottom-row .leadership-col .leader-name {
  font-size: 16px;
  font-weight: 400;
  color: #33477C;
  margin-bottom: 1px;
}
.page-template-page-about-php .about-rott-section .about-bottom-wrap .about-bottom-row .leadership-col .leader-desc {
  font-size: 17px;
  font-weight: 400;
  color: #33477C;
  line-height: 1.4;
  text-align: justify;
  margin-bottom: 20px;
}
.page-template-page-about-php .about-rott-section .about-bottom-wrap .about-bottom-row .leadership-col .partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 10px;
}
.page-template-page-about-php .about-rott-section .about-bottom-wrap .about-bottom-row .leadership-col .partners-grid .partner-item {
  flex: 0 0 calc(50% - 10px);
  font-size: 16px;
  font-weight: 400;
  color: #33477C;
  line-height: 1.4;
  padding: 2px 0;
}

.page-template-page-clean-agent-system .clean-agent-section {
  padding: 0;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-top-row {
  padding: 40px 0 30px;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-top-row .clean-agent-content-col .section-head {
  margin-bottom: 24px;
  padding-right: 40px;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-top-row .clean-agent-content-col .section-head .section-description {
  margin: 0;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-top-row .clean-agent-content-col .agent-types-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-top-row .clean-agent-content-col .agent-types-wrap .agent-logo-wrap {
  flex: 0 0 140px;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-top-row .clean-agent-content-col .agent-types-wrap .agent-logo-wrap img {
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-top-row .clean-agent-content-col .agent-types-wrap .agent-list-wrap .agent-list-title {
  font-size: 18px;
  font-weight: 400;
  color: #EBEBED;
  margin-bottom: 6px;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-top-row .clean-agent-content-col .agent-types-wrap .agent-list-wrap .agent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-top-row .clean-agent-content-col .agent-types-wrap .agent-list-wrap .agent-list li {
  font-size: 17px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.7;
  padding: 0;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-top-row .clean-agent-content-col .agent-types-wrap .agent-list-wrap .agent-list li::before {
  content: "• ";
  color: #EBEBED;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-top-row .clean-agent-img-col .clean-agent-img-wrap {
  overflow: hidden;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-top-row .clean-agent-img-col .clean-agent-img-wrap img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-bottom-wrap {
  padding: 10px 0 10px;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row {
  gap: 0;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row .how-it-works-col .how-it-works-box {
  background: #EBEBED;
  padding: 4px 6px;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row .how-it-works-col .how-it-works-box .box-title {
  font-size: 17px;
  font-weight: 400;
  color: #33477C;
  text-align: center;
  margin-bottom: 5px;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row .how-it-works-col .how-it-works-box .box-description {
  font-size: 16px;
  font-weight: 300;
  color: #33477C;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 2px;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row .how-it-works-col .how-it-works-box .cta-label {
  font-size: 16px;
  font-weight: 400;
  color: #33477C;
  margin-bottom: 4px;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row .how-it-works-col .how-it-works-box .cta-text {
  font-size: 17px;
  font-weight: 700;
  color: #33477C;
  line-height: 1.6;
  margin: 0;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row .how-it-works-col .how-it-works-box .cta-text a {
  color: #33477C;
  text-decoration: none;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row .how-it-works-col .how-it-works-box .cta-text a:hover {
  text-decoration: underline;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row .clean-agent-bottom-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row .clean-agent-bottom-img-col .clean-agent-img-wrap {
  overflow: hidden;
}
.page-template-page-clean-agent-system .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row .clean-agent-bottom-img-col .clean-agent-img-wrap img {
  width: 320px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}

.page-template-page-automatic-total-flooding-co2-system .co2-section {
  padding: 0;
  background: #33477C;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-top-row {
  padding: 40px 0 20px;
  align-items: flex-start;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-top-row .co2-content-col {
  padding-right: 40px;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-top-row .co2-content-col .co2-text-wrap .co2-label {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 2px;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-top-row .co2-content-col .co2-text-wrap .section-description {
  font-size: 18px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.4;
  text-align: justify;
  margin-bottom: 2px;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-top-row .co2-content-col .co2-text-wrap .section-description sub {
  font-size: 10px;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-top-row .co2-content-col .co2-text-wrap .section-description:last-child {
  margin-bottom: 0;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-top-row .co2-img-col .co2-img-wrap {
  overflow: hidden;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-top-row .co2-img-col .co2-img-wrap img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-bottom-row .bottom-img-col .bottom-img-wrap {
  height: 100%;
  min-height: 180px;
  overflow: hidden;
  justify-content: center;
  display: flex;
  align-items: center;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-bottom-row .bottom-img-col .bottom-img-wrap img {
  width: 80%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-bottom-row .bottom-middle-col {
  padding: 50px 20px;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-bottom-row .bottom-middle-col .row {
  background: #EBEBED;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-bottom-row .bottom-middle-col .bottom-text-col .bottom-text-item {
  height: 100%;
  display: flex;
  align-items: center;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-bottom-row .bottom-middle-col .bottom-text-col .bottom-text-item .bottom-text {
  font-size: 16px;
  font-weight: 400;
  color: #33477C;
  line-height: 1.7;
  margin: 0;
  padding-left: 5px;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-bottom-row .bottom-middle-col .bottom-circle-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-bottom-row .bottom-middle-col .bottom-circle-col .bottom-circle-wrap {
  width: 150px;
  height: 150px;
  overflow: hidden;
}
.page-template-page-automatic-total-flooding-co2-system .co2-section .co2-bottom-row .bottom-middle-col .bottom-circle-col .bottom-circle-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.page-template-page-direct-low-pressure-dlp-system .dlp-section {
  padding: 20px;
  background: #33477C;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-top-row {
  padding: 40px 0;
  align-items: flex-start;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-top-row .dlp-content-col {
  padding-right: 40px;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-top-row .dlp-content-col .dlp-text-wrap .section-description {
  font-size: 18px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 5px;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-top-row .dlp-content-col .dlp-text-wrap .section-description:last-child {
  margin-bottom: 0;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-top-row .dlp-img-col .dlp-img-wrap {
  overflow: hidden;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-top-row .dlp-img-col .dlp-img-wrap img {
  width: 100%;
  height: 310px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-bottom-row .bottom-img-col .bottom-img-wrap {
  height: 100%;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-bottom-row .bottom-img-col .bottom-img-wrap img {
  width: 70%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-bottom-row .bottom-middle-col {
  padding: 0px 20px;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-bottom-row .bottom-middle-col .row {
  background: #EBEBED;
  height: 90%;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-bottom-row .bottom-middle-col .bottom-circle-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-bottom-row .bottom-middle-col .bottom-circle-col .bottom-circle-wrap {
  width: 180px;
  height: 180px;
  overflow: hidden;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-bottom-row .bottom-middle-col .bottom-circle-col .bottom-circle-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-bottom-row .bottom-middle-col .bottom-text-col .bottom-text-item {
  padding: 5px 2px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-bottom-row .bottom-middle-col .bottom-text-col .bottom-text-item .bottom-text {
  font-size: 14px;
  font-weight: 400;
  color: #33477C;
  line-height: 1.7;
  margin-bottom: 2px;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-bottom-row .bottom-middle-col .bottom-text-col .bottom-text-item .bottom-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-bottom-row .bottom-middle-col .bottom-text-col .bottom-text-item .bottom-list li {
  font-size: 14px;
  font-weight: 400;
  color: #33477C;
  line-height: 1.7;
  padding: 1px 0;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-bottom-row .bottom-middle-col .bottom-text-col .bottom-text-item .bottom-list li::before {
  content: "• ";
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-bottom-row .bottom-middle-col .bottom-text-col .bottom-text-item .bottom-text-bold {
  font-size: 14px;
  color: #33477C;
  line-height: 1.7;
  margin: 0;
}
.page-template-page-direct-low-pressure-dlp-system .dlp-section .dlp-bottom-row .bottom-middle-col .bottom-text-col .bottom-text-item .bottom-text-bold strong {
  font-weight: 700;
}

.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section {
  padding: 0;
  background: #33477C;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-top-row {
  padding: 40px 0 20px;
  align-items: flex-start;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-top-row .section-head .section-title {
  max-width: 1100px;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-top-row .ilp-content-col {
  padding-right: 40px;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-top-row .ilp-content-col .ilp-text-wrap .section-description {
  font-size: 16px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 2px;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-top-row .ilp-content-col .ilp-text-wrap .section-description sub {
  font-size: 10px;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-top-row .ilp-content-col .ilp-text-wrap .section-description:last-child {
  margin-bottom: 0;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-top-row .ilp-img-col .ilp-img-wrap {
  overflow: hidden;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-top-row .ilp-img-col .ilp-img-wrap img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row {
  padding: 0 0 40px;
  align-items: stretch;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-img-col {
  position: relative;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-img-col .ilp-bottom-img-wrap {
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  position: absolute;
  top: -80px;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-img-col .ilp-bottom-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-info-col .ilp-bottom-text-col {
  background: #EBEBED;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-info-col .ilp-bottom-text-col .ilp-bottom-text-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5px 20px;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-info-col .ilp-bottom-text-col .ilp-bottom-text-item .bottom-label {
  font-size: 17px;
  font-weight: 400;
  color: #33477C;
  margin-bottom: 2px;
  line-height: 1.5;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-info-col .ilp-bottom-text-col .ilp-bottom-text-item .bottom-inline-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px 0;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-info-col .ilp-bottom-text-col .ilp-bottom-text-item .bottom-inline-list li {
  font-size: 17px;
  font-weight: 300;
  color: #33477C;
  line-height: 1.4;
  padding: 1px 0;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-info-col .ilp-bottom-text-col .ilp-bottom-text-item .bottom-inline-list li::before {
  content: "• ";
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-info-col .ilp-bottom-text-col .ilp-bottom-text-item .bottom-standards-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-info-col .ilp-bottom-text-col .ilp-bottom-text-item .bottom-standards-list li {
  font-size: 17px;
  color: #33477C;
  line-height: 1.7;
  padding: 1px 0;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-info-col .ilp-bottom-text-col .ilp-bottom-text-item .bottom-standards-list li strong {
  font-weight: 800;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-info-col .ilp-bottom-text-col .ilp-bottom-text-item .bottom-standards-list li::before {
  content: "• ";
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-info-col .ilp-bottom-machine-col {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EBEBED;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-info-col .ilp-bottom-machine-col .ilp-machine-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-template-page-indirect-low-pressure-multi-agent-system .ilp-section .ilp-bottom-row .ilp-bottom-info-col .ilp-bottom-machine-col .ilp-machine-img-wrap img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}

.page-template-page-dry-chemical-system .dry-chemical-section {
  padding: 0;
  background: #33477C;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row {
  padding: 40px 0 20px;
  align-items: flex-start;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row .section-head {
  width: 100%;
  padding: 0 12px;
  margin-bottom: 15px;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row .dry-content-col {
  padding-right: 40px;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row .dry-content-col .dry-text-wrap {
  margin-bottom: 25px;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row .dry-content-col .dry-text-wrap .section-description {
  font-size: 18px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row .dry-content-col .dry-how-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row .dry-content-col .dry-how-wrap .dry-circle-img {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  overflow: hidden;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row .dry-content-col .dry-how-wrap .dry-circle-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row .dry-content-col .dry-how-wrap .dry-how-content {
  flex: 1;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row .dry-content-col .dry-how-wrap .dry-how-content .dry-how-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row .dry-content-col .dry-how-wrap .dry-how-content .dry-how-list {
  padding-left: 18px;
  margin: 0;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row .dry-content-col .dry-how-wrap .dry-how-content .dry-how-list li {
  font-size: 16px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.7;
  margin-bottom: 4px;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row .dry-content-col .dry-how-wrap .dry-how-content .dry-how-list li:last-child {
  margin-bottom: 0;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row .dry-img-col .dry-img-wrap {
  overflow: hidden;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-top-row .dry-img-col .dry-img-wrap img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-bottom-row {
  margin-bottom: 20px;
  background: #EBEBED;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-bottom-row .dry-bottom-text-col .dry-bottom-text-item {
  padding: 5px 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-bottom-row .dry-bottom-text-col .dry-bottom-text-item .dry-bottom-title {
  font-size: 16px;
  font-weight: 600;
  color: #33477C;
  margin-bottom: 12px;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-bottom-row .dry-bottom-text-col .dry-bottom-text-item .dry-bottom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-bottom-row .dry-bottom-text-col .dry-bottom-text-item .dry-bottom-list li {
  padding-left: 20px;
  font-size: 16px;
  font-weight: 300;
  color: #33477C;
  line-height: 1.1;
  margin-bottom: 2px;
  padding-left: 12px;
  position: relative;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-bottom-row .dry-bottom-text-col .dry-bottom-text-item .dry-bottom-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #33477C;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-bottom-row .dry-bottom-text-col .dry-bottom-text-item .dry-bottom-list li:last-child {
  margin-bottom: 0;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-bottom-row .dry-bottom-text-col:last-child .dry-bottom-text-item {
  padding-left: 50px;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-bottom-row .dry-bottom-img-col .dry-bottom-img-wrap {
  height: 100%;
  min-height: 150px;
  overflow: hidden;
}
.page-template-page-dry-chemical-system .dry-chemical-section .dry-bottom-row .dry-bottom-img-col .dry-bottom-img-wrap img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}

.page-template-page-wet-chemical-system .wet-chem-section {
  padding: 0;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-top-row {
  padding: 40px 0 20px;
  align-items: flex-start;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-top-row .wet-chem-content-col .wet-chem-text-wrap {
  padding-right: 20px;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-top-row .wet-chem-content-col .wet-chem-text-wrap .section-description {
  font-size: 18px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 16px;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-top-row .wet-chem-content-col .wet-chem-inner-row {
  margin-top: 4px;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-top-row .wet-chem-content-col .wet-chem-inner-row .wet-chem-product-img-col .wet-chem-product-img-wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-top-row .wet-chem-content-col .wet-chem-inner-row .wet-chem-product-img-col .wet-chem-product-img-wrap img {
  width: 100%;
  height: 380px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-top-row .wet-chem-content-col .wet-chem-inner-row .wet-chem-how-col {
  padding-left: 10px;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-top-row .wet-chem-content-col .wet-chem-inner-row .wet-chem-how-col .wet-chem-how-wrap .how-title {
  font-size: 16px;
  font-weight: 300;
  color: #EBEBED;
  margin-bottom: 8px;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-top-row .wet-chem-content-col .wet-chem-inner-row .wet-chem-how-col .wet-chem-how-wrap .how-list {
  padding-left: 18px;
  margin: 0;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-top-row .wet-chem-content-col .wet-chem-inner-row .wet-chem-how-col .wet-chem-how-wrap .how-list li {
  font-size: 16px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.7;
  margin-bottom: 6px;
  text-align: justify;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-top-row .wet-chem-content-col .wet-chem-inner-row .wet-chem-how-col .wet-chem-how-wrap .how-list li:last-child {
  margin-bottom: 0;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-top-row .wet-chem-img-col .wet-chem-img-wrap {
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-top-row .wet-chem-img-col .wet-chem-img-wrap img {
  width: 95%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row {
  margin-bottom: 20px;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-why-col,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-apps-col {
  background: #EBEBED;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-why-col .bottom-why-item,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-why-col .bottom-apps-item,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-apps-col .bottom-why-item,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-apps-col .bottom-apps-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5px 20px;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-why-col .bottom-why-item .bottom-label,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-why-col .bottom-apps-item .bottom-label,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-apps-col .bottom-why-item .bottom-label,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-apps-col .bottom-apps-item .bottom-label {
  font-size: 17px;
  font-weight: 400;
  color: #33477C;
  margin-bottom: 6px;
  line-height: 1.4;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-why-col .bottom-why-item .bottom-list,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-why-col .bottom-apps-item .bottom-list,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-apps-col .bottom-why-item .bottom-list,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-apps-col .bottom-apps-item .bottom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-why-col .bottom-why-item .bottom-list li,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-why-col .bottom-apps-item .bottom-list li,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-apps-col .bottom-why-item .bottom-list li,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-apps-col .bottom-apps-item .bottom-list li {
  font-size: 17px;
  font-weight: 300;
  color: #33477C;
  line-height: 1.4;
  padding: 1px 0;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-why-col .bottom-why-item .bottom-list li::before,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-why-col .bottom-apps-item .bottom-list li::before,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-apps-col .bottom-why-item .bottom-list li::before,
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-apps-col .bottom-apps-item .bottom-list li::before {
  content: "• ";
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-circle-col {
  background: #EBEBED;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-circle-col .bottom-circle-wrap {
  width: 150px;
  height: 150px;
  overflow: hidden;
}
.page-template-page-wet-chemical-system .wet-chem-section .wet-chem-bottom-row .bottom-circle-col .bottom-circle-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.page-template-page-contact-us .contact-section {
  padding: 20px 0;
}
.page-template-page-contact-us .contact-section .contact-title-row {
  padding: 30px 0 20px;
}
.page-template-page-contact-us .contact-section .contact-title-row .section-title {
  color: #EBEBED;
}
.page-template-page-contact-us .contact-section .contact-top-row .contact-person-col .contact-person-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-template-page-contact-us .contact-section .contact-top-row .contact-person-col .contact-person-wrap .contact-person-img-wrap {
  overflow: hidden;
  margin-bottom: 10px;
}
.page-template-page-contact-us .contact-section .contact-top-row .contact-person-col .contact-person-wrap .contact-person-img-wrap img {
  width: 180px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-contact-us .contact-section .contact-top-row .contact-person-col .contact-person-wrap .contact-person-caption {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: #EBEBED;
  line-height: 1.6;
  margin: 0;
}
.page-template-page-contact-us .contact-section .contact-top-row .contact-map-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.page-template-page-contact-us .contact-section .contact-top-row .contact-map-col .contact-map-wrap {
  width: 100%;
  max-width: 500px;
  overflow: hidden;
}
.page-template-page-contact-us .contact-section .contact-top-row .contact-map-col .contact-map-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-template-page-contact-us .contact-section .contact-message-row {
  padding: 10px 0 20px;
}
.page-template-page-contact-us .contact-section .contact-message-row .contact-message-list {
  list-style: disc;
  margin: 0;
}
.page-template-page-contact-us .contact-section .contact-message-row .contact-message-list li {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #EBEBED;
  line-height: 1.7;
  margin-bottom: 6px;
  max-width: 700px;
}
.page-template-page-contact-us .contact-section .contact-message-row .contact-message-list li:last-child {
  margin-bottom: 0;
}
.page-template-page-contact-us .contact-section .contact-info-row {
  background: #EBEBED;
  padding: 2px 5px;
}
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-logo-col .contact-info-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-logo-col .contact-info-logo-wrap img {
  width: 120px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-office-col .contact-info-item,
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-phone-col .contact-info-item {
  padding: 4px 10px;
}
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-office-col .contact-info-item .contact-info-label,
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-phone-col .contact-info-item .contact-info-label {
  font-size: 17px;
  font-weight: 700;
  color: #33477C;
  margin-bottom: 2px;
  line-height: 1.5;
}
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-office-col .contact-info-item .contact-info-text,
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-phone-col .contact-info-item .contact-info-text {
  font-size: 17px;
  font-weight: 400;
  color: #33477C;
  line-height: 1.6;
  margin-bottom: 1px;
}
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-office-col .contact-info-item .contact-info-text strong,
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-phone-col .contact-info-item .contact-info-text strong {
  font-weight: 700;
  color: #33477C;
}
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-office-col .contact-info-item .contact-info-text a,
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-phone-col .contact-info-item .contact-info-text a {
  color: #33477C;
  text-decoration: none;
}
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-office-col .contact-info-item .contact-info-text a:hover,
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-phone-col .contact-info-item .contact-info-text a:hover {
  text-decoration: underline;
}
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-office-col .contact-info-item .contact-info-text:last-child,
.page-template-page-contact-us .contact-section .contact-info-row .contact-info-phone-col .contact-info-item .contact-info-text:last-child {
  margin-bottom: 0;
}

.page-template-page-fire-detection-alarm-systems .fire-detection-section {
  padding: 0;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row {
  padding: 40px 0 20px;
  align-items: flex-start;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row .section-head {
  padding: 0 12px;
  margin-bottom: 15px;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row .detection-content-col {
  padding-right: 40px;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row .detection-content-col .detection-text-wrap {
  margin-bottom: 25px;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row .detection-content-col .detection-text-wrap .section-description {
  font-size: 20px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 5px;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row .detection-content-col .detection-text-wrap .section-description:last-child {
  margin-bottom: 0;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row .detection-content-col .detection-design-wrap {
  display: flex;
  align-items: flex-start;
  margin-left: 45px;
  gap: 20px;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row .detection-content-col .detection-design-wrap .detection-thumb-img {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  overflow: hidden;
  margin-top: 30px;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row .detection-content-col .detection-design-wrap .detection-thumb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row .detection-content-col .detection-design-wrap .detection-design-content {
  flex: 1;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row .detection-content-col .detection-design-wrap .detection-design-content .detection-sub-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row .detection-content-col .detection-design-wrap .detection-design-content .section-description {
  font-size: 18px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.4;
  text-align: justify;
  margin-bottom: 6px;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row .detection-content-col .detection-design-wrap .detection-design-content .section-description:last-child {
  margin-bottom: 0;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row .detection-img-col .detection-img-wrap {
  overflow: hidden;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-top-row .detection-img-col .detection-img-wrap img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row {
  margin: 10px 0 40px;
  gap: 0;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-img-col {
  padding-right: 10px;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-img-col .bottom-img-wrap {
  height: 200px;
  overflow: hidden;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-img-col .bottom-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-content-col {
  background: #EBEBED;
  padding: 0;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-text-col .bottom-text-item {
  padding: 5px 5px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-text-col .bottom-text-item .bottom-sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #33477C;
  margin-bottom: 12px;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-text-col .bottom-text-item .bottom-text {
  font-size: 16px;
  font-weight: 400;
  color: #33477C;
  line-height: 1.4;
  text-align: justify;
  margin-bottom: 6px;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-text-col .bottom-text-item .bottom-text:last-child {
  margin-bottom: 0;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-circle-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-circle-col .bottom-circle-wrap {
  width: 180px;
  height: 180px;
  overflow: hidden;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-circle-col .bottom-circle-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-app-col .bottom-text-item {
  padding: 5px 5px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-app-col .bottom-text-item .bottom-sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #33477C;
  margin-bottom: 2px;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-app-col .bottom-text-item .bottom-app-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-app-col .bottom-text-item .bottom-app-list li {
  font-size: 16px;
  font-weight: 400;
  color: #33477C;
  line-height: 1.4;
  margin-bottom: 5px;
  padding-left: 12px;
  position: relative;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-app-col .bottom-text-item .bottom-app-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #33477C;
}
.page-template-page-fire-detection-alarm-systems .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-app-col .bottom-text-item .bottom-app-list li:last-child {
  margin-bottom: 0;
}

.page-template-page-services .ancillary-section {
  padding: 0 0 20px;
  background: #33477C;
}
.page-template-page-services .ancillary-section .ancillary-top-row {
  padding: 40px 0 20px;
  align-items: flex-start;
}
.page-template-page-services .ancillary-section .ancillary-top-row .section-head {
  padding: 0 12px;
}
.page-template-page-services .ancillary-section .ancillary-top-row .ancillary-content-col {
  padding-right: 40px;
}
.page-template-page-services .ancillary-section .ancillary-top-row .ancillary-content-col .ancillary-text-wrap {
  margin-bottom: 20px;
}
.page-template-page-services .ancillary-section .ancillary-top-row .ancillary-content-col .ancillary-text-wrap .section-description {
  font-size: 20px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.4;
  text-align: justify;
  margin-bottom: 8px;
}
.page-template-page-services .ancillary-section .ancillary-top-row .ancillary-content-col .ancillary-text-wrap .section-description:last-child {
  margin-bottom: 0;
}
.page-template-page-services .ancillary-section .ancillary-top-row .ancillary-content-col .ancillary-services-wrap .services-title {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 10px;
}
.page-template-page-services .ancillary-section .ancillary-top-row .ancillary-content-col .ancillary-services-wrap .services-title strong {
  font-weight: 700;
}
.page-template-page-services .ancillary-section .ancillary-top-row .ancillary-content-col .ancillary-services-wrap .services-list {
  padding-left: 20px;
  margin: 0;
}
.page-template-page-services .ancillary-section .ancillary-top-row .ancillary-content-col .ancillary-services-wrap .services-list li {
  font-size: 18px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.4;
  margin-bottom: 5px;
  text-align: justify;
}
.page-template-page-services .ancillary-section .ancillary-top-row .ancillary-content-col .ancillary-services-wrap .services-list li:last-child {
  margin-bottom: 0;
}
.page-template-page-services .ancillary-section .ancillary-top-row .ancillary-img-col .ancillary-img-wrap {
  overflow: hidden;
}
.page-template-page-services .ancillary-section .ancillary-top-row .ancillary-img-col .ancillary-img-wrap img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-services .ancillary-section .ancillary-bottom-row {
  background-color: #EBEBED;
}
.page-template-page-services .ancillary-section .ancillary-bottom-row .bottom-img-col .bottom-img-wrap {
  height: 140px;
  overflow: hidden;
}
.page-template-page-services .ancillary-section .ancillary-bottom-row .bottom-img-col .bottom-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-services .ancillary-section .ancillary-bottom-row .bottom-contact-col .bottom-contact-item {
  padding: 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.page-template-page-services .ancillary-section .ancillary-bottom-row .bottom-contact-col .bottom-contact-item .contact-main-text {
  font-size: 16px;
  font-weight: 400;
  color: #33477C;
  line-height: 1.6;
  margin-bottom: 4px;
}
.page-template-page-services .ancillary-section .ancillary-bottom-row .bottom-contact-col .bottom-contact-item .contact-main-text strong {
  font-weight: 700;
}
.page-template-page-services .ancillary-section .ancillary-bottom-row .bottom-contact-col .bottom-contact-item .contact-sub-text {
  font-size: 16px;
  font-weight: 300;
  color: #33477C;
  line-height: 1.6;
  margin-bottom: 5px;
}
.page-template-page-services .ancillary-section .ancillary-bottom-row .bottom-contact-col .bottom-contact-item .contact-sub-text strong {
  font-weight: 700;
  color: #33477C;
}
.page-template-page-services .ancillary-section .ancillary-bottom-row .bottom-contact-col .bottom-contact-item .contact-details {
  font-size: 17px;
  font-weight: 300;
  color: #33477C;
  margin: 0;
}
.page-template-page-services .ancillary-section .ancillary-bottom-row .bottom-contact-col .bottom-contact-item .contact-details i {
  font-size: 16px;
  color: #33477C;
  margin: 0 4px;
}
.page-template-page-services .ancillary-section .ancillary-bottom-row .bottom-contact-col .bottom-contact-item .contact-details strong {
  font-weight: 700;
  color: #33477C;
}

.page-template-page-training .training-section {
  padding: 0 0 20px;
  background: #33477C;
}
.page-template-page-training .training-section .training-top-row {
  padding: 40px 0 20px;
  align-items: flex-start;
}
.page-template-page-training .training-section .training-top-row .section-head {
  width: 100%;
  padding: 0 12px;
  margin-bottom: 15px;
}
.page-template-page-training .training-section .training-top-row .training-content-col {
  padding-right: 40px;
}
.page-template-page-training .training-section .training-top-row .training-content-col .training-programs-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.page-template-page-training .training-section .training-top-row .training-content-col .training-programs-wrap .training-thumb-img {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  overflow: hidden;
}
.page-template-page-training .training-section .training-top-row .training-content-col .training-programs-wrap .training-thumb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-template-page-training .training-section .training-top-row .training-content-col .training-programs-wrap .training-programs-content {
  flex: 1;
}
.page-template-page-training .training-section .training-top-row .training-content-col .training-programs-wrap .training-programs-content .training-sub-title {
  font-size: 18px;
  font-weight: 400;
  color: #EBEBED;
  margin-bottom: 12px;
}
.page-template-page-training .training-section .training-top-row .training-content-col .training-programs-wrap .training-programs-content .training-sub-title strong {
  font-weight: 700;
}
.page-template-page-training .training-section .training-top-row .training-content-col .training-programs-wrap .training-programs-content .training-programs-list {
  padding-left: 18px;
  margin: 0;
}
.page-template-page-training .training-section .training-top-row .training-content-col .training-programs-wrap .training-programs-content .training-programs-list li {
  font-size: 18px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.4;
  text-align: justify;
  margin-bottom: 6px;
}
.page-template-page-training .training-section .training-top-row .training-content-col .training-programs-wrap .training-programs-content .training-programs-list li sub {
  font-size: 10px;
}
.page-template-page-training .training-section .training-top-row .training-content-col .training-programs-wrap .training-programs-content .training-programs-list li:last-child {
  margin-bottom: 0;
}
.page-template-page-training .training-section .training-top-row .training-img-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-template-page-training .training-section .training-top-row .training-img-col .training-img-wrap {
  overflow: hidden;
  flex: 1;
}
.page-template-page-training .training-section .training-top-row .training-img-col .training-img-wrap img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-training .training-section .training-bottom-row {
  background-color: #EBEBED;
}
.page-template-page-training .training-section .training-bottom-row .training-bottom-col .training-bottom-item {
  padding: 5px 5px;
  height: 100%;
}
.page-template-page-training .training-section .training-bottom-row .training-bottom-col .training-bottom-item .bottom-col-title {
  font-size: 16px;
  font-weight: 600;
  color: #33477C;
  margin-bottom: 12px;
}
.page-template-page-training .training-section .training-bottom-row .training-bottom-col .training-bottom-item .bottom-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-template-page-training .training-section .training-bottom-row .training-bottom-col .training-bottom-item .bottom-col-list li {
  font-size: 16px;
  font-weight: 300;
  color: #33477C;
  line-height: 1.4;
  margin-bottom: 6px;
  padding-left: 14px;
  position: relative;
}
.page-template-page-training .training-section .training-bottom-row .training-bottom-col .training-bottom-item .bottom-col-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #33477C;
}
.page-template-page-training .training-section .training-bottom-row .training-bottom-col .training-bottom-item .bottom-col-list li:last-child {
  margin-bottom: 0;
}
.page-template-page-training .training-section .training-bottom-row .training-contact-row {
  padding: 5px 20px;
}
.page-template-page-training .training-section .training-bottom-row .training-contact-row .training-contact-text {
  font-size: 17px;
  font-weight: 400;
  color: #33477C;
  margin: 0;
}
.page-template-page-training .training-section .training-bottom-row .training-contact-row .training-contact-text strong {
  font-weight: 600;
  color: #33477C;
}

.page-template-page-design-accreditation .design-accred-section {
  padding: 0;
  background: #33477C;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-top-row {
  padding: 40px 0 0;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-top-row .design-accred-content-col .section-head {
  margin-bottom: 12px;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-text-wrap {
  padding-right: 30px;
  margin-bottom: 20px;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-text-wrap .section-description {
  font-size: 20px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.4;
  text-align: justify;
  margin-bottom: 0;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-inner-row .design-equip-img-col .design-equip-img-wrap {
  overflow: hidden;
  display: flex;
  position: absolute;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-inner-row .design-equip-img-col .design-equip-img-wrap img {
  margin-top: 10px;
  width: 100%;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-inner-row .design-person-info-col {
  padding-left: 20px;
  height: 100%;
  overflow: hidden;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-inner-row .design-person-info-col .design-person-info-wrap .person-name {
  font-size: 18px;
  font-weight: 400;
  color: #EBEBED;
  margin-bottom: 10px;
  line-height: 1.5;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-inner-row .design-person-info-col .design-person-info-wrap .person-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-inner-row .design-person-info-col .design-person-info-wrap .person-list li {
  font-size: 16px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.4;
  padding: 2px 0;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-inner-row .design-person-info-col .design-person-info-wrap .person-list li::before {
  content: "• ";
}
.page-template-page-design-accreditation .design-accred-section .design-accred-top-row .design-accred-img-col .design-accred-img-wrap {
  overflow: hidden;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-top-row .design-accred-img-col .design-accred-img-wrap img {
  margin-bottom: 20px;
  margin-top: 20px;
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row {
  margin-bottom: 20px;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box {
  height: 100%;
  background: #EBEBED;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row {
  flex: 1;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-methodology-col,
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-standards-col {
  padding: 5px 10px;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-methodology-col .box-sub-title,
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-standards-col .box-sub-title {
  font-size: 16px;
  font-weight: 400;
  color: #33477C;
  margin-bottom: 8px;
  line-height: 1.5;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-methodology-col .box-text,
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-standards-col .box-text {
  font-size: 14px;
  font-weight: 300;
  color: #33477C;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 6px;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-methodology-col .box-text:last-child,
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-standards-col .box-text:last-child {
  margin-bottom: 0;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-methodology-col .box-list,
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-standards-col .box-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-methodology-col .box-list li,
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-standards-col .box-list li {
  font-size: 14px;
  font-weight: 300;
  color: #33477C;
  line-height: 1.7;
  padding: 1px 0;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-methodology-col .box-list li::before,
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-standards-col .box-list li::before {
  content: "• ";
}
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-cta {
  padding: 5px 10px;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-cta .box-cta-text {
  font-size: 16px;
  color: #33477C;
  line-height: 1.6;
  text-align: justify;
  margin: 0;
}
.page-template-page-design-accreditation .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-cta .box-cta-text strong {
  font-weight: 700;
}

.page-template-page-technical .clients-section {
  padding: 0 0 20px;
  background: #33477C;
}
.page-template-page-technical .clients-section .section-head {
  padding: 30px 12px 15px;
}
.page-template-page-technical .clients-section .clients-top-row {
  padding: 0 0 20px;
  align-items: flex-start;
}
.page-template-page-technical .clients-section .clients-top-row .clients-content-col {
  padding-right: 30px;
}
.page-template-page-technical .clients-section .clients-top-row .clients-content-col .clients-text-wrap {
  margin-bottom: 18px;
}
.page-template-page-technical .clients-section .clients-top-row .clients-content-col .clients-text-wrap .section-description {
  font-size: 20px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.4;
  text-align: justify;
  margin-bottom: 8px;
}
.page-template-page-technical .clients-section .clients-top-row .clients-content-col .clients-text-wrap .section-description:last-child {
  margin-bottom: 0;
}
.page-template-page-technical .clients-section .clients-top-row .clients-content-col .clients-sub-head .clients-sub-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
}
.page-template-page-technical .clients-section .clients-top-row .clients-content-col .clients-sub-head .section-description {
  font-size: 18px;
  font-weight: 300;
  color: #EBEBED;
  line-height: 1.4;
  text-align: justify;
  margin: 0;
}
.page-template-page-technical .clients-section .clients-top-row .clients-img-col .clients-img-wrap {
  overflow: hidden;
  justify-content: flex-end;
  align-items: right;
  display: flex;
}
.page-template-page-technical .clients-section .clients-top-row .clients-img-col .clients-img-wrap img {
  width: 92%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: all 0.3s ease;
}
.page-template-page-technical .clients-section .clients-bottom-row {
  background-color: #EBEBED;
}
.page-template-page-technical .clients-section .clients-bottom-row .client-category-col .client-category-item {
  padding: 10px 5px 0;
  height: 100%;
}
.page-template-page-technical .clients-section .clients-bottom-row .client-category-col .client-category-item .category-title {
  font-size: 18px;
  font-weight: 600;
  color: #33477C;
  margin-bottom: 10px;
}
.page-template-page-technical .clients-section .clients-bottom-row .client-category-col .client-category-item .category-title.mt-20 {
  margin-top: 20px;
}
.page-template-page-technical .clients-section .clients-bottom-row .client-category-col .client-category-item .category-inner {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.page-template-page-technical .clients-section .clients-bottom-row .client-category-col .client-category-item .category-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  flex-shrink: 0;
}
.page-template-page-technical .clients-section .clients-bottom-row .client-category-col .client-category-item .category-list li {
  font-size: 18px;
  font-weight: 300;
  color: #33477C;
  line-height: 1.5;
  margin-bottom: 3px;
}
.page-template-page-technical .clients-section .clients-bottom-row .client-category-col .client-category-item .category-list li:last-child {
  margin-bottom: 0;
}
.page-template-page-technical .clients-section .clients-bottom-row .client-category-col .client-category-item .category-logos {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  align-items: center;
}
.page-template-page-technical .clients-section .clients-bottom-row .client-category-col .client-category-item .category-logos.logos-only {
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  height: 100%;
}
.page-template-page-technical .clients-section .clients-bottom-row .client-category-col .client-category-item .category-logos .logo-item img {
  width: 100%;
  max-width: 100px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  opacity: 0.85;
  transition: all 0.3s ease;
}
.page-template-page-technical .clients-section .clients-bottom-row .client-category-col .client-category-item .category-logos .logo-item:hover img {
  opacity: 1;
}
.page-template-page-technical .clients-section .clients-bottom-row .client-category-col .client-category-item .category-logos .logo-item.logo-large img {
  max-width: 130px;
}

@media (max-width: 1399.98px) {
  .page-id-15 .dlp-section .dlp-bottom-row .bottom-middle-col .bottom-circle-col .bottom-circle-wrap img {
    width: 100%;
    height: 90%;
  }
  .page-id-17 .ilp-section .ilp-bottom-row .ilp-bottom-img-col .ilp-bottom-img-wrap img {
    width: 90%;
  }
  .page-id-17 .ilp-section .ilp-bottom-row .ilp-bottom-img-col .ilp-bottom-img-wrap {
    top: -95px;
  }
  .page-id-25 .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-inner-row .design-equip-img-col .design-equip-img-wrap img {
    height: 325px;
  }
  .page-id-25 .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-inner-row .design-person-info-col .design-person-info-wrap .person-list li {
    font-size: 15px;
  }
  .page-id-25 .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-text-wrap .section-description {
    text-align: left;
  }
  .page-id-25 .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-methodology-col .box-text,
  .page-id-25 .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-inner-row .design-standards-col .box-text {
    text-align: left;
  }
}
@media (max-width: 1299.98px) {
  .site-header .header-wrapper .nav-center {
    display: none;
  }
  .site-header .header-wrapper .mobile-toggle {
    display: flex;
    margin-left: auto;
  }
  .page-id-13 .co2-section .co2-top-row .co2-content-col .co2-text-wrap .section-description {
    font-size: 16px;
  }
  .page-id-13 .co2-section .co2-bottom-row .bottom-img-col .bottom-img-wrap img {
    height: 70%;
  }
}
@media (max-width: 1199.98px) {
  .page-id-33 .training-section .training-top-row .training-content-col .training-programs-wrap .training-thumb-img {
    display: none;
  }
  .page-id-8 .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row .how-it-works-col .how-it-works-box .cta-text,
  .page-id-8 .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row .how-it-works-col .how-it-works-box .box-description {
    font-size: 14px;
  }
  .page-id-8 .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row .clean-agent-bottom-img-col .clean-agent-img-wrap img {
    height: 220px;
  }
  .page-id-15 .dlp-section .dlp-bottom-row .bottom-middle-col .bottom-circle-col {
    display: none;
  }
  .page-id-17 .ilp-section .ilp-bottom-row .ilp-bottom-img-col .ilp-bottom-img-wrap {
    top: -10px;
  }
  .page-id-17 .ilp-section .ilp-bottom-row .ilp-bottom-img-col .ilp-bottom-img-wrap img {
    height: 80%;
  }
  .page-id-23 .fire-detection-section .detection-top-row .detection-content-col .detection-design-wrap .detection-design-content .section-description {
    font-size: 16px;
  }
  .page-id-23 .fire-detection-section .detection-top-row .detection-content-col .detection-text-wrap .section-description {
    font-size: 18px;
  }
  .page-id-23 .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-text-col .bottom-text-item .bottom-text {
    font-size: 14px;
  }
  .page-id-25 .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-inner-row .design-equip-img-col .design-equip-img-wrap img {
    height: 260px;
  }
  .page-id-25 .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-inner-row .design-person-info-col .design-person-info-wrap .person-list li {
    font-size: 14px;
  }
  .page-id-25 .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-inner-row .design-person-info-col .design-person-info-wrap .person-name {
    font-size: 16px;
  }
  .page-id-25 .design-accred-section .design-accred-bottom-row .design-bottom-info-col .design-bottom-box .design-bottom-cta .box-cta-text {
    font-size: 14px;
  }
  .page-id-21 .wet-chem-section .wet-chem-top-row .wet-chem-content-col .wet-chem-inner-row .wet-chem-product-img-col .wet-chem-product-img-wrap img {
    height: 320px;
  }
  .page-id-21 .wet-chem-section .wet-chem-top-row .wet-chem-content-col .wet-chem-inner-row .wet-chem-how-col .wet-chem-how-wrap .how-list li {
    text-align: left;
  }
  .page-id-21 .wet-chem-section .wet-chem-bottom-row .bottom-why-col .bottom-why-item .bottom-list li,
  .page-id-21 .wet-chem-section .wet-chem-bottom-row .bottom-why-col .bottom-apps-item .bottom-list li,
  .page-id-21 .wet-chem-section .wet-chem-bottom-row .bottom-apps-col .bottom-why-item .bottom-list li,
  .page-id-21 .wet-chem-section .wet-chem-bottom-row .bottom-apps-col .bottom-apps-item .bottom-list li {
    font-size: 14px;
  }
}
@media (max-width: 1099.98px) {
  .home .home-about-section .home-right-col .right-bottom .product-images {
    gap: 0px;
  }
  .page-id-15 .dlp-section .dlp-top-row .dlp-content-col .dlp-text-wrap .section-description {
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  .page-id-35 .clients-section .clients-top-row .clients-img-col .clients-img-wrap {
    justify-content: center;
  }
  .page-id-35 .clients-section .clients-top-row .clients-img-col .clients-img-wrap img {
    width: 100%;
  }
  .page-template-page-about-php .about-rott-section .about-top-row .about-img-col .about-img-wrap img {
    margin-top: 20px;
  }
  .page-template-page-about-php .about-rott-section .about-bottom-wrap .about-bottom-row .bottom-col-title {
    margin-top: 20px;
  }
  .page-id-31 .ancillary-section .ancillary-top-row .ancillary-img-col .ancillary-img-wrap img {
    margin-top: 20px;
  }
  .page-id-31 .ancillary-section .ancillary-top-row .ancillary-content-col .ancillary-text-wrap .section-description {
    font-size: 16px;
  }
  .page-id-31 .ancillary-section .ancillary-top-row .ancillary-content-col .ancillary-services-wrap .services-list li {
    font-size: 16px;
  }
  .page-id-33 .training-section .training-top-row .training-img-col {
    display: none;
  }
  .page-id-8 .clean-agent-section .clean-agent-top-row .clean-agent-img-col .clean-agent-img-wrap {
    display: none;
  }
  .page-id-8 .clean-agent-section .clean-agent-bottom-wrap .clean-agent-bottom-row .clean-agent-bottom-img-col .clean-agent-img-wrap {
    display: none;
  }
  .page-id-13 .co2-section .co2-bottom-row .bottom-img-col .bottom-img-wrap {
    display: none;
  }
  .page-id-13 .co2-section .co2-top-row .co2-img-col .co2-img-wrap img {
    margin-top: 20px;
  }
  .page-id-15 .dlp-section .dlp-top-row .dlp-img-col .dlp-img-wrap img {
    margin-top: 20px;
    display: none;
  }
  .page-id-15 .dlp-section .dlp-bottom-row .bottom-img-col .bottom-img-wrap {
    display: none;
  }
  .page-id-15 .dlp-section .dlp-bottom-row .bottom-middle-col {
    padding: 0px 20px;
    background: #EBEBED;
  }
  .page-id-17 .ilp-section .ilp-bottom-row .ilp-bottom-img-col .ilp-bottom-img-wrap {
    display: none;
  }
  .page-id-17 .ilp-section .ilp-bottom-row .ilp-bottom-info-col .ilp-bottom-machine-col .ilp-machine-img-wrap {
    display: none;
  }
  .page-id-19 .dry-chemical-section .dry-top-row .dry-content-col .dry-how-wrap .dry-circle-img {
    display: none;
  }
  .page-id-19 .dry-chemical-section .dry-top-row .dry-img-col .dry-img-wrap img {
    margin-top: 20px;
  }
  .page-id-19 .dry-chemical-section .dry-bottom-row .dry-bottom-img-col .dry-bottom-img-wrap {
    display: none;
  }
  .page-id-23 .fire-detection-section .detection-top-row .detection-content-col .detection-design-wrap {
    margin-left: 0px;
  }
  .page-id-23 .fire-detection-section .detection-top-row .detection-content-col .detection-design-wrap .detection-thumb-img {
    display: none;
  }
  .page-id-23 .fire-detection-section .detection-top-row .detection-img-col .detection-img-wrap img {
    margin-top: 20px;
  }
  .page-id-23 .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-circle-col {
    display: none;
  }
  .page-id-23 .fire-detection-section .detection-bottom-row .bottom-img-col .bottom-img-wrap {
    display: none;
  }
  .page-id-25 .design-accred-section .design-accred-top-row .design-accred-content-col .design-accred-inner-row .design-equip-img-col .design-equip-img-wrap {
    display: none;
  }
  .page-id-21 .wet-chem-section .wet-chem-top-row .wet-chem-img-col .wet-chem-img-wrap {
    display: none;
  }
  .page-id-21 .wet-chem-section .wet-chem-top-row .wet-chem-content-col .wet-chem-inner-row .wet-chem-product-img-col .wet-chem-product-img-wrap img {
    height: 250px;
    display: none;
  }
  .page-id-21 .wet-chem-section .wet-chem-bottom-row .bottom-circle-col {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .page-id-35 .clients-section .clients-bottom-row .client-category-col .client-category-item .category-inner {
    border-bottom: 1px solid #33477C;
  }
  .home .home-about-section .home-left-col .home-bottom-strip .strip-logo {
    display: none;
  }
  .home .home-about-section .home-right-col .right-top .circle-collage {
    width: 180px;
    height: 180px;
  }
  .page-id-31 .ancillary-section .ancillary-bottom-row .bottom-img-col .bottom-img-wrap {
    display: none;
  }
  .page-id-31 .ancillary-section .ancillary-top-row .ancillary-content-col .ancillary-text-wrap .section-description {
    font-size: 18px;
  }
  .page-id-33 .training-section .training-top-row .training-content-col .training-programs-wrap .training-programs-content .training-programs-list li {
    font-size: 16px;
    text-align: left;
  }
  .page-id-29 .contact-section .contact-top-row .contact-map-col .contact-map-wrap {
    display: none;
  }
  .page-id-8 .clean-agent-section .clean-agent-top-row .clean-agent-content-col .agent-types-wrap .agent-list-wrap .agent-list-title {
    font-size: 16px;
  }
  .page-id-21 .wet-chem-section .wet-chem-top-row .wet-chem-content-col .wet-chem-inner-row .wet-chem-product-img-col .wet-chem-product-img-wrap img {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .section-head .section-description {
    font-size: 16px;
  }
  .page-id-35 .clients-section .clients-top-row .clients-content-col .clients-text-wrap .section-description {
    font-size: 16px;
    text-align: center;
  }
  .page-id-35 .clients-section .clients-top-row .clients-content-col .clients-sub-head .clients-sub-title {
    margin-top: 50px;
  }
  .page-id-35 .clients-section .clients-top-row .clients-content-col .clients-sub-head .section-description {
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
  }
  .page-id-35 .clients-section .clients-bottom-row .client-category-col .client-category-item .category-title {
    font-size: 16px;
  }
  .page-id-35 .clients-section .clients-bottom-row .client-category-col .client-category-item .category-list li {
    font-size: 16px;
  }
  .home .home-about-section .home-right-col .right-bottom .contact-strip .contact-strip-info .address,
  .home .home-about-section .home-right-col .right-bottom .contact-strip .contact-strip-info .contact {
    font-size: 14px;
  }
  .home .home-about-section .home-right-col .right-top .cert-text p {
    font-size: 16px;
  }
  .page-template-page-about-php .about-rott-section .about-top-row .about-content-col .section-head .about-subtitle {
    font-size: 1.2rem;
  }
  .page-id-8 .clean-agent-section .clean-agent-top-row .clean-agent-content-col .agent-types-wrap .agent-list-wrap .agent-list-title {
    font-size: 14px;
  }
  .page-id-8 .clean-agent-section .clean-agent-top-row .clean-agent-content-col .agent-types-wrap .agent-list-wrap .agent-list li {
    font-size: 14px;
  }
  .page-id-13 .co2-section .co2-bottom-row .bottom-middle-col .row {
    display: none;
  }
  .page-id-13 .co2-section .co2-top-row .co2-content-col {
    padding-right: 10px;
  }
  .page-id-15 .dlp-section .dlp-top-row .dlp-content-col {
    padding-right: 10px;
  }
  .page-id-19 .dry-chemical-section .dry-top-row .dry-content-col .dry-text-wrap .section-description {
    text-align: left;
  }
  .page-id-23 .fire-detection-section .detection-top-row .detection-img-col .detection-img-wrap img {
    height: 280px;
  }
}
@media (max-width: 479.98px) {
  .section-head .section-title {
    font-size: 2rem;
  }
  .home .home-about-section .home-right-col .right-bottom {
    padding: 0 5px 10px;
  }
  .home .home-about-section .home-right-col .right-bottom .product-images {
    display: none;
  }
  .home .home-about-section .home-right-col .right-bottom .contact-strip {
    display: contents;
  }
  .home .home-about-section .home-right-col .right-bottom .contact-strip .contact-strip-logo img {
    display: none;
  }
  .page-id-33 .training-section .training-bottom-row .training-contact-row .training-contact-text {
    font-size: 16px;
  }
  .page-id-8 .clean-agent-section .clean-agent-top-row .clean-agent-content-col .agent-types-wrap {
    display: none;
  }
  .page-id-23 .fire-detection-section .detection-bottom-row .bottom-content-col .bottom-app-col .bottom-text-item .bottom-app-list li {
    font-size: 14px;
  }
}
@media (max-width: 420.98px) {
  .page-id-35 .clients-section .clients-bottom-row .client-category-col .client-category-item .category-logos {
    display: none;
  }
  .page-id-31 .ancillary-section .ancillary-bottom-row .bottom-contact-col .bottom-contact-item .contact-details {
    font-size: 14px;
  }
}
