.landing {
  text-align: center;
  height: 196px;
  display: flex;
  justify-content: space-evenly;
  border-bottom: solid 1px #e6e6ec;
  > .background {
    position: absolute;
    width: 100%;
    height: 120px;
    z-index: 1;
    background: linear-gradient(180deg, #e11b2c 0%, #ad001c 100%);
    border-radius: 0px 0px 66px 0px;
  }
  > .description,
  > .illustration {
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
    z-index: 10;
    position: relative;
  }
  > .illustration {
    width: 200px;
    > img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
  > .description {
    text-align: left;
    color: #fff;
    font-family: "Poppins";
    font-style: normal;
    > .points {
      font-weight: 500;
      font-size: 14px;
      line-height: 22px;
      margin-top: 8px;
    }
    > .balance {
      font-weight: 600;
      font-size: 32px;
      line-height: 40px;
      margin-top: 4px;
    }
    > .equivalence {
      font-weight: 500;
      font-size: 12px;
      line-height: 20px;
      margin-top: 4px;
    }
    > .movements {
      font-weight: 600;
      font-size: 16px;
      line-height: 24px;
      margin-top: 42px;
      color: #4a90e2;
      text-decoration: underline;
      text-underline-offset: 2px;
      cursor: pointer;
      background: unset;
      width: fit-content;
      padding: 2px 7px 2px 0px;
      &.added {
        margin-top: 70px;
      }
      > img {
        transform: translate(5px, 6px);
        float: right;
      }
    }
  }
}
