.supermetrics-box {
  width: 1300px;
  margin: 0 auto;
  padding-bottom: 100px;

  >section {
    /* border-bottom: 1px solid black;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2); */
    margin-bottom: 50px;
    min-height: 100px;
  }
}

.sect-box {
  text-align: center;
}

.sect1 {
  padding-bottom: 2em;

  .parter-logo {
    padding-top: 2em;
    display: flex;
    align-items: center;
    justify-content: center;

    .img-box {
      width: 300px;
    }
  }

  .title {
    font-size: 32px;
    font-weight: bold;
  }

  .des {
    font-size: 20px;
    padding: 1em 0;
  }
}

.lead-box {
  .lead {
    margin: 1.5em 0;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    padding: 0.3em 2em;
    background-color: #5079FB;
    border-radius: 1em;
    text-decoration: none;
    color: white !important;
  }
}

.sect2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-box {
  width: 100%;
  border: 1px solid black;
  background-color: #5f2936;
  display: flex;
  justify-content: center;
  align-items: center;

  .layer1 {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    background-image: url(./superm_assets/hero-frame-top-left.svg);
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .layer2 {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    background-image: url(./superm_assets/hero-frame-bottom-right.svg);
    background-position: bottom right;
    background-repeat: no-repeat;
    padding: 3rem;
  }
}

.sect3 {
  padding-bottom: 2em;

  .title {
    font-size: 18px;
    padding-top: 1em;
    padding-bottom: 1em;
  }
}

.sect4 {
  margin-top: 100px;
}

.dual-box {
  width: 100%;
  display: flex;
  margin: 100px 0;

  .txt-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 0 2rem;

    .feat {
      font-size: 18px;
      font-weight: bold;
      color: gray;
    }

    .title {
      font-size: 28px;
      font-weight: bold;
      padding-top: 1em;
      padding-bottom: 1em;
    }

    .des {
      font-size: 20px;
      padding-bottom: 1em;
      line-height: 1.5em;
    }
  }

  .img-box {
    width: 55%;
    padding: 20px;
  }
}

.sect5 {
  padding-bottom: 3em;

  .title {
    font-size: 28px;
    font-weight: bold;
    padding-top: 1.5em;
    margin-bottom: 1.5em;
  }

  .percent {
    padding: 0 8em;
    display: flex;
    margin-bottom: 1em;

    >div {
      flex: 1;
    }

    .pct {
      font-size: 36px;
      font-weight: bold;
      padding-bottom: 10px;
    }
  }
}

.sect6 {
  .title {
    font-size: 28px;
    font-weight: bold;
    padding-top: 1.5em;
  }

  .des {
    font-size: 20px;
    padding: 1em 0;
  }
}

/*-++-++++=-++---+-=-++++---=-++++--+=-++++-+-=--+-+++-=-++---++=-++-++++=-++-++-+*/
.gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;

  .image-card {
    width: calc(33.333% - 20px);
    box-sizing: border-box;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .image-container {
    position: relative;
    overflow: hidden;
  }

  .image-container img,
  .overlay {
    width: 100%;
    display: block;
    border-radius: 5px;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    line-height: 1.5em;
    display: flex;
    text-align: left;
    padding: 1em;
    padding-top: 2em;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 5px;
    z-index: 1;
  }

  .image-container:hover .overlay {
    opacity: 1;
  }

  .title {
    position: absolute;
    top: 5px;
    left: 5px;
    color: #fff;
    padding: 3px 6px;
    font-size: 40px;
    font-weight: bold;
    z-index: 2;
    transition: opacity 0.3s;
  }

  .image-container:hover .title {
    opacity: 0;
  }

  .icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    border: 2px solid #000;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s, backdrop-filter 0.3s;
    z-index: 2;
    user-select: none;
  }

  .image-container:hover .icon {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    cursor: pointer;
  }
}