
@media (max-width: 1023px) {
  .element-desktop .logo {
    position: relative;
    width: 186px;
    height: 30px;
  }

  .element-desktop .topmenu {
    position: absolute;
    top: 60px;
    background: var(--color-green-green-brand-green-BG);
    left: 0;
    height: 100vh;
    width: 100%;
    overflow-y: auto;
    display: none;
    animation-duration: 1s;
    animation-name: createTopMenu;
    z-index: -2;

    &.hidden {
      animation-duration: 1s;
      animation-name: closeTopMenu;
    }
  }

  @keyframes createTopMenu{
      from{
          height:0px;
          width: 100%;
  
      }
      to{
          height: 100vh;
          width: 100%;
      }
  }

  @keyframes closeTopMenu{
      from{
          height:100vh;
          width: 100%;
  
      }
      to{
          height: 0px;
          width: 100%;
      }
  }
  .element-desktop .dropdownitem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px var(--color-black-black-3);
    flex-flow: row wrap;
    background: var(--color-black-white);
  }
  .element-desktop .topmenu .main-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    width: 100%;
    height: 75px;
    border-bottom: 1px solid var(--color-black-black-3);
    padding: 0 var(--UI-spaceing-spacing-40);
  }
  .element-desktop .dropdownitem .main-option-anchor{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 75px;
    border-bottom: 1px solid var(--color-black-black-3);
  }
  .element-desktop .main-option .text-wrapper {
    font-family: var(--TC-h5-medium-font-family);
    font-weight: var(--TC-h5-medium-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h5-medium-font-size);
    letter-spacing: var(--TC-h5-medium-letter-spacing);
    line-height: var(--TC-h5-medium-line-height);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-style: var(--TC-h5-medium-font-style);
    width: 100%;
  }

  .element-desktop .dropdown .options {
    width: 100%;
    padding: 0 var(--UI-spaceing-spacing-40);
    display: none;
  }
  
  .element-desktop .dropdown .options.active.twonodes {
    display: block;
    animation-duration: 1s;
    animation-name: createTwoOptions;
    overflow: hidden;
  }
  .element-desktop .dropdown .options.active.threenodes {
    display: block;
    animation-duration: 1s;
    animation-name: createThreeOptions;
    overflow: hidden;
  }
  .element-desktop .dropdown .options.active.fournodes {
    display: block;
    animation-duration: 1s;
    animation-name: createFourOptions;
    overflow: hidden;
  }
  .element-desktop .dropdown .options.active.fivenodes {
    display: block;
    animation-duration: 1s;
    animation-name: createFiveOptions;
    overflow: hidden;
  }
  .element-desktop .dropdown .options.active.twonodes.hidden {
    animation-duration: 1s;
    animation-name: closeTwoOptions;
  }
  .element-desktop .dropdown .options.active.threenodes.hidden {
    animation-duration: 1s;
    animation-name: closeThreeOptions;
  }
  .element-desktop .dropdown .options.active.fournodes.hidden {
    animation-duration: 1s;
    animation-name: closeFourOptions;
  }
  .element-desktop .dropdown .options.active.fivenodes.hidden {
    animation-duration: 1s;
    animation-name: closeFiveOptions;
  }
  @keyframes createThreeOptions{
    from{
        height:0px;
        width: 100%;

    }
    to{
        height: 213px;
        width: 100%;
    }
  }
  @keyframes createTwoOptions{
    from{
        height:0px;
        width: 100%;

    }
    to{
        height: 142px;
        width: 100%;
    }
  }

  @keyframes closeTwoOptions{
    from{
        height:142px;
        width: 100%;

    }
    to{
        height: 0px;
        width: 100%;
    }
  }
  @keyframes closeThreeOptions{
    from{
        height:213px;
        width: 100%;

    }
    to{
        height: 0px;
        width: 100%;
    }
  }
  @keyframes createFourOptions{
    from{
        height:0px;
        width: 100%;

    }
    to{
        height: 288px;
        width: 100%;
    }
  }
  @keyframes closeFourOptions{
    from{
        height:288px;
        width: 100%;

    }
    to{
        height: 0px;
        width: 100%;
    }
  }
  @keyframes createFiveOptions{
    from{
        height:0px;
        width: 100%;

    }
    to{
        height: 360px;
        width: 100%;
    }
  }
  @keyframes closeFiveOptions{
    from{
        height:360px;
        width: 100%;

    }
    to{
        height: 0px;
        width: 100%;
    }
  }
  
  .element-desktop .dropdown .options a{
    display: flex;
    width: 100%;
    height: 72px;
    align-items: center;
    border-bottom: 1px solid var(--color-black-black-3);
  }
  .element-desktop .dropdown .options div {
    padding: 0px 16px;
    cursor: pointer;
  }
  .element-desktop .options .text-wrapper {
    font-family: var(--TC-body-regular-font-family);
    font-weight: var(--TC-body-regular-font-weight);
    color: var(--color-black-black-5);
    font-size: var(--TC-body-regular-font-size);
    letter-spacing: var(--TC-body-regular-letter-spacing);
    line-height: var(--TC-body-regular-line-height);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-style: var(--TC-body-regular-font-style);
  }
  
  .element-desktop .div-f2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }

  .element-desktop .footer {
    display: flex;
    flex-direction: column;
    min-height: 240px;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0px var(--main-frame-padding);
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #ffffff;
  }

  .element-desktop .logo-3 {
    position: relative;
    width: 248px;
    height: 40px;
    margin-bottom: 24px;
  }

  .element-desktop .frame-12 {
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    height: 104px;
    align-items: center;
    gap: var(--UI-spaceing-spacing-24);
    position: relative;
    flex: 0 0 auto;
  }

  .element-desktop .frame-14 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    position: relative;
    flex: 1;
    align-self: stretch;
    width: 100%;
    flex-grow: 1;
    padding-bottom: 40px;
  }

  .element-desktop .frame-15 {
    display: block;
    align-items: center;
    gap: var(--UI-spaceing-spacing-16);
    position: relative;
    flex: 0 0 auto;
  }

  .element-desktop .text-wrapper-f13 {
    position: relative;
    width: 100%;
    margin-top: -1px;
    font-family: var(--TC-body-regular-font-family);
    font-weight: var(--TC-body-regular-font-weight);
    color: var(--color-black-black-5);
    font-size: var(--TC-body-regular-font-size);
    letter-spacing: var(--TC-body-regular-letter-spacing);
    line-height: var(--TC-body-regular-line-height);
    white-space: nowrap;
    font-style: var(--TC-body-regular-font-style);
    margin-bottom: 8px;
    text-align: center;
    text-wrap: auto;
    white-space: inherit;
  }

  .element-desktop .text-wrapper-4 {
    font-weight: var(--TC-h3-bold-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h3-bold-font-size);
    text-align: center;
    line-height: var(--TC-h3-bold-line-height);
    position: relative;
    width: fit-content;
    font-family: var(--TC-h3-bold-font-family);
    letter-spacing: var(--TC-h3-bold-letter-spacing);
    white-space: nowrap;
    font-style: var(--TC-h3-bold-font-style);
  }
  .about .frame .text-wrapper-4-about {
    width: fit-content;
    font-weight: var(--TC-h3-bold-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h3-bold-font-size);
    text-align: center;
    line-height: var(--TC-h3-bold-line-height);
    white-space: nowrap;
    position: relative;
    font-family: var(--TC-h3-bold-font-family);
    letter-spacing: var(--TC-h3-bold-letter-spacing);
    font-style: var(--TC-h3-bold-font-style);
  }
  .service-page.frame .sp-text-wrapper-4 {
    position: relative;
    width: fit-content;
    font-family: var(--TC-h3-bold-font-family);
    font-weight: var(--TC-h3-bold-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h3-bold-font-size);
    text-align: center;
    letter-spacing: var(--TC-h3-bold-letter-spacing);
    line-height: var(--TC-h3-bold-line-height);
    white-space: nowrap;
    font-style: var(--TC-h3-bold-font-style);
  }
  .contact-page.frame .cp-text-wrapper-4 {
    width: fit-content;
    font-family: var(--TC-h3-bold-font-family);
    font-weight: var(--TC-h3-bold-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h3-bold-font-size);
    text-align: center;
    line-height: var(--TC-h3-bold-line-height);
    white-space: nowrap;
    position: relative;
    letter-spacing: var(--TC-h3-bold-letter-spacing);
    font-style: var(--TC-h3-bold-font-style);
  }
  .sitemap-page.frame .sm-text-wrapper-4 {
    font-family: var(--TC-h3-bold-font-family);
    font-weight: var(--TC-h3-bold-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h3-bold-font-size);
    text-align: center;
    line-height: var(--TC-h3-bold-line-height);
    position: relative;
    width: fit-content;
    letter-spacing: var(--TC-h3-bold-letter-spacing);
    white-space: nowrap;
    font-style: var(--TC-h3-bold-font-style);
  }
  .member-page.frame .mp-text-wrapper-4 {
    position: relative;
    width: fit-content;
    font-family: var(--TC-h3-bold-font-family);
    font-weight: var(--TC-h3-bold-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h3-bold-font-size);
    text-align: center;
    letter-spacing: var(--TC-h3-bold-letter-spacing);
    line-height: var(--TC-h3-bold-line-height);
    white-space: nowrap;
    font-style: var(--TC-h3-bold-font-style);
  }

  .element-desktop .button {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    width: 112px;
    height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-32) var(--UI-spaceing-spacing-16)
      var(--UI-spaceing-spacing-32);
    position: relative;
    flex: 0 0 auto;
    background-color: var(--color-green-green-brand-green-5-brand);
    border-radius: 48px;
  }
  .element-desktop .button:hover {
    background-color: var(--color-green-green-brand-green-4);
  }

  .element-desktop .text-wrapper-11 {
    font-weight: var(--TC-body-regular-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-body-regular-font-size);
    text-align: start;
    line-height: var(--TC-body-regular-line-height);
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: var(--TC-body-regular-font-family);
    letter-spacing: var(--TC-body-regular-letter-spacing);
    white-space: nowrap;
    font-style: var(--TC-body-regular-font-style);
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .element-desktop .text-wrapper-8 {
    position: relative;
    flex: 1;
    font-family: var(--TC-body-medium-font-family);
    font-weight: var(--TC-body-medium-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-body-medium-font-size);
    letter-spacing: var(--TC-body-medium-letter-spacing);
    line-height: var(--TC-body-medium-line-height);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-style: var(--TC-body-medium-font-style);
    word-break: break-all;
  }
  .line-break {
    width: 100%;
  }
  .element-desktop .view-2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--UI-spaceing-spacing-8) var(--UI-spaceing-spacing-16);
    padding: var(--UI-spaceing-spacing-16) 0px var(--UI-spaceing-spacing-16) 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--color-black-black-2);
  }
  
  .element-desktop .view-2:first-of-type {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--UI-spaceing-spacing-8) var(--UI-spaceing-spacing-16);
    padding: 0px 0px var(--UI-spaceing-spacing-16) 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--color-black-black-2);
  }
  .element-desktop .view-2:last-of-type {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--UI-spaceing-spacing-8) var(--UI-spaceing-spacing-16);
    padding: var(--UI-spaceing-spacing-16) 0px 0px 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--color-black-black-2);
  }
  
  .element-desktop .text-wrapper-6 {
    position: relative;
    width: fit-content;
    font-family: var(--TC-body-regular-font-family);
    font-weight: var(--TC-body-regular-font-weight);
    color: var(--color-black-black-5);
    font-size: var(--TC-body-regular-font-size);
    letter-spacing: var(--TC-body-regular-letter-spacing);
    line-height: var(--TC-body-regular-line-height);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-style: var(--TC-body-regular-font-style);
  }
  .element-desktop .banner .banner-title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    background: url("../img/information_banner_background.svg");
  }
  .about .frame .text-wrapper-9 {
    align-self: stretch;
    margin-top: -1px;
    font-weight: var(--TC-h3-bold-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h3-bold-font-size);
    line-height: var(--TC-h3-bold-line-height);
    position: relative;
    font-family: var(--TC-h3-bold-font-family);
    letter-spacing: var(--TC-h3-bold-letter-spacing);
    font-style: var(--TC-h3-bold-font-style);
  }
  .about .frame .team-structure{
    display: none;
  }
  .about .frame .table-desktop {
    width: 1200px;
    /*margin-right: var(--main-frame-padding);*/
  }
  
  .about .frame .table-desktop-2 {
    width: 1200px;
    /*margin-right: var(--main-frame-padding);*/
  }

  .table-desktop-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
  }
  .member-table-desktop-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
  }

  .member-page.frame .table-desktop {
    min-width: 900px;
    /*margin-right: var(--main-frame-padding)*/
  }
  .tab {
    display: flex;
    align-items: flex-start;
    gap: var(--UI-spaceing-spacing-16);
    position: relative;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--color-black-black-3);
    width: 100%;
    justify-content: space-between;
  }
  .tab a{
    width: 25%;
  }
  .tab .tab-item.active {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: var(--UI-spaceing-spacing-0) var(--UI-spaceing-spacing-24) var(--UI-spaceing-spacing-16)
      var(--UI-spaceing-spacing-24);
    position: relative;
    align-self: stretch;
    flex: 0 0 auto;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-color: var(--color-green-green-brand-green-5-brand);
  }
  
  .tab .tab-item {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: var(--UI-spaceing-spacing-0) var(--UI-spaceing-spacing-24) var(--UI-spaceing-spacing-16)
      var(--UI-spaceing-spacing-24);
    position: relative;
    align-self: stretch;
    flex: 0 0 auto;
    color: var(--color-black-black-5);
  }
  .service-page.frame .view-4 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--UI-spaceing-spacing-8);
    padding: var(--UI-spaceing-spacing-24) 0px var(--UI-spaceing-spacing-24) 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--color-black-black-2);
  }
  .service-page.frame .view-4:first-of-type {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--UI-spaceing-spacing-8);
    padding: 0px 0px var(--UI-spaceing-spacing-24) 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--color-black-black-2);
  }
  .service-page.frame .view-4:last-of-type {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--UI-spaceing-spacing-8);
    padding: var(--UI-spaceing-spacing-24) 0px 0px 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--color-black-black-2);
  }
  
  .member-page.frame .mp-div-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--UI-spaceing-spacing-4);
    position: relative;
    align-self: stretch;
    flex: 0 0 auto;
    max-width: -webkit-calc(100% - 80px);
    max-width:    -moz-calc(100% - 80px);
    max-width:         calc(100% - 80px);
  }
  .member-page.frame .mp-text-wrapper-5 {
    align-self: stretch;
    margin-top: -1.00px;
    font-family: var(--TC-h4-bold-font-family);
    font-weight: var(--TC-h4-bold-font-weight);
    color: var(--color-green-green-brand-green-5-brand);
    font-size: var(--TC-h4-bold-font-size);
    text-align: start;
    line-height: var(--TC-h4-bold-line-height);
    position: relative;
    letter-spacing: var(--TC-h4-bold-letter-spacing);
    font-style: var(--TC-h4-bold-font-style);
  }
  .sitemap-page.frame .sm-view-3 {
    display: flex;
    align-items: center;
    gap: var(--UI-spaceing-spacing-8);
    padding: var(--UI-spaceing-spacing-0) 0px var(--UI-spaceing-spacing-24) 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--color-black-black-3);
    flex-wrap: wrap;
  }
  .sitemap-page.frame .sm-view-4 {
    display: flex;
    align-items: center;
    gap: var(--UI-spaceing-spacing-8);
    padding: var(--UI-spaceing-spacing-24) 0px var(--UI-spaceing-spacing-24) 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--color-black-black-3);
    flex-wrap: wrap;
  }
  .homepage-banner img{
    content: url("../img/banner_pad.svg");
  }
  .homepage-banner2 img{
    content: url("../img/banner2_pad_mobile.png");
  }
  .homepage-banner-new{
    display: flex;
    justify-content: center;   
    max-height: 420px;
  }
  .homepage-banner-new img{ 
    object-fit: contain;

  }
  .member-page.frame .mp-text-wrapper-18 {
    flex: 1;
    font-family: var(--TC-h5-regular-font-family);
    font-weight: var(--TC-h5-regular-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h5-regular-font-size);
    line-height: var(--TC-h5-regular-line-height);
    position: relative;
    letter-spacing: var(--TC-h5-regular-letter-spacing);
    font-style: var(--TC-h5-regular-font-style);
  }

  .element-desktop .frame-6.breadcrumb-frame {
    margin: -16px auto;
    white-space: nowrap;
  }
  .mobile-footer-gap {
    height: 40px;
    width: 100%;
  }
  .news-content .text-wrapper-3 {
    width: fit-content;
    margin-top: -1px;
    font-weight: var(--TC-h3-bold-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h3-bold-font-size);
    line-height: var(--TC-h3-bold-line-height);
    white-space: nowrap;
    position: relative;
    font-family: var(--TC-h3-bold-font-family);
    letter-spacing: var(--TC-h3-bold-letter-spacing);
    font-style: var(--TC-h3-bold-font-style); 
    white-space: break-spaces;
  }
}

