/* =========================================================
   SECTION 2 · WHY WASTE
   ========================================================= */

.mif-sec--soft {
  position: relative;
  padding: 105px 0;
  background: #f8f5f2;
  overflow: hidden;
}

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

.mif-why-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mif-why-intro {
  padding-bottom: 4px;
}

.mif-why-intro .mif-lead {
  margin: 0;
}

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

.mif-stat-row {
  margin-left: -12px;
  margin-right: -12px;
}

.mif-stat-row>[class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}

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

.mif-stat-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 455px;
  height: 100%;
  padding: 30px 30px 26px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Orange top border */

.mif-stat-tile::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #e97136;
  content: "";
  transition: width 0.35s ease;
}

.mif-stat-tile:hover {
  border-color: #d8d8d8;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transform: translateY(-7px);
}

.mif-stat-tile:hover::before {
  width: 100%;
}

/* =========================================================
   CARD TOP
   ========================================================= */

.mif-stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

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

.mif-stat-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 113, 54, 0.09);
  color: #e97136;
  font-size: 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mif-stat-tile:hover .mif-stat-icon {
  background: #e97136;
  color: #ffffff;
}

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

.mif-stat-content {
  flex: 1;
  margin-top: 20px;
}

/* BIG NUMBER */

.mif-stat-num {
  margin: 0 0 10px;
  color: #000000;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.mif-stat-tile:hover .mif-stat-num {
  color: #e97136;
}

/* UNIT */

.mif-stat-unit {
  color: #222222;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

/* BODY */

.mif-stat-body {
  margin: 0;
  color: #666666;
  font-size: 17px;
  line-height: 1.5;
}

/* =========================================================
   SOURCE
   ========================================================= */

.mif-stat-source {
  margin-top: 10px;
  padding-top: 17px;
  border-top: 1px solid #eeeeee;
}

.mif-stat-source span {
  display: block;
  margin-bottom: 5px;
  color: #e97136;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mif-stat-source p {
  margin: 0;
  color: #888888;
  font-size: 15px;
  line-height: 1.5;
}

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

@media (max-width: 991px) {
  .mif-sec--soft {
    padding: 80px 0;
  }

  .mif-why-head {
    display: block;
    margin-bottom: 45px;
  }

  .mif-why-heading,
  .mif-why-intro {
    width: 100%;
  }

  .mif-stat-tile {
    min-height: 430px;
  }

  .mif-stat-num {
    font-size: 36px;
  }
}

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

@media (max-width: 575px) {
  .mif-sec--soft {
    padding: 55px 0;
  }

  .mif-stat-top {
    margin-bottom: 27px;
  }
}

/* =========================================================
   SECTION 3 · OUR FACILITIES
   ========================================================= */

.mif-facilities {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

/* =========================================================
   FACILITY CARD
   ========================================================= */

.mif-facilities-grid {
  margin-left: -12px;
  margin-right: -12px;
}

.mif-facilities-grid>.col-lg-6 {
  padding-left: 12px;
  padding-right: 12px;
}

.mif-facility-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 32px 0;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  overflow: hidden;
  border-radius: 10px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.mif-facility-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #e97136;
  transition: width 0.35s ease;
}

.mif-facility-card:hover {
  transform: translateY(-6px);
  border-color: #d7d7d7;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.mif-facility-card:hover::before {
  width: 100%;
}

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

.mif-facility-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mif-facility-number {
  color: #b5b5b5;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 2px;
}

.mif-facility-card .mif-tag {
  display: inline-flex;
  align-items: center;

  padding: 9px 17px;
  color: #e97136;
  background: rgba(233, 113, 54, 0.08);
  border: 1px solid rgba(233, 113, 54, 0.15);

  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================================================
   FACILITY TITLE
   ========================================================= */

.mif-facility-card .mif-h3 {
  margin-bottom: 0;
  color: #000000;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.mif-facility-accent {
  width: 42px;
  height: 3px;
  margin: 18px 0 22px;
  background: #e97136;
}

/* =========================================================
   FACILITY CONTENT
   ========================================================= */

.mif-facility-card .mif-p {
  color: #606060;
  font-size: 16px;
  line-height: 1.5;
}

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

.mif-facility-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding: 20px 0;

  border-top: 1px solid #eeeeee;
}

.mif-facility-footer span {
  color: #222222;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.mif-facility-footer i {
  color: #e97136;
  font-size: 16px;

  transition: transform 0.3s ease;
}

.mif-facility-card:hover .mif-facility-footer i {
  transform: translateX(5px);
}

/* =========================================================
   TECHNOLOGY NOTE
   ========================================================= */

.mif-facility-note {
  position: relative;
  margin-top: 8px;

  background: #f8f5f2;
  color: #000000;
  border-radius: 8px;

  border: 0;
  overflow: hidden;
}

/* =========================================================
   NOTE ITEMS
   ========================================================= */

.mif-note-item {
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding: 30px 32px;
}

.mif-note-item--team {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.mif-note-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  background: rgba(233, 113, 54, 0.14);
  border-radius: 5px;
  color: #e97136;
  font-size: 18px;
}

.mif-note-item p {
  color: #606060;
  font-size: 16px;
  line-height: 1.5;
}

.mif-note-item strong {
  color: #e97136;
  font-weight: 700;
}

.mif-team-link {
  display: inline-block;
  color: #e97136;

  font-weight: 700;
  text-decoration: none;

  transition: color 0.25s ease;
}

.mif-team-link:hover {
  color: #000000;
  text-decoration: none;
}

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

@media (max-width: 991px) {
  .mif-facilities {
    padding: 85px 0;
  }

  .mif-note-item--team {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

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

@media (max-width: 767px) {
  .mif-facilities {
    padding: 70px 0;
  }

  .mif-facilities-header {
    margin-bottom: 40px;
  }

  .mif-facility-card {
    padding: 28px 26px 0;
  }

  .mif-facility-card-head {
    margin-bottom: 30px;
  }

  .mif-facility-card .mif-h3 {
    font-size: 25px;
  }

  .mif-note-item {
    padding: 26px;
  }
}

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

@media (max-width: 575px) {
  .mif-facilities {
    padding: 60px 0;
  }

  .mif-facilities-title {
    font-size: 31px;
    line-height: 1.12;
  }

  .mif-facilities-grid {
    margin-left: -8px;
    margin-right: -8px;
  }

  .mif-facilities-grid>.col-lg-6 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .mif-facility-card {
    padding: 24px 22px 0;
  }

  .mif-facility-card-head {
    margin-bottom: 27px;
  }

  .mif-facility-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    font-size: 18px;
  }

  .mif-facility-card .mif-h3 {
    font-size: 23px;
  }

  .mif-facility-card .mif-p {
    font-size: 13.5px;
    line-height: 1.7;
  }

  .mif-note-item {
    display: block;
    padding: 24px 22px;
  }

  .mif-note-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .mif-team-link {
    display: block;
    margin-top: 9px;
    margin-left: 0;
  }
}

/* =========================================================
   TECHNOLOGY PORTFOLIO / HONEST LADDER
   ========================================================= */

#mif-portfolio {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

/* =========================================================
   LADDER CARD
   ========================================================= */

#mif-portfolio .mif-lad {
  position: relative;
  padding: 20px 20px 20px;
  background: #ffffff;
  border: 1px solid #e4e1de;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

#mif-portfolio .mif-lad:hover {
  transform: translateY(-3px);
  border-color: #d8d2ce;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.07);
}

/* =========================================================
   TOP ROW
   ========================================================= */

#mif-portfolio .mif-lad__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 25px;
}

