/* =====================================================
           RESET
        ===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #173d70;
}

a {
  text-decoration: none;
}

/* =====================================================
           HEADER
        ===================================================== */

.kmi-header-main {
  width: 100%;
  height: 118px;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: relative;
  z-index: 9999;
}

.kmi-header-wrapper {
  width: 100%;
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

/* =====================================================
           LOGO + COMPANY TEXT
        ===================================================== */

.kmi-brand-area {
  position: absolute;
  left: 0;
  top: 17px;

  display: flex;
  align-items: center;

  gap: 15px;

  height: 75px;
}

/* ACTUAL LOGO IMAGE */

.kmi-main-logo {
  width: 115px;
  height: 75px;

  display: block;

  object-fit: contain;
  object-position: left center;

  flex-shrink: 0;
}

.kmi-main-logo img {
  width: 332px;
  height: 105px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

/* =========================================
   PRODUCTS DROPDOWN
========================================= */

.kmi-products-menu {
  position: relative;
}

/* Main Product Link */

.kmi-products-menu > a {
  display: flex;
  align-items: center;
  gap: 5px;

  color: #104984;
  text-decoration: none;
}

/* Dropdown */

.kmi-products-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-top: 3px solid #f47716;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 99999;
  transition: all 0.25s ease;
  height: 550px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #f47716 #f1f1f1;
}

/* SHOW */

.kmi-products-menu:hover .kmi-products-dropdown {
  opacity: 1;
  visibility: visible;

  pointer-events: auto;

  transform: translateX(-50%) translateY(0);
}

/* Heading */

.kmi-dropdown-heading {
  padding: 10px 18px;

  color: #f47716;

  font-size: 11px;

  font-weight: 800;

  border-bottom: 1px solid #edf1f5;
}

/* Links */

.kmi-products-dropdown > a {
  display: block;

  padding: 9px 18px;

  color: #29435d;

  font-size: 12px;

  font-weight: 500;

  text-decoration: none;

  transition: all 0.2s ease;
}

.kmi-products-dropdown > a::before {
  content: "›";

  color: #f47716;

  font-size: 17px;

  font-weight: 700;

  margin-right: 8px;
}

.kmi-products-dropdown > a:hover {
  background: #f3f8fd;

  color: #104984;

  padding-left: 24px;
}

/* View All */

.kmi-dropdown-view-all {
  margin-top: 5px;

  padding: 10px 18px;

  border-top: 1px solid #edf1f5;
}

.kmi-dropdown-view-all a {
  color: #104984;

  font-size: 11px;

  font-weight: 800;

  text-decoration: none;
}

.kmi-dropdown-view-all a:hover {
  color: #f47716;
}

/* =====================================================
           COMPANY DESCRIPTION
        ===================================================== */

.kmi-brand-description {
  width: 170px;

  display: flex;
  flex-direction: column;

  color: #555555;

  font-size: 13px;
  line-height: 1.5;

  white-space: normal;
}

.kmi-brand-description span {
  display: block;
}

.kmi-brand-description small {
  display: block;

  font-size: 11px;
  color: #555555;

  margin-top: 1px;
}

/* =====================================================
           CONTACT AREA
        ===================================================== */

.kmi-contact-area {
  position: absolute;

  right: 0;
  top: 8px;

  height: 32px;

  display: flex;
  align-items: center;

  gap: 27px;
}

.kmi-contact-link {
  display: flex;
  align-items: center;

  gap: 8px;

  color: #173d70;

  font-size: 12px;

  white-space: nowrap;
}

.kmi-contact-link:hover {
  color: #f47716;
}

.kmi-phone-icon,
.kmi-mail-icon {
  color: #12549b;

  font-size: 17px;

  font-weight: bold;
}

/* =====================================================
           SOCIAL ICONS
        ===================================================== */

.kmi-social-area {
  display: flex;
  align-items: center;

  gap: 9px;
}

.kmi-social {
  width: 29px;
  height: 29px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  font-weight: 700;

  transition: 0.25s ease;
}

.kmi-social:hover {
  transform: translateY(-2px);
}

.kmi-facebook {
  background: #2867b2;
  font-size: 16px;
}

.kmi-linkedin {
  background: #126bc4;
  font-size: 11px;
}

.kmi-youtube {
  background: #e60000;
  font-size: 11px;
}

.kmi-instagram {
  background: #003b72;
  font-size: 18px;
}

/* =====================================================
           NAVIGATION
        ===================================================== */

.kmi-navigation {
  position: absolute;

  /*
             IMPORTANT:
             Navigation logo ke baad start hogi.
            */

  left: 350px;
  right: 0;

  bottom: 0;

  height: 69px;

  display: flex;
  align-items: center;

  justify-content: flex-end;

  gap: 38px;
}

.kmi-nav-item {
  height: 69px;

  display: flex;
  align-items: center;

  position: relative;

  color: #173d70;

  font-size: 13px;
  font-weight: 700;

  white-space: nowrap;

  transition: 0.25s ease;
}

.kmi-nav-item:hover {
  color: #f47716;
}

/* =====================================================
           ACTIVE HOME
        ===================================================== */

.kmi-nav-home {
  color: #f47716;
}

.kmi-nav-home::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 7px;

  width: 38px;
  height: 3px;

  background: #f47716;

  border-radius: 5px;
}

/* =====================================================
           DROPDOWN ARROW
        ===================================================== */

.kmi-nav-arrow {
  margin-left: 7px;

  font-size: 11px;

  position: relative;
  top: -1px;
}

/* =====================================================
           ENQUIRY BUTTON
        ===================================================== */

.kmi-enquiry-button {
  height: 43px;

  min-width: 150px;

  padding: 0 16px;

  background: #ff9817;

  color: #ffffff;

  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  font-size: 13px;
  font-weight: 700;

  box-shadow: 0 5px 13px rgba(255, 152, 23, 0.16);

  transition: 0.25s ease;
}

.kmi-enquiry-button:hover {
  background: #ed7800;

  color: #ffffff;

  transform: translateY(-2px);
}

.kmi-enquiry-arrow {
  font-size: 19px;

  line-height: 1;
}

/* =====================================================
           MOBILE BUTTON
        ===================================================== */

.kmi-mobile-toggle {
  display: none;

  position: absolute;

  right: 20px;
  bottom: 17px;

  width: 42px;
  height: 38px;

  border: 1px solid #dddddd;

  background: #ffffff;

  border-radius: 5px;

  cursor: pointer;
}

.kmi-mobile-toggle span {
  display: block;

  width: 21px;
  height: 2px;

  margin: 4px auto;

  background: #14549a;
}

/* =====================================================
           1100px
        ===================================================== */

@media (max-width: 1100px) {
  .kmi-header-wrapper {
    padding: 0 20px;
  }

  .kmi-brand-description {
    width: 145px;
    font-size: 11px;
  }

  .kmi-navigation {
    left: 300px;

    gap: 20px;
  }

  .kmi-nav-item {
    font-size: 11px;
  }

  .kmi-contact-area {
    right: 20px;

    gap: 15px;
  }
}

.top-sec {
  display: none;
}
.top-sec .content {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 7px 0;
  border-bottom: 1px solid #003773;
}

.top-sec a {
  color: #003773;
  font-size: 13px;
  font-weight: 500;
}

/* =====================================================
           MOBILE
        ===================================================== */

@media (max-width: 900px) {
  .kmi-header-main {
    height: 82px;
  }
  .top-sec {
    display: block;
  }

  .kmi-header-wrapper {
    padding: 0 18px;
  }

  .kmi-brand-area {
    left: 18px;
    top: 5px;

    height: 70px;
  }

  .kmi-main-logo,
  .kmi-main-logo img {
    width: 195px;
    height: 65px;
  }

  .kmi-brand-description {
    display: none;
  }

  .kmi-contact-area {
    display: none;
  }

  .kmi-mobile-toggle {
    display: block;
  }

  .kmi-navigation {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    width: 100%;
    height: 350px;
    padding: 10px 20px 20px;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }

  .kmi-navigation.kmi-mobile-active {
    display: flex;
  }

  .kmi-nav-item {
    width: 100%;

    height: 48px;

    border-bottom: 1px solid #eeeeee;
  }

  .kmi-nav-home::after {
    bottom: 0;
  }

  .kmi-enquiry-button {
    width: 100%;

    margin-top: 15px;
  }
  #kmiNavigation .ll {
    color: #104984;
    border-bottom: 1px solid #eeeeee;
    height: 48px;
  }
}

