.software-consulting {
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  .landing-asset {
    position: absolute;
    top: 50%;
    transform: translate(0,-68%);

    img {
      width: 1500px;
      height: 1500px;
      @media screen and (max-width: 1470px){
          opacity: 0.2;
        }
    }

    @media screen and (max-width: 1200px) {
      display: none;
    }
  }

  .left-asset {
    left: -1390px;
  }

  .right-asset {
    right: -1390px;
  }

  .landing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* min-height: 70vh; */
    padding: 100px 20px 70px 20px;
    position: relative;
    /* overflow: hidden; */


    @media screen and (max-width: 576px) {
      padding-top: 40px;
      padding-bottom: 40px;
    }

    .landing-asset {
      position: absolute;
      top: 50%;
      transform: translate(0,-68%);

      img {
        width: 1500px;
        height: 1500px;
        @media screen and (max-width: 1470px){
          opacity: 0.2;
        }
      }

      @media screen and (max-width: 1200px) {
        display: none;
      }
    }


    .left-asset {
      left: -1390px;
      top: -10%;
    }

    .right-asset {
      right: -1390px;
      top: 45%;
    }

    .tech-consultation-section {
      margin-top: 10px;

      h6 {
        font-size: 20px;
      }
    }

    .tech-row {
      display: flex;
      flex-direction: row;
      gap: 10px;
      margin-top: 20px;

      @media screen and (max-width: 992px) {
        flex-direction: column;
        gap: 0px;
      }
    }

    .tech-cell:first-child {
      @media screen and (max-width: 992px) {
        padding-top: 0px;
      }
    }

    .tech-cell {
      padding-right: 40px;

      @media screen and (max-width: 992px) {
        padding-top: 20px;
        padding-bottom: 20px;
      }

      h5 {
        font-size: 32px;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 0px !important;
      }

      span {
        font-size: 18px !important;
        color: var(--primary-fill) !important;
        font-weight: 500 !important;
      }

    }

    .tech-cell + .tech-cell {
      padding-left: 40px;
      border-left: 1px solid var(--primary-grey);

      @media screen and (max-width: 992px) {
        border-left: none;
        border-top: 1px solid var(--primary-grey);
        padding-left: 0px;
      }
    }

    .landing-section {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      flex: 1;

      .landing-span {
        font-size: 24px;
        font-weight: 500;
        color: var(--primary-purple) ;

        @media screen and (max-width: 992px) {
          font-size: 20px;
        }

        @media screen and (max-width: 576px) {
          font-size: 18px;
        }
      }

      .primary-button{
        margin-top: 16px;
      }

      h1, h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 50px;

        @media screen and (max-width: 992px) {
          font-size: 40px;
        }

        @media screen and (max-width: 576px) {
          font-size: 32px;
        }
      }

      p {
        font-size: 20px;

        @media screen and (max-width: 576px) {
          font-size: 16px;
        }
      }

      h3, p {
        margin: 0;
      }

      .image-controller {

        display: flex;
        justify-content: center;

        img {
          width: 280px;
          height: 280px;
          object-fit: contain;

          @media screen and (max-width: 576px) {
            width: 250px;
            height: 250px;
          }
        }
      }
    }
  }

  .delivery-team {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    position: relative;

    @media screen and (max-width: 576px) {
      padding-top: 40px;
      padding-bottom: 60px;
    }

    .team-container {
      background-color: var(--primary-fill);
      padding: 80px;
      border-radius: 20px;
      position: relative;

      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 80px;
      height: 820px;

      @media screen and (max-width: 576px) {
        padding: 32px;
      }
    }

    .team-container-header {
      max-width: 960px;
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      color: var(--primary-white);

      @media screen and (max-width: 992px) {
        flex-direction: column;
        max-width: none;
        gap: 32px;
        align-items: flex-start;
      }

      .text-content {
        width: 100%;
        max-width: 500px;

        display: flex;
        flex-direction: column;
        gap: 32px;

        @media screen and (max-width: 992px) {
          gap: 16px;
        }

        span {
          font-size: 18px;
        }

        h4 {
          font-family: 'Space Grotesk', sans-serif;
          font-weight: 700;
          font-size: 44px;

          @media screen and (max-width: 992px) {
            font-size: 36px;
          }

          @media screen and (max-width: 576px) {
            font-size: 32px;
          }
        }
      }

      img {
        width: 190px;
        height: 190px;
        object-fit: contain;

        @media screen and (max-width: 576px) {
          width: 120px;
          height: 120px;
        }
      }
    }

    .team-members {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 60px;
      width: 100%;
      position: relative;

      margin-top: -460px;

      @media screen and (max-width: 992px) {
        flex-direction: column;
        align-items: center;
        margin-top: -300px;
        gap: 32px;
      }

      @media screen and (max-width: 576px) {
        margin-top: -360px;
      }
    }

    .team-card {
      width: 100%;
      max-width: 450px;
      padding: 50px 64px;
      background-color: var(--primary-white);
      border-radius: 20px;

      display: flex;
      flex-direction: column;
      gap: 24px;

      .text-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;

        @media screen and (max-width: 576px) {
          gap: 10px;
        }

        h4 {
          margin: 0;
          font-family: 'Space Grotesk', sans-serif;
          font-weight: 700;
          font-size: 30px;

          @media screen and (max-width: 576px) {
            font-size: 24px;
          }
        }

        .primary-button {
          margin-top: 20px;
        }
      }

    }

    .grey-bg {
      position: absolute;
      left: 50%;
      bottom: 0px;
      transform: translate(-50%);
      width: 100%;
      height: 65%;
      background-color: #f6f6f6;
      z-index: 0;

      @media screen and (max-width: 576px) {
        height: 80%;
      }
    }
  }

  .pricing-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 0px 20px;
    position: relative;
    z-index: 2;
    background-color: #ffffff;

    @media screen and (max-width: 576px) {
      padding-top: 40px;
      padding-bottom: 0px;
    }

    .max-width-controller {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 56px;

      @media screen and (max-width: 576px) {
        gap: 40px;
      }
    }

    h3 {
      font-size: 44px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;

      @media screen and (max-width: 576px) {
        font-size: 24px;
      }
    }

    .pricing-text-container {
      width: 100%;
      max-width: 1050px;

      display: flex;
      flex-direction: column;
      gap: 20px;

      span {
        font-size: 20px;

        @media screen and (max-width: 576px) {
          font-size: 16px;
        }
      }

      @media screen and (max-width: 992px) {
        text-align: left;
        align-items: flex-start;
        gap: 4px;
      }
    }

    .price-card {
      padding: 64px;
      width: 100%;
      background-color: #F6F6F6;
      border-radius: 20px;

      @media screen and (max-width: 992px) {
        padding: 40px;
      }

      @media screen and (max-width: 576px) {
        padding: 32px 20px;
        border-radius: 12px;
      }
    }

    .pricing-attributes {
      border: 1px solid var(--primary-systemGrey);
      background-color: #ffffff;
      border-radius: 20px;
      width: 100%;
      overflow: hidden;
    }

    .price-cell {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 32px 44px;

      img {
        height: 50px;
        width: 50px;

        object-fit: contain;
      }

      h5 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 20px;
        font-weight: 700;
        margin: 0;
        margin-top: 10px;
      }

      p {
        margin: 0;
        font-size: 17px;
      }

      @media screen and (max-width: 768px) {
        border-top: 1px solid var(--primary-systemGrey);
        gap: 4px;
        padding: 24px 32px;
      }
    }

    .price-cell + .price-cell {
      border-left: 1px solid var(--primary-systemGrey);

      @media screen and (max-width: 768px) {
        border-left: none;
      }

      @media screen and (max-width: 992px) {
        border-top: 1px solid var(--primary-systemGrey);
      }
    }

    @media screen and (max-width: 768px) {
      .price-cell:first-child {
        border-top: none;
      }
    }

    @media screen and (min-width: 768px) and (max-width: 992px) {
      .price-cell:nth-child(3) {
        border-left: none;
      }
    }

    .inclusion-point-cell {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 16px;
      text-align: left;

      span {
        font-size: 18px;

        @media screen and (max-width: 768px) {
          font-size: 16px;
        }
      }

      img {
        width: 24px;
        height: 24px;
      }
    }
  }

  .process-section.sc-process-section {
    position: relative;
    flex: 0 0 auto;
    align-self: stretch;
    width: 100%;
    padding: 0;
    background-color: #ffffff;
    overflow: visible;
    z-index: auto;
    isolation: isolate;

    &::before,
    &::after {
      content: '';
      position: absolute;
      width: 1500px;
      height: 1500px;
      background: url('../assets/landing-asset.svg') no-repeat center / contain;
      pointer-events: none;
      z-index: 0;

      @media screen and (max-width: 1470px) {
        opacity: 0.2;
      }

      @media screen and (max-width: 1200px) {
        display: none;
      }
    }

    &::before {
      left: -1390px;
      top: 50%;
      transform: translate(0, -68%);
    }

    &::after {
      right: -1390px;
      top: 45%;
      transform: translate(0, -68%);
    }
  }

  .software-consulting .sc-process-section + .asset-controller {
    position: relative;
    z-index: 2;
    isolation: isolate;
  }

  .sc-process-section .sc-process-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 100px 24px;
    position: relative;
    z-index: 1;
    background-color: transparent;
    box-sizing: border-box;

    @media screen and (max-width: 992px) {
      gap: 48px;
      padding: 80px 20px;
    }

    @media screen and (max-width: 576px) {
      padding: 64px 16px;
    }
  }

  .sc-process-section .sc-process-header {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;

    h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 44px;
      font-weight: 600;
      line-height: 1.15;
      color: #1a1a1a;
      margin: 0;

      @media screen and (max-width: 576px) {
        font-size: 28px;
      }
    }

    .sc-process-header__desc {
      font-size: 18px;
      line-height: 1.65;
      font-weight: 400;
      color: #4a4a4a;
      margin: 0;
      max-width: 720px;

      @media screen and (max-width: 576px) {
        font-size: 16px;
        line-height: 1.6;
      }
    }

    @media screen and (max-width: 992px) {
      text-align: left;
      align-items: flex-start;
      gap: 12px;
    }
  }

  .sc-process-section .sc-process-steps {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 140px;

    @media screen and (max-width: 992px) {
      gap: 112px;
    }

    @media screen and (max-width: 576px) {
      gap: 96px;
    }
  }

  .sc-process-section .sc-process-row {
    position: relative;
    width: 100%;
    max-width: 640px;
    min-height: 0;
    margin: 0 auto;
    padding-top: 108px;
    will-change: transform, opacity;

    @media screen and (min-width: 993px) {
      max-width: 100%;
      padding-top: 120px;
    }

    @media screen and (max-width: 576px) {
      padding-top: 80px;
    }
  }

  .sc-process-section .sc-process-row__content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    width: 100%;

    @media screen and (max-width: 992px) {
      max-width: 100%;
    }

    h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 28px;
      font-weight: 700;
      line-height: 1.2;
      color: #1a1a1a;
      margin: 0;
      padding-right: 88px;

      @media screen and (max-width: 992px) {
        padding-right: 0;
      }

      @media screen and (max-width: 576px) {
        font-size: 22px;
      }
    }

    p {
      font-size: 17px;
      font-weight: 400;
      line-height: 1.65;
      color: #4a4a4a;
      margin: 16px 0 0;

      @media screen and (max-width: 576px) {
        font-size: 16px;
        margin-top: 12px;
      }
    }
  }

  .sc-process-section .sc-process-row__number,
  .sc-process-section .number-section {
    position: absolute;
    right: 0;
    top: -32px;
    height: 320px;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: right top;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    @media screen and (max-width: 1200px) {
      height: 280px;
      top: -24px;
    }

    @media screen and (max-width: 992px) {
      height: 220px;
      top: 100px;
      right: 12%;
      transform: translateX(50%);
      object-position: center top;
    }

    @media screen and (max-width: 576px) {
      height: 180px;
    }
  }

  .sc-process-section .sc-process-row__icon,
  .sc-process-section .icon-cell {
    position: absolute;
    z-index: 5;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: -10px 16px 124px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    img {
      width: 56px;
      height: 56px;
      object-fit: contain;
    }

    @media screen and (max-width: 576px) {
      width: 84px;
      height: 84px;

      img {
        width: 48px;
        height: 48px;
      }
    }
  }

  .sc-process-section .discovery-icon {
    top: -40px;
    right: -10px;
    left: auto;
  }

  .sc-process-section .strategy-icon {
    top: -40px;
    right: -10px;
    left: auto;
  }

  .sc-process-section .implementation-icon {
    top: -40px;
    right: -10px;
    left: auto;
  }

  @media screen and (max-width: 992px) {
    .sc-process-section .discovery-icon,
    .sc-process-section .strategy-icon,
    .sc-process-section .implementation-icon {
      top: 40px;
      right: 0px;
      left: auto;
    }

    .sc-process-section .discovery-icon {
      transform: translateX(28px);
    }

    .sc-process-section .strategy-icon {
      transform: translateX(28px);
    }

    .sc-process-section .implementation-icon {
      transform: translateX(28px);
    }
  }

  @media screen and (max-width: 576px) {
    .sc-process-section .discovery-icon,
    .sc-process-section .strategy-icon,
    .sc-process-section .implementation-icon {
      transform: translateX(16px);
    }

  }

  .asset-controller {
    position: relative;
    background-color: #f6f6f6;
  }

  .landing-asset {
    position: absolute;
    z-index: 0;

    img {
      width: 1500px;
      height: 1500px;
      @media screen and (max-width: 1470px){
          opacity: 0.2;
        }
    }

    @media screen and (max-width: 1200px) {
      display: none;
    }
  }

  .left-asset {
    left: -1390px;
    bottom: 0%;

  }

  .right-asset {
    right: -1390px;
    top: 0%;
  }

  .price-gap {
    gap: 32px;

    @media screen and (max-width: 576px) {
      gap: 20px;
    }
  }

  .cta-input-section {
    text-align: center;

    .divider, .divider-bottom {
      width: 100%;
      border-top: 2px solid var(--primary-grey);
      margin-bottom: 72px;
    }

    .divider-bottom {
      margin-top: 72px;
      margin-bottom: 0px;
    }

    .email-input {
      width: 100%;
      height: 56px;
      border-radius: 8px;
      padding: 16px;
      border: 1px solid var(--primary-grey);
      font-size: 16px;
      background-color: transparent;
    }

    .cta-content {
      width: 100%;

      display: flex;
      flex-direction: column;
      gap: 32px;
      padding-top: 56px;
    }

    .max-width-cta {
      max-width: 810px;
      width: 100%;
      margin: 0 auto;
    }

    .cta-section {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 20px;


      .primary-button {
        width: 100%;
        max-width: 320px;
        justify-content: center;
      }
    }

    @media screen and (max-width: 1500px) {
      .divider {
        display: none;
      }

      .cta-content {
        padding-top: 32px;
      }

    }

    @media screen and (max-width: 768px) {
      .cta-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .primary-button {
        width: 100%;
        max-width: 100% !important;
        height: 56px;
      }
    }
  }
  
  .journey-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: #ffffff;
    overflow-x:hidden;
    border-bottom: 1px solid #C7C7C7;

    @media screen and (max-width: 992px) {
      padding-top: 50px;
      padding-bottom: 70px;
    }

    .journey-title{
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-style: Bold;
      font-size: 50px;

      @media screen and (max-width: 992px) {
        font-size: 40px;
      }

      @media screen and (max-width: 576px) {
        font-size: 38px;
      }
    }

    .content-box {
      padding: 60px 60px;
      background-color: #f6f6f6;
      margin-top: 20px;
      border-radius: 20px;

      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;

      @media screen and (max-width: 576px) {
        padding: 20px ;
        gap: 16px;
        justify-content: flex-start;
      }
    }

    .content-cell {
      padding: 30px 24px !important;
      display: flex;
      flex-direction: row;
      gap: 10px;
      background-color: #F6F6F6;
      border-radius: 12px;

      @media screen and (max-width: 992px) {
        max-width: none;
        width: 100%;
      }

      img {
        width: 55px;
        height: 65px;
        /* object-fit: cover; */

        @media screen and (max-width: 576px) {
          width: 48px;
          height: 48px;
        }
      }

      .card-text {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 400;
        font-size: 20px;
        max-width: 240px;
        line-height: 1.2;

        @media screen and (max-width: 576px) {
          max-width: 100%;
        }
      }

      .card-number {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-style: Bold;
        font-size: 32px;
        vertical-align: bottom;
        line-height: 1.2;
      }
    }
  }

  .product-portfolio-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: white;

    @media screen and (max-width: 992px) {
      padding-top: 60px;
      padding-bottom: 10px;
    }

    @media screen and (max-width: 768px) {
      padding-bottom: 0px;
    }

    @media screen and (max-width: 576px) {
      display: block;
    }

    .portfolio-content-section {

      width: 100%;
      flex: 0 0 auto;
      position: relative;

      .primary-button {
        margin-top: 24px;
      }

      @media screen and (max-width: 1280px) {
        .primary-button {
          display: none;
        }
      }

      @media screen and (max-width: 992px) {
        padding-bottom: 20px;
      }

      h4 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 34px;
        font-weight: 700;
        margin: 0;

        @media screen and (max-width: 576px) {
          font-size: 24px;
        }
      }

      .subtitle {
        margin: 8px 0 0;
        font-size: 20px;
        line-height: 1.25;
        font-weight: 400;
        color: #0F1825;
        font-family: 'Space Grotesk', sans-serif;
      }

      .divider {
        background-color: var(--primary-grey);
        height: 1px;
        width: 100%;
        margin: 15px 0px;
      }

      .content {
        padding-top: 15px;
        width: 90%;

        margin-bottom: 16px;
        padding-left: 4px;
        font-family: 'Lexend', sans-serif;
        font-size: 16px !important;
        font-weight: 400;
        line-height: 1.65;
        color: #0F1825;

        @media screen and (max-width: 992px) {
          width: 100%;
        }

        @media screen and (max-width: 576px) {
          font-size: 16px;
          padding-top: 0px;
        }

        ul {
          padding-top: 0px;

          display: flex;
          flex-direction: column;
          gap: 20px;
          padding-left: 16px;

          @media screen and (max-width: 576px) {
            gap: 10px;
            margin-bottom: 0px
          }
        }

        li {
          /* font-size: 18px; */

          @media screen and (max-width: 576px) {
            font-size: 16px;
          }
        }

        p {
          font-size: 16px;
        }
      }

      @media screen and (min-width: 1280px) {
        max-width: 500px;
      }

      @media screen and (max-width: 576px) {
        .primary-button {
          width: 100%;
          justify-content: center;
        }
      }

      .csd-portfolio-highlights-label {
        margin: 22px 0 10px;
        padding-top: 14px;
        border-top: 1px solid #d9dde3;
        font-size: 14px;
        font-weight: 600;
        color: #2d3442;
        width: 100%;
      }

      .csd-portfolio-highlights-slider {
        width: 100%;
        max-width: 100%;
      }

      /* Slider wrapper — auto-advance only (no manual arrows).
        Sized so 3.5 cards (3 full + a half-peek of the next) are visible:
          max-width = 3.5 × card + 3 × gap = 3.5 × 108 + 3 × 14 = 420px */
      .csd-portfolio-highlights-slider {
        position: relative;
        display: block;
        width: 100%;
        max-width: calc(108px * 3.5 + 14px * 3);
      }

      .csd-portfolio-highlights-slider.has-metrics {
        max-width: 100%;
      }

      .csd-portfolio-highlights-slider.has-metrics .csd-portfolio-highlights-viewport {
        overflow: visible;
      }

      .csd-portfolio-highlights-slider.has-metrics .csd-portfolio-highlights {
        flex-wrap: nowrap;
        gap: 12px;
        transform: none !important;
      }

      .csd-portfolio-highlights-viewport {
        width: 100%;
        overflow: hidden;
        cursor: grab;
        user-select: none;
        touch-action: pan-y;
      }

      .csd-portfolio-highlights-viewport.is-dragging {
        cursor: grabbing;
      }

      /* The actual moving track. `.csd-portfolio-highlights` was the old row class —
        it now plays the role of the slider track, so it must be nowrap. */
      .csd-portfolio-highlights {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        align-items: stretch;
        will-change: transform;
      }

      .csd-portfolio-highlights-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        align-items: stretch;
        will-change: transform;
      }

      .csd-portfolio-highlight {
        flex: 0 0 108px;
        width: 108px;
        height: 108px;
        border-radius: 16px;
        background: #f5f5f5;
        display: grid;
        place-items: center;
        overflow: hidden;
      }

      .csd-portfolio-highlight.is-award {
        padding: 10px;
      }

      .csd-portfolio-highlight.is-metric {
        flex: 0 0 calc((100% - 36px) / 4);
        width: calc((100% - 36px) / 4);
        min-width: 0;
        min-height: auto;
        border-radius: 0;
        background: transparent;
        align-items: flex-start;
        padding: 0;
      }

      .csd-portfolio-highlight-medal, .csd-portfolio-highlight-award {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        line-height: 1;
        text-align: center;
        padding-top: 3px;
      }

      .csd-portfolio-highlight-medal {
        /* background: var(--primary-white);
        box-shadow: 0px 5px 7px 0px #00000017; */
        color: var(--primary-fill);
      }

      .csd-portfolio-highlight-medal .top {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .csd-portfolio-highlight-medal .bottom {
        margin-top: 4px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
      }

      .csd-portfolio-highlight-award {
        background: var(--primary-white);
        box-shadow: 0px 5px 7px 0px #00000017;
      }

      .csd-portfolio-highlight-award .title {
        color: var(--primary-fill);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .csd-portfolio-highlight-award .year {
        margin-top: 5px;
        color: var(--primary-fill);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.04em;
      }

      .csd-portfolio-highlight-metric {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 100%;
        text-align: left;
      }

      .csd-portfolio-highlight-metric-value {
        color: #0F1825;
        font-family: 'Lexend', sans-serif;
        font-size: 24px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: -0.02em;
      }

      .csd-portfolio-highlight-metric-label {
        color: #2d3442;
        font-family: 'Lexend', sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.3;
      }

      .csd-portfolio-highlight.is-text {
        padding: 14px;
      }

      .csd-portfolio-highlight.is-text span {
        color: var(--primary-fill);
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }

      @media screen and (max-width: 992px) {
        .csd-portfolio-highlights-slider {
          max-width: 100%;
        }
      }
    }

    .cta-input-section {
      padding-bottom: 56px;

      .divider {
        margin-bottom: 100px;

        @media screen and (max-width: 1500px) {
          display: unset;
        }
      }

      @media screen and (max-width: 1500px) {
        .divider {
          margin-bottom: 56px;
        }

        .divider-bottom {
          margin-top: 56px;
          margin-bottom: 0px;
        }
      }

      @media screen and (max-width: 992px) {
        .divider {
          margin-bottom: 32px;
        }

        .divider-bottom {
          margin-top: 32px;
          margin-bottom: 0px;
        }
      }

      .divider-bottom {
        margin-bottom: 0px;
        margin-top: 100px;
      }
    }

    .alma-section{
      padding: 80px 0px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid var(--primary-grey);
      position: relative !important;

      @media screen and (max-width: 992px) {
        padding-top: 60px;
        padding-bottom: 60px;
      }

      @media screen and (max-width: 576px) {
        padding-top: 40px;
        padding-bottom: 40px;
      }

    }

    .cma-section {
      padding: 80px 0px;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative !important;
      border-bottom: 1px solid var(--primary-grey);

      .image-portfolio-section-left {
        background-position: right;

        @media screen and (max-width: 576px) {
          margin-top: 24px;
          min-height: 280px;
        }
      }

      .image-section {
        img {
          width: 100%;
          height: 100%;
          max-height: 600px;
          object-fit: contain;
        }

        @media screen and (max-width: 1280px) {
          margin-top: 80px;
        }

        @media screen and (max-width: 992px) {
          margin-top: 30px;
        }
      }

      .floating-logo-controller {
        margin-left: -8px;
      }

      @media screen and (max-width: 992px) {
        padding-top: 60px;
        padding-bottom: 60px;
      }

      @media screen and (max-width: 576px) {
        padding-top: 40px;
        padding-bottom: 40px;
      }
    }

    .no-bottom-border{
      border-bottom: none !important;
    }

    .image-portfolio-section {
        background-image: url('../assets/image_background.svg');
        background-repeat: no-repeat;
        background-size: cover;
        /* background-position: center center; */
        width: 60vw;
        flex: 0 0 auto;

        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding-right: 60px;
        padding-left: 50px;

        .floating-logo-controller {
          margin-left: -100px;

          @-moz-document url-prefix() {
            margin: 0px !important;
            margin-right: 32px !important;
            margin-left: -100px !important;
            margin-top: 90px !important;
          }
        }

        @media screen and (min-width: 1800px) {
          padding-left: 0px;

          .floating-logo-controller {
            margin-left: -100px;

            @-moz-document url-prefix() {
              margin: 0px !important;
              margin-right: -50px !important;
              margin-left: -120px !important;
              margin-top: 90px !important;
            }
          }
        }

        img {
          width: 100%;
          height: 100%;
          object-fit: contain;
          transition: 0.2s;
        }

        /* img:hover {
          transform: scale(106%);
        } */

        @media screen and (max-width: 1280px) {
          width: 100%;
          flex: 1;
          padding-right: 20px;
          background-size: contain;
        }

        @media screen and (max-width: 1280px) {
        }

        @media screen and (max-width: 576px) {
          padding: 0;
          margin-top: 20px;
          min-height: 280px;
        }
    }

    .floating-logo-controller{
      padding: 10px;

      img {
        /* height: 48px !important; */
        min-width: 100px;
      }
    }
  }

  .get-started-section{
    background-color: #ffffff !important;
  }
}
