/* -----------------------------------------------
Common
-------------------------------------------------- */

.section_title {
  margin-bottom: 40px;
  text-align: center;
}

.section_title .title {
  font-size: 30px;
  line-height: 42px;
  color: #000;
  font-weight: 900;
  margin: 0;
  margin-bottom: 10px;
}

.section_title .title .thin {
  font-weight: 600;
}

.section_title .sub_title {
  font-size: 16px;
  line-height: 24px;
  color: #696969;
  font-weight: 500;
  margin: 0;
}

.wrapper {
  max-width: 1320px;
  margin: auto;
}

.text_color {
  color: #3773f5 !important;
}

.sub_page_banner {
  width: 100vw;
  height: 50vh;
  position: relative;
  overflow: hidden;
}

.sub_page_banner video,
.sub_page_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}

.sub_page_banner.on video,
.sub_page_banner.on img {
  transform: scale(1);
  transition: all 2s ease;
}

.sub_page_banner .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sub_page_banner .content > div {
  margin-top: 100px;
  height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub_page_banner .content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  margin-bottom: 10px;
  opacity: 0;
  transition: all 1s ease;
  transition-delay: 0.8s;
}

.sub_page_banner.on .content p {
  opacity: 1;
}

.sub_page_banner .content h1 {
  font-size: 60px;
  line-height: 78px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  opacity: 0;
  margin-left: -40px;
  transition: all 1s ease;
  transition-delay: 1.6s;
}

.sub_page_banner.on .content h1 {
  opacity: 1;
  margin-left: 0px;
}

@media (max-width: 1360px) {
  .wrapper {
    max-width: 1200px;
  }
  .sub_page_banner .content > div {
    height: 100%;
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .sub_page_banner .content h1 {
    font-size: 34px;
    line-height: 42px;
  }
  .sub_page_banner .content p {
    margin-bottom: 15px;
  }
}

/* -----------------------------------------------
Home page
-------------------------------------------------- */

.home .menu_cmm {
  background-color: transparent;
}

.home .main_banner {
  width: 100%;
  height: 50vh;
  position: relative;
}

.home .main_banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home .main_banner .main_content {
  width: 100%;
  height: calc(100% - 100px);
  position: absolute;
  top: 60px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 1s ease;
}

.home .main_banner .main_content.on {
  opacity: 1;
}

.home .main_banner .main_content img {
  width: 12vw;
  height: auto;
  margin: 0;
  margin-bottom: 30px;
}

.home .main_banner .main_content h1 {
  font-size: 32px;
  line-height: 44px;
  color: #fff;
  font-weight: 600;
  margin: 0;
  margin-bottom: 40px;
}

.home .main_banner .main_content a {
  border: 1px solid #ffffff;
  padding: 8px 20px;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.home section {
  margin-top: 60px;
}

.home section.main_banner {
  margin-top: 0;
}

.home .building {
  margin-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #d8d8d8;
}

.home .building .title {
  margin-bottom: 20px;
}

.home .building .sub_title {
  padding: 20px;
  border: 10px solid #d8d8d8;
  text-align: left;
  color: #000;
}

.home .building > div > img {
  width: 100%;
  aspect-ratio: 1186/351;
  object-fit: cover;
  object-position: center;
}

.home .building .grid_box .item .img_box {
  width: 70px;
  height: 60px;
  position: relative;
  margin: auto;
  margin-bottom: 10px;
}

.home .building .grid_box .item1 .img_box div {
  background: url("../images/main/building_1.svg") no-repeat center center;
  background-size: cover;
  width: 40%;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 1s ease;
}

.home .building .grid_box .item1 .img_box div:nth-of-type(2) {
  width: 55%;
  bottom: 2px;
  left: 2px;
}

.home .building .grid_box .item1 .img_box div:nth-of-type(3) {
  width: 70%;
  bottom: 4px;
  left: 4px;
}

.home .building .grid_box .item1 .img_box.on div:nth-of-type(2) {
  bottom: 15%;
  left: 15%;
}

.home .building .grid_box .item1 .img_box.on div:nth-of-type(3) {
  bottom: 30%;
  left: 30%;
}

.home .building .grid_box .item2 .img_box img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0% 80%;
  transform: rotate(10deg);
  opacity: 0;
  transition: all 1s ease;
}

.home .building .grid_box .item2 .img_box img:nth-of-type(1) {
  transform: rotate(55deg);
}
.home .building .grid_box .item2 .img_box img:nth-of-type(2) {
  transform: rotate(35deg);
}
.home .building .grid_box .item2 .img_box img:nth-of-type(3) {
  transform: rotate(25deg);
}
.home .building .grid_box .item2 .img_box img:nth-of-type(4) {
  transform: rotate(15deg);
}

.home .building .grid_box .item2 .img_box.on img {
  opacity: 1;
  transform: rotate(0deg);
}

.home .building .grid_box .item3 .img_box div {
  background: url("../images/main/building_3.svg") no-repeat center center;
  background-size: cover;
  width: 70%;
  aspect-ratio: 600/379;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 1s ease;
  transform: rotate(-45deg);
}

.home .building .grid_box .item3 .img_box div:nth-of-type(2) {
  bottom: 2px;
  right: 2px;
}

.home .building .grid_box .item3 .img_box div:nth-of-type(3) {
  bottom: 4px;
  right: 4px;
}

.home .building .grid_box .item3 .img_box.on div:nth-of-type(2) {
  bottom: 15%;
  right: 15%;
}

.home .building .grid_box .item3 .img_box.on div:nth-of-type(3) {
  bottom: 30%;
  right: 30%;
}

.home .building .grid_box .item4 .img_box div {
  background: url("../images/main/building_4.svg") no-repeat center center;
  background-size: cover;
  width: 80%;
  aspect-ratio: 600/258;
  position: absolute;
  bottom: 0;
  right: 10%;
  transition: all 1s ease;
}

.home .building .grid_box .item4 .img_box div:nth-of-type(2) {
  bottom: 2px;
}

.home .building .grid_box .item4 .img_box div:nth-of-type(3) {
  bottom: 4px;
}

.home .building .grid_box .item4 .img_box.on div:nth-of-type(2) {
  bottom: 15%;
}

.home .building .grid_box .item4 .img_box.on div:nth-of-type(3) {
  bottom: 60%;
}

.home .building .grid_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.home .building .grid_box .item {
  text-align: center;
}

.home .building .grid_box .item img {
  width: 95px;
  height: auto;
  margin-bottom: 10px;
}

.home .building .grid_box .item .txt_top {
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
  color: #000;
  margin: 0;
  margin-bottom: 5px;
}

.home .building .grid_box .item .txt_bot {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
  margin: 0;
}

.home .wafer_list {
  margin-bottom: 100px;
}

.home .wafer_list .grid_box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.home .wafer_list .grid_box .item {
  width: 100%;
  aspect-ratio: 645/202;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  background-size: cover;
}

.home .wafer_list .grid_box .item_1 {
  background: url("../images/main/polished_wafer_bg.png") no-repeat center
    center;
  background-size: cover;
}

.home .wafer_list .grid_box .item_2 {
  background: url("../images/main/epitaxial_wafer_bg.png") no-repeat center
    center;
  background-size: cover;
}

.home .wafer_list .grid_box .title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 800;
  color: #000;
  margin: 0;
  margin-bottom: 18px;
}

.home .wafer_list .grid_box .txt {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
  margin: 0;
  margin-bottom: 18px;
}

.home .wafer_list .grid_box .go_page_ico {
  display: inline-block;
  width: 63px;
  height: 31px;
  background: url("../images/main/go_to_ico.svg") no-repeat center center;
  transition: all 0.6s ease;
}

.home .wafer_list .grid_box .go_page_ico:hover {
  transform: translateX(10px);
}

.home .wafer_journey .row_1 {
  position: relative;
  width: fit-content;
  height: auto;
  margin: auto;
  z-index: -1;
}

.home .wafer_journey .row_1 > img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  opacity: 0;
  transition: all 1s ease;
}

.home .wafer_journey.on .row_1 > img {
  opacity: 1;
}

.home .wafer_journey .row_1 span {
  width: 170px;
  height: auto;
  position: absolute;
  text-align: center;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 1;
}

.home .wafer_journey .row_1 span img {
  width: auto;
  height: 100%;
}

.home .wafer_journey .row_1 span:nth-of-type(1) {
  width: 80px;
  height: auto;
  top: calc(15% + 40px);
  left: 32%;
}

.home .wafer_journey.on .row_1 span:nth-of-type(1) {
  top: 15%;
  opacity: 1;
}

.home .wafer_journey .row_1 span:nth-of-type(2) {
  width: 50px;
  height: auto;
  left: calc(50% - 25px);
  top: calc(13% + 40px);
}

.home .wafer_journey.on .row_1 span:nth-of-type(2) {
  opacity: 1;
  top: 13%;
}

.home .wafer_journey .row_1 span:nth-of-type(3) {
  width: 120px;
  height: auto;
  right: 28%;
  top: calc(12% + 40px);
}

.home .wafer_journey.on .row_1 span:nth-of-type(3) {
  opacity: 1;
  top: 12%;
}

.home .wafer_journey .row_1 span:nth-of-type(4) {
  width: 90px;
  height: auto;
  left: 25%;
  top: calc(23% + 40px);
}

.home .wafer_journey.on .row_1 span:nth-of-type(4) {
  opacity: 1;
  top: 23%;
  transition-delay: 0.8s;
}

.home .wafer_journey .row_1 span:nth-of-type(5) {
  width: 90px;
  height: auto;
  top: calc(23% + 40px);
  right: calc(50% - 45px);
}

.home .wafer_journey.on .row_1 span:nth-of-type(5) {
  opacity: 1;
  top: 23%;
  transition-delay: 0.8s;
}

.home .wafer_journey .row_1 span:nth-of-type(6) {
  width: 110px;
  height: auto;
  top: calc(26% + 40px);
  right: 28%;
}

.home .wafer_journey.on .row_1 span:nth-of-type(6) {
  top: 26%;
  opacity: 1;
  transition-delay: 0.8s;
}

.home .wafer_journey .row_1 span:nth-of-type(7) {
  width: 150px;
  height: auto;
  top: calc(40% + 40px);
  left: 20%;
}

.home .wafer_journey.on .row_1 span:nth-of-type(7) {
  top: 40%;
  opacity: 1;
  transition-delay: 1.6s;
}

.home .wafer_journey .row_1 span:nth-of-type(8) {
  width: 150px;
  height: auto;
  top: calc(34% + 40px);
  right: calc(50% - 75px);
}

.home .wafer_journey.on .row_1 span:nth-of-type(8) {
  top: 34%;
  opacity: 1;
  transition-delay: 1.6s;
}

.home .wafer_journey .row_1 span:nth-of-type(9) {
  width: 150px;
  height: auto;
  top: calc(42% + 40px);
  right: 18%;
}

.home .wafer_journey.on .row_1 span:nth-of-type(9) {
  top: 42%;
  opacity: 1;
  transition-delay: 1.6s;
}

.home .wafer_journey .row_1 span:nth-of-type(10) {
  width: 100px;
  height: auto;
  top: calc(60% + 40px);
  left: 15%;
}

.home .wafer_journey.on .row_1 span:nth-of-type(10) {
  top: 60%;
  opacity: 1;
  transition-delay: 2.2s;
}

.home .wafer_journey .row_1 span:nth-of-type(11) {
  width: 260px;
  height: auto;
  top: calc(54% + 40px);
  left: calc(50% - 130px);
}

.home .wafer_journey.on .row_1 span:nth-of-type(11) {
  top: 54%;
  opacity: 1;
  transition-delay: 2.2s;
}

.home .wafer_journey .row_1 span:nth-of-type(12) {
  width: 100px;
  height: auto;
  top: calc(60% + 40px);
  right: 15%;
}

.home .wafer_journey.on .row_1 span:nth-of-type(12) {
  top: 60%;
  opacity: 1;
  transition-delay: 2.2s;
}

.home .wafer_journey .row_2 {
  width: 730px;
  height: 355px;
  margin: 25px auto 0;
  padding-top: 50px;
  box-sizing: border-box;
  position: relative;
}

.home .wafer_journey .row_2 > span {
  opacity: 0;
  transition: all 0.6s ease;
}

.home .wafer_journey .row_2 > span.ingredient {
  width: 100%;
  text-align: center;
  display: block;
}

.home .wafer_journey .row_2 > span:nth-of-type(2):before,
.home .wafer_journey .row_2 > span:nth-of-type(4):before,
.home .wafer_journey .row_2 > span:nth-of-type(6):before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 100px;
  box-sizing: border-box;
  position: absolute;
}

.home .wafer_journey .row_2 > span:nth-of-type(2):before,
.home .wafer_journey .row_2 > span:nth-of-type(6):before {
  right: -9px;
  top: 9px;
}

.home .wafer_journey .row_2 > span:nth-of-type(4):before {
  left: -9px;
  top: 9px;
}

.home .wafer_journey .row_2 > span.txt {
  position: absolute;
  text-align: left;
  font-size: 16px;
  line-height: 26px;
  padding-right: 175px;
}

.home .wafer_journey .row_2 > span.txt:after {
  content: "";
  width: 152px;
  height: 1px;
  background: #000;
  position: absolute;
  right: 0;
  top: 50%;
}

.home .wafer_journey .row_2 > span:nth-of-type(2):after {
  width: 228px;
}

.home .wafer_journey .row_2 > span:nth-of-type(2) {
  left: -90px;
  top: 80px;
  padding-right: 248px;
}

.home .wafer_journey .row_2 > span:nth-of-type(2):after {
  width: 228px;
}

.home .wafer_journey .row_2 > span:nth-of-type(4):after {
  right: auto;
  left: 0;
}

.home .wafer_journey .row_2 > span:nth-of-type(1) {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -63px;
}

.home .wafer_journey.on .row_2 > span:nth-of-type(1) {
  opacity: 1;
  transition-delay: 2.6s;
}

.home .wafer_journey .row_2 > span:nth-of-type(2) {
  left: -90px;
  top: 80px;
  padding-right: 248px;
}

.home .wafer_journey.on .row_2 > span:nth-of-type(2) {
  left: -15px;
  transition-delay: 2.6s;
  opacity: 1;
}

.home .wafer_journey .row_2 > span:nth-of-type(3) {
  margin-top: 60px;
}

.home .wafer_journey.on .row_2 > span:nth-of-type(3) {
  margin-top: 0px;
  opacity: 1;
  transition-delay: 2.2s;
}

.home .wafer_journey .row_2 > span:nth-of-type(4) {
  right: -150px;
  top: 178px;
  padding: 0 0 0 175px;
}

.home .wafer_journey.on .row_2 > span:nth-of-type(4) {
  opacity: 1;
  right: -30px;
  transition-delay: 3s;
}

.home .wafer_journey .row_2 > span:nth-of-type(5) {
  margin-top: -60px;
}

.home .wafer_journey.on .row_2 > span:nth-of-type(5) {
  margin-top: 8px;
  opacity: 1;
  transition-delay: 2.2s;
}

.home .wafer_journey .row_2 > span:nth-of-type(6) {
  left: -120px;
  top: 278px;
}

.home .wafer_journey.on .row_2 > span:nth-of-type(6) {
  left: -40px;
  opacity: 1;
  transition-delay: 3.4s;
}

.home .wafer_journey .row_2 > span:nth-of-type(7) {
  margin-top: -60px;
}

.home .wafer_journey.on .row_2 > span:nth-of-type(7) {
  margin-top: 0px;
  opacity: 1;
  transition-delay: 2.2s;
}

.home .wafer_journey .row_3 {
  margin-top: 35px;
  text-align: center;
}

.home .wafer_journey .row_3 a {
  height: 46px;
  display: inline-block;
  position: relative;
  background: #fff;
  padding: 0 56px;
  color: #000;
  font-size: 16px;
  line-height: 44px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #000;
  box-sizing: border-box;
}

.home .company_hightlight {
  margin-top: 20px;
}

.home .company_hightlight .content {
  width: 100%;
  aspect-ratio: 1320/416;
  background: url("../images/main/company_hightlight_bg.png") no-repeat center
    center;
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.home .company_hightlight .content .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home .company_hightlight .content .item .num {
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  border-radius: 0 50% 50% 0;
  background-color: #255cff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .company_hightlight .content .item .txt {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
  margin-top: 20px;
}

.home .company_hightlight .content .item:hover .txt {
  border-bottom: 1px solid #fff;
}

.home .company_hightlight .button_group {
  margin-top: 50px;
  text-align: center;
}

.home .company_hightlight .button_group a {
  height: 46px;
  display: inline-block;
  position: relative;
  background: #fff;
  padding: 0 56px;
  color: #000;
  font-size: 16px;
  line-height: 44px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #000;
  box-sizing: border-box;
}

.home .insight_news .grid_box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.home .insight_news .item img {
  width: 100%;
  aspect-ratio: 420/245;
  object-fit: cover;
  object-position: center;
}

.home .insight_news .item .content {
  padding: 20px 25px 40px 25px;
  background-color: #f7f7f7;
}

.home .insight_news .item .content p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 56px;
}

.home .insight_news .item .content a {
  height: 32px;
  display: inline-block;
  position: relative;
  padding: 0 38px;
  color: #000;
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #000;
  box-sizing: border-box;
}

.home .highttech {
  margin-top: 80px;
}

.home .highttech .content {
  position: relative;
  padding-bottom: 40px;
}