#mif-portfolio .mif-lad__name {
  max-width: 70%;
  margin: 0;
  color: #111111;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

#mif-portfolio .mif-lad__stage {
  flex: 0 0 auto;
  margin: 0;
  padding: 6px 12px;
  color: #c95722;
  background: rgba(233, 113, 54, 0.09);
  border: 1px solid rgba(233, 113, 54, 0.18);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 8px;
}

/* =========================================================
   PROGRESS BAR
   ========================================================= */

#mif-portfolio .mif-lad__bar {
  display: flex;
  width: 100%;
  height: 9px;
  gap: 3px;

  overflow: hidden;
  margin-bottom: 12px;
}

#mif-portfolio .mif-lad__seg {
  display: block;
  flex: 1;
  height: 100%;
  background: #e8e5e2;
  border-radius: 2px;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

#mif-portfolio .mif-lad__sag--on-one {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

#mif-portfolio .mif-lad__sag--on-last {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

#mif-portfolio .mif-lad__seg--on {
  background: #e97136;
}

#mif-portfolio .mif-lad:hover .mif-lad__seg--on {
  background: #c95722;
}

/* =========================================================
   SCALE LABELS
   ========================================================= */

#mif-portfolio .mif-lad__scale {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

#mif-portfolio .mif-lad__scale span {
  flex: 1;
  color: #7a7a7a;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.25px;
}

#mif-portfolio .mif-lad__scale span:not(:first-child) {
  text-align: center;
}

#mif-portfolio .mif-lad__scale span:last-child {
  text-align: right;
}

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