@media (max-width:767px)  { 
  :root{
    --main-frame-padding: 16px;
    --main-frame-gap: 40px;
    --main-frame-max-width: 1440px;
  }
  html {
    margin: 0 auto;
    max-width: 767px;
    min-width: 375px;
  }
  .element-desktop .header {    
    min-height: 60px;  
    padding: 0px 16px;
  }
  .element-desktop .activity-carousel .button-carousell-right-btn {
    right: -5px;
  }
  .mobile-line-break {
    width: 100%;
    height: 16px;
  }
  .element-desktop .frame-13 {
    display: inline-flex;
    align-items: center;
    gap: 0px var(--UI-spaceing-spacing-16);
    position: relative;
    flex: 0 0 auto;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .service-page.frame .sp-div-4 {
    display: flex;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--color-green-green-brand-green-1);
    border-radius: var(--UI-spaceing-spacing-16);
    overflow: hidden;
    gap: var(--UI-spaceing-spacing-0);
    flex-direction: column;
  }
  .service-page.frame .sp-div-4.reverse {
    display: flex;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--color-green-green-brand-green-1);
    border-radius: var(--UI-spaceing-spacing-16);
    overflow: hidden;
    gap: var(--UI-spaceing-spacing-0);
    flex-direction: column-reverse;
  }
  .service-page.frame .sp-overlap-group {
    /*width: 702px;*/
    min-height: 182px;
  }
  .service-page.frame .img-2 {
    width: 100%;
    min-height: 182px;
    object-fit: cover;
  }

  .service-page.frame .sp-div-5 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--UI-spaceing-spacing-8);
    position: relative;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
    padding: 16px 0;
  }
  .content-full-height {
    min-height: calc(100% - 462px);
  }
  
  .content-detail-full-height {
    min-height: calc(100% - 622px);
  }
  .resource-page-margin {
    margin: 0 0 500px 0;
  }
  .member-page.frame .ICON {
    position: relative;
    width: 60px;
    height: 60px;
  }
  .member-page.frame .mp-div-4 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--UI-spaceing-spacing-4);
    padding: var(--UI-spaceing-spacing-16);
    position: relative;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
    background-color: var(--color-black-white);
    border-radius: var(--radius-radius-16);
    border: 1px solid;
    border-color: var(--color-green-green-brand-green-2);
    box-shadow: var(--card-shadow-03);
    min-width: 70%;
  }
  .element-desktop .element {
    width: 280px;
    position: absolute;
    height: 210px;
    top: 0;
    left: 0;
    object-fit: cover;
  }
  .element-desktop .overlap-group-wrapper {
    position: relative;
    width: 280px;
    height: 210px;
    background-color: var(--color-green-green-brand-green-2);
    border-radius: var(--UI-spaceing-spacing-16);
    overflow: hidden;
  }
  .about .frame .team-structure-m{
    max-width: 276px;
  }
  .about .frame .div-26 {
    gap: var(--UI-spaceing-spacing-16);
    padding: var(--UI-spaceing-spacing-24);
    border: 1px solid;
    border-color: var(--color-green-green-brand-green-2);
    display: flex;
    align-items: center;
    position: relative;
    border-radius: var(--radius-radius-16);
    min-width: 100%;
    flex-direction: column;
  }
  .about .frame .text-wrapper-10 {
    align-self: stretch;
    margin-top: -1px;
    font-weight: var(--TC-h5-bold-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h5-bold-font-size);
    line-height: var(--TC-h5-bold-line-height);
    position: relative;
    font-family: var(--TC-h5-bold-font-family);
    letter-spacing: var(--TC-h5-bold-letter-spacing);
    font-style: var(--TC-h5-bold-font-style);
    width: 100%;
    text-align: center;
  }
  .owl-prev {
    position: absolute;
    top: calc(50% - 36px);
    left: 8px;
  }
  
  .owl-next {
    position: absolute;
    top: calc(50% - 36px);
    right: 8px;
  }
  .element-desktop .dropdownitem .img {
    position: relative;
    width: 56px;
    height: 75px;
    padding: 25px 16px 25px 16px;
    right: -40px;
  }
  .mobile-menu-border {
    width: 1px;
    height: 27px;
    background-color: var(--color-black-black-3);
    right: -44px;
    position: relative;
  }
}
@media (min-width:768px) and (max-width: 1023px) {
    :root{
      --main-frame-padding: 40px;
      --main-frame-gap: 40px;
      --main-frame-max-width: 1440px;
    }
    html {
      margin: 0 auto;
      max-width: 1439px;
      /*min-width: 768px;*/
      min-width: 375px;
    }
    .element-desktop .header {    
      min-height: 60px;  
      padding: 0px 40px;
    }
    .element-desktop .activity-carousel .button-carousell-right-btn {
      right: 18px;
    }
    .mobile-line-break {
      display: none;
    }
    .element-desktop .frame-13 {
      display: inline-flex;
      align-items: center;
      gap: var(--UI-spaceing-spacing-32);
      position: relative;
      flex: 0 0 auto;
    }
    .service-page.frame .sp-div-4 {
      display: flex;
      align-items: center;
      position: relative;
      align-self: stretch;
      width: 100%;
      flex: 0 0 auto;
      background-color: var(--color-green-green-brand-green-1);
      border-radius: var(--UI-spaceing-spacing-16);
      overflow: hidden;
      gap: var(--UI-spaceing-spacing-0);
    }
    .service-page.frame .sp-overlap-group {
      position: relative;
      /*width: 702px;*/
      height: 415px;
      top: -48px;
      left: -51px;
    }
    .service-page.frame .img-2 {
      position: absolute;
      width: 100%;
      height: 320px;
      top: 48px;
      left: 51px;
      object-fit: cover;
    }

    .service-page.frame .sp-div-5 {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: var(--UI-spaceing-spacing-8);
      position: relative;
      flex: 1;
      align-self: stretch;
      flex-grow: 1;
    }
    .content-full-height {
      min-height: calc(100% - 407px);
    }
    
    .content-detail-full-height {
      min-height: calc(100% - 567px);
    }
    .resource-page-margin {
      margin: 0 0 450px 0;
    }
    .member-page.frame .ICON {
      position: relative;
      width: 80px;
      height: 80px;
    }
    .member-page.frame .mp-div-4 {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: var(--UI-spaceing-spacing-4);
      padding: var(--UI-spaceing-spacing-24);
      position: relative;
      flex: 1;
      align-self: stretch;
      flex-grow: 1;
      background-color: var(--color-black-white);
      border-radius: var(--radius-radius-16);
      border: 1px solid;
      border-color: var(--color-green-green-brand-green-2);
      box-shadow: var(--card-shadow-03);
      min-width: 70%;
    }
    .element-desktop .element {
      width: 320px;
      position: absolute;
      height: 240px;
      top: 0;
      left: 0;
      object-fit: cover;
    }
    .element-desktop .overlap-group-wrapper {
      position: relative;
      width: 320px;
      height: 240px;
      background-color: var(--color-green-green-brand-green-2);
      border-radius: var(--UI-spaceing-spacing-16);
      overflow: hidden;
    }
    .about .frame .team-structure-m{
      max-width: 343px;
    }
    .about .frame .div-26 {
      gap: var(--UI-spaceing-spacing-16);
      padding: var(--UI-spaceing-spacing-24);
      border: 1px solid;
      border-color: var(--color-green-green-brand-green-2);
      display: flex;
      align-items: flex-start;
      position: relative;
      border-radius: var(--radius-radius-16);
      min-width: 100%;
    }
    .about .frame .text-wrapper-10 {
      align-self: stretch;
      margin-top: -1px;
      font-weight: var(--TC-h5-bold-font-weight);
      color: var(--color-black-black-8-default);
      font-size: var(--TC-h5-bold-font-size);
      line-height: var(--TC-h5-bold-line-height);
      position: relative;
      font-family: var(--TC-h5-bold-font-family);
      letter-spacing: var(--TC-h5-bold-letter-spacing);
      font-style: var(--TC-h5-bold-font-style);
    }
    .owl-prev {
      position: absolute;
      top: calc(50% - 36px);
      left: 20px;
    }
    
    .owl-next {
      position: absolute;
      top: calc(50% - 36px);
      right: 20px;
    }
    .element-desktop .dropdownitem .img {
      position: relative;
      width: 104px;
      height: 75px;
      padding: 25px 40px 25px 40px;
      right: -40px;
    }
    .mobile-menu-border {
      width: 1px;
      height: 27px;
      background-color: var(--color-black-black-3);
      right: -44px;
      position: relative;
    }
 }