.home .highttech .slide_box {
  width: 60%;
  position: relative;
  z-index: 1;
  background: linear-gradient(89.93deg, #2241cb 0.07%, #01122f 99.95%);
}

.home .highttech .slide_box .slide_frame {
  width: 66.67%;
}

.home .highttech .slide_box .swiper {
  width: 100%;
}

.home .highttech .slide_box .swiper .swiper-slide {
  padding: 40px 15px 20px 30px;
}

.home .highttech .slide_box .swiper .swiper-slide p {
  margin: 0;
}

.home .highttech .slide_box .swiper .swiper-slide .title {
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.home .highttech .slide_box .swiper .swiper-slide .txt {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

.home .highttech .slide_box .swiper-pagination-bullets {
  position: absolute;
  width: 66.67%;
  text-align: center;
  bottom: -20px;
}

.home
  .highttech
  .slide_box
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 3px;
  background: #0733fc;
}

.home .highttech .swiper-pagination-bullet {
  width: 7px;
  height: 3px;
  border-radius: 3px;
  background: #a6a6a6;
  margin: 0 2px !important;
}

.home .highttech .img_box {
  position: absolute;
  top: 40px;
  right: 0;
  width: 60%;
  aspect-ratio: 730/260;
  padding: 0 0 20px 20px;
  background-color: #f7f7f7;
}

.home .highttech .img_box .img_list {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #f7f7f7;
}

.home .highttech .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  z-index: 2;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s, transform 2s, -webkit-transform 2s;
}

.home .highttech .img_box img.on {
  z-index: 3;
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 991px) {
  .section_title {
    margin-bottom: 20px;
  }

  .section_title .title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 5px;
  }

  .wrapper {
    padding: 0 20px;
  }

  .home .main_banner .main_content {
    top: 50px;
  }

  .home .main_banner .main_content img {
    width: 40vw;
  }

  .home .main_banner .main_content h1 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 30px;
  }

  .home .building .sub_title {
    padding: 10px;
    border: 6px solid #d8d8d8;
  }

  .home .wafer_list .grid_box {
    grid-template-columns: 1fr;
  }

  .home .wafer_list .grid_box .item {
    padding: 0 20px;
    aspect-ratio: 388/175;
  }

  .home .wafer_list .grid_box .title {
    font-size: 18px;
    line-height: 24px;
  }

  .home .wafer_list .grid_box .txt {
    max-width: 70%;
  }

  .home .wafer_list .grid_box .item_1 {
    background: url("../images/main/polished_wafer_bg_mb.png") no-repeat center
      center;
    background-size: cover;
  }

  .home .wafer_list .grid_box .item_2 {
    background: url("../images/main/epitaxial_wafer_bg_mb.png") no-repeat center
      center;
    background-size: cover;
  }

  .home .wafer_journey .row_1 {
    width: 100%;
  }

  .home .wafer_journey .row_1 span:nth-of-type(1) {
    width: 40px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(2) {
    width: 25px;
    left: calc(50% - 12px);
  }

  .home .wafer_journey .row_1 span:nth-of-type(3) {
    width: 50px;
    height: auto;
  }

  .home .wafer_journey .row_1 span:nth-of-type(4) {
    width: 40px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(5) {
    width: 40px;
    right: calc(50% - 20px);
  }

  .home .wafer_journey .row_1 span:nth-of-type(6) {
    width: 50px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(7) {
    width: 50px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(8) {
    width: 50px;
    right: calc(50% - 25px);
  }

  .home .wafer_journey .row_1 span:nth-of-type(9) {
    width: 50px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(10) {
    width: 50px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(11) {
    width: 120px;
    left: calc(50% - 60px);
  }

  .home .wafer_journey .row_1 span:nth-of-type(12) {
    width: 50px;
  }

  .home .wafer_journey .row_2 {
    width: 243px;
    height: 118px;
    padding-top: 20px;
  }

  .home .wafer_journey.on .row_2 > span:nth-of-type(1) {
    margin-left: -25px;
  }

  .home .wafer_journey.on .row_2 > span:nth-of-type(1) img {
    width: 48px;
    height: auto;
  }

  .home .wafer_journey.on .row_2 > span:nth-of-type(3) img {
    width: 93px;
    height: auto;
  }

  .home .wafer_journey.on .row_2 > span:nth-of-type(5) img {
    width: 161px;
    height: auto;
  }

  .home .wafer_journey.on .row_2 > span:nth-of-type(7) img {
    width: 161px;
    height: auto;
  }

  .home .wafer_journey .row_2 > span:nth-of-type(2) {
    top: 18px;
    padding-right: 50px;
  }

  .home .wafer_journey .row_2 > span:nth-of-type(2):after {
    width: 42px;
  }

  .home .wafer_journey .row_2 > span:nth-of-type(2) {
    top: 18px;
  }

  .home .wafer_journey .row_2 > span:nth-of-type(4) {
    top: 60px;
    padding: 0 0 0 50px;
  }

  .home .wafer_journey .row_2 > span:nth-of-type(4):after {
    width: 42px;
  }

  .home .wafer_journey .row_2 > span:nth-of-type(6) {
    top: 92px;
    padding-right: 50px;
  }

  .home .wafer_journey .row_2 > span:nth-of-type(6):after {
    width: 42px;
  }
  .home .wafer_journey.on .row_2 > span:nth-of-type(6) {
    left: -56px;
  }

  .home .wafer_journey .row_2 > span.txt {
    font-size: 12px;
  }

  .home .wafer_journey .row_3 a {
    font-size: 14px;
    line-height: 40px;
    height: 40px;
  }

  .home .insight_news .grid_box {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home .insight_news .item .content {
    padding: 20px 20px 30px 20px;
  }

  .home .insight_news .item .content p {
    font-size: 18px;
    line-height: 26px;
  }

  .home .highttech {
    margin-top: 60px;
  }

  .home .highttech .slide_box {
    width: 100%;
  }

  .home .highttech .slide_box .slide_frame {
    width: 100%;
  }

  .home .highttech .slide_box .swiper .swiper-slide .title {
    font-size: 20px;
    line-height: 28px;
  }

  .home .highttech .content {
    padding-bottom: 20px;
  }

  .home .highttech .img_box {
    position: static;
    padding: 0;
    width: 100%;
    aspect-ratio: 730/300;
  }

  .home .highttech .slide_box .swiper .swiper-slide {
    padding: 20px 20px 15px 20px;
  }

  .home .highttech .slide_box .swiper-pagination-bullets {
    width: 100%;
  }

  .home .company_hightlight .content {
    gap: 30px;
    padding: 60px 20px;
    justify-content: flex-start;
  }

  .home .company_hightlight .content .item {
    flex-direction: row;
  }

  .home .company_hightlight .content .item .txt {
    margin-top: 0;
    margin-left: 10px;
  }

  .home .company_hightlight .button_group a {
    font-size: 14px;
    line-height: 40px;
    height: 40px;
  }

  .home .company_hightlight .button_group {
    margin-top: 40px;
  }
  .home .building {
    margin-top: 40px;
    padding-bottom: 60px;
  }
  .home .building .grid_box {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
  }
  .home .building > div > img {
    aspect-ratio: 4/3;
  }
  .home .building .grid_box .item .txt_top {
    font-size: 24px;
    line-height: 30px;
  }
}

/* -----------------------------------------------
Login
-------------------------------------------------- */

.login .main {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.login .main .bg_mb {
  display: none;
}
.login .main > img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
.login .main video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
.login .main .login_wrap {
  width: 100%;
  height: 100%;
  background-color: #0000009e;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.login .main .login_content {
  background-color: #fff;
  padding: 40px;
}

.login .text-danger {
  color: #dc3546;
}

.login .main .login_form {
  margin-top: -80px;
}

.login .main .login_form .title {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.login .main .login_form .sub_title {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.login .main .login_form .btn-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.login .main .login_form > img {
  width: 250px;
  height: auto;
  margin: auto;
  display: block;
}

.login .main .login_form p {
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  margin: 0;
  margin-bottom: 10px;
}

.login .main .login_form input {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #696969;
  padding: 10px 20px 10px 60px;
  width: 500px;
  height: 60px;
  font-size: 20px;
}

.login .main .login_form .row {
  margin-bottom: 30px;
}

.login .main .login_form button.btn-submit {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #3773f5;
  border: 2px solid #3773f5;
}

.login .main .login_form button.btn-submit:hover {
  background-color: #096ae9;
  color: #fff;
}

.login .main .login_form a {
  display: inline-block;
  width: fit-content;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 16px;
  color: #000000;
  border-bottom: 1px solid #000000;
  box-sizing: border-box;
  margin-left: auto;
}

.login .main .login_form .small {
  font-size: 14px;
  line-height: 14px;
  margin-top: 10px;
  display: none;
}

.login .password-box {
  position: relative;
}

.login .password-box button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 24px;
  height: 24px;
  background-image: url("../images/login/unshow.svg");
  background-size: cover;
  background-position: center;
}

.login .password-box button.show {
  background-image: url("../images/login/show.svg");
}

.login .user-box {
  position: relative;
}

.login .user-box .user-icon {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 20px;
  height: 23px;
  background-image: url("../images/login/user_icon.svg");
  background-size: cover;
  background-position: center;
}

.login .password-box .pass-icon {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 22px;
  height: 24px;
  background-image: url("../images/login/pass_icon.svg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  .login .main .login_form input {
    font-size: 16px;
    width: 300px;
    height: 50px;
  }
  .login .main .login_form > img {
    width: 200px;
    height: auto;
  }
  .login .main .bg_pc {
    display: none;
  }
  .login .main .bg_mb {
    display: block;
  }
  .login .password-box button {
    top: 14px;
    right: 10px;
    width: 20px;
    height: 20px;
  }
  .login .user-box .user-icon,
  .login .password-box .pass-icon {
    top: 12px;
  }
  .login .main .login_content {
    padding: 30px 20px 20px;
  }
  .login .main .login_form button.btn-submit {
    font-size: 20px;
    line-height: 20px;
    height: 44px;
  }
  .login .main .login_form .title {
    font-size: 48px;
    line-height: 48px;
  }
}

/* -----------------------------------------------
Register
-------------------------------------------------- */

.register .main {
  width: 100%;
  min-height: 100vh;
  background-image: url(../images/login/login_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.register .main .step_box {
  display: none;
}

.register .main .text-danger {
  color: #dc3546;
}

.register .main .agreement-box {
  width: 500px;
  display: block;
}

.register .main .agreement_bg {
  background-color: #fff;
  padding: 20px 20px 60px 20px;
  width: 100%;
}

.register .main .agreement-box .title {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
}

.register .main .agreement-box .sub_title {
  font-size: 16px;
  line-height: 16px;
  color: #787878;
  margin-bottom: 30px;
  text-align: center;
}

.register .main .agreement-box .form-check label {
  font-size: 15px;
  line-height: 15px;
  color: #000;
}

.register
  .main
  .agreement-box
  .form-check
  input[type="checkbox"]#checkbox1:checked
  + span {
  border-color: red;
  background-color: red;
}

.register .main .form-check-container {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.register .main .form-check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  border: 1px solid #d0dbdf;
  border-radius: 4px;
}

/* When the checkbox is checked, add a blue background */
.register .main .form-check-container input:checked ~ .checkmark {
  background-color: #1e70da;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.register .main .form-check-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.register .main .form-check-container .checkmark:after {
  left: 4px;
  top: 2px;
  width: 3px;
  height: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.register .main .form-check-all {
  font-weight: 700;
}

.register .main .agreement-box .terms-scroll {
  padding: 15px 5px 15px 15px;
  background-color: #f8f8f8;
  border-radius: 9px;
  margin-bottom: 20px;
}

.register .main .agreement-box .terms-scroll-box {
  max-height: 100px;
  overflow-y: auto;
}

.register .main .agreement-box .terms-scroll-box::-webkit-scrollbar {
  width: 5px;
}

.register .main .agreement-box .terms-scroll-box::-webkit-scrollbar-thumb {
  background-color: #d2d2d2;
}

.register .main .agreement-box .terms-scroll p,
.register .main .agreement-box .terms-scroll li {
  font-size: 14px;
  line-height: 19px;
  color: #222;
  margin-top: 10px;
}

.register .main .agreement-box .terms-scroll h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #222;
  margin-top: 10px;
}

.register .main .agreement-box .terms-scroll ol {
  counter-reset: item;
  list-style-type: none;
}

.register .main .agreement-box .terms-scroll .terms-box > ol > li:before {
  content: counter(item) "  ";
  counter-increment: item;
  display: inline-flex;
  width: 16px;
  height: 16px;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  margin-right: 5px;
}

.register .main .agreement-box .terms-scroll .terms-box > ol > li {
  display: block;
}

.register .main .agreement-box .terms-scroll .terms-box > ol > li > ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-left: 20px;
}

.register .main .agreement-box .agree_btn {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #1e70da;
  border-radius: 2px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.register .main .agreement-box .agree_btn:hover {
  opacity: 0.7;
}

.register .main .agreement-box .copy_right {
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  margin-top: 20px;
  text-align: center;
}

.register .main .register-box {
  width: 500px;
  background-color: #fff;
  padding: 20px;
  border-radius: 2px;
}

.register .main .register-box .title {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #22252a;
  margin-bottom: 15px;
  text-align: center;
}

.register .main .register-box .sub_title {
  font-size: 16px;
  line-height: 16px;
  color: #787878;
  margin-bottom: 30px;
  text-align: center;
}

.register .main .register-box input {
  width: 100%;
  height: 40px;
  border: 1px solid #dee2e6;
  border-radius: 7px;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 14px;
}

.register .main .register-box label {
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  margin-bottom: 10px;
  color: #22252a;
}

.register .main .register-box .form-input {
  margin-bottom: 15px;
}

.register .main .register-box .form-input .small {
  font-size: 12px;
  line-height: 12px;
  margin-top: 10px;
  display: none;
}

.register .main .register-box select {
  width: 100%;
  height: 40px;
  border: 1px solid #dee2e6;
  border-radius: 7px;
  padding: 0 15px;
  font-size: 14px;
  line-height: 14px;
  background: #fff url(../images/common/select_arr.png) no-repeat right 10px
    center;
  -webkit-appearance: none;
  outline: none;
}

.register .main .register-box .join_btn {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #1e70da;
  border-radius: 2px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  transition: 0.2s;
}

.register .main .register-box .join_btn:hover {
  opacity: 0.7;
}

.register .main .register-box .dupcheck-group {
  display: flex;
  gap: 10px;
}

.register .main .register-box .dupcheck-group button {
  font-size: 14px;
  line-height: 14px;
  color: #000;
  border: 1px solid #000000;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border-radius: 7px;
  text-wrap: nowrap;
  height: 40px;
}

.register .main .register-box .dupcheck-group button.btn-success {
  background-color: #1d8d00;
  color: #fff;
}

.register .main .register-box .dupcheck-group > div {
  width: 100%;
}

.register .main .final-box {
  background-color: #fff;
  padding: 20px 40px;
  width: 600px;
  text-align: center;
}

.register .main .final-box img {
  width: 156px;
  height: 156px;
  margin-bottom: 10px;
}

.register .main .final-box .title {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #22252a;
  margin-bottom: 15px;
  text-align: center;
}

.register .main .final-box .sub_title {
  font-size: 16px;
  line-height: 16px;
  color: #787878;
  margin-bottom: 30px;
  text-align: center;
}

.register .main .final-box .final_btn {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #1e70da;
  border-radius: 2px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  transition: 0.2s;
}

.register .main .register-box .form-label-password {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.register .main .register-box .form-label-password .text-note {
  font-size: 14px;
}

.register .password-box {
  position: relative;
}

.register .password-box button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background-image: url("../images/login/unshow.svg");
  background-size: cover;
  background-position: center;
}

.register .password-box button.show {
  background-image: url("../images/login/show.svg");
}

@media (max-width: 991px) {
  .register .main {
    padding: 80px 0;
    background-image: url(../images/login/login_bg_mb.webp);
  }
  .register .main .agreement-box {
    width: 350px;
  }
  .register .main .agreement_bg {
    padding: 15px;
  }
  .register .main .register-box {
    width: 350px;
    padding: 15px;
  }
  .register .main .agreement-box .copy_right {
    font-size: 12px;
    line-height: 12px;
  }

  .register .main .agreement-box .title,
  .register .main .agreement-box .sub_title {
    margin-bottom: 20px;
  }

  .register .main .form-check-container {
    margin-bottom: 15px;
  }
  .register .main .register-box input {
    border-radius: 5px;
  }
  .register .main .register-box select {
    border-radius: 5px;
  }
}

/* -----------------------------------------------
Company
-------------------------------------------------- */

.company section {
  margin-top: 60px;
}

.company .sub_page_banner {
  margin-top: 0;
}

.company .top_text {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #d8d8d8;
}

.company .top_text h3 {
  font-size: 32px;
  font-weight: 900;
  line-height: 40px;
  color: #000;
}

.company .top_text p {
  font-size: 16px;
  line-height: 24px;
  color: #696969;
}

.company .summary01 h3 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 900;
  color: #000;
}

.company .summary01 table {
  width: 100%;
  border-top: 2px solid #000;
}
.company .summary01 table th {
  background: #fafafa;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid #d5d5d5;
  vertical-align: middle;
  text-align: left;
  padding-left: 50px;
}
.company .summary01 table thead th {
  padding: 12px 0;
}
.company .summary01 table tbody td {
  color: #000;
  padding: 12px 0;
  border-bottom: 1px solid #d5d5d5;
  text-align: left;
  padding-left: 50px;
  font-size: 16px;
}
.company .summary01 table tr td.first {
  border-left: 0;
}

.company .summary01 .table_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.company .summary02 {
  padding: 76px 0 80px;
  border-bottom: 0;
}

.company .summary02 > p {
  font-size: 1.25rem;
  line-height: 2.125rem;
  color: #000;
  margin: 0 0 90px;
}
.company .summary02 > p strong {
  font-family: "NotokrM";
  color: #d70000;
  font-weight: normal;
}
.company .summary02 > h3 {
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 1;
  border: 0;
  text-align: center;
}
.company .summary02 > h3:after {
  content: "";
  position: absolute;
  left: 0;
  top: 139px;
  width: 100%;
  border-top: 1px solid #d3d3d3;
  z-index: 0;
}
.company .summary02 > h3 > img {
  position: relative;
  z-index: 100;
}
.company .summary02 > ul {
  width: 100%;
  height: fit-content;
  margin: -300px auto 0;
  padding: 60px 0;
  text-align: left;
  overflow: hidden;
  list-style-type: none;
}
.company .summary02 > ul li {
  height: 160px;
  float: left;
  text-align: center;
  position: relative;
  opacity: 1;
}
.company .summary02 > ul li:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -5.5px 0 0 -5.5px;
  width: 11px;
  height: 11px;
  border-radius: 100px;
  background: #d0112b;
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.3);
}
.company .summary02 > ul li:nth-child(even):after {
  background: #ef7622;
}
.company .summary02 > ul li:nth-child(1) {
  width: 13%;
}
.company .summary02 > ul li:nth-child(2) {
  width: 24%;
}
.company .summary02 > ul li:nth-child(3) {
  width: 20%;
  margin-left: 26%;
}
.company .summary02 > ul li:nth-child(4) {
  width: 17%;
}
.company .summary02 > ul li strong {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 1.5rem;
  color: #000;
  font-family: "NotokrM";
  font-weight: normal;
  opacity: 1;
}
.company .summary02 > ul li span {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  opacity: 1;
}
.company .summary02 > ul li:nth-child(odd) strong,
.company .summary02 > ul li:nth-child(even) span {
  top: 137px;
}

.company .summary03 {
  margin-top: 80px;
}

.company .summary03 h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #000;
  text-align: center;
  margin-bottom: 60px;
}

.company .summary03 h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #000;
  text-align: center;
  margin-bottom: 60px;
  margin-top: 0;
}

.company .summary03 .grid_box {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 50px;
  position: relative;
}

.company .summary03 .grid_box h3 {
  position: absolute;
  top: 0;
  left: 0;
}

.company .summary03 .grid_box .img_box {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}

.company .summary03 .grid_box .img_box img {
  width: 100%;
  height: auto;
}

.company .summary03 .grid_box .content_box {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

.company .summary03 em {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #000;
}

.company .summary03 p {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #000;
  margin-top: 20px;
}

.company .summary04 {
  text-align: center;
  min-height: 500px;
}

.company .summary04 h2 {
  font-size: 28px;
  font-weight: 900;
  color: #000;
  text-align: left;
  padding: 0 0 30px;
  border-bottom: 1px solid #d8d8d8;
}

.company .summary04 h3 {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  margin-top: 40px;
}

.company .summary04 p {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}

.company .summary04 .mmt_system {
  width: 88.2%;
  margin: -500px auto 0;
  background: url("../images/main/wafer_journey_bg.png") no-repeat center 0px;
  background-size: 100%;
  opacity: 0;
  transition: all 1s ease;
  transition-delay: 0.4s;
}

.company .summary04.on .mmt_system {
  margin-top: 40px;
  opacity: 1;
}

.company .summary04 .mmt_system .manage_sp {
  display: none;
}

.company .summary04 .mmt_system > div {
  width: 850px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  text-align: center;
  transition: all 0.4s ease;
  transition-delay: 0.6s;
}

.company .summary04.on .mmt_system > div {
  opacity: 1;
}

.company .summary04 .manage01 {
  width: 350px;
  height: 221px;
  text-align: center;
  margin: 0 auto 30px;
  opacity: 1;
}
.company .summary04 .manage02 {
  position: absolute;
  left: 0;
  bottom: 95px;
  opacity: 0;
  transition: all 0.6s ease;
  transition-delay: 1.2s;
}
.company .summary04 .manage03_mb {
  display: none;
}
.company .summary04.on .manage02 {
  opacity: 1;
}
.company .summary04 .manage03 {
  position: absolute;
  right: 0;
  bottom: 75px;
  opacity: 0;
  transition: all 0.6s ease;
  transition-delay: 1.6s;
}
.company .summary04 .manage02_mb {
  display: none;
}
.company .summary04.on .manage03 {
  opacity: 1;
}
.company .summary04 [class^="manage0"] > span {
  display: inline-block;
  width: 120px;
  height: 120px;
  background: #3773f5;
  border-radius: 100%;
  color: #fff;
  font-size: 1.71rem;
  line-height: 120px;
  font-family: "NotokrM";
  vertical-align: middle;
  text-align: center;
}
.company .summary04 [class^="manage0"] > img {
  vertical-align: middle;
  opacity: 0;
}
.company .summary04 .manage01 > img {
  margin-top: -30px;
  transition: all 0.6s ease;
  transition-delay: 1.4s;
}
.company .summary04.on .manage01 > img {
  margin-left: 0px;
  opacity: 1;
}
.company .summary04 .manage02 > img {
  margin-left: -30px;
  transition: all 0.6s ease;
  transition-delay: 1.4s;
}
.company .summary04.on .manage02 > img {
  margin-left: 0px;
  opacity: 1;
}
.company .summary04 .manage03 > img {
  margin-right: -30px;
  transition: all 0.6s ease;
  transition-delay: 1.8s;
}
.company .summary04.on .manage03 > img {
  margin-right: 0px;
  opacity: 1;
}

.company .summary05 {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}

.company .summary05 h3 {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  margin-top: 40px;
}

.company .summary05 .vwbe {
  margin-top: 60px;
  position: relative;
  z-index: 10;
}
.company .summary05 .vwbe > div {
  width: 86%;
  margin: 0 auto;
}
.company .summary05 .vwbe > div > span {
  display: inline-block;
  width: 33.3%;
  padding-top: 170px;
  background: url("../images/company/bg_work01.png") no-repeat center top;
  opacity: 0;
  text-align: center;
  transition: all 0.8s ease;
  color: #696969;
  line-height: 24px;
}
.company .summary05 .vwbe > div > span:nth-of-type(2) {
  background: url("../images/company/bg_work02.png") no-repeat center top;
}
.company .summary05 .vwbe > div > span:nth-of-type(3) {
  background: url("../images/company/bg_work03.png") no-repeat center top;
}
.company .summary05 .vwbe > div > span + span {
  margin-left: -4px;
}
.company .summary05 .vwbe > div > span strong {
  display: block;
  font-size: 25px;
  line-height: 40px;
  font-weight: 700;
  color: #003cbd;
  margin: 0 0 10px;
}
.company .summary05 .vwbe > div span:nth-of-type(2) strong {
  color: #3773f5;
}
.company .summary05 .vwbe > div span:nth-of-type(3) strong {
  color: #000;
}

.company .summary05 .vwbe + a.btn_type01 {
  margin-top: 55px;
}

.company .summary05 .vwbe.on > div > span {
  opacity: 1;
}

.company .summary05 .vwbe > div > span:nth-of-type(1) {
  transition-delay: 0.4s;
}

.company .summary05 .vwbe > div > span:nth-of-type(2) {
  transition-delay: 1s;
}

.company .summary05 .vwbe > div > span:nth-of-type(3) {
  transition-delay: 1.4s;
}

@media (max-width: 1279px) {
  .company .summary05 .vwbe > div > span {
    font-size: 14px;
    line-height: 22px;
  }
  .company .top_text h3 {
    font-size: 26px;
    line-height: 36px;
  }
  .company .summary01 h3 {
    font-size: 26px;
    line-height: 36px;
  }
  .company .summary03 em {
    font-size: 22px;
    line-height: 28px;
  }
  .company .summary04 h2 {
    font-size: 24px;
    padding: 0 0 25px;
  }
  .company .summary03 .grid_box {
    gap: 30px;
  }
  .company .summary03 p {
    line-height: 24px;
  }
  .company .summary04 h3 {
    font-size: 26px;
  }
  .company .summary05 h3 {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .company section {
    margin-top: 40px;
  }
  .company .top_text h3 {
    font-size: 24px;
    line-height: 34px;
  }
  .company .summary01 h3 {
    font-size: 24px;
    line-height: 34px;
  }
  .company .summary01 .table_box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .company .summary01 table th,
  .company .summary01 table tbody td {
    padding-left: 10px;
  }
  .company .summary03 {
    margin-top: 40px;
  }
  .company .summary03 h3 {
    margin-bottom: 40px;
  }
  .company .summary03 .grid_box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .company .summary03 em {
    display: block;
    text-align: center;
    font-size: 20px;
    line-height: 28px;
  }
  .company .summary04 h2 {
    font-size: 24px;
    padding: 0 0 20px;
  }
  .company .summary04 h3 {
    font-size: 24px;
    margin-top: 30px;
  }
  .company .summary04 [class^="manage0"] > span {
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 20px;
  }
  .company .summary04 .mmt_system {
    width: 100%;
    background: url(../images/main/wafer_journey_bg.png) no-repeat center 200px;
    background-size: contain;
  }
  .company .summary04 .mmt_system > div {
    padding: 166px 0;
    width: calc(100% - 40px);
  }
  .company .summary04 .mmt_system > div > img {
    width: 180px;
    height: auto;
  }
  .company .summary04 .mmt_system .manage_pc {
    display: none;
  }
  .company .summary04 .mmt_system .manage_sp {
    display: inline;
  }
  .company .summary04 .manage02 {
    display: none;
  }
  .company .summary04 .manage02_mb {
    position: absolute;
    top: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s ease;
    transition-delay: 1.2s;
    width: 100%;
  }
  .company .summary04.on .manage02_mb {
    opacity: 1;
  }
  .company .summary04 .manage02_mb > img {
    margin-top: -30px;
    transition: all 0.6s ease;
    transition-delay: 1.4s;
    height: 55px;
    width: auto;
  }
  .company .summary04.on .manage02_mb > img {
    margin-top: 10px;
    opacity: 1;
  }
  .company .summary04 .manage03 {
    display: none;
  }
  .company .summary04 .manage03_mb {
    position: absolute;
    bottom: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s ease;
    transition-delay: 1.2s;
    width: 100%;
  }
  .company .summary04.on .manage03_mb {
    opacity: 1;
  }
  .company .summary04 .manage03_mb > img {
    margin-bottom: -30px;
    transition: all 0.6s ease;
    transition-delay: 1.4s;
    height: 55px;
    width: auto;
  }
  .company .summary04.on .manage03_mb > img {
    margin-bottom: 10px;
    opacity: 1;
  }
  .company .summary05 {
    margin-top: 60px;
  }
  .company .summary05 h3 {
    font-size: 24px;
  }
  .company .summary05 .vwbe {
    margin-top: 30px;
  }
  .company .summary05 .vwbe > div > span {
    width: 100%;
    margin-bottom: 20px;
  }
  .company .summary05 .vwbe > div > span strong {
    font-size: 22px;
    line-height: 36px;
    margin: 0 0 6px;
  }
}

/* -----------------------------------------------
Business
-------------------------------------------------- */

.business .business01 {
  margin-top: 40px;
}

.business .business01 .items {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid #d8d8d8;
}

.business .business01 .items.right {
  grid-template-columns: 4fr 3fr;
}

.business .business01 .items.left {
  grid-template-columns: 3fr 4fr;
}

.business .business01 .items .images {
  display: flex;
  width: 100%;
}

.business .business01 .items.right .images {
  justify-content: end;
}

.business .business01 .items.left .images {
  justify-content: start;
}

.business .business01 .items .imgs {
  position: relative;
  width: 70%;
}

.business .business01 .items .imgs .img {
  width: 90%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.08);
  margin: 0;
  position: relative;
  z-index: 1;
}

.business .business01 .items .imgs img {
  width: 100%;
}

.business .business01 .items .svgbox {
  cursor: pointer;
}

.business .business01 .items .svgbox .svgs {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.business .business01 .items .svgbox .svgs svg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.business .business01 .items .svgbox .svg {
  stroke-width: 14;
  r: calc(50% - 7px);
}

.business .business01 .items .svgbox .circle {
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.business .business01 .items .svgbox:hover .circle {
  animation: circle 2s linear;
  opacity: 1;
  transition: 0.5s ease-in-out;
}

.business .business02 {
  margin-top: 60px;
  text-align: center;
}

.business .business02 h3,
.business .business02 h4,
.business .business02 p {
  margin: 0;
}

.business .business02 h3 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
  text-align: center;
}

.business .business02 .grid_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.business .business02 .grid_box > div {
  opacity: 0;
  transition: opacity 0.8s ease;
  text-align: center;
}

.business .business02 .grid_box > div:nth-child(1) {
  transition-delay: 0.4s;
}

.business .business02 .grid_box > div:nth-child(2) {
  transition-delay: 0.8s;
}

.business .business02 .grid_box > div:nth-child(3) {
  transition-delay: 1.2s;
}

.business .business02 .grid_box > div:nth-child(4) {
  transition-delay: 1.6s;
}

.business .business02.on .grid_box > div {
  opacity: 1;
}

.business .business02 .grid_box .img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 1px;
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.08);
}

.business .business02 .grid_box .img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.business .business02 .grid_box .svgbox {
  cursor: pointer;
}

.business .business02 .grid_box .svgbox .svgs {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.business .business02 .grid_box .svgbox .svgs svg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.business .business02 .grid_box .svgbox .svg {
  stroke-width: 10;
  r: calc(50% - 5px);
}

.business .business02 .grid_box .svgbox .circle {
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.business .business02 .grid_box .svgbox:hover .circle {
  animation: circle 2s linear;
  opacity: 1;
  transition: 0.5s ease-in-out;
}

.business .business02 .detail {
  padding: 30px 20px 20px;
}

.business .business02 .detail h4 {
  font-size: 17px;
  line-height: 17px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  text-align: center;
}

.business .business02 .detail p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #696969;
  text-align: center;
}

@keyframes circle {
  0% {
    stroke-dasharray: 0 1500;
  }

  100% {
    stroke-dasharray: 1500 0;
  }
}

.business .business01 .items .words {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.business .business01 .items.right .words {
  text-align: end;
}

.business .business01 .items .words .tit {
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  color: #000;
  margin: 0;
  margin-bottom: 10px;
  position: relative;
}

.business .business01 .items .words .tit:after {
  content: "";
  position: absolute;
  top: 0;
  background-image: url("../images/common/logo_small_icon.svg");
  background-size: cover;
  background-position: center;
  width: 30px;
  height: 30px;
}

.business .business01 .items.right .words .tit:after {
  right: -35px;
}

.business .business01 .items.left .words .tit:after {
  left: -35px;
}

.business .business01 .items .words .txt p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.business .business03 {
  margin-top: 80px;
  margin-bottom: 100px;
}

.business .business03 h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.business .business03 .img_box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  padding: 0 30px;
}

.business .business03 .img_box button {
  transition: all 0.6s ease;
  padding: 0;
  position: relative;
}

.business .business03 .img_box button img {
  aspect-ratio: 185/104;
  object-fit: cover;
  object-position: center;
  width: 100%;
  filter: grayscale(100%);
  transition: 0.4s;
}

.business .business03 .img_box button:hover::before,
.business .business03 .img_box button.on::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid #3773f5;
  z-index: 1;
  transition: 0.4s;
}

.business .business03 .img_box button.on img {
  filter: grayscale(0%);
}

.business .business03 .swiper-slide {
  padding: 0 30px;
}

.business .business03 .swiper-slide .banner_box {
  padding-right: 30px;
  position: relative;
}

.business .business03 .swiper-slide .banner_box img {
  width: 100%;
  aspect-ratio: 1156/396;
  object-fit: cover;
  object-position: center;
}

.business .business03 .swiper-slide .banner_box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: calc(100% + 40px);
  background-color: #f8f8f8;
  z-index: -1;
}

.business .business03 .swiper-slide > .txt_box {
  width: 100%;
  padding: 45px 0 45px 100px;
  box-sizing: border-box;
  text-align: left;
}
.business .business03 .swiper-slide > .txt_box > span {
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 8px 50px;
  opacity: 0;
  color: #696969;
}
.business .business03 .swiper-slide.swiper-slide-active > div > span {
  opacity: 1;
  margin-left: 0px;
  transition: opacity 1s ease, margin 1s ease;
  transition-delay: 0.2s;
}
.business .business03 .swiper-slide > div > strong {
  display: inline-block;
  font-size: 24px;
  line-height: 32px;
  color: #000;
  font-weight: 500;
  border-bottom: 1px solid #000;
  padding: 0;
  margin-left: 50px;
  opacity: 0;
  position: relative;
}
.business .business03 .swiper-slide.swiper-slide-active > div > strong {
  opacity: 1;
  margin-left: 0px;
  transition: opacity 1s ease, margin 1s ease;
  transition-delay: 0.6s;
}
.business .business03 .swiper-slide > div i {
  font-style: normal;
  margin-left: -20px;
  position: absolute;
}
.business .business03 .swiper-slide > div > p {
  font-size: 16px;
  word-break: keep-all;
  margin-top: 20px;
  margin-bottom: 0;
  padding: 0;
  opacity: 0;
  margin-left: 50px;
  width: 100%;
}
.business .business03 .swiper-slide.swiper-slide-active > div > p {
  opacity: 1;
  margin-left: 0px;
  color: #696969;
  transition: opacity 1s ease, margin 1s ease;
  transition-delay: 1s;
}
.business .business03 .swiper-button-next,
.business .business03 .swiper-button-prev {
  width: 14px;
  height: 22px;
  top: calc(50% - 132px);
  margin-top: 0px;
}

.business .business03 .swiper-button-next:after,
.business .business03 .swiper-button-prev:after {
  font-size: 22px;
  color: #000;
}
.business .business03 .swiper-button-next.swiper-button-disabled,
.business .business03 .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.business .business04 {
  margin-top: 60px;
}

.business .business04 .sec_tit {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 60px;
}

.business .business04 .sec_tit .text_color {
  color: #1e70da;
}

.business .business04 .item {
  padding: 40px;
}

.business .business04 .item1 {
  padding: 40px;
  border: 40px solid #f4f4f4;
  border-right: 0;
  border-bottom: 0;
}

.business .business04 .item2 {
  padding: 40px;
  border: 40px solid #f4f4f4;
  border-left: 0;
  border-bottom: 0;
}

.business .business04 .item2.last {
  border-bottom: 40px solid #f4f4f4;
}

.business .business04 h3,
.business .business04 p {
  margin: 0;
}

.business .business04 .row_1 {
  display: grid;
  grid-template-columns: 310px auto;
  gap: 40px;
}

.business .business04 .row_1 .con_wafer {
  width: 310px;
  opacity: 0;
  text-align: center;
  transition: all 1s ease;
  transition-delay: 0.4s;
}

.business .business04 .row_1.on .con_wafer {
  opacity: 1;
}

.business .business04 .row_1 .con_wafer1 {
  opacity: 0;
  margin-left: -100px;
  transition: all 0.8s ease;
  width: 100%;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.business .business04 .row_1.on .con_wafer1 {
  opacity: 1;
  margin-left: 0px;
}

.business .business04 .row_1.on .con_wafer1 img {
  width: 100%;
}

.business .business04 .info_wafer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.business .business04 .info_wafer .txt {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
}

.business .business04 .info_wafer .title {
  font-size: 27px;
  line-height: 32px;
  font-weight: 500;
  color: #000;
  margin: 10px 0 20px 0;
}

.business .business04 .row_2 {
  margin-top: 40px;
}

.business .business04 .row_2 .grid_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15%;
}

.business .business04 .row_2 .grid_chil {
  display: flex;
  justify-content: space-between;
}

.business .business04 .row_2 .txt_box {
  height: 85px;
  width: 100%;
  text-align: center;
}

.business .business04 .row_2 .txt_box p {
  text-align: end;
}

.business .business04 .row_2 .txt_box .num {
  font-size: 64px;
  line-height: 50px;
  font-weight: 700;
  color: #d5d5d5;
}

.business .business04 .row_2 .txt_box .unit {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #d5d5d5;
}

.business .business04 .row_2 .txt_box img {
  max-height: 100%;
  width: auto;
}

.business .business04 .row_2 .grid_chil .note {
  font-size: 11px;
  line-height: 16px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.business .business04 .row_2 .grid_chil .note.text_end {
  text-align: end;
}

@media (max-width: 991px) {
  .business .business01 {
    margin-top: 10px;
  }
  .business .business01 .items.right,
  .business .business01 .items.left {
    grid-template-columns: 1fr;
  }
  .business .business01 .items.right .words,
  .business .business01 .items.left .words {
    padding-left: 30px;
    text-align: start;
  }
  .business .business01 .items.right .words .tit:after,
  .business .business01 .items.left .words .tit:after {
    right: auto;
    left: -30px;
    width: 25px;
    height: 25px;
  }
  .business .business01 .items .words .tit {
    font-size: 24px;
    line-height: 30px;
  }
  .business .business01 .items .imgs {
    width: 100%;
    margin-bottom: 20px;
  }
  .business .business01 .items .imgs .img {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }
  .business .business01 .items .svgbox .svg {
    stroke-width: 6;
    r: calc(50% - 3px);
  }
  .business .business01 .items .words .txt p {
    font-size: 16px;
    line-height: 24px;
  }
  .business .business01 .items .images {
    order: -1;
  }
  .business .business02 {
    margin-top: 60px;
  }
  .business .business02 h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .business .business02 .grid_box {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .business .business02 .grid_box .img {
    max-width: 300px;
    margin: auto;
  }
  .business .business02 .grid_box .svgbox .svg,
  .business .business03 .swiper-slide .svgbox .svg {
    stroke-width: 6;
    r: calc(50% - 3px);
  }
  .business .business03 {
    margin-top: 60px;
    margin-bottom: 0;
  }
  .business .business03 h3 {
    margin-bottom: 30px;
  }
  .business .business03 .swiper-slide .banner_box img {
    aspect-ratio: 348/203;
  }
  .business .business03 .swiper-slide .banner_box::after {
    width: 0;
    height: 0;
  }
  .business .business03 .swiper-slide .banner_box {
    padding-right: 0;
  }
  .business .business03 .swiper-slide > .txt_box {
    padding: 20px 0 20px 20px;
    min-height: 200px;
  }
  .business .business03 .swiper-slide > div > strong {
    font-size: 16px;
  }
  .business .business03 .swiper-slide > div i {
    margin-left: -18px;
  }
  .business .business03 .swiper-slide > .txt_box > span {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 3px;
  }
  .business .business03 .swiper-slide {
    padding: 0;
  }
  .business .business04 {
    margin-top: 40px;
  }
  .business .business04 .sec_tit {
    margin-bottom: 40px;
  }
  .business .business04 .item {
    border: 0;
    padding: 0;
    margin-bottom: 40px;
  }
  .business .business04 .info_wafer p {
    text-align: center;
  }
  .business .business04 .info_wafer .title {
    order: -1;
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 24px;
  }
  .business .business04 .row_1 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .business .business04 .row_1 .con_wafer {
    margin: auto;
  }
  .business .business04 .row_1.on .info_wafer {
    order: -1;
  }
  .business .business04 .row_2 .txt_box .num {
    font-size: 50px;
    line-height: 40px;
  }
  .business .business04 .row_2 .grid_chil {
    flex-wrap: wrap;
    gap: 0;
  }
  .business .business04 .row_2 .grid_box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .business .business04 .row_2 .txt_box img {
    max-height: 60px;
  }
  .business .business04 .row_2 .txt_box {
    height: 80px;
  }
  .business .business04 .row_2 .content.mb_w_100 {
    width: 100%;
    margin-top: 30px;
  }
  .business .business04 .row_2 .grid_chil .note {
    font-size: 11px;
  }
  .business .business04 .info_wafer .txt {
    margin-bottom: 10px;
  }
  .business .business04 .item2.last {
    border-bottom: 0;
  }
}

/* -----------------------------------------------
Office
-------------------------------------------------- */
.office dl,
.office dt,
.office dd {
  margin: 0;
  padding: 0;
}

.office .corporate {
  text-align: center;
  margin-top: 60px;
}
.office .corporate > span {
  color: #000;
  font-weight: 700;
  padding-left: 25px;
  position: relative;
  opacity: 0;
}
.office .corporate > span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 15px;
  height: 4px;
  background: #003cbd;
}
.office .corporate > span:nth-of-type(2):after {
  background: #22960b;
}
.office .corporate > span:nth-of-type(3):after {
  background: #000;
}
.office .corporate > span ~ span {
  margin-left: 26px;
}
.office .map {
  width: 90%;
  aspect-ratio: 1230/596;
  margin: 60px auto 0;
  background: url("../images/office/bg_map.webp") no-repeat center top;
  background-size: cover;
  position: relative;
  opacity: 0;
}
.office .corporate.on > span:nth-of-type(1) {
  transition: opacity 0.3s ease 0.2s;
  opacity: 1;
}
.office .corporate.on > span:nth-of-type(2) {
  transition: opacity 0.3s ease 0.5s;
  opacity: 1;
}
.office .corporate.on > span:nth-of-type(3) {
  transition: opacity 0.3s ease 0.8s;
  opacity: 1;
}
.office .corporate.on .map {
  transition: opacity 0.6s ease 1.1s;
  opacity: 1;
}
.office .corporate.on .map > button:nth-of-type(1) {
  transition: opacity 0.4s ease 1.6s;
  opacity: 1;
}
.office .corporate.on .map > button:nth-of-type(4) {
  transition: opacity 0.4s ease 1.9s;
  opacity: 1;
}
.office .corporate.on .map > button:nth-of-type(6) {
  transition: opacity 0.4s ease 2.2s;
  opacity: 1;
}
.office .corporate.on .map > button:nth-of-type(5) {
  transition: opacity 0.4s ease 2.5s;
  opacity: 1;
}
.office .corporate.on .map > button:nth-of-type(2) {
  transition: opacity 0.4s ease 2.8s;
  opacity: 1;
}
.office .corporate.on .map > button:nth-of-type(3) {
  transition: opacity 0.4s ease 3.1s;
  opacity: 1;
}

.office .address {
  margin-bottom: 100px;
}
.office .address h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000;
  margin: 60px 0 0;
  border: 0;
  text-align: center;
}

.office .address h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  margin: 40px 0 0;
  border: 0;
}

.office .address .swiper {
  margin-top: 20px;
}

.office .address .swiper-slide img {
  width: 100%;
  height: auto;
}

.office .address .swiper-pagination-bullets {
  text-align: center;
}

.office .address .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 3px;
  background: #0733fc;
}

.office .address .swiper-pagination-bullet {
  width: 7px;
  height: 3px;
  border-radius: 3px;
  background: #a6a6a6;
  margin: 0 2px !important;
}

@media (max-width: 991px) {
  .office .corporate {
    margin-top: 40px;
  }
  .office .corporate > span {
    padding-left: 20px;
  }
  .office .corporate > span:after {
    left: 0;
    top: 8px;
    width: 12px;
    height: 3px;
  }
  .office .corporate > span ~ span {
    margin-left: 26px;
  }
  .office .map {
    width: 100%;
    aspect-ratio: 1128/567;
    height: auto;
    margin: 40px auto 0;
    position: relative;
  }
  .office .map > img {
    width: 100%;
  }
  .office .address h3 {
    font-size: 22px;
    margin-top: 40px;
  }
  .office .address h4 {
    margin-top: 20px;
  }
  .office .address .swiper {
    margin-top: 15px;
  }
}

/* -----------------------------------------------
Review
-------------------------------------------------- */

.review .menu_cmm {
  background-color: transparent;
}
.review .params_list {
  margin-top: 60px;
}
.review h3,
.review p {
  margin: 0;
}
.review .params_list .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  color: #222222;
  margin: 0;
  margin-bottom: 30px;
  text-align: center;
}
.review .params_list .video-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.review .params_list .video-list img {
  width: 100%;
  height: auto;
}
.review .invest_review {
  margin-top: 60px;
  margin-bottom: 100px;
}
.review .invest_review .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  color: #222222;
  margin-bottom: 30px;
}
.review .invest_review .filter_box select {
  width: 105px;
  height: 45px;
  margin-right: 10px;
  border-radius: 8px;
  border: 0;
  padding: 10px 25px 10px 10px;
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  appearance: none;
  background: #f5f5f5 url(../images/common/select_arr_2.png) no-repeat right
    10px center;
  cursor: pointer;
}
.review .invest_review .article_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.review .invest_review .article_list .avatar {
  background-image: url("../images/review/avatar.png");
  background-size: cover;
  background-position: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}
