body {
  background-color: var(--black);
}

#about-2-card {
  width: auto;
  min-height: 600px;
  height: 64vh;
  /* background-color: var(--black2); */
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  & .card {
    width: 50%;
    height: 100%;
    max-height: 800px;
    z-index: 2;
    margin: 32px;
    border-radius: 30px;
    transition: all 300ms ease-in-out;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 60px;
    padding: clamp(30px,6vh,60px) 60px;
    & .card-desc {
      margin: 25px 0 0px;
    }
    & .button {
      margin: 0;
    }
    & .goal-icon {
      width: clamp(140px, 60vw, 300px);
      height: 140px;
      margin-bottom: 25px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }
    & .vision-icon {
      background-image: url(../asset/about/Vision\ Icon.png);
    }
    & .mission-icon {
      background-image: url(../asset/about/Mission\ icon.png);
    }
  }
  & .card:hover {
    --x: 100%;
  }
  & .card-vision {
    background: linear-gradient(
        135deg,
        var(--c1, rgba(var(--black-rgb), 0.2)),
        var(--c2, rgba(var(--g-main-rgb), 1)) 65%,
        var(--c3, rgba(var(--g-dark-rgb), 1))
      )
      var(--x, 0) / 300%;
    border-top: solid 1px rgba(var(--g-light-rgb), 0.4);
    border-left: solid 1px rgba(var(--g-light-rgb), 0.4);
  }
  & .card-mission {
    background: linear-gradient(
        135deg,
        var(--c1, rgba(var(--black-rgb), 0.2)),
        var(--c2, rgba(var(--b-main-rgb), 1)) 65%,
        var(--c3, rgba(var(--b-dark-rgb), 1))
      )
      var(--x, 0) / 300%;
    border-top: solid 1px rgba(var(--b-light-rgb), 0.4);
    border-left: solid 1px rgba(var(--b-light-rgb), 0.4);
  }
}
@media only screen and (max-width: 800px) {
  #about-2-card {
    flex-direction: column;
    height: fit-content;
    & .card {
      width: 100%;
      min-height: fit-content;
      margin-bottom: 60px;
      padding: 40px;
    }
  }
}

#about-client {
  width: 100vw;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0 0;
  padding: 160px 0;
  & .client-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../asset/about/valued_customer.jpg);
    background-position: center;
    background-size: cover;
    filter: brightness(0.3) saturate(0.5);
    z-index: -1;
  }
  & .client-header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: 80%;
    min-width: 320px;
    margin: 48px 0 24px;
    & img {
      margin-right: 24px;
    }
  }
  & .client-container {
    width: 80%;
    max-width: 80%;
    min-width: 340px;
    background-image: linear-gradient(
      135deg,
      rgba(var(--white-rgb), 0.2),
      rgba(var(--white-rgb), 0.05)
    );
    padding: 24px;
    margin: 16px 0;
    border-radius: 30px;
    border-top: solid 1px rgba(var(--white-rgb), 0.4);
    border-left: solid 1px rgba(var(--white-rgb), 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    & .client-subtopic {
      width: 100%;
      margin-bottom: 16px;
    }
    & .client-box {
      background-color: #fff;
      width: 160px;
      height: 120px;
      object-fit: contain;
      padding: 16px;
      border-radius: 24px;
      margin: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }
  }
}
@media only screen and (max-width: 500px) {
  .client-container {
    padding: 20px !important;
  }
  .client-box {
    width: 132px !important;
  }
}

.about-exp {
  width: 100%;
  height: 500vh;
  position: relative;
  display: flex;
  flex-direction: column;
  & .scrollline {
    height: 100% !important;
    width: auto;
    z-index: 2;
  }
  & .exp-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-image: url(../asset/about/about_exp_bg.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  & .exp-container {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    & #exp-title {
      opacity: 0;
      text-align: center;
      max-width: 60%;
    }
    & .glass-card {
      z-index: 2;
      opacity: 0;
    }
    & .exp-number {
      z-index: 1;
      position: absolute;
      min-width: 200px;
      min-height: 200px;
      width: 30vw;
      height: 30vh;
      top: 50%;
      left: 50%;
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
    }
    & .exp-fadein {
      animation: opacityIn 800ms ease-in-out forwards;
    }
  }
}

.scrollline {
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