@media (min-width:1024px) {
  
  :root{
    --main-frame-gap: 80px;
    --main-frame-max-width: 1440px;
  }
  html {
    margin: 0 auto;
    max-width: 2560px;
    /*min-width: 1440px;*/
  }
  .element-desktop .header {    
    min-height: 80px;  
    padding: 0px var(--main-frame-padding);
  }
  .element-desktop .logo {
    position: relative;
    width: 248px;
    height: 40px;
  }

  .element-desktop .topmenu {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    position: relative;
    flex: 0 0 auto;
  }
  .element-desktop .topmenu .main-option {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  
    
  .element-desktop .text-wrapper {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: var(--TC-body-regular-font-family);
    font-weight: var(--TC-body-regular-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-body-regular-font-size);
    text-align: center;
    letter-spacing: var(--TC-body-regular-letter-spacing);
    line-height: var(--TC-body-regular-line-height);
    white-space: nowrap;
    font-style: var(--TC-body-regular-font-style);
  }

  .element-desktop .text-wrapper:hover {
    color: var( --color-green-green-brand-green-5-brand);
  }

  .element-desktop .topmenu .main-option.active .text-wrapper{
    color: var( --color-green-green-brand-green-5-brand);
  }

  .hamburger-menu, .close-menu {
    display: none;
  }
  
  .element-desktop .dropdownitem {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--UI-spaceing-spacing-4);
    position: relative;
    flex: 0 0 auto;
  }
  .element-desktop .dropdownitem .img {
    position: relative;
    width: 16px;
    height: 16px;
  }
  .element-desktop .dropdown .options {
    position: absolute;
    top: 60px;
    left: -10px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    display: none;
    z-index: 1000;
  }
  
  .element-desktop .dropdown .options.active {
    padding: 8px 0px;
    display: block;
  }
  
  .element-desktop .dropdown .options div {
    padding: 8px 20px;
    cursor: pointer;
  }
  .element-desktop .div-f2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }

  .element-desktop .footer {
    display: flex;
    flex-direction: column;
    min-height: 240px;
    align-items: center;
    justify-content: center;
    gap: 28px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #ffffff;
    padding: 0px max(calc(50% - 600px), var(--main-frame-padding));
  }

  .element-desktop .logo-3 {
    position: relative;
    width: 310px;
    height: 50px;
  }

  .element-desktop .frame-12 {
    max-width: 70%;
    display: inline-flex;
    flex-direction: column;
    height: 104px;
    align-items: flex-end;
    gap: var(--UI-spaceing-spacing-24);
    position: relative;
    flex: 0 0 auto;
  }

  .element-desktop .frame-13 {
    display: inline-flex;
    align-items: center;
    gap: var(--UI-spaceing-spacing-32);
    position: relative;
    flex: 0 0 auto;
  }
  .element-desktop .frame-14 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--UI-spaceing-spacing-8);
    position: relative;
    flex: 1;
    align-self: stretch;
    width: 100%;
    flex-grow: 1;
  }

  .element-desktop .frame-15 {
    display: inline-flex;
    align-items: center;
    gap: var(--UI-spaceing-spacing-8) var(--UI-spaceing-spacing-16);
    position: relative;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
    
  .element-desktop .text-wrapper-f13 {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: var(--TC-body-regular-font-family);
    font-weight: var(--TC-body-regular-font-weight);
    color: var(--color-black-black-5);
    font-size: var(--TC-body-regular-font-size);
    letter-spacing: var(--TC-body-regular-letter-spacing);
    line-height: var(--TC-body-regular-line-height);
    white-space: nowrap;
    font-style: var(--TC-body-regular-font-style);
  }
  .element-desktop .text-wrapper-4 {
    font-weight: var(--TC-h2-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h2-font-size);
    text-align: center;
    line-height: var(--TC-h2-line-height);
    position: relative;
    width: fit-content;
    font-family: var(--TC-h2-font-family);
    letter-spacing: var(--TC-h2-letter-spacing);
    white-space: nowrap;
    font-style: var(--TC-h2-font-style);
  }
  .about .frame .text-wrapper-4-about {
    width: fit-content;
    font-weight: var(--TC-h2-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h2-font-size);
    text-align: center;
    line-height: var(--TC-h2-line-height);
    white-space: nowrap;
    position: relative;
    font-family: var(--TC-h2-font-family);
    letter-spacing: var(--TC-h2-letter-spacing);
    font-style: var(--TC-h2-font-style);
  }
  .service-page.frame .sp-text-wrapper-4 {
    position: relative;
    width: fit-content;
    font-family: var(--TC-h2-font-family);
    font-weight: var(--TC-h2-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h2-font-size);
    text-align: center;
    letter-spacing: var(--TC-h2-letter-spacing);
    line-height: var(--TC-h2-line-height);
    white-space: nowrap;
    font-style: var(--TC-h2-font-style);
  }
  .contact-page.frame .cp-text-wrapper-4 {
    width: fit-content;
    font-family: var(--TC-h2-font-family);
    font-weight: var(--TC-h2-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h2-font-size);
    text-align: center;
    line-height: var(--TC-h2-line-height);
    white-space: nowrap;
    position: relative;
    letter-spacing: var(--TC-h2-letter-spacing);
    font-style: var(--TC-h2-font-style);
  }
  .sitemap-page.frame .sm-text-wrapper-4 {
    font-family: var(--TC-h2-font-family);
    font-weight: var(--TC-h2-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h2-font-size);
    text-align: center;
    line-height: var(--TC-h2-line-height);
    position: relative;
    width: fit-content;
    letter-spacing: var(--TC-h2-letter-spacing);
    white-space: nowrap;
    font-style: var(--TC-h2-font-style);
  }
  .member-page.frame .mp-text-wrapper-4 {
    position: relative;
    width: fit-content;
    font-family: var(--TC-h2-font-family);
    font-weight: var(--TC-h2-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h2-font-size);
    text-align: center;
    letter-spacing: var(--TC-h2-letter-spacing);
    line-height: var(--TC-h2-line-height);
    white-space: nowrap;
    font-style: var(--TC-h2-font-style);
  }

  .element-desktop .button {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    min-width: 160px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-32) var(--UI-spaceing-spacing-16)
      var(--UI-spaceing-spacing-32);
    position: relative;
    flex: 0 0 auto;
    background-color: var(--color-green-green-brand-green-5-brand);
    border-radius: 48px;
  }
  .element-desktop .button:hover {
    background-color: var(--color-green-green-brand-green-4);
  }
  .element-desktop .text-wrapper-11 {
    font-weight: var(--TC-h4-regular-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h4-regular-font-size);
    text-align: center;
    line-height: var(--TC-h4-regular-line-height);
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: var(--TC-h4-regular-font-family);
    letter-spacing: var(--TC-h4-regular-letter-spacing);
    white-space: nowrap;
    font-style: var(--TC-h4-regular-font-style);
  }
  .element-desktop .text-wrapper-8 {
    position: relative;
    flex: 1;
    font-family: var(--TC-h5-medium-font-family);
    font-weight: var(--TC-h5-medium-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h5-medium-font-size);
    letter-spacing: var(--TC-h5-medium-letter-spacing);
    line-height: var(--TC-h5-medium-line-height);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-style: var(--TC-h5-medium-font-style);
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  .line-break {
    display: none;
  }

  .element-desktop .view-2 {
    display: flex;
    align-items: center;
    gap: var(--UI-spaceing-spacing-16);
    padding: var(--UI-spaceing-spacing-24) 0px var(--UI-spaceing-spacing-24) 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--color-black-black-2);
  }
  .element-desktop .text-wrapper-6 {
    position: relative;
    width: fit-content;
    font-family: var(--TC-h5-regular-font-family);
    font-weight: var(--TC-h5-regular-font-weight);
    color: var(--color-black-black-5);
    font-size: var(--TC-h5-regular-font-size);
    letter-spacing: var(--TC-h5-regular-letter-spacing);
    line-height: var(--TC-h5-regular-line-height);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-style: var(--TC-h5-regular-font-style);
  }
  .element-desktop .banner .banner-title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    background: url("../img/information_banner_background.svg");
  }
  .about .frame .text-wrapper-9 {
    align-self: stretch;
    margin-top: -1px;
    font-weight: var(--TC-h2-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h2-font-size);
    line-height: var(--TC-h2-line-height);
    position: relative;
    font-family: var(--TC-h2-font-family);
    letter-spacing: var(--TC-h2-letter-spacing);
    font-style: var(--TC-h2-font-style);
  }
  .about .frame .text-wrapper-10 {
    align-self: stretch;
    margin-top: -1px;
    font-weight: var(--TC-h4-bold-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h4-bold-font-size);
    line-height: var(--TC-h4-bold-line-height);
    position: relative;
    font-family: var(--TC-h4-bold-font-family);
    letter-spacing: var(--TC-h4-bold-letter-spacing);
    font-style: var(--TC-h4-bold-font-style);
  }
  .about .frame .team-structure{
    width: 100%;
  }

  .about .frame .team-structure-m{
    display: none;
  }

  .about .frame .div-26 {
    gap: var(--UI-spaceing-spacing-16);
    padding: var(--UI-spaceing-spacing-24);
    flex: 1;
    border: 1px solid;
    border-color: var(--color-green-green-brand-green-2);
    display: flex;
    align-items: flex-start;
    position: relative;
    border-radius: var(--radius-radius-16);
    min-width: 40%;
    align-self: stretch;
  }
  .about .frame .table-desktop {
    width: 100%;
    margin-right: -1px;
  }
  
  .about .frame .table-desktop-2 {
    width: 100%;
    margin-right: -1px;
  }
  
  .table-desktop-wrapper {
    /*overflow-x: auto;*/
    width: 100%;    
  }
  .member-page.frame .table-desktop {
    width: 100%;
    margin-right: -1px;
  }
  
  .about .frame .div {
    overflow: hidden;
  }

  .tab {
    display: flex;
    align-items: flex-start;
    gap: var(--UI-spaceing-spacing-16);
    position: relative;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--color-black-black-3);
    width: 100%;
  }
  
  .tab .tab-item.active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: var(--UI-spaceing-spacing-0) var(--UI-spaceing-spacing-24) var(--UI-spaceing-spacing-16)
      var(--UI-spaceing-spacing-24);
    position: relative;
    align-self: stretch;
    flex: 0 0 auto;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-color: var(--color-green-green-brand-green-5-brand);
  }
  
  .tab .tab-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: var(--UI-spaceing-spacing-0) var(--UI-spaceing-spacing-24) var(--UI-spaceing-spacing-16)
      var(--UI-spaceing-spacing-24);
    position: relative;
    align-self: stretch;
    flex: 0 0 auto;
    color: var(--color-black-black-5);
  }
  .service-page.frame .view-4 {
    display: flex;
    align-items: center;
    gap: var(--UI-spaceing-spacing-16);
    padding: var(--UI-spaceing-spacing-24) 0px var(--UI-spaceing-spacing-24) 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--color-black-black-2);
  }
  .service-page.frame .sp-overlap-group {
    position: relative;
    width: 100%;
    height: 415px;
    top: -48px;
    left: -51px;
  }
  .service-page.frame .img-2 {
    position: absolute;
    width: 100%;
    height: 320px;
    top: 48px;
    left: 51px;
    object-fit: cover;
  }
  .element-desktop .activity-carousel .button-carousell-right-btn {
    right: 98px;
  }
  .mobile-line-break {
    display: none;
  }
  .service-page.frame .sp-div-4 {
    display: flex;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--color-green-green-brand-green-1);
    border-radius: var(--UI-spaceing-spacing-16);
    overflow: hidden;
    gap: var(--UI-spaceing-spacing-0);
  }

  .service-page.frame .sp-div-5 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--UI-spaceing-spacing-8);
    position: relative;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
  }
  .member-page.frame .mp-div-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--UI-spaceing-spacing-4);
    padding: var(--UI-spaceing-spacing-24);
    position: relative;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
    background-color: var(--color-black-white);
    border-radius: var(--radius-radius-16);
    border: 1px solid;
    border-color: var(--color-green-green-brand-green-2);
    box-shadow: var(--card-shadow-03);
  }
  .member-page.frame .mp-div-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--UI-spaceing-spacing-4);
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  .member-page.frame .mp-text-wrapper-5 {
    align-self: stretch;
    margin-top: -1.00px;
    font-family: var(--TC-h4-bold-font-family);
    font-weight: var(--TC-h4-bold-font-weight);
    color: var(--color-green-green-brand-green-5-brand);
    font-size: var(--TC-h4-bold-font-size);
    text-align: center;
    line-height: var(--TC-h4-bold-line-height);
    position: relative;
    letter-spacing: var(--TC-h4-bold-letter-spacing);
    font-style: var(--TC-h4-bold-font-style);
  }
  .sitemap-page.frame .sm-view-3 {
    display: flex;
    align-items: center;
    gap: var(--UI-spaceing-spacing-40);
    padding: var(--UI-spaceing-spacing-0) 0px var(--UI-spaceing-spacing-24) 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--color-black-black-3);
    flex-wrap: wrap;
  }
  .sitemap-page.frame .sm-view-4 {
    display: flex;
    align-items: center;
    gap: var(--UI-spaceing-spacing-40);
    padding: var(--UI-spaceing-spacing-24) 0px var(--UI-spaceing-spacing-24) 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--color-black-black-3);
    flex-wrap: wrap;
  }
  .homepage-banner img{
    content: url("../img/banner.svg");
  }
  .homepage-banner2 img{
    content: url("../img/banner2_desktop.png");
  }
  .homepage-banner-new{
    display: flex;
    justify-content: center;   
    max-height: 420px;
  }
  .homepage-banner-new img{ 
    object-fit: contain;

  }
  .content-full-height {
    min-height: calc(100% - 320px);
  }
  
  .content-detail-full-height {
    min-height: calc(100% - 480px);
  }
  .resource-page-margin {
    margin: 0 0 300px 0;
  }
  .member-page.frame .mp-text-wrapper-18 {
    flex: 1;
    font-family: var(--TC-h4-regular-font-family);
    font-weight: var(--TC-h4-regular-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h4-regular-font-size);
    line-height: var(--TC-h4-regular-line-height);
    position: relative;
    letter-spacing: var(--TC-h4-regular-letter-spacing);
    font-style: var(--TC-h4-regular-font-style);
  }
  .member-page.frame .ICON {
    position: relative;
    width: 80px;
    height: 80px;
  }

  .element-desktop .frame-6.breadcrumb-frame {
    margin: -40px auto;
    white-space: nowrap;
  }
  .mobile-footer-gap {
    display: none;
  }
  .member-table-desktop-wrapper {
    width: 100%;
  }
  .element-desktop .element {
    width: 320px;
    position: absolute;
    height: 240px;
    top: 0;
    left: 0;
    object-fit: cover;
  }
  .element-desktop .overlap-group-wrapper {
    position: relative;
    width: 320px;
    height: 240px;
    background-color: var(--color-green-green-brand-green-2);
    border-radius: var(--UI-spaceing-spacing-16);
    overflow: hidden;
  }
  .news-content .text-wrapper-3 {
    width: fit-content;
    margin-top: -1px;
    font-weight: var(--TC-h2-font-weight);
    color: var(--color-black-black-8-default);
    font-size: var(--TC-h2-font-size);
    line-height: var(--TC-h2-line-height);
    white-space: nowrap;
    position: relative;
    font-family: var(--TC-h2-font-family);
    letter-spacing: var(--TC-h2-letter-spacing);
    font-style: var(--TC-h2-font-style); 
    white-space: break-spaces;
  }
  .owl-prev {
    position: absolute;
    top: calc(50% - 36px);
    left: 20px;
  }
  
  .owl-next {
    position: absolute;
    top: calc(50% - 36px);
    right: 20px;
  }

  .mobile-menu-border {
    display: none;
  }