/* =====================================================
           SMALL MOBILE
        ===================================================== */

/* ====================================================
Slider
==============================================*/

.kmi-home-slider {
  width: 100%;
  overflow: hidden;
}

.kmi-home-slider .carousel-item {
  height: 650px;
  object-fit: cover;
}

.kmi-home-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kmi-home-slider .carousel-indicators {
  margin-bottom: 18px;
  gap: 4px;
}

.kmi-home-slider .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  margin: 0 3px;
}

.kmi-home-slider .carousel-indicators .active {
  width: 18px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .kmi-home-slider .carousel-item {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .kmi-home-slider .carousel-item {
    height: 170px;
  }
}
/* =========================================================
   INDUSTRIES SECTION
========================================================= */

.kmi-industries-section {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.kmi-industries-wrapper {
  width: 100%;
  max-width: 1280px;
  min-height: 120px;
  margin: 0 auto;

  display: flex;
  align-items: stretch;
}

/* =========================================================
   LEFT BLUE TITLE
========================================================= */

.kmi-industries-title {
  width: 190px;
  min-width: 190px;

  background: #10529a;

  padding: 27px 25px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-radius: 0 0 48px 0;

  position: relative;
}

.kmi-industries-title span {
  color: #f58219;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.3px;

  margin-bottom: 6px;
}

.kmi-industries-title strong {
  color: #ffffff;

  font-size: 17px;

  font-weight: 700;

  letter-spacing: 0.3px;
}

/* =========================================================
   INDUSTRY ITEM
========================================================= */

.kmi-industry-item {
  flex: 1;

  min-width: 105px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  position: relative;

  padding: 12px 10px;

  transition: 0.3s ease;
}

/* Vertical Separator */

.kmi-industry-item:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;

  top: 20px;

  height: 80px;

  width: 1px;

  background: #eeeeee;
}

/* =========================================================
   ICON
========================================================= */

.kmi-industry-icon {
  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #14549a;

  font-size: 30px;

  line-height: 1;

  margin-bottom: 8px;

  filter: grayscale(15%);
}

/* =========================================================
   NAME
========================================================= */

.kmi-industry-name {
  text-align: center;

  color: #333333;

  font-size: 12px;

  line-height: 1.35;

  font-weight: 500;
}

/* =========================================================
   HOVER
========================================================= */

.kmi-industry-item:hover {
  background: #f7fbff;
}

.kmi-industry-item:hover .kmi-industry-icon {
  transform: translateY(-3px);
}

.kmi-industry-icon {
  transition: 0.3s ease;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .kmi-industries-wrapper {
    flex-wrap: wrap;
  }

  .kmi-industries-title {
    width: 170px;
    min-width: 170px;
  }

  .kmi-industry-item {
    min-width: 100px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .kmi-industries-wrapper {
    display: grid;

    grid-template-columns: repeat(3, 1fr);
  }

  .kmi-industries-title {
    width: auto;
    min-width: 0;

    min-height: 100px;

    padding: 20px;
  }

  .kmi-industry-item {
    min-height: 100px;
  }

  .kmi-industry-item:not(:last-child)::after {
    top: 15px;
    height: 70px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {
  .kmi-industries-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .kmi-industries-title {
    min-height: 105px;
  }

  .kmi-industry-item {
    min-height: 105px;
  }
}

/* =========================================================
   COMPANY SECTION
========================================================= */

.kmi-company-section {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.kmi-company-container {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
  padding: 0 25px;

  display: flex;
  align-items: center;

  gap: 70px;
}

/* =========================================================
   LEFT IMAGE
========================================================= */

.kmi-company-image-box {
  width: 48%;
  position: relative;
}

.kmi-company-image-frame {
  width: 100%;
  height: 430px;

  position: relative;

  overflow: hidden;

  border-radius: 0 70px 0 70px;

  background: #eaf4ff;
}

.kmi-company-image-frame::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  left: -80px;
  top: -80px;

  border: 3px solid #f58219;

  border-radius: 50%;

  z-index: 1;
}

.kmi-company-image-frame::after {
  content: "";

  position: absolute;

  width: 200px;
  height: 200px;

  right: -100px;
  bottom: -100px;

  border: 3px solid #14549a;

  border-radius: 50%;

  z-index: 1;
}

.kmi-company-image {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  position: relative;
  z-index: 2;

  transition: 0.5s ease;
}

.kmi-company-image-frame:hover .kmi-company-image {
  transform: scale(1.04);
}

/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.kmi-company-experience {
  position: absolute;

  right: -25px;
  bottom: 25px;

  width: 175px;
  height: 95px;

  background: #10529a;

  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  color: #ffffff;

  box-shadow: 0 10px 25px rgba(0, 60, 120, 0.18);

  z-index: 5;
}

.kmi-company-experience strong {
  font-size: 38px;

  line-height: 1;

  color: #f58219;
}

.kmi-company-experience span {
  font-size: 12px;

  line-height: 1.35;
}

/* =========================================================
   RIGHT CONTENT
========================================================= */

.kmi-company-content {
  width: 52%;
}

.kmi-company-label {
  color: #f47716;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.5px;

  margin-bottom: 10px;
}

.kmi-company-heading {
  color: #123f73;

  font-size: 40px;

  line-height: 1.15;

  font-weight: 800;

  margin: 0 0 20px;
}

.kmi-company-heading span {
  display: block;

  color: #f47716;
}

.kmi-company-text {
  color: #555555;

  font-size: 14px;

  line-height: 1.75;

  margin-bottom: 13px;

  max-width: 570px;
}

/* =========================================================
   FEATURES
========================================================= */

.kmi-company-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px 25px;

  margin-top: 25px;

  margin-bottom: 28px;
}

.kmi-company-feature {
  display: flex;

  align-items: flex-start;

  gap: 11px;
}

.kmi-company-feature-icon {
  width: 27px;
  height: 27px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #eaf4ff;

  color: #14549a;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 14px;

  font-weight: 800;
}

.kmi-company-feature strong {
  display: block;

  color: #173d70;

  font-size: 13px;

  margin-bottom: 3px;
}

.kmi-company-feature span {
  display: block;

  color: #777777;

  font-size: 11px;

  line-height: 1.4;
}

/* =========================================================
   BUTTON
========================================================= */

.kmi-company-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  min-width: 145px;
  height: 43px;

  padding: 0 20px;

  background: #12529a;

  color: #ffffff;

  border-radius: 6px;

  font-size: 12px;

  font-weight: 700;

  transition: 0.3s ease;
}

.kmi-company-button span {
  font-size: 18px;
}

.kmi-company-button:hover {
  background: #f47716;

  color: #ffffff;

  transform: translateY(-2px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .kmi-company-section {
    padding: 60px 0;
  }

  .kmi-company-container {
    gap: 40px;
  }

  .kmi-company-heading {
    font-size: 32px;
  }

  .kmi-company-image-frame {
    height: 380px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .kmi-company-container {
    flex-direction: column;

    gap: 45px;
  }

  .kmi-company-image-box,
  .kmi-company-content {
    width: 100%;
  }

  .kmi-company-image-frame {
    height: 350px;
  }

  .kmi-company-heading {
    font-size: 30px;
  }

  .kmi-company-text {
    max-width: 100%;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {
  .kmi-company-section {
    padding: 45px 0;
  }

  .kmi-company-container {
    padding: 0 18px;
  }

  .kmi-company-image-frame {
    height: 280px;

    border-radius: 0 45px 0 45px;
  }

  .kmi-company-experience {
    right: 10px;
    bottom: 15px;

    width: 155px;
    height: 80px;
  }

  .kmi-company-experience strong {
    font-size: 30px;
  }

  .kmi-company-heading {
    font-size: 27px;
  }

  .kmi-company-features {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MAIN SECTION
========================================================= */

.kmi-about-company {
  width: 100%;
  position: relative;

  padding: 85px 0 100px;

  overflow: hidden;

  background: #ffffff;
}

/* Bottom light blue wave */

.kmi-about-company::after {
  content: "";

  position: absolute;

  left: -5%;
  bottom: -115px;

  width: 65%;
  height: 180px;

  background: #eaf4ff;

  border-radius: 50%;

  transform: rotate(4deg);

  z-index: 0;
}

/* Right dotted pattern */

.kmi-about-company::before {
  content: "";

  position: absolute;

  right: -20px;
  bottom: 35px;

  width: 190px;
  height: 190px;

  background-image: radial-gradient(#c7ddf7 1.5px, transparent 1.5px);

  background-size: 11px 11px;

  opacity: 0.55;

  z-index: 0;
}

/* =========================================================
   CONTAINER
========================================================= */

.kmi-about-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  gap: 70px;
  position: relative;
  z-index: 2;
}

/* =========================================================
   LEFT IMAGE AREA
========================================================= */

.kmi-about-image-area {
  width: 49%;
  height: 455px;
  position: relative;
  flex-shrink: 0;
  float: left;
  padding-right: 40px;
  padding: 20px;

  margin-right: 76px;
}

/* =========================================================
   IMAGE
========================================================= */

.kmi-about-image-wrap {
  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 430px;

  overflow: hidden;

  border-radius: 0 70px 0 70px;

  background: #eaf4ff;

  border: 7px solid #ffffff;

  box-shadow: 0 8px 25px rgba(20, 70, 120, 0.08);

  z-index: 3;
}

.kmi-about-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transition: transform 0.5s ease;
}

.kmi-about-image-wrap:hover .kmi-about-image {
  transform: scale(1.03);
}

/* =========================================================
   ORANGE DECORATIVE CIRCLE
========================================================= */

.kmi-about-orange-circle {
  position: absolute;

  left: -20px;
  top: -45px;

  width: 115px;
  height: 115px;

  border: 3px solid #f58219;

  border-radius: 50%;

  z-index: 1;
}

/* =========================================================
   BLUE DECORATIVE CIRCLE
========================================================= */

.kmi-about-blue-circle {
  position: absolute;

  right: -25px;
  bottom: 5px;

  width: 125px;
  height: 125px;

  border: 3px solid #12529a;

  border-radius: 50%;

  z-index: 1;
}

/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.kmi-about-experience {
  position: absolute;

  right: -25px;
  bottom: 40px;

  width: 180px;
  height: 94px;

  padding: 0 18px;

  background: #1259a2;

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  color: #ffffff;

  box-shadow: 0 8px 20px rgba(0, 60, 120, 0.2);

  border: 2px solid #ffffff;

  z-index: 6;
}

.kmi-about-experience strong {
  font-size: 38px;

  line-height: 1;

  font-weight: 800;

  color: #ff7d13;
}

.kmi-about-experience div {
  display: flex;

  flex-direction: column;

  font-size: 12px;

  line-height: 1.3;
}

.kmi-about-experience span {
  display: block;
}

/* =========================================================
   RIGHT CONTENT
========================================================= */

.kmi-about-content {
  position: relative;
  z-index: 3;
  padding-left: 29ps;
}
.kmi-about-content p {
  font-size: 14px;
  color: #343434;
}
.kmi-about-content p a{
  color: #104984;
  font-weight: 700;
}

.kmi-product-content p{
  color: black;
  font-size: 15px;
}
.kmi-product-content p a{
  color: #104984;
  font-weight: 700;
}
/* =========================================================
   LABEL
========================================================= */

.kmi-about-label {
  color: #f47716;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.4px;

  margin-bottom: 12px;
}

/* =========================================================
   HEADING
========================================================= */

.kmi-about-heading {
  margin: 0;

  color: #104984;

  font-size: 35px;

  line-height: 1.12;

  font-weight: 800;

  letter-spacing: -0.5px;
}

.kmi-about-heading span {
  display: block;

  color: #f47716;
}

/* =========================================================
   BLUE LINE
========================================================= */

.kmi-about-line {
  width: 58px;

  height: 3px;

  background: #12529a;

  margin: 13px 0 20px;

  border-radius: 5px;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.kmi-about-description {
  margin: 0 0 14px;

  color: #4e4e4e;

  font-size: 13px;

  line-height: 1.7;
}

/* =========================================================
   FEATURES GRID
========================================================= */

.kmi-about-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  column-gap: 40px;

  row-gap: 30px;

  margin-top: 25px;

  margin-bottom: 28px;
}

/* =========================================================
   FEATURE
========================================================= */

.kmi-about-feature {
  display: flex;

  align-items: flex-start;

  gap: 10px;
}

/* =========================================================
   FEATURE ICON
========================================================= */

.kmi-about-feature-icon {
  width: 31px;
  height: 31px;

  min-width: 31px;

  border-radius: 50%;

  background: #e9f3ff;

  color: #12529a;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 15px;

  font-weight: 700;

  box-shadow: inset 0 0 0 1px #d8e9fa;
}

/* =========================================================
   FEATURE TEXT
========================================================= */

.kmi-about-feature-content strong {
  display: block;

  color: #124984;

  font-size: 13px;

  line-height: 1.2;

  margin-bottom: 4px;
}

.kmi-about-feature-content span {
  display: block;

  color: #777777;

  font-size: 10px;

  line-height: 1.4;
}

/* =========================================================
   BUTTON
========================================================= */

.kmi-about-button {
  height: 43px;

  min-width: 147px;

  padding: 0 20px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  background: #12529a;

  color: #ffffff;

  border-radius: 6px;

  font-size: 12px;

  font-weight: 700;

  transition: all 0.3s ease;
}

.kmi-about-button span {
  color: #ff8519;

  font-size: 19px;

  line-height: 1;
}

.kmi-about-button:hover {
  background: #f47716;

  color: #ffffff;

  transform: translateY(-2px);
}

.kmi-about-button:hover span {
  color: #ffffff;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .kmi-about-container {
    gap: 45px;
  }

  .kmi-about-heading {
    font-size: 34px;
  }

  .kmi-about-image-area {
    height: 400px;
  }

  .kmi-about-image-wrap {
    height: 380px;
  }

  .kmi-about-experience {
    right: -15px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .kmi-about-company {
    padding: 60px 0 80px;
  }

  .kmi-about-container {
    flex-direction: column;

    gap: 50px;
  }

  .kmi-about-image-area,
  .kmi-about-content {
    width: 100%;
  }

  .kmi-about-image-area {
    height: 390px;
  }

  .kmi-about-image-wrap {
    height: 370px;
  }

  .kmi-about-content {
    padding: 0 5px;
  }

  .kmi-about-heading {
    font-size: 34px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {
  .kmi-about-company {
    padding: 45px 0 70px;
  }

  .kmi-about-container {
    padding: 0 18px;
  }

  .kmi-about-image-area {
    height: 315px;
  }

  .kmi-about-image-wrap {
    height: 295px;

    border-radius: 0 45px 0 45px;

    border-width: 5px;
  }

  .kmi-about-experience {
    right: 0;

    bottom: 22px;

    width: 155px;

    height: 78px;
  }

  .kmi-about-experience strong {
    font-size: 31px;
  }

  .kmi-about-heading {
    font-size: 29px;
  }

  .kmi-about-description {
    font-size: 12px;
  }

  .kmi-about-features {
    grid-template-columns: 1fr;
  }

  .kmi-about-orange-circle {
    width: 85px;
    height: 85px;

    left: -15px;
    top: -30px;
  }

  .kmi-about-blue-circle {
    width: 90px;
    height: 90px;

    right: -10px;
    bottom: 0;
  }
}

/* =========================================================
   PRODUCTS SECTION
========================================================= */

.kmi-products-section {
  width: 100%;

  position: relative;

  overflow: hidden;

  padding: 65px 0 90px;

  background: #ffffff;
}

/* =========================================================
   CONTAINER
========================================================= */

.kmi-products-container {
  width: 100%;

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 30px;

  position: relative;

  z-index: 3;
}

/* =========================================================
   HEADING
========================================================= */

.kmi-products-heading {
  text-align: center;

  margin-bottom: 35px;
}

.kmi-products-label {
  color: #f47716;

  font-size: 17px;

  font-weight: 700;

  margin-bottom: 12px;
}

.kmi-products-heading h2 {
  margin: 0;

  color: #104984;

  font-size: 52px;

  line-height: 1.1;

  font-weight: 800;

  letter-spacing: -1px;
}

.kmi-products-heading h2 span {
  color: #f47716;
}

.kmi-products-heading p {
  margin: 17px auto 0;

  color: #343434;

  font-size: 17px;

  line-height: 1.6;
}

/* =========================================================
   DIVIDER
========================================================= */

.kmi-products-divider {
  width: 105px;

  height: 20px;

  margin: 17px auto 0;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;
}

.kmi-products-divider::before {
  content: "";

  position: absolute;

  width: 100%;

  height: 2px;

  background: #12529a;
}

.kmi-products-divider span {
  width: 12px;

  height: 12px;

  background: #12529a;

  border-radius: 50%;

  position: relative;

  z-index: 2;

  border: 2px solid #ffffff;
}

/* =========================================================
   PRODUCTS GRID
========================================================= */

.kmi-products-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 16px;
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.kmi-product-card {
  display: block;

  background: #ffffff;

  border: 1px solid #edf1f5;

  border-radius: 14px;

  overflow: hidden;

  text-align: center;

  padding: 14px 12px 17px;

  box-shadow: 0 4px 18px rgba(25, 70, 110, 0.07);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.kmi-product-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 12px 30px rgba(25, 70, 110, 0.13);
}

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.kmi-product-image {
  width: 100%;

  height: 215px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #ffffff;
}

.kmi-product-image img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  display: block;

  transition: transform 0.35s ease;
}

.kmi-product-card:hover .kmi-product-image img {
  transform: scale(1.04);
}

/* =========================================================
   PRODUCT NAME
========================================================= */

.kmi-product-card h3 {
  margin: 12px 0 8px;

  min-height: 20px;

  color: #073f80;

  font-size: 16px;

  line-height: 1.25;

  font-weight: 800;
}

/* =========================================================
   ORANGE LINE
========================================================= */

.kmi-product-line {
  width: 39px;

  height: 3px;

  margin: 0 auto;

  background: #f47716;
}

/* =========================================================
   DECORATIVE ARC
========================================================= */

.kmi-products-arc {
  position: absolute;

  width: 540px;

  height: 540px;

  left: -280px;

  top: -250px;

  border: 3px solid #dceaff;

  border-radius: 50%;

  opacity: 0.8;
}

.kmi-products-arc::after {
  content: "";

  position: absolute;

  width: 100%;

  height: 100%;

  left: 20px;

  top: 20px;

  border: 2px solid #a9ccf5;

  border-radius: 50%;
}

/* =========================================================
   RIGHT DOTS
========================================================= */

.kmi-products-dots {
  position: absolute;

  width: 190px;

  height: 190px;

  right: -15px;

  top: 145px;

  opacity: 0.6;

  background-image: radial-gradient(#a8cdf5 1.5px, transparent 1.5px);

  background-size: 12px 12px;
}

/* =========================================================
   ORANGE RIGHT ARC
========================================================= */

.kmi-products-dots::after {
  content: "";

  position: absolute;

  width: 190px;

  height: 125px;

  right: 30px;

  top: -35px;

  border: 3px solid #f58219;

  border-left: 0;

  border-bottom: 0;

  border-radius: 0 100% 0 0;
}

/* =========================================================
   BOTTOM WAVE
========================================================= */

.kmi-products-section::after {
  content: "";

  position: absolute;

  width: 80%;

  height: 150px;

  left: -10%;

  bottom: -105px;

  background: #e8f2ff;

  border-radius: 50%;

  transform: rotate(4deg);
}

/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {
  .kmi-products-heading h2 {
    font-size: 43px;
  }

  .kmi-products-grid {
    gap: 12px;
  }

  .kmi-product-image {
    height: 190px;
  }

  .kmi-product-card h3 {
    font-size: 14px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {
  .kmi-products-container {
    padding: 0 20px;
  }

  .kmi-products-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
  }

  .kmi-product-image {
    height: 230px;
  }

  .kmi-products-heading h2 {
    font-size: 38px;
  }

  .kmi-products-heading p {
    font-size: 14px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {
  .kmi-products-section {
    padding: 50px 0 70px;
  }

  .kmi-products-container {
    padding: 0 15px;
  }

  .kmi-products-heading {
    margin-bottom: 25px;
  }

  .kmi-products-label {
    font-size: 14px;
  }

  .kmi-products-heading h2 {
    font-size: 30px;
  }

  .kmi-products-heading p {
    font-size: 13px;
  }

  .kmi-products-heading p br {
    display: none;
  }

  .kmi-products-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .kmi-product-image {
    height: 240px;
  }

  .kmi-product-card h3 {
    font-size: 15px;
  }

  .kmi-products-dots {
    display: none;
  }
}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.kmi-why-section {
  width: 100%;

  position: relative;

  overflow: hidden;

  padding: 55px 0 70px;

  background: linear-gradient(135deg, #eef8ff 0%, #ffffff 55%, #edf7ff 100%);
}

/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.kmi-why-section::before {
  content: "";

  position: absolute;

  left: -100px;
  top: 20px;

  width: 280px;
  height: 280px;

  background-image: radial-gradient(#b9d9f5 1.5px, transparent 1.5px);

  background-size: 12px 12px;

  opacity: 0.55;
}

.kmi-why-section::after {
  content: "";

  position: absolute;

  right: -50px;
  top: 50px;

  width: 240px;
  height: 240px;

  background-image: radial-gradient(#8dbff0 1.5px, transparent 1.5px);

  background-size: 10px 10px;

  opacity: 0.55;
}

/* =========================================================
   CONTAINER
========================================================= */

.kmi-why-container {
  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 25px;

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    1.25fr
    repeat(4, 1fr);

  gap: 28px;

  align-items: start;
}

/* =========================================================
   INTRO
========================================================= */

.kmi-why-intro {
  padding-top: 8px;
}

.kmi-why-label {
  color: #16855c;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 0.4px;

  margin-bottom: 10px;
}

.kmi-why-intro h2 {
  margin: 0;

  color: #104984;

  font-size: 19px;

  line-height: 1.2;

  font-weight: 800;
}

.kmi-why-intro h2 span {
  color: #104984;
}

.kmi-why-intro p {
  max-width: 300px;

  margin: 12px 0 0;

  color: #4c5660;

  font-size: 12px;

  line-height: 1.65;
}

/* =========================================================
   FEATURE
========================================================= */

.kmi-why-feature {
  text-align: center;
}

.kmi-why-icon {
  width: 72px;
  height: 72px;

  margin: 0 auto 12px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 31px;

  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.kmi-icon-green {
  background: #d9f5dd;

  color: #16824f;
}

.kmi-icon-blue {
  background: #dcecff;

  color: #12529a;
}

.kmi-icon-orange {
  background: #ffead8;

  color: #f47716;
}

.kmi-icon-purple {
  background: #eadcff;

  color: #7042a4;
}

.kmi-why-feature h3 {
  margin: 0 0 7px;

  color: #1c2f45;

  font-size: 13px;

  line-height: 1.25;

  font-weight: 800;
}

.kmi-why-feature p {
  margin: 0 auto;

  max-width: 145px;

  color: #5f666d;

  font-size: 12px;


  line-height: 1.5;
}

/* =========================================================
   STATISTICS BAR
========================================================= */

.kmi-why-stats {
  grid-column: 1 / -1;

  min-height: 100px;

  margin-top: 20px;

  padding: 15px 30px;

  border-radius: 14px;

  background: #12529a;

  display: flex;

  align-items: center;

  justify-content: space-around;

  position: relative;

  overflow: hidden;

  box-shadow: 0 8px 25px rgba(18, 82, 154, 0.18);
}

/* =========================================================
   STAT BACKGROUND
========================================================= */

.kmi-why-stats::before {
  content: "";

  position: absolute;

  left: -40px;
  top: -70px;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );

  background-size: 9px 9px;
}

.kmi-why-stats::after {
  content: "";

  position: absolute;

  right: -40px;
  bottom: -80px;

  width: 250px;
  height: 220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );

  background-size: 9px 9px;
}

/* =========================================================
   STAT
========================================================= */

.kmi-why-stat {
  display: flex;

  align-items: center;

  gap: 11px;

  position: relative;

  z-index: 2;
}

.kmi-stat-icon {
  width: 50px;
  height: 50px;

  border: 2px solid #f5a126;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #f5a126;

  font-size: 24px;
}

.kmi-stat-number {
  color: #ffffff;

  font-size: 21px;

  font-weight: 800;

  line-height: 1;
}

.kmi-stat-text {
  color: #ffffff;

  font-size: 10px;

  line-height: 1.4;
}

.kmi-stat-divider {
  width: 1px;

  height: 52px;

  background: rgba(255, 255, 255, 0.3);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
  .kmi-why-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .kmi-why-intro {
    grid-column: 1 / -1;

    text-align: center;
  }

  .kmi-why-intro p {
    margin-left: auto;
    margin-right: auto;
  }

  .kmi-why-stats {
    flex-wrap: wrap;

    gap: 20px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .kmi-why-section {
    padding: 45px 0 55px;
  }

  .kmi-why-container {
    grid-template-columns: 1fr;

    gap: 30px;

    padding: 0 18px;
  }

  .kmi-why-intro {
    grid-column: auto;
  }

  .kmi-why-intro h2 {
    font-size: 26px;
  }

  .kmi-why-stats {
    grid-column: auto;

    flex-direction: column;

    padding: 25px 20px;

    gap: 20px;
  }

  .kmi-stat-divider {
    width: 80%;

    height: 1px;
  }

  .kmi-why-stat {
    width: 190px;
  }
}

.kmi-video-section {
  padding: 65px 0;
  background: #f7fbff;
}

.kmi-video-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 25px;

  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 45px;
}

/* LEFT */

.kmi-video-label {
  color: #f47716;
  font-size: 13px;
  font-weight: 800;
}

.kmi-video-content h2 {
  margin: 12px 0 15px;

  color: #104984;
  font-size: 38px;
  line-height: 1.15;
}

.kmi-video-content h2 strong {
  display: block;
  color: #f47716;
}

.kmi-video-content p {
  max-width: 430px;

  margin-bottom: 25px;

  color: #596979;
  font-size: 14px;
  line-height: 1.7;
}

.kmi-video-btn {
  display: inline-block;

  padding: 12px 22px;

  background: #104984;
  color: #fff;

  border-radius: 5px;

  text-decoration: none;

  font-size: 12px;
  font-weight: 700;
}

/* VIDEO */

.kmi-video-box {
  height: 340px;

  position: relative;

  overflow: hidden;

  border-radius: 12px;

  box-shadow: 0 12px 35px rgba(16, 73, 132, 0.18);
}

.kmi-video-box img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* PLAY BUTTON */

.kmi-video-play {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 72px;
  height: 72px;

  border-radius: 50%;

  background: #f47716;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  font-size: 25px;

  padding-left: 4px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

  transition: 0.25s;
}

.kmi-video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

/* MOBILE */

@media (max-width: 768px) {
  .kmi-video-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .kmi-video-content h2 {
    font-size: 30px;
  }

  .kmi-video-box {
    height: 260px;
  }
}

/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.kmi-testimonial-section {
  width: 100%;
  padding: 28px 0 30px;
  background: #f5faff;
  overflow: hidden;
}

.kmi-testimonial-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 25px;
  position: relative;
}

/* Heading */

.kmi-testimonial-title {
  text-align: center;
  margin-bottom: 10px;
}

.kmi-testimonial-title span {
  color: #104984;
  font-size: 14px;
  font-weight: 800;
}

.kmi-testimonial-title div {
  width: 35px;
  height: 2px;
  margin: 5px auto 0;
  background: #38b56c;
}

/* Slider */

.kmi-testimonial-slider {
  width: 500px;
  max-width: calc(100% - 100px);
  min-height: 100px;
  margin: auto;
  position: relative;
}

/* Slide */

.kmi-testimonial-slide {
  display: none;

  width: 100%;
  min-height: 95px;

  padding: 15px 25px;

  background: #ffffff;
  border-radius: 12px;

  align-items: center;
  gap: 20px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.kmi-testimonial-slide.active {
  display: flex;
}

/* Quote */

.kmi-testimonial-quote {
  width: 52px;
  height: 52px;
  min-width: 52px;

  border-radius: 50%;

  background: #31b878;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 42px;
  font-weight: bold;
}

/* Content */

.kmi-testimonial-content {
  flex: 1;
}

.kmi-testimonial-content p {
  margin: 0 0 8px;

  color: #444444;

  font-size: 11px;
  line-height: 1.5;
}

/* Author */

.kmi-testimonial-author {
  display: flex;
  flex-direction: column;
}

.kmi-testimonial-author strong {
  color: #173f70;
  font-size: 11px;
}

.kmi-testimonial-author span {
  color: #777777;
  font-size: 9px;
}

/* =========================================================
   ARROWS
========================================================= */

.kmi-testimonial-arrow {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 35px;
  height: 35px;

  border: 0;

  border-radius: 50%;

  background: #38b56c;

  color: #ffffff;

  font-size: 19px;

  line-height: 35px;

  padding: 0;

  cursor: pointer;

  z-index: 5;

  transition: 0.25s ease;
}

.kmi-testimonial-arrow:hover {
  background: #12529a;
}

.kmi-testimonial-prev {
  left: 110px;
}

.kmi-testimonial-next {
  right: 110px;
}

/* =========================================================
   DOTS
========================================================= */

.kmi-testimonial-dots {
  text-align: center;
  margin-top: 8px;
}

.kmi-testimonial-dots button {
  width: 8px;
  height: 8px;

  padding: 0;
  margin: 0 3px;

  border: 0;
  border-radius: 50%;

  background: #cccccc;

  cursor: pointer;
}

.kmi-testimonial-dots button.active {
  background: #31b878;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .kmi-testimonial-slider {
    max-width: calc(100% - 70px);
    width: 100%;
  }

  .kmi-testimonial-slide {
    padding: 15px;
    gap: 12px;
  }

  .kmi-testimonial-prev {
    left: 5px;
  }

  .kmi-testimonial-next {
    right: 5px;
  }
}

/* =========================================================
   MANUFACTURING PROCESS
========================================================= */

.kmi-process-section {
  background: #fffaf5;
  padding: 16px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.kmi-process-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 25px;

  display: flex;
  align-items: center;
  gap: 40px;
}

.kmi-process-heading {
  width: 150px;
  flex-shrink: 0;
}

.kmi-process-heading span {
  display: block;

  color: #f47716;
  font-size: 10px;
  font-weight: 800;

  margin-bottom: 4px;
}

.kmi-process-heading h2 {
  margin: 0;

  color: #104984;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
}

.kmi-process-list {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kmi-process-item {
  width: 82px;
  min-height: 74px;

  background: #fff;

  border-radius: 8px;

  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);

  text-align: center;

  padding: 8px 5px;

  position: relative;
}

.kmi-process-number {
  position: absolute;

  top: -6px;
  left: -5px;

  width: 17px;
  height: 17px;

  border-radius: 50%;

  background: #ff7615;
  color: #fff;

  font-size: 8px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.kmi-process-icon {
  color: #104984;
  font-size: 24px;
  line-height: 1;
  margin: 5px 0 7px;
}

.kmi-process-item h3 {
  margin: 0;

  color: #263c58;

  font-size: 8px;
  line-height: 1.3;
  font-weight: 700;
}

.kmi-process-line {
  flex: 1;

  height: 1px;

  background: #2ba7a1;

  max-width: 28px;

  position: relative;
}

.kmi-process-line::after {
  content: "";

  position: absolute;

  right: -2px;
  top: -2px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #2ba7a1;
}

/* =========================================================
   CUSTOM SOLUTION CTA
========================================================= */

.kmi-custom-section {
  width: 100%;

  background: #fff;

  overflow: hidden;
}

.kmi-custom-container {
  max-width: 1200px;
  min-height: 78px;

  margin: auto;
  padding: 0 25px;

  display: flex;
  align-items: center;

  gap: 45px;
}

/* Green CTA */

.kmi-custom-content {
  width: 320px;

  min-height: 78px;

  padding: 12px 30px;

  background: linear-gradient(120deg, #12b875, #20aeb5);

  color: #fff;

  position: relative;
}

.kmi-custom-content::after {
  content: "";

  position: absolute;

  right: -55px;
  top: 0;

  width: 80px;
  height: 100%;

  background: #fff;

  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.kmi-custom-content h2 {
  margin: 0 0 4px;

  font-size: 16px;
  line-height: 1.2;

  font-weight: 800;
}

.kmi-custom-content p {
  margin: 0;

  font-size: 8px;
  line-height: 1.4;
}

/* Contact */

.kmi-custom-contact {
  display: flex;
  align-items: center;

  gap: 10px;

  flex: 1;
}

.kmi-custom-contact-icon {
  width: 38px;
  height: 38px;

  border: 1px solid #b8e5ce;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #12529a;
  font-size: 18px;
}

.kmi-custom-contact span {
  display: block;

  color: #555;
  font-size: 10px;
  margin-bottom: 3px;
}

.kmi-custom-contact strong {
  display: block;

  color: #12529a;
  font-size: 13px;
}

/* Quote Button */

.kmi-custom-button {
  min-width: 145px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border-radius: 5px;

  background: #39b467;
  color: #fff;

  font-size: 10px;
  font-weight: 800;

  text-decoration: none;
}

.kmi-custom-button span {
  font-size: 16px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .kmi-process-container {
    flex-direction: column;
    gap: 20px;
  }

  .kmi-process-heading {
    width: 100%;
    text-align: center;
  }

  .kmi-process-list {
    width: 100%;
  }

  .kmi-custom-container {
    gap: 20px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
  .kmi-testimonial-card {
    width: 100%;
  }

  .kmi-testimonial-prev {
    left: 5px;
  }

  .kmi-testimonial-next {
    right: 5px;
  }

  .kmi-process-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .kmi-process-line {
    display: none;
  }

  .kmi-process-item {
    width: auto;
  }

  .kmi-custom-container {
    flex-direction: column;
    padding: 0;
    gap: 15px;
  }

  .kmi-custom-content {
    width: 100%;
  }

  .kmi-custom-contact {
    width: 90%;
  }

  .kmi-custom-button {
    margin-bottom: 20px;
  }
}

/* =========================================================
   FOOTER
========================================================= */

.kmi-footer {
  width: 100%;
  background: #ffffff;
  color: #142b49;
  position: relative;
  overflow: hidden;
}

/* =========================================================
   TOP FEATURES
========================================================= */

.kmi-footer-features {
  max-width: 1400px;
  margin: 25px auto 45px;

  padding: 22px 35px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background: #ffffff;

  border-radius: 16px;

  box-shadow: 0 8px 28px rgba(16, 73, 132, 0.1);

  border: 1px solid #edf2f7;
}

.kmi-footer-feature {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 0 25px;

  border-right: 1px solid #dce4ed;
}

.kmi-footer-feature:last-child {
  border-right: 0;
}

.kmi-footer-feature-icon {
  width: 62px;
  height: 62px;

  min-width: 62px;

  border: 1px solid #bdd2e8;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #104984;

  font-size: 27px;

  position: relative;
}

.kmi-footer-feature-icon::after {
  content: "";

  position: absolute;

  width: 9px;
  height: 9px;

  right: 3px;
  bottom: 7px;

  background: #f47716;

  border-radius: 50%;
}

.kmi-footer-feature h4 {
  margin: 0 0 5px;

  color: #103f78;

  font-size: 17px;

  font-weight: 800;
}

.kmi-footer-feature p {
  margin: 0;

  color: #526174;

  font-size: 12px;

  line-height: 1.55;
}

/* =========================================================
   MAIN FOOTER
========================================================= */

.kmi-footer-main {
  max-width: 1400px;
  margin: auto;
  padding: 20px 35px 45px;
  display: grid;
  grid-template-columns:
    1.45fr
    2fr
    0.9fr
    1.25fr;
  gap: 35px;
}

/* =========================================================
   COMPANY
========================================================= */

.kmi-footer-logo {
  display: flex;
  align-items: center;
  gap: 13px;
}

.kmi-footer-logo-box {
  width: 72px;
  height: 62px;

  background: linear-gradient(135deg, #0e4c91, #173d72);

  border-radius: 6px;

  border-left: 8px solid #f47716;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  font-size: 24px;
  font-weight: 900;
}

.kmi-footer-logo strong {
  display: block;

  color: #103f78;

  font-size: 30px;

  line-height: 1;
}

.kmi-footer-logo span {
  display: block;

  color: #f47716;

  font-size: 14px;

  font-weight: 700;

  margin-top: 5px;
}

.kmi-footer-tagline {
  margin-top: 20px;

  color: #123f77;

  font-size: 11px;

  letter-spacing: 1px;

  font-weight: 700;
}

.kmi-footer-line,
.kmi-footer-heading-line {
  width: 45px;
  height: 2px;

  background: #f47716;

  margin: 11px 0 18px;
}

.kmi-footer-company > p {
  max-width: 330px;

  color: #4e5d6e;

  font-size: 13px;

  line-height: 1.75;

  margin: 0;
}

/* =========================================================
   SOCIAL
========================================================= */

.kmi-footer-social {
  display: flex;

  gap: 12px;

  margin-top: 25px;
}

.kmi-footer-social a {
  width: 42px;
  height: 42px;

  border: 1px solid #cbdbea;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #104984;

  text-decoration: none;

  font-size: 16px;

  font-weight: 700;

  transition: 0.25s;
}

.kmi-footer-social a:hover {
  background: #104984;

  color: #ffffff;

  border-color: #104984;
}

/* =========================================================
   COLUMNS
========================================================= */

.kmi-footer-column {
  border-left: 1px solid #e1e7ed;

  padding-left: 30px;
}

.kmi-footer-column h3,
.kmi-footer-contact h3,
.kmi-footer-newsletter h3 {
  margin: 0;

  color: #103f78;

  font-size: 17px;

  font-weight: 800;
}

.kmi-footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kmi-footer-column.two ul {
  column-count: 2;
  column-gap: 10px;
}

.kmi-footer-column li {
  margin-bottom: 12px;
}

.kmi-footer-column a {
  color: #384a5e;

  text-decoration: none;

  font-size: 12px;

  transition: 0.2s;
}

.kmi-footer-column a::before {
  content: "›";

  color: #f47716;

  font-size: 18px;

  font-weight: bold;

  margin-right: 8px;
}

.kmi-footer-column a:hover {
  color: #f47716;
}

/* =========================================================
   CONTACT
========================================================= */

.kmi-footer-contact {
  border-left: 1px solid #e1e7ed;

  padding-left: 30px;
}

.kmi-footer-contact-item {
  display: flex;

  gap: 13px;

  padding: 13px 0;
  align-items: center;
  border-bottom: 1px solid #edf0f3;
}

.kmi-footer-contact-icon {
  width: 42px;
  height: 42px;

  min-width: 42px;

  border: 1px solid #cbdbea;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #104984;

  font-size: 16px;
}

.kmi-footer-contact-item strong {
  display: block;

  color: #364b61;

  font-size: 12px;

  line-height: 1.6;
}
.kmi-footer-contact-item strong a {
  display: block;

  color: #364b61;

  font-size: 12px;

  line-height: 1.6;
}

/* =========================================================
   BOTTOM
========================================================= */

.kmi-footer-bottom {
  min-height: 58px;
  padding: 0 5%;
  background: #103f78;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 15px;
}

.kmi-footer-certified {
  color: #ffffff;
}

.kmi-footer-policies {
  display: flex;

  align-items: center;

  gap: 12px;
}

.kmi-footer-policies a {
  color: #ffffff;

  text-decoration: none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
  .kmi-footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .kmi-footer-company {
    grid-column: 1 / -1;
  }

  .kmi-footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .kmi-footer-feature:nth-child(2) {
    border-right: 0;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .kmi-footer-features {
    margin: 15px;
    padding: 20px;

    grid-template-columns: 1fr;

    gap: 20px;
  }

  .kmi-footer-feature {
    border-right: 0;

    border-bottom: 1px solid #e5ebf1;

    padding: 0 0 18px;
  }

  .kmi-footer-feature:last-child {
    border-bottom: 0;

    padding-bottom: 0;
  }

  .kmi-footer-main {
    grid-template-columns: 1fr;

    padding: 20px;
  }

  .kmi-footer-column,
  .kmi-footer-contact {
    border-left: 0;

    border-top: 1px solid #e5ebf1;

    padding: 25px 0 0;
  }

  .kmi-footer-stats {
    margin: 0 15px 20px;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    padding: 25px 15px;
  }

  .kmi-footer-stat {
    border-right: 0;

    justify-content: flex-start;
  }

  .kmi-footer-bottom {
    padding: 18px 20px;

    flex-direction: column;

    text-align: center;
    margin-bottom: 35px;
    line-height: 1.6;
  }
}

/* =====================================================
   RELATED PRODUCTS
===================================================== */

.kmi-related-section {
  width: 100%;
  padding: 65px 0 75px;
  background: #fff7f700;
}

.kmi-related-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 25px;
}

/* HEADING */

.kmi-related-heading {
  text-align: center;
  margin-bottom: 35px;
}

.kmi-related-heading > span {
  color: #f47716;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.kmi-related-heading h2 {
  margin: 8px 0 8px;

  color: #104984;

  font-size: 34px;
  line-height: 1.2;

  font-weight: 800;
}

.kmi-related-heading h2 strong {
  color: #f47716;
}

.kmi-related-line {
  width: 55px;
  height: 3px;

  margin: 12px auto;
  background: #f47716;
}

.kmi-related-heading p {
  max-width: 550px;
  margin: auto;

  color: #657587;

  font-size: 13px;
  line-height: 1.6;
}

/* GRID */

.kmi-related-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

/* CARD */

.kmi-related-card {
  background: #ffffff;

  border: 1px solid #e5edf5;

  border-radius: 10px;

  overflow: hidden;

  box-shadow: 0 5px 18px rgba(16, 73, 132, 0.06);

  transition: 0.3s ease;
}

.kmi-related-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 12px 28px rgba(16, 73, 132, 0.13);
}

/* IMAGE */

.kmi-related-image {
  height: 190px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  overflow: hidden;
}

.kmi-related-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  transition: transform 0.3s ease;
}

.kmi-related-card:hover .kmi-related-image img {
  transform: scale(1.05);
}

/* TAG */

.kmi-related-tag {
  position: absolute;

  top: 10px;
  left: 10px;

  padding: 5px 8px;

  background: #104984;
  color: #ffffff;

  border-radius: 3px;

  font-size: 8px;
  font-weight: 800;
}

/* CONTENT */

.kmi-related-content {
  padding: 17px 18px 20px;
}

.kmi-related-content h3 {
  margin: 0 0 8px;

  color: #104984;

  font-size: 16px;
  line-height: 1.3;

  font-weight: 800;
}

.kmi-related-content p {
  min-height: 42px;

  margin: 0 0 15px;

  color: #687789;

  font-size: 11px;
  line-height: 1.5;
}

/* BUTTON */

.kmi-related-btn {
  display: inline-flex;

  align-items: center;
  gap: 8px;

  color: #f47716;

  font-size: 10px;
  font-weight: 800;

  text-decoration: none;

  transition: 0.2s ease;
}

.kmi-related-btn span {
  font-size: 16px;
}

.kmi-related-btn:hover {
  color: #104984;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {
  .kmi-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
  .kmi-related-section {
    padding: 45px 0 55px;
  }

  .kmi-related-container {
    padding: 0 15px;
  }

  .kmi-related-heading h2 {
    font-size: 29px;
  }

  .kmi-related-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .kmi-related-image {
    height: 230px;
  }
}

/* =====================================================
   PRODUCT DESCRIPTION + ENQUIRY
===================================================== */

.kmi-product-enquiry-section {
  width: 100%;
  padding: 65px 0;

  background: #f5f9fd;
}

.kmi-product-enquiry-container {
  max-width: 1400px;
  margin: auto;

  padding: 0 30px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: start;
}

/* =====================================================
   LEFT DESCRIPTION
===================================================== */

.kmi-product-enquiry-description {
  padding: 25px 10px;
}

.kmi-product-enquiry-label {
  color: #f47716;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.8px;
}

.kmi-product-enquiry-description h2 {
  margin: 12px 0 12px;

  color: #104984;

  font-size: 25px;
  line-height: 1.5;

  font-weight: 700;
}

.kmi-product-enquiry-description h2 strong {
  display: block;

  color: #f47716;
}

.kmi-product-enquiry-line {
  width: 60px;
  height: 3px;

  background: #f47716;

  margin-bottom: 25px;
}

.kmi-product-enquiry-description h3 {
    margin: 28px 0 18px;
    color: #104984;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
}
.kmi-product-enquiry-description h4 {
  font-weight: 700;
}
.kmi-product-enquiry-description p {
  color: #080808;
  font-size: 15px;
}
.kmi-product-enquiry-description p a{
  color: #104984;
}
.kmi-product-enquiry-description ul li {
  color: #080808;
  font-size: 15px;
}

/* =====================================================
   POINTS
===================================================== */

.kmi-product-enquiry-points {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 14px 25px;
}

.kmi-product-enquiry-points div {
  display: flex;

  align-items: center;

  gap: 10px;
}

.kmi-product-enquiry-points span {
  width: 28px;
  height: 28px;

  min-width: 28px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #e8f3ff;

  color: #104984;

  font-size: 13px;
  font-weight: 800;
}

.kmi-product-enquiry-points p {
  margin: 0;

  color: #344c64;

  font-size: 12px;
  font-weight: 600;
}

/* =====================================================
   FORM BOX
===================================================== */

.kmi-product-enquiry-form-box {
  background: #ffffff;

  padding: 35px;

  border-radius: 12px;

  border-top: 4px solid #f47716;

  box-shadow: 0 10px 35px rgba(16, 73, 132, 0.1);
  position: sticky;
  top: 100px;
}

/* Form heading */

.kmi-product-enquiry-form-heading span {
  color: #f47716;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.7px;
}

.kmi-product-enquiry-form-heading h2 {
  margin: 7px 0;
  color: #104984;
  font-weight: 700;
  font-size: 28px;
}
.kmi-product-content h2{
  display: none;
}

.kmi-product-enquiry-form-heading p {
  margin: 0 0 25px;

  color: #718092;

  font-size: 12px;

  line-height: 1.6;
}

/* =====================================================
   FORM
===================================================== */

.kmi-product-enquiry-form {
  width: 100%;
}

.kmi-product-enquiry-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}

.kmi-product-enquiry-field {
  margin-bottom: 16px;
}

.kmi-product-enquiry-field label {
  display: block;

  margin-bottom: 6px;

  color: #29455f;

  font-size: 11px;

  font-weight: 700;
}

.kmi-product-enquiry-field input,
.kmi-product-enquiry-field textarea {
  width: 100%;

  box-sizing: border-box;

  padding: 12px 13px;

  border: 1px solid #d7e1eb;

  border-radius: 5px;

  outline: none;

  background: #fbfdff;

  color: #273f56;

  font-family: inherit;

  font-size: 12px;

  transition: 0.2s;
}

.kmi-product-enquiry-field input {
  height: 43px;
}

.kmi-product-enquiry-field textarea {
  resize: vertical;

  min-height: 90px;
}

.kmi-product-enquiry-field input:focus,
.kmi-product-enquiry-field textarea:focus {
  border-color: #104984;

  background: #ffffff;

  box-shadow: 0 0 0 3px rgba(16, 73, 132, 0.06);
}

/* =====================================================
   SUBMIT BUTTON
===================================================== */

.kmi-product-enquiry-submit {
  width: 100%;

  height: 48px;

  border: 0;

  border-radius: 5px;

  background: #104984;

  color: #ffffff;

  font-size: 12px;

  font-weight: 800;

  cursor: pointer;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  transition: 0.25s;
}

.kmi-product-enquiry-submit span {
  font-size: 18px;
}

.kmi-product-enquiry-submit:hover {
  background: #f47716;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {
  .kmi-product-enquiry-container {
    grid-template-columns: 1fr;

    gap: 30px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
  .kmi-product-enquiry-section {
    padding: 45px 0;
  }

  .kmi-product-enquiry-container {
    padding: 0 15px;
  }

  .kmi-product-enquiry-description {
    padding: 0;
  }

  .kmi-product-enquiry-description h2 {
    font-size: 29px;
  }

  .kmi-product-enquiry-points {
    grid-template-columns: 1fr;
  }

  .kmi-product-enquiry-form-box {
    padding: 22px 18px;
  }

  .kmi-product-enquiry-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* =====================================================
   PRODUCT DETAIL
===================================================== */

.kmi-product-detail {
  width: 100%;
  background: #f6faff;
  padding: 0 0 60px;
}

/* =====================================================
   BREADCRUMB
===================================================== */

.kmi-product-breadcrumb {
  max-width: 1400px;
  margin: auto;

  padding: 22px 30px;

  display: flex;
  align-items: center;
  gap: 10px;
background-color: #f6faff;
  font-size: 13px;
}

.kmi-product-breadcrumb a {
  color: #f47716;
  text-decoration: none;
}

.kmi-product-breadcrumb span {
  color: #8493a5;
  font-size: 18px;
}

.kmi-product-breadcrumb strong {
  color: #17477d;
  font-weight: 600;
}

/* =====================================================
   MAIN PRODUCT CARD
===================================================== */

.kmi-product-main {
  max-width: 1400px;
  margin: auto;

  background: #ffffff;

  border-radius: 12px;

  padding: 55px 45px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 65px;

  align-items: center;

  box-shadow: 0 5px 25px rgba(16, 73, 132, 0.06);
}

/* =====================================================
   PRODUCT IMAGE
===================================================== */

.kmi-product-image-box {
  width: 100%;
  height: 400px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  overflow: hidden;
}

.kmi-product-image-box img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  display: block;

  transition: transform 0.4s ease;
}

.kmi-product-image-box:hover img {
  transform: scale(1.03);
}

/* =====================================================
   PRODUCT CONTENT
===================================================== */

.kmi-product-label {
  color: #f47716;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.7px;
}

.kmi-product-content h1 {
  margin: 10px 0 12px;

  color: #104984;

  font-size: 25px;

  line-height: 1.5;

  font-weight: 800;

  text-transform: uppercase;
}

.kmi-product-title-line {
  width: 65px;
  height: 3px;

  background: #f47716;

  margin-bottom: 25px;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.kmi-product-short-description {
  color: #263c53;

  font-size: 17px;

  line-height: 1.8;

  margin: 0 0 17px;

  font-weight: 500;
}

.kmi-product-description {
  color: #667587;

  font-size: 14px;

  line-height: 1.8;

  margin: 0;

  padding-bottom: 25px;

  border-bottom: 1px solid #e3e9ef;
}

/* =====================================================
   BUTTONS
===================================================== */

.kmi-product-buttons {
  display: flex;

  gap: 12px;

  margin-top: 25px;

  flex-wrap: wrap;
}

.kmi-product-btn {
  min-height: 56px;

  padding: 0 18px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  border-radius: 6px;

  text-decoration: none;

  font-size: 12px;

  font-weight: 800;

  white-space: nowrap;

  transition: all 0.25s ease;
}

.kmi-product-btn span {
  font-size: 18px;
}

.kmi-product-btn b {
  font-size: 17px;
}

/* Orange */

.kmi-btn-orange {
  background: #f47716;

  color: #ffffff;

  border: 1px solid #f47716;
}

.kmi-btn-orange:hover {
  background: #104984;

  border-color: #104984;

  color: #ffffff;
}

/* Outline */

.kmi-btn-outline {
  background: #ffffff;

  color: #104984;

  border: 1px solid #a9bfd6;
}

.kmi-btn-outline:hover {
  background: #104984;

  border-color: #104984;

  color: #ffffff;
}

/* =====================================================
   APPLICATIONS
===================================================== */

.kmi-applications {
  max-width: 1400px;

  margin: 20px auto 0;

  padding: 30px 35px 38px;

  background: #ffffff;

  border-radius: 12px;

  box-shadow: 0 5px 25px rgba(16, 73, 132, 0.05);
}

/* Heading */

.kmi-applications-heading span {
  color: #104984;

  font-size: 22px;

  font-weight: 800;
}

.kmi-applications-heading div {
  width: 55px;
  height: 3px;

  background: #f47716;

  margin-top: 8px;
}

/* Application list */

.kmi-application-list {
  margin-top: 30px;

  display: grid;

  grid-template-columns: repeat(8, 1fr);

  gap: 15px;
}

/* Application item */

.kmi-application-item {
  text-align: center;

  padding: 8px 5px;
}

.kmi-application-icon {
  width: 82px;
  height: 82px;

  margin: auto;

  border-radius: 50%;

  background: #eef5fc;

  border: 1px solid #dce8f4;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #104984;

  font-size: 32px;

  transition: all 0.25s ease;
}

.kmi-application-item:hover .kmi-application-icon {
  background: #104984;

  color: #ffffff;

  transform: translateY(-5px);

  box-shadow: 0 8px 20px rgba(16, 73, 132, 0.18);
}

.kmi-application-item h3 {
  margin: 15px 0 0;

  color: #173f70;

  font-size: 13px;

  font-weight: 700;

  line-height: 1.4;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
  .kmi-product-main {
    margin: 0 20px;

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .kmi-product-image-box {
    height: 350px;
  }

  .kmi-application-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
  .kmi-product-breadcrumb {
    padding: 15px;

    font-size: 11px;

    flex-wrap: wrap;
  }

  .kmi-product-main {
    margin: 0 12px;

    padding: 25px 18px;

    gap: 20px;
  }

  .kmi-product-image-box {
    height: 250px;
  }

  .kmi-product-content h1 {
    font-size: 27px;
  }

  .kmi-product-short-description {
    font-size: 14px;
  }

  .kmi-product-description {
    font-size: 13px;
  }

  .kmi-product-buttons {
    flex-direction: column;
  }

  .kmi-product-btn {
    width: 100%;
  }

  .kmi-applications {
    margin: 15px 12px 0;

    padding: 25px 15px;
  }

  .kmi-application-list {
    grid-template-columns: repeat(2, 1fr);

    gap: 20px 5px;
  }
  .kmi-footer-logo {
    width: 256px;
  }
}

/* =====================================================
   HTML SITEMAP
===================================================== */

.kmi-sitemap-grid {
  display: grid;

  gap: 35px;

  padding: 30px;

  background: #ffffff;

  border: 1px solid #e2eaf2;
  border-radius: 10px;

  box-shadow: 0 5px 20px rgba(16, 73, 132, 0.05);
}

/* MAIN PAGES */

.kmi-sitemap-main-column {
  padding-right: 25px;
  border-right: 1px solid #e1e8ef;
}

.kmi-sitemap-main-column h3,
.kmi-sitemap-products-column h3 {
  margin: 0 0 17px;
  color: #104984;
  font-size: 14px;
  font-weight: 800;
  background: antiquewhite;
  padding: 20px;
}

.kmi-sitemap-main-column h3::after,
.kmi-sitemap-products-column h3::after {
  content: "";

  display: block;

  width: 35px;
  height: 2px;

  margin-top: 7px;

  background: #f47716;
}

/* ALL PRODUCTS */

.kmi-sitemap-main-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.kmi-sitemap-products-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kmi-sitemap-main-column a,
.kmi-sitemap-products-list a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: 0.2s;
  background: #003873;
  text-align: center;
  display: -webkit-box;
  border-radius: 5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 7px;
}

.kmi-sitemap-main-column a::before,
.kmi-sitemap-products-list a::before {
  content: "›";

  margin-right: 7px;

  color: #f47716;

  font-size: 16px;
  font-weight: 700;
}

.kmi-sitemap-main-column a:hover,
.kmi-sitemap-products-list a:hover {
  background-color: #f47716;
}

/* TABLET */

@media (max-width: 900px) {
  .kmi-sitemap-grid {
    grid-template-columns: 1fr;
  }

  .kmi-sitemap-main-column {
    padding-right: 0;
    padding-bottom: 25px;

    border-right: 0;
    border-bottom: 1px solid #e1e8ef;
  }

  .kmi-sitemap-main-column ul {
    grid-template-columns: repeat(2, 1fr);
}


  .kmi-sitemap-products-list ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.kmi-product-enquiry-description iframe {
  width: 100%;
}


/* MOBILE */

@media (max-width: 600px) {
  .kmi-sitemap-grid {
    padding: 22px 18px;
    gap: 25px;
  }
 .kmi-sitemap-products-list a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
    transition: 0.2s;
    background: #003873;
    text-align: center;
    display: -webkit-box;
    border-radius: 5px;
    text-align: center;
    display: block;
    align-items: center;
    justify-content: center;
    padding: 13px 4px;
    height: 100%;
}
.kmi-product-detail {
  
    padding: 0 0 3px;
}
.kmi-footer-column.two ul {
    column-count: 1;
    column-gap: 10px;
}

}