#mif-portfolio .mif-lad__note {
  position: relative;
  margin: 0;
  padding-top: 20px;
  color: #5d5d5d;
  border-top: 1px solid #eeeeee;
  font-size: 15px;
  line-height: 1.5;
}

/* =========================================================
   FINAL NOTE
   ========================================================= */

#mif-portfolio .mif-note {
  margin-top: 0;
  padding: 29px 32px 25px;
  background: #fff9f3;
  border: 1px solid #eadfd5;
  border-left: 4px solid #e97136;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.035);
}

#mif-portfolio .mif-note p {
  margin-bottom: 14px;
  color: #5d5d5d;
  font-size: 17px;
  line-height: 1.4;
}

#mif-portfolio .mif-note p:last-child {
  margin-bottom: 0;
}

#mif-portfolio .mif-note strong {
  color: #111111;
  font-weight: 800;
}

#mif-portfolio .mif-note em {
  color: #333333;
}

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

@media (max-width: 991px) {
  #mif-portfolio {
    padding: 85px 0;
  }

  #mif-portfolio .mif-h2 {
    font-size: 42px;
  }

  #mif-portfolio .mif-lad {
    padding: 27px 26px 25px;
  }

  #mif-portfolio .mif-lad__name {
    max-width: 65%;
  }
}

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

@media (max-width: 767px) {
  #mif-portfolio {
    padding: 70px 0;
  }

  #mif-portfolio .mif-h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  #mif-portfolio .mif-lead {
    font-size: 15px;
    line-height: 1.7;
  }

  #mif-portfolio .mif-lad {
    padding: 24px 20px 22px;
  }

  #mif-portfolio .mif-lad__top {
    display: block;
    margin-bottom: 22px;
  }

  #mif-portfolio .mif-lad__name {
    max-width: none;
    margin-bottom: 13px;
    font-size: 17px;
  }

  #mif-portfolio .mif-lad__stage {
    display: inline-block;
    text-align: left;
  }

  #mif-portfolio .mif-lad__bar {
    height: 8px;
    gap: 4px;
  }

  #mif-portfolio .mif-lad__scale {
    gap: 5px;
    margin-bottom: 21px;
  }

  #mif-portfolio .mif-lad__scale span {
    font-size: 8.5px;
    line-height: 1.35;
  }

  #mif-portfolio .mif-lad__note {
    padding-top: 17px;
    font-size: 13px;
    line-height: 1.7;
  }

  #mif-portfolio .mif-note {
    padding: 24px 21px 21px;
  }

  #mif-portfolio .mif-note p {
    font-size: 13px;
    line-height: 1.7;
  }
}

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

@media (max-width: 575px) {
  #mif-portfolio {
    padding: 60px 0;
  }

  #mif-portfolio .mif-h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  #mif-portfolio .mif-lead {
    font-size: 14px;
  }

  #mif-portfolio .mif-lad {
    padding: 21px 17px 20px;
  }

  #mif-portfolio .mif-lad__name {
    font-size: 16px;
  }

  #mif-portfolio .mif-lad__stage {
    padding: 6px 9px;
    font-size: 9px;
  }

  #mif-portfolio .mif-lad__bar {
    height: 7px;
  }

  #mif-portfolio .mif-lad__scale span {
    font-size: 7.5px;
  }

  #mif-portfolio .mif-lad__note {
    font-size: 12.5px;
  }

  #mif-portfolio .mif-note {
    padding: 21px 17px 19px;
  }
}

/* =========================================================
   MY INDIFUELS
   REFERENCE PROCESS
   ========================================================= */

#mif-process {
  position: relative;
  padding: 105px 0;
  overflow: hidden;
}

/* =========================================================
   FIVE STAGE PROCESS
   ========================================================= */

#mif-process .mif-proc {
  position: relative;
  display: flex;
  width: 100%;
  gap: 16px;
}

/* Individual stage */

#mif-process .mif-proc>div {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  min-height: 200px;
  padding: 20px;
  border-radius: 10px;
  background: #ffffff;
  border-right: 1px solid #ece9e7;
  transition: all 0.3s ease;
}

#mif-process .mif-proc>div:last-child {
  border-right: 0;
}

#mif-process .mif-proc>div:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(233, 113, 54, 0.08);
}

/* =========================================================
   STAGE NUMBER
   ========================================================= */

#mif-process .mif-proc b {
  position: relative;
  z-index: 3;

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

  width: 65px;
  height: 65px;

  margin-bottom: 10px;

  color: #ffffff;
  background: #e97136;

  border: 5px solid #ffffff;
  border-radius: 50%;

  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