/*SSSSSSSSSSSSS*/

}

@media (min-width:1024px) and (max-width: 1280px) {
  :root{
    --main-frame-padding: 40px;
  }
}

@media (min-width:1281px) {
  :root{
    --main-frame-padding: 120px;
  }
}

.element-desktop .frame-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-24);
  padding: 0px var(--main-frame-padding) 0px var(--main-frame-padding);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
  max-width: var(--main-frame-max-width);
}
.about .frame .div-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-24);
  padding: 0px var(--main-frame-padding) 0px var(--main-frame-padding);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
  max-width: var(--main-frame-max-width);
}
.about .frame .div-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--UI-spaceing-spacing-24);
  padding: 0px var(--main-frame-padding) 0px var(--main-frame-padding);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
  max-width: var(--main-frame-max-width);
}

.element-desktop {
  display: flex;
  flex-direction: column;
  max-width: 2560px;
  align-items: center;
  position: relative;
  background-color: var(--color-green-green-brand-green-BG);
  gap: var(--UI-spaceing-spacing-0);
}

.element-desktop .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  align-self: stretch;
  width: 100%;
  background-color: var(--color-black-white);

  position: sticky;
  top: 0;
  z-index: 9999;
  padding: 0px max(calc(50% - 600px), var(--main-frame-padding));
}
.element-desktop .header:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  box-shadow: var(--card-shadow-01);
  z-index: -1;

}




.element-desktop .frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--main-frame-gap);
  padding: 0px 0px var(--main-frame-gap) 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.element-desktop .frame-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--UI-spaceing-spacing-16);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  /*padding: 0px var(--main-frame-padding) 0px var(--main-frame-padding);
  margin: 0px auto;
  max-width: var(--main-frame-max-width);*/
}

.element-desktop .banner {
  position: relative;
  align-self: stretch;
  max-width: 2560px;
  overflow: hidden;
}

.element-desktop .banner .img-fluid {
  width: 100%;
}


.element-desktop .img {
  position: relative;
  width: 16px;
  height: 16px;
}


.activity-carousel .owl-stage {
  margin-left: 0px;
}

.element-desktop .frame-5 {
  display: flex;
  width: 1200px;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 506px;
  left: 143px;
}

.element-desktop .activity-carousel .button-carousell-left-btn {
  margin-left: -25px;
}


.element-desktop .button-carousell-left-btn {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6.67px;
  padding: 6.67px;
  position: relative;
  border-radius: 66.67px;
  border: 1px solid;
  border-color: var(--color-black-white);
}

.element-desktop .button-carousell-left-btn {
  background: url("../img/carousell-left-normal-btn.svg") no-repeat center;
}

.element-desktop .button-carousell-left-btn:hover {
  background: url("../img/carousell-left-hover-btn.svg") no-repeat center;
}

.element-desktop .disabled .button-carousell-left-btn {
  background: url("../img/carousell-left-disable-btn.svg") no-repeat center;
}

.element-desktop .button-carousell-right-btn {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6.67px;
  padding: 6.67px;
  position: relative;
  border-radius: 66.67px;
  border: 1px solid;
  border-color: var(--color-black-white);
}

.element-desktop .button-carousell-right-btn {
  background: url("../img/carousell-right-normal-btn.svg") no-repeat center;
}

.element-desktop .button-carousell-right-btn:hover {
  background: url("../img/carousell-right-hover-btn.svg") no-repeat center;
}

.element-desktop .disabled .button-carousell-right-btn {
  background: url("../img/carousell-right-disable-btn.svg") no-repeat center;
}

/* Style the list */
ul.breadcrumb {
  padding: 0px;
  list-style: none;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  content: url("../img/breadcrumb_arrow_right.svg");
  top: 3px;
  position: relative;
}

/* Add a color to all links inside the list */
ul.breadcrumb li {
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  font-size: var(--TC-body-regular-font-size);
  text-align: center;
  letter-spacing: var(--TC-body-regular-letter-spacing);
  line-height: var(--TC-body-regular-line-height);
  white-space: nowrap;
  font-style: var(--TC-body-regular-font-style);
  color: var(--color-green-green-brand-green-5-brand);
}

ul.breadcrumb li a {
  color: var(--color-black-black-5);
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: var(--color-green-green-brand-green-5-brand);
  text-decoration: underline;
}




.element-desktop .div-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.element-desktop .text-wrapper-5 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--TC-body-bold-font-family);
  font-weight: var(--TC-body-bold-font-weight);
  color: var(--color-black-white);
  font-size: var(--TC-body-bold-font-size);
  text-align: center;
  letter-spacing: var(--TC-body-bold-letter-spacing);
  line-height: var(--TC-body-bold-line-height);
  white-space: nowrap;
  font-style: var(--TC-body-bold-font-style);
}

.element-desktop .frame-7 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  gap: var(--UI-spaceing-spacing-0);
}

.element-desktop .view {
  display: flex;
  align-items: center;
  gap: var(--UI-spaceing-spacing-16);
  padding: var(--UI-spaceing-spacing-0) 0px var(--UI-spaceing-spacing-24) 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: var(--color-black-black-2);
}


.element-desktop .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-4) var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-4)
    var(--UI-spaceing-spacing-16);
  position: relative;
  flex: 0 0 auto;
  background-color: var(--color-green-green-light-green-1);
  border-radius: var(--radius-radius-4);
  border: 1px solid;
  border-color: var(--color-green-green-light-green-6);
}

.element-desktop .text-wrapper-7 {
  margin-top: -1px;
  font-weight: var(--TC-body-medium-font-weight);
  color: var(--color-green-green-light-green-6);
  font-size: var(--TC-body-medium-font-size);
  line-height: var(--TC-body-medium-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
  width: fit-content;
  font-family: var(--TC-body-medium-font-family);
  letter-spacing: var(--TC-body-medium-letter-spacing);
  white-space: nowrap;
  font-style: var(--TC-body-medium-font-style);
}


.element-desktop .text-wrapper-8:hover{
  color: var(--color-green-green-brand-green-5-brand);
}

.element-desktop .ICON-arrow-right {
  position: relative;
  width: 24px;
  height: 24px;
}


.element-desktop .tag-2 {
  background-color: var(--color-green-green-brand-green-1);
  border-color: var(--color-green-green-brand-green-5-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-4) var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-4)
    var(--UI-spaceing-spacing-16);
  position: relative;
  flex: 0 0 auto;
  border-radius: var(--radius-radius-4);
  border: 1px solid;
}

.element-desktop .text-wrapper-9 {
  font-weight: var(--TC-body-medium-font-weight);
  color: var(--color-green-green-brand-green-5-brand);
  font-size: var(--TC-body-medium-font-size);
  line-height: var(--TC-body-medium-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--TC-body-medium-font-family);
  letter-spacing: var(--TC-body-medium-letter-spacing);
  white-space: nowrap;
  font-style: var(--TC-body-medium-font-style);
}

.element-desktop .tag-3 {
  background-color: var(--color-green-green-brand-green-1);
  border-color: var(--color-green-green-brand-green-7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-4) var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-4)
    var(--UI-spaceing-spacing-16);
  position: relative;
  flex: 0 0 auto;
  border-radius: var(--radius-radius-4);
  border: 1px solid;
}

.element-desktop .tag .text-wrapper-member {
  margin-top: -1px;
  font-weight: var(--TC-body-medium-font-weight);
  color: #2e7d32;
  font-size: var(--TC-body-medium-font-size);
  line-height: var(--TC-body-medium-line-height);
  font-family: var(--TC-body-medium-font-family);
  white-space: nowrap;
}

.element-desktop .text-wrapper-10 {
  margin-top: -1px;
  font-weight: var(--TC-body-medium-font-weight);
  color: var(--color-green-green-brand-green-7);
  font-size: var(--TC-body-medium-font-size);
  line-height: var(--TC-body-medium-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
  width: fit-content;
  font-family: var(--TC-body-medium-font-family);
  letter-spacing: var(--TC-body-medium-letter-spacing);
  white-space: nowrap;
  font-style: var(--TC-body-medium-font-style);
}

.element-desktop .frame-8 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-40);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.element-desktop .frame-9 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-16);
  position: relative;
  align-self: stretch;
  width: -webkit-calc(100% + (100vw -100%) / 2 - var(--scrollbar-width) / 2);
  width:    -moz-calc(100% + (100vw - 100%) / 2 - var(--scrollbar-width) / 2);
  width:         calc(100% + (100vw - 100%) / 2 - var(--scrollbar-width) / 2);
  flex: 0 0 auto;
}


.element-desktop .frame-10 {
  display: flex;
  align-items: center;
  gap: var(--UI-spaceing-spacing-40);
  padding: 0px 0px 0px var(--UI-spaceing-spacing-16);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}


.element-desktop .overlap-group-3 {
  position: relative;
  height: 240px;
  transition: transform 0.2s;
}

.element-desktop .overlap-group-3:hover {  
  transform: scale(1.1);
}

.element-desktop .ICON-img {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 108px;
  left: 148px;
}


.element-desktop .overlap-2 {
  position: relative;
  width: 317px;
  height: 240px;
  left: 1px;
}

.element-desktop .ICON-img-2 {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 108px;
  left: 147px;
}

.element-desktop .element-2 {
  width: 317px;
  position: absolute;
  height: 240px;
  top: 0;
  left: 0;
  object-fit: cover;
}

.element-desktop .overlap-wrapper {
  position: relative;
  width: 320px;
  height: 240px;
  margin-right: -216px;
  background-color: var(--color-green-green-brand-green-2);
  border-radius: var(--UI-spaceing-spacing-16);
  overflow: hidden;
}

.element-desktop .overlap-3 {
  position: relative;
  width: 224px;
  height: 240px;
}

.element-desktop .element-3 {
  width: 224px;
  position: absolute;
  height: 240px;
  top: 0;
  left: 0;
  object-fit: cover;
}

