/* 動畫 */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* 通用CSS */
.black-text {
  color: black;
}
.reset-table {
  all: unset; /* 清除所有繼承/預設樣式（現代瀏覽器支援） */
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  table {
    height: 100%;
    tbody {
      height: 100%;
      tr {
        height: 100%;
      }
    }
  }
}

.reset-table th,
.reset-table td {
  margin: 0;
  padding: 0 0.9rem;
  border: 1px solid #fff;
  vertical-align: middle;
}
.table-scroll-wrapper {
  overflow-x: auto;
  width: 100%;
}

.cell-flex {
  display: flex;
  flex-direction: column;
  height: 100%;

  li {
    flex: 1;
    display: grid;
    grid-template-columns: 62% 1fr;
    position: relative;
    align-items: stretch;

    & + li::before {
      content: '';
      position: absolute;
      top: 0;
      left: -0.9rem;
      height: 1px;
      width: calc(100% + 1.8rem);
      background-color: #fff;
    }
    span {
      display: flex;
      align-items: center;
      padding: 2rem 0.2rem;
      &:last-child {
        justify-content: center;
      }
      & + span {
        padding-left: 0.8rem;
        position: relative;
        &::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 1px;
          height: calc(100%);
          background-color: #fff;
        }
      }
    }
  }
}

.mb-70 {
  margin-bottom: 7rem;
}

.header {
  &:has(.nav.pc.scroll-down) {
    pointer-events: none;
  }

  .nav-container,
  .menu {
    pointer-events: auto;
  }
}

.color-shadow {
  box-shadow: 2px 5px 20px 0px rgba(0, 0, 0, 0.2);
}

.pages-banner .lists-bar__list {
  padding: 1rem 0;

  li {
    @media (max-width: 1200px) {
      margin: 0;
    }
  }
}

/* about頁面CSS */
.organization-content {
  padding-top: 86px;
  padding-bottom: 97px;
  position: relative;

  .bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 26%;
  }

  .img {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 20;
  }
}

.management-content {
  padding-top: 6.3vw;
  position: relative;

  .bg_01 {
    position: absolute;
    right: 0;
    top: 8.3%;
    z-index: -10;
    overflow: hidden;

    img {
      max-width: 100%;
      height: auto;
      transform: translateX(55%);
    }
  }

  .bg_02 {
    position: absolute;
    left: 0;
    top: 33%;
    z-index: -10;
    overflow: hidden;

    img {
      max-width: 100%;
      height: auto;
      transform: translateX(-60%);
    }
  }

  .chairman {
    .container {
      display: grid;
      grid-template-columns: 520px 1fr;

      @media (max-width: 1280px) {
        align-items: center;
      }

      @media (max-width: 1150px) {
        grid-template-columns: 1fr;
      }

      .img {
        position: relative;
        z-index: 10;

        &:hover {
          .wrap {
            img {
              transform: scale(1.05);
            }
          }
        }

        @media (max-width: 1150px) {
          display: flex;
          justify-content: center;
          margin-bottom: -30px;
        }

        .wrap {
          border-radius: 25px;
          overflow: hidden;
          transform: translateY(-57px);

          @media (max-width: 1280px) {
            transform: translateY(0px);
          }

          img {
            display: block;
            max-width: 600px;
            width: 100%;
            transition: transform 0.3s ease;
          }
        }
      }

      .info {
        background-color: #f3f6f9;
        border-radius: 0px 50px 0 50px;
        padding: 73px 88px;
        margin-left: -123px;

        @media (max-width: 1150px) {
          margin-left: 0;
        }

        @media (max-width: 768px) {
          padding: 73px 30px;
        }

        @media (max-width: 680px) {
          position: relative;
          z-index: 20;
          border-radius: 0px 0px 0 50px;
        }

        .wrap {
          margin-left: calc(138px + 31px);

          @media (max-width: 1280px) {
            margin-left: 30%;
          }

          @media (max-width: 1150px) {
            margin-left: 0px;
          }

          @media (max-width: 680px) {
            display: flex;
            flex-direction: column;
            align-items: center;
          }

          .title {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: end;
            padding-bottom: 30px;
            border-bottom: 1px solid #d9d9d9;

            @media (max-width: 680px) {
              justify-content: center;
              align-items: center;
            }

            .title_main {
              position: relative;

              &::before {
                content: '';
                position: absolute;
                left: -31px;
                top: 50%;
                transform: translateY(-43%);
                width: 4px;
                height: 85%;
                background-color: #f9a13a;
              }

              h4 {
                margin-bottom: 16px;
              }

              p {
              }
            }

            .title_office {
              color: #fff;

              @media (max-width: 768px) {
                display: none;
              }

              h1 {
                transform: translateY(21px);
                margin: 0px 0px;
                font-size: clamp(6.7rem, 3.6778rem + 6.2963vw, 8.4rem);
              }
            }
          }

          .info_list {
            padding-top: 30px;
            display: flex;
            flex-wrap: wrap;

            @media (max-width: 680px) {
              display: inline-block;
            }

            .list_left {
              display: flex;
              flex-direction: column;
              justify-content: space-between;
              flex: 1;
              min-width: 230px;

              @media (max-width: 768px) {
                min-width: auto;
              }

              span {
                font-size: clamp(1.8rem, 1.4444rem + 0.7407vw, 2rem);
              }

              ul {
                list-style: none;
                margin: 0px 0px;
                max-width: 330px;
                line-height: 1.6;
                padding-top: 0px;
                padding-left: 0px;
                padding-right: 0px;
                padding-bottom: 8px;

                li {
                  color: #5c5c5c;
                  font-weight: 400;
                  font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);
                  padding-left: 20px;
                  position: relative;

                  &::before {
                    content: '';
                    position: absolute;
                    left: 6px;
                    top: 13px;
                    width: 4px;
                    aspect-ratio: 1/1;
                    border-radius: 50%;
                    background-color: #5c5c5c;
                  }
                }
              }
            }

            .list_right {
              flex: 1;
              min-width: 263px;

              @media (max-width: 768px) {
                min-width: auto;
              }

              .present {
              }

              span {
                font-size: clamp(1.8rem, 1.4444rem + 0.7407vw, 2rem);
              }

              ul {
                list-style: none;
                margin: 0px 0px;
                padding: 0px 0px;
                line-height: 1.6;

                li {
                  color: #5c5c5c;
                  font-weight: 400;
                  font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);
                  padding-left: 20px;
                  position: relative;

                  &::before {
                    content: '';
                    position: absolute;
                    left: 6px;
                    top: 13px;
                    width: 4px;
                    aspect-ratio: 1/1;
                    border-radius: 50%;
                    background-color: #5c5c5c;
                  }
                }
              }
            }
          }
        }
      }
    }
  }

  .president {
    padding-top: 7.5vw;
    margin-bottom: 5.1vw;

    .container {
      display: grid;
      grid-template-columns: 1fr 520px;

      @media (max-width: 1280px) {
        align-items: center;
      }

      @media (max-width: 1150px) {
        grid-template-columns: 1fr;
      }

      .img {
        position: relative;
        z-index: 10;

        &:hover {
          .wrap {
            img {
              transform: scale(1.05);
            }
          }
        }

        @media (max-width: 1150px) {
          display: flex;
          justify-content: center;
          margin-bottom: -30px;
          order: 0;
        }

        .wrap {
          border-radius: 25px;
          transform: translateY(-57px);
          overflow: hidden;

          @media (max-width: 1280px) {
            transform: translateY(0px);
          }

          img {
            display: block;
            max-width: 600px;
            width: 100%;
            transition: transform 0.3s ease;
          }
        }
      }

      .info {
        background-color: #f3f6f9;
        border-radius: 50px 0 50px 0px;
        padding-right: 82px;
        padding-left: calc(82px + 31px);
        padding-top: 82px;
        padding-bottom: 98px;
        margin-right: -123px;

        @media (max-width: 1150px) {
          margin-right: 0;
          order: 1;
        }

        @media (max-width: 768px) {
          padding: 73px 30px;
        }

        @media (max-width: 680px) {
          position: relative;
          z-index: 20;
          border-radius: 0px 0px 50px 0;
        }

        .wrap {
          margin-right: 6.85vw;

          @media (max-width: 1150px) {
            margin-left: 0px;
            margin-right: 0px;
          }

          @media (max-width: 680px) {
            display: flex;
            flex-direction: column;
            align-items: center;
          }

          .title {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: end;
            padding-bottom: 30px;
            border-bottom: 1px solid #d9d9d9;

            @media (max-width: 680px) {
              justify-content: center;
              align-items: center;
            }

            .title_main {
              position: relative;

              &::before {
                content: '';
                position: absolute;
                left: -31px;
                top: 50%;
                transform: translateY(-43%);
                width: 4px;
                height: 85%;
                background-color: #f9a13a;
              }

              h4 {
                margin-bottom: 16px;
              }

              p {
              }
            }

            .title_office {
              color: #fff;

              @media (max-width: 768px) {
                display: none;
              }

              h1 {
                transform: translateY(21px);
                margin: 0px 0px;
                font-size: clamp(6.7rem, 3.6778rem + 6.2963vw, 8.4rem);
              }
            }
          }

          .info_list {
            padding-top: 30px;
            display: flex;
            flex-wrap: wrap;
            column-gap: 20px;

            @media (max-width: 680px) {
              display: inline-block;
            }

            .list_left {
              display: flex;
              flex-direction: column;
              justify-content: space-between;
              flex: 1;
              min-width: 230px;

              @media (max-width: 768px) {
                min-width: auto;
              }

              span {
                font-size: clamp(1.8rem, 1.4444rem + 0.7407vw, 2rem);
              }

              ul {
                list-style: none;
                margin: 0px 0px;
                max-width: 330px;
                line-height: 1.6;
                padding-top: 0px;
                padding-left: 0px;
                padding-right: 0px;
                padding-bottom: 8px;

                li {
                  color: #5c5c5c;
                  font-weight: 400;
                  font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);
                  padding-left: 20px;
                  position: relative;

                  &::before {
                    content: '';
                    position: absolute;
                    left: 6px;
                    top: 11px;
                    width: 4px;
                    aspect-ratio: 1/1;
                    border-radius: 50%;
                    background-color: #5c5c5c;
                  }
                }
              }
            }

            .list_right {
              flex: 1;
              min-width: 278px;

              @media (max-width: 768px) {
                min-width: auto;
              }

              .present {
              }

              span {
                font-size: clamp(1.8rem, 1.4444rem + 0.7407vw, 2rem);
              }

              ul {
                list-style: none;
                margin: 0px 0px;
                padding: 0px 0px;
                line-height: 1.6;

                li {
                  color: #5c5c5c;
                  font-weight: 400;
                  font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);
                  padding-left: 20px;
                  position: relative;

                  &::before {
                    content: '';
                    position: absolute;
                    left: 6px;
                    top: 11px;
                    width: 4px;
                    aspect-ratio: 1/1;
                    border-radius: 50%;
                    background-color: #5c5c5c;
                  }
                }
              }
            }
          }
        }
      }
    }
  }

  .ourTeam {
    background-color: #f3f6f9;
    padding-top: 5vw;
    padding-bottom: 110px;

    .container {
      .ourTeam_list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(435px, 1fr));
        list-style: none;
        column-gap: 30px;
        row-gap: 58px;
        padding-left: 0px;
        padding-right: 0px;

        @media (max-width: 768px) {
          grid-template-columns: 1fr;
        }

        .main {
          color: #fff;
          background-color: #0e4589;
          padding: 0px 76px;
          border-radius: 0px 25px 0 25px;
          display: flex;
          align-items: center;

          @media (max-width: 768px) {
            padding: 0px 20px;
          }

          .wrap {
            padding: 40px 0px;

            span {
              margin-bottom: 16px;
              font-size: clamp(1.8rem, 1.4444rem + 0.7407vw, 2rem);
            }

            h2 {
              margin-top: 0px;
              margin-bottom: 30px;
              font-size: clamp(5.9rem, 3.2333rem + 5.5556vw, 7.4rem);
            }

            p {
              margin-bottom: 40px;
              font-weight: 300;
              font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);
            }

            .link {
              a {
                background-color: #f9a13a;
                border-radius: 0px 25px 0 25px;
                max-width: 200px;
                width: 100%;
                padding: 23px 0px;
                text-decoration: none;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow: hidden;

                &:hover {
                  .link_wrap {
                    transform: translateY(250%);
                  }
                }

                .link_wrap {
                  position: relative;
                  transition: transform 0.4s ease;

                  &::before {
                    position: absolute;
                    top: 0;
                    left: 50%;
                    width: 100%;
                    transform: translate(-50%, -250%);
                    white-space: nowrap;

                    content: attr(data-title);
                  }
                }
              }
            }
          }
        }

        .item {
          &:hover {
            .img {
              img {
                transform: scale(1.05);
              }
            }
          }

          .img {
            display: flex;
            justify-content: center;
            border-radius: 25px;
            overflow: hidden;

            img {
              display: block;
              transition: transform 0.3s ease;
            }
          }

          .info {
            .wrap {
              position: relative;
              z-index: 10;
              background-color: #fff;
              border-radius: 20px;
              width: 90%;
              text-align: center;
              padding: 24px 0px;
              margin-top: -81px;
              margin-left: auto;
              margin-right: auto;

              span {
                margin-bottom: 16.5px;
                color: #0e4589;
              }

              h5 {
                margin-top: 0px;
                margin-bottom: 21.5px;
              }

              p {
                color: #5c5c5c;
              }
            }
          }
        }
      }
    }
  }
}

