.sensedeal {
  width: 100%;
  height: 100%;
  .banner {
    width: 100%;
    height: 180px;
    background-image: url("../images/sensedeal/banner-bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;

    .banner-content {
      padding: 11px 16px;
      .banner-title {
        font-weight: 600;
        font-size: 16px;
        color: #3576fa;
        line-height: 23px;
      }
      .banner-desc {
        font-weight: 400;
        font-size: 10px;
        color: rgba(0, 0, 0, 0.85);
        line-height: 14px;

        > p {
          margin-top: 8px;
        }
      }
    }
  }

  .card-wrap {
    padding-inline: 16px;
    position: relative;
    top: -17px;
    .card {
      display: flex;
      justify-content: space-between;
      padding: 12px 22px 11px;
      background: rgba(255, 255, 255, 0.59);
      box-shadow: 0px 4px 7px 0px rgba(152, 159, 196, 0.17);
      border-radius: 4px;
      border: 1px solid #ffffff;
      backdrop-filter: blur(5px);

      .card-item {
        .card-item-title {
          display: flex;
          align-items: center;

          > img {
            height: 17px;
          }

          > h3 {
            margin-left: 6px;
            font-weight: 600;
            font-size: 13px;
            color: rgba(0, 0, 0, 0.85);
            line-height: 14px;
          }
        }

        .card-item-desc {
          margin-top: 7px;
          font-weight: 400;
          font-size: 9px;
          color: rgba(0, 0, 0, 0.85);
          line-height: 13px;
        }
      }

      .mission {
        flex-basic: 66px;
      }

      .vision {
        flex-basis: 86px;
      }

      .values {
        flex-basis: 95px;
      }
    }
  }

  .navigation {
    display: flex;
    justify-content: space-around;
    margin-top: 26px;
    padding-inline: 16px;

    .navigation-item {
      text-align: center;
      .navigation-item-icon > img {
        width: 30px;
      }
      .navigation-item-title {
        margin-top: 4px;
        font-weight: 400;
        font-size: 9px;
        color: rgba(0, 0, 0, 0.85);
        line-height: 13px;
      }
    }

    .navigation-item.active {
      .navigation-item-title {
        font-weight: 600;
        color: #3274f9;
      }

      &::after {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        margin-top: 6px;
        background: #3274f9;
        border-radius: 1px;
      }
    }
  }
}