.element-desktop .frame-11 {
  display: flex;
  width: 1200px;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 104px;
  left: 0;
}

.element-desktop .ICON-arrow-left-wrapper {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6.67px;
  padding: 6.67px;
  position: relative;
  background-color: var(--color-black-white);
  border-radius: 66.67px;
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-2);
}


.element-desktop .text-wrapper-12 {
  margin-top: -1px;
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  position: relative;
  width: fit-content;
  font-family: var(--TC-body-regular-font-family);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  white-space: nowrap;
  font-style: var(--TC-body-regular-font-style);
}

.element-desktop .text-wrapper-12:hover {
  color: var(--color-green-green-brand-green-5-brand);
}

.element-desktop .div-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.element-desktop .text-wrapper-13 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-5);
  font-size: var(--TC-body-regular-font-size);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  line-height: var(--TC-body-regular-line-height);
  white-space: nowrap;
  font-style: var(--TC-body-regular-font-style);
}


.element-desktop .rectangle {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(141, 194, 31) 0%, rgb(30, 170, 57) 50%, rgb(0, 145, 58) 100%);
}

.about .frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--main-frame-gap);
  padding: 0px 0px var(--main-frame-gap) 0px;
  position: relative;
}

.about .frame .div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-40);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  overflow: visible;
  margin: 0 auto;
  max-width: var(--main-frame-max-width);
}

.about .frame .view {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgb(234, 246, 235) 0%, rgb(243, 248, 234) 100%);
  background-image: url(./img/logo-1.svg);
  background-size: 100% 100%;
}

.about .frame .text-wrapper {
  position: absolute;
  height: 48px;
  top: 75px;
  left: 656px;
  font-family: var(--TC-h2-font-family);
  font-weight: var(--TC-h2-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-h2-font-size);
  text-align: center;
  letter-spacing: var(--TC-h2-letter-spacing);
  line-height: var(--TC-h2-line-height);
  white-space: nowrap;
  font-style: var(--TC-h2-font-style);
}

.about .frame .view-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0px var(--UI-spaceing-spacing-120) 0px var(--UI-spaceing-spacing-120);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.about .frame .view-2 {
  display: inline-flex;
  align-items: center;
  gap: var(--UI-spaceing-spacing-8);
  position: relative;
  flex: 0 0 auto;
}

.about .frame .text-wrapper-2 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--TC-body-caption-font-family);
  font-weight: var(--TC-body-caption-font-weight);
  color: var(--color-black-black-5);
  font-size: var(--TC-body-caption-font-size);
  letter-spacing: var(--TC-body-caption-letter-spacing);
  line-height: var(--TC-body-caption-line-height);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-style: var(--TC-body-caption-font-style);
}


.about .frame .text-wrapper-3 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--TC-body-caption-font-family);
  font-weight: var(--TC-body-caption-font-weight);
  color: var(--color-green-green-brand-green-5-brand);
  font-size: var(--TC-body-caption-font-size);
  letter-spacing: var(--TC-body-caption-letter-spacing);
  line-height: var(--TC-body-caption-line-height);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-style: var(--TC-body-caption-font-style);
}


.about .frame .title {
  display: flex;
  height: 56px;
  align-items: center;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
}


.about .frame .div-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-16);
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.about .frame .taiwan {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Noto Sans TC", Helvetica;
  font-weight: 400;
  color: var(--color-black-black-8-default);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}

.about .frame .span {
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: #262626;
  font-size: var(--TC-body-regular-font-size);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  line-height: var(--TC-body-regular-line-height);
  font-style: var(--TC-body-regular-font-style);
}

.about .frame .text-wrapper-5 {
  color: var(--color-black-black-8-default);
  font-weight: var(--TC-body-bold-font-weight);
  font-family: var(--TC-body-bold-font-family);
  font-style: var(--TC-body-bold-font-style);
  letter-spacing: var(--TC-body-bold-letter-spacing);
  line-height: var(--TC-body-bold-line-height);
  font-size: var(--TC-body-bold-font-size);
  text-wrap: wrap;
  white-space: inherit;
}

.about .frame .text-wrapper-61 {
  align-self: stretch;
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  position: relative;
  font-family: var(--TC-body-regular-font-family);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
}

.about .frame .view-3 {
  display: flex;
  max-width: 2440px;
  align-items: flex-start;
  gap: 0px;
  padding: 0px 0px 0px var(--UI-spaceing-spacing-16);
  position: relative;
  flex: 0 0 auto;
  width: -webkit-calc(100% + (100vw -100%) / 2);
  width:    -moz-calc(100% + (100vw - 100%) / 2);
  width:         calc(100% + (100vw - 100%) / 2);
}

.about .frame .div-4 {
  display: flex;
  flex-direction: column;
  width: 230px;
  align-items: center;
  gap: var(--UI-spaceing-spacing-4);
  padding: var(--UI-spaceing-spacing-24) var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-24)
    var(--UI-spaceing-spacing-16);
  position: relative;
  background-color: #ffffff;
  border-radius: var(--radius-radius-16);
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-2);
  box-shadow: var(--card-shadow-01);
  min-height: 230px;
}
.about .frame .div-4:hover {
  border-color: var(--color-green-green-brand-green-4);
}

.about .frame .ICON {
  position: relative;
  width: 80px;
  height: 80px;
}

.about .frame .div-5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--UI-spaceing-spacing-4);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.about .frame .text-wrapper-71 {
  align-self: stretch;
  margin-top: -1px;
  font-weight: var(--TC-h5-bold-font-weight);
  color: var(--color-green-green-brand-green-6);
  font-size: var(--TC-h5-bold-font-size);
  text-align: center;
  line-height: var(--TC-h5-bold-line-height);
  position: relative;
  font-family: var(--TC-h5-bold-font-family);
  letter-spacing: var(--TC-h5-bold-letter-spacing);
  font-style: var(--TC-h5-bold-font-style);
}

.about .frame .text-wrapper-81 {
  align-self: stretch;
  font-weight: var(--TC-body-caption-font-weight);
  color: var(--color-black-black-6);
  font-size: var(--TC-body-caption-font-size);
  line-height: var(--TC-body-caption-line-height);
  position: relative;
  font-family: var(--TC-body-caption-font-family);
  letter-spacing: var(--TC-body-caption-letter-spacing);
  font-style: var(--TC-body-caption-font-style);
}

.about .frame .div-6 {
  display: flex;
  flex-direction: column;
  width: 230px;
  align-items: center;
  gap: var(--UI-spaceing-spacing-4);
  padding: var(--UI-spaceing-spacing-24) var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-24)
    var(--UI-spaceing-spacing-16);
  position: relative;
  align-self: stretch;
  background-color: #ffffff;
  border-radius: var(--radius-radius-16);
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-2);
  box-shadow: var(--card-shadow-01);
}

.about .frame .div-7 {
  display: flex;
  flex-direction: column;
  width: 230px;
  align-items: center;
  gap: var(--UI-spaceing-spacing-4);
  padding: var(--UI-spaceing-spacing-24) var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-24)
    var(--UI-spaceing-spacing-16);
  position: relative;
  margin-right: -94px;
  background-color: #ffffff;
  border-radius: var(--radius-radius-16);
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-2);
  box-shadow: var(--card-shadow-01);
}

.about .frame .overlap-group-wrapper {
  position: relative;
  width: 55px;
  height: 67px;
  top: 6px;
  left: 13px;
}

.about .frame .overlap-group {
  position: relative;
  width: 56px;
  height: 68px;
  left: -1px;
}

.about .frame .vector {
  position: absolute;
  width: 2px;
  height: 15px;
  top: 53px;
  left: 10px;
}

.about .frame .vector-2 {
  position: absolute;
  width: 2px;
  height: 16px;
  top: 52px;
  left: 46px;
}

.about .frame .vector-3 {
  position: absolute;
  width: 48px;
  height: 46px;
  top: 9px;
  left: 0;
}

.about .frame .vector-4 {
  position: absolute;
  width: 17px;
  height: 29px;
  top: 26px;
  left: 39px;
}

.about .frame .subtract {
  position: absolute;
  width: 52px;
  height: 31px;
  top: 0;
  left: 4px;
}

.about .frame .div-8 {
  display: flex;
  flex-direction: column;
  width: 230px;
  align-items: center;
  gap: var(--UI-spaceing-spacing-4);
  padding: var(--UI-spaceing-spacing-24) var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-24)
    var(--UI-spaceing-spacing-16);
  position: relative;
  align-self: stretch;
  margin-right: -356px;
  background-color: #ffffff;
  border-radius: var(--radius-radius-16);
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-2);
  box-shadow: var(--card-shadow-01);
}

.about .frame .ICON-2 {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: -3117px;
  margin-right: -4339px;
}

.about .frame .div-9 {
  display: flex;
  flex-direction: column;
  width: 230px;
  align-items: center;
  gap: var(--UI-spaceing-spacing-4);
  padding: var(--UI-spaceing-spacing-24) var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-24)
    var(--UI-spaceing-spacing-16);
  position: relative;
  margin-right: -618px;
  background-color: #ffffff;
  border-radius: var(--radius-radius-16);
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-2);
  box-shadow: var(--card-shadow-01);
}

.about .frame .div-10 {
  position: relative;
  width: 72px;
  height: 68px;
  top: 6px;
  left: 5px;
}

.about .frame .overlap-group-2 {
  position: absolute;
  width: 56px;
  height: 75px;
  top: 3185px;
  left: 4061px;
}

.about .frame .union {
  position: absolute;
  width: 25px;
  height: 51px;
  top: 0;
  left: 14px;
}

.about .frame .vector-5 {
  position: absolute;
  width: 21px;
  height: 9px;
  top: 66px;
  left: 10px;
}

.about .frame .vector-6 {
  position: absolute;
  width: 5px;
  height: 14px;
  top: 60px;
  left: 18px;
}

.about .frame .vector-7 {
  position: absolute;
  width: 3px;
  height: 22px;
  top: 47px;
  left: 3px;
}

.about .frame .subtract-2 {
  position: absolute;
  width: 56px;
  height: 53px;
  top: 11px;
  left: 0;
}

.about .frame .union-2 {
  position: absolute;
  width: 25px;
  height: 34px;
  top: 3236px;
  left: 4127px;
}

.about .frame .ellipse {
  position: absolute;
  width: 3px;
  height: 3px;
  top: 58px;
  left: 14px;
  background-color: var(--color-green-green-brand-green-5-brand);
  border-radius: 1.3px;
  transform: rotate(-137.67deg);
}

.about .frame .div-11 {
  display: flex;
  width: 1200px;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 97px;
  left: 0;
}

.about .frame .button-carousell-btn {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6.67px;
  padding: 6.67px;
  position: relative;
  background-color: var(--color-black-white);
  border-radius: 66.67px;
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-2);
}

.about .frame .ICON-arrow-right-wrapper {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6.67px;
  padding: 6.67px;
  position: relative;
  background-color: var(--color-green-green-brand-green-5-brand);
  border-radius: 66.67px;
  border: 1px solid;
  border-color: var(--color-black-white);
}



.about .frame .p {
  align-self: stretch;
  height: 24px;
  margin-top: -1px;
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  white-space: nowrap;
  position: relative;
  font-family: var(--TC-body-regular-font-family);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
  text-wrap: auto;
  white-space: inherit;
}


.about .frame .div-13 {
  display: flex;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-8);
  padding: 0px 0px 0px var(--UI-spaceing-spacing-16);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.about .frame .text-wrapper-11 {
  margin-top: -1px;
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  position: relative;
  font-family: var(--TC-body-regular-font-family);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
  width: 80px;
  text-align: left;
}

.about .frame .text-wrapper-12 {
  flex: 1;
  margin-top: -1px;
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  position: relative;
  font-family: var(--TC-body-regular-font-family);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
  text-wrap: wrap;
  white-space: inherit;
}

.about .frame .div-14 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--UI-spaceing-spacing-8);
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.about .frame .text-wrapper-13 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-body-regular-font-size);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  line-height: var(--TC-body-regular-line-height);
  font-style: var(--TC-body-regular-font-style);
  text-wrap: wrap;
  white-space: inherit;
}

.about .frame .div-15 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  gap: var(--UI-spaceing-spacing-0);
}

.about .frame .div-16 {
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  gap: var(--UI-spaceing-spacing-0);
}

.about .frame .text-wrapper-14 {
  width: fit-content;
  margin-top: -1px;
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  white-space: nowrap;
  position: relative;
  font-family: var(--TC-body-regular-font-family);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
}

.about .frame .div-17 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 0px 0px var(--UI-spaceing-spacing-32);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  gap: var(--UI-spaceing-spacing-0);
}

.about .frame .div-18 {
  display: flex;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-4);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.about .frame .text-wrapper-15 {
  width: fit-content;
  margin-top: -1px;
  font-weight: 400;
  color: var(--color-black-black-8-default);
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  position: relative;
  font-family: "Noto Sans TC", Helvetica;
  letter-spacing: 0;
}

