.kit-section {
  .kit-section-body,
  &.kit-section-body {
    padding: var(--space-64) 100px;
  }

  .kit-section-title {
    color: var(--grey-1);
    font-size: var(--font-48); /* old value: --font-48 */
    font-weight: var(--font-weight-700);
    margin-bottom: var(--space-16);
  }

  .kit-section-description {
    color: var(--grey-3);
    font-size: var(--font-24);
    font-weight: var(--font-weight-500); /* old value: --font-weight-600 */
    line-height: 150%; /* 36px */
    margin-bottom: var(--space-48);
  }
}
.kit-landing-page-accordion {
  padding: 0;
  margin: 0;

  &.kit-landing-page-accordion-columns-2-md {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }

  .kit-landing-page-accordion-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-32);
    padding: var(--space-16) var(--space-32);
    border-radius: 12px;
    cursor: pointer;

    &.expanded {
      background-color: var(--white);
      box-shadow: var(--box-shadow-2);
      margin-bottom: var(--space-16);

      .kit-landing-page-accordion-item-icon {
        .plus-icon-bar-1 {
          transform: rotate(90deg);
        }

        /* .plus-icon-bar-2 {
          transform: rotate(180deg);
        } */
      }

      /* .kit-landing-page-accordion-item-header {
        .kit-landing-page-accordion-item-title {
          color: var(--grey-1);
        }
      } */
    }

    .kit-landing-page-accordion-item-content {
      width: 100%;
    }

    .kit-landing-page-accordion-item-icon {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;

      .plus-icon-bar-1,
      .plus-icon-bar-2 {
        position: absolute;
        height: 4px;
        width: 24px;
        background-color: var(--orange-0);
        border-radius: 4px;
        transition: all 0.3s ease-in-out;
      }
    }

    .kit-landing-page-accordion-item-header {
      .kit-landing-page-accordion-item-title {
        align-self: stretch;
        color: var(--grey-1);
        font-size: var(--font-32); /* old value: --font-36 */
        font-weight: var(--font-weight-600);
        line-height: 150%; /* 48px */
        margin: 0;
        transition: all 0.3s ease-in-out;
      }
    }

    .kit-landing-page-accordion-item-body {
      height: 0;
      overflow: hidden;
      transition: all 0.3s ease-in-out;

      .kit-landing-page-accordion-item-description {
        align-self: stretch;
        color: var(--grey-3);
        font-size: var(--font-24);
        font-weight: var(--font-weight-400);
        line-height: 150%; /* 36px */
        transition: all 0.3s ease-in-out;
      }
    }
  }
}

.kit-data-table-container {
  /* search input */
  & input[type="search"] {
    font-size: var(--font-24) !important;
    font-weight: var(--font-weight-600);
    font-family: var(--font-family);
    color: var(--orange-0) !important;
    padding: var(--space-8) var(--space-16);
    border-radius: var(--space-8);
    border: 2px solid var(--orange-0) !important;
    background-color: var(--orange-6) !important;
    transition: all 0.3s ease-in-out;

    /* placeholder color & font-family */
    &::placeholder {
      color: var(--orange-0);
      font-family: var(--font-family);
    }

    &:focus {
      border-color: var(--baby-blue-2);
    }
  }

  & table {
    & thead {
      display: none;
    }

    & tbody {
      tr {
        transition: 0.3s all ease-in-out;
        background-color: var(--white);

        & td {
          font-size: var(--font-16) !important;
          font-family: var(--font-family);
          font-weight: var(--font-weight-400);
          border: none !important;
          padding: 1.4rem 1rem !important;
          transition: 0.3s all ease-in-out;
        }

        /* bold 2nd column */
        & td:nth-child(2) {
          font-size: var(--font-16) !important;
          font-weight: var(--font-weight-600);
        }

        /* border radius for first and last column */
        & td:first-child {
          border-top-left-radius: 12px;
          border-bottom-left-radius: 12px;
        }

        & td:last-child {
          text-align: right;
          border-top-right-radius: 12px;
          border-bottom-right-radius: 12px;

          & button {
            font-size: var(--font-16) !important;
            font-weight: var(--font-weight-400) !important;
            margin-right: 0 !important;
            margin-left: auto !important;
          }
        }

        &:hover {
          & td {
            background-color: var(--baby-blue-5) !important;
          }
        }
      }

      /* Alternate background color for each row */
      & tr:nth-child(odd) {
        & td {
          background-color: var(--grey-6);
        }
      }
    }
  }
}

