@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  --blue-500: #005BAC;
  --blue-300: #1998CB;
  --blue-200: #6BD4FF;
  --blue-100: #00D0DD;
  --hover-blue: #A7C7FC;
  --footer-b-200: #141414;
  --footer-b-100: #1f1f1f;
}

.index-banner {
  width: 100%;
  aspect-ratio: 2.31/1;
  overflow: hidden;
  position: relative;
  /* 調整箭頭><大小 */
}
@media (max-width: 990px) {
  .index-banner {
    width: 100%;
    aspect-ratio: 1.16/2;
  }
}
.index-banner .slogan-box {
  position: absolute;
  top: 0;
  left: 135px;
  right: 40px;
  width: calc(100% - 24px);
  height: 100%;
  z-index: 2;
  --header-height: 64px;
}
@media (max-width: 1536px) {
  .index-banner .slogan-box {
    left: 100px;
  }
}
@media (max-width: 1200px) {
  .index-banner .slogan-box {
    left: 60px;
  }
}
@media (max-width: 990px) {
  .index-banner .slogan-box {
    left: 32px;
    height: -moz-fit-content;
    height: fit-content;
    top: calc((100% - var(--header-height)) / 2 + var(--header-height));
    transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  .index-banner .slogan-box {
    left: 22px;
  }
}
.index-banner .slogan-box .slogan-box-inner {
  height: 100%;
  color: white;
  width: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
.index-banner .slogan-box .slogan-box-inner h1 {
  font-size: 80px;
  letter-spacing: 5%;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgb(22, 22, 22);
}
@media (max-width: 1536px) {
  .index-banner .slogan-box .slogan-box-inner h1 {
    font-size: 46px;
  }
}
@media (max-width: 420px) {
  .index-banner .slogan-box .slogan-box-inner h1 {
    font-size: 32px;
  }
}
.index-banner .slogan-box .slogan-box-inner p {
  font-size: 36px;
  line-height: 3rem;
  margin-bottom: 12px;
  font-weight: 500;
}
@media (max-width: 1536px) {
  .index-banner .slogan-box .slogan-box-inner p {
    font-size: 24px;
    line-height: 2rem;
  }
}
@media (max-width: 420px) {
  .index-banner .slogan-box .slogan-box-inner p {
    font-size: 20px;
    line-height: 1.5rem;
  }
}
.index-banner .slogan-box .slogan-box-inner button {
  background-color: transparent;
  border: none;
}
.index-banner .slogan-box .slogan-box-inner button a {
  width: 100%;
  height: 100%;
  padding: 12px 22px;
  border: 3px solid white;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: white;
}
.index-banner .slogan-box .slogan-box-inner button a svg {
  margin-top: 4px;
}
@media (max-width: 1536px) {
  .index-banner .slogan-box .slogan-box-inner button a {
    font-size: 24px;
  }
}
@media (max-width: 420px) {
  .index-banner .slogan-box .slogan-box-inner button a {
    padding: 6px 11px;
    gap: 4px;
    font-size: 16px;
    border: 2px solid white;
  }
  .index-banner .slogan-box .slogan-box-inner button a svg {
    margin-top: 2px;
    transform: scale(0.6);
  }
}
.index-banner .slogan-box .slogan-box-inner button:hover {
  background-color: #fff;
}
.index-banner .slogan-box .slogan-box-inner button:hover a {
  color: #111111;
}
.index-banner .slogan-box .slogan-box-inner button:hover a svg {
  filter: brightness(30%) grayscale(1);
}
@media (max-width: 1536px) {
  .index-banner .slogan-box .slogan-box-inner {
    gap: 12px;
  }
}
.index-banner .swiper {
  width: 100%;
  height: 100%;
}
.index-banner .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.index-banner .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.index-banner .swiper-button-next,
.index-banner .swiper-button-prev {
  color: white;
  width: 24px;
  height: 24px;
  padding: 8px;
  border-radius: 40px;
}
.index-banner .swiper-button-next:after,
.index-banner .swiper-button-prev:after {
  transform: scale(0.5);
}
.index-banner .swiper-pagination-bullets {
  margin-bottom: 120px;
}
@media (max-width: 1200px) {
  .index-banner .swiper-pagination-bullets {
    margin-bottom: 72px;
  }
}
@media (max-width: 990px) {
  .index-banner .swiper-pagination-bullets {
    margin-bottom: 56px;
  }
}
.index-banner .swiper-pagination-bullet {
  background-color: white;
  opacity: 0.8;
}
.index-banner .swiper-pagination-bullet-active {
  width: 21px;
  border-radius: 8px;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  background-color: var(--blue-100);
}

body main {
  padding-left: 0 !important;
  padding-right: 0 !important;
  background-color: rgba(239, 239, 239, 0.5);
  padding: 40px 135px;
}
body main .main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 2;
  position: relative;
}
body main .main-content .strength {
  margin-top: -160px;
  width: 100%;
  padding: 24px 135px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
body main .main-content .strength .strength-item {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border: 2px solid #e7e7e7;
  border-right: none;
  background-color: white;
  padding: 36px 12px;
  gap: 8px;
}
body main .main-content .strength .strength-item:nth-last-child(1) {
  border-right: 2px solid #e7e7e7;
}
body main .main-content .strength .strength-item span.number-box {
  display: flex;
  align-items: baseline;
  font-weight: 500;
}
body main .main-content .strength .strength-item span.number-box svg {
  margin-top: 8px;
}
body main .main-content .strength .strength-item span.number-box span.number {
  color: #005BAC;
  font-size: 90px;
  text-align: center;
  font-weight: 600;
}
body main .main-content .strength .strength-item .img-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main .main-content .strength .strength-item .img-box img {
  max-width: 106px;
  width: 100%;
  margin-bottom: 8px;
}
body main .main-content .strength .strength-item P {
  color: #111111;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 500;
}
@media (max-width: 1536px) {
  body main .main-content .strength {
    padding: 24px 100px;
  }
  body main .main-content .strength .strength-item .img-box img {
    max-width: 80px;
    margin-bottom: 0px;
  }
  body main .main-content .strength .strength-item span.number-box span.number {
    font-size: 72px;
  }
}
@media (max-width: 1200px) {
  body main .main-content .strength {
    padding: 24px 60px;
    margin-top: -112px;
  }
  body main .main-content .strength .strength-item span.number-box span.number {
    font-size: 60px;
  }
  body main .main-content .strength .strength-item .img-box img {
    max-width: 76px;
  }
}
@media (max-width: 990px) {
  body main .main-content .strength {
    padding: 48px 24px;
  }
  body main .main-content .strength .strength-item {
    padding: 48px 12px;
    justify-content: flex-start;
  }
  body main .main-content .strength .strength-item span.number-box span.number {
    font-size: 68px;
  }
  body main .main-content .strength .strength-item span.number-box svg {
    transform: scale(0.9);
  }
  body main .main-content .strength .strength-item .img-box img {
    max-width: 88px;
  }
}
@media (max-width: 768px) {
  body main .main-content .strength {
    padding: 48px 24px;
  }
  body main .main-content .strength .strength-item span.number-box span.number {
    font-size: 60px;
  }
  body main .main-content .strength .strength-item span.number-box {
    align-items: center;
  }
  body main .main-content .strength .strength-item span.number-box svg {
    margin-top: 16px;
    transform: scale(0.7);
  }
  body main .main-content .strength .strength-item .img-box img {
    max-width: 76px;
  }
}
@media (max-width: 480px) {
  body main .main-content .strength .strength-item {
    padding: 28px 12px;
  }
  body main .main-content .strength .strength-item span.number-box span.number {
    font-size: 40px;
  }
  body main .main-content .strength .strength-item span.number-box svg {
    margin-left: -6px;
  }
  body main .main-content .strength .strength-item .img-box img {
    max-width: 52px;
    margin-bottom: 0;
  }
  body main .main-content .strength .strength-item p {
    font-weight: 400;
  }
}
body main .main-content .main-content-1 {
  margin-top: 24px;
  width: 100%;
  padding: 24px 0px 60px 135px;
  display: flex;
  align-items: stretch;
  gap: 0px;
  color: #111111;
}
body main .main-content .main-content-1 .left {
  width: 45%;
}
body main .main-content .main-content-1 .right {
  flex: 1;
  max-width: 960px;
}
body main .main-content .main-content-1 .left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 73px;
  padding-right: 120px;
}
body main .main-content .main-content-1 .left h2 {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 1.2px;
}
body main .main-content .main-content-1 .left h2 .b-500 {
  color: var(--blue-500);
}
body main .main-content .main-content-1 .left p {
  font-size: 26px;
  line-height: 50px;
  font-weight: 400;
}
body main .main-content .main-content-1 .right .img-box {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.52/1;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}
body main .main-content .main-content-1 .right .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1536px) {
  body main .main-content .main-content-1 {
    padding: 24px 0px 24px 100px;
  }
  body main .main-content .main-content-1 .left {
    gap: 60px;
    padding-right: 80px;
  }
  body main .main-content .main-content-1 .left h2 {
    font-size: 42px;
    font-weight: 600;
  }
  body main .main-content .main-content-1 .left p {
    font-size: 22px;
    line-height: 44px;
  }
}
@media (max-width: 1200px) {
  body main .main-content .main-content-1 {
    padding: 0px 0px 48px 60px;
  }
}
@media (max-width: 990px) {
  body main .main-content .main-content-1 {
    padding: 0px 24px;
    flex-direction: column;
  }
  body main .main-content .main-content-1 .left {
    gap: 36px;
    padding-right: 0px;
    width: 100%;
    flex: 1;
  }
  body main .main-content .main-content-1 .left h2 {
    font-size: 36px;
    font-weight: 600;
  }
  body main .main-content .main-content-1 .left p {
    font-size: 22px;
    line-height: 36px;
  }
  body main .main-content .main-content-1 .right {
    margin-top: 48px;
  }
}
@media (max-width: 480px) {
  body main .main-content .main-content-1 .left {
    gap: 24px;
  }
  body main .main-content .main-content-1 .left h2 {
    font-size: 28px;
    font-weight: 600;
  }
  body main .main-content .main-content-1 .left p {
    font-size: 18px;
  }
}
body main .main-content .main-content-2 {
  width: 100%;
  padding: 24px 135px;
  display: flex;
  flex-direction: column;
  justify-content: cneter;
  align-items: flex-start;
  gap: 40px;
  color: #111111;
  position: relative;
}
body main .main-content .main-content-2 h2 {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 2px;
}
body main .main-content .main-content-2 h2 .b-500 {
  color: var(--blue-500);
}
body main .main-content .main-content-2 p {
  font-size: 20px;
  line-height: 2.2rem;
}
body main .main-content .main-content-2 span.gray-border {
  position: absolute;
  width: 100%;
  display: inline-block;
  height: 2px;
  bottom: 0px;
  left: 0%;
  background-color: #A8ADB3;
}
@media (max-width: 1536px) {
  body main .main-content .main-content-2 {
    padding: 48px 100px;
  }
  body main .main-content .main-content-2 h2 {
    font-size: 42px;
    font-weight: 600;
  }
}
@media (max-width: 1200px) {
  body main .main-content .main-content-2 {
    padding: 48px 60px;
  }
}
@media (max-width: 990px) {
  body main .main-content .main-content-2 {
    padding: 48px 32px;
  }
  body main .main-content .main-content-2 span.gray-border {
    width: calc(100% - 48px);
    left: 50%;
    transform: translateX(-50%);
  }
  body main .main-content .main-content-2 h2 {
    font-size: 36px;
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  body main .main-content .main-content-2 {
    padding: 48px 24px;
  }
}
@media (max-width: 480px) {
  body main .main-content .main-content-2 h2 {
    font-size: 28px;
    font-weight: 600;
  }
}
body main .main-content .main-content-3 {
  width: 100%;
  padding: 51px 140px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
body main .main-content .main-content-3 .main-content-3-item {
  width: 33.3%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #111111;
  gap: 20px;
  padding-right: 16px;
}
body main .main-content .main-content-3 .main-content-3-item:nth-child(2) {
  flex: 1.2;
}
body main .main-content .main-content-3 .main-content-3-item img {
  width: 65px;
}
body main .main-content .main-content-3 .main-content-3-item h3 {
  color: var(--blue-500);
  font-size: 36px;
  font-weight: 600;
}
body main .main-content .main-content-3 .main-content-3-item p {
  font-size: 26px;
  line-height: 40px;
  padding-right: 4px;
  font-weight: 400;
}
@media (max-width: 1536px) {
  body main .main-content .main-content-3 {
    padding: 48px 100px;
  }
  body main .main-content .main-content-3 .main-content-3-item h3 {
    font-size: 30px;
  }
  body main .main-content .main-content-3 .main-content-3-item p {
    font-size: 22px;
    line-height: 36px;
  }
}
@media (max-width: 1200px) {
  body main .main-content .main-content-3 {
    padding: 48px 60px;
  }
}
@media (max-width: 990px) {
  body main .main-content .main-content-3 {
    padding: 48px 24px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
  }
  body main .main-content .main-content-3 .main-content-3-item {
    width: 100%;
    gap: 8px;
    flex: 1;
  }
  body main .main-content .main-content-3 .main-content-3-item img {
    width: 51px;
  }
  body main .main-content .main-content-3 .main-content-3-item h3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  body main .main-content .main-content-3 .main-content-3-item p {
    font-size: 20px;
    line-height: 36px;
  }
}
@media (max-width: 480px) {
  body main .main-content .main-content-3 .main-content-3-item h3 {
    font-size: 22px;
  }
  body main .main-content .main-content-3 .main-content-3-item p {
    font-size: 18px;
  }
}
body main .opacity-bg {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 1;
  opacity: 0.5;
  background-image: url("../images/index/bg_opacity.jpg");
  background-position: center bottom;
  background-size: cover;
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), black);
  mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), black);
  /* 遮罩圖片填滿模式 */
  -webkit-mask-size: contain;
  mask-size: contain;
  /* 遮罩圖片是否重複 */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  /* 遮罩圖片位置 */
  -webkit-mask-position: center;
  mask-position: center;
}