/* =========================================================
   STAGE TITLE
   ========================================================= */

#mif-process .mif-proc>div>span {
  display: block;

  margin-bottom: 10px;
  color: #111111;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

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

#mif-process .mif-proc em {
  display: block;

  color: #666666;

  font-size: 15px;
  line-height: 1.5;
  font-style: normal;
}

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

#mif-process .mif-process-feature {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 34px 35px;

  background: #ffffff;
  border: 1px solid #dfdcd9;

  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.035);

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

#mif-process .mif-process-feature:hover {
  transform: translateY(-5px);
  border-color: #d3ccc7;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

#mif-process .mif-process-feature .mif-tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Feature heading */

#mif-process .mif-process-feature .mif-h3 {
  margin-bottom: 18px;
}

/* =========================================================
   DARK ECONOMICS CARD
   ========================================================= */

#mif-process .mif-process-feature--dark {
  color: #ffffff;
  background: #111111;
  border-color: #111111;
}

#mif-process .mif-process-feature--dark:hover {
  border-color: #111111;
}

#mif-process .mif-process-feature--dark .mif-tag {
  color: #e97136;
  background: rgba(233, 113, 54, 0.12);
  border-color: rgba(233, 113, 54, 0.22);
}

#mif-process .mif-process-feature--dark .mif-h3 {
  color: #ffffff;
}

#mif-process .mif-process-feature--dark .mif-p {
  color: #cccccc;
}

/* =========================================================
   ENGINEERING LIST
   ========================================================= */

#mif-process .mif-process-feature .mif-list-eng {
  padding: 0;
  list-style: none;
}

#mif-process .mif-process-feature .mif-list-eng li {
  position: relative;

  color: #555555;

  border-bottom: 1px solid #eeeeee;

  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 16px;
}

#mif-process .mif-process-feature .mif-lists {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

#mif-process .mif-process-feature .mif-lists i {
  font-size: 18px;
  color: #e97136;
}

#mif-process .mif-process-feature .mif-list-eng li:first-child {
  padding-top: 0;
}

#mif-process .mif-process-feature .mif-list-eng li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

#mif-process .mif-process-heading {
  position: relative;

  margin: 42px 0 22px !important;
  padding-left: 18px;

  color: #111111;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 800;
}

/* =========================================================
   DISCIPLINE CARDS
   ========================================================= */

#mif-process .mif-discipline-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 32px 30px;

  background: #ffffff;
  border: 1px solid #dfdcd9;

  box-shadow: 0 9px 28px rgba(0, 0, 0, 0.04);

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

#mif-process .mif-discipline-card:hover {
  transform: translateY(-5px);
  border-color: #d5cec9;
  box-shadow: 0 17px 38px rgba(0, 0, 0, 0.075);
}

/* Orange top line */

#mif-process .mif-discipline-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 30px;

  width: 40px;
  height: 3px;

  background: #e97136;
}

/* Discipline title */

#mif-process .mif-discipline-card .mif-h3 {
  margin-bottom: 14px;
  color: #111111;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

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

@media (max-width: 1199px) {
  #mif-process .mif-proc>div {
    padding: 27px 18px 25px;
  }

  #mif-process .mif-proc>div>span {
    font-size: 16px;
  }

  #mif-process .mif-proc em {
    font-size: 12px;
  }
}

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

@media (max-width: 991px) {
  #mif-process {
    padding: 85px 0;
  }

  #mif-process .mif-h2 {
    font-size: 42px;
  }

  /* Horizontal process */

  #mif-process .mif-proc {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  #mif-process .mif-proc>div {
    flex: 0 0 210px;
    min-height: 235px;
  }

  #mif-process .mif-proc::before {
    left: 60px;
    right: 60px;
  }

  /* Bootstrap cards */

  #mif-process .mif-process-feature {
    padding: 30px;
  }
}

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

@media (max-width: 767px) {
  #mif-process {
    padding: 70px 0;
  }

  #mif-process .mif-h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  /* Process */

  #mif-process .mif-proc>div {
    flex: 0 0 195px;
    min-height: 220px;
    padding: 24px 18px;
  }

  #mif-process .mif-proc>div>span {
    font-size: 15px;
  }

  #mif-process .mif-proc em {
    font-size: 11.5px;
  }

  /* Feature cards */

  #mif-process .mif-process-feature {
    padding: 26px 22px;
  }

  /* Discipline */

  #mif-process .mif-process-heading {
    margin-top: 34px !important;
    font-size: 21px;
  }

  #mif-process .mif-discipline-card {
    padding: 26px 22px;
  }
}

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

