/* Color Definitions */
:root {
  --bg-color: #fff;
  --active-color: #759be9;
  --primary-color: #5241de;
  --font-color: #0f0727;
  --font-color-medium: #8a8b9f;
  --font-color-light: #ccc;
  --border-color: #f2f4f5;
  --cause-color: #95f3ed;
  --product-menu-color: #252633;
  --linear-gradient: linear-gradient(#f5ffff 0%, #ffffff 100%);
  --product-border-color: #e8e8e8;
  --title-color: #303450;
  --sub-title-color: #9092a1;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size: 16px;
  --font-size-md: 20px;
  --font-size-lg: 24px;
  --font-size-x: 28px;
  --font-size-xl: 36px;
  --font-size-xxl: 56px;
  --font-size-title: 46px;
}
.main {
  text-align: center;
  font-weight: 300;
}

.main {
  background: linear-gradient(180deg, #ffffff 0%, #f1fafa 61%, #ffffff 100%);
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.main .legend .description {
  color: #4a4a4a;
  margin-top: 10px;
}

.main .about-banner img {
  width: 100%;
}

.main .about-wrapper {
  margin: 50px auto;
}

.main .about-wrapper img {
  max-width: 960px;
  margin-top: 40px;
  width: 100%;
}

.main .team-container {
  margin: auto;
  text-align: left;
  line-height: 2.2;
  justify-content: start;
  align-items: center;
}

.main .team-container .team-description .title {
  font-weight: 500;
  margin-bottom: 30px;
}

.main .team-container .team-description p {
  color: #666; /* Default medium font color */
  line-height: 1.5;
}

.main .team-container img {
  width: 100%;
}

.main .team-container .team-banner {
  max-width: 960px;
  margin: 80px auto 0;
  width: 100%;
}

.main .about-values {
  margin-bottom: 50px;
}

.main .about-values .values .value-item {
  height: 220px;
  position: relative;
}

.main .about-values .values .value-item img {
  max-width: 400px;
  width: 80px;
  margin: auto;
}

.main .about-values .values .value-item .value-item-title {
  font-size: 1rem; /* Default medium font size */
  color: #333; /* Default font color */
  font-weight: 500;
  margin: 20px 0;
}

.main .about-values .values .value-item .value-item-content {
  font-weight: 400;
  color: #666; /* Default medium font color */
  font-size: 0.875rem; /* Default small font size */
  line-height: 2;
}
.team-description {
  .title {
    font-weight: 500;
    margin-bottom: 30px;
  }

  p {
    color: var(--font-color-medium);
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}

.team-container {
  margin: auto;
  text-align: left;
  line-height: 2.2;
  justify-content: start;
  align-items: center;

  img {
    width: 100%;
  }

  .team-banner {
    max-width: 960px;
    margin: 80px auto 0;
    width: 100%;
  }
}

@media only screen and (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }

  .legend {
    padding: 160px 0px 110px;
    font-size: 56px;

    .description {
      font-size: 36px;
    }
  }
}

@media only screen and (min-width: 1366px) and (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }

  .legend {
    padding: 140px 0px 80px;
    font-size: 48px;

    .description {
      font-size: 32px;
    }
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1366px) {
  .container {
    max-width: 1140px;
  }

  .legend {
    padding: 100px 0px 80px;
    font-size: 40px;

    .description {
      font-size: 28px;
    }
  }
}

@media only screen and (min-width: 1080px) and (max-width: 1200px) {
  .legend {
    padding: 100px 0px 80px;
    font-size: 40px;

    .description {
      font-size: 28px;
    }
  }
}

@media only screen and (min-width: 992px) and (max-width: 1080px) {
  .legend {
    padding: 90px 0px;
    font-size: 36px;

    .description {
      font-size: 24px;
    }
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .legend {
    padding: 80px 0;
    font-size: 28px;

    .description {
      font-size: 24px;
    }
  }

  .dropdown-title {
    padding: 10px 20px;
  }
}

@media only screen and (min-width: 992px) {
  .dropdown-title {
    padding: 10px 30px;
  }
}

@media only screen and (min-width: 768px) {
  .mode-pc {
    display: block;
  }

  .mode-mobile {
    display: none;
  }

  .footer {
    .border-top {
      padding: 80px 0;
    }

    .code-dance {
      margin-bottom: 25px;
      width: 200px;
    }

    .sitemap {
      a {
        line-height: 2;
        margin: 0 0 15px;
      }
    }

    .site-icon {
      width: 30px;
      height: 30px;
      cursor: pointer;
      margin-right: 20px;
    }
  }
}

@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
  }

  .legend {
    font-size: 24px;
    padding: 70px 0 30px;

    .description {
      margin-top: 20px;
      font-size: 20px;
    }
  }
}

@keyframes transform-down {
  0% {
    transform: rotate(90deg);
  }

  100% {
    transform: rotate(-90deg);
  }
}

@keyframes transform-up {
  0% {
    transform: rotate(-90deg);
  }

  100% {
    transform: rotate(90deg);
  }
}

.transform-down {
  animation: transform-down 0.3s forwards;
}

.transform-up {
  animation: transform-up 0.3s forwards;
}

.main {
  background: linear-gradient(180deg, #ffffff 0%, #f1fafa 61%, #ffffff 100%);
  background-size: 100% auto;
  background-repeat: no-repeat;

  .legend .description {
    color: #4a4a4a;
    margin-top: 10px;
  }

  .about-banner {
    img {
      width: 100%;
    }
  }

  .about-wrapper {
    margin: 50px auto;

    img {
      max-width: 960px;
      margin-top: 40px;
      width: 100%;
    }
  }

  .team-container {
    margin: auto;
    text-align: left;
    line-height: 2.2;
    justify-content: start;
    align-items: center;

    .team-description {
      .title {
        font-weight: 500;
        margin-bottom: 30px;
      }

      p {
        color: var(--font-color-medium);
        line-height: 1.5;
      }
    }

    img {
      width: 100%;
    }

    .team-banner {
      max-width: 960px;
      margin: 80px auto 0;
      width: 100%;
    }
  }

  .about-values {
    margin-bottom: 50px;

    .values {
      .value-item {
        height: 220px;
        position: relative;

        img {
          max-width: 400px;
          width: 80px;
          margin: auto;
        }

        .value-item-title {
          font-size: var(--font-size-md);
          color: var(--font-color);
          font-weight: 500;
          margin: 20px 0;
        }

        .value-item-content {
          font-weight: 400;
          color: var(--font-color-medium);
          font-size: var(--font-size-sm);
          line-height: 2;
        }
      }
    }
  }
}

.row {
  display: flex;
}

@media only screen and (min-width: 992px) {
  .legend {
    padding: 140px 0 80px;

    .description {
      font-size: 48px;
    }
  }

  .team-container {
    font-size: var(--font-size);
    padding: 130px 0 300px;

    .team-description {
      .title {
        font-size: var(--font-size-xl);
        font-weight: 500;
      }

      p {
        line-height: 1.5;
        font-size: var(--font-size);
      }
    }

    img {
      width: 100%;
    }

    .team-banner {
      max-width: 960px;
      margin: 80px auto 0;
      width: 100%;
    }
  }

  .about-values {
    .values {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;

      .value-item {
        width: 22%;
      }

      .value-item:nth-child(2n) {
        margin-top: 40px;
      }
    }
  }

  .banner-content {
    height: 80px;
    font-size: var(--font-size-md);

    h1 {
      font-size: 46px;
      margin-bottom: 20px;
      letter-spacing: 2px;
    }
  }
}

@media (min-width: 992px) {
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