/* Media-query for databales (md screen) */
@media (max-width: 959px) {
  .kit-data-table-container {
    #applications_filter {
      float: none !important;

      & label {
        width: 100% !important;
      }
    }
    & input[type="search"] {
      font-size: var(--font-16) !important;
      padding: var(--space-8) var(--space-16);
      width: 100%;
      margin: 0 !important;
    }

    & table {
      & tbody {
        tr {
          & td {
            font-size: var(--font-14) !important;
            padding: 1.2rem 1rem !important;
          }
        }
      }
    }
  }
}

/* Navbar */
#navbar {
  --border-color: rgba(247, 246, 241, 0.2);

  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: 60px;
  width: 100%;
  padding: 0 100px;
  transition: 0.5s all ease-in-out;

  &.kit-navbar-scrolled {
    background-color: var(--white);
    box-shadow: var(--box-shadow);

    .kit-navbar-brand {
      & a {
        .brand-name {
          color: var(--grey-1) !important;
        }
      }
    }

    .kit-navbar-menu {
      & li.kit-navbar-menu-item {
        & a {
          color: var(--grey-2) !important;
        }

        &.active {
          &::before {
            background-color: var(--grey-1) !important;
          }

          & a {
            color: var(--grey-1) !important;
          }
        }
      }
    }
  }

  .kit-navbar-brand {
    height: 60px;
    cursor: pointer;
    border-right: 1px solid var(--border-color);

    & a {
      display: grid;
      grid-template-columns: auto 210px;
      align-items: center;
      text-decoration: none;
      padding: var(--space-8);
      height: 100%;

      & img {
        height: 40px;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
      }

      .brand-name {
        color: var(--grey-5);
        font-size: var(--font-16);
        font-weight: var(--font-weight-600, 600);
        max-width: 210px;
        line-height: 1;
      }
    }
  }

  .kit-navbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 60px;

    &.kit-navbar-menu-middle {
      justify-content: flex-start;
    }
    &.kit-navbar-menu-right {
      justify-content: flex-end;
    }

    & li.kit-navbar-menu-item {
      position: relative;
      display: flex;
      align-items: center;
      height: 100%;

      &.active {
        &::before {
          content: "";
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          height: 6px;
          width: 60%;
          border-top-left-radius: 6px;
          border-top-right-radius: 6px;

          background-color: var(--white);
        }

        & a {
          color: var(--white) !important;
        }
      }

      & a {
        display: block;
        font-size: var(--font-16);
        font-weight: var(--font-weight-600);
        padding: 10px 15px;
        color: var(--grey-4);
        text-decoration: none;
        transition: color 0.3s ease-in-out;

        .icon {
          width: var(--space-16);
          margin-right: var(--space-8);
        }

        &:hover {
          color: var(--white);
        }
      }
    }

    .sign-in-btn,
    .my-portal-btn {
      font-size: var(--font-16);
      background-color: var(--orange-0) !important;
      color: var(--grey-1);
      /* height: 100%; */
      /* border-radius: 0; */
    }
  }
}