@media (max-width: 575px) {
  #mif-process {
    padding: 60px 0;
  }

  #mif-process .mif-h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  #mif-process .mif-proc>div {
    flex-basis: 180px;
    min-height: 210px;
    padding: 22px 16px;
  }

  #mif-process .mif-proc>div>span {
    font-size: 14px;
  }

  #mif-process .mif-proc em {
    font-size: 11px;
    line-height: 1.65;
  }

  #mif-process .mif-process-feature {
    padding: 23px 18px;
  }

  #mif-process .mif-process-feature .mif-list-eng li {
    font-size: 12.5px;
  }

  #mif-process .mif-process-heading {
    padding-left: 14px;
    font-size: 19px;
  }

  #mif-process .mif-discipline-card {
    padding: 23px 18px;
  }

  #mif-process .mif-discipline-card .mif-h3 {
    font-size: 18px;
  }
}

/* =========================================================
   PRODUCT BOUNDARY
   MY INDIFUELS
   ========================================================= */

#mif-boundary {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

/* =========================================================
   TOP ACCENT
   ========================================================= */

#mif-boundary::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: #e97136;
}

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

#mif-boundary .mif-wrap {
  position: relative;
  z-index: 2;
}

/* =========================================================
   PRODUCT QUOTE BOX
   ========================================================= */

#mif-boundary .mif-quotebox {
  position: relative;

  max-width: 1080px;

  margin-bottom: 45px;

  padding: 20px 30px 36px;

  background: #111111;

  border-left: 5px solid #e97136;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);

  overflow: hidden;
}

/* Large background quotation */

#mif-boundary .mif-quotebox::after {
  content: "\201D";

  position: absolute;

  right: 30px;
  bottom: -70px;

  color: rgba(233, 113, 54, 0.08);

  font-family: Georgia, serif;
  font-size: 190px;
  line-height: 1;

  pointer-events: none;
}

/* Quote icon */

#mif-boundary .mif-quote-mark {
  position: relative;
  z-index: 2;

  width: 38px;
  height: 38px;

  margin-bottom: 20px;

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

  background: #e97136;

  color: #ffffff;

  font-size: 14px;
}

/* Quote content */

#mif-boundary .mif-quotebox p {
  position: relative;
  z-index: 2;
  margin: 0;
}

#mif-boundary .mif-quotebox q {
  display: block;
  max-width: 920px;
  margin-bottom: 10px;

  color: #ffffff;

  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;

  quotes: none;
}

#mif-boundary .mif-quotebox q::before,
#mif-boundary .mif-quotebox q::after {
  content: none;
}

/* Citation */

#mif-boundary .mif-quotebox cite {
  display: block;

  color: #999999;

  font-size: 10px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 700;

  letter-spacing: 1.3px;
  text-transform: uppercase;
}

/* =========================================================
   CARDS
   ========================================================= */

#mif-boundary .mif-grid--2 {
  margin-left: -12px;
  margin-right: -12px;

  margin-bottom: 14px;
}

#mif-boundary .mif-grid--2>[class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}

/* Individual card */

#mif-boundary .mif-card {
  position: relative;

  min-height: 285px;

  padding: 32px 32px 30px;

  background: #ffffff;

  border: 1px solid #e3dfdc;
  border-top: 3px solid #111111;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.035);

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

/* Hover */

#mif-boundary .mif-card:hover {
  transform: translateY(-7px);

  border-top-color: #e97136;

  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.05);
}

/* =========================================================
   CARD NUMBER
   ========================================================= */

#mif-boundary .mif-card-index {
  width: 42px;
  height: 42px;

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

  background: #e97136;

  color: #ffffff;

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

/* Orange rule */

#mif-boundary .mif-card-rule {
  width: 48px;
  height: 2px;

  margin: 20px 0 18px;

  background: #e97136;

  transition: width 0.3s ease;
}

#mif-boundary .mif-card:hover .mif-card-rule {
  width: 75px;
}

/* Heading */

#mif-boundary .mif-card .mif-h3 {
  margin: 0 0 15px;

  color: #111111;

  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;

  letter-spacing: -0.3px;
}

/* Paragraph */

#mif-boundary .mif-card .mif-p {
  color: #555555;

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

/* =========================================================
   FINAL NOTE
   ========================================================= */

#mif-boundary .mif-note--amber {
  display: flex;
  align-items: flex-start;

  margin-top: 10px;
  padding: 26px 30px;

  background: #fff8f3;

  border: 1px solid #eaded5;
  border-left: 4px solid #e97136;

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

/* Note icon */

#mif-boundary .mif-note-mark {
  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  margin-right: 18px;

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

  background: #e97136;

  color: #ffffff;

  font-size: 20px;
}