.link-wrapper {
  width: 100%;
  background-image: url("../images/index/grid_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 1.73/1;
  padding-top: 140px;
  padding-bottom: 126px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
}
@media (max-width: 1536px) {
  .link-wrapper {
    padding-top: 70px;
    padding-bottom: 65px;
  }
}
@media (max-width: 990px) {
  .link-wrapper {
    aspect-ratio: initial;
    padding-bottom: 70px;
  }
}
.link-wrapper .white-cover {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.12);
}
.link-wrapper .box {
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
@media (max-width: 990px) {
  .link-wrapper .box {
    flex-direction: column;
    aspect-ratio: 2/4;
  }
}
.link-wrapper .box .slogan {
  flex: 1.2;
  padding-right: 10px;
  padding-left: 135px;
}
.link-wrapper .box .slogan h2 {
  color: white;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 46px;
  margin-bottom: 24px;
  letter-spacing: 5%;
  line-height: 1.2;
}
.link-wrapper .box .slogan h2 .blue-200 {
  color: var(--blue-200);
}
.link-wrapper .box .slogan h2 .blue-300 {
  color: var(--blue-300);
}
.link-wrapper .box .slogan p {
  color: white;
  font-size: 26px;
  font-weight: 400;
  line-height: 50px;
}
@media (max-width: 1536px) {
  .link-wrapper .box .slogan {
    padding-left: 100px;
  }
  .link-wrapper .box .slogan h2 {
    font-size: 36px;
  }
}
@media (max-width: 1200px) {
  .link-wrapper .box .slogan {
    padding-left: 60px;
  }
  .link-wrapper .box .slogan h2 {
    font-size: 28px;
  }
  .link-wrapper .box .slogan p {
    font-size: 22px;
    line-height: 36px;
  }
}
@media (max-width: 990px) {
  .link-wrapper .box .slogan {
    flex: none;
    padding-left: 24px;
    margin-bottom: 62px;
  }
  .link-wrapper .box .slogan p {
    font-size: 20px;
    line-height: 34px;
  }
}
@media (max-width: 768px) {
  .link-wrapper .box .slogan p {
    font-size: 18px;
    line-height: 30px;
  }
}
.link-wrapper .box .button-block {
  flex: 3;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  font-size: 20px;
}
@media (max-width: 990px) {
  .link-wrapper .box .button-block {
    flex-direction: column;
  }
}
.link-wrapper .box .button-block a.main-btn {
  display: inline-block;
  flex: 1;
  position: relative;
  overflow: hidden;
  font-family: "Noto Sans TC", sans-serif !important;
}
@media (max-width: 990px) {
  .link-wrapper .box .button-block a.main-btn {
    min-height: 188px;
  }
}
.link-wrapper .box .button-block a.main-btn img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  z-index: 1;
  transition: all 4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (max-width: 990px) {
  .link-wrapper .box .button-block a.main-btn img {
    -o-object-position: center bottom;
       object-position: center bottom;
    min-height: 188px;
  }
}
.link-wrapper .box .button-block a.main-btn button {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  color: white;
  padding: 32px;
  align-items: flex-start;
  font-size: 32px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 3;
  position: relative;
  min-height: 120px;
  line-height: 120%;
  text-align: start;
}
@media (max-width: 1536px) {
  .link-wrapper .box .button-block a.main-btn button {
    font-size: 26px;
    padding: 32px 16px;
  }
}
@media (max-width: 1200px) {
  .link-wrapper .box .button-block a.main-btn button {
    font-size: 22px;
    padding: 24px 12px;
    min-height: 100px;
  }
}
@media (max-width: 990px) {
  .link-wrapper .box .button-block a.main-btn button {
    font-size: 20px;
    min-height: auto;
    padding: 26px 16px 22px;
  }
}
@media (max-width: 768px) {
  .link-wrapper .box .button-block a.main-btn button {
    font-size: 18px;
    padding: 12px 15px 8px;
  }
}
.link-wrapper .box .button-block a.main-btn button .btn-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--blue-500);
  transform: translateY(-101%);
  z-index: 2;
  transition: all 0.5s ease-in-out;
}
.link-wrapper .box .button-block a.main-btn button h4,
.link-wrapper .box .button-block a.main-btn button svg {
  z-index: 3;
  position: relative;
}
.link-wrapper .box .button-block a.main-btn button h4 {
  flex: 8;
  font-family: "Noto Sans TC", sans-serif !important;
}
@media (max-width: 990px) {
  .link-wrapper .box .button-block a.main-btn button h4 {
    flex: 1;
  }
}
.link-wrapper .box .button-block a.main-btn button svg {
  flex: 2;
  margin-top: 7px;
}
@media (max-width: 1536px) {
  .link-wrapper .box .button-block a.main-btn button svg {
    transform: scale(0.9);
    margin-top: 4px;
  }
}
@media (max-width: 1200px) {
  .link-wrapper .box .button-block a.main-btn button svg {
    transform: scale(0.8);
    margin-top: 2px;
  }
}
@media (max-width: 990px) {
  .link-wrapper .box .button-block a.main-btn button svg {
    margin-top: 0px;
    flex: none;
    width: 24px;
  }
}
.link-wrapper .box .button-block a.main-btn .hover-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
  transition: all 0.5s ease-in-out;
}
.link-wrapper .box .button-block a.main-btn:hover img {
  transform: scale(1.1);
}
.link-wrapper .box .button-block a.main-btn:hover button .btn-cover {
  transform: translateY(0%);
}
.link-wrapper .box .button-block a.main-btn:hover .hover-cover {
  transform: translateY(100%);
}
.link-wrapper .box .button-block div.sub-btn-box {
  width: 100%;
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 990px) {
  .link-wrapper .box .button-block div.sub-btn-box {
    aspect-ratio: 1/1;
  }
}
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn {
  display: inline-block;
  width: 50%;
  max-width: 50%;
  position: relative;
  color: white;
  overflow: hidden;
}
@media (max-width: 990px) {
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn {
    height: 50%;
  }
}
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn div.black-cover {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.5s ease-in-out;
  z-index: 2;
}
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn p,
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 {
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease-in-out;
  min-height: 120px;
}
@media (max-width: 1536px) {
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn p,
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 {
    padding: 32px 16px;
  }
}
@media (max-width: 1200px) {
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn p,
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 {
    padding: 24px 12px;
    min-height: 100px;
  }
}
@media (max-width: 990px) {
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn p,
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 {
    min-height: auto;
    padding: 26px 16px 22px;
  }
}
@media (max-width: 768px) {
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn p,
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 {
    padding: 12px 15px 8px;
  }
}
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn p .start-box,
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 .start-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn p .start-box svg,
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 .start-box svg {
  transition: all 0.1s ease-in-out;
  z-index: 2;
  flex: 2;
  margin-top: 10px;
}
@media (max-width: 1536px) {
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn p .start-box svg,
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 .start-box svg {
    transform: scale(0.9);
    margin-top: 7px;
  }
}
@media (max-width: 1200px) {
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn p .start-box svg,
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 .start-box svg {
    transform: scale(0.8);
    margin-top: 5px;
  }
}
@media (max-width: 990px) {
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn p .start-box svg,
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 .start-box svg {
    transition: none;
    flex: none;
    margin-top: 1px;
    width: 24px;
  }
}
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn p .start-box .index-subtitle,
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 .start-box .index-subtitle {
  z-index: 2;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 120%;
  flex: 8;
}
@media (max-width: 1536px) {
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn p .start-box .index-subtitle,
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 .start-box .index-subtitle {
    font-size: 26px;
  }
}
@media (max-width: 1200px) {
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn p .start-box .index-subtitle,
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 .start-box .index-subtitle {
    font-size: 22px;
  }
}
@media (max-width: 990px) {
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn p .start-box .index-subtitle,
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 .start-box .index-subtitle {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn p .start-box .index-subtitle,
  .link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 .start-box .index-subtitle {
    font-size: 18px;
  }
}
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn p .hover-cover,
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn h4 .hover-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--blue-500);
  z-index: 1;
  transform: translateY(-101%);
  transition: all 0.5s ease-in-out;
}
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn img {
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn:hover img {
  transform: scale(1.5);
  filter: brightness(0.95);
}
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn:hover p .hover-cover,
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn:hover h4 .hover-cover {
  transform: translateY(0%);
}
.link-wrapper .box .button-block div.sub-btn-box a.sub-btn:hover div.black-cover {
  transform: translateY(100%);
}

.client-map {
  width: 100%;
  display: flex;
  align-items: stretch;
}
.client-map .map,
.client-map .introduction {
  width: 50%;
  max-width: 50%;
  flex: 1;
}
.client-map .map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.client-map .introduction {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(20px, 4.17vw, 80px);
  background-image: url("../images/index/our_client_bg.png");
  background-size: cover;
  background-position: 100% 100%;
  --padding-y:clamp(50px,5.2vw,100px);
  --padding-x:clamp(24px,7.8vw,150px);
  padding: var(--padding-y) var(--padding-x);
}
@media (max-width: 990px) {
  .client-map .introduction {
    background-position: right bottom;
  }
}
.client-map .introduction h2 {
  font-size: clamp(28px, 2.61vw, 50px);
  font-weight: 800;
  letter-spacing: 1.2px;
  color: white;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
.client-map .introduction h2 img.white-dot {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -10%);
}
@media (max-width: 990px) {
  .client-map .introduction h2 {
    font-weight: 700;
  }
}
.client-map .introduction p {
  font-size: clamp(18px, 1.354vw, 26px);
  line-height: clamp(30px, 2.6vw, 50px);
  color: white;
  font-weight: 400;
  text-align: justify;
}
@media (max-width: 990px) {
  .client-map {
    flex-direction: column-reverse;
  }
  .client-map .map,
  .client-map .introduction {
    width: 100%;
    max-width: 100%;
  }
}

.contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px;
  gap: 48px;
}
.contact p {
  font-size: 36px;
  font-weight: 500;
  color: #111111;
}
@media (max-width: 1536px) {
  .contact {
    padding: 80px;
  }
}
@media (max-width: 1200px) {
  .contact {
    padding: 80px 60px;
  }
}
@media (max-width: 990px) {
  .contact {
    padding: 62px 24px;
    gap: 26px;
  }
  .contact p {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 55px 24px;
  }
  .contact p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    font-size: 22px;
  }
}/*# sourceMappingURL=index.css.map */