.carousel .carousel-indicators [data-bs-target] {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-right: 1rem;
}
.carousel .carousel-item .mb_show {
  display: none;
}
@media (max-width: 767px) {
  .carousel .carousel-item .pc_show {
    display: none;
  }
  .carousel .carousel-item .mb_show {
    display: block;
  }
}

.marquee {
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
  overflow: hidden;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .marquee {
    padding: 1.5rem 0;
  }
}

.marquee_logo {
  width: 6.25rem;
  height: 2.5rem;
  margin: 0 2.5em;
  display: inline-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
@media (max-width: 576px) {
  .marquee_logo {
    margin: 0 1.5rem;
  }
}

.marquee_content_left {
  display: flex;
  animation: marquee-left 15s linear infinite running;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-33.3%);
  }
}
.marquee_content_right {
  display: flex;
  animation: marquee-right 20s linear infinite running;
}

@keyframes marquee-right {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(33.3%);
  }
}
.sectionTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.sectionTitle .first .displayFont60 {
  margin-left: -0.5rem;
}
.sectionTitle .displayFont90,
.sectionTitle .displayFont60 {
  display: inline-block;
  font-family: "Playfair Display", sans-serif, serif;
  color: var(--grey-80);
}
.sectionTitle .displayFont90 {
  font-size: 5.6rem;
  line-height: 70%;
}
.sectionTitle .displayFont60 {
  font-size: 3.75rem;
}
.sectionTitle .twTag {
  position: absolute;
  top: 8%;
  left: 50%;
}
.sectionTitle .twTag::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--red-60);
  margin-right: 0.25rem;
  border-radius: 50%;
}

.news {
  background-color: var(--grey-97);
  padding: 2.5rem 0 5rem;
}
.news .cardGroup {
  padding: 0 10rem;
  margin: 2.5rem 0;
}
@media (max-width: 1024px) {
  .news .cardGroup {
    padding: 0;
  }
}