/* Note text */

#mif-boundary .mif-note--amber p {
  margin: 0;

  color: #555555;

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

#mif-boundary .mif-note--amber strong {
  color: #111111;
  font-weight: 800;
}

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

@media (max-width: 991px) {
  #mif-boundary {
    padding: 85px 0;
  }

  #mif-boundary .mif-h2 {
    font-size: 42px;
  }

  #mif-boundary .mif-quotebox {
    padding: 36px 38px 32px;
  }

  #mif-boundary .mif-quotebox q {
    font-size: 18px;
  }

  #mif-boundary .mif-card {
    min-height: 320px;

    padding: 30px 27px;
  }
}

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

@media (max-width: 767px) {
  #mif-boundary {
    padding: 70px 0;
  }

  #mif-boundary .mif-boundary-heading {
    margin-bottom: 30px;
  }

  #mif-boundary .mif-h2 {
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  /* Quote */

  #mif-boundary .mif-quotebox {
    margin-bottom: 30px;

    padding: 32px 24px 27px;

    border-left-width: 4px;
  }

  #mif-boundary .mif-quotebox q {
    font-size: 16px;
    line-height: 1.65;
  }

  /* Cards */

  #mif-boundary .mif-grid--2 {
    margin-left: -10px;
    margin-right: -10px;
  }

  #mif-boundary .mif-grid--2>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }

  #mif-boundary .mif-card {
    min-height: auto;

    padding: 27px 23px;
  }

  #mif-boundary .mif-card .mif-h3 {
    font-size: 20px;
  }

  #mif-boundary .mif-card .mif-p {
    font-size: 13.5px;
    line-height: 1.75;
  }

  /* Note */

  #mif-boundary .mif-note--amber {
    padding: 23px 20px;
  }

  #mif-boundary .mif-note-mark {
    width: 36px;
    height: 36px;

    flex-basis: 36px;

    margin-right: 14px;
  }

  #mif-boundary .mif-note--amber p {
    font-size: 13px;
    line-height: 1.7;
  }
}

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

@media (max-width: 575px) {
  #mif-boundary {
    padding: 60px 0;
  }

  #mif-boundary .mif-eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  #mif-boundary .mif-h2 {
    font-size: 31px;
  }

  #mif-boundary .mif-quotebox {
    padding: 28px 19px 23px;
  }

  #mif-boundary .mif-quotebox q {
    font-size: 15px;
    line-height: 1.7;
  }

  #mif-boundary .mif-quotebox cite {
    font-size: 8.5px;
  }

  #mif-boundary .mif-card {
    padding: 24px 20px;
  }

  #mif-boundary .mif-card-index {
    width: 38px;
    height: 38px;

    font-size: 10px;
  }

  #mif-boundary .mif-card .mif-h3 {
    font-size: 19px;
  }

  #mif-boundary .mif-card .mif-p {
    font-size: 13px;
  }

  #mif-boundary .mif-note--amber {
    padding: 20px 17px;
  }

  #mif-boundary .mif-note-mark {
    width: 34px;
    height: 34px;

    flex-basis: 34px;

    margin-right: 12px;

    font-size: 12px;
  }

  #mif-boundary .mif-note--amber p {
    font-size: 12.8px;
  }
}

/* =========================================================
   POLICY FRAMEWORK
   ========================================================= */

#mif-policy {
  position: relative;
  padding: 100px 0;
  background: #f8f5f2;
  overflow: hidden;
}

#mif-policy .mif-wrap {
  position: relative;
  z-index: 1;
}

/* =========================================================
   QUOTE BOX
   ========================================================= */

#mif-policy .mif-quotebox {
  position: relative;
  margin: 0;
  /* padding: 32px 38px 30px; */
  padding: 16px 30px;
  background: #ffffff;
  border: 1px solid #e4dfdc;
  border-left: 4px solid #e97136;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.045);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

#mif-policy .mif-quotebox:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
  border-left-color: #c95722;
}

#mif-policy .mif-quotebox p {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  color: #555555;
  font-size: 15px;
  line-height: 1.5;
}

#mif-policy .mif-quotebox p:first-child {
  margin-bottom: 8px;
  color: #111111;
  font-size: 18px;
}

#mif-policy .mif-quotebox strong {
  color: #000000;
  font-weight: 800;
  font-size: 18px;
}

#mif-policy .mif-quotebox q {
  display: block;
  color: #3f3f3f;

  font-size: 16px;
  line-height: 1.8;
}

#mif-policy .mif-quotebox cite {
  display: block;
  margin-top: 5px;
  color: #777777;

  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