.review .invest_review .article_list .item {
  padding: 20px;
  border: 2px solid #d0e4ff;
  position: relative;
}
.review .invest_review .article_list .item .info {
  display: flex;
  align-items: center;
}
.review .invest_review .article_list .info .name {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #222222;
  margin-right: 10px;
}
.review .invest_review .article_list .info .cumulative {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}
.review .invest_review .article_list .info .time {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #72767c;
}
.review .invest_review .article_list .tab_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
.review .invest_review .article_list .tab_list > div {
  font-size: 16px;
  line-height: 16px;
  color: #222222;
  padding: 7px 23px;
  border-radius: 6px;
  background-color: #f5f5f5;
}
.review .invest_review .article_list .content {
  padding: 25px 0 50px 0;
}
.review .invest_review .article_list .content img {
  max-width: 200px;
  max-height: 250px;
  margin-bottom: 30px;
}
.review .invest_review .article_list .content p,
.review .invest_review .article_list .content span {
  font-size: 16px;
  line-height: 26px;
  color: #222222;
}
.review .invest_review .article_list .like_box,
.review .invest_review .article_list .like_bot_liked {
  padding: 6px 15px;
  border: 1px solid #8fa4fd;
  border-radius: 32px;
  display: flex;
  align-items: center;
  transition: 0.3s;
  position: absolute;
  bottom: 20px;
}
.review .invest_review .article_list .like_box .icon_like,
.review .invest_review .article_list .like_bot_liked .icon_like {
  background-image: url("../images/review/like_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
}
.review .invest_review .article_list .like_bot_liked {
  background: #3773f5;
}
.review .invest_review .article_list .like_bot_liked .icon_like {
  background-image: url("../images/common/like_icon_active.svg");
}
.review .invest_review .article_list .like_bot_liked .num,
.review .invest_review .article_list .like_bot_liked .txt {
  color: #ffffff;
}
.review .invest_review .article_list .like_box:hover,
.review .invest_review .article_list .like_bot_liked:hover {
  opacity: 0.7;
}
.review .invest_review .article_list .like_box span,
.review .invest_review .article_list .like_bot_liked span {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #3773f5;
}
.review .invest_review .article_list .like_box .txt,
.review .invest_review .article_list .like_bot_liked .txt {
  margin: 0 5px;
}

.review .invest_review .show_more {
  margin-top: 40px;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e70da;
  color: #ffffff;
  transition: 0.3s;
}
.review .invest_review .show_more:hover {
  opacity: 0.7;
}
.review .invest_review .show_more p {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-right: 10px;
}
.review .invest_review .show_more img {
  width: 9px;
  height: auto;
}

@media (max-width: 991px) {
  .review .params_list {
    margin-top: 40px;
  }
  .review .params_list .title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .review .params_list .video-list {
    grid-template-columns: 1fr 1fr;
  }
  .review .invest_review {
    margin-top: 40px;
    margin-bottom: 80px;
  }
  .review .invest_review .filter_box select {
    width: 100px;
    height: 40px;
    margin-right: 0px;
  }
  .review .invest_review .filter_box {
    display: flex;
    gap: 5px;
  }
  .review .invest_review .title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .review .invest_review .article_list .tab_list {
    gap: 10px;
  }
  .review .invest_review .article_list {
    grid-template-columns: 1fr;
  }
  .review .invest_review .article_list .item {
    padding: 15px;
  }
  .review .invest_review .article_list .tab_list > div {
    padding: 7px 12px;
  }
}

/* -----------------------------------------------
Review
-------------------------------------------------- */

.news .tbl_news {
  width: 100%;
}
.news .tbl_news thead tr {
  background-color: #fafafa;
}
.news #content {
  width: 100%;
  margin: 40px 0;
}
.news #content .inner {
  background-color: #fff;
}
.news #content .tbl_news thead tr th {
  padding: 12px 19px;
  font-size: 16px;
  line-height: 20px;
  border: 1px solid #d8d8d8;
  border-top: 1px solid #000;
}
.news #content .tbl_news thead tr th:first-child,
.news #content .tbl_news tr td:first-child {
  border-left: 0;
}
.news #content .tbl_news thead tr th:last-child,
.news #content .tbl_news tr td:last-child {
  border-right: 0;
}
.news #content .tbl_news tbody tr td {
  border: 1px solid #d8d8d8;
  border-top: 0;
  padding: 10px 19px;
  vertical-align: middle;
}
.news #content .tbl_news tbody tr td a {
  color: #1b1d24;
  display: block;
  font-size: 16px;
  line-height: 20px;
}
.news #content .tbl_news tbody tr td a:hover {
  text-decoration: underline;
}
.news #content .tbl_news .myassets {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-block;
}
.news #content .tbl_news .myassets.success {
  background-color: #ddf5d8;
  color: #254a28;
}
.news #content .tbl_news .myassets.danger {
  background-color: #fdeded;
  color: #d4290b;
}