/* contact頁面CSS */
.contact-investor-content {
  overflow: hidden;
  padding-top: 5.55vw;

  .editor {
    position: relative;

    .container {
      padding-bottom: 122px;

      .title {
        text-align: center;

        h4 {
          color: #222222;
          margin-top: 0px;
          margin-bottom: 17px;
        }

        p {
          color: #5c5c5c;
          line-height: 23px !important;
        }
      }

      .list_wrap {
        padding-top: 59px;

        .list {
          position: relative;
          z-index: 10;
          padding-left: 0px;
          margin: 0px 0px;
          list-style: none;
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(555px, 1fr));
          column-gap: 40px;
          row-gap: 45px;
          background-color: #fff;

          @media (max-width: 768px) {
            grid-template-columns: 1fr;
          }

          .list_item {
            border-radius: 10px;
            border: 1px solid #d8d8d8;

            a {
              display: grid;
              grid-template-columns: 150px 1fr;
              align-items: center;
              padding: 0px 50px;
              min-height: 250px;
              column-gap: 40px;
              box-shadow: none;
              text-decoration: none;
              transition: box-shadow 0.3s ease;

              &:hover {
                box-shadow: 2px 11px 20px rgb(135 200 225 / 30%);
              }

              @media (max-width: 768px) {
                grid-template-columns: 1fr;
                padding: 20px 16px;
                row-gap: 30px;
              }

              .icon {
                width: 150px;
                aspect-ratio: 1/1;
                background-color: #f3f6f9;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;

                @media (max-width: 768px) {
                  margin: 0px auto;
                  width: 110px;
                }

                svg {
                  @media (max-width: 768px) {
                    transform: scale(0.9);
                  }
                }
              }

              .info {
                @media (max-width: 768px) {
                  text-align: center;
                }

                h5 {
                  margin-top: 0px;
                  margin-bottom: 25px;
                }

                ul {
                  padding-left: 0px;
                  margin: 0px 0px;
                  list-style: none;

                  @media (max-width: 768px) {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                  }

                  li {
                    padding-left: 22px;
                    position: relative;
                    padding-bottom: 11px;

                    &::before {
                      content: '';
                      position: absolute;
                      left: 5px;
                      top: 7px;
                      width: 6px;
                      aspect-ratio: 1/1;
                      border-radius: 50%;
                      background-color: #f9a13a;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }

    .bg-img {
      position: absolute;
      right: 0;
      top: 5rem;
      transform: translateX(30px);
      z-index: 4;
    }
  }
}

/* ESG頁面CSS */
.esg-content {
  .esg-committee {
    padding: 4.8vw 0;
    position: relative;

    .bg {
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: -1;
    }

    .container {
      display: grid;
      grid-template-columns: 1fr 51.4%;
      gap: 10rem 0;
      padding-top: 1.1vw;
      padding-bottom: 1.1vw;
      justify-content: center;
      align-items: center;

      @media (max-width: 1240px) {
        grid-template-columns: 1fr;
      }
    }

    .info {
      max-width: 667px;

      @media (max-width: 1240px) {
        margin-right: 0;
        max-width: 100%;
      }

      ul {
        display: flex;
        margin-top: 3.7rem;
        flex: auto;
        flex-wrap: wrap;
        gap: 14px 17px;

        @media (max-width: 540px) {
          flex-direction: column;
        }

        li {
          display: flex;
          align-items: center;
          padding: 16px 20px;
          border-radius: 10px;
          box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);

          @media (max-width: 768px) {
            width: calc(50% - 8.5px);
          }

          @media (max-width: 540px) {
            width: 100%;
          }

          span {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 0.9rem;
            padding-top: 2px;
          }

          img {
            max-width: 100%;
            height: auto;
            max-height: 2.3rem;
            width: auto;
          }
        }
      }
    }

    .img {
      display: flex;
      justify-content: center;
      align-items: center;

      img {
        @media (max-width: 700px) {
          transform: scale(1.1);
        }
      }
    }
  }
  .esg-section {
    background: #f3f6f9;
    padding: 9rem 0;

    .container {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      .title {
        position: absolute;
        left: 7%;
        top: 0;
      }

      .img {
        padding-top: 4rem;

        @media (max-width: 768px) {
          display: none;
        }
      }

      .img_mob {
        display: none;
        padding-top: 11rem;

        @media (max-width: 768px) {
          display: block;
        }
      }
    }
  }
}

.stakeholders-content {
  .esg-stakeholders {
    padding: 2.5vw 0;
    margin-bottom: 3vw;

    .container {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;

      .traveling {
        align-self: flex-end;
        animation: blink 3s infinite;
        display: flex;
        align-items: center;
        visibility: hidden;

        @media (max-width: 1500px) {
          visibility: visible;
        }

        i {
          font-size: 3rem;
        }
      }

      .table-scroll-wrapper {
        overflow-y: hidden;

        .stakeholder-table {
          margin: 0 0 2rem 0;
          font-weight: 400;

          table {
            width: 100%;
            min-width: 1460px;
            padding: 20px 0;
            border-collapse: collapse;

            thead {
              text-align: center;

              tr {
                border-bottom: 4px solid #fff;

                th {
                  font-weight: 400;
                  background: #174486;
                  padding: 20px 12px;

                  &:first-child {
                    border-radius: 15px 0 0 15px;
                    border: none;
                  }
                  &:last-child {
                    border-radius: 0 15px 15px 0;
                    border: none;
                  }
                }
              }
            }

            tbody {
              tr {
                td {
                  text-align: start;

                  &:first-child {
                    text-align: center;
                    font-weight: 600;
                  }
                }

                &:first-child td {
                  &:first-child {
                    border-radius: 15px 0 0 0;
                  }

                  &:last-child {
                    border-radius: 0 15px 0 0;
                  }
                }

                &:nth-child(4) td {
                  &:nth-child(4) {
                    text-align: center;
                    padding: 0 12px 0 9px;
                  }
                }

                &:nth-child(odd) td {
                  background-color: #e5edf6;
                }

                &:nth-child(even) td {
                  background-color: #fff;
                  border: 1px solid #e5edf6;

                  .cell-flex li {
                    & + li::before,
                    span + span::before {
                      background-color: #e5edf6;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

.environment-content {
  .esg-invest {
    padding-top: 3vw;
    margin-bottom: -15rem;

    @media (max-width: 1240px) {
      margin-bottom: 5rem;
    }

    .container {
      .title {
        text-align: center;
        margin-bottom: 3vw;
      }

      ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;

        @media (max-width: 1024px) {
          grid-template-columns: 1fr;
        }

        li {
          background-color: #e6eef6;
          border-radius: 23px;
          padding: 2.4vw 1rem;
          display: flex;
          align-items: center;
          position: relative;
          transition: all 0.4s ease;

          @media (max-width: 1240px) {
            flex-direction: column;
            align-items: center;
          }

          @media (max-width: 1024px) {
            flex-direction: row;
            align-items: center;
          }

          @media (max-width: 768px) {
            flex-direction: column;
          }

          &:hover {
            box-shadow: 4px 5px 25px rgba(0, 0, 0, 0.1);
          }

          &.full {
            grid-column: 1 / -1;

            img {
              @media (max-width: 1024px) {
                max-height: 15.7rem !important;
              }
            }
          }

          .img {
            padding: 0 42px;
            flex-shrink: 0;

            @media (max-width: 1024px) {
              flex-basis: 300px;
            }

            @media (max-width: 768px) {
              flex-basis: auto;
            }
          }

          .info {
            padding-left: 0.2vw;
            padding-right: 2vw;

            @media (max-width: 1240px) {
              padding-right: 0;
              text-align: center;
            }

            @media (max-width: 1024px) {
              padding-right: 0;
              text-align: start;
            }

            @media (max-width: 768px) {
              padding: 0rem 1rem 1rem;
              text-align: center;
            }

            h4 {
              margin-top: 0rem;
              display: inline-flex;
              align-items: center;
              margin-bottom: 2rem;
              position: relative;

              @media (max-width: 1240px) {
                justify-content: center;
                margin-top: 29px;
              }

              @media (max-width: 1024px) {
                justify-content: start;
                margin-top: 0rem;
              }

              @media (max-width: 768px) {
                justify-self: center;
                margin-top: 29px;
              }

              &::after {
                content: '';
                position: absolute;
                bottom: -15%;
                left: 0;
                width: 0%;
                height: 3px;
                background-color: #f3a351;
              }

              span {
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 50%;
                min-width: 40px;
                min-height: 40px;
                background-color: #f6a247;
                margin-right: 1rem;
              }
            }
          }
        }
      }
    }
  }

  .esg-plan {
    padding-top: 23.2rem;
    padding-bottom: 7.5rem;
    background-color: #f3f6f9;

    @media (max-width: 1024px) {
      padding-top: 7.5rem;
    }

    .container {
      display: flex;
      align-items: center;
      position: relative;
      padding: 2rem 0;

      @media (max-width: 1024px) {
        flex-direction: column;
        padding: 0rem 5vw;
      }

      .info {
        flex-basis: 60%;
        border-radius: 22px;
        background-color: #fff;
        padding: 2.4vw 4.3vw;

        @media (max-width: 1024px) {
          width: 100%;
        }

        .content {
          margin-top: 2vw;
          max-width: 615px;

          @media (max-width: 1024px) {
            max-width: 100%;
          }

          ul {
            display: flex;
            margin-top: 3.7rem;
            flex-wrap: wrap;
            gap: 18px 20px;

            @media (max-width: 450px) {
              flex-direction: column;
            }

            li {
              display: flex;
              align-items: center;
              padding: 16px 20px;
              border-radius: 26px;
              background-color: #f3f6f9;

              @media (max-width: 768px) {
                width: calc(50% - 10px);
              }

              @media (max-width: 450px) {
                width: 100%;
              }

              span {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-right: 0.4vw;
                padding-top: 2px;
              }

              img {
                max-width: 100%;
                height: auto;
                max-height: 2.3rem;
                width: auto;
              }
            }
          }
        }
      }
      .img {
        flex: 1;
        position: relative;

        img {
          position: absolute;
          top: 50%;
          right: 3%;
          transform: translateY(-50%);
          border-radius: 30px;

          transition: all 0.3s;

          @media (max-width: 1024px) {
            position: static;
            transform: translateY(0%);
            max-width: 100% !important;
            margin-top: 7vw;
          }
        }
      }

      .link {
        position: absolute;
        top: 11rem;
        right: 10.5%;
        z-index: 10;

        @media (max-width: 1280px) {
          top: 10rem;
          bottom: 0;
          right: 3%;
        }

        @media (max-width: 1200px) {
          top: 7.9rem;
          bottom: 0;
          right: 3%;
        }

        @media (max-width: 1024px) {
          top: auto;
          bottom: 0;
          right: 0;
        }

        a {
          padding: 1em 1.9em;
          display: flex;
          justify-content: center;
          text-align: center;
          align-items: center;
          gap: 0 16px;
          background-color: #f6a247;
          border-radius: 11px;
          color: #fff;
          transition: all 0.4s;

          .download {
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            min-height: 1.6em;
            min-width: 1.6em;
            border: 1px solid #fff;
            transition: all 0.4s;
          }

          .text {
            overflow: hidden;

            span {
              position: relative;
              transition: all 0.4s;

              &::before {
                content: attr(data-title);
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                transform: translateY(100%);
              }
            }
          }

          i {
            &.icon-pdf {
              font-size: 3.4rem;
            }
            &.icon-scroll-arrow {
              font-size: 0.9rem;
            }
          }
          &:hover {
            background-color: #edb332;

            .download {
              background-color: #fff;
              color: #eab443;
            }
            .text span {
              transform: translate3d(0, -100%, 0);
            }
          }
        }
      }
    }
  }
}

.cybersecurity-content {
  .esg-cybersecurity {
    .container {
      .section_1 {
        padding-top: 4.9vw;
        display: flex;
        align-items: center;

        @media (max-width: 1280px) {
          flex-direction: column;
        }

        .info {
          padding-right: 2rem;

          @media (max-width: 1280px) {
            padding-right: 0rem;
          }

          .list {
            padding-right: 3rem;

            @media (max-width: 1280px) {
              padding-right: 0rem;
            }
          }
        }

        .img {
          flex-shrink: 0;

          @media (max-width: 1280px) {
            display: none;
            padding-top: 4rem;
            align-self: flex-end;
          }
        }
      }

      .section_2 {
        padding-top: 9rem;
        display: flex;

        @media (max-width: 1280px) {
          flex-direction: column;
          padding-top: 0rem;
        }

        .info {
          padding-top: 6rem;

          @media (max-width: 1280px) {
            padding-top: 0rem;
          }
        }

        .img {
          flex-shrink: 0;
          padding-right: 7.3rem;
          transform: translateY(9%);

          @media (max-width: 1280px) {
            display: none;
            padding-top: 4rem;
            order: 1;
            align-self: flex-end;
          }
        }
      }

      .mob_img {
        display: none;

        @media (max-width: 1280px) {
          margin-top: 5rem;
          display: flex;
          margin-bottom: -5rem;
          justify-content: center;
        }
      }
    }
  }

  .esg-result {
    background-color: #f3f6f9;
    padding-top: 12.4rem;
    padding-bottom: 9.6rem;

    .container {
      .section_3 {
        padding: 4.3vw 2.9vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
        border-radius: 22px;
        margin-bottom: 9.5rem;

        @media (max-width: 1280px) {
          flex-direction: column;
        }

        .info {
          margin-right: auto;

          ul li {
            display: flex;

            @media (max-width: 768px) {
              flex-direction: column;
            }
          }
        }

        .img {
          padding-right: 2.4%;
          flex-basis: 36.3vw;

          @media (max-width: 1280px) {
            padding-top: 5rem;
            flex-basis: auto;
          }

          img {
            margin-bottom: -12rem;

            @media (max-width: 1280px) {
              margin-bottom: 0rem;
            }
          }
        }
      }

      .section_4 {
        margin-bottom: 6rem;

        .result-table table {
          width: 100%;
          table-layout: fixed;

          thead {
            text-align: center;

            tr th {
              color: #fff;
              font-weight: 400;
              background: #174486;
              padding: 16px 12px;
              border-color: #174486;

              &:first-child {
                border-radius: 13px 0 0 13px;
                border: none;
              }
              &:last-child {
                border-radius: 0 13px 13px 0;
                border: none;
              }
            }
          }

          tbody {
            text-align: center;

            tr {
              td {
                padding: 12px 12px;
              }

              &:first-child td {
                &:first-child {
                  border-radius: 13px 0 0 0;
                }

                &:last-child {
                  border-radius: 0 13px 0 0;
                }
              }

              &:nth-child(odd) td {
                background-color: #fff;
                border-color: #fff;

                &:first-child {
                  background-color: #b5c9e2;
                  border-color: #b5c9e2;
                }
              }

              &:nth-child(even) td {
                background-color: #e5edf6;
                border-color: #e5edf6;

                &:first-child {
                  background-color: #c1d4ec;
                  border-color: #c1d4ec;
                }
              }
            }
          }
        }
      }

      .section_5 {
        .result-table table {
          width: 100%;
          table-layout: fixed;

          thead {
            text-align: center;

            tr th {
              color: #fff;
              font-weight: 400;
              background: #f08c28;
              padding: 16px 12px;
              border-color: #f08c28;

              &:first-child {
                border-radius: 13px 0 0 13px;
                border: none;
              }

              &:last-child {
                border-radius: 0 13px 13px 0;
                border: none;
              }
            }
          }

          tbody {
            text-align: center;

            tr {
              td {
                padding: 12px 12px;
              }

              &:first-child td {
                &:first-child {
                  border-radius: 13px 0 0 0;
                }

                &:last-child {
                  border-radius: 0 13px 0 0;
                }
              }

              &:nth-child(odd) td {
                background-color: #fff;
                border-color: #fff;

                &:first-child {
                  background-color: #fde9d3;
                  border-color: #fde9d3;
                }
              }

              &:nth-child(even) td {
                background-color: #f3f1ed;
                border-color: #f3f1ed;

                &:first-child {
                  background-color: #fee1bf;
                  border-color: #fee1bf;
                }
              }
            }
          }
        }
      }
    }
  }
}

.workplace-content {
  .esg-workplace {
    padding-top: 3.7vw;

    @media (max-width: 1280px) {
      padding-bottom: 4vw;
    }

    .container {
      display: grid;
      grid-template-columns: 48% 1fr;
      align-items: center;

      @media (max-width: 1280px) {
        grid-template-columns: 1fr;
      }

      .img {
        display: flex;
        justify-content: center;
        position: relative;

        @media (max-width: 1280px) {
          margin: 0 auto;
        }

        img {
          transform: translateY(5%);
          border-radius: 24px;
          transition: all 0.3s ease;

          @media (max-width: 1440px) {
            transform: translateY(0%);
          }
        }

        .link {
          position: absolute;
          bottom: 1.6%;
          right: 5.5%;
          z-index: 10;

          @media (max-width: 1280px) {
            bottom: 0;
            right: 0;
          }

          a {
            padding: 1em 1.9em;
            display: flex;
            justify-content: center;
            /*text-align: center;*/
            align-items: center;
            gap: 0 16px;
            background-color: #f6a247;
            border-radius: 11px;
            color: #fff;
            transition: all 0.4s;

            .download {
              display: flex;
              justify-content: center;
              align-items: center;
              border-radius: 50%;
              min-height: 1.6em;
              min-width: 1.6em;
              border: 1px solid #fff;
              transition: all 0.4s;
            }

            .text {
              overflow: hidden;

              span {
                position: relative;
                transform: translate3d(0, 0%, 0);
                transition: all 0.4s;

                &::before {
                  content: attr(data-title);
                  position: absolute;
                  top: 0;
                  left: 0;
                  width: 100%;
                  height: 100%;
                  transform: translateY(100%);
                }
              }
            }

            i {
              &.icon-pdf {
                font-size: 3.4rem;
              }
              &.icon-scroll-arrow {
                font-size: 0.9rem;
              }
            }

            &:hover {
              background-color: #edb332;

              .download {
                background-color: #fff;
                color: #eab443;
              }

              .text span {
                transform: translate3d(0, -100%, 0);
              }
            }
          }
        }
      }

      .info {
        padding: 4rem 2rem 0 4.8vw;

        @media (max-width: 1280px) {
          padding: 4rem 0 0;
        }
      }
    }
  }

  .esg-welfare {
    padding-top: 9.8rem;
    padding-bottom: 8.2rem;
    background-color: #f3f6f9;

    .container {
      ul {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        justify-content: space-between;
        gap: 2vw 0px;
        padding: 0rem 0.7vw;

        @media (max-width: 1024px) {
          grid-template-columns: repeat(3, 1fr);
          gap: 3rem 0;
        }

        @media (max-width: 768px) {
          grid-template-columns: repeat(2, 1fr);
          gap: 3rem 0;
        }

        li {
          display: flex;
          align-items: center;
          flex-wrap: wrap;
          flex-direction: column;

          .icon {
            background-color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 38%;
            min-width: 110px;
            aspect-ratio: 1/1;
            border-radius: 50%;
            box-shadow: 4px 5px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;

            &:hover {
              transform: translateY(-10%);
            }

            img {
              padding: 0.4rem;
            }
          }

          span {
            padding-top: 2rem;
            text-align: center;
            font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);
          }
        }
      }
    }
  }

  .esg-train {
    padding: 4.2vw 0rem;

    @media (max-width: 1024px) {
      padding: 4.2vw 0rem 8vw 0rem;
    }

    .container {
      display: flex;
      align-items: center;

      @media (max-width: 1024px) {
        flex-direction: column;
      }

      .info {
        padding-right: 7rem;
        padding-top: 4.1rem;

        @media (max-width: 1024px) {
          padding-right: 0rem;
        }

        @media (max-width: 500px) {
          padding-right: 0rem;
        }
      }

      .img {
        flex-shrink: 0;
      }
    }

    .list {
      padding-top: 6.6rem;

      h3 {
        @media (max-width: 1280px) {
          margin-bottom: 4rem;
        }
      }

      ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 7rem 4.7rem;

        li {
          flex: 0 0 calc((100% - 4.7rem * 2) / 3);
          list-style: none;
          display: flex;
          flex-direction: column;
          align-items: center;
          overflow: hidden;
          transition: all 0.3s ease;

          @media (max-width: 1024px) {
            flex: 0 0 100%;
          }

          &:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
          }

          .img {
            position: relative;
            margin-bottom: 2rem;
            transition: all 0.3s ease;

            span {
              position: absolute;
              top: 0;
              left: 0;
              width: 200px;
              z-index: 10;
              padding: 1.2rem 2.6rem;
              border-radius: 0 0 24px 0;
              background-color: #174486;
              transition: width 0.3s ease;
            }
          }

          .info {
            padding: 0rem 2.2vw 1vw 2.2vw;
          }
        }
      }
    }
  }

  .esg-retirement {
    padding: 10.7rem 0rem;
    background-color: #f3f6f9;

    @media (max-width: 768px) {
      padding: 8vw 0rem;
    }

    .container {
      padding: 0rem 0.4vw;
      display: flex;

      @media (max-width: 768px) {
        padding: 0rem 5vw;
        flex-direction: column;
        align-items: center;
      }

      .img {
        position: relative;
        flex: 1;

        @media (max-width: 1440px) {
          overflow: hidden;
        }

        @media (max-width: 768px) {
          overflow: visible;
          margin-bottom: 2rem;
          width: 100%;
        }

        img {
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          height: auto;
          max-height: 75rem;
          width: 115%;

          @media (max-width: 1440px) {
            width: auto;
            height: 100%;
          }

          @media (max-width: 768px) {
            height: auto;
            width: 100%;
            position: static;
            transform: translateY(0%);
          }
        }
      }

      .info {
        z-index: 10;
        display: flex;
        flex-direction: column;
        max-width: 67%;
        padding: 1.9vw 0rem;
        row-gap: 5rem;

        @media (max-width: 1440px) {
          padding: 0rem 0rem;
          row-gap: 0rem;
          height: 100%;
        }

        @media (max-width: 768px) {
          max-width: 100%;
        }

        .item {
          max-width: 1000px;
          padding: 0.3rem 0rem;
          background-color: #fff;
          border-radius: 24px;
          display: flex;
          align-items: center;

          @media (max-width: 1440px) {
            padding: 3rem 0rem;
            flex-grow: 1;
          }

          .item-info {
            padding-left: 6.2rem;
            padding-right: 5vw;

            @media (max-width: 768px) {
              padding: 0rem 3rem;
            }
          }

          &:first-child {
            margin-bottom: auto;

            @media (max-width: 1440px) {
              border-radius: 0 24px 0 0;
            }

            @media (max-width: 768px) {
              border-radius: 24px 24px 0 0;
            }

            .item-img {
              flex-shrink: 0;

              @media (max-width: 1280px) {
                display: none;
              }

              img {
                transform: translate(-5%, 9%);
              }
            }
          }

          &:last-child {
            @media (max-width: 1440px) {
              border-radius: 0 0 24px 0;
            }

            @media (max-width: 1280px) {
              flex-direction: column;
            }

            @media (max-width: 768px) {
              border-radius: 0 0 24px 24px;
            }

            .item-img {
              flex-shrink: 0;

              @media (max-width: 1280px) {
                align-self: end;
              }

              @media (max-width: 768px) {
                align-self: center;
              }

              img {
                transform: translate(-16%, 9%);

                @media (max-width: 1280px) {
                  transform: translate(0%, 31%);
                  width: 22rem !important;
                }

                @media (max-width: 768px) {
                  transform: translate(0%, 8%);
                  width: 27rem !important;
                }
              }
            }
          }
        }
      }
    }
  }

  .esg-equality {
    padding: 10.3rem 0rem;

    .equality-table table {
      margin: 0;
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;

      thead {
        text-align: center;

        tr {
          padding-bottom: 1px;

          th {
            color: #fff;
            font-weight: 400;
            background: #f6a247;
            padding: 16px 12px;

            &:first-child {
              border-radius: 13px 0 0 13px;
              border-right-color: #fff;
            }

            &:last-child {
              border-radius: 0 13px 13px 0;
            }
          }
        }
      }

      tbody {
        text-align: center;
        border-top: 5px solid #fff;

        tr {
          td {
            padding: 16px 12px;
            border-right-color: #f1f1f1;
            border-bottom-color: #e4e4e4;

            &:last-child {
              border-right: none;
            }
          }

          &:nth-child(2) td,
          &:nth-child(4) td,
          &:nth-child(6) td,
          &:nth-child(8) td,
          &:nth-child(9) td,
          &:nth-child(12) td,
          &:nth-child(13) td {
            background-color: #f3f1ed;
            border-right-color: #fff;
            border-left-color: #fff;
            border-bottom-color: #fff;
          }

          &:nth-child(1) td:first-child,
          &:nth-child(8) td:first-child {
            background-color: #fde9d3;
            border-color: #fff;
          }

          &:nth-child(3) td:first-child {
            background-color: #fee1bf;
            border-color: #fff;
          }

          &:first-child td:first-child {
            border-radius: 13px 0 0 0;
          }

          &:first-child td:last-child {
            border-radius: 0 13px 0 0;
          }

          &:last-child td {
            background-color: #e4e4e4;
            border-color: #fff;
          }
        }
      }
    }
  }

  .esg-health {
    background-color: #f3f6f9;
    padding: 7.1rem 0rem;

    .container {
      .item-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 26px;

        @media (max-width: 1280px) {
          grid-template-columns: 1fr;
          row-gap: 2rem;
        }

        .item {
          border-radius: 11px;
          padding: 6.1rem 3.6rem;
          background-color: #fff;
          display: flex;
          align-items: center;
          transition: all 0.3s ease;

          &:hover {
            box-shadow: 4px 5px 25px rgba(0, 0, 0, 0.1);
          }

          @media (max-width: 500px) {
            flex-direction: column;
            justify-content: center;
            row-gap: 2rem;
          }

          .info {
            padding-right: 1rem;

            @media (max-width: 1280px) {
              padding-right: 0rem;
            }
          }

          &:first-child .img {
            flex-shrink: 0;
            padding-right: 3.5rem;
          }

          &:last-child .img {
            flex-shrink: 0;
            padding-right: 4.1rem;
            padding-left: 2.6rem;
          }
        }
      }
    }
  }
}

.community-content {
  .container {
    padding: 5vw 0rem;

    @media (max-width: 768px) {
      padding: 5vw 5vw;
    }

    .content_top {
      display: grid;
      grid-template-columns: 64.2% 1fr;
      align-items: center;
      margin-bottom: 5rem;

      @media (max-width: 1024px) {
        grid-template-columns: 1fr;
      }

      .img {
        position: relative;
        border-radius: 0px;
        border-radius: 24px;
        overflow: hidden;

        @media (max-width: 1024px) {
          margin-bottom: -2rem;
        }

        &:hover {
          img {
            transform: scale(1.1);
          }
        }

        img {
          transition: all 0.3s ease;

          @media (max-width: 1024px) {
            width: 100% !important;
          }
        }
      }

      .info {
        background-color: #fff;
        position: relative;
        border-radius: 0px 0 40px 0;
        box-shadow: 25px 0 30px rgba(0, 0, 0, 0.1);
        padding: 4.4vw 5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -3rem;
        transition: all 0.3s ease;

        @media (max-width: 1024px) {
          margin-left: 0rem;
        }

        @media (max-width: 768px) {
          padding: 4.4vw 2.6vw;
        }

        .content {
          max-width: 426px;

          @media (max-width: 1024px) {
            max-width: 100%;
          }

          span {
            position: relative;
            display: inline-block;

            &::after {
              content: '';
              position: absolute;
              top: 50%;
              left: 120%;
              transform: translateY(-50%);
              width: 5.2rem;
              height: 1px;
              background-color: #6c93c7;
            }
          }

          .icon {
            position: absolute;
            right: 8%;
            bottom: 2%;
          }
        }
      }
    }

    .content_list {
      .list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 3rem;

        @media (max-width: 1024px) {
          grid-template-columns: repeat(2, 1fr);
          row-gap: 4rem;
        }

        @media (max-width: 600px) {
          grid-template-columns: 1fr;
        }

        li {
          display: flex;
          flex-direction: column;
          align-items: center;
          transition: all 0.3s ease;

          &:hover {
            .img img {
              transform: scale(1.1);
            }
          }

          .img {
            width: 100%;
            height: auto;

            border-radius: 11px;
            overflow: hidden;

            img {
              transition: all 0.3s ease;
            }
          }

          .info {
            margin-top: -4rem;
            padding: 1.3vw 3.8rem;
            background-color: #fff;
            max-width: 41rem;
            border-radius: 11px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: center;
            position: relative;
            z-index: 10;

            @media (max-width: 1200px) {
              padding: 1.3vw 2rem;
            }

            @media (max-width: 1024px) {
              max-width: 90%;
            }

            @media (max-width: 600px) {
              margin-top: -2rem;
            }

            p {
              font-size: clamp(1.4rem, 1.1143rem + 0.9143vw, 1.8rem);
            }
          }
        }
      }
    }
  }
}

.supplier-content {
  .main {
    margin-bottom: -5.8vw;
    padding-top: 3vw;

    @media (max-width: 1280px) {
      margin-bottom: 0rem;
      padding-bottom: 5rem;
    }

    .container {
      display: flex;
      align-items: center;
      flex-direction: column;

      p {
        span {
          display: inline;
        }
      }

      .lists {
        padding: 0rem 1.6vw;
        width: 100%;
        display: flex;
        justify-content: space-between;
        row-gap: 5rem;
        flex-wrap: wrap;

        @media (max-width: 1024px) {
          justify-content: space-evenly;
        }

        li {
          background-color: #fff;
          height: auto;
          width: 16.7%;
          min-width: 187px;

          aspect-ratio: 240 / 272;
          border-radius: 17px;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          box-shadow: 0 10px 30px rgba(33, 109, 183, 0.1);
          transition: all 0.3s ease;

          @media (max-width: 1024px) {
            width: 26.2%;
          }

          @media (max-width: 700px) {
            min-width: 155px;
          }

          &:hover {
            transform: translateY(-5%);
          }

          .icon {
            width: 40%;
            display: flex;
            justify-content: center;
            margin-bottom: 3.8rem;
            padding-top: 1.4rem;

            img {
              max-width: 100px;
            }
          }

          p {
            text-align: center;
            font-size: clamp(1.6rem, 1.1172rem + 1.1034vw, 2rem);
            padding: 0rem 5%;
          }
        }
      }
    }
  }

  .example {
    background-color: #f3f6f9;

    .criteria {
      padding-top: 17.6rem;

      @media (max-width: 1280px) {
        padding-top: 6.6rem;
      }

      .container {
        padding: 0rem 3rem;
        display: flex;
        align-items: center;

        @media (max-width: 1280px) {
          flex-direction: column;
        }

        .info {
          flex: 1;
          min-width: 465px;
          padding-right: 3rem;
          padding-top: 4rem;

          @media (max-width: 1280px) {
            padding: 0rem 0rem;
            min-width: auto;
          }
        }
        .img {
          @media (max-width: 1280px) {
            padding-top: 2rem;
          }
        }
      }
    }

    .lists {
      padding-top: 5.4rem;
      padding-bottom: 9.4rem;

      @media (max-width: 1280px) {
        padding-top: 8rem;
      }

      ul {
        row-gap: 4rem;
        display: flex;
        flex-direction: column;

        li {
          padding: 3.5rem 4.5rem;
          display: flex;
          align-items: center;
          background-color: #fff;
          box-shadow: 0 10px 30px rgba(33, 109, 183, 0.1);
          border-radius: 18px;
          transition: all 0.3s ease;

          @media (max-width: 700px) {
            flex-direction: column;
            text-align: center;
          }

          &:hover {
            box-shadow: 4px 5px 25px rgba(0, 0, 0, 0.1);
          }

          .icon {
            padding-right: 4.5rem;
            transition: all 0.3s ease;

            @media (max-width: 700px) {
              padding-right: 0rem;
              padding-bottom: 2rem;
            }

            .icon-wrap {
              display: flex;
              justify-content: center;
              align-items: center;
              aspect-ratio: 1/1;
              width: 150px;
              background-color: #f3f6f9;
              border-radius: 50%;

              img {
                max-width: 70px;
              }
            }
          }
        }
      }
    }
  }
}

.reports-content {
  padding-top: 3.35vw;

  .reports_new {
    margin-bottom: -319px;

    .container {
      .title {
        margin-bottom: 53px;
        text-align: center;
      }

      .content {
        display: grid;
        grid-template-columns: minmax(552px, 1fr) minmax(400px, 600px);

        @media (max-width: 1200px) {
          grid-template-columns: 1fr;
        }

        .info {
          border-radius: 0 30px 50px 30px;
          box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px,
            rgba(17, 17, 26, 0.1) 0px 16px 48px;
          display: flex;
          align-items: center;
          padding-left: 105px;
          padding-right: 105px;
          background-color: #fff;

          @media (max-width: 1200px) {
            order: 1;
            padding: 20px 20px;
            border-radius: 0px 0 30px 30px;
            margin-top: -15px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 10;
          }

          .wrap {
            max-width: 652px;
            margin-right: 1.7vw;

            @media (max-width: 1200px) {
              max-width: 100%;
              margin-right: 0px;
              text-align: center;
            }

            .info_title {
              h4 {
                margin-top: 0;
                margin-bottom: 0;
                padding-bottom: 20px;
                border-bottom: 1px solid #d8d8d8;
                font-size: 40px;

                @media (max-width: 1440px) {
                  font-size: 30px;
                }

                @media (max-width: 1200px) {
                  font-size: 25px;
                }
              }

              p {
                padding-top: 20px;
                min-height: 112px;
              }
            }

            .link {
              padding-top: 2.125rem;

              a {
                padding: 1em 1.9em;
                display: inline-flex;
                justify-content: center;
                text-align: center;
                align-items: center;
                gap: 0 16px;
                background-color: #f6a247;
                border-radius: 11px;
                color: #fff;
                transition: all 0.4s;

                .download {
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  border-radius: 50%;
                  min-height: 1.6em;
                  min-width: 1.6em;
                  border: 1px solid #fff;
                  transition: all 0.4s;
                }

                .text {
                  overflow: hidden;

                  span {
                    position: relative;
                    transform: translate3d(0, 0%, 0);
                    transition: all 0.4s;

                    &::before {
                      content: attr(data-title);
                      position: absolute;
                      top: 0;
                      left: 0;
                      width: 100%;
                      height: 100%;
                      transform: translateY(100%);
                    }
                  }
                }

                i {
                  &.icon-pdf {
                    font-size: 3.4rem;
                  }
                  &.icon-scroll-arrow {
                    font-size: 0.9rem;
                  }
                }

                &:hover {
                  background-color: #edb332;

                  .download {
                    background-color: #fff;
                    color: #eab443;
                  }

                  .text span {
                    transform: translate3d(0, -100%, 0);
                  }
                }
              }
            }
          }
        }

        .img {
          padding: 35px 0px;
          position: relative;
          z-index: 10;

          &:hover {
            img {
              transform: scale(1.045);
            }
          }

          @media (max-width: 1200px) {
            order: 0;
            padding: 0px 0px;
            z-index: 0;
            display: flex;
            justify-content: center;
          }

          .wrap {
            display: inline-block;
            overflow: hidden;
            border-radius: 20px;
            transform: translateX(-5.2vw);

            @media (max-width: 1200px) {
              transform: translateX(0);
              margin: 0px auto;
            }

            img {
              max-width: 100%;
              height: auto;
              box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
              border-radius: 20px;
              display: block;
              transition: transform 0.3s ease;

              @media (max-width: 1200px) {
                margin: 0px auto;
              }
            }
          }
        }
      }
    }
  }

  .reports_history {
    background-color: #f3f6f9;
    padding-top: calc(319px + 100px);
    padding-bottom: 145px;

    .container {
      .history_list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
        list-style: none;
        padding-left: 0px;
        gap: 30px;

        @media (max-width: 768px) {
          grid-template-columns: 1fr;
        }

        .item {
          a {
            display: block;
            text-decoration: none;
            max-width: 720px;
            margin: 0px auto;

            &:hover {
              .img {
                img {
                  transform: scale(1.05);
                }
              }

              .info {
                .icon {
                  background-color: #f9a13a;

                  svg {
                    path {
                      fill: #fff;
                    }
                  }
                }
              }
            }

            .img {
              margin-bottom: 20px;
              border-radius: 10px;
              overflow: hidden;

              img {
                display: block;
                max-width: 100%;
                height: auto;
                transition: transform 0.3s ease-out;
              }
            }

            .info {
              display: flex;
              align-items: center;
              justify-content: space-between;

              span {
                font-size: clamp(18px, 0.6806rem + 0.9259vw, 22px);
              }

              .icon {
                width: 50px;
                aspect-ratio: 1/1;
                border-radius: 50%;
                border: 2px solid #f9a13a;
                display: flex;
                justify-content: center;
                align-items: center;
                transition: background-color 0.3s ease;

                svg {
                  path {
                    transition: fill 0.3s ease;
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

/* investors頁面CSS */
.investors-content {
  padding-top: 60px;
  padding-bottom: 78px;

  @media (max-width: 768px) {
    padding-top: 0px;
  }

  .container {
    .title {
      text-align: center;

      @media (max-width: 1024px) {
        margin-bottom: 30px;
      }

      h5 {
        margin-top: 0px;
        margin-bottom: 25px;
        font-size: clamp(2.2rem, 1.1333rem + 2.2222vw, 2.8rem);
      }

      .investors_nav {
        a {
          text-decoration: none;
          padding: 10px 20px;
          position: relative;
          font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);

          &.active {
            color: #0e4589;
            pointer-events: none;
          }

          & + a {
            &::before {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translate(-100%, -35%);
              height: 41%;
              width: 1px;
              background-color: black;
            }
          }
        }
      }
    }

    .subtitle {
      display: flex;
      justify-content: space-between;
      margin-bottom: 17.3px;

      @media (max-width: 768px) {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
      }

      .wrap {
        display: flex;
        align-items: center;
        column-gap: 20px;
        padding-left: 23.5px;

        @media (max-width: 768px) {
          padding-left: 0px;
        }

        h6 {
          margin: 0px 0px;
        }

        span {
          line-height: normal;
          transform: translateY(2px);
        }
      }

      .filter {
        position: relative;
        z-index: 50;

        &.is-open {
          .filter-menu {
            max-height: 1000px;
            transition: max-height 1s ease;
          }
        }

        .filter-toggle {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 20px 32px;
          min-width: 230px;
          border: 1px solid #e4e4e4;
          border-radius: 5px;
          background-color: #fff;

          span {
          }

          .icon {
            display: flex;
            align-items: center;
          }
        }

        .filter-menu {
          list-style: none;
          border-radius: 5px;
          padding: 0px 0px;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          max-height: 0px;
          overflow: hidden;
          margin: 0px 0px;
          transition: max-height 0.1s ease;

          li {
            background-color: #fff;
            min-height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            border-top: 1px solid #e4e4e4;
            border-left: 1px solid #e4e4e4;
            border-right: 1px solid #e4e4e4;

            &:hover {
              background-color: #0e4589;
              color: #fff;
              border-color: #0e4589 !important;
            }

            &:first-child {
              border-radius: 5px 5px 0 0;
            }

            &:last-child {
              border-radius: 0 0 5px 5px;
              border-bottom: 1px solid #e4e4e4;
            }
          }
        }
      }
    }

    .table_wrap {
      overflow: auto;

      table {
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
        min-width: 770px;

        thead {
          tr {
            th {
              background-color: #0e4589;
              color: #fff;
              height: 68px;

              &:first-child {
                border-radius: 10px 0 0 10px;
              }

              &:last-child {
                border-radius: 0 10px 10px 0;
              }

              & + th {
                border-left: 1px solid rgba(255, 255, 255, 0.3);
              }
            }
          }
        }

        tbody {
          tr {
            &:nth-child(odd) {
              td {
                background-color: #f3f6f9;
              }
            }

            &:nth-child(even) {
              td {
                background-color: #fff;
              }
            }

            td {
              height: 62px;
              text-align: center;
              border-bottom: 1px solid #e4e4e4;

              &:first-child {
                color: #0e4589;
              }

              & + td {
                border-left: 1px solid #e4e4e4;
              }
            }
          }
        }

        tfoot {
          tr {
            td {
              height: 65px;
              text-align: center;
              color: #007bd0;
              background-color: #e4e4e4;

              & + td {
                border-left: 1px solid rgba(255, 255, 255, 1);
              }
            }
          }
        }
      }
    }

    .table_wrap_finstatements {
      overflow: auto;

      table {
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;

        thead {
          @media (max-width: 768px) {
            visibility: hidden;
          }

          tr {
            th {
              background-color: #0e4589;
              color: #fff;
              height: 68px;

              &:first-child {
                border-radius: 10px 0 0 10px;
              }

              &:last-child {
                border-radius: 0 10px 10px 0;
              }

              & + th {
                border-left: 1px solid rgba(255, 255, 255, 0.3);
              }
            }
          }
        }

        tbody {
          width: 100%;

          @media (max-width: 768px) {
            display: block;
            margin-top: -50px;
          }

          tr {
            @media (max-width: 768px) {
              display: grid;
              grid-template-columns: repeat(4, 1fr);
              width: 500%;
              margin-bottom: 30px;
            }

            td {
              height: 140px;
              text-align: center;
              border-bottom: 1px solid #e4e4e4;

              &:first-child {
                color: #0e4589;

                @media (max-width: 768px) {
                  grid-column: 1/-1;
                  color: #fff;
                  background-color: #0e4589;
                  border-radius: 20px 20px 0 0;
                  height: 53px;
                }

                span {
                  @media (max-width: 768px) {
                    font-size: 26px;
                  }
                }
              }

              &:last-child {
                @media (max-width: 768px) {
                  border-right: 1px solid #e4e4e4;
                }
              }

              & + td {
                border-left: 1px solid #e4e4e4;
              }

              @media (max-width: 768px) {
                height: 114px;
                display: flex;
                justify-content: center;
                align-items: center;
              }

              .wrap {
                &.disable {
                  p {
                    opacity: 0;
                  }

                  .link {
                    opacity: 0;
                    pointer-events: none;
                  }
                }

                @media (max-width: 768px) {
                  display: flex;
                  row-gap: 8px;
                  flex-direction: column;
                }

                .title_mob {
                  display: none;
                  color: #0e4589;
                  font-size: 22px;

                  @media (max-width: 768px) {
                    display: block;
                  }
                }

                .link {
                  display: flex;
                  justify-content: center;
                  align-items: center;

                  a {
                    width: 60px;
                    aspect-ratio: 1/1;
                    border-radius: 50%;
                    background-color: #f3f6f9;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    transition: background 0.3s ease;

                    &:hover {
                      background-color: #0e4589;

                      svg {
                        path {
                          &:not(:first-child) {
                            fill: #fff;
                          }
                        }
                      }
                    }

                    svg {
                      path {
                        transition: fill 0.3s ease;
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }

    /*.table_wrap_finstatements_mob {
      display: none;

      @media (max-width: 768px) {
        display: block;
      }

      .finstatements_mob_list {
        margin: 0px 0px;
        padding-left: 0px;
        list-style: none;
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 20px;

        .list_item {
          border: 1px solid #e4e4e4;
          box-shadow: 4px 6px 20px rgba(105, 148, 201, 0.25);
          border-radius: 20px;
          padding: 27px 20px;

          h4 {
            color: #0e4589;
            text-align: center;
            margin-top: 0px;
            margin-bottom: 30px;
          }

          ul {
            margin: 0px 0px;
            padding-left: 0px;
            list-style: none;
            display: grid;
            grid-template-columns: 1fr;
            row-gap: 20px;

            li {
              &.disable {
                a {
                  pointer-events: none;

                  span {
                    color: #e4e4e4;

                    &::before {
                      background-color: #e4e4e4;
                    }
                  }

                  .icon {
                    background-color: transparent;

                    svg {
                      path {
                        fill: #e4e4e4;
                      }
                    }
                  }
                }
              }

              a {
                text-decoration: none;
                border-radius: 10px;
                outline: 1px solid #d8d8d8 !important;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0px 22px;
                min-height: 75px;
                box-shadow: none;
                column-gap: 10px;
                transition: outline-color, box-shadow 0.3s ease;

                &:hover {
                  outline-color: #0e4589 !important;
                  outline-width: 2px !important;
                  box-shadow: 6px 8px 20px 4px rgba(14, 69, 137, 0.2);

                  .icon {
                    background-color: #0e4589;

                    svg {
                      path {
                        &:not(:first-child) {
                          fill: #fff;
                        }
                      }
                    }
                  }
                }

                span {
                  padding-left: 38px;
                  position: relative;

                  @media (max-width: 768px) {
                    padding-left: 18px;
                  }

                  &::before {
                    content: '';
                    position: absolute;
                    left: 20px;
                    top: 13px;
                    width: 5px;
                    aspect-ratio: 1/1;
                    background-color: black;
                    border-radius: 50%;

                    @media (max-width: 768px) {
                      left: 5px;
                    }
                  }
                }

                .icon {
                  min-width: 60px;
                  aspect-ratio: 1/1;
                  background-color: #f3f6f9;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  border-radius: 50%;
                  transition: background-color 0.3s ease;

                  svg {
                    path {
                      transition: fill 0.3s ease;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }*/
  }
}

.conference-content {
  padding-top: 3.2vw;

  .conference_new {
    .container {
      display: grid;
      grid-template-columns: minmax(400px, 832px) 1fr;

      @media (max-width: 1024px) {
        grid-template-columns: 1fr;
      }

      .img {
        position: relative;
        overflow: hidden;

        @media (max-width: 1024px) {
          display: inline-block;
          margin: 0px auto;
        }

        img {
          border-radius: 25px;

          @media (max-width: 1440px) {
            max-width: none;
          }

          @media (max-width: 1024px) {
            max-width: 100%;
          }
        }

        .title {
          position: absolute;
          left: 0;
          bottom: 0;
          max-width: 216px;
          margin-left: 41.8px;
          margin-bottom: 37px;

          h3 {
            color: #fff;
            margin-top: 0px;
            margin-bottom: 4px;
            position: relative;

            &::before {
              position: absolute;
              top: 0;
              left: -41.8px;
              width: 9px;
              height: 100%;
              background-color: #f9a13a;

              content: '';
            }
          }

          p {
            color: #f0b212;
          }
        }
      }

      .info {
        display: flex;
        align-items: end;
        margin-left: -50px;

        @media (max-width: 1024px) {
          margin-left: 0px;
          margin-top: -25px;
        }

        .info_content {
          width: 100%;
          position: relative;
          z-index: 10;
          background-color: #fff;
          border-radius: 0px 0 50px 0;
          padding-top: 57px;
          padding-bottom: 52px;
          padding-left: 4.1vw;
          padding-right: 4.1vw;
          box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px,
            rgba(17, 17, 26, 0.1) 0px 16px 56px;

          @media (max-width: 1440px) {
            height: 100%;
          }

          @media (max-width: 1024px) {
            max-width: 832px;
            margin: 0px auto;
          }

          @media (max-width: 600px) {
            text-align: center;
          }

          h5 {
            margin-top: 0px;
            margin-bottom: 0px;
            padding-bottom: 28px;
            border-bottom: 1px solid #d8d8d8;
            color: #0e4589;
          }

          .info_meta {
            padding-top: 28px;
            padding-left: 0px;
            display: flex;
            flex-direction: column;
            row-gap: 16px;

            @media (max-width: 600px) {
              align-items: center;
            }

            li {
              display: flex;
              align-items: center;
              column-gap: 10px;

              .icon {
                display: flex;
                justify-content: center;
                align-items: center;
                min-width: 24px;
              }

              span {
                line-height: normal;
              }
            }
          }

          .info_actions {
            display: flex;
            column-gap: 20px;
            padding-top: 40px;

            @media (max-width: 1440px) {
              padding-top: 16px;
              flex-wrap: wrap;
              row-gap: 20px;
            }

            @media (max-width: 600px) {
              justify-content: center;
            }

            .link {
              a {
                width: 239px;
                min-height: 100px;
                border: 1px solid #d8d8d8;
                border-radius: 10px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                column-gap: 10px;
                background-color: #fff;

                @media (max-width: 1440px) {
                  min-height: 85px;

                  justify-content: start;
                  padding-left: 26px;
                  padding-right: 16px;
                }

                &:hover {
                  .icon_main_pdf {
                    background-color: #0e4589;

                    svg {
                      path {
                        &:not(:first-child) {
                          fill: #fff;
                        }
                      }
                    }
                  }

                  .icon_main_youtube {
                    background-color: #f9a13a;

                    svg {
                      path {
                        fill: #fff;
                      }
                    }
                  }

                  .icon_alt {
                    svg {
                      path {
                        fill: #000;
                      }
                    }
                  }

                  span {
                    color: #878787;
                  }
                }

                .icon_main_pdf {
                  width: 60px;
                  aspect-ratio: 1/1;
                  border-radius: 50%;
                  background-color: #f3f6f9;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  transition: background 0.3s ease;

                  svg {
                    path {
                      transition: fill 0.3s ease;
                    }
                  }
                }

                .icon_main_youtube {
                  width: 60px;
                  aspect-ratio: 1/1;
                  border-radius: 50%;
                  background-color: #fff;
                  border: 1px solid #f9a13a;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  transition: background 0.3s ease;

                  svg {
                    path {
                      transition: fill 0.3s ease;
                    }
                  }
                }

                .icon_alt {
                  display: flex;
                  justify-content: center;
                  align-items: center;

                  svg {
                    path {
                      transition: fill 0.3s ease;
                    }
                  }
                }

                span {
                  transition: color 0.3s ease;
                }
              }
            }
          }
        }
      }
    }
  }

  .conference_history {
    padding-top: 59px;
    padding-bottom: 130px;

    .container {
      .subtitle {
        display: flex;
        justify-content: space-between;
        margin-bottom: 17.3px;

        @media (max-width: 640px) {
          flex-direction: column;
          align-items: center;
          row-gap: 20px;
        }

        .wrap {
          display: flex;
          align-items: center;
          column-gap: 20px;
          padding-left: 23.5px;

          h6 {
            margin: 0px 0px;
          }

          span {
            line-height: normal;
            transform: translateY(2px);
          }
        }
      }

      .table_wrap {
        overflow: auto;

        table {
          width: 100%;
          table-layout: fixed;
          border-collapse: collapse;
          min-width: 864px;

          thead {
            tr {
              th {
                background-color: #0e4589;
                color: #fff;
                height: 68px;

                &:first-child {
                  border-radius: 10px 0 0 10px;
                }

                &:last-child {
                  border-radius: 0 10px 10px 0;
                }

                & + th {
                  border-left: 1px solid rgba(255, 255, 255, 0.3);
                }
              }
            }
          }

          tbody {
            tr {
              td {
                height: 140px;
                text-align: center;
                border-bottom: 1px solid #e4e4e4;

                &:first-child {
                  color: #0e4589;
                }

                & + td {
                  border-left: 1px solid #e4e4e4;
                }
                .link {
                  a {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    text-decoration: none;
                    column-gap: 10px;

                    &:hover {
                      .icon_main_pdf {
                        background-color: #0e4589;

                        svg {
                          path {
                            &:not(:first-child) {
                              fill: #fff;
                            }
                          }
                        }
                      }

                      .icon_main_youtube {
                        background-color: #f9a13a;

                        svg {
                          path {
                            fill: #fff;
                          }
                        }
                      }

                      .icon_alt {
                        svg {
                          path {
                            fill: #000;
                          }
                        }
                      }

                      span {
                        color: #878787;
                      }
                    }

                    .icon_main_pdf {
                      width: 60px;
                      aspect-ratio: 1/1;
                      border-radius: 50%;
                      background-color: #f3f6f9;
                      display: flex;
                      justify-content: center;
                      align-items: center;
                      transition: background 0.3s ease;

                      svg {
                        path {
                          transition: fill 0.3s ease;
                        }
                      }
                    }

                    .icon_main_youtube {
                      width: 60px;
                      aspect-ratio: 1/1;
                      border-radius: 50%;
                      background-color: #fff;
                      border: 1px solid #f9a13a;
                      display: flex;
                      justify-content: center;
                      align-items: center;
                      transition: background 0.3s ease;

                      svg {
                        path {
                          transition: fill 0.3s ease;
                        }
                      }
                    }

                    .icon_alt {
                      display: flex;
                      justify-content: center;
                      align-items: center;

                      svg {
                        path {
                          transition: fill 0.3s ease;
                        }
                      }
                    }

                    span {
                      transition: color 0.3s ease;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

.shareholders-content {
  padding-top: 3.15vw;
  padding-bottom: 3.15vw;

  .title {
    text-align: center;

    @media (max-width: 1024px) {
      margin-bottom: 30px;
    }

    h5 {
      margin-top: 0px;
      margin-bottom: 25px;
      font-size: clamp(2.2rem, 1.1333rem + 2.2222vw, 2.8rem);
    }

    .investors_nav {
      /*overflow: auto;*/

      .wrap {
        /*min-width: max-content;*/

        a {
          display: inline-block;
          white-space: nowrap;
          text-decoration: none;
          padding: 10px 20px;
          position: relative;
          font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);

          &.active {
            color: #0e4589;
            pointer-events: none;
          }

          & + a {
            &::before {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translate(-100%, -35%);
              height: 41%;
              width: 1px;
              background-color: black;
            }
          }
        }
      }
    }
  }

  .shareholders_new {
    padding-top: 2.5vw;

    .container {
      max-width: 1500px;
      margin: 0px auto;

      .shareholders_banner {
        .img {
          position: relative;
          overflow: hidden;

          img {
            min-width: 768px;
          }

          .banner_title {
            color: #fff;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            margin-left: 8.2vw;
            margin-top: 0px;

            h4 {
              margin-top: 0px;
              margin-bottom: 40px;

              @media (max-width: 1550px) {
                margin-bottom: 0px;
              }
            }
          }
        }
      }

      .content {
        margin-top: -90px;
        position: relative;
        z-index: 10;

        @media (max-width: 1280px) {
          margin-top: 0px;
        }

        .item {
          background-color: #fff;
          max-width: 1400px;
          margin: 0px auto;
          border-radius: 20px 20px 10px 10px;
          padding: 51px;
          display: grid;
          grid-template-columns: minmax(300px, 446px) 1fr;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px,
            rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;

          @media (max-width: 1280px) {
            border-radius: 0px;
          }

          @media (max-width: 1024px) {
            grid-template-columns: 1fr;
            row-gap: 30px;
          }

          @media (max-width: 768px) {
            padding: 51px 30px;
          }

          .info {
            .wrap {
              padding: 0px 13px;

              h5 {
                color: #0e4589;
                margin: 0px 0px;
                padding-bottom: 32px;
                position: relative;

                &::after {
                  content: '';
                  position: absolute;
                  left: 0;
                  bottom: 0;
                  width: 84%;
                  background-color: #d8d8d8;
                  height: 1px;

                  @media (max-width: 1024px) {
                    width: 100%;
                  }
                }
              }

              ul {
                list-style: none;
                display: grid;
                grid-template-columns: 1fr;
                row-gap: 16px;
                padding-left: 0px;
                padding-top: 32px;

                li {
                  display: flex;
                  align-items: center;

                  .icon {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    min-width: 21px;
                    margin-right: 10px;
                  }
                }
              }
            }
          }

          .action {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(227px, 1fr));
            column-gap: 20px;
            row-gap: 24px;

            .link {
              a {
                min-height: 100px;
                outline: 1px solid #d8d8d8 !important;
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                column-gap: 10px;
                background-color: #fff;
                transition: outline-color 0.3s ease;

                @media (max-width: 1440px) {
                  justify-content: start;
                  min-height: 75px;
                  padding-left: 20px;
                  padding-right: 20px;
                }

                &:hover {
                  outline-width: 2px !important;

                  &:has(.icon_main_pdf) {
                    outline-color: #0e4589 !important;
                  }

                  &:has(.icon_main_youtube) {
                    outline-color: #f9a13a !important;
                  }

                  .icon_main_pdf {
                    background-color: #0e4589;

                    svg {
                      path {
                        &:not(:first-child) {
                          fill: #fff;
                        }
                      }
                    }
                  }

                  .icon_main_youtube {
                    background-color: #f9a13a;

                    svg {
                      path {
                        fill: #fff;
                      }
                    }
                  }

                  .icon_alt {
                    svg {
                      path {
                        fill: #000;
                      }
                    }
                  }

                  span {
                    color: #878787;
                  }
                }

                .icon_main_pdf {
                  width: 60px;
                  aspect-ratio: 1/1;
                  border-radius: 50%;
                  background-color: #f3f6f9;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  transition: background 0.3s ease;

                  svg {
                    path {
                      transition: fill 0.3s ease;
                    }
                  }
                }

                .icon_main_youtube {
                  width: 60px;
                  aspect-ratio: 1/1;
                  border-radius: 50%;
                  background-color: #fff;
                  border: 1px solid #f9a13a;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  transition: background 0.3s ease;

                  svg {
                    path {
                      transition: fill 0.3s ease;
                    }
                  }
                }

                .icon_alt {
                  display: flex;
                  justify-content: center;
                  align-items: center;

                  svg {
                    path {
                      transition: fill 0.3s ease;
                    }
                  }
                }

                span {
                  transition: color 0.3s ease;
                }
              }
            }
          }
        }
      }
    }
  }

  .shareholders_history {
    padding-top: 68px;
    padding-bottom: 70px;

    .container {
      .history_title {
        max-width: 1400px;
        margin: 0px auto;
        margin-bottom: 28px;

        h5 {
          margin: 0px 0px;
          padding-left: 64px;

          @media (max-width: 768px) {
            text-align: center;
            padding-left: 0px;
          }
        }
      }

      .history_list {
        list-style: none;
        padding: 0px 0px;
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 35px;

        .list_item {
          .item {
            background-color: #fff;
            max-width: 1400px;
            margin: 0px auto;
            border-radius: 10px;
            padding: 51px;
            display: grid;
            grid-template-columns: minmax(300px, 446px) 1fr;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px,
              rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;

            @media (max-width: 1024px) {
              grid-template-columns: 1fr;
              row-gap: 30px;
            }

            @media (max-width: 768px) {
              padding: 51px 30px;
            }

            .info {
              .wrap {
                padding: 0px 13px;

                h5 {
                  margin: 0px 0px;
                  padding-bottom: 32px;
                  position: relative;

                  &::after {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 84%;
                    background-color: #d8d8d8;
                    height: 1px;

                    @media (max-width: 1024px) {
                      width: 100%;
                    }
                  }
                }

                ul {
                  list-style: none;
                  display: grid;
                  grid-template-columns: 1fr;
                  row-gap: 16px;
                  padding-left: 0px;
                  padding-top: 32px;

                  li {
                    display: flex;
                    align-items: center;

                    .icon {
                      display: flex;
                      justify-content: center;
                      align-items: center;
                      min-width: 21px;
                      margin-right: 10px;
                    }
                  }
                }
              }
            }

            .action {
              display: grid;
              grid-template-columns: repeat(auto-fill, minmax(227px, 1fr));
              column-gap: 20px;
              row-gap: 24px;
              transition: max-height 0.8s ease-out;

              &.show {
                max-height: 1000px;
                padding: 2px 2px;
              }

              @media (max-width: 640px) {
                max-height: 0;
                overflow: hidden;
              }

              .link {
                a {
                  min-height: 100px;
                  outline: 1px solid #d8d8d8 !important;
                  border-radius: 10px;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  column-gap: 10px;
                  background-color: #fff;
                  transition: outline-color 0.3s ease;

                  @media (max-width: 1440px) {
                    justify-content: start;
                    min-height: 75px;
                    padding-left: 20px;
                    padding-right: 20px;
                  }

                  &:hover {
                    outline-width: 2px !important;

                    &:has(.icon_main_pdf) {
                      outline-color: #0e4589 !important;
                    }

                    &:has(.icon_main_youtube) {
                      outline-color: #f9a13a !important;
                    }

                    .icon_main_pdf {
                      background-color: #0e4589;

                      svg {
                        path {
                          &:not(:first-child) {
                            fill: #fff;
                          }
                        }
                      }
                    }

                    .icon_main_youtube {
                      background-color: #f9a13a;

                      svg {
                        path {
                          fill: #fff;
                        }
                      }
                    }

                    .icon_alt {
                      svg {
                        path {
                          fill: #000;
                        }
                      }
                    }

                    span {
                      color: #878787;
                    }
                  }

                  .icon_main_pdf {
                    width: 60px;
                    aspect-ratio: 1/1;
                    border-radius: 50%;
                    background-color: #f3f6f9;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    transition: background 0.3s ease;

                    svg {
                      path {
                        transition: fill 0.3s ease;
                      }
                    }
                  }

                  .icon_main_youtube {
                    width: 60px;
                    aspect-ratio: 1/1;
                    border-radius: 50%;
                    background-color: #fff;
                    border: 1px solid #f9a13a;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    transition: background 0.3s ease;

                    svg {
                      path {
                        transition: fill 0.3s ease;
                      }
                    }
                  }

                  .icon_alt {
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    svg {
                      path {
                        transition: fill 0.3s ease;
                      }
                    }
                  }

                  span {
                    transition: color 0.3s ease;
                  }
                }
              }
            }

            .button_mob {
              display: none;

              @media (max-width: 640px) {
                display: flex;
                justify-content: center;

                button {
                  display: flex;
                  align-items: center;

                  .icon {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-left: 10px;
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

.shareholders-annual-content {
  padding-top: 3.15vw;
  padding-bottom: 60px;

  .title {
    text-align: center;

    h5 {
      margin-top: 0px;
      margin-bottom: 25px;
      font-size: clamp(2.2rem, 1.1333rem + 2.2222vw, 2.8rem);
    }

    .investors_nav {
      /*overflow: auto;*/

      .wrap {
        /*min-width: max-content;*/

        a {
          display: inline-block;
          white-space: nowrap;
          text-decoration: none;
          padding: 10px 20px;
          position: relative;
          font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);

          &.active {
            color: #0e4589;
            pointer-events: none;
          }

          & + a {
            &::before {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translate(-100%, -35%);
              height: 41%;
              width: 1px;
              background-color: black;
            }
          }
        }
      }
    }
  }

  .container {
    max-width: 1500px;
    margin: 0px auto;
    padding-top: 2.5vw;

    .shareholders_banner {
      .img {
        position: relative;
        overflow: hidden;

        img {
          min-width: 768px;
        }

        .banner_title {
          color: #fff;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          left: 0;
          margin-left: 8.2vw;
          margin-top: 0px;

          h4 {
            margin-top: 0px;
            margin-bottom: 40px;

            @media (max-width: 1550px) {
              margin-bottom: 0px;
            }
          }
        }
      }
    }

    .content {
      margin: 0px auto;
      max-width: 1400px;
      border-radius: 20px 20px 0 0;
      padding-top: 2.92vw;
      margin-top: -60px;
      background-color: #fff;
      position: relative;
      z-index: 10;

      @media (max-width: 1550px) {
        margin-top: 0px;
        border-radius: 0;
        margin-left: 16px;
        margin-right: 16px;
      }

      @media (max-width: 768px) {
        padding-top: 22px;
      }

      .wrap {
        max-width: 1200px;
        margin: 0px auto;

        h5 {
          margin: 0px 0px;

          @media (max-width: 768px) {
            text-align: center;
          }
        }

        ul {
          list-style: none;
          padding-left: 0px;
          padding-top: 27px;
          display: grid;
          grid-template-columns: 1fr;
          row-gap: 30px;

          li {
            a {
              text-decoration: none;
              border-radius: 10px;
              outline: 1px solid #d8d8d8 !important;
              display: flex;
              align-items: center;
              justify-content: space-between;
              padding: 0px 22px;
              min-height: 90px;
              box-shadow: none;
              transition: outline-color, box-shadow 0.3s ease;

              &:hover {
                outline-color: #0e4589 !important;
                outline-width: 2px !important;
                box-shadow: 6px 8px 20px 4px rgba(14, 69, 137, 0.2);

                .icon {
                  background-color: #0e4589;

                  svg {
                    path {
                      &:not(:first-child) {
                        fill: #fff;
                      }
                    }
                  }
                }
              }

              span {
                padding-left: 38px;
                position: relative;

                @media (max-width: 768px) {
                  padding-left: 18px;
                }

                &::before {
                  content: '';
                  position: absolute;
                  left: 20px;
                  top: 13px;
                  width: 5px;
                  aspect-ratio: 1/1;
                  background-color: black;
                  border-radius: 50%;

                  @media (max-width: 768px) {
                    left: 5px;
                  }
                }
              }

              .icon {
                width: 60px;
                aspect-ratio: 1/1;
                background-color: #f3f6f9;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 50%;
                transition: background-color 0.3s ease;

                svg {
                  path {
                    transition: fill 0.3s ease;
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

.shareholders-dividend-content {
  padding-top: 3.15vw;
  padding-bottom: 60px;

  .title {
    text-align: center;

    @media (max-width: 1024px) {
      margin-bottom: 30px;
    }

    h5 {
      margin-top: 0px;
      margin-bottom: 25px;
      font-size: clamp(2.2rem, 1.1333rem + 2.2222vw, 2.8rem);
    }

    .investors_nav {
      /*overflow: auto;*/

      .wrap {
        /*min-width: max-content;*/

        a {
          display: inline-block;
          white-space: nowrap;
          text-decoration: none;
          padding: 10px 20px;
          position: relative;
          font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);

          &.active {
            color: #0e4589;
            pointer-events: none;
          }

          & + a {
            &::before {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translate(-100%, -35%);
              height: 41%;
              width: 1px;
              background-color: black;
            }
          }
        }
      }
    }
  }

  .container {
    padding-top: 2.55vw;

    .dividend_policy {
      @media (max-width: 768px) {
        text-align: center;
      }

      h6 {
        margin-top: 0px;
        margin-bottom: 20px;
      }

      p {
        color: #5c5c5c;
      }
    }

    .dividend_information {
      padding-top: 50px;

      h6 {
        margin-top: 0px;
        margin-bottom: 20px;

        @media (max-width: 768px) {
          text-align: center;
        }
      }

      .table_wrap {
        overflow: auto;

        table {
          width: 100%;
          table-layout: fixed;
          border-collapse: collapse;
          min-width: 770px;

          thead {
            tr {
              th {
                background-color: #0e4589;
                color: #fff;
                height: 68px;

                &:first-child {
                  border-radius: 10px 0 0 10px;
                }

                &:last-child {
                  border-radius: 0 10px 10px 0;
                }

                & + th {
                  border-left: 1px solid rgba(255, 255, 255, 0.3);
                }
              }
            }
          }

          tbody {
            tr {
              &:nth-child(odd) {
                td {
                  background-color: #f3f6f9;
                }
              }

              &:nth-child(even) {
                td {
                  background-color: #fff;
                }
              }

              td {
                height: 62px;
                text-align: center;
                border-bottom: 1px solid #e4e4e4;

                &:first-child {
                  color: #0e4589;
                }

                & + td {
                  border-left: 1px solid #e4e4e4;
                }
              }
            }
          }
        }
      }
    }
  }
}

.shareholders-stock_other-content {
  padding-top: 3.15vw;
  padding-bottom: 60px;

  .title {
    text-align: center;

    h5 {
      margin-top: 0px;
      margin-bottom: 25px;
      font-size: clamp(2.2rem, 1.1333rem + 2.2222vw, 2.8rem);
    }

    .investors_nav {
      /*overflow: auto;*/

      .wrap {
        /*min-width: max-content;*/

        a {
          display: inline-block;
          white-space: nowrap;
          text-decoration: none;
          padding: 10px 20px;
          position: relative;
          font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);

          &.active {
            color: #0e4589;
            pointer-events: none;
          }

          & + a {
            &::before {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translate(-100%, -35%);
              height: 41%;
              width: 1px;
              background-color: black;
            }
          }
        }
      }
    }
  }

  .container {
    padding-top: 48px;
    max-width: 1500px;
    margin: 0px auto;
    padding-left: 16px;
    padding-right: 16px;

    .stock_banner {
      position: relative;

      a {
        &:hover {
          .img {
            img {
              transform: scale(1.06);
            }
          }
        }

        .img {
          border-radius: 10px;
          overflow: hidden;

          img {
            display: block;
            min-width: 1020px;
            transition: transform 0.3s ease;
          }
        }

        .info {
          position: absolute;
          top: 50%;
          left: 0;
          transform: translateY(-50%);
          margin-left: 5vw;

          span {
            color: #0e4589;
            margin-bottom: 16px;
            position: relative;
            display: inline-block;

            &::after {
              content: '';
              position: absolute;
              left: 100%;
              top: 50%;
              transform: translateY(-50%);
              height: 1px;
              width: 50px;
              background-color: #6994c9;
              margin-left: 20px;
            }
          }

          h5 {
            margin-top: 0px;
            margin-bottom: 40px;
          }

          ul {
            list-style: none;
            padding-left: 0px;
            display: grid;
            grid-template-columns: 1fr;
            row-gap: 19px;

            li {
              display: flex;
              align-items: center;

              .icon {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-right: 10px;
              }

              p {
              }
            }
          }
        }
      }
    }

    .stock_list {
      padding-top: 47px;

      ul {
        list-style: none;
        padding-left: 0px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
        gap: 30px;

        @media (max-width: 640px) {
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        li {
          a {
            text-decoration: none;
            display: flex;
            justify-content: center;

            &:hover {
              .img {
                img {
                  transform: scale(1.1);
                }
              }

              .info {
                .icon {
                  background-color: #f9a13a;
                  transition: background-color 0.3s ease;

                  svg {
                    path {
                      fill: #fff;
                      transition: fill 0.3s ease;
                    }
                  }
                }
              }
            }

            .img {
              position: relative;
              overflow: hidden;
              border-radius: 10px;

              img {
                display: block;
                width: 100%;
                transition: all 0.3s ease;
              }

              .info {
                position: absolute;
                top: 50%;
                left: 0;
                transform: translateY(-50%);
                display: flex;
                flex-direction: column;
                row-gap: 45px;
                margin-left: 4.85vw;

                @media (max-width: 768px) {
                  flex-direction: row;
                  align-items: center;
                  column-gap: 10px;
                }

                p {
                  color: #fff;
                }

                .icon {
                  width: 65px;
                  aspect-ratio: 1/1;
                  border-radius: 50%;
                  border: 1px solid #f9a13a;
                  display: flex;
                  justify-content: center;
                  align-items: center;

                  @media (max-width: 768px) {
                    width: 8vw;
                    min-width: 36px;
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

.corporate-content {
  padding-top: 3.15vw;
  padding-bottom: 60px;

  .title {
    text-align: center;

    h5 {
      margin-top: 0px;
      margin-bottom: 25px;
      font-size: clamp(2.2rem, 1.1333rem + 2.2222vw, 2.8rem);
    }

    .investors_nav {
      /*overflow: auto;*/

      .wrap {
        /*min-width: max-content;*/

        a {
          display: inline-block;
          white-space: nowrap;
          text-decoration: none;
          padding: 10px 20px;
          position: relative;
          font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);

          &.active {
            color: #0e4589;
            pointer-events: none;
          }

          & + a {
            &::before {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translate(-100%, -35%);
              height: 41%;
              width: 1px;
              background-color: black;
            }
          }
        }
      }
    }
  }

  .container {
    padding-top: 48px;

    .corporate_banner {
      background: linear-gradient(180deg, #f4fefe 0%, #dfe9e9 100%);
      border-radius: 10px;
      padding-top: 69px;
      padding-bottom: 64px;
      padding-left: 20px;
      padding-right: 20px;

      .img {
        display: flex;
        justify-content: center;
      }
    }

    .info {
      padding-top: 69px;

      .wrap {
        h6 {
          margin-top: 0px;
          margin-bottom: 20px;
        }

        .info_list {
          padding-left: 0px;
          list-style: none;
          display: grid;
          grid-template-columns: 1fr;
          row-gap: 20px;

          .list_item {
            p {
              position: relative;
              padding-left: 21px;

              &::before {
                content: '';
                position: absolute;
                left: 7px;
                top: 11px;
                width: 6px;
                aspect-ratio: 1/1;
                border-radius: 50%;
                background-color: #f9a13a;
              }
            }

            ul {
              padding-top: 20px;
              padding-bottom: 30px;
              padding-left: 0px;
              list-style: none;

              li {
                padding-left: 25px;
                color: #5c5c5c;
                position: relative;

                &::before {
                  content: '';
                  position: absolute;
                  left: 12px;
                  top: 13px;
                  width: 4px;
                  aspect-ratio: 1/1;
                  background-color: #5c5c5c;
                  border-radius: 50%;
                }
              }
            }
          }
        }
      }

      .info_link {
        display: flex;

        @media (max-width: 768px) {
          justify-content: center;
        }

        .link {
          a {
            padding: 1em 1.9em;
            display: inline-flex;
            justify-content: center;
            /*text-align: center;*/
            align-items: center;
            gap: 0 16px;
            background-color: #f6a247;
            border-radius: 11px;
            color: #fff;
            transition: all 0.4s;

            .download {
              display: flex;
              justify-content: center;
              align-items: center;
              border-radius: 50%;
              min-height: 1.6em;
              min-width: 1.6em;
              border: 1px solid #fff;
              transition: all 0.4s;
            }

            .text {
              overflow: hidden;

              span {
                position: relative;
                transition: all 0.4s;

                &::before {
                  content: attr(data-title);
                  position: absolute;
                  top: 0;
                  left: 0;
                  width: 100%;
                  height: 100%;
                  transform: translateY(100%);
                }
              }
            }

            i {
              &.icon-pdf {
                font-size: 3.4rem;
              }
              &.icon-scroll-arrow {
                font-size: 0.9rem;
              }
            }
            &:hover {
              background-color: #edb332;

              .download {
                background-color: #fff;
                color: #eab443;
              }
              .text span {
                transform: translate3d(0, -100%, 0);
              }
            }
          }
        }
      }
    }
  }
}

.corporate-directors-content {
  padding-top: 3.15vw;
  padding-bottom: 60px;

  .title {
    text-align: center;

    h5 {
      margin-top: 0px;
      margin-bottom: 25px;
      font-size: clamp(2.2rem, 1.1333rem + 2.2222vw, 2.8rem);
    }

    .investors_nav {
      /*overflow: auto;*/

      .wrap {
        /*min-width: max-content;*/

        a {
          display: inline-block;
          white-space: nowrap;
          text-decoration: none;
          padding: 10px 20px;
          position: relative;
          font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);

          &.active {
            color: #0e4589;
            pointer-events: none;
          }

          & + a {
            &::before {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translate(-100%, -35%);
              height: 41%;
              width: 1px;
              background-color: black;
            }
          }
        }
      }
    }
  }

  .container {
    .info {
      padding-top: 69px;
      display: grid;
      grid-template-columns: 1fr;
      row-gap: 50px;

      .wrap {
        overflow: auto;

        .wrap_title {
          margin-top: 0px;
          margin-bottom: 20px;
        }

        .wrap_p {
          color: #5c5c5c;
        }

        .table_wrap {
          overflow: auto;

          table {
            width: 100%;
            table-layout: fixed;
            border-collapse: collapse;
            min-width: 1209px;

            thead {
              tr {
                th {
                  background-color: #0e4589;
                  color: #fff;
                  height: 68px;

                  &:first-child {
                    border-radius: 10px 0 0 10px;
                  }

                  &:last-child {
                    border-radius: 0 10px 10px 0;
                  }

                  & + th {
                    border-left: 1px solid rgba(255, 255, 255, 0.3);
                  }
                }
              }
            }

            tbody {
              tr {
                &:nth-child(odd) {
                  td {
                    background-color: #f3f6f9;
                  }
                }

                &:nth-child(even) {
                  td {
                    background-color: #fff;
                  }
                }

                td {
                  height: 62px;
                  text-align: center;
                  border-bottom: 1px solid #e4e4e4;
                  padding: 0px 16px;

                  &:first-child {
                    color: #0e4589;
                  }

                  & + td {
                    border-left: 1px solid #e4e4e4;
                  }

                  ul {
                    list-style: none;
                    padding-left: 0px;

                    li {
                      padding-left: 20px;
                      position: relative;

                      &::before {
                        display: block;
                        content: '';
                        position: absolute;
                        left: 4px;
                        top: 12px;
                        width: 4px;
                        aspect-ratio: 1/1;
                        border-radius: 50%;
                        background-color: black;
                      }
                    }
                  }
                }
              }
            }
          }
        }

        .table_wrap_alt {
          overflow: auto;

          table {
            width: 100%;
            table-layout: fixed;
            border-collapse: collapse;
            min-width: 1500px;

            thead {
              tr {
                &:first-child {
                  th {
                    &[rowspan='2']:first-child {
                      border-radius: 10px 0 0 10px;
                    }

                    &:last-child:not([rowspan='2']) {
                      border-radius: 0 10px 0px 0;
                    }

                    & + th {
                      border-left: 1px solid rgba(255, 255, 255, 0.3);
                    }
                  }
                }

                &:last-child {
                  th {
                    &:last-child {
                      border-radius: 0px 0 10px 0;
                    }

                    border-left: 1px solid rgba(255, 255, 255, 0.3);
                    border-top: 1px solid rgba(255, 255, 255, 0.3);
                  }
                }

                th {
                  background-color: #0e4589;
                  color: #fff;
                  height: 100px;
                  padding: 0px 10px;

                  @media (max-width: 768px) {
                    height: 70px;
                  }
                }
              }
            }

            tbody {
              tr {
                &:nth-child(odd) {
                  td {
                    background-color: #f3f6f9;
                  }
                }

                &:nth-child(even) {
                  td {
                    background-color: #fff;
                  }
                }

                td {
                  height: 88px;
                  border-bottom: 1px solid #e4e4e4;
                  padding: 0px 16px;
                  line-height: 28px;
                  text-align: center;

                  &:first-child {
                    text-align: start;
                  }

                  & + td {
                    border-left: 1px solid #e4e4e4;
                  }

                  ul {
                    list-style: none;
                    padding-left: 0px;

                    li {
                      padding-left: 20px;
                      position: relative;

                      &::before {
                        display: block;
                        content: '';
                        position: absolute;
                        left: 4px;
                        top: 12px;
                        width: 4px;
                        aspect-ratio: 1/1;
                        border-radius: 50%;
                        background-color: black;
                      }
                    }
                  }
                }
              }
            }
          }
        }

        .info_list {
          padding-left: 0px;
          list-style: none;
          display: grid;
          grid-template-columns: 1fr;
          row-gap: 20px;

          .list_item {
            p {
              display: inline-block;
              position: relative;
              padding-left: 21px;

              &::before {
                content: '';
                position: absolute;
                left: 7px;
                top: 11px;
                width: 6px;
                aspect-ratio: 1/1;
                border-radius: 50%;
                background-color: #f9a13a;
              }
            }

            ul {
              padding-top: 20px;
              padding-bottom: 30px;
              padding-left: 0px;
              list-style: none;

              &.ideographic {
                list-style: cjk-ideographic;
                padding-left: 40px;

                li {
                  color: #5c5c5c;
                  position: relative;
                }
              }

              &.check_list {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
                column-gap: 25px;
                row-gap: 20px;

                li {
                  display: flex;
                  align-items: center;
                  font-weight: 500;
                  background-color: #f3f6f9;
                  min-height: 66px;
                  padding: 0px 20px;
                  border-radius: 10px;

                  .icon {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-right: 10px;
                  }

                  .main_txt {
                  }

                  .tag {
                    color: #5c5c5c;
                  }
                }
              }
            }
          }
        }
      }

      .info_link {
        display: flex;
        flex-wrap: wrap;
        gap: 22px;

        @media (max-width: 768px) {
          justify-content: center;
        }

        .link {
          a {
            padding: 1em 1.9em;
            display: inline-flex;
            justify-content: center;
            /*text-align: center;*/
            align-items: center;
            gap: 0 16px;
            background-color: #f6a247;
            border-radius: 11px;
            color: #fff;
            white-space: nowrap;
            transition: all 0.4s;

            @media (max-width: 768px) {
              white-space: inherit;
            }

            .download {
              display: flex;
              justify-content: center;
              align-items: center;
              border-radius: 50%;
              min-height: 1.6em;
              min-width: 1.6em;
              border: 1px solid #fff;
              transition: all 0.4s;
            }

            .text {
              overflow: hidden;

              span {
                position: relative;
                transition: all 0.4s;

                &::before {
                  content: attr(data-hover);
                  position: absolute;
                  top: 0;
                  left: 0;
                  width: 100%;
                  height: 100%;
                  transform: translateY(100%);
                }
              }
            }

            i {
              &.icon-pdf {
                font-size: 3.4rem;
              }
              &.icon-scroll-arrow {
                font-size: 0.9rem;
              }
            }
            &:hover {
              background-color: #edb332;

              .download {
                background-color: #fff;
                color: #eab443;
              }
              .text span {
                transform: translate3d(0, -100%, 0);
              }
            }
          }
        }
      }
    }
  }
}

.corporate-committee-content {
  padding-top: 3.15vw;
  padding-bottom: 85px;

  .title {
    text-align: center;

    h5 {
      margin-top: 0px;
      margin-bottom: 25px;
      font-size: clamp(2.2rem, 1.1333rem + 2.2222vw, 2.8rem);
    }

    .investors_nav {
      /*overflow: auto;*/

      .wrap {
        /*min-width: max-content;*/

        a {
          display: inline-block;
          white-space: nowrap;
          text-decoration: none;
          padding: 10px 20px;
          position: relative;
          font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);

          &.active {
            color: #0e4589;
            pointer-events: none;
          }

          & + a {
            &::before {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translate(-100%, -35%);
              height: 41%;
              width: 1px;
              background-color: black;
            }
          }
        }
      }
    }
  }

  .container {
    display: grid;
    grid-template-columns: 230px 1fr;
    column-gap: 72px;
    padding-top: 29px;

    @media (max-width: 1280px) {
      grid-template-columns: 1fr;
      row-gap: 80px;
    }

    .committee_nav {
      position: sticky;
      top: 70px;
      z-index: 99;
      align-self: start;

      @media (max-width: 1280px) {
        position: static;
      }

      ul {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 20px;
        list-style: none;
        padding-left: 0px;
        margin: 0px 0px;

        @media (max-width: 1280px) {
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          column-gap: 20px;
        }

        li {
          &.active {
            a {
              pointer-events: none;
              background-color: #f9a13a;
              color: #fff;

              .icon {
                visibility: visible;
              }
            }
          }

          a {
            text-decoration: none;
            display: flex;
            align-items: center;
            min-height: 78px;
            background-color: #f3f6f9;
            border-radius: 10px;
            padding-left: 40px;
            padding-right: 30px;

            @media (max-width: 1280px) {
              justify-content: center;
              white-space: nowrap;
            }

            span {
            }

            .icon {
              display: flex;
              justify-content: center;
              align-items: center;
              margin-left: 10px;
              visibility: hidden;
            }
          }
        }
      }
    }

    .info {
      display: grid;
      grid-template-columns: 1fr;
      row-gap: 50px;

      .wrap {
        overflow: auto;

        .wrap_title {
          margin-top: 0px;
          margin-bottom: 20px;
        }

        .wrap_p {
          color: #5c5c5c;
        }

        .table_wrap {
          overflow: auto;

          table {
            width: 100%;
            table-layout: fixed;
            border-collapse: collapse;
            min-width: 1195px;

            thead {
              tr {
                th {
                  background-color: #0e4589;
                  color: #fff;
                  height: 68px;

                  &:first-child {
                    border-radius: 10px 0 0 10px;
                  }

                  &:last-child {
                    border-radius: 0 10px 10px 0;
                  }

                  & + th {
                    border-left: 1px solid rgba(255, 255, 255, 0.3);
                  }
                }
              }
            }

            tbody {
              tr {
                &:nth-child(odd) {
                  td {
                    background-color: #f3f6f9;
                  }
                }

                &:nth-child(even) {
                  td {
                    background-color: #fff;
                  }
                }

                td {
                  height: 62px;
                  text-align: center;
                  border-bottom: 1px solid #e4e4e4;
                  padding: 0px 16px;

                  &:first-child {
                    color: #0e4589;
                  }

                  & + td {
                    border-left: 1px solid #e4e4e4;
                  }

                  ul {
                    list-style: none;
                    padding-left: 0px;

                    li {
                      padding-left: 20px;
                      position: relative;

                      &::before {
                        display: block;
                        content: '';
                        position: absolute;
                        left: 4px;
                        top: 12px;
                        width: 4px;
                        aspect-ratio: 1/1;
                        border-radius: 50%;
                        background-color: black;
                      }
                    }
                  }
                }
              }
            }
          }
        }

        .table_wrap_alt {
          overflow: auto;

          table {
            width: 100%;
            table-layout: fixed;
            border-collapse: collapse;
            min-width: 1500px;

            thead {
              tr {
                &:first-child {
                  th {
                    &[rowspan='2']:first-child {
                      border-radius: 10px 0 0 10px;
                    }

                    &:last-child:not([rowspan='2']) {
                      border-radius: 0 10px 0px 0;
                    }

                    & + th {
                      border-left: 1px solid rgba(255, 255, 255, 0.3);
                    }
                  }
                }

                &:last-child {
                  th {
                    &:last-child {
                      border-radius: 0px 0 10px 0;
                    }

                    border-left: 1px solid rgba(255, 255, 255, 0.3);
                    border-top: 1px solid rgba(255, 255, 255, 0.3);
                  }
                }

                th {
                  background-color: #0e4589;
                  color: #fff;
                  height: 100px;
                  padding: 0px 10px;

                  @media (max-width: 768px) {
                    height: 70px;
                  }
                }
              }
            }

            tbody {
              tr {
                &:nth-child(odd) {
                  td {
                    background-color: #f3f6f9;
                  }
                }

                &:nth-child(even) {
                  td {
                    background-color: #fff;
                  }
                }

                td {
                  height: 88px;
                  border-bottom: 1px solid #e4e4e4;
                  padding: 0px 16px;
                  line-height: 28px;
                  text-align: center;

                  &:first-child {
                    text-align: start;
                  }

                  & + td {
                    border-left: 1px solid #e4e4e4;
                  }

                  ul {
                    list-style: none;
                    padding-left: 0px;

                    li {
                      padding-left: 20px;
                      position: relative;

                      &::before {
                        display: block;
                        content: '';
                        position: absolute;
                        left: 4px;
                        top: 12px;
                        width: 4px;
                        aspect-ratio: 1/1;
                        border-radius: 50%;
                        background-color: black;
                      }
                    }
                  }
                }
              }
            }
          }
        }

        .info_list {
          padding-left: 0px;
          list-style: none;
          display: grid;
          grid-template-columns: 1fr;

          .list_item {
            p {
              display: inline-block;
              position: relative;
              padding-left: 21px;

              &::before {
                content: '';
                position: absolute;
                left: 6px;
                top: 11px;
                width: 6px;
                aspect-ratio: 1/1;
                border-radius: 50%;
                background-color: #f9a13a;
              }
            }

            ul {
              padding-top: 20px;
              padding-bottom: 30px;
              padding-left: 0px;
              list-style: none;

              &.ideographic {
                list-style: cjk-ideographic;
                padding-left: 40px;
                text-align: start;

                li {
                  color: #5c5c5c;
                  position: relative;
                }
              }

              &.disc {
                padding-top: 15px;
                padding-bottom: 20px;
                text-align: start;

                li {
                  display: inline-block;
                  padding-left: 20px;
                  color: #5c5c5c;
                  position: relative;

                  &::before {
                    content: '';
                    position: absolute;
                    top: 13px;
                    left: 7px;
                    width: 4px;
                    aspect-ratio: 1/1;
                    background-color: #5c5c5c;
                    border-radius: 50%;
                  }
                }
              }

              &.check_list {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
                column-gap: 25px;
                row-gap: 20px;

                li {
                  display: flex;
                  align-items: center;
                  font-weight: 500;
                  background-color: #f3f6f9;
                  min-height: 66px;
                  padding: 0px 20px;
                  border-radius: 10px;

                  .icon {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-right: 10px;
                  }

                  .main_txt {
                  }

                  .tag {
                    color: #5c5c5c;
                  }
                }
              }
            }
          }
        }
      }

      .info_link {
        display: flex;
        flex-wrap: wrap;
        gap: 22px;

        @media (max-width: 768px) {
          justify-content: center;
        }

        .link {
          a {
            padding: 1em 1.9em;
            display: inline-flex;
            justify-content: center;
            /*text-align: center;*/
            align-items: center;
            gap: 0 16px;
            background-color: #f6a247;
            border-radius: 11px;
            color: #fff;
            /*white-space: nowrap;*/
            transition: all 0.4s;

            .download {
              display: flex;
              justify-content: center;
              align-items: center;
              border-radius: 50%;
              min-height: 1.6em;
              min-width: 1.6em;
              border: 1px solid #fff;
              transition: all 0.4s;
            }

            .text {
              overflow: hidden;

              span {
                position: relative;
                transition: all 0.4s;

                &::before {
                  content: attr(data-hover);
                  position: absolute;
                  top: 0;
                  left: 0;
                  width: 100%;
                  height: 100%;
                  transform: translateY(100%);
                }
              }
            }

            i {
              &.icon-pdf {
                font-size: 3.4rem;
              }
              &.icon-scroll-arrow {
                font-size: 0.9rem;
              }
            }
            &:hover {
              background-color: #edb332;

              .download {
                background-color: #fff;
                color: #eab443;
              }
              .text span {
                transform: translate3d(0, -100%, 0);
              }
            }
          }
        }
      }
    }
  }
}

.corporate-internal-policies-content {
  padding-top: 3.15vw;
  padding-bottom: 96px;

  .title {
    text-align: center;

    h5 {
      margin-top: 0px;
      margin-bottom: 25px;
      font-size: clamp(2.2rem, 1.1333rem + 2.2222vw, 2.8rem);
    }

    .investors_nav {
      /*overflow: auto;*/

      .wrap {
        /*min-width: max-content;*/

        a {
          display: inline-block;
          white-space: nowrap;
          text-decoration: none;
          padding: 10px 20px;
          position: relative;
          font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);

          &.active {
            color: #0e4589;
            pointer-events: none;
          }

          & + a {
            &::before {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translate(-100%, -35%);
              height: 41%;
              width: 1px;
              background-color: black;
            }
          }
        }
      }
    }
  }

  .container {
    padding-top: 29px;

    .info_list {
      margin: 0px 0px;
      padding-left: 0px;
      list-style: none;
      display: grid;
      grid-template-columns: 1fr;
      row-gap: 40px;

      .list_item {
        display: grid;
        grid-template-columns: 178px 1fr;
        border-radius: 20px;
        border: 1px solid #e4e4e4;
        box-shadow: 4px 6px 20px rgba(105, 148, 201, 0.25);
        padding-top: 27px;
        padding-bottom: 27px;
        padding-right: 3.4vw;
        align-items: center;
        column-gap: 7px;
        margin-left: 52px;
        transition: box-shadow 0.3s ease;

        &:hover {
          box-shadow: 4px 6px 20px rgba(105, 148, 201, 0.6);
        }

        @media (max-width: 1024px) {
          grid-template-columns: 1fr;
          row-gap: 20px;
          padding-right: 0px;
          padding-top: 0px;
          /*text-align: center;*/
          margin-left: 0px;
        }

        .icon {
          background-color: #6994c9;
          width: 178px;
          height: 165px;
          border-radius: 20px 60px 60px 20px;
          display: flex;
          justify-content: center;
          align-items: center;
          transform: translateX(-52px);

          @media (max-width: 1280px) {
            transform: translateX(-22px);
          }

          @media (max-width: 1024px) {
            width: 100%;
            height: 115px;
            transform: translateX(0);
            border-radius: 20px 20px 0px 0px;
            /*border-radius: 0px;*/
          }

          .wrap {
            width: 90px;
            aspect-ratio: 1/1;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
          }
        }

        .item_info {
          @media (max-width: 1024px) {
            padding: 0px 16px;
          }

          h6 {
            margin-top: 0px;
            margin-bottom: 20px;

            @media (max-width: 1024px) {
              text-align: center;
            }
          }

          ul {
            margin: 0px 0px;
            padding-left: 0px;
            list-style: none;
            display: grid;
            grid-template-columns: 1fr;
            row-gap: 20px;

            li {
              color: #5c5c5c;
              position: relative;
              padding-left: 26px;

              &::before {
                content: '';
                position: absolute;
                left: 8px;
                top: 13px;
                width: 6px;
                aspect-ratio: 1/1;
                background-color: #f9a13a;
                border-radius: 50%;
              }
            }
          }
        }
      }
    }
  }
}

.corporate-regulation-content {
  padding-top: 3.15vw;
  padding-bottom: 81px;

  .title {
    text-align: center;

    h5 {
      margin-top: 0px;
      margin-bottom: 25px;
      font-size: clamp(2.2rem, 1.1333rem + 2.2222vw, 2.8rem);
    }

    .investors_nav {
      /*overflow: auto;*/

      .wrap {
        /*min-width: max-content;*/

        a {
          display: inline-block;
          white-space: nowrap;
          text-decoration: none;
          padding: 10px 20px;
          position: relative;
          font-size: clamp(1.6rem, 1.2444rem + 0.7407vw, 1.8rem);

          &.active {
            color: #0e4589;
            pointer-events: none;
          }

          & + a {
            &::before {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translate(-100%, -35%);
              height: 41%;
              width: 1px;
              background-color: black;
            }
          }
        }
      }
    }
  }

  .container {
    max-width: 1500px;
    margin: 0px auto;
    padding-top: 48px;

    .regulation_banner {
      .img {
        position: relative;
        overflow: hidden;

        img {
          min-width: 768px;
        }

        .banner_title {
          color: #fff;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          left: 0;
          margin-left: 8.2vw;
          margin-top: 0px;

          h4 {
            margin-top: 0px;
            margin-bottom: 40px;

            @media (max-width: 1550px) {
              margin-bottom: 0px;
            }
          }
        }
      }
    }

    .content {
      margin: 0px auto;
      max-width: 1400px;
      border-radius: 20px 20px 0 0;
      padding-top: 3vw;
      margin-top: -60px;
      background-color: #fff;
      position: relative;
      z-index: 10;

      @media (max-width: 1550px) {
        margin-top: 0px;
        border-radius: 0;
        margin-left: 16px;
        margin-right: 16px;
      }

      .wrap {
        max-width: 1200px;
        margin: 0px auto;

        ul {
          list-style: none;
          padding-left: 0px;
          padding-top: 1.4vw;
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
          row-gap: 30px;
          column-gap: 37px;

          @media (max-width: 768px) {
            grid-template-columns: 1fr;
          }

          li {
            a {
              text-decoration: none;
              border-radius: 10px;
              outline: 1px solid #d8d8d8 !important;
              display: flex;
              align-items: center;
              justify-content: space-between;
              padding: 0px 22px;
              min-height: 90px;
              box-shadow: none;
              column-gap: 10px;
              transition: outline-color, box-shadow 0.3s ease;

              &:hover {
                outline-color: #0e4589 !important;
                outline-width: 2px !important;
                box-shadow: 6px 8px 20px 4px rgba(14, 69, 137, 0.2);

                .icon {
                  background-color: #0e4589;

                  svg {
                    path {
                      &:not(:first-child) {
                        fill: #fff;
                      }
                    }
                  }
                }
              }

              span {
                padding-left: 38px;
                position: relative;

                @media (max-width: 768px) {
                  padding-left: 18px;
                }

                &::before {
                  content: '';
                  position: absolute;
                  left: 20px;
                  top: 13px;
                  width: 5px;
                  aspect-ratio: 1/1;
                  background-color: black;
                  border-radius: 50%;

                  @media (max-width: 768px) {
                    left: 5px;
                  }
                }
              }

              .icon {
                min-width: 60px;
                aspect-ratio: 1/1;
                background-color: #f3f6f9;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 50%;
                transition: background-color 0.3s ease;

                svg {
                  path {
                    transition: fill 0.3s ease;
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