#navbar-offcanvas {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  padding: var(--space-16) !important;

  &.kit-navbar-offcanvas-open {
    display: block !important;
  }

  #nav-navbar-offcanvas {
    position: relative;
    background: rgb(0, 0, 0);
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(0, 0, 0, 0.9500175070028011) 70%,
      rgba(0, 0, 0, 0.8995973389355743) 100%
    );
    height: 100%;
    border-radius: 12px;
    padding: var(--space-32) !important;

    .kit-navbar-brand {
      height: 60px;
      cursor: pointer;
      border-right: 1px solid var(--border-color);
      margin-bottom: var(--space-32) !important;

      & a {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        text-decoration: none;
        padding: var(--space-8);
        height: 100%;

        & img {
          height: 40px;
          -o-object-fit: contain;
          object-fit: contain;
          -o-object-position: center;
          object-position: center;
        }

        .brand-name {
          color: var(--grey-5);
          font-size: var(--font-16);
          font-weight: var(--font-weight-600, 600);
          max-width: 210px;
          line-height: 1;
        }
      }
    }

    .kit-navbar-menu {
      display: block;
      margin: 0;
      padding: 0;
      list-style: none;

      & li.kit-navbar-menu-item {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        border-radius: 6px;
        margin-bottom: var(--space-16) !important;

        &.active {
          background-color: var(--white);
          a {
            color: var(--grey-1) !important;
          }
        }

        & a {
          display: block;
          font-size: var(--font-16);
          font-weight: var(--font-weight-600);
          padding: 10px 15px;
          color: var(--grey-4);
          text-decoration: none;
          transition: color 0.3s ease-in-out;

          .icon {
            width: 30px;
            margin-right: var(--space-16);
          }

          &:hover {
            color: var(--white);
          }
        }
      }

      .sign-in {
        font-size: var(--font-16);
        /* background-color: var(--orange-0); */
        a {
          color: var(--orange-0) !important;
        }
      }
    }

    #btn-navbar-offcanvas-close {
      position: absolute;
      top: var(--space-16);
      right: var(--space-16);
      color: var(--white);
      font-size: var(--font-14);

      display: flex;
      justify-content: center;
      align-items: center;

      width: 40px !important;
      height: 40px !important;
      line-height: 40px !important;
      text-align: center !important;
      border-radius: 50%;

      background-color: rgba(250, 250, 250, 0.2);
    }
  }
}

/* Header */
#header-section {
  position: relative;
  background: url("https://images.pexels.com/photos/17182890/pexels-photo-17182890/free-photo-of-wind-turbines-on-the-coast-of-a-sea.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1")
    no-repeat center center;
  background-size: cover;
  height: 50vh;
  width: 100%;

  .header-bg-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    pointer-events: none;
  }

  .social-media-links {
    /* position */
    position: fixed;
    top: 50%;
    left: var(--space-8);
    transform: translateY(-50%);
    /* layout */
    display: inline-flex;
    padding: var(--space-4) var(--space-8);
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    border-radius: 8px;
    /* style */
    background-color: var(--white);
    box-shadow: var(--box-shadow-2);
    z-index: 10;

    & a {
      /* layout */
      display: flex;
      justify-content: center;
      align-items: center;
      width: 42px;
      height: 42px;
      /* style */
      color: var(--grey-1);
      text-align: center;
      font-size: var(--font-16);
      /* animation */
      transition: color 0.3s ease-in-out;

      &:hover {
        color: var(--grey-1);
      }

      /* border bottom if not last child */
      &:not(:last-child) {
        border-bottom: 1px solid var(--grey-4);
      }
    }
  }

  .header-content {
    /* position */
    position: relative;
    z-index: 1;
    /* layout */
    display: block;
    height: 100%;
    width: 100%;

    .header-content-center {
      /* padding: var(--space-64); */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      height: 100%;

      .header-title {
        color: var(--white);
        font-size: var(--font-80);
        font-weight: var(--font-weight-700);
        line-height: normal;
        text-transform: capitalize;
        text-align: center;
        margin: 0;
        max-width: 80vw;
      }

      .header-description {
        color: var(--white);
        font-size: 20px;
        font-weight: var(--font-weight-500);
        line-height: 150%;
        /* 37.5px */
        max-width: 30vw;
      }

      .header-btn {
        font-size: var(--font-16);
        height: 100%;
        border-radius: 0;
      }
    }
  }
}