.news .section-tab {
  margin-top: 60px;
}
.news .chart {
  margin-top: 20px;
  margin-bottom: 40px;
  display: none;
}
.news .chart.active {
  display: block;
}
.news .section-tab .tab {
  display: flex;
  justify-content: center;
  align-items: center;
}

.news .section-tab .tab button {
  text-align: center;
  padding: 4px 10px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #696969;
}

.news .section-tab .tab button.active {
  color: #000;
  font-weight: 700;
}

.news .section-tab .tab .separation {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url(../images/common/bg_sort.png) no-repeat center center;
}

.news .chart .chart-box {
  border: 1px solid #dee4e9;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  padding: 10px;
  margin-top: 40px;
}

.news .chart .filter {
  margin-bottom: 20px;
}

.news .chart .filter button {
  border: 1px solid #dee4e9;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  border-radius: 4px;
  padding: 7px 20px;
  margin-right: 10px;
}
.news .chart .filter button.active {
  border: 1px solid #3773f5;
  background-color: #3773f5;
  color: #fff;
}

.news .chart #financeChart {
  height: 300px !important;
}

.news .chart table {
  width: 100%;
  border-left: 1px solid #dee4e9;
  border-right: 1px solid #dee4e9;
  display: none;
}

.news .chart table.active {
  display: table;
}

.news .chart table tr th,
.news .chart table tr td {
  padding: 10px;
}
.news .chart table tr th {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #222;
  background-color: #eaf3fa;
}
.news .chart table tr th p {
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  color: #222;
  margin-top: 10px;
}
.news .chart table tr td {
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #222;
  border-bottom: 1px solid #dee4e9;
}

.news .chart table tr td .yoy {
  font-size: 12px;
  line-height: 18px;
  color: #72767c;
  margin-top: 5px;
}

.news .chart table tr td .color {
  color: #e50c0c;
}

.news .chart table tr td .recent-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news .chart table tr td .recent-box .tag {
  padding: 3px 6px;
  background-color: #3773f5;
  color: #fff;
  border-radius: 2px;
  font-size: 10px;
}
.news #loadMoreBtn {
  width: 100%;
  padding: 15px 0;
  border: 1px solid #dee4e9;
  border-top: 0;
  font-size: 14px;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news #loadMoreBtn .arrow {
  background: url(../images/common/select_arr.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 7px;
  height: 4px;
  margin-left: 10px;
}

.news .table-group {
  margin-top: 20px;
}

.news .section#content {
  display: none;
}

.news .section#content.active {
  display: block;
}
@media (max-width: 991px) {
  #financeTable th:nth-child(3),
  #financeTable th:nth-child(4),
  #financeTable th:nth-child(6),
  #financeTable th:nth-child(7),
  #financeTable td:nth-child(3),
  #financeTable td:nth-child(4),
  #financeTable td:nth-child(6),
  #financeTable td:nth-child(7),
  #ratioTable th:nth-child(3),
  #ratioTable th:nth-child(4),
  #ratioTable th:nth-child(5),
  #ratioTable th:nth-child(7),
  #ratioTable td:nth-child(3),
  #ratioTable td:nth-child(4),
  #ratioTable td:nth-child(5),
  #ratioTable td:nth-child(7) {
    display: none;
  }
  .news #content {
    padding: 0;
    margin: 30px 0;
  }
  .news #content .inner {
    margin-bottom: 20px;
  }
  .news #content .tbl_news thead tr th {
    padding: 10px 8px;
    font-size: 12px;
    line-height: 18px;
    text-wrap: nowrap;
  }
  .news #content .tbl_news tbody tr td {
    padding: 8px;
    font-size: 10px;
  }
  .news #content .tbl_news tbody tr td a {
    font-size: 10px;
    line-height: 18px;
  }
  .news #content .tbl_news .myassets {
    font-size: 10px;
    padding: 4px 6px;
    border-radius: 4px;
    line-height: 16px;
  }
  .news .section-tab {
    margin-top: 30px;
  }
  .news .chart table tr th {
    font-size: 14px;
  }
  .news .chart table tr td {
    font-size: 12px;
  }
  .news #loadMoreBtn {
    font-size: 12px;
  }
  .news .section-tab .tab .separation {
    display: none;
  }
  .news .section-tab .tab {
    gap: 10px;
  }
  .news .section-tab .tab button {
    border: 1px solid #d4d4d4;
    border-radius: 34px;
    padding: 6px 16px;
    box-sizing: border-box;
  }
  .news .section-tab .tab button.active {
    background-color: #efefef;
    border: 1px solid #efefef;
  }
  .news .chart .chart-box {
    margin-top: 30px;
  }
  .news .chart .filter button {
    padding: 5px 20px;
  }
}
.news-detail #detail .title {
  text-align: center;
  font-size: 32px;
  line-height: 32px;
  margin: 0;
  margin-bottom: 20px;
}
.news-detail #detail .inner {
  background-color: #f3f3f3;
  padding: 34px 31px;
  border-radius: 6px;
  text-align: start;
}
.news-detail #detail .inner p {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  color: #1b1d24;
  margin-bottom: 15px;
}
.news-detail #detail .inner p.brand_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.news-detail #detail .inner p.brand_img img {
  margin-left: 8px;
}
.news-detail #detail .inner .content p {
  line-height: 23px;
}
.news-detail #detail .inner .content .thumb {
  width: 250px;
  height: auto;
}
.news-detail #detail .inner .content .thumb img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
}
.news-detail #detail .inner .btn_link {
  text-align: left;
  width: auto;
  margin-top: 20px;
}
.news-detail #detail .inner .btn_link a {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: #3773f5;
  padding: 7px 20px;
  line-height: 24px;
}
.news-detail #detail {
  margin-top: 60px;
  margin-bottom: 60px;
}
.news .title-detail {
  font-size: 32px;
  line-height: 42px;
  color: #3773f5;
  font-weight: 600;
}

.news .section-top {
  margin-top: 40px;
}

.news #content .inner {
  background-color: transparent;
}
.news .tbl_news {
  background-color: #fff;
  overflow: hidden;
}

.news #content .tbl_news .thumb img {
  width: auto;
  height: 18px;
}

@media (max-width: 991px) {
  .news-detail #detail .inner {
    padding: 22px 14px;
  }
  .news-detail #detail .title {
    font-size: 24px;
    line-height: 32px;
  }
  .news-detail .inner p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .news-detail #detail .inner p.brand_img img {
    margin-left: 6px;
  }
  .news-detail #detail .inner .content {
    margin-bottom: 20px;
  }
  .news-detail #detail .inner .content p {
    line-height: 20px;
  }
  .news-detail #detail .inner .content .thumb {
    width: 230px;
    height: auto;
  }
  .news-detail #detail .inner .btn_link {
    text-align: center;
    width: 100%;
    margin: 0;
  }
  .news-detail #detail .inner .btn_link a {
    font-size: 12px;
    line-height: 12px;
    border-radius: 4px;
    padding: 11px;
    width: 100%;
    display: block;
  }
  .news-detail #detail {
    margin: 30px 0;
    padding: 0 20px;
  }
  .news #content .tbl_news .thumb img {
    width: 40px;
    height: 13px;
  }
}

/* -----------------------------------------------
User guide
-------------------------------------------------- */

.user_guide .section_1 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.user_guide .section_1 p,
.user_guide .section_1 h3 {
  margin: 0;
}

.user_guide .section_1 .section-title {
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
}

.user_guide .section_1 .grid-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 35px;
}

.user_guide .section_1 .row {
  width: 100%;
}

.user_guide .section_1 .row img {
  width: 100%;
  height: auto;
}

.user_guide .section_1 .name {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #1e70da;
  margin-top: 10px;
}

.user_guide .section_1 .note {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #222;
  margin-top: 5px;
}

@media (max-width: 991px) {
  .user_guide .section_1 {
    margin-top: 40px;
    margin-bottom: 60px;
  }

  .user_guide .section_1 .section-title {
    margin-bottom: 15px;
  }

  .user_guide .section_1 .grid-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .user_guide .section_1 .note {
    font-size: 18px;
  }
}

.user-guide-detail ul {
  padding: 0;
}

.user-guide-detail ul li {
  list-style-type: none;
}

.user-guide-detail h3,
.user-guide-detail p {
  margin: 0;
}

.user-guide-detail .section_1 {
  margin-top: 60px;
}

.user-guide-detail .section_1 .section-title {
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  color: #222;
  margin-bottom: 30px;
}

.user-guide-detail .guide_slider {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 0 -24px;
}
.user-guide-detail .guide_slider.slick-initialized {
  margin-bottom: 80px;
}
.user-guide-detail .guide_slider li.item {
  width: 25%;
  cursor: pointer;
}
.user-guide-detail .guide_slider li .thumb {
  padding: 0 0 24px 24px;
}

.user-guide-detail .guide_slider li .thumb a {
  display: inline-block;
  width: 100%;
}

.user-guide-detail .guide_slider .item img {
  width: 100%;
  aspect-ratio: 322/214;
  border-radius: 3px;
  object-fit: cover;
  object-position: center;
}
.user-guide-detail .guide_slider .item .img-box {
  position: relative;
}
.user-guide-detail .guide_slider .item .img-box .tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px;
  background-color: #d0d0da;
  border-radius: 3px;
}

.user-guide-detail .guide_slider .item .content {
  padding: 30px 0;
}

.user-guide-detail .guide_slider .item .content .title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}

.user-guide-detail .guide_slider .item .content .sub-title {
  font-size: 12px;
  line-height: 18px;
  color: #000;
  height: 90px;
}

.user-guide-detail .section_2 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.user-guide-detail .section_2 .section-title {
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  color: #222;
  margin-bottom: 30px;
}

.user-guide-detail .section_2 img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.user-guide-detail .section_2 .name {
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: #1e70da;
  margin-top: 10px;
}

.user-guide-detail .section_2 .note {
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  color: #222;
  margin-top: 5px;
}

@media (max-width: 991px) {
  .user-guide-detail .section_1 {
    margin-top: 40px;
  }

  .user-guide-detail .section_1 .section-title,
  .user-guide-detail .section_2 .section-title {
    margin-bottom: 15px;
  }

  .user-guide-detail .section_2 {
    margin-top: 40px;
    margin-bottom: 60px;
  }

  .user-guide-detail .section_2 .name {
    font-size: 14px;
  }

  .user-guide-detail .section_2 .note {
    font-size: 18px;
  }

  .user-guide-detail .guide_slider {
    margin: 0;
    flex-wrap: wrap;
    gap: 30px;
  }

  .user-guide-detail .guide_slider li.item {
    width: 100%;
  }

  .user-guide-detail .guide_slider li .thumb {
    padding: 0;
  }
}

/* -----------------------------------------------
Faq
-------------------------------------------------- */
.question .section {
  margin-top: 60px;
  margin-bottom: 80px;
}

.question .more-question .title-box {
  padding: 40px 40px 0 40px;
  display: flex;
  flex-direction: column;
  border: 1px solid #dee4e9;
  background: #f3f3f3;
}
.question .more-question .title-box .title {
  font-size: 30px;
  line-height: 44px;
  margin-bottom: 20px;
  color: #222;
}
.question .more-question .title-box a {
  padding: 15px 0;
  width: 160px;
  background: #1e70da;
  border-radius: 3px;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  text-align: center;
}
.question .more-question .list_qa {
  flex: 1;
  text-align: left;
  background: #fafafa;
  border-top: 1px solid #000;
}
.question .more-question .list_qa .qa {
  border-bottom: 1px solid #d8d8d8;
}
.question .more-question .list_qa .a {
  display: none;
  font-size: 16px;
  line-height: 24px;
  color: #222;
  text-align: left;
  padding: 15px 20px;
  background-color: #fff;
}
.question .more-question .list_qa .q {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 20px;
}
.question .more-question .list_qa .q.active{
  border-bottom: 1px solid #d8d8d8;
}

.question .more-question .list_qa .q svg {
  width: 16px;
  height: 16px;
  transition: 0.2s;
}
.question .more-question .list_qa .q.active svg {
  transform: rotate(180deg);
}