.about .frame .text-wrapper-16 {
  align-self: stretch;
  width: 1096px;
  margin-top: -1px;
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  position: relative;
  font-family: var(--TC-body-regular-font-family);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
}

.about .frame .div-wrapper {
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: var(--color-green-green-brand-green-1);
  border-radius: var(--radius-radius-16);
  overflow: hidden;
}

.about .frame .overlap-group-3 {
  position: relative;
  width: 1120px;
  height: 337px;
  top: 64px;
  left: 40px;
}

.about .frame .vector-8 {
  position: absolute;
  width: 72px;
  height: 288px;
  top: 28px;
  left: 148px;
}

.about .frame .line {
  position: absolute;
  width: 874px;
  height: 2px;
  top: 168px;
  left: 143px;
}

.about .frame .div-wrapper-2 {
  display: flex;
  width: 160px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-green-green-light-green-5-brand);
  border-radius: var(--radius-radius-16);
  box-shadow: var(--card-shadow-01);
}

.about .frame .text-wrapper-17 {
  margin-top: -1px;
  font-weight: var(--TC-h5-bold-font-weight);
  color: var(--color-black-white);
  font-size: var(--TC-h5-bold-font-size);
  line-height: var(--TC-h5-bold-line-height);
  position: relative;
  width: fit-content;
  font-family: var(--TC-h5-bold-font-family);
  letter-spacing: var(--TC-h5-bold-letter-spacing);
  white-space: nowrap;
  font-style: var(--TC-h5-bold-font-style);
}

.about .frame .div-wrapper-3 {
  display: flex;
  width: 160px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: absolute;
  top: 139px;
  left: 0;
  background-color: var(--color-green-green-light-green-5-brand);
  border-radius: var(--radius-radius-16);
  box-shadow: var(--card-shadow-01);
}

.about .frame .div-wrapper-4 {
  display: flex;
  width: 160px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: absolute;
  top: 278px;
  left: 0;
  background-color: var(--color-green-green-light-green-5-brand);
  border-radius: var(--radius-radius-16);
  box-shadow: var(--card-shadow-01);
}

.about .frame .div-19 {
  display: inline-flex;
  align-items: center;
  gap: var(--UI-spaceing-spacing-32);
  position: absolute;
  top: 42px;
  left: 280px;
}

.about .frame .div-20 {
  flex-direction: column;
  width: 186px;
  overflow: hidden;
  box-shadow: var(--card-shadow-01);
  display: flex;
  align-items: flex-start;
  position: relative;
  border-radius: var(--radius-radius-16);
}

.about .frame .div-wrapper-5 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--color-green-green-brand-green-6);
}

.about .frame .about .frame-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
}

.about .frame .div-21 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.about .frame .element-wrapper {
  width: 100px;
  height: 100px;
  background-color: #f60a0a;
  position: relative;
  border-radius: 70px;
  overflow: hidden;
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-3);
}

.about .frame .element {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 0;
  left: 0;
  object-fit: cover;
}

.about .frame .div-22 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--UI-spaceing-spacing-4);
  position: relative;
  flex: 0 0 auto;
}

.about .frame .text-wrapper-18 {
  margin-top: -1px;
  font-weight: var(--TC-body-caption-font-weight);
  color: var(--color-black-black-6);
  font-size: var(--TC-body-caption-font-size);
  line-height: var(--TC-body-caption-line-height);
  position: relative;
  width: fit-content;
  font-family: var(--TC-body-caption-font-family);
  letter-spacing: var(--TC-body-caption-letter-spacing);
  white-space: nowrap;
  font-style: var(--TC-body-caption-font-style);
}

.about .frame .text-wrapper-19 {
  font-weight: var(--TC-h5-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-h5-regular-font-size);
  line-height: var(--TC-h5-regular-line-height);
  position: relative;
  width: fit-content;
  font-family: var(--TC-h5-regular-font-family);
  letter-spacing: var(--TC-h5-regular-letter-spacing);
  white-space: nowrap;
  font-style: var(--TC-h5-regular-font-style);
}

.about .frame .img-wrapper {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  position: relative;
  border-radius: 70px;
  overflow: hidden;
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-3);
}

.about .frame .element-2 {
  position: absolute;
  width: 74px;
  height: 95px;
  top: 5px;
  left: 13px;
  object-fit: cover;
}

.about .frame .div-23 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
  border-radius: var(--radius-radius-16);
  overflow: hidden;
  box-shadow: var(--card-shadow-01);
}

.about .frame .element-wrapper-2 {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: var(--color-green-green-brand-green-2);
  border-radius: 70px;
  overflow: hidden;
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-3);
}


.about .frame .div-24 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-24);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.about .frame .div-25 {
  display: flex;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-24);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  flex-wrap: wrap;
}


.about .frame .div-27 {
  width: 120px;
  height: 120px;
  background-color: #ffffff;
  position: relative;
  border-radius: 70px;
  overflow: hidden;
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-3);
}

.about .frame .element-3 {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
  object-fit: cover;
}

.about .frame .div-28 {
  display: grid;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-8);
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.about .frame .div-29 {
  display: flex;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-16);
  padding: var(--UI-spaceing-spacing-24);
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  border-radius: var(--radius-radius-16);
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-2);
  min-width: 500px;
  max-width: 760px;
}

.about .frame .overlap-group-4 {
  position: relative;
  width: 94px;
  height: 120px;
  left: 13px;
}

.about .frame .ICON-img {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 48px;
  left: 35px;
}

.about .frame .element-4 {
  position: absolute;
  width: 94px;
  height: 120px;
  top: 0;
  left: 0;
  object-fit: cover;
}

.about .frame .overlap-group-5 {
  position: relative;
  height: 120px;
}

.about .frame .ICON-img-2 {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 48px;
  left: 48px;
}

.about .frame .table-desktop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
  margin-left: -1px;
  border-radius: var(--UI-spaceing-spacing-16);
  overflow: hidden;
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-2);
}

.about .frame .div-30 {
  display: flex;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.about .frame .div-wrapper-6 {
  display: flex;
  width: 200px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: relative;
  background-color: var(--color-green-green-brand-green-6);
}

.about .frame .text-wrapper-20 {
  flex: 1;
  margin-top: -1px;
  font-weight: var(--TC-body-bold-font-weight);
  color: var(--color-black-white);
  font-size: var(--TC-body-bold-font-size);
  line-height: var(--TC-body-bold-line-height);
  position: relative;
  font-family: var(--TC-body-bold-font-family);
  letter-spacing: var(--TC-body-bold-letter-spacing);
  font-style: var(--TC-body-bold-font-style);
}

.about .frame .div-wrapper-7 {
  flex: 1;
  flex-grow: 2;
  background-color: var(--color-green-green-brand-green-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: relative;
}

.about .frame .div-wrapper-8 {
  flex: 1;
  flex-grow: 1;
  background-color: var(--color-green-green-brand-green-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: relative;
}

.about .frame .div-wrapper-9 {
  flex: 1;
  flex-grow: 2;
  background-color: var(--color-black-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: relative;
}

.about .frame .div-wrapper-10 {
  flex: 1;
  flex-grow: 1;
  background-color: var(--color-black-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: relative;
}

.about .frame .div-wrapper-11 {
  flex: 1;
  flex-grow: 2;
  background-color: var(--color-green-green-brand-green-1-50);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: relative;
}

.about .frame .table-desktop-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
  margin-left: -1px;
  border-radius: var(--UI-spaceing-spacing-16);
  overflow: hidden;
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-2);
}

.about .frame .div-wrapper-12 {
  flex: 1;
  flex-grow: 1;
  background-color: var(--color-green-green-brand-green-1-50);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: relative;
}

.about .frame .div-wrapper-13 {
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  background-color: var(--color-black-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: relative;
}

.about .frame .div-wrapper-14 {
  width: 200px;
  align-self: stretch;
  background-color: var(--color-green-green-brand-green-1-50);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: relative;
}

.about .frame .div-wrapper-15 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16);
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  background-color: var(--color-green-green-brand-green-1-50);
}

.about .activity-carousel .owl-stage {
  margin-left: 0px;
}

.flex-1 {
  flex: 1;
}

.news-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-80);
  padding: 0px;
  position: relative;
}

.news-content .div-news {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--UI-spaceing-spacing-40);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.news-content .div-2-news {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-16);
  padding: 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;

  
  color: var(--color-black-black-8-default);
  font-family: var(--TC-h2-font-family);
  font-style: var(--TC-h2-font-style);
  overflow-wrap: anywhere;
  word-break: break-word;
}


.news-content .div-2-news a{
  color: var(--color-green-green-brand-green-5-brand) !important;
}
.news-content .div-2-news a:hover{
  color: var(--color-green-green-brand-green-4) !important;
}
.news-content .div-2-news h1 { 
  display: block;
  font-size: 2em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.news-content .div-2-news h2 {
  display: block;
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.news-content .div-2-news h3 { 
  display: block;
  font-size: 1.17em;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.news-content .div-2-news h4 { 
  display: block;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.news-content .div-2-news h5 { 
  display: block;
  font-size: .83em;
  margin-top: 1.67em;
  margin-bottom: 1.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.news-content .div-2-news h6 { 
  display: block;
  font-size: .67em;
  margin-top: 2.33em;
  margin-bottom: 2.33em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.news-content .div-2-news em { 
  font-style: italic;
}

.news-content .title {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}


.news-content .text-wrapper-4 {
  width: fit-content;
  margin-top: -1px;
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-green-green-brand-green-5-brand);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  white-space: nowrap;
  position: relative;
  font-family: var(--TC-body-regular-font-family);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
}

.news-content .div-3 {
  display: inline-flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.news-content .p {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-body-regular-font-size);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  line-height: var(--TC-body-regular-line-height);
  white-space: nowrap;
  font-style: var(--TC-body-regular-font-style);
}


.news-content .rectangle-news {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 1px;
  background-color: var(--color-black-black-3);
}

.news-content .ICON-img-wrapper {
  /*position: relative;
  width: 1200px;
  height: 400px;
  background-color: var(--color-green-green-brand-green-1);
  border-radius: var(--UI-spaceing-spacing-16);
  overflow: hidden;*/
}

.news-content .content-img {
  /*position: absolute;
  width: 24px;
  height: 24px;
  top: 188px;
  left: 588px;*/
  position: relative;
  max-width: 100%;
  height: auto;
  border-radius: var(--UI-spaceing-spacing-16);

}

.news-content .text-wrapper-5 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--TC-h3-bold-font-family);
  font-weight: var(--TC-h3-bold-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-h3-bold-font-size);
  letter-spacing: var(--TC-h3-bold-letter-spacing);
  line-height: var(--TC-h3-bold-line-height);
  white-space: nowrap;
  font-style: var(--TC-h3-bold-font-style);
}

.news-content .text-wrapper-62 {
  align-self: stretch;
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  position: relative;
  font-family: var(--TC-body-regular-font-family);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
}

.tab .tab-item.active .text {
  margin-top: -2px;
  font-family: var(--TC-h5-bold-font-family);
  font-weight: var(--TC-h5-bold-font-weight);
  color: var(--color-green-green-brand-green-5-brand);
  position: relative;
  width: fit-content;
  font-size: var(--TC-h5-bold-font-size);
  letter-spacing: var(--TC-h5-bold-letter-spacing);
  line-height: var(--TC-h5-bold-line-height);
  white-space: nowrap;
  font-style: var(--TC-h5-bold-font-style);
}

.tab .tab-item:hover {
  color: var(--color-green-green-brand-green-5-brand);
}

.tab .tab-item .text {
  margin-top: -1px;
  font-family: var(--TC-h5-regular-font-family);
  font-weight: var(--TC-h5-regular-font-weight);
  position: relative;
  width: fit-content;
  font-size: var(--TC-h5-regular-font-size);
  letter-spacing: var(--TC-h5-regular-letter-spacing);
  line-height: var(--TC-h5-regular-line-height);
  white-space: nowrap;
  font-style: var(--TC-h5-regular-font-style);
}


.outer-pagination {
  width: 100%;
}

.paginationjs {
  width: 100%;
}

.paginationjs-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--UI-spaceing-spacing-16);
  position: relative;
  padding: var(--UI-spaceing-spacing-16) 0px;
}

.paginationjs-pages li{
  
  float: left;
  border-right: none;
  list-style: none;
  width: 48px;
}

.paginationjs-pages .paginationjs-prev {
  display: flex;
  width: 48px;
  height: 32px;
  align-items: center;
  justify-content: center;
  
}

.paginationjs-pages .paginationjs-prev a {
  position: relative;
  width: 32px;
  height: 32px;
  background: url("../img/carousell-left-normal-btn.svg") no-repeat;
}
.paginationjs-pages .paginationjs-prev a:hover {
  position: relative;
  width: 32px;
  height: 32px;
  background: url("../img/carousell-left-hover-btn.svg") no-repeat;
}

.paginationjs-pages .paginationjs-prev.disabled a {
  position: relative;
  width: 32px;
  height: 32px;
  background: url("../img/carousell-left-disable-btn.svg") no-repeat;
}


.paginationjs-pages .pagination-item.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: var(--UI-spaceing-spacing-16);
}

