.ueb_hero {
  .ueb_introtext {
    font-size: var(--Typography-body1-mobile);
    color: #474a73;
    display: block;
    margin-top: 8px;
    text-align: center;
    line-height: 140%;

    @media only screen and (min-width: 900px) {
      font-size: var(--Typography-body1-desktop);
    }

    @media only screen and (min-width: 1200px) {
      text-align: left;
    }
  }
}

.ueb_vision {
  flex-direction: column;
  padding: 28px 0 48px;

  @media only screen and (min-width: 1200px) {
    padding-top: 0;
  }
}

.ueb_vision_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f8f5f4;
  margin: 0 24px;
  padding: 24px 16px;
  border-radius: 15px;
  max-width: 836px;

  @media only screen and (min-width: 900px) {
    padding: 32px 42px;
  }

  h2 {
    background-color: #f3f4f8;
    border: 1px solid #c5c9dc;
    width: fit-content;
    color: #474a73;
    font-size: 14px;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 400;
  }

  .ueb_vision_text {
    color: #2d1a5b;
    font-weight: 600;
    font-size: var(--Typography-headline3);
    text-align: center;
    margin-top: 16px;
    margin-bottom: 24px;

    br {
      display: none;
    }

    @media only screen and (min-width: 900px) {
      font-size: var(--Typography-headline1);
      margin-bottom: 32px;
    }
  }

  @media only screen and (min-width: 768px) {
    .ueb_vision_text br {
      display: inline;
    }
  }

  .ueb_vision_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 15px;
    color: #474a73;
    padding: 8px;
    text-align: center;
    font-size: 18px;
    line-height: 140%;
    max-width: 710px;

    @media only screen and (min-width: 768px) {
      flex-direction: row;
      padding: 24px;
      text-align: left;
      gap: 24px;
    }

    @media only screen and (min-width: 900px) {
      p {
        font-size: var(--Typography-body1-desktop);
      }
    }

    img {
      margin-top: 16px;
      width: 80px;
      height: 80px;

      @media only screen and (min-width: 768px) {
        margin-top: 0;
      }
    }
  }
}

.ueb_team {
  background: linear-gradient(
    45deg,
    rgba(74, 43, 135, 0.8) 10%,
    rgba(127, 86, 217, 0.8) 100% 100%
  );
  color: #fff;
  display: flex;
  flex-direction: column;

  .ueb_team_text {
    margin: 0;
    text-align: center;
    line-height: 140%;
    max-width: 750px;

    h2 {
      font-weight: 600;
      font-size: 32px;

      @media only screen and (min-width: 900px) {
        font-size: 40px;
      }
    }
  }

  .ueb_team_gallery {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(0, 372px));

    .ueb_team_member {
      display: flex;
      background-color: #fff;
      padding: 16px;
      border-radius: 15px;
      align-items: center;

      img {
        width: 101px;
        height: 101px;
        margin-right: 16px;
      }

      .ueb_team_member_info {
        h3 {
          color: #2d185b;
          font-size: 20px;
          margin: 0;
        }

        p {
          color: #474a73;
          font-size: 12px;
          margin: 0 0 8px 0;
        }

        img {
          width: 24px;
          height: 24px;
        }
      }
    }
  }
}

.ueb_trust_cta {
  padding: 0;
}