.question .more-question .list_qa .text_color {
  text-decoration: underline;
  color: #1e70da;
}
.question .more-question .list_qa .question_box{
  display: flex;
  align-items: center;
}
.question .more-question .list_qa .q_tag{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  background-color: #676767;
  color: #fff;
  border-radius: 50%;
  margin-right: 5px;
}
.question .more-question .list_qa .answer_box{
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.question .more-question .list_qa .a_tag{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  background-color: #3773f5;
  color: #fff;
  border-radius: 50%;
  margin-right: 5px;
}

.question .more-question .list_qa .a_content{
  color: #3773f5;
  width: calc(100% - 25px);
}

@media (max-width: 991px) {
  .question .more-question .list_qa .q {
    font-size: 14px;
  }

  .question .more-question .list_qa .a {
    font-size: 14px;
  }

  .question .secction {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

/* -----------------------------------------------
Customer Service
-------------------------------------------------- */
.customer .section.banner {
  max-width: 100%;
  background-image: url("../images/customer/banner_customer.png");
  background-size: cover;
  margin-bottom: 40px;
}
.customer .section {
  margin-top: 30px;
  padding-bottom: 90px;
}
.customer .section .inner {
  width: 100%;
}
.customer .section h2 {
  font-size: 28px;
  text-align: left;
  color: #222222;
  margin: 0;
}
.customer hgroup {
  margin-bottom: 40px;
}
.customer .section,
.customer hgroup {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.customer .btn_contact {
  color: #080808;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 21px;
  border: 1px solid #080808;
  cursor: pointer;
  margin: 0;
}
.customer .message_list .message_item {
  background: #f3f3f3;
  color: #222222;
  padding: 30px;
  position: relative;
  margin-bottom: 40px;
}
.customer .message_list .message_item:last-child {
  margin-bottom: 0;
}
.customer .message_tlt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  cursor: pointer;
}
.customer .message_tlt h3 {
  padding: 2px 8px;
  font-size: 16px;
  color: #fff;
  background: #3773f5;
  margin: 0;
}
.customer .message_tlt .btn_del {
  font-size: 14px;
}
.customer .message_tlt .btn_del:after {
  content: "";
  background-image: url("../images/customer/icon_del.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 17px;
  display: inline-block;
  vertical-align: text-top;
  margin-left: 6px;
}
.customer .message_content {
  text-align: left;
  margin-bottom: 28px;
  display: block;
  padding: 20px;
  border: 1px solid #d8d8d8;
  background-color: #fff;
}
.customer .message_content .tlt_reply {
  font-size: 18px;
  color: #222222;
  font-weight: 600;
  margin-bottom: 10px;
}
.customer .message_content p {
  font-size: 16px;
  color: #72767c;
  line-height: 20px;
  margin-bottom: 10px;
}
.customer .message_content .date {
  color: #495762;
  font-size: 16px;
}
.customer .timeline {
  display: flex;
  flex-direction: row;
  position: relative;
  margin-bottom: 30px;
}
.customer .timeline_dots_list {
  width: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.customer .timeline_dots {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.customer .timeline_dot_item {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #949da6;
  z-index: 2;
}
.customer .timeline_line {
  position: absolute;
  left: 50%;
  width: 2px;
  background: #949da6;
  z-index: 1;
}
.customer .timeline_content_list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.customer .timeline_content {
  position: relative;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.customer .myassets {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}
.customer .myassets.red {
  color: #c22020;
}
.customer .myassets.blue {
  color: #00ba44;
}
.customer .timeline_content.arrow_reply .timeline_content_txt {
  display: flex;
}
.customer .timeline_content.arrow_reply .timeline_content_txt:before {
  content: "";
  background-image: url("../images/customer/icon_reply.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 21px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.customer .timeline_content p {
  font-size: 16px;
  color: #72767c;
  line-height: 20px;
  margin-bottom: 10px;
}
.customer .timeline_content .date {
  font-size: 16px;
  color: #495762;
}
.customer .comment_reply {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #dee4e9;
  padding: 0 12px;
}
.customer .reply_textarea {
  position: relative;
  flex: 1;
  background: transparent;
  border: none;
  color: #72767c;
  font-size: 16px;
  outline: none;
  resize: none;
  min-height: 40px;
  max-height: 200px;
  line-height: 1.5;
  padding: 20px 60px 0 30px;
}
.customer .comment_reply:before {
  content: " ";
  background-image: url("../images/customer/icon_comment.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.customer .btn_send {
  position: absolute;
  top: 50%;
  right: 19px;
  transform: translateY(-50%);
}
/*-----------Contact Modal----------------*/
.contact_modal {
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 29, 36, 0.88);
  display: none;
  overflow: hidden;
  animation-name: fadeIn;
  animation-duration: 0.5s;
}
.contact_modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_modal .contact_modal_content {
  position: relative;
  background: #fff;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 40px 30px;
}
.contact_modal .btn_close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.contact_modal h3 {
  font-size: 24px;
  color: #1e70da;
  font-weight: 600;
  text-align: left;
  margin: 0;
  margin-bottom: 30px;
}
.contact_modal .item_content {
  margin-bottom: 35px;
}
.contact_modal .item_content label {
  display: block;
  font-size: 20px;
  color: #222222;
  margin-bottom: 10px;
}
.contact_modal .item_content select:not([size]) {
  background-image: url("../images/common/arrow_down.svg");
  background-position: right 15px center;
  background-size: 15px;
  background-repeat: no-repeat;
}
.contact_modal select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
}
.contact_modal .item_content textarea {
  min-height: 200px;
}
.contact_modal .item_content input,
.contact_modal .item_content select,
.contact_modal .item_content textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dee4e9;
  font-size: 16px;
  color: #72767c;
  font-weight: 500;
}
.contact_modal .btn_list {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.contact_modal .btn_list button {
  width: 200px;
  height: 50px;
  font-size: 14px;
  font-weight: 500;
}
.contact_modal .btn_cancel {
  border: 1px solid #adb8c1;
  color: #222222;
}
.contact_modal .btn_submit {
  background-color: #1e70da;
  color: #ffffff;
}

@media (max-width: 991px) {
  .customer .section.banner {
    background-image: url(../images/customer/banner-mobile.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 230px;
  }
  .customer .section {
    padding-bottom: 70px;
  }
  .customer .section h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .customer hgroup {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .customer .btn_contact {
    width: 100%;
    text-align: center;
  }
  .customer .message_list .message_item {
    padding: 20px;
    margin-bottom: 30px;
  }
  .customer .message_tlt {
    margin-bottom: 20px;
  }
  .customer .message_content {
    margin-bottom: 20px;
  }
  .customer .timeline {
    margin-bottom: 20px;
  }
  .customer .timeline_dots_list {
    width: 30px;
  }

  .customer .timeline_content_list {
    gap: 20px;
  }
  .customer .timeline_content {
    margin: 0;
  }
  .customer .timeline_content:last-child {
    margin-bottom: 0;
  }
  .customer .btn_send {
    position: absolute;
    top: 50%;
    right: 19px;
    transform: translateY(-50%);
    width: 40px;
  }
  .customer .message_content p {
    font-size: 14px;
  }

  .customer .reply_textarea {
    font-size: 14px;
    line-height: 1.6;
  }
  .customer .timeline_content.arrow_reply .timeline_content_txt:before {
    width: 36px;
    height: 10px;
    margin-right: 6px;
  }
  /*-----------Contact Modal----------------*/
  .contact_modal {
    padding-top: 5%;
  }
  .contact_modal .contact_modal_content {
    max-width: 100%;
    width: 90%;
    padding: 20px;
  }
  .contact_modal .btn_close {
    top: 20px;
    right: 20px;
    width: 20px;
  }
  .contact_modal h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .contact_modal .item_content {
    margin-bottom: 24px;
  }
  .contact_modal .item_content label {
    font-size: 16px;
  }
  .contact_modal select {
    font-size: 14px;
  }
  .contact_modal .item_content textarea {
    min-height: 150px;
  }
  .contact_modal .item_content input,
  .contact_modal .item_content select,
  .contact_modal .item_content textarea {
    font-size: 14px;
  }
  .contact_modal .btn_list {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
  }
  .contact_modal .btn_list button {
    width: 50%;
    height: 40px;
  }
}

/* -----------------------------------------------
Event
-------------------------------------------------- */
.events .menu_cmm,
.events_detail .menu_cmm {
  background-color: transparent;
}
.events .section.banner {
  max-width: 100%;
  background-image: url("../images/event/banner_events.png");
  background-size: cover;
  margin-bottom: 75px;
}
.events .section {
  margin-top: 40px;
  margin-bottom: 130px;
}
.events .section h3 {
  font-size: 28px;
  text-align: left;
  color: #000;
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
}
.events .section h3 span {
  color: #1e70da;
}
.events .btn_event {
  width: 100%;
  text-align: left;
  margin-bottom: 60px;
  text-align: center;
}
.events .btn_event span.tag {
  display: inline-block;
  /* cursor: pointer; */
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  font-weight: 600;
  color: #000;
  border: 1px solid #000;
  transition: all 0.2s;
}
.list_events ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 0;
}
.list_events li {
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  list-style-type: none;
}
.list_events li:hover {
  transform: translateY(-5px);
}
.list_events .thumb {
  width: 100%;
  height: auto;
  margin-bottom: 26px;
}
.list_events .thumb img {
  width: 100%;
  aspect-ratio: 382/363;
  object-fit: contain;
  object-position: center;
}
.list_events p {
  font-size: 20px;
  line-height: 28px;
  color: #222222;
  text-align: left;
  margin: 0;
  margin-bottom: 8px;
  font-weight: 600;
}
.list_events span {
  font-size: 20px;
  color: #72767c;
  text-align: left;
}

@media (max-width: 991px) {
  .events .section.banner {
    background-image: url(../images/event/banner-mobile.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 230px;
    margin-bottom: 40px;
  }
  .events .section h3 {
    font-size: 24px;
    margin-bottom: 22px;
  }
  .events .btn_event {
    margin-bottom: 40px;
  }
  .events .btn_event span.tag {
    padding: 10px 20px;
    font-size: 14px;
  }
  .list_events ul {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .list_events li {
    width: 100%;
  }
  .list_events li:last-child {
    margin-bottom: 0;
  }
  .list_events .thumb {
    width: 100%;
    margin-bottom: 15px;
  }
  .list_events p {
    font-size: 18px;
    line-height: 26px;
  }
  .list_events span {
    font-size: 16px;
  }
}

/* -----------------------------------------------
Event Detail
-------------------------------------------------- */
.events_detail .section {
  color: #72767c;
  padding-top: 40px;
  padding-bottom: 100px;
}
.events_detail .thumb {
  margin-bottom: 30px;
}
.events_detail hgroup {
  text-align: center;
  margin-bottom: 40px;
}
.events_detail .main_content {
  margin-bottom: 30px;
}
.events_detail .main_content ul {
  padding-left: 18px;
  list-style: disc;
}
.events_detail ul li {
  line-height: 1.7;
}
.events_detail h1 {
  font-size: 48px;
  font-weight: bold;
  color: #1e70da;
  margin: 0;
}
.events_detail hgroup p {
  font-size: 32px;
  color: #222222;
  font-weight: 600;
  margin: 0;
  margin-bottom: 18px;
}
.events_detail hgroup span {
  font-size: 16px;
  font-weight: 400;
  color: #72767c;
}
.events_detail h2 {
  font-size: 24px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 20px;
}
.events_detail p {
  font-size: 16px;
  line-height: 28px;
  color: #72767c;
  font-weight: 400;
  margin-bottom: 20px;
}
.events_detail p.date {
  font-weight: 700;
}

.events_detail .list_steps {
  text-align: left;
}
.events_detail .list_steps ul {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  padding: 0;
}
.events_detail .list_steps li {
  position: relative;
  width: calc(50% - 35px);
  padding: 15px 24px;
  border-radius: 8px;
  background: #f5f5f5;
  list-style-type: none;
}
.events_detail .list_steps li:first-child:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 32px;
  height: 36px;
  background-image: url("../images/event/icon_step_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.events_detail .step {
  font-size: 24px;
  color: #1e70da;
  font-weight: 700;
  margin-bottom: 8px;
}
.events_detail .list_steps,
.events_detail .event_note {
  margin-bottom: 50px;
}
.events_detail .event_note {
  padding: 26px 30px;
  border-radius: 8px;
  background: #f5f5f5;
}
.events_detail .event_note ul {
  list-style: disc;
  padding-left: 18px;
}
.events_detail .list_events p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222222;
}
.events_detail .list_events .thumb {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .events_detail .hamburger .line {
    background-color: #555;
  }
  .events_detail .section {
    padding-top: 20px;
  }
  .events_detail .thumb {
    margin-bottom: 30px;
  }
  .events_detail hgroup {
    margin-bottom: 30px;
  }
  .events_detail hgroup p {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .events_detail hgroup span {
    line-height: 26px;
  }
  .events_detail h1 {
    font-size: 32px;
  }
  .events_detail h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .events_detail .section_detail_item {
    margin-bottom: 30px;
  }
  .events_detail .list_steps {
    text-align: left;
  }
  .events_detail .list_steps ul {
    flex-direction: column;
    gap: 0;
  }
  .events_detail .list_steps li {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 60px;
  }
  .events_detail .list_steps li:last-child {
    margin-bottom: 0;
  }
  .events_detail .list_steps li:first-child:before {
    content: "";
    position: absolute;
    bottom: -36%;
    left: 46%;
    top: initial;
    transform: rotate(90deg);
  }
  .events_detail .step {
    font-size: 20px;
  }
  .events_detail .list_steps,
  .events_detail .event_note {
    margin-bottom: 30px;
  }
  .events_detail .event_note {
    padding: 20px;
  }
  .events_detail .list_events .thumb {
    margin-bottom: 10px;
  }
}

/* -----------------------------------------------
MyPage
-------------------------------------------------- */

.mypage .menu_cmm {
  background-color: transparent;
}
.mypage .section {
  padding-top: 60px;
  padding-bottom: 140px;
}
.mypage .section h2,
.mypage .section p,
.mypage .section dt,
.mypage .section dd,
.mypage .section dl {
  margin: 0;
  padding: 0;
}
.mypage .section h2.title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}
.mypage .mypage_info {
  display: flex;
  margin-bottom: 60px;
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  background: url(../images/common/info_bg.png) no-repeat center center;
  background-size: cover;
}
.mypage .mypage_info h3.name {
  font-size: 36px;
  line-height: 42px;
  color: #003cbd;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 40px;
  border-right: 1px solid #93b6ff;
  margin-bottom: 0px;
  margin-top: 0;
}
.mypage .mypage_info .avatar {
  width: 60px;
  height: 60px;
  display: inline-block;
  background: url(../images/review/avatar.png) no-repeat center center;
}
.mypage .info_item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 40px;
}
.mypage .info_item p {
  min-width: 300px;
  font-size: 16px;
  color: #000;
}
.mypage .info_item p .txt_color {
  color: #d70000;
}
.mypage .info_item dl {
  text-align: left;
  margin-bottom: 32px;
}
.mypage .info_item dl:last-child {
  margin-bottom: 0;
}
.mypage .info_item dt {
  font-size: 20px;
  color: #000000;
  margin-bottom: 20px;
}
.mypage .info_item dd {
  padding: 13px 10px;
  background-color: #fafafa;
  color: #adb8c1;
  border: 1px solid #dee4e9;
}
.mypage .info_item dd.txt_color {
  color: #eb5151;
}
.mypage .info_item .dl_list {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}
.mypage .info_item .dl_list dl {
  width: 50%;
  text-align: left;
  margin-bottom: 0;
}
.mypage .section h2 {
  font-size: 28px;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
}
.mypage .box_change_pass_form {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}
.mypage .form_item label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
}
.mypage .form_item input {
  width: 100%;
  padding: 10px;
  color: #222222;
  border: 1px solid #dee4e9;
}
.mypage .form_item {
  width: 33.3%;
}
.mypage .list_form_item {
  width: 66.6%;
  display: flex;
  gap: 20px;
}
.mypage .list_form_item .form_item {
  width: 50%;
}
.mypage .btn_submit_warp {
  text-align: right;
}
.mypage .btn_submit {
  background-color: #3773f5;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  padding: 15px 35px;
  transition: all 0.2s;
}
.mypage .btn_submit:hover {
  opacity: 0.7;
}

@media (max-width: 991px) {
  .mypage .section {
    padding-bottom: 100px;
    padding-top: 40px;
  }
  .mypage .section h2.title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .mypage .mypage_info {
    flex-direction: column;
    margin-bottom: 30px;
    padding: 20px;
    background: url(../images/common/info_bg_mb.png) no-repeat center center;
    background-size: cover;
  }
  .mypage .mypage_info h3.name {
    font-size: 28px;
    line-height: 36px;
    padding-right: 0;
    padding-bottom: 10px;
    border-right: 0;
    border-bottom: 1px solid #93b6ff;
  }
  .mypage .mypage_info .avatar {
    width: 40px;
    height: 40px;
    background-size: cover;
  }
  .mypage .mypage_info .info_item {
    grid-template-columns: 1fr;
    gap: 15px;
    align-items: flex-start;
    padding: 20px 0 0;
  }
  .mypage .info_item dl {
    margin-bottom: 24px;
  }
  .mypage .info_item dl:last-child {
    margin-bottom: 24px;
  }
  .mypage .info_item dt {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .mypage .info_item .dl_list {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
  .mypage .info_item .dl_list dl {
    width: 100%;
    margin-bottom: 24px;
  }
  .mypage .section h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .mypage .box_change_pass_form {
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
  }
  .mypage .form_item {
    width: 100%;
    margin-bottom: 14px;
  }
  .mypage .list_form_item .form_item {
    width: 100%;
  }
  .mypage .list_form_item {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
  .mypage .btn_submit_warp {
    text-align: center;
  }
  .mypage .btn_submit {
    width: 100%;
    font-size: 18px;
    padding: 12px 20px;
  }
}

/* -----------------------------------------------
Products
-------------------------------------------------- */

.products .section {
  margin-top: 20px;
}

.products .section .product_item {
  padding: 40px 0;
  border-bottom: 1px solid #d8d8d8;
}
.products .section .product_item:last-child {
  border-bottom: 0;
}

.products .section .product_item .product-box {
  display: grid;
  grid-template-columns: 300px auto;
  gap: 40px;
}

.products .section .product_item .thumb {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.products .section .product_item .thumb img {
  width: 80%;
  height: auto;
  margin-bottom: 20px;
}

.products .section .product_item .info {
  width: 100%;
}

.products .section .product_item .info p,
.products .section .product_item .info h3 {
  margin: 0;
}

.products .section .product_item .info .con_txt h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 25px;
  color: #000;
}

.products .section .product_item .info .con_txt p {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 25px;
  color: #000;
}

.products .section .product_item .info .con_txt strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  color: #000;
}

.products .section .product_item .info .grid_box {
  display: grid;
  grid-template-columns: 3fr 3fr 4fr;
  margin-top: 10px;
  gap: 30px;
}

.products .section .product_item .info .row {
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
}

.products .section .product_item .info .row .title {
  padding: 13px 10px;
  background-color: #fafafa;
  border-right: 1px solid #d8d8d8;
  width: 105px;
  display: flex;
  align-items: center;
}

.products .section .product_item .info .row .title span {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #696969;
}

.products .section .product_item .info .row .title span.tit_icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url("../images/common/logo_small_icon.svg") no-repeat center
    center;
  background-size: cover;
  margin-right: 5px;
}

.products .section .product_item .info .row .content {
  width: calc(100% - 105px);
  display: flex;
  align-items: center;
}

.products .section .product_item .info .row .content p {
  font-size: 14px;
  line-height: 20px;
  color: #000;
  padding: 5px 10px;
}

.products .section .product_item .info .row.row_uses {
  height: 94px;
}

.products .section .product_item .info .row.row_uses .title,
.products .section .product_item .info .row.row_uses .content {
  height: 100%;
}

.products .section .product_item .info .row.row-voucher {
  border-bottom: 0;
}

.products .section .product_item .info .investment {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #d8d8d8;
  background-color: #fafafa;
  padding: 20px;
}

.products .section .product_item .info .investment .investment_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products .section .product_item .info .investment .txt {
  font-size: 16px;
  line-height: 16px;
  color: #000;
}

.products .section .product_item .info .investment .input-and-submit-box {
  width: calc(100% - 100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.products .section .product_item .info .investment .input-box {
  display: flex;
}

.products .section .product_item .info .investment .input-box button {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #adb8c1;
  font-size: 20px;
  background-color: #fff;
}
.products .section .product_item .info .investment .input-box input {
  border: 0;
  border-top: 1px solid #adb8c1;
  border-bottom: 1px solid #adb8c1;
  padding: 2px 5px;
  width: calc(100% - 70px);
  height: 35px;
  text-align: center;
  font-size: 14px;
  box-sizing: border-box;
  -moz-appearance: textfield;
}
.products
  .section
  .product_item
  input[type="number"]::-webkit-inner-spin-button,
.products
  .section
  .product_item
  input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.products .section .product_item .info .investment .btn-submit {
  width: 100%;
  text-align: center;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e70da;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
}

.products .section .product_item .make-virtual-btn {
  width: 150px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff6a00;
  margin-top: 20px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
  margin-left: auto;
}

.products .section .product_item .old-price {
  display: inline-block;
  position: relative;
}

.products .section .product_item .old-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c50b0b;
  transform: translateY(-50%);
}

.products .section .product_item .input-and-submit-box.disabled .input-box {
  position: relative;
}

.products
  .section
  .product_item
  .input-and-submit-box.disabled
  .input-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
  cursor: not-allowed;
}

.products
  .section
  .product_item
  .input-and-submit-box.disabled
  .input-box
  input,
.products
  .section
  .product_item
  .input-and-submit-box.disabled
  .input-box
  button {
  pointer-events: none;
  background-color: #f5f5f5;
  color: #adb8c1;
  border-color: #adb8c1;
}

.products .section .product_item .input-voucher-checkbox-box {
  width: 100%;
}

.products .section .product_item .form-check label {
  font-size: 15px;
  line-height: 15px;
  color: #000;
}

.products
  .section
  .product_item
  .form-check
  input[type="checkbox"]#checkbox1:checked
  + span {
  border-color: red;
  background-color: red;
}

.products .section .product_item .form-check-container {
  display: block;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.products .section .product_item .form-check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.products
  .section
  .product_item
  .form-check-container
  input:checked
  ~ .checkmark {
  background-color: #1e70da;
}

.products
  .section
  .product_item
  .form-check-container
  input:checked
  ~ .checkmark:after {
  display: block;
}

.products .section .product_item .form-check-container .checkmark:after {
  left: 4px;
  top: 2px;
  width: 3px;
  height: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.productThumbSwiper {
  width: 100%;
  height: auto;
}

.productThumbSwiper img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.productThumbSwiper .swiper-slide {
  text-align: center;
}

@media (max-width: 991px) {
  .products .section .product_item .thumb img {
    width: 80%;
  }
  .products .section .product_item .thumb {
    justify-content: center;
  }
  .products .section .product_item .product-box {
    grid-template-columns: 1fr;
  }
  .products .section .product_item .info .grid_box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .products .section .product_item .info .investment .investment_row,
  .products .section .product_item .info .investment .row-voucher{
    margin-bottom: 20px;
  }
  .products .section .product_item .info .investment {
    padding-bottom: 0;
  }
  .products .section .product_item .info .con_txt p {
    line-height: 24px;
  }
  .products .section .product_item .info .investment .input-and-submit-box {
    width: calc(100% - 80px);
    grid-template-columns: 3fr 2fr;
  }
  .products .section .product_item .make-virtual-btn {
    width: 100%;
  }
  .productThumbSwiper {
    width: 300px;
  }
}
/* -----------------------------------------------
My Asset
-------------------------------------------------- */
.myassets .menu_cmm {
  background-color: transparent;
}
.myassets .section {
  padding-top: 30px;
  padding-bottom: 140px;
}
.myassets .main h2,
.myassets .main h3,
.myassets .main p,
.myassets .main dl,
.myassets .main dd {
  margin: 0;
}

.myassets .main h2 {
  font-size: 28px;
  color: #222;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.myassets .my_asset {
  border: 1px solid #d8d8d8;
  display: flex;
  flex-wrap: wrap;
}
.myassets .main h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 5px 0 5px 13px;
  background: #3773f5;
  border-left: 7px solid #8cdb83;
  width: 100%;
}
.myassets .my_asset {
  margin-bottom: 15px;
  padding-bottom: 5px;
}
.myassets .main dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 0 20px;
  width: 50%;
}
.myassets dl {
  font-size: 16px;
  text-align: left;
}
.myassets dl dt {
  color: #696969;
  font-weight: 700;
}
.myassets dl dd {
  text-align: right;
  color: #000;
}
.myassets dl dd.txt_color {
  font-weight: 700;
  color: #d70000;
}
.myassets .txt_note {
  margin-bottom: 40px;
}
.myassets .txt_note p {
  font-size: 16px;
  text-align: left;
  color: #72767c;
  line-height: 27px;
}
.myassets .chart_content {
  display: flex;
  gap: 26px;
  margin-bottom: 40px;
}
.myassets .chart_box {
  background-color: #f3f3f3;
  border-radius: 8px;
  width: 50%;
  padding: 34px;
}
.myassets .chart_box h3 {
  font-size: 20px;
  color: #222222;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.myassets #my_chart {
  margin-bottom: 20px;
}
.myassets .chart_box .txt_price {
  font-size: 32px;
  text-align: center;
  color: #1e70da;
  font-weight: 500;
}
.myassets .chart_box.chart_box_right {
  padding-bottom: 100px;
  opacity: 0.74;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.myassets .chart_box.chart_box_right h3 {
  margin-bottom: 0;
}
.myassets .chart_box.chart_box_right p {
  font-size: 16px;
  color: #222222;
  text-align: center;
  line-height: 21px;
}
.myassets .grid_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.myassets .asset_box {
  border: 1px solid #d8d8d8;
}
.myassets .asset_box:last-child {
  margin-bottom: 0;
}
.myassets .asset_box h2 {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 6px 0 6px 20px;
  background: #eaeaea;
  width: 100%;
  text-align: start;
}
.myassets .asset_box {
  position: relative;
}
.myassets .asset_box dl {
  width: 100%;
}
.myassets .demo-tag {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #fff;
  padding: 3px 10px;
  background-color: #003cbd;
  position: absolute;
  top: 6px;
  right: 20px;
}
@media (max-width: 991px) {
  .myassets .section {
    padding-bottom: 100px;
  }
  .myassets .main h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .myassets .main h3 {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .myassets .my_asset {
    margin-bottom: 20px;
  }
  .myassets .grid_box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .myassets dl {
    font-size: 16px;
    width: 100%;
  }
  .myassets .txt_note {
    margin-bottom: 20px;
  }
  .myassets .txt_note p {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .myassets .txt_note p:last-child {
    margin-bottom: 0;
  }
  .myassets .chart_content {
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
  }
  .myassets .chart_box {
    width: 100%;
    padding: 20px 10px;
    margin-bottom: 20px;
  }
  .myassets .chart_box h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .myassets #my_chart {
    margin-bottom: 18px;
  }
  .myassets .chart_box .txt_price {
    font-size: 16px;
  }
  .myassets .chart_box.chart_box_right {
    gap: 24px;
    padding: 20px;
    margin-bottom: 0;
  }
  .myassets .chart_box.chart_box_right .txt_price {
    font-size: 30px;
  }
  .myassets .asset_box:last-child {
    margin-bottom: 0;
  }
  .myassets .asset_box h2 {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .myassets .demo-tag {
    top: 6px;
  }
}

/* -----------------------------------------------
Deposit
-------------------------------------------------- */

.deposit .menu_cmm {
  background-color: transparent;
}

.deposit .main ul li {
  list-style-type: none;
}

.deposit .main h2,
.deposit .main h3,
.deposit .main p,
.deposit .main ul {
  margin: 0;
  padding: 0;
}

.deposit .main h2 {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
}

.deposit .section {
  margin-top: 30px;
}

.deposit .tab_nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.deposit .tab_nav li {
  width: 140px;
  font-size: 16px;
  color: #696969;
  text-align: center;
  cursor: pointer;
}
.deposit .tab_nav li.separation {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url(../images/common/bg_sort.png) no-repeat center center;
}
.deposit .tab_nav li.active {
  color: #000;
  font-weight: 700;
}
.deposit .tab_content {
  color: #222222;
}
.deposit .tab_content h3 {
  font-size: 20px;
  line-height: 28px;
  color: #222;
  font-weight: 700;
  margin-bottom: 20px;
}

.deposit .tab_content h3.name {
  font-size: 36px;
  line-height: 42px;
  color: #003cbd;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 40px;
  border-right: 1px solid #93b6ff;
  margin-bottom: 0px;
}

.deposit .account_box {
  padding: 30px;
  background: #f3f3f3;
  margin-bottom: 40px;
  display: flex;
  background: url(../images/common/info_bg.png) no-repeat center center;
  background-size: cover;
}
.deposit .account_box .avatar {
  width: 60px;
  height: 60px;
  display: inline-block;
  background: url(../images/review/avatar.png) no-repeat center center;
}
.deposit .account_box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 40px;
}
.deposit .account_box li {
  min-width: 180px;
  flex: 1 0 0%;
}
.deposit .account_box p {
  font-size: 16px;
  font-weight: 700;
  color: #222222;
}
.deposit .account_box span {
  font-weight: 400;
}
.deposit .application_box {
}
.deposit .reset_point {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}
.deposit .form_point {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.deposit .form_point input {
  width: 100%;
  height: 40px;
  border: 1px solid #dee4e9;
  border-right: 0;
  padding: 0 15px;
  font-size: 12px;
  color: #222222;
  background-color: transparent;
}
.deposit .form_point span {
  width: 60px;
  height: 40px;
  background: #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dee4e9;
  border-left: 0;
}
.deposit .point_box {
  flex: 0 0 auto;
  width: 40%;
}
.deposit .list_point ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}
.deposit .list_point li {
  min-width: 88px;
}
.deposit .list_point button {
  width: 100%;
  height: 40px;
  background: #d8d8d8;
  font-size: 12px;
  color: #222222;
  font-weight: 700;
  cursor: pointer;
}
.deposit .deposit-actions {
  display: grid;
  grid-template-columns: 4fr 3fr;
  gap: 5px;
  align-items: end;
}
.deposit .btn_request,
.deposit .btn_reset {
  width: auto;
  background: #003cbd;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  height: 90px;
}
.deposit .btn_request {
  align-content: center;
  background: #3773f5;
  order: 1;
}
.deposit #withdraw_form .btn_reset {
  flex: 0 0 auto;
}

.deposit .table {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  border-top: 1px solid #222;
}
.table thead {
  background-color: #eaf3fa;
  vertical-align: bottom;
}
.deposit .table > :not(caption) > * > *,
.deposit .table > :not(caption) > * {
  padding: 15px;
  border: 1px solid #dee4e9;
  background: #ffff;
}
.deposit .table td,
.deposit .table th,
.deposit .table thead {
  vertical-align: middle;
  text-align: center;
}
.deposit .table .txt_bg {
  background: #fafafa;
}
.deposit .txt_note {
  margin-bottom: 40px;
}
.deposit .txt_note li {
  font-size: 16px;
  line-height: 28px;
  color: #222222;
}
.deposit .tab_content_item {
  transition: all 0.1s linear;
  display: none;
}
.deposit .tab_content_item.active {
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  display: block;
}

@media (max-width: 991px) {
  .deposit .tab_nav ul {
    margin-bottom: 0px;
    padding-bottom: 20px;
  }
  .deposit .tab_nav li {
    width: 100%;
    text-align: center;
    padding: 8px 20px;
  }
  .deposit h2 {
    font-size: 24px;
  }
  .deposit .tab_content h3 {
    margin-bottom: 14px;
    font-size: 20px;
  }
  .deposit .tab_content h3.name {
    font-size: 28px;
    line-height: 36px;
    padding-right: 0;
    padding-bottom: 10px;
    border-right: 0;
    border-bottom: 1px solid #93b6ff;
  }
  .deposit .account_box {
    margin-bottom: 30px;
    padding: 20px;
    flex-direction: column;
    background-size: cover;
    background: url(../images/common/info_bg_mb.png) no-repeat center center;
    background-size: cover;
  }
  .deposit .account_box .avatar {
    width: 40px;
    height: 40px;
    background-size: cover;
  }
  .deposit .account_box ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 0;
  }
  .deposit .account_box li {
    min-width: auto;
  }
  .deposit .account_box li:last-child {
    margin-bottom: 0;
  }
  .deposit .reset_point {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .deposit .form_point {
    margin-bottom: 12px;
  }
  .deposit .point_box {
    width: 100%;
  }
  .deposit .table {
    margin-bottom: 30px;
  }
  .deposit .list_point ul {
    gap: 8px 0;
    justify-content: flex-start;
    margin: 0 -4px;
  }
  .deposit .list_point li {
    min-width: auto;
    width: 33.33%;
    padding: 0 4px;
  }
  .deposit .btn_reset {
    padding: 10.5px 10px;
  }

  .deposit .table {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .table thead {
    background-color: #f8f5f2;
    vertical-align: bottom;
  }
  .deposit .table > :not(caption) > * > *,
  .deposit .table > :not(caption) > * {
    padding: 6px;
  }
  .deposit .table td,
  .deposit .table th,
  .deposit .table thead {
    font-size: 13px;
  }
  .deposit .txt_note {
    margin-bottom: 30px;
  }
  .deposit .txt_note li {
    font-size: 14px;
    line-height: 26px;
  }
  .deposit .deposit-actions {
    grid-template-columns: 1fr;
  }
  .deposit .btn_request {
    display: flex;
    justify-content: center;
    padding: 10.5px 10px;
  }
  .deposit .btn_request,
  .deposit .btn_reset {
    height: 40px;
  }
  .deposit .tab_nav li.separation {
    display: none;
  }
  .deposit .tab_nav li {
    border: 1px solid #d4d4d4;
    border-radius: 34px;
    width: 50%;
    box-sizing: border-box;
  }
  .deposit .tab_nav li.active {
    background-color: #efefef;
    border: 1px solid #efefef;
  }
}

/* -----------------------------------------------
Messages
-------------------------------------------------- */
.messages .menu_cmm {
  background-color: transparent;
}
.messages .message_tlt > p {
  margin: 0;
}
.messages .title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin: 0;
  margin-bottom: 30px;
}
.messages .section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 100px;
  margin-top: 30px;
}
.messages .message_list {
  border-top: 1px solid #222;
}
.messages .message_list > ul {
  padding: 0;
  margin: 0;
}
.messages .message_list > ul > li {
  list-style-type: none;
}
.messages .message_list > ul > li .message_tlt {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 40px 15px 20px;
  font-size: 16px;
  line-height: 18px;
  border: 1px solid #d8dee4;
  border-right: 0px;
  border-left: 0px;
  cursor: pointer;
  background-color: #fafafa;
}
.messages .message_list li .message_tlt:after {
  content: "";
  background-image: url(../images/messages/arrow.svg);
  background-position: center center;
  background-size: auto;
  background-repeat: no-repeat;
  width: 14px;
  height: 8px;
  position: absolute;
  top: 24px;
  right: 20px;
  transition: 0.3s ease;
}
.messages .message_list li .message_tlt.active:after {
  transform: rotate(180deg);
}
.messages .message_tlt_cats {
  font-weight: bold;
  color: #3773f5;
  text-wrap: nowrap;
}
.messages .message_tlt .message_tlt_new {
  font-size: 14px;
  font-weight: 500;
  padding: 2px 8px;
  background-color: #4285f4;
  color: #ffffff;
  display: inline-block;
  margin-left: 8px;
}
.messages .message_tlt_date,
.messages .message_tlt_txt {
  color: #222222;
}
.messages .message_tlt .message_tlt_date {
  margin-left: 32px;
  text-wrap: nowrap;
}
.messages .message_tlt .message_tlt_txt {
  margin-left: 86px;
}
.messages .message_content {
  display: none;
  padding: 15px 18px;
  background-color: #fff;
  border-bottom: 1px solid #d8dee4;
  text-align: left;
}
.messages .message_content_date {
  font-size: 12px;
  color: #72767c;
  line-height: 18px;
  margin-bottom: 10px;
  display: block;
}
.messages .message_content_txt {
  font-size: 16px;
  line-height: 28px;
  color: #222222;
}
.messages .message_list .message_content table,
.messages .message_list .message_content th,
.messages .message_list .message_content td {
  border: 1px solid #333;
  border-collapse: collapse;
}
@media (max-width: 991px) {
  .messages .section {
    max-width: 100%;
  }
  .messages .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .messages .message_list {
    margin-bottom: 20px;
  }
  .messages .message_list > ul > li .message_tlt {
    flex-wrap: wrap;
    align-items: start;
    padding: 14px 20px;
  }
  .messages .message_list li .message_tlt:after {
    top: 19px;
    right: 20px;
  }
  .messages .message_tlt .message_tlt_cats {
    margin-bottom: 10px;
  }
  .messages .message_content {
    flex-direction: column;
    align-items: start;
  }
  .messages .message_tlt .message_tlt_date {
    font-size: 14px;
    margin-bottom: 6px;
    color: #72767c;
    margin-left: 20px;
  }
  .messages .message_tlt .message_tlt_txt {
    margin-left: 0;
  }
  .messages .message_content {
    padding: 15px 20px;
  }
}

/* -----------------------------------------------
Si wafer
-------------------------------------------------- */

.siwafer .si_video {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.siwafer .si_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.siwafer .si_video .txt_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.siwafer .si_video .wrapper {
  width: 100%;
}

.siwafer .si_video .txt_box p {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #fff;
  opacity: 0;
  margin-left: 20px;
  transition: all ease 0.8s;
}

.siwafer .si_video.on .txt_box p {
  opacity: 1;
  margin-left: 0px;
  transition-delay: 1s;
}

.siwafer .si03 {
  width: 100vw;
  height: 100vh;
  background-image: url(../images/siwafer/si03_bg.webp);
  background-size: cover;
  background-position: center;
}

.siwafer .si03 .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100vh;
}

.siwafer .si03 .list_detail {
  width: 100%;
  height: fit-content;
  margin: auto;
}

.siwafer .si03 .list_detail .item {
  cursor: pointer;
  max-width: 520px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
}

.siwafer .si03 .list_detail .item.active {
  background: radial-gradient(
    94.31% 94.31% at 50% 43.07%,
    #ffffff 34.13%,
    #ccdcff 100%
  );
}

.siwafer .si03 .list_detail .txt {
  display: none;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  text-align: left;
  padding: 0 15px 15px;
}
.siwafer .si03 .list_detail .tit {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  padding: 15px;
}

.siwafer .si03 .list_img {
  display: flex;
  justify-content: end;
  align-items: center;
}

.siwafer .si03 .list_img img {
  display: none;
  width: 100%;
  height: auto;
  margin-top: 10%;
}

.siwafer .si03 .list_img img.on {
  display: block;
}

.siwafer .si04 {
  width: 100vw;
  background-image: url("../images/siwafer/wafer_bg_2.webp");
  background-size: cover;
  background-position: center;
}

.siwafer .si04 .grid_box {
  display: flex;
  align-items: center;
  gap: 40px;
  height: calc(100vh - 60px);
}

.siwafer .si04 .swiper {
  width: 55%;
}

.siwafer .si04 .swiper-slide {
  margin: auto;
  text-align: center;
}

.siwafer .si04 .swiper-slide img {
  max-height: 450px;
  margin-bottom: 10%;
}

.siwafer .si04 .detail {
  padding: 15px;
  border-radius: 10px;
  background-color: #fff;
  width: 45%;
}

.siwafer .si04 .detail h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  margin-bottom: 10px;
  color: #000;
}

.siwafer .si04 .detail .tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.siwafer .si04 .detail .tags button {
  background: #f2f2f2;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 16px;
  color: #000;
}

.siwafer .si04 .detail .tags button.on {
  background: #3773f5;
  color: #fff;
}

.siwafer .si04 .detail .info .item {
  display: none;
}

.siwafer .si04 .detail .info .item.on {
  display: block;
}

.siwafer .si04 .detail .info .item > div {
  margin-top: 10px;
}

.siwafer .si04 .detail .info .th,
.siwafer .si04 .detail .info .td {
  padding: 6px 15px;
}

.siwafer .si04 .detail .info .th {
  background-color: #ededed;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.siwafer .si04 .detail .info .td {
  font-size: 16px;
  line-height: 24px;
  color: #696969;
  border-width: 0px, 1px, 1px, 1px;
  border: 1px solid #d8d8d8;
}

.siwafer .si04 .detail .info .td.td_flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.siwafer .si04 .detail .info ul,
.siwafer .si04 .detail .info p {
  margin: 0;
}

.siwafer .si04 .detail .info ul {
  padding-left: 20px;
}

.siwafer .si05 {
  margin-top: 60px;
  margin-bottom: 100px;
}

.siwafer .si05 h3 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  color: #000;
  margin: 0;
  margin-bottom: 40px;
  text-align: center;
}

.siwafer .si05 .grid_box {
  display: flex;
  gap: 10px;
  aspect-ratio: 1321/346;
}

.siwafer .si05 .grid_box .item {
  width: 13%;
  height: 100%;
  display: flex;
  cursor: pointer;
  transition: all 1s ease;
}

.siwafer .si05 .grid_box .item .detail {
  background-size: cover;
  background-position: center;
}

.siwafer .si05 .grid_box .item:nth-of-type(1) .detail {
  background-image: url("../images/siwafer/feature_bg1.png");
}

.siwafer .si05 .grid_box .item:nth-of-type(2) .detail {
  background-image: url("../images/siwafer/feature_bg2.png");
}

.siwafer .si05 .grid_box .item:nth-of-type(3) .detail {
  background-image: url("../images/siwafer/feature_bg3.png");
}

.siwafer .si05 .grid_box .item:nth-of-type(4) .detail {
  background-image: url("../images/siwafer/feature_bg4.png");
}

.siwafer .si05 .grid_box .item.on .detail {
  background: linear-gradient(
    180deg,
    #4596ff -47.4%,
    #00289f 147.4%
  ) !important;
}

.siwafer .si05 .grid_box .item.on {
  width: 61%;
}

.siwafer .si05 .grid_box .item .img {
  width: 0;
  height: 0;
  transition: all ease 1s;
}

.siwafer .si05 .grid_box .item.on .img {
  width: auto;
  height: 100%;
}

.siwafer .si05 .grid_box .item .detail {
  width: 100%;
  padding: 10px;
}

.siwafer .si05 .grid_box .item .detail h4 {
  font-size: 42px;
  line-height: 44px;
  color: #3773f5;
  margin: 0;
}

.siwafer .si05 .grid_box .item .detail ul {
  margin: 0;
  padding-left: 20px;
  margin: 0;
  visibility: hidden;
}

.siwafer .si05 .grid_box .item .detail li {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
  visibility: hidden;
}

.siwafer .si05 .grid_box .item .detail > p {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  margin-top: 15px;
  visibility: hidden;
}

.siwafer .si05 .grid_box .item .detail .title p {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  color: #000;
}

.siwafer .si05 .grid_box .item.on .detail .title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.siwafer .si05 .grid_box .item.on .detail ul,
.siwafer .si05 .grid_box .item.on .detail li,
.siwafer .si05 .grid_box .item.on .detail > p {
  visibility: visible;
}

.siwafer .si05 .grid_box .item.on .detail .title p {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-weight: 700;
}

.siwafer .si05 .grid_box .item.on .detail h4 {
  color: #fff;
}

/* .siwafer .si01 {
  margin-top: 60px;
  text-align: center;
}

.siwafer .si01 h3,
.siwafer .si01 h4,
.siwafer .si01 p {
  margin: 0;
}

.siwafer .si01 h3 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
  text-align: center;
}

.siwafer .si01 .grid_box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.siwafer .si01 .grid_box > div {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.siwafer .si01 .grid_box > div:nth-child(1) {
  transition-delay: 0.4s;
}

.siwafer .si01 .grid_box > div:nth-child(2) {
  transition-delay: 0.8s;
}

.siwafer .si01 .grid_box > div:nth-child(3) {
  transition-delay: 1.2s;
}

.siwafer .si01 .grid_box > div:nth-child(4) {
  transition-delay: 1.6s;
}

.siwafer .si01 .grid_box > div:nth-child(5) {
  transition-delay: 2s;
}

.siwafer .si01.on .grid_box > div {
  opacity: 1;
}

.siwafer .si01 .grid_box img {
  width: 100%;
  height: auto;
}

.siwafer .si01 .detail {
  padding: 20px;
}

.siwafer .si01 .detail h4 {
  font-size: 17px;
  line-height: 17px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
  text-align: center;
}

.siwafer .si01 .detail p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #696969;
  text-align: center;
}

.siwafer .si02 {
  margin-top: 60px;
}

.siwafer .si02 .item {
  padding: 40px;
}

.siwafer .si02 .item1 {
  padding: 40px;
  border: 40px solid #f4f4f4;
  border-right: 0;
}

.siwafer .si02 .item2 {
  padding: 40px;
  border: 40px solid #f4f4f4;
  border-left: 0;
  border-top: 0;
}

.siwafer .si02 h3,
.siwafer .si02 p {
  margin: 0;
}

.siwafer .si02 .row_1 {
  display: grid;
  grid-template-columns: 310px auto;
  gap: 40px;
}

.siwafer .si02 .row_1 .con_wafer {
  width: 310px;
  opacity: 0;
  text-align: center;
  transition: all 1s ease;
  transition-delay: 0.4s;
}

.siwafer .si02 .row_1.on .con_wafer {
  opacity: 1;
}

.siwafer .si02 .row_1 .con_wafer2 {
  opacity: 0;
  margin-left: -160px;
  transition: all 0.8s ease;
  transition-delay: 0.8s;
  width: 60%;
  display: inline-block;
}

.siwafer .si02 .row_1.on .con_wafer2 {
  opacity: 1;
  margin-left: -60px;
}

.siwafer .si02 .row_1 .con_wafer1 {
  opacity: 0;
  margin-left: -100px;
  transition: all 0.8s ease;
  transition-delay: 1.4s;
  width: 40%;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.siwafer .si02 .row_1.on .con_wafer1 {
  opacity: 1;
  margin-left: 0px;
}

.siwafer .si02 .info_wafer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.siwafer .si02 .info_wafer .txt {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
}

.siwafer .si02 .info_wafer .title {
  font-size: 27px;
  line-height: 32px;
  font-weight: 500;
  color: #000;
  margin: 10px 0 20px 0;
}

.siwafer .si02 .row_2 {
  margin-top: 40px;
}

.siwafer .si02 .row_2 .grid_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15%;
}

.siwafer .si02 .row_2 .grid_chil {
  display: flex;
  justify-content: space-between;
}

.siwafer .si02 .row_2 .txt_box {
  height: 85px;
  width: 100%;
  text-align: center;
}

.siwafer .si02 .row_2 .txt_box p {
  text-align: end;
}

.siwafer .si02 .row_2 .txt_box .num {
  font-size: 64px;
  line-height: 50px;
  font-weight: 700;
  color: #d5d5d5;
}

.siwafer .si02 .row_2 .txt_box .unit {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #d5d5d5;
}

.siwafer .si02 .row_2 .txt_box img {
  max-height: 100%;
  width: auto;
}

.siwafer .si02 .row_2 .grid_chil .note {
  font-size: 11px;
  line-height: 16px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.siwafer .si02 .row_2 .grid_chil .note.text_end {
  text-align: end;
}

.siwafer .si03 {
  margin-top: 80px;
  margin-bottom: 100px;
}

.siwafer .si03 h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.siwafer .si03 .swiper-slide {
  padding: 0 40px;
}

.siwafer .si03 .swiper-slide .banner_box {
  position: relative;
}

.siwafer .si03 .swiper-slide .banner_box img {
  width: 100%;
  aspect-ratio: 1156/396;
  object-fit: cover;
  object-position: center;
}

.siwafer .si03 .swiper-slide > .txt_box {
  width: 100%;
  padding: 45px 0 45px 100px;
  box-sizing: border-box;
  text-align: left;
}
.siwafer .si03 .swiper-slide > .txt_box > span {
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 8px 50px;
  opacity: 0;
  color: #696969;
}
.siwafer .si03 .swiper-slide.swiper-slide-active > div > span {
  opacity: 1;
  margin-left: 0px;
  transition: opacity 1s ease, margin 1s ease;
  transition-delay: 0.2s;
}
.siwafer .si03 .swiper-slide > div > strong {
  display: inline-block;
  font-size: 24px;
  line-height: 32px;
  color: #000;
  font-weight: 500;
  padding: 0;
  margin-left: 50px;
  opacity: 0;
  position: relative;
}
.siwafer .si03 .swiper-slide.swiper-slide-active > div > strong {
  opacity: 1;
  margin-left: 0px;
  transition: opacity 1s ease, margin 1s ease;
  transition-delay: 0.6s;
}
.siwafer .si03 .swiper-slide > div > p {
  font-size: 16px;
  word-break: keep-all;
  margin-top: 20px;
  margin-bottom: 0;
  padding: 0;
  opacity: 0;
  margin-left: 50px;
}
.siwafer .si03 .swiper-slide > div > p > em {
  font-style: normal;
  color: #000;
}
.siwafer .si03 .swiper-slide > div > p:last-child {
  margin-top: 3px;
}
.siwafer .si03 .swiper-slide.swiper-slide-active > div > p {
  opacity: 1;
  margin-left: 0px;
  color: #696969;
  transition: opacity 1s ease, margin 1s ease;
  transition-delay: 1s;
}
.siwafer .si03 .swiper-button-next,
.siwafer .si03 .swiper-button-prev {
  width: 14px;
  height: 22px;
  top: calc(50% - 132px);
  margin-top: 0px;
}

.siwafer .si03 .swiper-button-next:after,
.siwafer .si03 .swiper-button-prev:after {
  font-size: 22px;
  color: #000;
}
.siwafer .si03 .swiper-button-next.swiper-button-disabled,
.siwafer .si03 .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
} */

@media (max-width: 991px) {
  .siwafer .si_video {
    height: auto;
    margin: -2px 0;
  }
  .siwafer .si_video .txt_box p {
    font-size: 18px;
    line-height: 26px;
  }
  .siwafer .si03 {
    height: fit-content;
    background-image: none;
  }
  .siwafer .si03 .wrapper {
    padding: 0;
  }
  .siwafer .si03 .grid_box {
    height: fit-content;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .siwafer .si03 .grid_box .list_img {
    order: -1;
    justify-content: center;
    background-image: url(../images/siwafer/si03_bg_mb.webp);
    background-size: cover;
    background-position: center;
    padding: 40px;
  }
  .siwafer .si03 .list_detail {
    padding: 20px;
  }
  .siwafer .si03 .list_detail .item {
    border: 1px solid #d8d8d8;
    box-shadow: -2px 2px 5px 0px #0000001a;
  }
  .siwafer .si03 .list_detail .item.active {
    border: 0;
    box-shadow: none;
  }
  .siwafer .si03 .list_img img {
    margin-top: 0px;
  }
  .siwafer .si04 {
    background: none;
  }
  .siwafer .si04 .grid_box {
    flex-wrap: wrap;
    gap: 20px;
    height: auto;
  }
  .siwafer .si04 .swiper {
    width: 100%;
    width: 100vw;
    background-image: url(../images/siwafer/wafer_bg_2.webp);
    background-size: cover;
    background-position: center;
  }
  .siwafer .si04 .swiper-slide {
    padding: 30px 10%;
  }
  .siwafer .si04 .swiper-slide img {
    margin: 0;
  }
  .siwafer .si04 .detail {
    width: 100%;
    border: 1px solid #d8d8d8;
  }
  .siwafer .si05 {
    margin-top: 40px;
  }
  .siwafer .si05 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .siwafer .si05 .grid_box {
    flex-wrap: wrap;
    gap: 20px;
    aspect-ratio: unset;
  }
  .siwafer .si05 .grid_box .item,
  .siwafer .si05 .grid_box .item.on {
    width: 100%;
    height: fit-content;
    flex-wrap: wrap;
  }
  .siwafer .si05 .grid_box .item .detail .title {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .siwafer .si05 .grid_box .item .detail .title p {
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    font-weight: 700;
  }
  .siwafer .si05 .grid_box .item .detail h4 {
    color: #fff;
  }
  .siwafer .si05 .grid_box .item .detail {
    background: linear-gradient(
      180deg,
      #4596ff -47.4%,
      #00289f 147.4%
    ) !important;
    padding: 20px 20px 30px;
  }
  .siwafer .si05 .grid_box .item .detail ul,
  .siwafer .si05 .grid_box .item .detail li,
  .siwafer .si05 .grid_box .item .detail > p {
    visibility: visible;
  }
  .siwafer .si05 .grid_box .item .img {
    width: auto;
    height: 100%;
  }

  /* .siwafer .si01 {
    margin-top: 40px;
  }
  .siwafer .si01 h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .siwafer .si01 .grid_box {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .siwafer .si02 .item {
    border: 0;
    padding: 0;
  }
  .siwafer .si02 .item.item1 {
    margin-bottom: 40px;
  }
  .siwafer .si02 .info_wafer p {
    text-align: center;
  }
  .siwafer .si02 .info_wafer .title {
    order: -1;
    margin: 0 0 10px;
  }
  .siwafer .si02 .row_1 {
    grid-template-columns: 1fr;
  }
  .siwafer .si02 .row_1 .con_wafer {
    margin: auto;
  }
  .siwafer .si02 .row_1.on .info_wafer {
    order: -1;
  }
  .siwafer .si02 .row_2 .txt_box .num {
    font-size: 50px;
    line-height: 40px;
  }
  .siwafer .si02 .row_2 .grid_chil {
    flex-wrap: wrap;
    gap: 0;
  }
  .siwafer .si02 .row_2 .grid_box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .siwafer .si02 .row_2 .txt_box img {
    max-height: 60px;
  }
  .siwafer .si02 .row_2 .txt_box {
    height: 80px;
  }
  .siwafer .si02 .row_2 .content.mb_w_100 {
    width: 100%;
    margin-top: 30px;
  }
  .siwafer .si02 .row_2 .grid_chil .note {
    font-size: 11px;
  }
  .siwafer .si02 .info_wafer .txt {
    margin-bottom: 10px;
  }
  .siwafer .si03 {
    margin-top: 60px;
    margin-bottom: 100px;
  }
  .siwafer .si03 h3 {
    margin-bottom: 30px;
  }
  .siwafer .si03 .swiper-slide .banner_box {
    padding-right: 0;
  }
  .siwafer .si03 .swiper-slide > div > p {
  }
  .siwafer .si03 .swiper-slide > .txt_box {
    padding: 20px 0 20px 20px;
    min-height: 300px;
  }
  .siwafer .si03 .swiper-slide > div > strong {
    font-size: 24px;
  }
  .siwafer .si03 .swiper-slide > .txt_box > span {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 3px;
  }
  .siwafer .si03 .swiper-slide {
    padding: 0;
  } */
}

/* -----------------------------------------------
Manufacturing
-------------------------------------------------- */

.manufacturing .section {
  margin-top: 60px;
  margin-bottom: 40px;
}

.manufacturing .section .section_title {
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  color: #000;
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
}

.manufacturing .section .section_sub {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
  margin: 0;
  margin-bottom: 40px;
  text-align: center;
}

.manufacturing .process > .grid_box {
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: 40px;
}

.manufacturing .process > .grid_box .tag {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.manufacturing .process > .grid_box .tag .item {
  border: 1px solid #696969;
  padding: 0px 10px 0 15px;
  aspect-ratio: 442/180;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}

.manufacturing .process > .grid_box .tag .item.on,
.manufacturing .process > .grid_box .swiper-slide .item {
  background-image: url("../images/manufacturing/item_bg.png");
  background-size: cover;
  background-position: center;
}

.manufacturing .process > .grid_box .tag .item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  background-image: url("../images/manufacturing/arrow_down.png");
  background-size: cover;
  background-position: center;
}

.manufacturing .process > .grid_box .tag .item:last-child::after {
  display: none;
}

.manufacturing .process > .grid_box .tag .item img {
  width: 35px;
  height: 35px;
}

.manufacturing .process > .grid_box .tag .item .detail h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  margin-bottom: 10px;
}

.manufacturing .process > .grid_box .tag .item .detail p {
  font-size: 15px;
  line-height: 22px;
  color: #696969;
  margin: 0;
}

.manufacturing .process > .grid_box .content {
  position: relative;
  min-height: 1180px;
}

.manufacturing .process > .grid_box .content > .item {
  position: absolute;
  top: 50px;
  left: 0;
  opacity: 0;
}

.manufacturing .process > .grid_box .content > .item.on {
  top: 0px;
  opacity: 1;
  z-index: 2;
  transition: all 0.6s ease;
}

.manufacturing .process .content .item1 .detail1 {
  margin-bottom: 40px;
}

.manufacturing .process .content .item .detail_tit {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  margin-bottom: 15px;
}

.manufacturing .process .content .item .detail_sub {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
  margin: 0;
}

.manufacturing .process .content .item1 .detail1 p {
  font-size: 16px;
  line-height: 24px;
  color: #696969;
  margin: 0;
}

.manufacturing .process .content .item1 .grid_box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px 30px;
}

.manufacturing .process .content .item1 .item {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #d8d8d8;
}

.manufacturing .process .content .item1 .item > img {
  width: calc(100% - 20px);
  height: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0px 0px 6.56px 0px #00000059;
}

.manufacturing .process .content .item1 .item .text_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.manufacturing .process .content .item1 .item .text_box p {
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.manufacturing .process .content .item1 .item .text_box .arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/manufacturing/arrow_down.png");
  background-size: cover;
  background-position: center;
  transform: rotate(-90deg);
  margin-right: 5px;
}

.manufacturing .process .swiper-pagination-bullets {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: -20px;
}

.manufacturing
  .process
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 3px;
  background: #0733fc;
}

.manufacturing .process .swiper-pagination-bullet {
  width: 7px;
  height: 3px;
  border-radius: 3px;
  background: #a6a6a6;
  margin: 0 2px !important;
}

.manufacturing .process .content .list_box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 20px;
}

.manufacturing .process .content .list_box .row {
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  gap: 30px;
  align-items: center;
  cursor: pointer;
}

.manufacturing .process .content .list_box .row .img_box {
  position: relative;
  padding: 2px;
  transition: all 0.6s ease;
  border-radius: 50%;
}

.manufacturing .process .content .list_box .row img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
}

.manufacturing .process .content .list_box .row .img_box:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
  background-image: url("../images/common/logo_spec.svg");
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: all 0.6s ease;
}

.manufacturing .process .content .list_box .row:hover .img_box {
  background-color: #3773f5;
}

.manufacturing .process .content .list_box .row:hover .img_box:after {
  opacity: 1;
}

.manufacturing .process .content .list_box .row .txt_box {
  width: calc(100% - 194px);
}

.manufacturing .process .content .list_box .row .txt_box strong {
  font-size: 20px;
  line-height: 28px;
  margin: 0;
  font-weight: 700;
  color: #000;
}

.manufacturing .process .content .list_box .row .txt_box p {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  font-weight: 500;
  color: #696969;
  margin-top: 10px;
}

.manufacturing .process .content .top_stt {
  display: flex;
  align-items: center;
  background-color: #efefef;
  border-radius: 5px;
  padding: 1px 5px;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}

.manufacturing .process .content .top_stt .arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(../images/manufacturing/arrow_down.png);
  background-size: cover;
  background-position: center;
  transform: rotate(-90deg);
  margin-right: 5px;
}

.manufacturing .process .content .top_stt p {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: #000;
}

@media (max-width: 991px) {
  .manufacturing .section {
    margin-top: 40px;
  }
  .manufacturing .section .section_title {
    font-size: 24px;
    line-height: 32px;
  }
  .manufacturing .section .section_sub {
    margin-bottom: 30px;
  }
  .manufacturing .process > .grid_box {
    display: block;
  }
  .manufacturing .process > .grid_box .tag {
    display: block;
    position: relative;
  }
  .manufacturing .process > .grid_box .content > .item {
    position: static;
    display: none;
  }
  .manufacturing .process > .grid_box .content > .item.on {
    display: block;
  }

  .manufacturing .process > .grid_box .content {
    margin-top: 50px;
    min-height: 0;
  }

  .manufacturing .process .content .item1 .grid_box {
    grid-template-columns: repeat(2, 1fr);
  }
  .manufacturing .process .content .item1 .detail1 {
    margin-bottom: 40px;
  }
  .manufacturing .process .content .item .detail_tit {
    text-align: center;
  }
  .manufacturing .process .content .list_box .row {
    gap: 20px;
    padding-top: 0px;
  }
  .manufacturing .process .content .list_box .row img {
    width: 100px;
    height: 100px;
  }
  .manufacturing .process .content .list_box .row .txt_box {
    width: calc(100% - 124px);
  }
  .manufacturing .process > .grid_box .tag .item .detail h4 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 5px;
  }
  .manufacturing .process > .grid_box .tag .item {
    gap: 15px;
  }
  .manufacturing .process .content .list_box {
    gap: 20px;
  }
  .manufacturing .process .content .list_box .row .txt_box strong {
    font-size: 18px;
    line-height: 26px;
  }
}