/* =========================================================
   CARDS
   ========================================================= */

#mif-policy .mif-grid {
  margin-top: 26px !important;
}

#mif-policy .mif-card {
  position: relative;
  height: 100%;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e4dfdc;
  border-top: 4px solid #e97136;

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);

  overflow: hidden;

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

#mif-policy .mif-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

#mif-policy .mif-card:hover::before {
  width: 100%;
}

#mif-policy .mif-card .mif-h3 {
  position: relative;
  margin-bottom: 16px;
  color: #111111;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 800;
}

#mif-policy .mif-card .mif-p {
  color: #5b5b5b;
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
  #mif-policy {
    padding: 85px 0;
  }

  #mif-policy .mif-h2 {
    font-size: 42px;
  }

  #mif-policy .mif-lead {
    max-width: 720px;
  }

  #mif-policy .mif-quotebox {
    padding: 28px 30px;
  }

  #mif-policy .mif-quotebox q {
    font-size: 15px;
  }

  #mif-policy .mif-card {
    padding: 28px 26px;
  }
}

@media (max-width: 767px) {
  #mif-policy {
    padding: 70px 0;
  }

  #mif-policy .mif-h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  #mif-policy .mif-lead {
    font-size: 15px;
    line-height: 1.7;
  }

  #mif-policy .mif-quotebox {
    padding: 26px 24px;
  }

  #mif-policy .mif-quotebox::before {
    right: 18px;
    font-size: 70px;
  }

  #mif-policy .mif-quotebox q {
    font-size: 14px;
    line-height: 1.75;
  }

  #mif-policy .mif-quotebox cite {
    font-size: 10px;
    line-height: 1.5;
  }

  #mif-policy .mif-card {
    padding: 26px 24px;
  }

  #mif-policy .mif-card .mif-h3 {
    font-size: 20px;
  }

  #mif-policy .mif-card .mif-p {
    font-size: 13.5px;
  }
}

@media (max-width: 575px) {
  #mif-policy {
    padding: 60px 0;
  }

  #mif-policy .mif-h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  #mif-policy .mif-lead {
    font-size: 14px;
  }

  #mif-policy .mif-quotebox {
    padding: 23px 19px 22px;
    border-left-width: 3px;
  }

  #mif-policy .mif-quotebox p {
    font-size: 13px;
  }

  #mif-policy .mif-quotebox q {
    font-size: 13.5px;
    line-height: 1.7;
  }

  #mif-policy .mif-card {
    padding: 23px 20px;
  }

  #mif-policy .mif-card .mif-h3 {
    font-size: 19px;
  }

  #mif-policy .mif-card .mif-p {
    font-size: 13px;
    line-height: 1.7;
  }
}

#mif-collab {
  position: relative;
  background: #f8f8f7;
  color: #000000;
}

/* ---------------------------------------------------------
   COLLABORATION CARD
   --------------------------------------------------------- */

#mif-collab .mif-card {
  position: relative;

  background: #ffffff;

  border: 1px solid #e2e2e2;
  border-top: 3px solid #000000;
  padding: 20px 0px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

#mif-collab .mif-card:hover {
  transform: translateY(-6px);

  border-color: #e97136;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

#mif-collab .mif-card:hover::after {
  width: 100%;
}

/* ---------------------------------------------------------
   TAG
   --------------------------------------------------------- */

#mif-collab .mif-tag {
  display: inline-flex;
  align-items: center;

  padding: 7px 12px;

  color: #e97136;

  background: #fff1e9;

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

  text-transform: uppercase;
}

/* ---------------------------------------------------------
   CARD HEADING
   --------------------------------------------------------- */

#mif-collab .mif-h3 {
  color: #000000;

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

  line-height: 1.3;
}

/* ---------------------------------------------------------
   CARD TEXT
   --------------------------------------------------------- */

#mif-collab .mif-p {
  color: #555555;

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


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
  #mif-collab .mif-h2 {
    font-size: 42px;
  }

  #mif-collab .mif-card {
    padding: 30px !important;
  }
}

@media (max-width: 767.98px) {
  #mif-collab .mif-h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  #mif-collab .mif-lead {
    font-size: 15px;
  }

  #mif-collab .mif-h3 {
    font-size: 20px;
  }

  #mif-collab .mif-card {
    padding: 25px !important;
  }

  #mif-collab .mif-collab-cta {
    border-left-width: 4px;
  }

  #mif-collab .mif-cta-title {
    font-size: 21px;
  }
}