/* About ECB */
#about-ecb-section {
  .about-ecb-card {
    position: relative;

    display: grid;
    grid-template-columns: 3fr 1fr;
    padding: var(--space-32);
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(
      90deg,
      #fcb81b 54.5%,
      rgba(254, 247, 232, 0) 166.27%
    );
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);

    .about-ecb-card-left {
      .text {
        color: var(--grey-1);
        font-size: 24px;
        font-style: normal;
        font-weight: var(--font-weight-400);
        line-height: 120%; /* 28.8px */
        margin: 0;
        margin-bottom: var(--space-32);
      }
      .author {
        color: var(--grey-1);
        font-size: 24px;
        font-style: italic;
        font-weight: var(--font-weight-700);
        line-height: 120%;
        margin: 0;
      }
    }

    .about-ecb-card-right {
      .about-ecb-card-bg {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        z-index: -1;

        & img {
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
          object-fit: cover;
          -o-object-position: center;
          object-position: center;
        }

        &::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          width: 100%;
          background-color: rgba(0, 0, 0, 0.5);
          z-index: 0;
        }
      }

      .ecb-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        align-self: stretch;

        & img {
          height: 100%;
          min-width: 200px;
          width: 333px;
          height: 260px; 
          flex-shrink: 0;
          -o-object-fit: contain;
          object-fit: contain;
          -o-object-position: center;
          object-position: center;
        }
      }
    }
  }
}

/* License Types */
#license-types-section {
  /* border-top: 1px solid var(--grey-4); */
  border-bottom: 1px solid var(--grey-4);
}

/* Processes */
#processes-section {
  width: 100%;

  .process-content {
    position: relative;
    width: 100%;

    .process-item-content {
      display: none;
      grid-template-columns: 1fr 4fr;
      gap: var(--space-32);
      margin-bottom: var(--space-32);
      width: 100%;
      transition: all 0.3s ease-in-out;

      &.active {
        display: grid;
      }

      .process-stats {
        .process-stats-item {
          margin-bottom: var(--space-32);

          .process-stats-item-title {
            position: relative;

            .item-title {
              color: var(--grey-1);
              font-size: var(--font-24);
              font-style: normal;
              font-weight: var(--font-weight-600);
              line-height: 150%; /* 96px */
              margin: 0;
            }

            .v-border-left {
              position: absolute;
              top: 0;
              left: calc(-1 * var(--space-16));
              height: 100%;
              width: 7px;
              background: var(--grey-1);
            }
          }

          .item-description {
            color: var(--grey-3);
            font-size: var(--font-18);
            font-style: normal;
            font-weight: var(--font-weight-400);
            line-height: 150%; /* 27px */
            margin: 0;
          }
        }
      }

      .process-details {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
        width: 100%;
        padding: var(--space-16) var(--space-32);
        gap: var(--space-32);

        border-radius: 12px;
        background: var(--white);
        box-shadow: var(--box-shadow-2);

        .process-title {
          color: var(--grey-1);
          font-size: var(--font-36);
          font-style: normal;
          font-weight: var(--font-weight-600);
          line-height: 150%; /* 36px */
          margin: 0;
        }

        .process-flow-image {
          height: 100%;
          max-height: 60vh;
          width: 100%;

          & img {
            height: 100%;
            width: 100%;
            -o-object-fit: contain;
            object-fit: contain;
            -o-object-position: center;
            object-position: center;
          }
        }
      }
    }
  }

  .process-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-16);
    padding: 0;
    margin: 0;

    .process-list-item {
      position: relative;
      display: flex;
      padding: var(--space-16);
      flex-direction: column;
      justify-content: center;
      border: 2px dashed var(--grey-4);
      background: var(--white);
      transition: all 0.3s ease-in-out;
      cursor: pointer;

      &:hover {
        border: 2px dashed var(--grey-1);

        .process-list-item-title,
        .process-list-item-description {
          color: var(--grey-1) !important;
        }
      }

      &.active {
        .switch-timeout-progress {
          display: block;
        }
        .process-list-item-title,
        .process-list-item-description {
          color: var(--grey-1);
        }
      }

      .switch-timeout-progress {
        position: absolute;
        display: none;
        top: -3px;
        left: 0;
        width: 100%;
        height: 4px;

        .switch-timeout-progress-bar {
          height: 100%;
          width: 10%;
          background: var(--grey-1);
        }
      }

      .process-list-item-title {
        color: var(--grey-3);
        font-size: var(--font-24);
        font-style: normal;
        font-weight: var(--font-weight-600);
        line-height: 150%; /* 36px */
        margin: 0;
        transition: all 0.3s ease-in-out;
      }
      .process-list-item-description {
        color: var(--grey-3);
        font-size: 18px;
        font-style: normal;
        font-weight: var(--font-weight-400);
        line-height: 150%; /* 27px */
        margin: 0;
        transition: all 0.3s ease-in-out;
      }
    }
  }
}