/* -----------------------------------------------
Sic wafer
-------------------------------------------------- */

.sicwafer h3,
.sicwafer h4,
.sicwafer p {
  margin: 0;
}

.sicwafer .sic01 {
  margin-top: 60px;
}

.sicwafer .sic01 h3 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
  text-align: center;
}

.sicwafer .sic01 .sub {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
  margin-bottom: 40px;
  text-align: center;
}

.sicwafer .sic01 .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sicwafer .sic01 .grid_box > div {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.sicwafer .sic01 .grid_box > div:nth-child(1) {
  transition-delay: 0.4s;
}

.sicwafer .sic01 .grid_box > div:nth-child(2) {
  transition-delay: 1s;
}

.sicwafer .sic01 .grid_box > div:nth-child(3) {
  transition-delay: 1.6s;
}

.sicwafer .sic01.on .grid_box > div {
  opacity: 1;
}

.sicwafer .sic01 .grid_box img {
  width: 100%;
  height: auto;
}

.sicwafer .sic01 .detail {
  padding: 20px;
}

.sicwafer .sic01 .detail h4 {
  font-size: 17px;
  line-height: 17px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
  text-align: center;
}

.sicwafer .sic01 .detail p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #696969;
  text-align: center;
}

.sicwafer .sic02 {
  margin-top: 60px;
}

