﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
}
@media (max-width: 767.98px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  html {
    font-size: 15px;
  }
}

body {
  margin: 0;
  font-family: "Noto Sans TC", sans-serif;
  color: #101010;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

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

.loading-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 30px;
  font-family: sans-serif;
  z-index: 998;
  transition: all 0.5s;
  display: none;
}
.loading-page.active {
  display: block;
}

.loader-container {
  height: 100vh;
  width: 100%;
  font-family: Helvetica;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  height: 20px;
  width: 250px;
  position: relative;
}

.loader--dot {
  animation-name: loader;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background-color: black;
  position: absolute;
}
.loader--dot:first-child {
  background-color: #8cc759;
  animation-delay: 0.5s;
}
.loader--dot:nth-child(2) {
  background-color: #8c6daf;
  animation-delay: 0.4s;
}
.loader--dot:nth-child(3) {
  background-color: #ef5d74;
  animation-delay: 0.3s;
}
.loader--dot:nth-child(4) {
  background-color: #f9a74b;
  animation-delay: 0.2s;
}
.loader--dot:nth-child(5) {
  background-color: #60beeb;
  animation-delay: 0.1s;
}
.loader--dot:nth-child(6) {
  background-color: #fbef5a;
  animation-delay: 0s;
}

.loader--text {
  position: absolute;
  top: 200%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.loader--text::after {
  content: "Loading";
  font-weight: bold;
  animation-name: loading-text;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes loader {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(230px);
  }
  65% {
    transform: translateX(230px);
  }
  95% {
    transform: translateX(0);
  }
}
@keyframes loading-text {
  0% {
    content: "Loading";
  }
  25% {
    content: "Loading.";
  }
  50% {
    content: "Loading..";
  }
  75% {
    content: "Loading...";
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8549019608);
  z-index: 1000;
}
.modal-overlay.active {
  display: flex;
}

.cus_modal {
  background-color: #fff2f2;
  min-height: 244px;
  width: 500px;
  padding: 80px 50px 30px;
  border-radius: 20px;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575.98px) {
  .cus_modal {
    width: 90vw;
    padding: 30px;
  }
}
.cus_modal h6 {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.05em;
  color: #404040;
  margin: 50px auto;
}
.cus_modal p {
  font-size: 16px;
  margin: 20px 0;
}
.cus_modal .cusClose {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 22px;
  font-size: 20px;
  line-height: 100%;
  background: #ee8dab;
  color: #ffffff;
  cursor: pointer;
  transition: 0.5s;
  border-radius: 10px;
  outline: none;
  border: none;
}
.cus_modal .cusClose:hover {
  background: #ea5f76;
}

.header {
  background: #ffffff;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  width: 100%;
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 991.98px) {
  .header {
    flex-wrap: wrap;
    padding: 12px 0;
  }
}
.header.fixed-top {
  height: 95px;
}
.header .logo {
  margin-left: 60px;
}
.header .logo img {
  height: 42px;
  width: auto;
}
@media (max-width: 991.98px) {
  .header .logo {
    margin-left: 20px;
  }
  .header .logo img {
    height: 34px;
    width: auto;
  }
}
.header .navbar {
  padding: 0;
  display: flex !important;
  flex-basis: auto;
  justify-content: flex-end;
  margin-right: 60px;
  background-color: #ffffff;
}
@media (max-width: 991.98px) {
  .header .navbar {
    flex-basis: 100%;
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .header .navbar.mobile {
    width: 0;
    height: 0;
  }
  .header .navbar.mobile ul {
    display: none;
  }
}
.header .navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
@media (max-width: 991.98px) {
  .header .navbar ul {
    flex-direction: column;
    width: 100%;
    padding: 20px 0 30px;
  }
}
.header .navbar ul li {
  position: relative;
  white-space: nowrap;
  padding: 10px;
}
@media (max-width: 991.98px) {
  .header .navbar ul li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
  }
}
.header .navbar ul li .mask {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.5s;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.header .navbar ul li .mask.active {
  display: flex;
}
.header .navbar ul li .mask .modal_contUS {
  position: relative;
  border-radius: 50px;
  background: #fff3ef;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  padding: 45px 90px 60px 90px;
  text-align: center;
  background: url("../../img/contus_leftbg.svg") no-repeat bottom left, url("../../img/contus_rightTopbg.svg") no-repeat top right, url("../../img/contus_rightbottombg.svg") no-repeat bottom right #fff3ef;
}
.header .navbar ul li .mask .modal_contUS .cont_data {
  margin-top: 60px;
  gap: 40px;
}
.header .navbar ul li .mask .modal_contUS .cont_data .data {
  display: flex;
  flex-direction: column !important;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.header .navbar ul li .mask .modal_contUS .cont_data .data img {
  width: 54px;
  height: 54px;
}
.header .navbar ul li .mask .modal_contUS .btn_close {
  color: #ffffff;
  cursor: pointer;
  font-size: 30px;
  opacity: 0.8;
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 10px;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  background: transparent;
}
.header .navbar ul li .mask .modal_contUS .btn_close:hover {
  opacity: 1;
  background: rgba(16, 16, 16, 0.2);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
}
.header .navbar ul li .mask .modal_contUS .btn_close:active {
  background: rgba(16, 16, 16, 0.3);
}
@media (max-width: 1199.98px) {
  .header .navbar ul li .mask .modal_contUS .btn_close {
    right: 10px;
    top: 10px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.header .navbar .nav-link-cus {
  font-weight: 500;
  font-size: 1.111rem;
  line-height: 24px;
  letter-spacing: 0.01em;
  padding: 0.5rem 1rem;
  color: #381739;
  transition: 0.5s;
  text-decoration: none;
  cursor: pointer;
  display: block;
  border: none;
  outline: none;
  background: transparent;
}
.header .navbar .nav-link-cus:hover {
  color: #f87e5c;
}
.header .navbar .nav-link-cus:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header .navbar .nav-link-cus.active {
  color: #f87e5c;
}
.header .navbar .nav-link-cus.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header .navbar .nav-link-cus:active {
  color: #381739;
}
.header .navbar .nav-link-cus::after {
  content: "";
  position: absolute;
  width: 50%;
  transform: scaleX(0);
  height: 2px;
  bottom: 7px;
  left: 25%;
  background-color: rgba(248, 126, 92, 0.3);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-link-cus::after {
    display: none;
  }
}
.header .navbar .nav_select {
  position: relative;
}
.header .navbar .nav_select .options-function-list {
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
}
.header .navbar .nav_select .options-function-list.active {
  display: flex;
}
.header .navbar .nav_select .options {
  position: absolute;
  border-radius: 10px;
  background: #fff3ef;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15) inset;
  padding: 10px 0;
  list-style: none;
  z-index: 2;
  display: none;
  flex-direction: column;
  left: 50%;
  transform: translate(-50%, 0%);
}
.header .navbar .nav_select .options.active {
  display: flex;
}
@media (max-width: 991.98px) {
  .header .navbar .nav_select .options {
    position: relative;
    width: 95%;
    left: auto;
    transform: none;
  }
}
.header .navbar .nav_select .options a {
  padding: 10px 18px;
  cursor: pointer;
  color: #101010;
  font-size: 1.111rem;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
}
.header .navbar .nav_select .options a:hover {
  background: #f87e5c;
  color: #ffffff;
}
.header .mobile-nav-toggle {
  color: #404040;
  font-size: 1.555rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  outline: none;
  border: none;
  background: transparent;
}
@media (max-width: 991.98px) {
  .header .mobile-nav-toggle {
    display: block;
    margin-right: 20px;
  }
}
.header .mobile-nav-toggle:active {
  color: #ff541e;
}

.intro {
  background: url("../../img/quotebg.png") top center no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: row;
}
@media (max-width: 991.98px) {
  .intro {
    background: url("../../img/quotebg_mobile.png") center no-repeat fixed;
    flex-direction: column;
    padding-bottom: 112px;
  }
}
.intro::after {
  background: url("../../img/wave_white.svg") 0 0 no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  height: 47px;
  left: 0px;
  bottom: -2px;
  width: 100%;
  z-index: 1;
}
.intro .main_quote {
  background: #f87e5c;
  color: #ffffff;
  font-family: Yozai;
  font-size: 1.222rem;
  font-weight: 700;
  isolation: isolate;
  letter-spacing: 1px;
  line-height: 180%;
  min-height: 200px;
  padding: 40px 40px 110px;
  position: relative;
  text-align: justify;
  width: 25%;
}
@media (max-width: 1299.98px) {
  .intro .main_quote {
    width: 32%;
  }
}
@media (max-width: 991.98px) {
  .intro .main_quote {
    padding: 30px 130px 40px 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .intro .main_quote {
    padding: 30px 30px 60px 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.intro .main_quote:after {
  content: "";
  background: url("../../img/fireworks.svg") no-repeat;
  left: -143px;
  opacity: 0.9;
  position: absolute;
  top: -58px;
  z-index: -1;
  width: 287px;
  height: 285px;
}
.intro .main_quote .index_angel {
  bottom: 5px;
  position: absolute;
  right: -16px;
  z-index: 1;
}
.intro .main_quote .main_quote_text {
  width: 100%;
}
.intro .block4 {
  width: 75%;
}
@media (max-width: 1299.98px) {
  .intro .block4 {
    width: 68%;
  }
}
@media (max-width: 991.98px) {
  .intro .block4 {
    border-radius: 10px;
    gap: 10px;
    padding: 26px 20px;
    width: 100%;
  }
}
.intro .block4 .block_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: white;
  transition: all 350ms ease-in-out;
  text-decoration: none;
}
@media (max-width: 1399.98px) {
  .intro .block4 .block_link {
    padding: 10px 20px;
  }
}
@media (max-width: 991.98px) {
  .intro .block4 .block_link {
    padding: 30px 28px;
    border-radius: 10px;
    justify-content: flex-start;
    background: url("../../img/index_block_more_bg.svg") no-repeat bottom right, rgb(255, 255, 255);
    border: 0;
  }
}
.intro .block4 .block_link h2 {
  width: 100%;
  font-size: 1.333rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.28px;
  padding: 20px 0;
  text-align: center;
}
@media (max-width: 991.98px) {
  .intro .block4 .block_link h2 {
    padding: 0;
    color: #f87e5c;
  }
}
.intro .block4 .block_link .desc {
  font-size: 1rem;
  color: white;
  display: none;
  margin-top: 20px;
}
@media (max-width: 991.98px) {
  .intro .block4 .block_link .desc {
    display: block;
    color: #404040;
    margin-top: 4px;
  }
  .intro .block4 .block_link .desc span {
    padding: 0 10px;
  }
}
@media (min-width: 992px) {
  .intro .block4 .block_link:hover {
    background: rgba(255, 137, 105, 0.85);
  }
  .intro .block4 .block_link:hover h2 {
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  }
  .intro .block4 .block_link:hover .desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.intro .block4 .block_link:active {
  background: rgba(255, 84, 30, 0.8);
}

.bodycont {
  padding: 1vh 6vw 2vh;
  position: relative;
  max-width: 100%;
  overflow-x: hidden;
}
.bodycont h2 {
  font-size: 1.555rem;
  font-weight: 800;
  color: #404040;
  margin-bottom: 0;
  margin-left: 35px;
}
.bodycont .btn_more {
  margin-left: 20px;
  border-radius: 50px;
  background: #f87e5c;
  font-size: 0.888rem;
  color: #ffffff;
  line-height: 1;
  padding: 10px 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.15);
  outline: none;
}
.bodycont .btn_more:hover {
  background: rgba(255, 84, 30, 0.8);
}
.bodycont .btn_more:active {
  background: #ff541e;
}
.bodycont .fireworks {
  bottom: 10px;
  opacity: 0.3;
  position: absolute;
  right: -100px;
  width: 287px;
  height: 285px;
  z-index: -1;
}

.reportBox {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-top: 25px;
  padding-bottom: 25px;
  border-radius: 8px;
  cursor: pointer;
}
@media (max-width: 1399.98px) {
  .reportBox {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media (max-width: 991.98px) {
  .reportBox {
    gap: 4px;
    padding: 25px 20px;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.reportBox .title {
  color: #404040;
  text-align: justify;
  font-size: 1.222rem;
  font-weight: 500;
  width: 100%;
}
.reportBox .report_desc {
  font-size: 1rem;
  color: #9a9b9f;
  text-align: justify;
  width: 100%;
  margin: 0 auto;
}
.reportBox .report_desc.row2_hidden {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.reportBox .report_date {
  color: #f87e5c;
  text-align: center;
  font-size: 0.944rem;
  width: 100%;
  margin-top: 12px;
  margin-bottom: 10px;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .reportBox .report_date {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}
.reportBox .photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
}
.reportBox .photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reportBox .photo .hoverstyle {
  position: absolute;
  background: rgba(56, 23, 57, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 350ms ease-in;
  border-radius: 8px;
}
.reportBox .photo .hoverstyle span {
  padding: 4px 16px;
  color: #ffffff;
  background-color: #ff541e;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.reportBox:hover {
  background: rgba(248, 126, 92, 0.15);
}
.reportBox:hover .hoverstyle {
  opacity: 1;
  cursor: pointer;
}
.reportBox:active {
  background: rgba(248, 126, 92, 0.25);
}

.row > .reportBox {
  padding-left: 28px;
  padding-right: 28px;
}
@media (max-width: 991.98px) {
  .row > .reportBox {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.noData {
  display: flex;
  padding: 100px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  font-size: 1.111rem;
  color: #c2c2c2;
  width: 100%;
}

.bodycont_link {
  align-items: center;
  display: flex;
  flex-direction: column !important;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 150px !important;
  padding-right: 0 !important;
  padding-top: 60px !important;
}
.bodycont_link a {
  margin: 0 auto;
}
.bodycont_link a img {
  width: 200px;
  height: auto;
}
.bodycont_link a:hover img {
  transform: scale(1.05);
  transition: all 0.3s;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
@media (max-width: 1399.98px) {
  .bodycont_link {
    padding-left: 80px !important;
  }
}
@media (max-width: 991.98px) {
  .bodycont_link {
    padding-top: 30px;
    padding-left: 0 !important;
    width: 100%;
  }
}
.bodycont_link .people_see {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 14px 10px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 0.888rem;
  color: #404040;
}

.footer {
  display: flex;
  width: 100%;
  height: 70px;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff3ef;
}

.error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  text-align: center;
  gap: 24px;
  background: radial-gradient(ellipse at 15% 20%, rgba(248, 126, 92, 0.12) 0%, transparent 55%), radial-gradient(ellipse at 85% 15%, rgba(238, 141, 171, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(248, 126, 92, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 20% 85%, rgba(238, 141, 171, 0.07) 0%, transparent 45%), #ffffff;
}
.error-page img {
  width: 120px;
  height: auto;
  opacity: 0.4;
  filter: invert(57%) sepia(55%) saturate(550%) hue-rotate(322deg) brightness(108%) contrast(95%);
}
.error-page h1 {
  font-size: 1.555rem;
  font-weight: 700;
  color: #404040;
  margin: 0;
}
.error-page p {
  font-size: 1rem;
  color: #9a9b9f;
  line-height: 1.8;
  margin: 0;
  max-width: 480px;
}
.error-page .btn_back {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 36px;
  border-radius: 50px;
  background: #f87e5c;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
  margin-top: 8px;
}
.error-page .btn_back:hover {
  background: #ff541e;
}

main {
  width: 100%;
  color: #52495e;
  min-height: calc(100vh - 144px);
}

.container_cust {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.container_cust2 {
  width: 90%;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}

.searchBar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  margin-left: 0;
  padding: 20px;
  width: 100%;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .searchBar {
    gap: 12px;
  }
}
.searchBar .select {
  position: relative;
  font-size: 20px;
}
.searchBar .select .form_input {
  padding: 15px 52px 15px 20px;
  width: 100%;
  color: #52495e;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #c2c2c2;
  border-radius: 10px;
  line-height: 150%;
  cursor: pointer;
}
.searchBar .select .form_input:focus {
  outline: 1px solid #f87e5c;
}
.searchBar .select .icon-select_down {
  position: absolute;
  top: 50%;
  right: 10px;
  font-size: 24px;
  color: #828282;
  pointer-events: none;
  transform: translate(0, -50%);
}
.searchBar .select .options {
  opacity: 0;
  pointer-events: none;
  width: 100%;
  min-width: 160px;
  max-height: 275px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #ffffff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.16);
  overflow: auto;
  position: absolute;
  top: calc(100% + 2px);
  z-index: 2;
  white-space: nowrap;
  transition: opacity 0.15s ease;
  border-radius: 10px;
}
.searchBar .select .options.open {
  opacity: 1;
  pointer-events: auto;
  width: 100%;
}
.searchBar .select .options li {
  padding: 10px 5px 10px 20px;
  cursor: pointer;
}
.searchBar .select .options li:hover {
  background: rgba(248, 126, 92, 0.1);
}
.searchBar .select .options li.selected {
  background: rgba(248, 126, 92, 0.15);
  font-weight: 600;
}
.searchBar .input_form {
  position: relative;
}
.searchBar .input_form .form_input {
  width: 100%;
  box-sizing: border-box;
  font-size: 1.111rem;
  background: none;
  border: 1px solid #d2d2d6;
  outline: none;
  border-radius: 10px;
  padding: 15px 52px 15px 20px;
  color: #52495e;
}
.searchBar .input_form .clearBtn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 16px;
  border-radius: 100px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #f87e5c;
  transition: all 0.3s;
}
.searchBar .input_form .clearBtn:hover {
  background: rgba(248, 126, 92, 0.1);
}
.searchBar .btn_search {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: #f87e5c;
  cursor: pointer;
  transition: all 0.3s;
}
.searchBar .btn_search i {
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.searchBar .btn_search:hover {
  transform: scale(1.1);
}
.searchBar .btn_search:active {
  background: #ff541e;
  transform: scale(1.05);
}

.pageData {
  width: 100%;
  display: flex;
  justify-content: center;
}
.pageData ul {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  font-size: 1.222rem;
  list-style: none;
  margin: 0;
  gap: 6px;
}
.pageData ul li {
  color: #404040;
  line-height: 1;
}
.pageData ul li button {
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0 10px;
  height: 30px;
  transition: all 0.3s;
}
.pageData ul li button:hover:not(:disabled):not(.active) {
  background: rgba(255, 84, 30, 0.1);
}
.pageData ul li button:disabled {
  color: #c2c2c2;
  cursor: not-allowed;
}
.pageData ul li button.active, .pageData ul li button:active:not(:disabled) {
  background: rgba(255, 84, 30, 0.7) !important;
  cursor: auto;
  color: #ffffff;
}
.pageData ul li .firstPage,
.pageData ul li .lastPage,
.pageData ul li .previousPage,
.pageData ul li .nextPage {
  width: 72px;
  height: 30px;
  font-size: 0.888rem;
}
.pageData ul li .separator {
  height: 30px;
  color: #c2c2c2;
  margin: 0 2px;
  cursor: default;
}
@media (max-width: 767.98px) {
  .pageData ul {
    padding: 12px 0;
    font-size: 16px;
  }
  .pageData ul li .firstPage,
  .pageData ul li .lastPage,
  .pageData ul li .previousPage,
  .pageData ul li .nextPage {
    width: auto;
    font-size: 12px;
    padding: 0 6px;
  }
}

.about-pagetitle {
  font-size: 2rem;
  font-weight: 600;
  color: #404040;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
}
.about-pagetitle::after {
  position: absolute;
  content: "";
  width: 88px;
  height: 3px;
  background: #f87e5c;
  top: 75%;
  left: 50%;
  transform: translate(-50%, 0);
}
.about-pagetitle::before {
  position: absolute;
  content: "關於明維";
  width: 88px;
  height: 29px;
  color: #9a9b9f;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 1.111rem;
  font-weight: normal;
}

.reward-pagetitle {
  font-size: 2rem;
  font-weight: 600;
  color: #404040;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
}
.reward-pagetitle::after {
  position: absolute;
  content: "";
  width: 88px;
  height: 3px;
  background: #f87e5c;
  top: 75%;
  left: 50%;
  transform: translate(-50%, 0);
}
.reward-pagetitle::before {
  position: absolute;
  content: "關於明維";
  color: #9a9b9f;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 1.111rem;
  font-weight: normal;
}

.fc_job {
  background: url("../../img/quotebg_mobile.png") top center no-repeat;
  background-size: cover;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 991.98px) {
  .fc_job {
    align-items: flex-end;
    padding: 10px 0 30px 0;
    gap: 20px;
  }
}
.fc_job .job_type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 20px;
  background: #ffffff;
  width: 50vw;
  margin: 0 auto;
  padding: 30px;
  position: relative;
  max-width: 800px;
}
@media (max-width: 991.98px) {
  .fc_job .job_type {
    width: 85vw;
    border-radius: 0;
    margin: 0;
    padding: 10px;
  }
}
.fc_job .job_type img {
  position: absolute;
  top: 42px;
  left: -136px;
  width: 143px;
  height: 315px;
}
@media (max-width: 991.98px) {
  .fc_job .job_type img {
    width: 74px;
    height: auto;
    left: -68px;
    top: 20px;
  }
}
.fc_job .job_type article {
  padding: 16px 20px;
  border-bottom: 1px solid #e1e1e1;
  width: 100%;
}
.fc_job .job_type article h4 {
  font-size: 1.333rem;
  font-weight: 600;
  color: #f87e5c;
}
.fc_job .job_type article p {
  padding-left: 26px;
  margin: 12px 0;
  position: relative;
}
.fc_job .job_type article p::before {
  position: absolute;
  content: "►";
  font-size: 17px;
  color: #f87e5c;
  opacity: 0.4;
  width: 16px;
  height: 26px;
  top: 0;
  left: 0;
  font-family: Inter;
}

.reward {
  background: url("../../img/reports_leftbg.svg") no-repeat top left, url("../../img/reports_rightbg.svg") no-repeat top right, #fff3ef;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .reward {
    background-size: 40%;
  }
}
.reward .rewardBlock {
  display: flex;
  padding: 50px 30px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
  width: 1200px;
}
@media (max-width: 1198.98px) {
  .reward .rewardBlock {
    width: 100vw;
    padding: 30px 50px;
    border-radius: 0;
    gap: 10px;
  }
}
.reward .showList {
  width: 100%;
}
.reward .showList .datarow {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 16px 20px;
  text-align: left;
  font-size: 1.111rem;
  border-top: 1px solid #e1e1e1;
  color: #52495e;
  padding-left: 15px;
  transition: background 0.4s ease;
}
.reward .showList .datarow:hover {
  background: rgba(248, 126, 92, 0.08);
}
@media (max-width: 991.98px) {
  .reward .showList .datarow {
    padding: 14px 10px;
    flex-direction: column;
  }
  .reward .showList .datarow .from,
  .reward .showList .datarow .date {
    padding-left: 34px;
  }
}
.reward .showList .datarow > div {
  padding-left: 10px;
  padding-right: 10px;
}
.reward .showList .datarow .col-lg-6 {
  display: flex;
  align-items: flex-start;
}
.reward .showList .datarow .col-lg-6::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: url("../../img/icon_2circle.svg") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
  margin-right: 8px;
  margin-top: 2px;
}
.reward .showList .datarow .from {
  font-size: 1rem;
}
.reward .showList .datarow .date {
  font-size: 1rem;
}

.event-main {
  background: url("../../img/reports_leftbg.svg") no-repeat top left, url("../../img/reports_rightbg.svg") no-repeat top right;
  padding-bottom: 100px;
}

.event-pagetitle {
  font-size: 2rem;
  font-weight: 600;
  color: #404040;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
}
.event-pagetitle::after {
  position: absolute;
  content: "";
  width: 88px;
  height: 3px;
  background: #f87e5c;
  top: 75%;
  left: 50%;
  transform: translate(-50%, 0);
}

.art_banner {
  padding: 0;
  margin: 0;
}

.tabSelect {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tabSelect .link {
  display: flex;
  padding: 18px 20px;
  justify-content: center;
  align-items: center;
  color: #52495e;
  font-size: 1.111rem;
  text-decoration: none;
}
.tabSelect .link.active {
  color: #8a522a;
  font-weight: 700;
  border-bottom: 2px solid #8a522a;
}
.tabSelect .link:hover {
  background: #f0e9de;
}

.art {
  display: flex;
  justify-content: center;
  padding: 50px 0;
  align-items: flex-start;
  gap: 82px;
}
.art.show-art {
  flex-direction: column;
}
.art .art_menu {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .art .art_menu {
    display: none;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 998;
    background-color: #ffffff;
    padding: 30px;
  }
  .art .art_menu.open {
    display: flex;
  }
}
.art .art_menu .btn_close {
  cursor: pointer;
  align-self: flex-end;
  font-size: 24px;
}
.art .art_menu .menu {
  padding: 0 !important;
  list-style-type: none;
  width: 100%;
}
.art .art_menu .menu ul {
  padding: 0 !important;
  display: none;
  list-style: none;
}
.art .art_menu .menu .step1:hover,
.art .art_menu .menu .step2:hover {
  background-color: rgba(248, 126, 92, 0.1);
  cursor: pointer;
}
.art .art_menu .menu .step1 {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.art .art_menu .menu .step1::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../../img/icon_arrow_down.svg") no-repeat center;
  background-size: contain;
  opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}
.art .art_menu .menu .step1.active {
  background: rgba(255, 137, 105, 0.07);
  border-bottom: 2px solid rgba(255, 137, 105, 0.2);
}
.art .art_menu .menu .step1.active::before {
  opacity: 1;
  transform: rotate(180deg);
}
.art .art_menu .menu .step1.active + ul {
  display: block;
  height: auto;
  opacity: 1;
  border-bottom: 2px solid rgba(255, 137, 105, 0.2);
}
.art .art_menu .menu .step1:active {
  background: rgba(255, 84, 30, 0.15);
}
.art .art_menu .menu .step2 {
  display: flex;
  padding: 10px 0 10px 44px;
  align-items: flex-start;
  gap: 2px;
}
.art .art_menu .menu .step2::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background: url("../../img/icon_v.svg") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}
.art .art_menu .menu .step2.active {
  color: #ff541e;
}
.art .art_menu .menu .step2:active {
  background: rgba(255, 84, 30, 0.15);
}
.art .artPortfolio {
  flex-grow: 1;
}
.art .artPortfolio .header_title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 30px;
}
.art .artPortfolio .header_title .type {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #f0e9df;
  color: #8a522a;
  font-size: 1.111rem;
  font-weight: bold;
  margin-right: 10px;
  margin-bottom: 10px;
}
.art .artPortfolio .header_title h2 {
  color: #404040;
  font-weight: bold;
}
.art .artPortfolio .body {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.art .artPortfolio .body div {
  padding: 15px;
  overflow: hidden;
}
.art .artPortfolio .body div img {
  cursor: pointer;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.35s ease-in-out;
}
.art .artPortfolio .body div img:hover {
  transform: scale(1.3);
}
.art .artPortfolio .icon_showartmenu {
  cursor: pointer;
}
.art .artCont {
  display: flex;
  flex-wrap: wrap;
  padding: 0 !important;
}
.art .artCont article {
  padding: 10px !important;
  flex: 0 0 25%;
  max-width: 25%;
}
@media (max-width: 1199.98px) {
  .art .artCont article {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767.98px) {
  .art .artCont article {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.art .artCont article .relArt {
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.art .artCont article .relArt:hover .text_bg {
  height: 100%;
  background: rgba(38, 45, 40, 0.8);
  justify-content: center !important;
}
.art .artCont article .relArt:hover .text_bg h3 {
  font-size: 1.111rem;
}
.art .artCont article .relArt:hover .text_bg .date,
.art .artCont article .relArt:hover .text_bg .btns {
  display: block;
  opacity: 1;
}
.art .artCont article .relArt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.art .artCont article .relArt .text_bg {
  display: flex;
  padding: 10px 18px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end !important;
  gap: 3px;
  background: rgba(38, 45, 40, 0.5);
  color: #ffffff;
  z-index: 1;
  position: relative;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.art .artCont article .relArt .text_bg h3 {
  font-size: 1rem;
  padding: 8px 0;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.art .artCont article .relArt .text_bg .date {
  font-size: 1.111rem;
  display: none;
  opacity: 0;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
}
.art .artCont article .relArt .text_bg .btns {
  padding: 4px 16px;
  border-radius: 50px;
  background: #36a668;
  color: #ffffff;
  display: none;
  opacity: 0;
}
.art .mainTitle {
  font-size: 1.777rem;
  font-weight: bold;
  margin-right: 10px;
  color: #404040;
}

.art-detail-overlay .pop-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.art-detail-overlay .pop-container .btn_close {
  color: #ffffff;
  cursor: pointer;
  font-size: 32px;
  opacity: 0.8;
  position: absolute;
  right: 25px;
  top: 25px;
  padding: 10px;
  z-index: 10;
  transition: all 0.3s;
}
.art-detail-overlay .pop-container .btn_close:hover {
  opacity: 1;
}
.art-detail-overlay .pop-container .btn_close:active {
  transform: scale(0.95);
}
@media (max-width: 991.98px) {
  .art-detail-overlay .pop-container .btn_close {
    top: 0;
    right: 0;
    opacity: 0.7;
    color: #101010;
    border-radius: 0;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
.art-detail-overlay .pop-container .openImage_container {
  max-width: 36vw;
  max-height: 94vh;
  margin: 3vh auto;
  background: #ffffff;
  border-radius: 10px;
  overflow: visible;
  padding: 20px 0;
  position: relative;
}
@media (max-width: 991.98px) {
  .art-detail-overlay .pop-container .openImage_container {
    max-width: 100vw;
    min-height: 100vh;
    overflow: auto;
    margin: 0;
    padding: 50px 0 0 0;
    border-radius: 0;
  }
}
.art-detail-overlay .pop-container .openImage_container.horizontal {
  max-width: 60vw;
}
@media (max-width: 991.98px) {
  .art-detail-overlay .pop-container .openImage_container.horizontal {
    max-width: 100vw;
  }
}
.art-detail-overlay .pop-container .openImage_container .modal_body {
  max-height: 90vh;
  overflow-y: auto;
  padding: 0 20px 60px 20px;
}
@media (max-width: 991.98px) {
  .art-detail-overlay .pop-container .openImage_container .modal_body {
    padding: 0 0 30px 0px;
  }
}
.art-detail-overlay .pop-container .openImage_container .art_photo {
  width: 100%;
  height: auto;
  transition: opacity 0.18s ease;
}
.art-detail-overlay .pop-container .openImage_container .art_photo.switching {
  opacity: 0;
}
.art-detail-overlay .pop-container .openImage_container h3 {
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: rgba(64, 64, 64, 0.7);
}
.art-detail-overlay .pop-container .openImage_container .pageInfo {
  font-size: 16px;
  color: rgba(64, 64, 64, 0.7);
  text-align: right;
}
.art-detail-overlay .pop-container .openImage_container .art_tittle {
  padding: 30px 0 20px 0;
}
.art-detail-overlay .pop-container .openImage_container .art_detail {
  font-size: 18px;
  line-height: 200%;
  text-align: justify;
  color: rgba(64, 64, 64, 0.7);
}
.art-detail-overlay .pop-container .openImage_container .btn_arr {
  opacity: 0.7;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  font-size: 50px;
  color: #ffffff;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
@media (max-width: 991.98px) {
  .art-detail-overlay .pop-container .openImage_container .btn_arr {
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
    font-size: 30px;
    width: 50px;
    height: 50px;
  }
}
.art-detail-overlay .pop-container .openImage_container .pre,
.art-detail-overlay .pop-container .openImage_container .next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  padding: 50px 10px;
  height: 80vh;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
.art-detail-overlay .pop-container .openImage_container .pre .btn_txt,
.art-detail-overlay .pop-container .openImage_container .next .btn_txt {
  font-size: 14px;
  margin-top: 8px;
  opacity: 0.3;
}
@media (max-width: 991.98px) {
  .art-detail-overlay .pop-container .openImage_container .pre .btn_txt,
  .art-detail-overlay .pop-container .openImage_container .next .btn_txt {
    display: none;
  }
}
.art-detail-overlay .pop-container .openImage_container .pre:hover .btn_arr,
.art-detail-overlay .pop-container .openImage_container .next:hover .btn_arr {
  opacity: 1;
  background: rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}
.art-detail-overlay .pop-container .openImage_container .pre:hover:active,
.art-detail-overlay .pop-container .openImage_container .next:hover:active {
  background: rgba(0, 0, 0, 0.6);
}
.art-detail-overlay .pop-container .openImage_container .pre:hover .btn_txt,
.art-detail-overlay .pop-container .openImage_container .next:hover .btn_txt {
  opacity: 1;
}
.art-detail-overlay .pop-container .openImage_container .pre {
  left: -60px;
  transform: translate(-50%, -50%);
}
@media (max-width: 991.98px) {
  .art-detail-overlay .pop-container .openImage_container .pre {
    height: 30vh;
    left: 15px;
    padding: 0;
    transform: translateY(-50%);
  }
}
.art-detail-overlay .pop-container .openImage_container .next {
  right: -60px;
  transform: translate(50%, -50%);
}
@media (max-width: 991.98px) {
  .art-detail-overlay .pop-container .openImage_container .next {
    height: 30vh;
    padding: 0;
    right: 15px;
    transform: translateY(-50%);
  }
}

.aes-banner {
  position: relative;
}
.aes-banner h1 {
  position: absolute;
  top: -200px;
  left: -100px;
  font-size: 2px;
  color: rgba(255, 255, 255, 0.1);
}

.maintThing {
  padding: 50px 0;
  width: 100%;
  position: relative;
}
.maintThing::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 388px;
  height: 213px;
  background: url("../../img/aesthetics_onlydot.svg") no-repeat center center;
}
.maintThing .thingBox {
  display: flex;
  width: 1000px;
  align-items: flex-start;
  gap: 60px;
  flex-shrink: 0;
  border-radius: 20px;
  box-shadow: 0px 12px 11px 0px rgba(143, 146, 141, 0.15);
  padding: 62px 54px 62px 126px;
  background: #f2f2f1;
  position: relative;
}
@media (max-width: 991.98px) {
  .maintThing .thingBox {
    width: 90%;
    padding: 50px 30px 30px 30px;
    gap: 30px;
  }
}
@media (max-width: 575.98px) {
  .maintThing .thingBox {
    flex-direction: column;
    gap: 20px;
  }
}
.maintThing .thingBox img.photo {
  z-index: 1 !important;
  width: 280px;
  margin: 0 auto;
}
.maintThing .thingBox .titleImg {
  position: absolute;
  top: 0;
  left: 0;
}
.maintThing .thingBox .cont {
  padding-top: 120px;
  text-align: justify;
  font-size: 1.111rem;
  line-height: 170%;
  letter-spacing: 1px;
  color: #404040;
}
@media (max-width: 991.98px) {
  .maintThing .thingBox .cont {
    padding-top: 90px;
  }
}
.maintThing .thingBox::before {
  position: absolute;
  content: "";
  top: -25px;
  right: -17px;
  width: 105px;
  height: 146px;
  background: url("../../img/aesthetics_main_ball.svg") no-repeat center center;
  z-index: 0 !important;
}
.maintThing .thingBox.b01 {
  margin: 30px 350px 30px 0;
}
@media (max-width: 1199.98px) {
  .maintThing .thingBox.b01 {
    margin: 30px 0;
  }
}
.maintThing .thingBox.b02 {
  margin: 30px 0 30px 350px;
}
.maintThing .thingBox.b02::after {
  position: absolute;
  content: "";
  background: url("../../img/aesthetics_treedot.svg") no-repeat center center;
  width: 549px;
  height: 613px;
  top: 120px;
  left: -539px;
  z-index: 0 !important;
}
@media (max-width: 1199.98px) {
  .maintThing .thingBox.b02 {
    margin: 30px 0;
  }
  .maintThing .thingBox.b02::after {
    width: 225px;
    height: 306px;
    top: 120px;
    left: -225px;
    background-size: 100%;
  }
}
.maintThing .thingBox.b03 {
  margin: 30px 100px 30px 0;
}
@media (max-width: 1199.98px) {
  .maintThing .thingBox.b03 {
    margin: 30px 0;
  }
}

.aes-event {
  padding: 50px 0 100px;
}

.learn-banner {
  background: url("../../img/learn_banner_bg.png") no-repeat top center;
  background-size: contain;
  position: relative;
  padding: 60px 10px 80px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  color: #404040;
  font-size: 1.111rem;
  line-height: 180%;
  letter-spacing: 1px;
}
@media (max-width: 991.98px) {
  .learn-banner {
    background: url("../../img/learn_banner_bg.png") no-repeat top left;
    background-size: cover;
    padding: 60px 30px 80px 30px;
    gap: 30px;
  }
}
.learn-banner h1 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 21px;
}

.learn-educational {
  padding: 52px 10px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .learn-educational {
    flex-direction: row;
  }
}
.learn-educational h2 {
  font-weight: 700;
  font-size: 2rem;
}
.learn-educational .learn_cont {
  padding: 10px 10px 10px 26px;
  margin: 12px 0;
  position: relative;
  font-size: 1.111rem;
  max-width: 768px;
}
.learn-educational .learn_cont::before {
  position: absolute;
  content: "►";
  font-size: 17px;
  color: #f87e5c;
  opacity: 0.4;
  width: 16px;
  height: 26px;
  top: 10px;
  left: 0;
  font-family: Inter;
}
.learn-educational .learn_cont .img_tree {
  position: absolute;
  top: -111px;
  right: 0;
}
@media (max-width: 1199.98px) {
  .learn-educational .learn_cont .img_tree {
    width: 100px;
    top: -80px;
  }
}

.learn-article {
  flex-grow: 1;
}

.learn-pro {
  padding: 100px 10px;
  background: url("../../img/learn_pro_bg_right.svg") no-repeat top left, url("../../img/learn_pro_bg_rt.svg") no-repeat top right, url("../../img/learn_pro_bg_rb.svg") no-repeat bottom right #fff8f3;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .learn-pro {
    flex-direction: row;
  }
}
@media (max-width: 991.98px) {
  .learn-pro {
    background: url("../../img/learn_pro_bg_right.svg") no-repeat top left, #fff8f3;
  }
}
.learn-pro h2 {
  font-weight: 700;
  font-size: 2rem;
}
.learn-pro .pro_cont {
  display: flex;
  padding: 30px 20px;
  margin: 20px 40px 20px 0;
  align-items: center;
  gap: 10px;
  font-size: 1.111rem;
  border-radius: 30px;
  border: 1px solid #ecb39a;
  background: #fff;
  max-width: 516px;
}
@media (max-width: 991.98px) {
  .learn-pro .pro_cont {
    margin: 20px;
  }
}
@media (max-width: 575.98px) {
  .learn-pro .pro_cont {
    margin: 20px 0;
    padding: 12px 16px;
  }
}

.sc-banner {
  position: relative;
}
.sc-banner .bannerIMG {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.sc-banner h1 {
  position: absolute;
  top: -500px;
  left: -500px;
  opacity: 0.1;
}
.sc-banner article {
  background: #f9f6f4;
  margin-top: 13px;
  padding: 0 70px;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (min-width: 1200px) {
  .sc-banner article {
    flex-direction: row;
  }
}
@media (max-width: 767.98px) {
  .sc-banner article {
    padding: 0 30px;
  }
}
@media (max-width: 575.98px) {
  .sc-banner article {
    padding: 0 10px;
  }
}
.sc-banner .titleIMG {
  transform: translate(0, -42px);
}
.sc-banner .sc-contBox {
  padding: 42px 30px 30px 30px;
}
@media (max-width: 767.98px) {
  .sc-banner .sc-contBox {
    transform: translate(0, -42px);
    padding: 0;
  }
}
.sc-banner .sc-contBox div {
  font-size: 1.222rem;
  font-weight: 700;
  line-height: 200%;
  padding: 3px 0;
  color: #40290d;
}

.sc-cont {
  padding: 100px 0;
  position: relative;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .sc-cont {
    padding: 30px 0;
  }
}
.sc-cont::before {
  z-index: -1;
  position: absolute;
  background: url("../../img/social_ar2_bg.svg") no-repeat center right;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.sc-cont h2 {
  color: #8a522a;
  font-size: 1.555rem;
  font-weight: 700;
}
.sc-cont article {
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .sc-cont article {
    flex-direction: row;
  }
}
.sc-cont .sc-ar2 {
  position: relative;
  padding-left: 8%;
  padding-right: 8%;
}
.sc-cont .sc-ar2::before {
  content: "";
  height: 152px;
  width: 92px;
  position: absolute;
  right: 0;
  top: 100px;
  z-index: 1;
  display: block;
  background: url("../../img/soical_opeople.svg") no-repeat;
}
@media (max-width: 991.98px) {
  .sc-cont .sc-ar2::before {
    display: none;
  }
}
.sc-cont .sc-ar2 .sc-contBox2 {
  text-align: justify;
  font-size: 1.111rem;
  line-height: 170%;
  padding: 60px 30px;
  gap: 10px;
  transform: translate(-70px, 0);
  background: #ffffff;
  flex-grow: 1;
}
@media (max-width: 1398.98px) {
  .sc-cont .sc-ar2 .sc-contBox2 {
    transform: translate(-50px, 0);
    padding: 50px 20px;
  }
}
@media (max-width: 1198.98px) {
  .sc-cont .sc-ar2 .sc-contBox2 {
    transform: translate(0, 0);
    background: transparent;
  }
}
.sc-cont .ar1_title {
  font-size: 1.555rem;
  font-weight: 700;
  color: #8a522a;
}
.sc-cont .sc-contBox3 {
  text-align: justify;
  font-size: 1.111rem;
  line-height: 170%;
  margin-top: 50px;
  flex-grow: 1;
}
.sc-cont .sc-img_action {
  padding-left: 50px;
}
.sc-cont .sc-ar2 {
  /* same row */
}
.sc-cont .sc-ar3 {
  margin-top: 100px;
}
.sc-cont .sc-contBox4 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.111rem;
  line-height: 170%;
}
.sc-cont .sc-contBox4 .text {
  padding-left: 70px;
  padding-right: 70px;
  padding-top: 30px;
  padding-bottom: 10px;
}
@media (max-width: 1198.98px) {
  .sc-cont .sc-contBox4 .text {
    padding: 30px 40px;
  }
}

.hit_btn_group {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  gap: 8px;
  background: rgba(52, 51, 51, 0.5);
  border-radius: 30px 0 0 0;
  bottom: 0px;
  right: 0;
  position: fixed;
  padding: 15px 20px;
}
.hit_btn_group .btn_hit {
  padding: 4px 12px;
  border-radius: 10px;
  background: white;
  color: #383838;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
}
.hit_btn_group .btn_hit:hover {
  background: #ff9d00;
  color: white;
}