/* FAQ */
#faq-section {
  border-top: 1px solid var(--grey-4);
  border-bottom: 1px solid var(--grey-4);
  background: var(--grey-6);
}

/* Map: Head Office */
#map-section {
  position: relative;
  border-top: 1px solid var(--grey-4);

  #head-office-location-map {
    height: 800px;
    width: 100%;
  }

  .head-office-location-card-container {
    position: absolute;
    top: 0;
    left: 0;

    .head-office-location-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      padding: var(--space-16);
      border-radius: 12px;
      width: fit-content;
      max-width: 694px;
      /* style */
      background: var(--white);
      box-shadow: var(--box-shadow-2);

      .head-office-location-card-header {
        position: relative;

        .card-title {
          color: var(--grey-1);
          font-size: var(--font-36);
          font-weight: var(--font-weight-600);
          line-height: 150%; /* 48px */
          margin: 0;
        }

        .v-border-left {
          position: absolute;
          top: 0;
          left: calc(-1 * var(--space-16));
          height: 100%;
          width: 7px;
          background: var(--grey-1);
        }
      }

      .head-office-location-card-body {
        .card-description {
          display: flex;
          padding: 8px 0px;
          align-items: center;
          gap: 10px;
          align-self: stretch;
          color: var(--grey-3);
          font-size: var(--font-24);
          font-weight: var(--font-weight-400);
          line-height: 150%; /* 36px */
          margin: 0;
          text-decoration: none; /* a tags */
        }
      }
    }
  }
}

/* Contact Us */
#contact-us-section {
  position: relative;

  .contact-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: -1;

    img {
      height: 100%;
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      -o-object-position: center;
      object-position: center;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.85);
      z-index: 0;
    }
  }

  .kit-section-body {
    .kit-section-title,
    .kit-section-description {
      color: var(--white);
    }

    .contact-us-link {
      display: flex;
      align-items: center;
      padding: 10px var(--space-32);
      gap: var(--space-32);
      flex: 1 0 0;
      border-radius: 12px;
      /* style */
      background: var(--white);
      box-shadow: var(--box-shadow-2);
      width: fit-content;

      .icon {
        color: var(--grey-1);
      }

      .link-text {
        color: var(--grey-1);
        font-size: var(--font-24);
        font-weight: var(--font-weight-600);
      }

      .link-img {
        width: 120px;
        height: 94px;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
      }
    }
  }
}

/* Footer */
#footer {
  position: relative;
  width: 100%;
  text-align: center;
  background: var(--grey-1);

  .footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-16);
    margin: 0;
    padding: 0;
    width: 100%;

    .footer-nav-item {
      list-style: none;

      & a {
        display: flex;
        padding: 12px var(--space-16);
        align-items: center;
        gap: var(--space-8);

        color: var(--white);
        font-size: var(--font-16);
        font-weight: var(--font-weight-600);
        text-decoration: none;
      }
    }
  }
}

/* License objections modal */
#objection-create-modal {
  /* File upload input */
  #support-documents {
    display: none; /* Hide the input */
  }
  /* Quill editor */
  #editor {
    height: fit-content;
    max-height: 100%;
  }
}