.sicwafer .sic02 .item {
  padding-bottom: 40px;
}

.sicwafer .sic02 h3,
.sicwafer .sic02 p {
  margin: 0;
}

.sicwafer .sic02 h3.sec_tit {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.sicwafer .sic02 .row_1 {
  display: grid;
  grid-template-columns: 400px auto;
  gap: 40px;
}

.sicwafer .sic02 .row_1 .con_wafer {
  width: 400px;
  text-align: center;
}

.sicwafer .sic02 .row_1 .con_wafer1 {
  width: 100%;
  display: inline-block;
}

.sicwafer .sic02 .info_wafer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.sicwafer .sic02 .info_wafer .txt {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
}

.sicwafer .sic02 .info_wafer .title {
  font-size: 27px;
  line-height: 32px;
  font-weight: 500;
  color: #000;
  margin: 10px 0 20px 0;
}

.sicwafer .sic02 .item3 {
  padding: 0;
}

.sicwafer .sic02 .item3 h3 {
  padding-left: 20px;
  font-size: 28px;
  line-height: 32px;
  font-weight: 500;
  color: #000;
}

.sicwafer .sic02 .item3 p {
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
  color: #696969;
}

.sicwafer .sic03 {
  margin-top: 90px;
  margin-bottom: 100px;
}

.sicwafer .sic03 .item {
  padding-bottom: 60px;
}

.sicwafer .sic03 h3,
.sicwafer .sic03 p {
  margin: 0;
}

.sicwafer .sic03 h3.sec_tit {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.sicwafer .sic03 p.sec_sub {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
  text-align: center;
  margin-bottom: 50px;
}

.sicwafer .sic03 .row_1 {
  display: grid;
  grid-template-columns: 400px auto;
  gap: 40px;
}

.sicwafer .sic03 .row_1 .con_wafer {
  width: 400px;
  text-align: center;
}

.sicwafer .sic03 .row_1 .con_wafer1 {
  width: 100%;
  display: inline-block;
  text-align: left;
}

.sicwafer .sic03 .info_wafer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.sicwafer .sic03 .info_wafer .txt {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
  margin-bottom: 10px;
}

.sicwafer .sic03 .info_wafer .title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
}

.sicwafer .sic03 .item3 {
  padding: 0;
}

.sicwafer .sic03 .item3 a {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: #000;
  padding: 10px 30px;
  border: 1px solid #000000;
  display: inline-block;
}

.sicwafer .sic03 .item3 p {
  text-align: center;
}

@media (max-width: 991px) {
  .sicwafer .si01 {
    margin-top: 40px;
  }
  .sicwafer .si01 h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .sicwafer .si01 img {
    width: 100%;
    height: auto;
  }
  .sicwafer .sic01 .grid_box {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .sicwafer .sic02 h3 {
    margin-bottom: 20px;
  }
  .sicwafer .sic02 .item {
    border: 0;
    padding: 0;
  }
  .sicwafer .sic02 .item.item1 {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #d8d8d8;
  }
  .sicwafer .sic02 .row_1 .con_wafer {
    width: 340px;
  }
  .sicwafer .sic02 .info_wafer p {
    text-align: left;
  }
  .sicwafer .sic02 .info_wafer .title {
    font-size: 22px;
    line-height: 30px;
  }
  .sicwafer .sic02 .row_1 {
    grid-template-columns: 1fr;
  }
  .sicwafer .sic02 .row_1 .con_wafer {
    margin: auto;
  }
  .sicwafer .sic02 .item3 {
    margin-top: 30px;
  }
  .sicwafer .sic02 .item3 .row_1 {
    gap: 5px;
  }
  .sicwafer .sic02 .item3 .row_1 h3 {
    font-size: 20px;
    line-height: 20px;
    padding: 0;
  }
  .sicwafer .sic03 {
    margin-top: 80px;
  }
  .sicwafer .sic02 .item3 .row_1 p {
    font-size: 14px;
    line-height: 22px;
  }
  .sicwafer .sic03 .item {
    border: 0;
    padding: 0;
    margin-bottom: 40px;
  }
  .sicwafer .sic03 .item.item1 {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #d8d8d8;
  }
  .sicwafer .sic03 .row_1 .con_wafer {
    width: 340px;
  }
  .sicwafer .sic03 .info_wafer p {
    text-align: left;
  }
  .sicwafer .sic03 .row_1 {
    grid-template-columns: 1fr;
  }
  .sicwafer .sic03 .row_1 .con_wafer {
    margin: auto;
  }
}

/* -----------------------------------------------
Quality Manage
-------------------------------------------------- */

.quality h3,
.quality p {
  margin: 0;
}

.quality .quality01 {
  margin-top: 60px;
}

.quality .quality01 .txt_box {
  max-width: 790px;
  margin: auto;
}

.quality .quality01 h3 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.quality .quality01 p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
  text-align: center;
}

.quality .quality01 img {
  width: 100%;
  height: auto;
  margin: 30px 0;
  object-fit: cover;
  object-position: center;
}

.quality .quality02 {
  margin-top: 60px;
}

.quality .quality02 .grid_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 40px;
}

.quality .quality02 h3 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.quality .quality02 .item {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  background-image: url("../images/quality/arrow_bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.quality .quality02.on .item {
  opacity: 1;
}

.quality .quality02 .item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background-color: #3773f5;
  box-shadow: 0px 4px 5.2px 0px #00000085;
}

.quality .quality02 .item:nth-of-type(1) {
  transition-delay: 0.4s;
}
.quality .quality02 .item:nth-of-type(2) {
  transition-delay: 0.9s;
}
.quality .quality02 .item:nth-of-type(3) {
  transition-delay: 1.4s;
}
.quality .quality02 .item:nth-of-type(4) {
  transition-delay: 1.9s;
}

.quality .quality02 a {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: #000;
  padding: 10px 30px;
  border: 1px solid #000000;
  display: inline-block;
}

.quality .quality02 p {
  text-align: center;
}

.quality .quality02 .img_box {
  width: 100%;
  aspect-ratio: 1320/221;
  background-image: url("../images/quality/policy2.webp");
  background-size: cover;
  background-position: center;
  margin-top: 60px;
}

.quality .quality02 .logo_box {
  width: 50%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 50%;
  background-color: #ebebeb;
}

.quality .quality02 .logo_box img {
  width: 165px;
  height: auto;
}

.quality .quality03 {
  margin-top: 60px;
  margin-bottom: 100px;
}
.quality .quality03 .list_position {
  flex: 1;
  text-align: left;
}
.quality .quality03 .list_position .qa {
  font-size: 20px;
}
.quality .quality03 .list_position .qa .q.active:after {
  display: none;
}
.quality .quality03 .list_position .a {
  display: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  text-align: left;
  padding: 25px 20px;
  border-bottom: 1px solid #d8d8d8;
}
.quality .quality03 .list_position .q {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  padding: 15px 20px;
  background-color: #fafafa;
  border-bottom: 1px solid #d8d8d8;
}
.quality .quality03 .list_position .q:before {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background-color: #696969;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}
.quality .quality03 .list_position .q:after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background-color: #696969;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%) rotate(90deg);
}
.quality .quality03 h3 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.quality .quality03 p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .quality .quality01 {
    margin-top: 40px;
  }
  .quality .quality01 img {
    aspect-ratio: 390/374;
  }
  .quality .quality02 .grid_box {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 260px;
    margin: auto;
    margin-bottom: 40px;
  }
  .quality .quality02 .item {
    align-items: start;
    justify-content: center;
    background-image: url(../images/quality/arrow_bg_mb.png);
  }
  .quality .quality02 .img_box {
    aspect-ratio: 388/158;
  }
  .quality .quality02 .logo_box {
    background-color: #ebebebad;
  }
  .quality .quality02 .logo_box img {
    width: 120px;
  }
  .quality .quality03 {
    margin-top: 40px;
  }
}

