.home-new {
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  .landing {
    min-height: calc(90vh - 80px);
    position: relative;
    z-index: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0px;

    @media screen and (max-width: 992px) {
      min-height: calc(65vh - 80px);
    }

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

    .max-width-controller {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    .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-section {
      flex: 1;

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

    .attribute-cell {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;

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

    .attribute-row {
      @media screen and (max-width: 576px) {
        width: 280px !important;
      }
    }

    .mobile-justify-wrapper {
      @media screen and (max-width: 576px) {
        display: flex;
        flex-direction: row;
        justify-content: center;
      }
    }

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

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

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

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

      h1 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 72px;
        font-weight: 800;
        margin: 0;

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

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

      p {
        margin: 0;
        font-size: 20px;

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

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

    .link-cell {
      width: 230px;
      height: 76px;
      cursor: pointer;
      border-radius: 8px;

      overflow: hidden;

      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0px 20px;
      transition: 0.3s;
      color: black !important;

      border: solid 2px transparent;
      background: linear-gradient( #fff, #fff) padding-box, linear-gradient(192.7deg, #6438F4, #DD68FF) border-box;

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

    .link-cell::before {
      content: '';
      position: absolute;
      top: 0px;
      right: 0;
      height: 100%;
      width: 0%;
      background: linear-gradient(225deg, #6438F4 12.15%, #DD68FF 100%);
      transition: width 0.3s ease-in-out;
      border-radius: 0 0 5px 5px;
      color: white;
    }

    .link-cell:hover::before {
      width: 100%;
      left: 0;
    }

    .link-cell:hover {
      transform: scale(104%) !important;

      span {
        transition: 0.3s;
        color: white !important;
      }

      img {
        transition: 0.3s;
        -webkit-filter: invert(100%); /* Safari/Chrome */
        filter: invert(100%);
      }

      * {
        position: relative;
        z-index: 1;
      }
    }
  }

  .team-section {
    padding: 100px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid var(--primary-grey);

    .text-container {
      display: flex;
      flex-direction: column;
      gap: 14px;

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

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

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

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

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

      p {
        margin: 0;
        font-size: 20px;
        width: 50%;

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

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

    .member-cell {
      padding: 50px 40px;
      background-color: #f6f6f6;
      height: 100%;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: space-between;
      gap: 30px;

      h3, p {
        margin: 0;
      }

      .member-content {
        gap: 20px;

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

      .image {
        aspect-ratio: 0.88;
        width: 100%;
        height: 100%;
        max-width: 310px;
        margin-bottom: 10px;

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

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

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

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

  .newsletter-section {
    padding: 120px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    h3 {
      margin: 0 !important;
      font-family: "Space Grotesk";
      font-size: 44px;
      font-weight: 700;

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

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

    .desc {
      font-size: 20px;

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

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

    .form-controller {
      width: 100%;
      max-width: 640px;

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

      .form-control {
        height: 50px;
        border: 1px solid var(--primary-grey);
        border-radius: 10px !important;
      }

      .primary-button {
        justify-content: center;
        height: 50px;
      }
    }

    .newsletter-asset {
      width: 80px;
      height: 80px;
      margin-bottom: 4px;

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

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

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

  .endorsements-section {
    padding: 0px 20px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;

    .logo-container {
      display: flex;
      flex-direction: row;
      justify-content: center;
      object-fit: contain;
      height: 100px;
      position: relative;

      img {
        width: 160px;
        height: 100%;
        object-fit: contain;

        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

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

    .logo-container img:nth-child(2) {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0%);
    }

    .logo-container img:nth-child(3) {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0%);
    }

    .logo-container img:nth-child(4) {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0%);
    }

    .max-width-controller {
      display: flex;
      flex-direction: column;
      gap: 80px;

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

      position: relative;
      z-index: 1;
    }

    .video-player {
      aspect-ratio: 1.7;
      border-radius: 10px;
      box-shadow: none;

      video {
        width: 100%;
        aspect-ratio: 1.7;
        border-radius: 10px;
        object-fit: cover;
        box-shadow: none;
      }
    }

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

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

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

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

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

  .testimonials-section {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: #f6f6f6;
    gap: 60px;

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

    .text-container {
      display: flex;
      flex-direction: column;
      gap: 14px;

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

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

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

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

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

      p {
        margin: 0;
        font-size: 20px;
        width: 80%;

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

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

    .button-controller {

      button {
        width: 60px;
        height: 60px;
        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        border-radius: 50%;
      }
    }

    .content {
      width: 100%;
      display: grid;
      grid-template-columns: [full-start] 1fr [content-start] min(var(--content-max-width), 100% - var(--space-md) * 2) [content-end] 1fr [full-end];

      @media screen and (max-width: 1320px) {
        grid-template-columns: [full-start] 0fr [content-start] min(var(--content-max-width), 100% - var(--space-md) * 2) [content-end] 1fr [full-end];
      }
    }

    .content > * {
      grid-column: content;
    }

    .gallery {
      grid-column: full;
      display: grid;
      grid-template-columns: inherit;
      padding-block: var(--gap);
      overflow-x: scroll;
      overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .gallery .wrapper {
      grid-column: content;
      display: flex;
      align-items: center;
      gap: var(--space);
    }

    .gallery .wrapper::after {
      content: "";
      align-self: stretch;
      padding-inline-end: max(
        var(--space),
        (100vw - var(--content-max-width)) / 2 - var(--space)
      );
    }

    .gallery .testimonial-card {
      flex-shrink: 0;
      scroll-snap-align: center;
      overflow: hidden;

      inline-size: 100%;
      max-inline-size: 620px;

      background-color: var(--primary-white);
      padding: 36px 50px;

      font-size: 18px;
      border-radius: 8px;

      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 24px;

      img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
      }

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

    .name-container {
      h6 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
      }

      span {
        margin-top: 4px;
        font-size: 16px;
      }
    }

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

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

  .eco-cabins-section {
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid var(--primary-grey);

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


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

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

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

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

  .parkiwi-section{
    padding: 100px 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;
    }
  }

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

  .parkiwi-section:last-child {
    border-bottom: none;
    padding-bottom: 0px;
  }

  .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;
      }
    }

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

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

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

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

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

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

      ul {
        padding-top: 10px;
        padding-bottom: 10px;

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

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

      li {
        font-size: 18px;

        @media screen and (max-width: 576px) {
          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;
      }
    }
  }

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

    .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;
      }
    }

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

  .crypto-section{
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid var(--primary-grey);

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

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

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

  .portfolio-section{
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border-bottom: 1px solid var(--primary-grey); */

    .max-width-controller {
      display: flex;
      flex-direction: column;
      gap: 100px;

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

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

    .height-control-button {
      height: fit-content
    }

    .margin-left-10 {
      @media screen and (min-width: 1280px) {
        margin-left: 3px !important;
      }

      z-index: 300 !important;
    }

    .primary-button {
      width: fit-content;
    }

    .text-container {
      display: flex;
      flex-direction: column;
      gap: 14px;

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

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

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

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

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

      p {
        margin: 0;
        font-size: 20px;
        width: 70%;

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

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

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

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

  .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: 120px;
    padding-left: 50px;

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

      @-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: -50px;

        @-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: 10px;
      min-height: 280px;
    }
  }

  .primary-button{
    width: fit-content;
  }
}


.x-badge {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 8px;
  width: fit-content;
}

.secondary-badge {
  border: 1px solid var(--primary-fill);
  color: var(--primary-fill);
}

.primary-badge {
  color: var(--primary-white);
  background-color: var(--primary-fill);
}

.unicef-background-balance {
  position: absolute;
  top: 50%;
  left: -8vh;
  transform: translate(0, -50%);
  z-index: 0;

  img {
    width: 100%;
    max-height: 650px;
    object-fit: contain;
  }
}

.cta-fixed-button {
  position: fixed;
  bottom: 56px;
  right: 56px;
  z-index: 80;

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

  button {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(225deg, #6438F4 12.15%, #DD68FF 100%);

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

    @media screen and (max-width: 992px) {
      width: 60px;
      height: 60px;

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

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

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

.floating-logo-controller {
  position: sticky;
  top: 50vh;
  background-color: white;
  align-self: flex-start;
  margin-top: 120px;
  margin-bottom: 20px;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0px 18px 76.7px 0px rgba(0, 0, 0, 0.19);
  transition: 0.4s;
  /* width: fit-content; */

  @media screen and (max-width: 1280px) {
    position: absolute;
    top: 24px;
    margin: 0;
    right: 0;
    display: none;
  }

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

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

.wheelchair-logo {
  height: 26px !important;
  width: 110px !important;
}

.smart-logo {
  height: 60px !important;
  width: 80px !important;
}

.crypto-logo {
  width: 80px !important;
  height: 60px !important;

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

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

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

  @media screen and (min-width: 1800px) {
    padding-right: 10px;
  }

  @-moz-document url-prefix() {
    padding-left: 0px;
    padding-right: 0px;
  }

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

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

  .floating-logo-controller {
    margin: 30px;
    margin-bottom: 20px;
    margin-top: 100px;

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

    @media screen and (min-width: 1800px) {
      margin-right: -70px;
    }

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

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

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

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

.challenge-portfolio-section-left {
  background-image: url('../assets/challenge_bg.webp');
  background-repeat: no-repeat;
  background-size: 700px;
  background-position: left bottom;
  max-width: 60vw;
  flex: 0 0 auto;
  width: 100%;

  position: relative;

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

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

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

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

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

  @media screen and (max-width: 1280px) {
    margin-top: 56px;
    width: 100%;
    max-width: none;
  }
}


 .expertise-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
    gap: 100px;

    /* background-image: url('../assets/process_bg.svg'); */
    background-repeat: repeat;
    background-size: cover;
    background-position: center center;

    @media screen and (max-width: 1500px) {
      background-image: none;
      gap: 32px;
    }

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

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

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

    .graphic-section {
      width: 100%;
      max-width: 1700px;
      position: relative;

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

    .asset-markers {
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      width: 100%;
      position: relative;
      z-index: 1;

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

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

    .asset-cell {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: fit-content;

      h4 {
        font-size: 28px;
        max-width: 200px;

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

      img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        box-shadow: -10px 16px 124px 0px rgba(0, 0, 0, 0.25);

        @media screen and (max-width: 1500px) {
          width: 100px;
          height: 100px;
        }

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

      @media screen and (max-width: 1500px) {
        flex-direction: row;
        align-items: center;
        gap: 32px;
        padding-bottom: 32px;
        border-bottom: 1px solid var(--primary-grey);
        width: 100%;

        h4 {
          max-width: 500px;
        }
      }

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

    .asset-2 {
      margin-top: 80px;
    }

    .asset-4 {
      margin-top: 64px;
    }

    .asset-5 {
      margin-top: -32px;

    }

    @media screen and (max-width: 1500px) {
      .asset-2, .asset-4, .asset-5 {
        margin-top: 0;
      }
    }

    .gradient-arrow {
      position: absolute;
      top: 10%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 0;

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

.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;
  }

  .cta-content {
    width: 100%;
    max-width: 720px;

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

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

    .primary-button {
      width: 180px;
      height: 50%;
    }

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

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

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

  }

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

    .divider{
      margin-bottom: 8px;
    }

    .primary-button {
      width: 100% !important;
      max-width: 100% !important;
      justify-content: center;
    }
  }
}