@media (max-width: 1199px) {
  .kit-section {
    .kit-section-body,
    &.kit-section-body {
      padding: var(--space-32) 10% !important;
    }

    .kit-section-title {
      font-size: var(--font-32) !important;
      margin-bottom: var(--space-16) !important;
    }

    .kit-section-description {
      font-size: var(--font-16) !important;
      margin-bottom: var(--space-32) !important;
    }
  }

  .kit-landing-page-accordion {
    &.kit-landing-page-accordion-columns-2-md {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-16);
    }

    .kit-landing-page-accordion-item {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: var(--space-16);
      padding: var(--space-8) var(--space-8);
      border-radius: 12px;
      cursor: pointer;

      .kit-landing-page-accordion-item-icon {
        .plus-icon-bar-1,
        .plus-icon-bar-2 {
          height: 2px !important;
          width: 10px !important;
        }
      }

      .kit-landing-page-accordion-item-header {
        .kit-landing-page-accordion-item-title {
          font-size: var(--font-18); /* old value: --font-36 */
        }
      }
      .kit-landing-page-accordion-item-body {
        width: 100%;

        .kit-landing-page-accordion-item-description {
          font-size: var(--font-16);
        }
      }
    }
  }

  #navbar {
    padding: 0 10% !important;

    .kit-navbar-menu-middle {
      display: none !important;
    }

    &.kit-navbar-scrolled {
      #btn-toggle-navbar {
        color: var(--grey-1) !important;
      }
    }

    .sign-in-btn,
    .my-portal-btn {
      display: none !important;
    }
    #btn-toggle-navbar {
      color: var(--white);
    }
  }

  #header-section {
    .header-content {
      display: flex !important;
      align-items: center !important;

      .header-content-left {
        display: flex;
        flex-direction: column;
        align-items: middle;
        justify-content: center;
        overflow: hidden;

        .header-title {
          font-size: var(--font-48) !important;
          margin-bottom: var(--space-32);
          max-width: 100% !important;
        }

        .header-description {
          font-size: var(--font-16) !important;
          line-height: 150%; /* 37.5px */
          max-width: 100% !important;
        }

        .header-btn {
          font-size: var(--font-16);
          height: 100%;
          border-radius: 0;
        }
      }

      .header-content-right {
        display: none !important;
      }
    }
  }

  #about-ecb-section {
    .about-ecb-card {
      position: relative;

      display: grid;
      grid-template-columns: 1fr;
      padding: var(--space-32);
      flex-shrink: 0;
      border-radius: 12px;
      background: linear-gradient(
        90deg,
        #fcb81b 54.5%,
        rgba(254, 247, 232, 0) 166.27%
      );
      box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);

      .about-ecb-card-left {
        .text {
          font-size: var(--font-16) !important;
          color: var(--grey-1);
          font-style: normal;
          font-weight: var(--font-weight-400);
          line-height: 120%; /* 28.8px */
          margin: 0;
          margin-bottom: var(--space-32);
        }
        .author {
          font-size: var(--font-16) !important;
          color: var(--grey-1);
          font-style: italic;
          font-weight: var(--font-weight-700);
          line-height: 120%;
          margin: 0;
        }
      }

      .about-ecb-card-right {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        .about-ecb-card-bg {
          position: absolute;
          top: 0;
          right: 0;
          height: 100%;
          width: 100%;
          border-radius: 12px;
          overflow: hidden;
          z-index: -1;

          & img {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            -o-object-position: center;
            object-position: center;
          }

          &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 0;
          }
        }

        .ecb-logo {
          display: none !important;
          justify-content: center;
          align-items: center;
          flex-shrink: 0;
          align-self: stretch;

          & img {
            height: 100%;
            /* min-width: 200px; */
            /* width: 333px;
          height: 260px; */
            flex-shrink: 0;
            -o-object-fit: contain;
            object-fit: contain;
            -o-object-position: center;
            object-position: center;
          }
        }
      }
    }
  }

  #processes-section {
    width: 100%;

    .process-content {
      position: relative;
      width: 100%;

      .process-item-content {
        display: none;
        grid-template-columns: 1fr !important;
        gap: var(--space-16);
        margin-bottom: var(--space-16);
        width: 100%;
        transition: all 0.3s ease-in-out;

        &.active {
          display: grid;
        }

        .process-stats {
          .process-stats-item {
            margin-bottom: var(--space-32);

            .process-stats-item-title {
              position: relative;

              .item-title {
                font-size: var(--font-18) !important;
              }

              .v-border-left {
                position: absolute;
                top: 0;
                left: calc(-1 * var(--space-16));
                height: 100%;
                width: 7px;
                background: var(--grey-1);
              }
            }

            .item-description {
              font-size: var(--font-16) !important;
              color: var(--grey-3);
              font-style: normal;
              font-weight: var(--font-weight-400);
              line-height: 150%; /* 27px */
              margin: 0;
            }
          }
        }

        .process-details {
          display: flex;
          flex-direction: column;
          justify-content: center;
          /* align-items: center; */
          width: 100%;
          padding: var(--space-16) var(--space-32);
          gap: var(--space-32);

          border-radius: 12px;
          background: var(--white);
          box-shadow: var(--box-shadow-2);

          .process-title {
            color: var(--grey-1);
            font-size: var(--font-36);
            font-style: normal;
            font-weight: var(--font-weight-600);
            line-height: 150%; /* 36px */
            margin: 0;
          }

          .process-flow-image {
            height: 100%;
            max-height: 60vh;
            width: 100%;

            & img {
              height: 100%;
              width: 100%;
              -o-object-fit: contain;
              object-fit: contain;
              -o-object-position: center;
              object-position: center;
            }
          }
        }
      }
    }

    .process-list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: var(--space-16);
      padding: 0;
      margin: 0;

      .process-list-item {
        position: relative;
        display: flex;
        padding: var(--space-16);
        flex-direction: column;
        justify-content: center;
        border: 2px dashed var(--grey-4);
        background: var(--white);
        transition: all 0.3s ease-in-out;
        cursor: pointer;

        &:hover {
          border: 2px dashed var(--grey-1);

          .process-list-item-title,
          .process-list-item-description {
            color: var(--grey-1) !important;
          }
        }

        &.active {
          .switch-timeout-progress {
            display: block;
          }
          .process-list-item-title,
          .process-list-item-description {
            color: var(--grey-1);
          }
        }

        .switch-timeout-progress {
          position: absolute;
          display: none;
          top: -3px;
          left: 0;
          width: 100%;
          height: 4px;

          .switch-timeout-progress-bar {
            height: 100%;
            width: 10%;
            background: var(--grey-1);
          }
        }

        .process-list-item-title {
          color: var(--grey-3);
          font-size: var(--font-24);
          font-style: normal;
          font-weight: var(--font-weight-600);
          line-height: 150%; /* 36px */
          margin: 0;
          transition: all 0.3s ease-in-out;
        }
        .process-list-item-description {
          color: var(--grey-3);
          font-size: 18px;
          font-style: normal;
          font-weight: var(--font-weight-400);
          line-height: 150%; /* 27px */
          margin: 0;
          transition: all 0.3s ease-in-out;
        }
      }
    }
  }

  #map-section {
    position: relative;
    border-top: 1px solid var(--grey-4);

    #head-office-location-map {
      height: 800px;
      width: 100%;
    }

    .head-office-location-card-container {
      position: absolute;
      top: 0;
      left: 0;

      .head-office-location-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: var(--space-16);
        border-radius: 12px;
        width: fit-content;
        max-width: 694px;
        /* style */
        background: var(--white);
        box-shadow: var(--box-shadow-2);
        margin-top: var(--space-32) !important;

        .head-office-location-card-header {
          position: relative;

          .card-title {
            color: var(--grey-1);
            font-size: var(--font-32) !important;
          }
        }

        .head-office-location-card-body {
          .card-description {
            font-size: var(--font-16) !important;
          }
        }
      }
    }
  }

  /* Contact Us */
  #contact-us-section {
    position: relative;

    .contact-us-bg {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      pointer-events: none;
      z-index: -1;

      img {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
      }

      &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        z-index: 0;
      }
    }

    .kit-section-body {
      .kit-section-title,
      .kit-section-description {
        color: var(--white);
      }

      .contact-us-link {
        padding: var(--space-8) var(--space-16) !important;
        display: flex;
        align-items: center;
        gap: var(--space-32);
        flex: 1 0 0;
        border-radius: 12px;
        /* style */
        background: var(--white);
        box-shadow: var(--box-shadow-2);
        width: fit-content;

        .icon {
          color: var(--grey-1);
        }

        .link-text {
          font-size: var(--font-16) !important;
          color: var(--grey-1);
          font-weight: var(--font-weight-600);
        }

        .link-img {
          width: 80px !important;
          height: 62px !important;
          -o-object-fit: contain;
          object-fit: contain;
          -o-object-position: center;
          object-position: center;
        }
      }
    }
  }

  #footer {
    .footer-nav {
      padding: var(--space-16) 0;
      flex-wrap: wrap !important;
      gap: var(--space-8) !important;

      .footer-nav-item {
        list-style: none;

        & a {
          padding: var(--space-8) !important;
          text-align: center;
        }
      }
    }
  }
}