/* -----------------------------------------------
Company History
-------------------------------------------------- */
.history .section {
  margin-top: 60px;
}
.history .section ul li {
  list-style-type: none;
}
.history .section ul,
.history .section h3 {
  padding: 0;
  margin: 0;
}
.history .section .title {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.history .section .sub {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
  text-align: center;
  margin-bottom: 60px;
}
.history .section > div {
  width: 100%;
  margin: 75px auto 0;
  position: relative;
}
.history .section > div.history01 ~ div {
  margin-top: 0;
  padding-top: 75px;
}
.history .section.process > div:after {
  content: "";
  width: 1px;
  height: 100%;
  background: #3773f5;
  position: absolute;
  left: 50%;
  top: 5px;
}
.history .section.process > div.history03:after {
  height: calc(100% - 70px);
}
.history .section > div h3 {
  position: absolute;
  top: 0;
  text-align: left;
  font-size: 24px;
  opacity: 0;
  transition: all 0.4s ease;
  width: 50%;
  padding-right: 40px;
  text-align: end;
  font-weight: 500;
}
.history .section > div h3 strong {
  display: block;
  font-weight: 700;
  margin: 0 0 10px;
}
.history .section > div.history01 h3 {
  left: -50px;
}
.history .section > div.history01 h3 strong {
  color: #3773f5;
}
.history .section.on > div.history01 h3 {
  left: 0px;
  opacity: 1;
  transition-delay: 1s;
}
.history .section > div.history02 h3 {
  left: -50px;
  top: 65px;
  text-align: right;
}
.history .section > div h3 strong {
  color: #3773f5;
}
.history .section.on > div.history02 h3 {
  left: 0px;
  opacity: 1;
  transition-delay: 2.2s;
}
.history .section > div.history03 h3 {
  left: -50px;
  top: 65px;
}
.history .section.on > div.history03 h3 {
  left: 0px;
  opacity: 1;
  transition-delay: 3.3s;
}
.history .section > div ul {
  position: relative;
}
.history .section > div ul:after {
  content: "";
  width: 1px;
  height: calc(100% - 60px);
  background: #3773f5;
  position: absolute;
  left: 50%;
  top: 10px;
  z-index: 10;
}
.history .section > div.history02 ul:after {
  height: calc(100% - 80px);
  background: #3773f5;
}
.history .section > div.history03 ul:after {
  height: calc(100% - 70px);
  background: #3773f5;
}
.history .section > div ul li {
  box-sizing: border-box;
  position: relative;
  margin-top: -80px;
  opacity: 0;
  transition: all 0.4s ease;
}
.history .section.on > div ul li:nth-of-type(1) {
  margin-top: 0;
}
.history .section.on > div ul li:nth-of-type(1) {
  opacity: 1;
}
.history .section.on > div.history01 ul li:nth-of-type(2) {
  opacity: 1;
  margin-top: 35px;
  transition-delay: 0.3s;
}
.history .section.on > div.history01 ul li:nth-of-type(3) {
  opacity: 1;
  margin-top: 35px;
  transition-delay: 0.7s;
}
.history .section.on > div.history02 ul li:nth-of-type(1) {
  opacity: 1;
  margin-top: 0;
  transition-delay: 1.1s;
}
.history .section.on > div.history02 ul li:nth-of-type(2) {
  opacity: 1;
  margin-top: 35px;
  transition-delay: 1.5s;
}
.history .section.on > div.history02 ul li:nth-of-type(3) {
  opacity: 1;
  margin-top: 35px;
  transition-delay: 1.9s;
}
.history .section.on > div.history03 ul li:nth-of-type(1) {
  opacity: 1;
  margin-top: 0;
  transition-delay: 2.3s;
}
.history .section.on > div.history03 ul li:nth-of-type(2) {
  opacity: 1;
  margin-top: 35px;
  transition-delay: 2.7s;
}
.history .section.on > div.history03 ul li:nth-of-type(3) {
  opacity: 1;
  margin-top: 35px;
  transition-delay: 3.1s;
}
.history .section > div ul li {
  margin-left: 50%;
  text-align: left;
  padding-left: 36px;
}
.history .section > div ul li:after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 5px;
  background: #fff;
  border: 4px solid #3773f5;
  box-sizing: border-box;
  border-radius: 100px;
  z-index: 100;
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.2);
}
.history .section > div.history02 ul li:after {
  border: 4px solid #3773f5;
}
.history .section > div.history03 ul li:after {
  border: 4px solid #3773f5;
}
.history .section > div ul li:after {
  left: -7px;
}
.history .section > div ul li span {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #000;
  display: block;
  margin: -10px 0 10px;
}
.history .section > div.history01 ul li:nth-of-type(1).point span {
  color: #000;
}
.history .section > div.history02 ul li:nth-of-type(1) strong {
  color: #22960b;
}
.history .location {
  margin-bottom: 100px;
}
.history .location h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000;
  text-align: center;
}
.history .location .swiper {
  margin: 0;
}
.history .location .swiper-slide img {
  width: 100%;
  height: auto;
}
.history .location .swiper-pagination-bullets {
  text-align: center;
}
.history .location .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 3px;
  background: #0733fc;
}
.history .location .swiper-pagination-bullet {
  width: 7px;
  height: 3px;
  border-radius: 3px;
  background: #a6a6a6;
  margin: 0 2px !important;
}

@media (max-width: 991px) {
  .history .section {
    margin-top: 40px;
  }
  .history .section .sub {
    margin-bottom: 40px;
  }
  .history .section > div.history02 h3 {
    left: -50px;
    right: auto;
  }
  .history .section.on > div.history02 h3 {
    left: 0px;
  }
  .history .section > div h3 {
    font-size: 16px;
  }
  .history .section > div ul li {
    font-size: 14px;
  }
  .history .section > div ul li span {
    font-size: 16px;
    line-height: 20px;
  }
  .history .section > div ul li {
    padding-left: 20px;
  }
  .history .section > div h3,
  .history .section.on > div.history01 h3 {
    padding-right: 20px;
  }
  .history .location h3 {
    font-size: 22px;
  }
}

@media (max-width: 430px) {
  .history .section > div ul li {
    font-size: 11px;
  }
  .history .section > div ul li span {
    font-size: 16px;
  }
  .history .section > div.history03:after,
  .history .section > div.history03 ul:after {
    height: calc(100% - 50px);
  }
  .history .location .grid_box {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------
Profit
-------------------------------------------------- */
.profit .section {
  margin-top: 60px;
}
.profit .title {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.profit .sub {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
  text-align: center;
  margin-bottom: 40px;
}
.profit .profit01 img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.profit .profit01 .txt_box {
  padding: 10px 20px;
  border: 2px solid #d8d8d8;
  margin-top: 20px;
}

.profit .profit01 .txt_box h4,
.profit .profit01 .txt_box p {
  max-width: 840px;
  color: #000;
}

.profit .profit01 .txt_box .row h4 {
  margin-bottom: 5px;
}

.profit .profit01 .txt_box .row p {
  margin-top: 0;
}

.profit .profit02 .grid_box h4,
.profit .profit02 .grid_box p {
  margin: 0;
}

.profit .profit02 .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.profit .profit02 .grid_box > div {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.profit .profit02 .grid_box > div:nth-child(1) {
  transition-delay: 0.4s;
}

.profit .profit02 .grid_box > div:nth-child(2) {
  transition-delay: 1s;
}

.profit .profit02 .grid_box > div:nth-child(3) {
  transition-delay: 1.6s;
}

.profit .profit02.on .grid_box > div {
  opacity: 1;
}

.profit .profit02 .grid_box img {
  width: 100%;
  height: auto;
}

.profit .profit02 .detail {
  padding: 20px 0;
}

.profit .profit02 .detail h4 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.profit .profit02 .detail p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #696969;
}

.profit .profit03 .grid_box h4,
.profit .profit03 .grid_box p {
  margin: 0;
}

.profit .profit03 .grid_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.profit .profit03 .grid_box > div {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.profit .profit03 .grid_box > div:nth-child(1) {
  transition-delay: 0.4s;
}

.profit .profit03 .grid_box > div:nth-child(2) {
  transition-delay: 1s;
}

.profit .profit03 .grid_box > div:nth-child(3) {
  transition-delay: 1.6s;
}

.profit .profit03 .grid_box > div:nth-child(4) {
  transition-delay: 2.2s;
}

.profit .profit03.on .grid_box > div {
  opacity: 1;
}

.profit .profit03 .grid_box img {
  width: 100%;
  height: auto;
}

.profit .profit03 .detail {
  padding: 20px 0;
}

.profit .profit03 .detail h4 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.profit .profit03 .detail p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #696969;
}

.profit .profit04 .content {
  position: relative;
  padding-bottom: 40px;
}

.profit .profit04 {
  margin-bottom: 140px;
}

.profit .profit04 .slide_box {
  width: 60%;
  position: relative;
  z-index: 1;
  background: linear-gradient(89.93deg, #2241cb 0.07%, #01122f 99.95%);
}

.profit .profit04 .slide_box .slide_frame {
  width: 66.67%;
}

.profit .profit04 .slide_box .swiper {
  width: 100%;
}

.profit .profit04 .slide_box .swiper .swiper-slide {
  padding: 30px 15px 20px 20px;
}

.profit .profit04 .slide_box .swiper .swiper-slide p {
  margin: 0;
}

.profit .profit04 .slide_box .swiper .swiper-slide .title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-align: left;
}

.profit .profit04 .slide_box .swiper .swiper-slide .txt {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

.profit .profit04 .slide_box .swiper-pagination-bullets {
  position: absolute;
  width: 66.67%;
  text-align: center;
  bottom: -20px;
}

.profit
  .profit04
  .slide_box
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 3px;
  background: #0733fc;
}

.profit .profit04 .swiper-pagination-bullet {
  width: 7px;
  height: 3px;
  border-radius: 3px;
  background: #a6a6a6;
  margin: 0 2px !important;
}

.profit .profit04 .img_box {
  position: absolute;
  top: 40px;
  right: 0;
  width: 60%;
  aspect-ratio: 730/470;
  padding: 0 0 30px 30px;
  background-color: #f7f7f7;
}

.profit .profit04 .img_box .img_list {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #f7f7f7;
}

.profit .profit04 .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  z-index: 2;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s, transform 2s, -webkit-transform 2s;
}

.profit .profit04 .img_box img.on {
  z-index: 3;
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 991px) {
  .profit .section {
    margin-top: 40px;
  }
  .profit .profit01 img {
    aspect-ratio: 388/200;
  }
  .profit .profit01 .txt_box {
    padding: 0 10px;
  }
  .profit .profit02 .grid_box {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .profit .profit03 .grid_box {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .profit .profit04 .slide_box {
    width: 100%;
  }

  .profit .profit04 .slide_box .slide_frame {
    width: 100%;
  }

  .profit .profit04 .slide_box .swiper .swiper-slide .title {
    font-size: 20px;
    line-height: 28px;
  }

  .profit .profit04 .content {
    padding-bottom: 20px;
  }

  .profit .profit04 .img_box {
    position: static;
    padding: 0;
    width: 100%;
    aspect-ratio: 730/340;
  }

  .profit .profit04 .slide_box .swiper .swiper-slide {
    padding: 20px 20px 15px 20px;
  }

  .profit .profit04 .slide_box .swiper-pagination-bullets {
    width: 100%;
  }
}

/* -----------------------------------------------
Principal
-------------------------------------------------- */

.principal h3,
.principal p {
  margin: 0;
}

.principal .tit {
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 15px;
  color: #000;
  text-align: center;
}

.principal .sub {
  font-size: 24px;
  line-height: 32px;
  color: #696969;
  text-align: center;
}

.principal .principal01 {
  margin-top: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #d8d8d8;
}

.principal .principal02 {
  margin-top: 60px;
}

.principal .principal02 .img_box {
  margin-top: 60px;
  background-image: url("../images/principal/map.webp");
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.principal .principal02 .img_box img {
  width: 100%;
  height: auto;
  opacity: 0;
  margin-top: -500px;
  transition: opacity 1s ease, margin-top 1.3s ease;
}

.principal .principal02 .img_box.on {
  opacity: 1;
}

.principal .principal02 .img_box.on img {
  opacity: 1;
  margin-top: 0;
}

.principal .principal03 {
  margin-top: 60px;
  margin-bottom: 100px;
}

.principal .principal03 .sub.top {
  margin-bottom: 15px;
}

.principal .principal03 .spec {
  font-weight: 700;
}

.principal .principal03 .insurance {
  margin-top: 60px;
}

.principal .principal03 .grid-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.principal .principal03 .grid-box .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border: 2px solid #d8d8d8;
}

.principal .principal03 .content .title {
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
  color: #222222;
  text-align: left;
}

.principal .principal03 .content .sub-title {
  font-size: 22px;
  line-height: 34px;
  margin-top: 20px;
  color: #222222;
  text-align: left;
}

.principal .principal03 .content .dot {
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
}

.principal .principal03 .content .txt {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  margin-top: 20px;
  color: #1e70da;
}

.principal .principal03 .content .txt_primary {
  color: #1e70da;
}

.principal .principal03 .content .txt_success {
  color: #18a100;
}

.principal .principal03 .img-box img {
  width: 100%;
  aspect-ratio: 388/199;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991px) {
  .principal .tit {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  .principal .sub {
    font-size: 16px;
    line-height: 24px;
  }

  .principal .principal01 {
    margin-top: 40px;
  }

  .principal .principal02 {
    margin-top: 40px;
  }

  .principal .principal03 {
    margin-top: 40px;
  }

  .principal .principal02 .img_box {
    margin-top: 30px;
    width: 120%;
    margin-left: -10%;
  }

  .principal .principal03 .insurance {
    margin-top: 40px;
  }

  .principal .principal03 .grid-box {
    grid-template-columns: 1fr;
  }

  .principal .principal03 .img-box {
    order: -1;
  }

  .principal .principal03 .grid-box .content {
    padding: 40px 20px;
  }

  .principal .principal03 .content .title {
    font-size: 24px;
    line-height: 32px;
  }

  .principal .principal03 .content .sub-title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  .principal .principal03 .content .sub-title span {
    margin-bottom: 10px;
  }

  .principal .principal03 .content .txt {
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
  }
}

/* -----------------------------------------------
Shared growth
-------------------------------------------------- */

.shared h3,
.shared p {
  margin: 0;
}

.shared .tit {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 15px;
  color: #000;
  text-align: center;
}

.shared .sub {
  font-size: 24px;
  line-height: 32px;
  color: #696969;
  text-align: center;
}

.shared .shared01 {
  margin-top: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid #d8d8d8;
}

.shared .shared02 .tit {
  margin-bottom: 30px;
}

.shared .shared02 {
  margin-top: 80px;
}

.shared .shared02 .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shared .shared02 .grid_box > div {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.shared .shared02 .grid_box > div:nth-child(1) {
  transition-delay: 0.4s;
}

.shared .shared02 .grid_box > div:nth-child(2) {
  transition-delay: 0.8s;
}

.shared .shared02 .grid_box > div:nth-child(3) {
  transition-delay: 1.2s;
}

.shared .shared02.on .grid_box > div {
  opacity: 1;
}

.shared .shared02 .grid_box img {
  width: 100%;
  height: auto;
}

.shared .shared02 .detail {
  padding: 0px;
}

.shared .shared02 .detail h4 {
  font-size: 17px;
  line-height: 17px;
  font-weight: 500;
  color: #000;
  margin: 20px 0 10px 0;
}

.shared .shared02 .detail ul {
  padding-left: 20px;
  margin: 0;
}

.shared .shared02 .detail ul li {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #696969;
}

.shared .shared02 {
  margin-top: 80px;
}

.shared .shared03 {
  margin-top: 80px;
}

.shared .shared03 .row {
  margin-top: 60px;
  position: relative;
}

.shared .shared03 .row > img {
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease;
}

.shared .shared03 .row.on > img {
  opacity: 1;
}

.shared .shared03 .row .item {
  position: absolute;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.shared .shared03 .row .item:nth-of-type(1) {
  top: 5%;
  left: 0;
  transition-delay: 0.6s;
}
.shared .shared03 .row.on .item:nth-of-type(1) {
  opacity: 1;
}
.shared .shared03 .row .item:nth-of-type(2) {
  top: 5%;
  right: 0;
  transition-delay: 1s;
}
.shared .shared03 .row.on .item:nth-of-type(2) {
  opacity: 1;
}
.shared .shared03 .row .item:nth-of-type(3) {
  bottom: 5%;
  left: 0;
  transition-delay: 1.4s;
}
.shared .shared03 .row.on .item:nth-of-type(3) {
  opacity: 1;
}
.shared .shared03 .row .item:nth-of-type(4) {
  bottom: 5%;
  right: 40px;
  transition-delay: 1.8s;
}
.shared .shared03 .row.on .item:nth-of-type(4) {
  opacity: 1;
}
.shared .shared03 .row .item h4 {
  margin: 0;
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
}

.shared .shared03 .row .item ul {
  padding-left: 15px;
  margin: 0;
}

.shared .shared03 .row .item ul li {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  max-width: 300px;
}

.shared .shared04 {
  margin-top: 80px;
}
.shared .shared04 {
  width: 100%;
  aspect-ratio: 1920/424;
  background-image: url("../images/shared/purchase_bg.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-left: 50%;
}

.shared .shared04 h4 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  margin-bottom: 20px;
}

.shared .shared04 a {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  padding: 10px 40px;
  margin: auto;
  border: 1px solid #fff;
  display: inline-block;
}

.shared .shared04 > div {
  width: fit-content;
  text-align: center;
}

@media (max-width: 991px) {
  .shared .tit {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  .shared .sub {
    font-size: 16px;
    line-height: 24px;
  }

  .shared .shared01,
  .shared .shared02,
  .shared .shared03 {
    margin-top: 40px;
  }

  .shared .shared02 .grid_box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .shared .shared02 .detail ul {
    padding-left: 20px;
  }
  .shared .shared03 .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .shared .shared03 .row .item {
    width: calc(50% - 10px);
    position: static;
  }
  .shared .shared03 .row .item h4 {
    font-size: 16px;
    line-height: 24px;
  }
  .shared .shared03 .row .item ul li {
    font-size: 14px;
    line-height: 20px;
  }
  .shared .shared04 {
    aspect-ratio: 430/599;
    background-image: url("../images/shared/purchase_bg_mb.webp");
    margin-top: 40px;
    padding: 0 20px;
    align-items: start;
  }
  .shared .shared04 h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .shared .shared04 a {
    width: 100%;
  }
  .shared .shared04 > div {
    padding-top: 60px;
    width: 100%;
  }
}

/* -----------------------------------------------
Fair Trade
-------------------------------------------------- */

.fair h3,
.fair h4,
.fair p {
  margin: 0;
}

.fair .tit {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 15px;
  color: #000;
  text-align: center;
}

.fair .sub {
  font-size: 16px;
  line-height: 24px;
  color: #696969;
  text-align: center;
}

.fair .fair01 {
  margin-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #d8d8d8;
}

.fair .fair01 .detail {
  margin-top: 60px;
}

.fair .fair01 .detail .tit {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: #000;
  margin-bottom: 40px;
}

.fair .fair01 .detail .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.fair .fair01 .detail h4 {
  font-size: 24px;
  line-height: 24px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d8d8d8;
}

.fair .fair01 .detail p {
  font-size: 16px;
  line-height: 24px;
  color: #696969;
}

.fair .fair02 {
  margin-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #d8d8d8;
}

.fair .fair02 .sub {
  margin-bottom: 40px;
}

.fair .fair02 .txt {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 20px;
  color: #696969;
}

.fair .fair02 .txt_sm {
  font-size: 16px;
  line-height: 16px;
  margin-top: 10px;
  color: #696969;
  text-align: end;
}

.fair .fair02 table {
  width: 100%;
  border-top: 1px solid #000000;
}

.fair .fair02 table tr th,
.fair .fair02 table tr td {
  padding: 10px 15px;
}

.fair .fair02 table tr th {
  font-size: 16px;
  line-height: 24px;
  color: #000;
  border-width: 0px, 1px, 1px, 0px;
  border: 1px solid #d8d8d8;
  background-color: #fafafa;
  border-top: 0;
  text-wrap: nowrap;
}

.fair .fair02 table tr th:first-child,
.fair .fair02 table tr td:first-child {
  border-left: 0;
}

.fair .fair02 table tr th:last-child,
.fair .fair02 table tr td:last-child {
  border-right: 0;
}

.fair .fair02 table tr td {
  font-size: 16px;
  line-height: 24px;
  color: #000;
  border-width: 0px, 1px, 1px, 0px;
  border: 1px solid #d8d8d8;
  vertical-align: middle;
  border-top: 0;
}

.fair .fair02 table ul {
  padding: 0;
  margin: 0;
}

.fair .fair02 table ul li {
  list-style-type: none;
}

.fair .fair03 {
  margin-top: 60px;
  padding-bottom: 100px;
}

.fair .fair03 .sub {
  margin-bottom: 40px;
}

.fair .fair03 .detail {
  padding: 30px;
  border: 10px solid #d8d8d8;
}

.fair .fair03 .detail h4 {
  margin: 30px 0;
  font-size: 24px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
  text-align: center;
}

.fair .fair03 .detail p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

.fair .fair03 .detail p.text_end {
  text-align: end;
}

@media (max-width: 991px) {
  .fair .tit {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  .fair .fair01 {
    margin-top: 40px;
    padding-bottom: 40px;
  }
  .fair .fair01 .detail .grid_box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .fair .fair01 .detail h4 {
    font-size: 18px;
    line-height: 18px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .fair .fair01 .detail {
    margin-top: 40px;
  }
  .fair .fair01 .detail .tit {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .fair .fair02 {
    margin-top: 40px;
    padding-bottom: 40px;
  }
  .fair .fair02 table tr th,
  .fair .fair02 table tr td {
    font-size: 14px;
    line-height: 22px;
    padding: 10px;
  }
  .fair .fair03 {
    margin-top: 40px;
  }
  .fair .fair03 .detail {
    padding: 10px;
    border: 6px solid #d8d8d8;
  }
}

/* -----------------------------------------------
Partner
-------------------------------------------------- */

.partner .main {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.partner .main .bg_mb {
  display: none;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
.partner .main .bg_pc {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
.partner .main .modal_form_account {
  width: 100%;
  height: 100%;
  background-color: #0000009e;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.partner .text-danger {
  color: #dc3546;
}

.partner .main .content_modal {
  width: 600px;
  padding: 40px 20px;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
}

.partner .main .content_modal .close_modal {
  position: absolute;
  top: 20px;
  right: 20px;
}

.partner .main .content_modal .close_modal img {
  width: 20px;
  height: 20px;
}

.partner .main .title {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  color: #22252a;
  margin-bottom: 30px;
  text-align: center;
}

.partner .main .login_form input {
  background-color: #f1f9fa;
  border: 1px solid #dee2e6;
  padding: 10px 20px;
  width: 100%;
  height: 50px;
  font-size: 16px;
}

.partner .main .login_form button.btn_submit {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #3773f5;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  transition: 0.2s;
}

.partner .main .login_form button.btn_submit:hover {
  background-color: #096ae9;
}

.partner .main .login_form .small {
  font-size: 14px;
  line-height: 14px;
  margin-top: 10px;
  display: none;
}

.partner .password-box {
  position: relative;
}

.partner .password-box button {
  position: absolute;
  top: 13px;
  right: 18px;
  width: 24px;
  height: 24px;
  background-image: url("../images/login/unshow.svg");
  background-size: cover;
  background-position: center;
}

.partner .password-box button.show {
  background-image: url("../images/login/show.svg");
}

@media (max-width: 991px) {
  .partner .main .title {
    font-size: 24px;
    line-height: 24px;
  }
  .partner .main .content_modal {
    width: 360px;
  }
  .partner .main .login_form input {
    height: 50px;
  }
  .partner .main .login_form button.btn_submit {
    font-size: 14px;
    line-height: 14px;
    height: 50px;
  }
  .partner .main .content_modal .close_modal img {
    width: 15px;
    height: 15px;
  }
  .partner .main .bg_pc {
    display: none;
  }
  .partner .main .bg_mb {
    display: block;
  }
  .partner .password-box button {
    top: 14px;
    right: 10px;
    width: 20px;
    height: 20px;
  }
}