.paginationjs-pages .pagination-item.active a {
  font-family: var(--TC-body-bold-font-family);
  font-weight: var(--TC-body-bold-font-weight);
  color: var(--color-green-green-brand-green-6);
  position: relative;
  align-self: stretch;
  font-size: var(--TC-body-bold-font-size);
  text-align: center;
  letter-spacing: var(--TC-body-bold-letter-spacing);
  line-height: var(--TC-body-bold-line-height);
  font-style: var(--TC-body-bold-font-style);
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.paginationjs-pages .pagination-item, .paginationjs-pages .paginationjs-ellipsis {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: var(--global-borderradius-borderradius);
}

.paginationjs-pages .pagination-item a, .paginationjs-pages .paginationjs-ellipsis a {
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-4);
  position: relative;
  align-self: stretch;
  font-size: var(--TC-body-regular-font-size);
  text-align: center;
  letter-spacing: var(--TC-body-regular-letter-spacing);
  line-height: var(--TC-body-regular-line-height);
  font-style: var(--TC-body-regular-font-style);
  cursor: pointer;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin: 0 8px;
}

.paginationjs-pages .paginationjs-next {
  display: flex;
  width: 48px;
  height: 32px;
  align-items: center;
  justify-content: center;
}

.paginationjs-pages .paginationjs-next a {
  position: relative;
  width: 32px;
  height: 32px;
  background: url("../img/carousell-right-normal-btn.svg") no-repeat;
}
.paginationjs-pages .paginationjs-next a:hover {
  position: relative;
  width: 32px;
  height: 32px;
  background: url("../img/carousell-right-hover-btn.svg") no-repeat;
}

.paginationjs-pages .paginationjs-next.disabled a {
  position: relative;
  width: 32px;
  height: 32px;
  background: url("../img/carousell-right-disable-btn.svg") no-repeat;
}
strong {
  font-weight: 800;
}

.gap-div{
  width: 100%;
  padding: 0 0 var(--main-frame-gap) 0;
}

.service-page.frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  padding: 0px 0px;
  position: relative;
}

.service-page.frame .sp-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--main-frame-gap);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  padding: 0 0 0 0;
}

.service-page.frame .view {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 200px;
  background: linear-gradient(
    180deg,
    rgb(234, 246, 235) 0%,
    rgb(243, 248, 234) 100%
  );
  background-image: url(./img/logo.svg);
  background-size: 100% 100%;
}

.service-page.frame .sp-text-wrapper {
  position: absolute;
  height: 48px;
  top: 75px;
  left: 656px;
  font-family: var(--TC-h2-font-family);
  font-weight: var(--TC-h2-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-h2-font-size);
  text-align: center;
  line-height: var(--TC-h2-line-height);
  letter-spacing: var(--TC-h2-letter-spacing);
  white-space: nowrap;
  font-style: var(--TC-h2-font-style);
}

.service-page.frame .view-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0px var(--UI-spaceing-spacing-120) 0px var(--UI-spaceing-spacing-120);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.service-page.frame .view-2 {
  display: inline-flex;
  align-items: center;
  gap: var(--UI-spaceing-spacing-8);
  position: relative;
  flex: 0 0 auto;
}

.service-page.frame .sp-text-wrapper-2 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--TC-body-caption-font-family);
  font-weight: var(--TC-body-caption-font-weight);
  color: var(--color-black-black-5);
  font-size: var(--TC-body-caption-font-size);
  letter-spacing: var(--TC-body-caption-letter-spacing);
  line-height: var(--TC-body-caption-line-height);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-style: var(--TC-body-caption-font-style);
}

.service-page.frame .ICON-arrow-right {
  position: relative;
  width: 16px;
  height: 16px;
}

.service-page.frame .sp-text-wrapper-3 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--TC-body-caption-font-family);
  font-weight: var(--TC-body-caption-font-weight);
  color: var(--color-green-green-brand-green-5-brand);
  font-size: var(--TC-body-caption-font-size);
  line-height: var(--TC-body-caption-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  letter-spacing: var(--TC-body-caption-letter-spacing);
  white-space: nowrap;
  font-style: var(--TC-body-caption-font-style);
}

.service-page.frame .sp-div-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-24);
  padding: 0px var(--main-frame-padding) 0px var(--main-frame-padding);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
  max-width: var(--main-frame-max-width);
}

.service-page.frame .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}


.service-page.frame .sp-div-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.service-page.frame .sp-text-wrapper-5 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--TC-body-bold-font-family);
  font-weight: var(--TC-body-bold-font-weight);
  color: var(--color-black-white);
  font-size: var(--TC-body-bold-font-size);
  text-align: center;
  line-height: var(--TC-body-bold-line-height);
  letter-spacing: var(--TC-body-bold-letter-spacing);
  white-space: nowrap;
  font-style: var(--TC-body-bold-font-style);
}

.service-page.frame .sp-div-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  gap: var(--UI-spaceing-spacing-0);
}

.service-page.frame .view-3 {
  display: flex;
  align-items: center;
  gap: var(--UI-spaceing-spacing-16);
  padding: var(--UI-spaceing-spacing-0) 0px var(--UI-spaceing-spacing-24) 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: var(--color-black-black-2);
}

.service-page.frame .sp-text-wrapper-6 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--TC-h5-regular-font-family);
  font-weight: var(--TC-h5-regular-font-weight);
  color: var(--color-black-black-5);
  font-size: var(--TC-h5-regular-font-size);
  letter-spacing: var(--TC-h5-regular-letter-spacing);
  line-height: var(--TC-h5-regular-line-height);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-style: var(--TC-h5-regular-font-style);
}

.service-page.frame .sp-text-wrapper-7 {
  position: relative;
  flex: 1;
  margin-top: -1.00px;
  font-family: var(--TC-h5-medium-font-family);
  font-weight: var(--TC-h5-medium-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-h5-medium-font-size);
  letter-spacing: var(--TC-h5-medium-letter-spacing);
  line-height: var(--TC-h5-medium-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-style: var(--TC-h5-medium-font-style);
}

.service-page.frame .sp-text-wrapper-7:hover {
  color: var(--color-green-green-brand-green-5-brand);
}
.service-page.frame .title-2 {
  display: flex;
  height: 56px;
  align-items: center;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
}


.service-page.frame .sp-overlap-wrapper {
  position: relative;
  flex: 1;
  flex-grow: 1;
  height: 320px;
  width: 100%;
  background-color: var(--color-green-green-brand-green-1);
  overflow: hidden;
}


.service-page.frame .ICON-img {
  position: absolute;
  top: 196px;
  left: 339px;
  width: 24px;
  height: 24px;
}


.service-page.frame .sp-rectangle {
  position: absolute;
  width: 702px;
  height: 415px;
  top: 0;
  left: 0;
  background-color: #1eaa390d;
  mix-blend-mode: color;
}

.service-page.frame .sp-text-wrapper-8 {
  font-family: var(--TC-h4-bold-font-family);
  font-weight: var(--TC-h4-bold-font-weight);
  font-size: var(--TC-h4-bold-font-size);
  line-height: var(--TC-h4-bold-line-height);
  position: relative;
  align-self: stretch;
  color: var(--color-black-black-8-default);
  letter-spacing: var(--TC-h4-bold-letter-spacing);
  font-style: var(--TC-h4-bold-font-style);
  margin: 0 var(--UI-spaceing-spacing-24);
}

.service-page.frame .sp-text-wrapper-9 {
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  position: relative;
  align-self: stretch;
  color: var(--color-black-black-8-default);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
  margin: 0 var(--UI-spaceing-spacing-24);
}

.contact-page {
  height: 100%;
}

.contact-page.frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  padding: 0px 0px 0px 0px;
  position: relative;
}

.contact-page.frame .cp-div {
  gap: var(--main-frame-gap);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.contact-page.frame .cp-div-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-24);
  padding: 0px var(--main-frame-padding) var(--UI-spaceing-spacing-80) var(--main-frame-padding);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
  max-width: var(--main-frame-max-width);
}

.contact-page.frame .cp-title {
  display: flex;
  height: 56px;
  align-items: center;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
}


.contact-page.frame .cp-div-3 {
  gap: var(--UI-spaceing-spacing-16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.contact-page.frame .cp-taiwan {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-body-regular-font-size);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  line-height: var(--TC-body-regular-line-height);
  font-style: var(--TC-body-regular-font-style);
}

.contact-page.frame .cp-p {
  align-self: stretch;
  font-family: "Noto Sans TC-Regular", Helvetica;
  font-weight: 400;
  color: var(--color-black-black-8-default);
  font-size: 16px;
  line-height: 24px;
  position: relative;
  letter-spacing: 0;
}

.contact-page.frame .cp-span {
  color: #262626;
  font-family: var(--TC-body-regular-font-family);
  font-style: var(--TC-body-regular-font-style);
  font-weight: var(--TC-body-regular-font-weight);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  line-height: var(--TC-body-regular-line-height);
  font-size: var(--TC-body-regular-font-size);
}

.contact-page.frame .cp-text-wrapper-5 {
  font-family: var(--TC-body-underline-font-family);
  font-weight: var(--TC-body-underline-font-weight);
  color: var(--color-green-green-brand-green-5-brand);
  text-decoration: underline;
  font-style: var(--TC-body-underline-font-style);
  letter-spacing: var(--TC-body-underline-letter-spacing);
  line-height: var(--TC-body-underline-line-height);
  font-size: var(--TC-body-underline-font-size);
}
.contact-page.frame .cp-text-wrapper-5:hover {
  font-family: var(--TC-body-underline-font-family);
  font-weight: var(--TC-body-underline-font-weight);
  color: var(--color-green-green-brand-green-4);
  text-decoration: underline;
  font-style: var(--TC-body-underline-font-style);
  letter-spacing: var(--TC-body-underline-letter-spacing);
  line-height: var(--TC-body-underline-line-height);
  font-size: var(--TC-body-underline-font-size);
}

.sitemap-page.frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  padding: 0px 0px 0px 0px;
  position: relative;
}

.sitemap-page.frame .sm-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--main-frame-gap);
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.sitemap-page.frame .sm-div-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-24);
  padding: 0px var(--main-frame-padding) var(--main-frame-gap) var(--main-frame-padding);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
  max-width: var(--main-frame-max-width);
}

.sitemap-page.frame .sm-title {
  display: flex;
  height: 56px;
  align-items: center;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
}


.sitemap-page.frame .sm-div-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
  gap: var(--UI-spaceing-spacing-0);
}


.sitemap-page.frame .sm-text-wrapper-5 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--TC-h5-medium-font-family);
  font-weight: var(--TC-h5-medium-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-h5-medium-font-size);
  letter-spacing: var(--TC-h5-medium-letter-spacing);
  line-height: var(--TC-h5-medium-line-height);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-style: var(--TC-h5-medium-font-style);
}

.sitemap-page.frame .sm-text-wrapper-5:hover {
  color: var( --color-green-green-brand-green-5-brand);
}

.sitemap-page.frame .sm-div-4 {
  display: inline-flex;
  align-items: center;
  gap: var(--UI-spaceing-spacing-32);
  position: relative;
  flex: 0 0 auto;
}

.sitemap-page.frame .sm-text-wrapper-6 {
  margin-top: -1.00px;
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-5);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
  width: fit-content;
  letter-spacing: var(--TC-body-regular-letter-spacing);
  white-space: nowrap;
  font-style: var(--TC-body-regular-font-style);
}

.sitemap-page.frame .sm-text-wrapper-6:hover {
  color: var( --color-green-green-brand-green-5-brand);
}


.member-page.frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  padding: 0px 0px 0px 0px;
  position: relative;
  background-color: var(--color-green-green-brand-green-BG);
}

.member-page.frame .mp-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--main-frame-gap);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.member-page.frame .mp-view {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 200px;
  background: linear-gradient(
    180deg,
    rgb(234, 246, 235) 0%,
    rgb(243, 248, 234) 100%
  );
  background-image: url(./img/logo.svg);
  background-size: 100% 100%;
}

.member-page.frame .mp-text-wrapper {
  position: absolute;
  height: 48px;
  top: 75px;
  left: 656px;
  font-family: var(--TC-h2-font-family);
  font-weight: var(--TC-h2-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-h2-font-size);
  text-align: center;
  line-height: var(--TC-h2-line-height);
  letter-spacing: var(--TC-h2-letter-spacing);
  white-space: nowrap;
  font-style: var(--TC-h2-font-style);
}