.card_news {
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}
.card_news .card_img {
  width: 100%;
}
.card_news .card_bottom {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.25rem;
  flex-direction: column;
  padding: 0.75rem 1rem;
  background-color: var(--white);
}
.card_news .date, .card_news .cardContent {
  font-size: 0.875rem;
  color: var(--grey-50);
}
.card_news .title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-40);
  min-height: 2.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.card_news .cardContent {
  line-height: 150%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.about {
  padding: 5rem 0;
  position: relative;
  background-image: url(/assets/index/bg_deco.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.about .about_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0rem;
  flex-direction: column;
}
.about .about_introduce {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
.about .aboutTitle {
  display: block;
  color: var(--blue-40);
  text-align: center;
  padding-bottom: 0.75rem;
  border-bottom: solid 0.5px var(--blue-40);
}
.about .aboutBox {
  padding: 2.4rem 0;
}
@media (max-width: 1024px) {
  .about .slogan .displayFont72 {
    font-size: 3.5rem;
  }
}
@media (max-width: 767px) {
  .about .anime {
    display: none;
  }
}

.slogan {
  width: 59%;
}
.slogan .displayFont72 {
  display: block;
  font-size: 4.5rem;
  color: var(--grey-30);
  font-weight: 500;
  white-space: nowrap;
}
.slogan .content {
  line-height: 180%;
  color: var(--grey-50);
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .slogan {
    width: 100%;
    text-align: center;
  }
  .slogan .content {
    margin: 2.5rem 0;
  }
}

.impsInfo {
  padding: 0 10rem;
  justify-content: center;
  text-align: center;
}
.impsInfo .itemTech {
  margin-bottom: 1.5rem;
  padding: 0 2.5rem;
}
.impsInfo .itemTech .itemImg {
  width: 100%;
  border-radius: 50%;
}
.impsInfo .itemTech .itemName {
  color: var(--grey-50);
  margin-top: 1rem;
}
.impsInfo .itemSolution {
  display: block;
  padding: 1rem 0.75rem;
  background-color: var(--white);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  text-align: left;
  margin-bottom: 1.5rem;
}
.impsInfo .itemSolution .tag {
  display: inline-block;
  padding: 0.15rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 50px;
  margin-right: 0.25rem;
}
.impsInfo .itemSolution .tag-orange {
  border: solid 1px var(--orange);
  background-color: var(--orange-10);
  color: var(--orange);
}
.impsInfo .itemSolution .tag-green {
  border: solid 1px var(--green);
  background-color: var(--green-10);
  color: var(--green);
}
.impsInfo .itemSolution .card_cover {
  margin: 0.5rem 0;
}
.impsInfo .itemSolution .card_img {
  width: 100%;
}
.impsInfo .itemSolution .title {
  color: var(--blue-40);
  text-align: center;
  margin: 0.5rem 0 1rem;
}
.impsInfo .itemSolution ul {
  text-align: center;
  white-space: nowrap;
}
.impsInfo .itemSolution .tech {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  margin-right: 0.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--blue-60);
  border: solid 1px var(--blue-80);
  background-color: var(--blue-97);
}
.impsInfo .itemProduct {
  display: block;
  padding: 1rem 0.75rem;
  background-color: var(--white);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  height: 100%;
}
.impsInfo .itemProduct .itemName {
  margin: 0.5rem auto;
  width: 40%;
  display: block;
}
.impsInfo .itemProduct .title {
  color: var(--grey-50);
}
.impsInfo .itemProduct .point {
  display: inline-block;
  width: 49%;
  text-align: left;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.25rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  background-color: var(--green);
  color: var(--white);
}
.impsInfo .itemProduct .point:nth-child(odd) {
  margin-right: 0.25rem;
}
.impsInfo .itemProduct ul {
  text-align: left;
}
.impsInfo .itemWinning .itemImg {
  width: 100%;
}
.impsInfo .itemWinning .title {
  color: var(--grey-50);
}
.impsInfo .mb {
  margin-bottom: 1rem;
}
@media (max-width: 1399px) {
  .impsInfo .itemProduct .point {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .impsInfo {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .impsInfo .itemTech {
    padding: 0 4rem;
  }
  .impsInfo .itemPartner {
    margin-bottom: 2.5rem;
  }
  .impsInfo .itemPartner:nth-last-child(1) {
    margin-bottom: 0;
  }
  .impsInfo .itemProduct {
    margin-bottom: 1.5rem;
    height: auto;
  }
  .impsInfo .itemProduct .point {
    width: 49%;
  }
  .impsInfo .mb {
    margin-bottom: 0;
  }
}

.anime {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  position: absolute;
  top: -110px;
  width: 42.5%;
  height: 67rem;
  overflow: hidden;
  left: 0;
  z-index: 1;
  transform-origin: center left;
  transform: scale(1);
}
@media (max-width: 1600px) {
  .anime {
    transform: scale(0.8);
    width: 50%;
  }
}
@media (max-width: 1400px) {
  .anime {
    transform: scale(0.7);
    width: 55%;
  }
}
@media (max-width: 1200px) {
  .anime {
    transform: scale(0.6);
    width: 65%;
  }
}
@media (max-width: 992px) {
  .anime {
    transform: scale(0.5) translateY(-7rem);
    width: 85%;
  }
}

.ai_city {
  position: relative;
}
.ai_city .bg_city {
  width: 50rem;
  height: 63rem;
  background-image: url(/assets/index/img_ai_city.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.ai_city .ai_city_item {
  position: absolute;
  width: 3rem;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-animation: up_down 3s linear 0s infinite alternate;
}
.ai_city .ai_city_item .item {
  width: 3rem;
  height: 3rem;
}
.ai_city .ai_city_item .outside_circle {
  position: absolute;
  width: 8rem;
  height: 8rem;
  background-image: url(/assets/index/img_outside_circle.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: rotate3D 5s linear 0s infinite alternate;
}
.ai_city .ai_city_item .outside_circle:before {
  content: "";
  background-image: url(/assets/index/img_outside_circle_before.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 2px;
  left: 2px;
}
.ai_city .ai_city_item .inside_circle {
  position: absolute;
  width: 4rem;
  height: 4rem;
  background-image: url(/assets/index/img_inside_circle.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: rotate3D 3s linear 0s infinite alternate;
}
.ai_city .ai_city_item .inside_circle:before {
  content: "";
  background-image: url(/assets/index/img_inside_circle_before.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 2px;
  left: 2px;
}
.ai_city .ai_city_item .light_fade {
  position: absolute;
  background-image: radial-gradient(rgb(0, 170, 255) 0%, rgba(0, 170, 255, 0) 60%);
  background-blend-mode: color-dodge;
  mix-blend-mode: color-dodge;
  -webkit-animation: light_fade 3s linear 0s infinite alternate;
}
.ai_city .shadow_fade {
  position: absolute;
  width: 2rem;
  height: 1rem;
  background-image: radial-gradient(hsl(200, 70%, 40%) 0%, hsla(200, 70%, 40%, 0) 60%);
  -webkit-animation: shadow_fade 3s linear 0s infinite alternate;
}
.ai_city .shadow_fade.user {
  top: 384px;
  left: 487px;
  animation-delay: 0s;
}
.ai_city .ai_city_item.user {
  top: 230px;
  left: 485px;
  animation-delay: 0s;
}
.ai_city .shadow_fade.tool {
  top: 165px;
  left: 447px;
  animation-delay: 0s;
}
.ai_city .ai_city_item.tool {
  top: 6px;
  left: 438px;
  animation-delay: 0.5s;
}
.ai_city .shadow_fade.wifi {
  top: 417px;
  left: 69px;
  animation-delay: 0s;
}
.ai_city .ai_city_item.wifi {
  top: 256px;
  left: 59px;
  animation-delay: 1s;
  transform: scale(0.1);
}
.ai_city .shadow_fade.cloud {
  top: 155px;
  left: 65px;
  animation-delay: 0s;
}
.ai_city .ai_city_item.cloud {
  top: -10px;
  left: 58px;
  animation-delay: 1.5s;
}
.ai_city .ai_city_item.cloud .item {
  transform: scale(0.6);
}
.ai_city .ai_city_item.cloud .outside_circle {
  width: 4rem;
  height: 4rem;
}
.ai_city .ai_city_item.cloud .inside_circle {
  width: 3rem;
  height: 3rem;
}

@keyframes rotate3D {
  from {
    transform: rotate3d(0.5, 0.5, 0.5, 360deg);
  }
  to {
    transform: rotate3d(0deg);
  }
}
@keyframes up_down {
  from {
    transform: translateY(5rem);
  }
  to {
    transform: translateY(0rem);
  }
}
@keyframes light_fade {
  from {
    opacity: 0;
    width: 4rem;
    height: 4rem;
  }
  to {
    opacity: 1;
    width: 8rem;
    height: 8rem;
  }
}
@keyframes shadow_fade {
  from {
    opacity: 0.5;
    transform: scale(2);
  }
  to {
    opacity: 0;
    transform: scale(1);
  }
}/*# sourceMappingURL=index.css.map */