@media (max-width: 575.98px) {
  #mif-collab .mif-h2 {
    font-size: 31px;
  }

  #mif-collab .mif-card {
    padding: 22px !important;
  }

  #mif-collab .mif-p {
    font-size: 13px;
  }

  #mif-collab .mif-btn {
    width: 100%;
  }

  #mif-collab .mif-collab-cta {
    padding: 25px !important;
  }
}










/* =========================================================
   SOURCES SECTION
   
   ========================================================= */

.mif-sources-section {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}





/* ---------------------------------------------------------
   Container
   --------------------------------------------------------- */

.mif-sources-section .mif-wrap {
  position: relative;
  z-index: 2;
}





/* ---------------------------------------------------------
   Sources List
   --------------------------------------------------------- */

.mif-sources-section .mif-src {
  position: relative;

  margin-top: 20px;
  padding: 0;

  list-style: none;

  border-top: 1px solid #000000;
}


/* ---------------------------------------------------------
   Individual Source
   --------------------------------------------------------- */

.mif-sources-section .mif-src li {
  position: relative;

  margin: 0;
  padding: 27px 35px 27px 55px;

  color: #000000;

  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;

  border-bottom: 1px solid rgba(0, 0, 0, 0.15);

  transition:
    background-color 0.3s ease,
    padding-left 0.3s ease;
}


/* Number / marker */

.mif-sources-section .mif-src li::before {
  content: "";

  position: absolute;
  left: 20px;
  top: 34px;

  width: 8px;
  height: 8px;

  background: #e97136;

  border-radius: 50%;
}


/* Orange vertical indicator */

.mif-sources-section .mif-src li::after {
  content: "";

  position: absolute;
  left: 0;
  top: 0;

  width: 3px;
  height: 0;

  background: #e97136;

  transition: height 0.3s ease;
}


/* Hover */

.mif-sources-section .mif-src li:hover {
  padding-left: 60px;
  background: rgba(233, 113, 54, 0.045);
}

.mif-sources-section .mif-src li:hover::after {
  height: 100%;
}


/* Source title */

.mif-sources-section .mif-src li b {
  color: #000000;
  font-weight: 700;
}


/* ---------------------------------------------------------
   Disclaimer
   --------------------------------------------------------- */

.mif-sources-section .mif-disclaimer {
  position: relative;

  margin-top: 50px;
  padding: 30px 35px 30px 38px;

  color: #000000;

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

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.18);
  border-left: 4px solid #e97136;
}


/* Disclaimer top label */

.mif-sources-section .mif-disclaimer::before {
  content: "";

  position: absolute;
  top: -1px;
  left: 38px;

  width: 55px;
  height: 3px;

  background: #e97136;
}


/* Disclaimer heading */

.mif-sources-section .mif-disclaimer b {
  display: block;

  margin-bottom: 10px;

  color: #e97136;

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

}


/* ---------------------------------------------------------
   Tablet
   --------------------------------------------------------- */

@media (max-width: 991.98px) {

  .mif-sources-section {
    padding: 80px 0;
  }

  .mif-sources-section .mif-h2 {
    font-size: 38px;
    margin-bottom: 45px !important;
  }

  .mif-sources-section .mif-src li {
    padding: 24px 25px 24px 48px;
  }

  .mif-sources-section .mif-src li:hover {
    padding-left: 53px;
  }

  .mif-sources-section .mif-src li::before {
    left: 17px;
    top: 31px;
  }

  .mif-sources-section .mif-disclaimer {
    margin-top: 40px;
    padding: 27px 28px 27px 30px;
  }

}


/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 767.98px) {

  .mif-sources-section {
    padding: 65px 0;
  }

  .mif-sources-section::before {
    width: 150px;
    height: 150px;
  }

  .mif-sources-section::after {
    width: 100px;
    height: 100px;
  }

  .mif-sources-section .mif-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    padding-left: 32px;
  }

  .mif-sources-section .mif-eyebrow::before {
    width: 21px;
  }

  .mif-sources-section .mif-h2 {
    margin-top: 15px;
    margin-bottom: 35px !important;

    font-size: 31px;
    line-height: 1.18;
    letter-spacing: -0.8px;
  }

  .mif-sources-section .mif-src li {
    padding: 21px 15px 21px 38px;

    font-size: 14px;
    line-height: 1.7;
  }

  .mif-sources-section .mif-src li:hover {
    padding-left: 42px;
  }

  .mif-sources-section .mif-src li::before {
    left: 13px;
    top: 27px;

    width: 7px;
    height: 7px;
  }

  .mif-sources-section .mif-disclaimer {
    margin-top: 32px;
    padding: 24px 20px 24px 23px;

    font-size: 12.5px;
    line-height: 1.7;
  }
}