.member-page.frame .mp-view-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0px var(--UI-spaceing-spacing-120) 0px var(--UI-spaceing-spacing-120);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.member-page.frame .mp-view-2 {
  display: inline-flex;
  align-items: center;
  gap: var(--UI-spaceing-spacing-8);
  position: relative;
  flex: 0 0 auto;
}

.member-page.frame .mp-text-wrapper-2 {
  width: fit-content;
  font-family: var(--TC-body-caption-font-family);
  font-weight: var(--TC-body-caption-font-weight);
  color: var(--color-black-black-5);
  font-size: var(--TC-body-caption-font-size);
  line-height: var(--TC-body-caption-line-height);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
  margin-top: -1.00px;
  letter-spacing: var(--TC-body-caption-letter-spacing);
  font-style: var(--TC-body-caption-font-style);
}

.member-page.frame .mp-text-wrapper-3 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--TC-body-caption-font-family);
  font-weight: var(--TC-body-caption-font-weight);
  color: var(--color-green-green-brand-green-5-brand);
  font-size: var(--TC-body-caption-font-size);
  line-height: var(--TC-body-caption-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  letter-spacing: var(--TC-body-caption-letter-spacing);
  white-space: nowrap;
  font-style: var(--TC-body-caption-font-style);
}

.member-page.frame .mp-div-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-24);
  padding: 0px var(--main-frame-padding) var(--main-frame-gap) var(--main-frame-padding);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
  max-width: var(--main-frame-max-width);
}

.member-page.frame .mp-title {
  display: flex;
  height: 56px;
  align-items: center;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
}


.member-page.frame .mp-div-3 {
  display: flex;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-32);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

.member-page.frame .mp-div-4:hover {
  border-color: var(--color-green-green-brand-green-4);
}


.member-page.frame .mp-div-5 {
  position: relative;
  width: 49px;
  height: 59px;
  top: 11px;
  left: 15px;
}

.member-page.frame .mp-ellipse {
  width: 22px;
  height: 22px;
  left: 13px;
  border-radius: 10.92px;
  border-color: var(--color-green-green-brand-green-5-brand);
  position: absolute;
  top: 0;
  border: 2px solid;
}

.member-page.frame .mp-rectangle {
  position: absolute;
  width: 48px;
  height: 35px;
  top: 24px;
  left: 0;
  border-radius: 52.4px 52.4px 8.73px 8.73px;
  border: 2px solid;
  border-color: var(--color-green-green-brand-green-5-brand);
}


.member-page.frame .mp-div-6 ul {
  padding-left: var(--UI-spaceing-spacing-24);
  list-style: outside;
}

.member-page.frame .mp-text-wrapper-6 {
  align-self: stretch;
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-6);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  position: relative;
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
}

.member-page.frame .mp-overlap-wrapper {
  position: relative;
  width: 70px;
  height: 42px;
  top: 19px;
  left: 5px;
}

.member-page.frame .mp-overlap {
  position: relative;
  height: 42px;
}

.member-page.frame .mp-ellipse-2 {
  width: 16px;
  height: 16px;
  left: 27px;
  border-radius: 7.78px;
  border-color: var(--color-green-green-brand-green-5-brand);
  position: absolute;
  top: 0;
  border: 2px solid;
}

.member-page.frame .mp-overlap-group {
  position: absolute;
  width: 70px;
  height: 36px;
  top: 6px;
  left: 0;
}

.member-page.frame .mp-ellipse-3 {
  width: 12px;
  height: 12px;
  left: 7px;
  border-radius: 5.85px;
  border-color: var(--color-green-green-light-green-5-brand);
  position: absolute;
  top: 0;
  border: 2px solid;
}

.member-page.frame .mp-img {
  position: absolute;
  width: 34px;
  height: 25px;
  top: 11px;
  left: 18px;
}

.member-page.frame .subtract {
  position: absolute;
  width: 19px;
  height: 19px;
  top: 13px;
  left: 0;
}

.member-page.frame .mp-ellipse-4 {
  width: 12px;
  height: 12px;
  left: 51px;
  border-radius: 5.85px;
  border-color: var(--color-green-green-light-green-5-brand);
  transform: rotate(180deg);
  position: absolute;
  top: 0;
  border: 2px solid;
}

.member-page.frame .subtract-2 {
  position: absolute;
  width: 19px;
  height: 19px;
  top: 13px;
  left: 51px;
}

.member-page.frame .table-desktop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  border-radius: var(--UI-spaceing-spacing-16);
  overflow: hidden;
  border: 1px solid;
  border-color: var(--color-green-green-brand-green-2);
}

.member-page.frame .mp-div-8 {
  display: flex;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.member-page.frame .mp-div-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-24)
    var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-24);
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: var(--color-green-green-brand-green-6);
}

.member-page.frame .mp-text-wrapper-7 {
  flex: 1;
  font-family: var(--TC-body-bold-font-family);
  font-weight: var(--TC-body-bold-font-weight);
  color: var(--color-black-white);
  font-size: var(--TC-body-bold-font-size);
  line-height: var(--TC-body-bold-line-height);
  position: relative;
  margin-top: -1.00px;
  letter-spacing: var(--TC-body-bold-letter-spacing);
  font-style: var(--TC-body-bold-font-style);
}

.member-page.frame .mp-div-wrapper-2 {
  background-color: var(--color-black-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-24)
    var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-24);
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
}

.member-page.frame .mp-text-wrapper-8 {
  flex: 1;
  margin-top: -1.00px;
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-9);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  position: relative;
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
}

.member-page.frame .mp-text-wrapper-9 {
  flex: 1;
  margin-top: -1.00px;
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-9);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
}

.member-page.frame .mp-div-wrapper-3 {
  background-color: var(--color-green-green-brand-green-1-50);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-24)
    var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-24);
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
}

.member-page.frame .mp-text-wrapper-10 {
  flex: 1;
  margin-top: -1.00px;
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  position: relative;
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
}

.member-page.frame .mp-text-wrapper-11 {
  position: relative;
  flex: 1;
  margin-top: -1.00px;
  font-family: var(--TC-body-underline-font-family);
  font-weight: var(--TC-body-underline-font-weight);
  color: var(--color-green-green-brand-green-5-brand);
  font-size: var(--TC-body-underline-font-size);
  letter-spacing: var(--TC-body-underline-letter-spacing);
  line-height: var(--TC-body-underline-line-height);
  text-decoration: underline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-style: var(--TC-body-underline-font-style);
}

.member-page.frame .mp-text-wrapper-11 a{
  color: var(--color-green-green-brand-green-5-brand);
}

.member-page.frame .mp-text-wrapper-11 a:hover{
  color: var(--color-green-green-brand-green-4);
}

.member-page.frame .mp-text-wrapper-12 {
  flex: 1;
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  position: relative;
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
}

.member-page.frame .mp-div-wrapper-4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-24)
    var(--UI-spaceing-spacing-16) var(--UI-spaceing-spacing-24);
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: var(--color-green-green-brand-green-1-50);
}

.member-page.frame .mp-text-wrapper-13 {
  position: relative;
  flex: 1;
  font-family: var(--TC-body-underline-font-family);
  font-weight: var(--TC-body-underline-font-weight);
  color: var(--color-green-green-brand-green-5-brand);
  font-size: var(--TC-body-underline-font-size);
  letter-spacing: var(--TC-body-underline-letter-spacing);
  line-height: var(--TC-body-underline-line-height);
  text-decoration: underline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-style: var(--TC-body-underline-font-style);
}

.member-page.frame .mp-text-wrapper-13 a{
  color: var(--color-green-green-brand-green-5-brand);
}

.member-page.frame .mp-text-wrapper-13 a:hover{
  color: var(--color-green-green-brand-green-4);
}
.member-page.frame .mp-text-wrapper-14 {
  position: relative;
  flex: 1;
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-9);
  font-size: var(--TC-body-regular-font-size);
  letter-spacing: var(--TC-body-regular-letter-spacing);
  line-height: var(--TC-body-regular-line-height);
  font-style: var(--TC-body-regular-font-style);
}

.member-page.frame .mp-text-wrapper-15 {
  flex: 1;
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-9);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
}

.member-page.frame .mp-text-wrapper-16 {
  flex: 1;
  margin-top: -1.00px;
  font-family: var(--TC-body-regular-font-family);
  font-weight: var(--TC-body-regular-font-weight);
  color: var(--color-black-black-8-default);
  font-size: var(--TC-body-regular-font-size);
  line-height: var(--TC-body-regular-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
  letter-spacing: var(--TC-body-regular-letter-spacing);
  font-style: var(--TC-body-regular-font-style);
}

.member-page.frame .mp-div-9 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  gap: var(--UI-spaceing-spacing-0);
}

.member-page.frame .mp-view-3 {
  display: flex;
  align-items: center;
  gap: var(--UI-spaceing-spacing-8);
  padding: var(--UI-spaceing-spacing-0) 0px var(--UI-spaceing-spacing-16) 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: var(--color-black-black-3);
}

.member-page.frame .button-carousell-btn {
  position: relative;
  width: 32px;
  height: 32px;
  background-color: var(--color-green-green-light-green-5-brand);
  border-radius: 66.67px;
  border: 1px solid;
  border-color: var(--color-black-white);
}

.member-page.frame .mp-text-wrapper-17 {
  position: absolute;
  width: 20px;
  height: 27px;
  top: 1px;
  left: 6px;
  font-family: var(--TC-h5-medium-font-family);
  font-weight: var(--TC-h5-medium-font-weight);
  color: var(--color-black-white);
  font-size: var(--TC-h5-medium-font-size);
  text-align: center;
  letter-spacing: var(--TC-h5-medium-letter-spacing);
  line-height: var(--TC-h5-medium-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-style: var(--TC-h5-medium-font-style);
}

.member-page.frame .mp-view-4 {
  display: flex;
  align-items: center;
  gap: var(--UI-spaceing-spacing-8);
  padding: var(--UI-spaceing-spacing-16) 0px var(--UI-spaceing-spacing-16) 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: var(--color-black-black-3);
}

.member-page.frame .mp-div-10 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--UI-spaceing-spacing-16);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.member-page.frame .mp-div-11 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--UI-spaceing-spacing-24);
  padding: var(--UI-spaceing-spacing-24);
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--color-green-green-brand-green-1);
  border-radius: var(--UI-spaceing-spacing-16);
}



.internal-anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}

.full-height {
  height: 100%;
}



@media (min-width: 769px) {
  /* 1. 確保 Stage 不會限制子元素的高度 */
  .owl-stage {
    display: flex !important;
    align-items: stretch !important; /* 強制所有項目拉伸至最高者的高度 */
  }

  /* 2. 防止最高的圖片被 Flex 壓縮 */
  .owl-item {
    display: flex !important;
    flex-direction: column !important;
    flex-shrink: 0 !important; /* 關鍵：禁止 Flex 壓縮此項目 */
    height: auto !important;   /* 讓高度由內部最高的內容決定 */
  }

  /* 3. 容器與圖片設定 */
  .owl-item .item {
    flex: 1 0 auto !important;    /* 讓容器填滿 owl-item 的高度 */
    display: flex !important;
    justify-content: center !important;
    overflow: hidden !important;  /* 隱藏寬度超出的部分 */
    position: relative !important;
  }

  .owl-item .item a {
    width: 100% !important;
  }

  .owl-item .item img {
    /* 高度策略 */
    height: 100% !important;   /* 填滿父容器高度 */
    /*min-height: 100% !important;          /* 確保不縮小 */
    
    /* 寬度策略 */
    width: 100% !important;     /* 寬度根據高度比例自動縮放 */
    max-width: none !important; /* 允許寬度超過格子 */
    
    /* 裁切設定 */
    object-fit: cover !important;
    object-position: center !important;
  }
}

@media (max-width: 768px) {
  /* 1. 讓 owl-stage 變成 Flex，確保所有 item 等高 */
  .owl-stage {
    display: flex !important;
    align-items: stretch !important; /* 強制所有項目拉伸到最高度 */
  }

  .owl-item {
    display: flex !important;
    flex-direction: column;
  }

  .owl-item .item {
    display: flex !important;
    flex: 1 0 auto;    /* 讓 item 填滿 owl-item 的所有高度 */
    overflow: hidden !important; 
    position: relative;
  }

  .owl-item .item img {
    /* 核心設定 */
    width: 100% !important;   /* 寬度固定 100% 螢幕 */
    height: 100% !important;  /* 高度強制填滿 (會跟隨最高的那張) */
    
    /* 關鍵：太高就裁切，太矮就放大填滿且不變形 */
    object-fit: cover !important; 
    object-position: center; /* 確保裁切時中心點對齊 */
    
    /* 移除任何可能干擾高度的限制 */
    min-height: 100% !important;
    max-height: none !important;
  }
}