@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
html {
  font-size: 18px;
}
@media (max-width: 1199.98px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans", "Noto Sans TC", sans-serif;
  color: #333333;
  font-weight: 400;
  line-height: 1.5;
}

::-moz-selection {
  background: #a7d7fc;
  color: #063152;
}

::selection {
  background: #a7d7fc;
  color: #063152;
}

::-moz-selection {
  background: #a7d7fc;
  color: #063152;
}

[class^=icon-],
[class*=" icon-"] {
  display: inline-block;
  line-height: 100%;
}
[class^=icon-]:before,
[class*=" icon-"]:before {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

a {
  color: #3333cc;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
}
a:hover {
  color: #0000AE;
  text-decoration: underline;
}
a:hover i {
  color: inherit;
}
a:disabled, a.disabled {
  color: #A0A6B2;
  cursor: not-allowed;
}

button {
  border: none;
  background-color: transparent;
}
button:focus {
  outline: 0 !important;
}

input[type=file] {
  display: none;
}

input[type=password]::-ms-reveal {
  display: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.5;
}

p {
  margin: 0;
}

::-moz-placeholder {
  color: #999999;
}

::placeholder {
  color: #999999;
}

/* 移除 Chrome / Safari 的箭頭 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 移除 Firefox 的箭頭 */
input[type=number] {
  -moz-appearance: textfield;
}

.fade-in {
  opacity: 0; /* 初始透明 */
  animation: fadeIn 0.5s ease-in-out forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 15px 50px;
  box-shadow: 0 2px 5px -4px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 996;
}
.header .logo img {
  height: 40px;
  width: auto;
}
.header .login_info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333333;
}
.header .login_info .btn_logout {
  color: #333333;
  cursor: pointer;
}
.header .login_info .btn_logout:hover {
  color: #2494C8;
}
.header .login_info .btn_logout:active {
  color: #1B7AA6;
}
.header .login_info .line {
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #333333;
}
@media (max-width: 1399.98px) {
  .header {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.navbar {
  display: flex;
  align-items: center;
}
.navbar .menu {
  display: flex;
  align-items: center;
}
.navbar .menu .menu-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: center;
  padding: 5px 20px;
}
.navbar .menu .menu-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background: rgba(51, 51, 204, 0.3);
  transition: all 0.3s ease;
}
.navbar .menu .menu-item:first-child::after {
  display: none;
}
.navbar .menu .menu-item .menu-link {
  display: block;
  color: #333333;
  transition: all 0.3s ease;
  cursor: pointer;
}
.navbar .menu .menu-item .menu-link:hover, .navbar .menu .menu-item .menu-link.active {
  color: #3333CC;
  text-decoration: none;
}
.navbar .menu .menu-icon {
  font-size: 26px;
  color: #333333;
  margin-right: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.navbar .menu .menu-icon:hover {
  color: #3333CC;
  text-decoration: none;
}
.navbar .menu .menu-icon:last-child {
  margin-right: 0;
}
@media (max-width: 1399.98px) {
  .navbar {
    display: none;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    z-index: 995;
  }
  .navbar.open {
    display: flex;
    flex-direction: column;
    margin: 0;
    width: 100%;
    max-height: calc(100vh - 70px);
    text-align: center;
    padding: 40px 0;
    background-color: #fff;
    box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.2);
    border-top: 2px solid #F8F9FB;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    animation-name: slideInDown;
    border-radius: 0px 0px 40px 40px;
  }
  .navbar.open .menu {
    flex-direction: column;
    width: 100%;
  }
  .navbar.open .menu .menu-item {
    padding: 10px 20px;
    width: 100%;
  }
  .navbar.open .menu .menu-item::after {
    display: none;
  }
  .navbar.open .menu .menu-item .menu-link {
    font-size: 20px;
  }
  .navbar.open .menu .menu-icon {
    margin-top: 15px;
    font-size: 30px;
  }
}

/* 下拉選單 */
.menu-item .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 150px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.menu-item .dropdown .dropdown-item {
  font-size: 18px;
  display: block;
  padding: 10px 20px;
  transition: background-color 0.2s ease;
}
.menu-item .dropdown .dropdown-item:last-child {
  border-bottom: none;
}
.menu-item .dropdown .dropdown-item:hover {
  color: #3333CC;
  background-color: #F8F9FB;
}

.menu-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header_ham {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 20px;
  top: 15px;
  z-index: 997;
  cursor: pointer;
  display: none;
}
@media (max-width: 1399.98px) {
  .header_ham {
    display: block;
  }
}
.header_ham ._line {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background-color: #707070;
  transition: transform 0.3s ease;
}
.header_ham ._line:nth-child(1) {
  top: 8px;
}
.header_ham ._line:nth-child(2) {
  top: 18px;
}
.header_ham ._line:nth-child(3) {
  top: 28px;
}
.header_ham p {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 12px;
  color: #707070;
  transition: color 0.4s ease;
  margin: 0;
}
.header_ham.open ._line:nth-child(1) {
  top: 20px;
  transform: rotate(-28deg);
}
.header_ham.open ._line:nth-child(2) {
  opacity: 0;
}
.header_ham.open ._line:nth-child(3) {
  width: 100%;
  top: 20px;
  transform: rotate(28deg);
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page_container {
  position: relative;
  width: 100%;
  min-height: calc(100dvh - 70px - 42px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.breadcrumb_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  padding: 15px 8vw;
}
.breadcrumb_wrap .home {
  color: #808080;
  text-decoration: none;
}
.breadcrumb_wrap .home:hover {
  color: #3333CC;
}
.breadcrumb_wrap span {
  position: relative;
  color: #4D4D4D;
  padding-left: 26px;
}
.breadcrumb_wrap span::before {
  content: "";
  width: 10px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  background: #4D4D4D;
}

.page_header {
  position: relative;
}
.page_header img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer_section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #F2F2F2;
  color: #999999;
  font-size: 0.77rem;
  height: 42px;
  gap: 5px;
}

.post_block {
  position: relative;
  padding: 40px 2vw;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199.98px) {
  .post_block {
    padding: 40px 3vw;
  }
}
.post_block .search_block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
  max-width: 70%;
}
@media (max-width: 991.98px) {
  .post_block .search_block {
    max-width: 100%;
    gap: 5px 10px;
  }
}

.post_list {
  list-style: none;
  margin-top: 25px;
  padding: 0;
}

.post_item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #DBDBDB;
  transition: background-color 0.2s;
}
@media (max-width: 991.98px) {
  .post_item {
    flex-direction: column;
    padding: 15px 10px;
    gap: 5px;
  }
}
.post_item:hover {
  background-color: #fafafa;
}
.post_item .post_date {
  position: relative;
  color: #333333;
  min-width: 100px;
  text-align: center;
  margin-right: 20px;
}
.post_item .post_date::after {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background-color: #CCCCCC;
}
@media (max-width: 1199.98px) {
  .post_item .post_date::after {
    transform: translateY(-50%) rotate(30deg);
  }
}
.post_item .post_title {
  color: #333333;
  flex: 1;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  margin-left: 20px;
}
.post_item .post_title:hover {
  color: #3333CC;
}
@media (max-width: 991.98px) {
  .post_item .post_title {
    margin: 0;
    text-align: center;
  }
}
.post_item .post_category {
  min-width: 100px;
  background: rgba(255, 244, 212, 0.8);
  text-align: center;
  margin-left: 20px;
}

.no_data {
  text-align: center;
  color: #B3B3B3;
  padding: 60px 0;
  cursor: default;
}

.btn_more {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333333;
  padding: 5px 0;
}
.btn_more i {
  font-size: 1.3rem;
  color: #B3B3B3;
  transition: all 0.3s ease;
}
.btn_more::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #B3B3B3;
  transition: all 0.2s ease-in-out;
}
.btn_more::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  background: #333333;
  width: 20px;
  height: 1px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn_more:hover::after {
  width: 100%;
}
.btn_more:hover i {
  color: #333333;
}

.btn_search {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 46px;
  padding: 8px;
  border-radius: 50px;
  background: #4D4D4D;
  color: #fff;
  font-size: 24px;
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.16);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.btn_search:hover {
  background: #333333;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12);
}
.btn_search:active {
  background: #121212;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.16) inset;
}
.btn_search:disabled, .btn_search.disabled {
  background: #E0E0E0;
  color: #fff;
  cursor: not-allowed;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.btn_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 26px;
  width: 26px;
  padding: 5px;
  color: #3333CC;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn_icon:hover {
  background-color: #E0E0E0;
}
.btn_icon:active {
  background-color: #CCCCCC;
}
.btn_icon:disabled, .btn_icon.disabled {
  background: #F2F2F3;
  color: #A0A6B2;
  cursor: not-allowed;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.btn_close {
  padding: 6px;
  border-radius: 50%;
  color: #808080;
  transition: all 0.2s ease-in-out;
  pointer-events: auto;
  cursor: pointer;
}
.btn_close:hover {
  background: #F5F6F8;
}
.btn_close._m {
  font-size: 26px;
}
.btn_close._s {
  font-size: 14px;
}

.min_width {
  min-width: 80px;
}

.btn_primary {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3333CC;
  color: #fff;
  padding: 8px 15px;
  border-radius: 15px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.btn_primary:hover {
  background: #0000AE;
}
.btn_primary:active {
  background: #020261;
}
.btn_primary:disabled, .btn_primary.disabled {
  background: #E0E0E0;
}

.btn_primary {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3333CC;
  color: #fff;
  padding: 8px 15px;
  border-radius: 15px;
}

.form_input {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  min-height: 46px;
  background: #fff;
  border: 1px solid #C9CED4;
  border-radius: 10px;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.form_input:focus {
  outline: none;
  border: 1px solid #70B8E0;
  box-shadow: 0 0 0 3px rgba(112, 184, 224, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.08) !important;
}
.form_input:disabled, .form_input.disabled {
  outline: none;
  border: 1.5px solid #CCCCCC;
  background: #F2F4F7;
  cursor: text;
  opacity: 0.8;
}

input[type=date] {
  -webkit-appearance: none; /* 關掉 iOS Safari 原生外觀 */
  -moz-appearance: none;
       appearance: none;
  min-height: 46px;
}

select.form_input {
  padding-left: 10px;
  padding-right: 35px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../Images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px 20px;
  cursor: pointer;
}

.go_top {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 30px;
  padding: 6px;
  font-size: 26px;
  background: rgba(51, 51, 51, 0.5);
  color: #fff;
  border: none;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  z-index: 1000;
}
@media (max-width: 1199.98px) {
  .go_top {
    bottom: 40px;
    right: 10px;
  }
}
.go_top:hover {
  background: rgba(51, 51, 51, 0.7);
}
.go_top.is-visible {
  display: flex;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page_numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  min-height: 35px;
  border-radius: 10px;
  border: 1px solid #E0E0E0;
  background: #fff;
  color: #666666;
  font-size: 0.8rem;
  line-height: 1;
  padding: 0 8px;
  transition: all 0.3s ease-in-out;
}
.page-btn.active {
  border-color: rgba(51, 51, 51, 0.6);
  background: rgba(51, 51, 51, 0.08);
  color: #333333;
  font-weight: 500;
}
.page-btn:hover {
  border-color: rgba(51, 51, 51, 0.4);
  background: rgba(51, 51, 51, 0.05);
  color: #666666;
  text-decoration: none;
}
.page-btn.disabled {
  border-color: transparent;
  background: #F7F7F7;
  color: rgba(51, 51, 51, 0.3);
  cursor: not-allowed;
}

.loading_mask {
  display: none;
  /* 連結動畫容器 */
  /* 兩端的點 */
  /* 中間的線 */
  /* 線條動畫 */
}
.loading_mask.show {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.9) 0%, rgba(230, 244, 255, 0.9) 100%);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
.loading_mask .loading_slogan {
  width: 330px;
  height: auto;
  margin-bottom: 20px;
}
.loading_mask .connect-line {
  position: relative;
  width: 200px;
  height: 10px;
}
.loading_mask .dot {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(51, 51, 204, 0.6);
  transform: translateY(-50%);
}
.loading_mask .dot.start {
  left: 0;
}
.loading_mask .dot.end {
  right: 0;
}
.loading_mask .line {
  position: absolute;
  left: 8px;
  top: 50%;
  height: 2px;
  background: rgba(51, 51, 204, 0.6);
  transform: translateY(-50%);
  width: 0;
  animation: connect 2s ease-in-out infinite;
}
@keyframes connect {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  70% {
    width: calc(100% - 16px);
    opacity: 1;
  }
  100% {
    width: calc(100% - 16px);
    opacity: 0;
  }
}

.modal-content {
  border-radius: 20px;
  overflow: hidden;
}
.modal-content .modal-header {
  background-color: #fff;
  justify-content: space-between;
  height: 60px;
}
.modal-content .modal-header h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.modal-content .modal-footer {
  justify-content: center;
  padding: 8px 0;
  background-color: #fff;
}

.modal-body {
  padding: 40px 60px 50px;
  overflow-y: auto;
  pointer-events: auto;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .modal-body {
    padding: 30px 15px;
  }
}
.modal-body img {
  max-width: 100%;
  height: auto;
}

.modal-xl {
  max-width: 1140px;
}
@media (max-width: 1199.98px) {
  .modal-xl {
    max-width: 100vw;
    margin: 0.5rem;
  }
}
.modal-xl.min_height {
  height: calc(100vh - 3.5rem);
}
@media (max-width: 1199.98px) {
  .modal-xl.min_height {
    height: calc(100vh - 1rem);
  }
}
.modal-xl.min_height .modal-content {
  height: 100%;
}

.modal-lg {
  max-width: 800px;
}
@media (max-width: 991.98px) {
  .modal-lg {
    max-width: 100vw;
    margin: 0.5rem;
  }
}
.modal-lg.min_height {
  height: calc(100vh - 3.5rem);
}
@media (max-width: 991.98px) {
  .modal-lg.min_height {
    height: calc(100vh - 1rem);
  }
}
.modal-lg.min_height .modal-content {
  height: 100%;
}

.modal_full_xl {
  margin: 1.75rem;
  height: calc(100vh - 3.5rem);
  max-width: 100%;
}
.modal_full_xl .modal-content {
  height: 100%;
}
@media (max-width: 1199.98px) {
  .modal_full_xl {
    height: calc(100vh - 1rem);
    margin: 0.5rem;
  }
}

.service_section {
  position: relative;
  /* 左側固定介紹區 */
  /* 右側卡片容器 */
}
.service_section::after {
  background-image: url("data:image/svg+xml;utf8,<svg width='1920' height='41' viewBox='0 0 1920 41' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M175.429 0C500.558 0 804.013 26.3571 1129.14 26.3571C1399.44 26.3571 1654.76 8.14056 1920 1.99613V41H0V2.28241C57.746 0.865331 116.517 0 175.429 0Z' fill='white'/></svg>");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  content: "";
  left: 0;
  position: absolute;
  bottom: -1px;
  width: 100%;
  aspect-ratio: 1680/36;
  z-index: 5;
}
.service_section .intro_panel {
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 450px;
  background: linear-gradient(135deg, #3333CC 35.19%, #060681 92.76%);
  color: white;
  padding: 40px 50px 50px 50px;
  text-align: justify;
}
@media (max-width: 1399.98px) {
  .service_section .intro_panel {
    flex: none;
    padding: 30px 20px 40px;
  }
}
@media (max-width: 991.98px) {
  .service_section .intro_panel::after {
    background-image: url("data:image/svg+xml;utf8,<svg width='1920' height='41' viewBox='0 0 1920 41' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M175.429 0C500.558 0 804.013 26.3571 1129.14 26.3571C1399.44 26.3571 1654.76 8.14056 1920 1.99613V41H0V2.28241C57.746 0.865331 116.517 0 175.429 0Z' fill='%23ECF7FF'/></svg>");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    content: "";
    left: 0;
    position: absolute;
    bottom: -1px;
    width: 100%;
    aspect-ratio: 1680/36;
    z-index: 5;
  }
}
.service_section .intro_panel .bg_intro1 {
  position: absolute;
  top: 0;
  left: 0;
}
.service_section .intro_panel .bg_intro2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.service_section .intro_panel h1 {
  font-size: 1.6rem;
  font-weight: 400;
}
.service_section .intro_panel p {
  font-size: 1.1rem;
  padding: 0;
  margin: 0;
}
.service_section .cards_container {
  flex: 1;
  /* 卡片樣式 */
}
@media (max-width: 991.98px) {
  .service_section .cards_container {
    background: linear-gradient(180deg, #ECF7FF 0%, #AEDAFF 100%);
    margin-left: 0;
    margin-right: 0;
    padding: 20px 20px 50px;
  }
}
@media (max-width: 991.98px) {
  .service_section .cards_container {
    padding: 30px 40px 50px;
  }
}
.service_section .cards_container .card_wrapper {
  background: #fff;
}
.service_section .cards_container .service_card {
  height: 300px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid #fff;
  transition: all 0.3s linear;
  /* 卡片詳細內容 */
  /* 卡片標題 */
}
@media (max-width: 991.98px) {
  .service_section .cards_container .service_card {
    border: none;
    height: auto;
  }
}
.service_section .cards_container .service_card .card_image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}
@media (max-width: 991.98px) {
  .service_section .cards_container .service_card .card_image {
    display: none;
  }
}
.service_section .cards_container .service_card .card_details {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background: linear-gradient(180deg, rgba(51, 51, 204, 0.5) 0%, rgba(6, 6, 129, 0.7) 50%);
  padding: 40px 25px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 3;
}
@media (max-width: 991.98px) {
  .service_section .cards_container .service_card .card_details {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    color: #333333;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0;
    height: 100%;
    border-radius: 40px 20px 20px 20px;
    overflow: hidden;
  }
  .service_section .cards_container .service_card .card_details::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    aspect-ratio: 81/146;
    width: 60px;
    background: url("../Images/dec_circle03.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    z-index: -1;
  }
}
.service_section .cards_container .service_card .card_details h2 {
  position: relative;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 15px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .service_section .cards_container .service_card .card_details h2 {
    color: #3333CC;
    padding: 15px 0 5px;
  }
}
.service_section .cards_container .service_card .card_details ul {
  position: relative;
  padding: 15px;
  font-size: 0.9rem;
  width: 100%;
}
.service_section .cards_container .service_card .card_details ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 1px;
  background: #fff;
}
.service_section .cards_container .service_card .card_details ul li {
  margin: 1px 0;
  text-align: center;
}
@media (max-width: 991.98px) {
  .service_section .cards_container .service_card .card_details ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
    padding: 10px 25px;
  }
  .service_section .cards_container .service_card .card_details ul li {
    padding: 0 10px;
  }
  .service_section .cards_container .service_card .card_details ul::before {
    background: #333333;
  }
}
.service_section .cards_container .service_card .card_details .card_more {
  display: none;
  margin: auto auto 10px;
  padding: 2px 15px;
  border-radius: 50px 0 0 50px;
  background: #fff;
  color: #999999;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.3s ease;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 991.98px) {
  .service_section .cards_container .service_card .card_details .card_more {
    display: inline-block;
  }
  .service_section .cards_container .service_card .card_details .card_more:hover {
    background: rgba(255, 255, 255, 0.8);
  }
}
.service_section .cards_container .service_card .card_title {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  color: white;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.3s ease;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .service_section .cards_container .service_card .card_title {
    display: none;
  }
}
.service_section .cards_container .service_card:hover .card_image, .service_section .cards_container .service_card.auto-hover .card_image {
  transform: scale(1.05);
}
.service_section .cards_container .service_card:hover .card_image::after, .service_section .cards_container .service_card.auto-hover .card_image::after {
  opacity: 1;
}
.service_section .cards_container .service_card:hover .card_details, .service_section .cards_container .service_card.auto-hover .card_details {
  opacity: 1;
  transform: translateY(0);
}
.service_section .cards_container .service_card:hover .card_title, .service_section .cards_container .service_card.auto-hover .card_title {
  opacity: 0;
}

.info_section {
  display: flex;
  padding: 0 90px 30px;
  position: relative;
}
@media (max-width: 1399.98px) {
  .info_section {
    flex-direction: column;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.info_section .activity_block {
  display: flex;
  flex-direction: column;
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.info_section .activity_block .activity_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  padding: 0 clamp(10px, 1.5vw, 25px);
}
.info_section .activity_block .activity_header .index_title {
  height: 68px;
  width: auto;
}
@media (max-width: 1199.98px) {
  .info_section .activity_block .activity_header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .info_section .activity_block .activity_header .index_title {
    width: 100%;
  }
}
.info_section .activity_block .activity_content .activity_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (max-width: 1199.98px) {
  .info_section .activity_block .activity_content .activity_card {
    gap: 5px;
  }
}
.info_section .activity_block .activity_content .activity_card .activity_image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.info_section .activity_block .activity_content .activity_card .activity_image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.info_section .activity_block .activity_content .activity_card .activity_image .activity_overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.4s ease;
}
.info_section .activity_block .activity_content .activity_card .activity_image .activity_overlay span {
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
  background: rgba(246, 144, 129, 0.8);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  will-change: transform, opacity;
}
.info_section .activity_block .activity_content .activity_card .activity_image .activity_overlay span:hover {
  background: #F69081;
}
.info_section .activity_block .activity_content .activity_card .activity_date {
  font-size: 0.9rem;
  color: #0000AE;
}
.info_section .activity_block .activity_content .activity_card .activity_title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.info_section .activity_block .activity_content .activity_card .activity_desc {
  color: #808080;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.info_section .activity_block .activity_content .activity_card:hover {
  background: rgba(241, 178, 169, 0.15);
}
.info_section .activity_block .activity_content .activity_card:hover .activity_image {
  border-radius: 20px;
}
.info_section .activity_block .activity_content .activity_card:hover .activity_image img {
  filter: brightness(0.8);
}
.info_section .activity_block .activity_content .activity_card:hover .activity_image .activity_overlay {
  opacity: 1;
}
.info_section .activity_block .activity_content .activity_card:hover .activity_image .activity_overlay span {
  transform: translateY(0);
  opacity: 1;
}
.info_section .links_block {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 60px 0 0 100px;
}
@media (max-width: 1399.98px) {
  .info_section .links_block {
    padding: 60px 0 30px;
    flex-direction: row;
    justify-content: center;
  }
}
.info_section .links_block a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 65px;
  background: transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
  width: 220px;
  margin-top: 20px;
}
@media (max-width: 1399.98px) {
  .info_section .links_block a {
    margin: 20px 10px 0;
  }
}
.info_section .links_block a:hover {
  transform: translateX(5px);
}
@media (max-width: 1399.98px) {
  .info_section .links_block a:hover {
    transform: translateY(-5px) translateX(0px);
  }
}
.info_section .links_block img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  transition: transform 0.3s ease;
}
.info_section .visitor_count {
  font-size: 0.9rem;
  margin: 50px auto 0;
  color: #808080;
  padding-top: 10px;
  border-top: 1px solid #CCCCCC;
}

.about_descript {
  position: relative;
  width: 100%;
  padding: 0 8vw 90px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.about_descript::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 265px;
  content: "";
  background: url("../Images/dec_wave04.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: -1;
}
.about_descript .about_block {
  position: relative;
}
.about_descript .about_block .descript_text {
  margin-top: 20px;
  margin-left: 3vw;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.22px;
  text-align: justify;
}
.about_descript .about_block .dec_group01 {
  position: absolute;
  bottom: -4vh;
  right: -3vw;
}

.about_section {
  position: relative;
  display: flex;
  background: #FFF7F5;
  padding: 0 8vw 20px;
  gap: 60px;
  flex: 1;
}
.about_section::before {
  position: absolute;
  top: 100px;
  left: -10%;
  aspect-ratio: 215/334;
  height: 500px;
  content: "";
  background: url("../Images/dec_dots01.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.about_section::after {
  position: absolute;
  top: 250px;
  right: 0;
  aspect-ratio: 249/467;
  width: 180px;
  content: "";
  background: url("../Images/dec_group02.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1199.98px) {
  .about_section {
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }
}
.about_section .side {
  position: relative;
  z-index: 1;
  min-width: 180px;
  margin-top: 70px;
}
.about_section .side .title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 1.2rem;
  font-weight: normal;
  color: #666666;
  border-bottom: 2px dashed rgba(246, 144, 129, 0.6);
  padding-bottom: 15px;
}
.about_section .side .title i {
  color: #F69081;
}
.about_section .side .about_nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}
@media (max-width: 1199.98px) {
  .about_section .side .about_nav {
    flex-direction: row;
    justify-content: center;
  }
}
.about_section .side .about_nav .nav_link {
  padding: 10px 25px;
  border-radius: 15px;
  border: 3px solid rgba(246, 144, 129, 0.6);
  background: #fff;
  color: #808080;
  transition: all 0.3s ease;
  cursor: pointer;
}
.about_section .side .about_nav .nav_link:hover {
  background: #FEEFEC;
  color: #F69081;
  box-shadow: 0 2px 6px rgba(246, 144, 129, 0.15);
}
.about_section .side .about_nav .nav_link.active {
  background: #F69081;
  color: #fff;
  box-shadow: 0 3px 8px rgba(246, 144, 129, 0.2);
}
.about_section .about_tab {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% - 180px);
  margin-top: 70px;
  padding: 40px 50px;
  border-radius: 25px;
  border: 3px solid #F1B2A9;
  background: #fff;
}
@media (max-width: 1199.98px) {
  .about_section .about_tab {
    width: 100%;
    margin-top: 0;
    padding: 20px;
  }
}
.about_section .about_tab .tab-pane {
  width: 100%;
}
.about_section .about_tab .basic_info {
  max-width: 900px;
  margin: 0 auto;
}
.about_section .about_tab .basic_info .info_row {
  width: 100%;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 15px;
  padding: 15px 20px;
  border-bottom: 2px dashed #F2F2F2;
}
.about_section .about_tab .basic_info .info_row:last-child {
  border-bottom: none;
}
@media (max-width: 991.98px) {
  .about_section .about_tab .basic_info .info_row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about_section .about_tab .basic_info .info_row .title {
    font-weight: 600;
  }
}
.about_section .about_tab .basic_info .info_row .content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.about_section .about_tab .awards_info .form_group {
  width: 130px;
  margin-bottom: 20px;
  margin-left: auto;
}
.about_section .about_tab .awards_info .awards_list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.about_section .about_tab .awards_info .awards_row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
  padding: 15px 20px;
  border-bottom: 1px solid #F2F2F2;
}
.about_section .about_tab .awards_info .awards_row._header {
  color: #999999;
  padding-bottom: 10px;
}
.about_section .about_tab .awards_info .awards_row .info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.about_section .about_tab .awards_info .awards_row .info .date {
  color: #999999;
  font-size: 0.9rem;
}
.about_section .about_tab .awards_info .awards_row .info .title {
  position: relative;
  padding-left: 15px;
}
.about_section .about_tab .awards_info .awards_row .info .title::before {
  position: absolute;
  left: 0;
  top: 0.3rem;
  font-family: "fontello";
  content: "\e806";
  font-size: 0.5rem;
  color: #B3B3B3;
}
@media (max-width: 991.98px) {
  .about_section .about_tab .awards_info .awards_row {
    grid-template-columns: 1fr;
    padding: 15px 10px;
    gap: 5px;
  }
  .about_section .about_tab .awards_info .awards_row.header {
    display: none;
  }
  .about_section .about_tab .awards_info .awards_row .info {
    gap: 3px;
  }
  .about_section .about_tab .awards_info .awards_row .from {
    text-align: left;
    color: #999999;
    padding-left: 15px;
  }
  .about_section .about_tab .awards_info .awards_row .from::before {
    content: attr(data-label);
    color: #666666;
  }
}
.about_section .dec_wave05 {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.dec_wave03 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.page_container._news {
  background: #F5FAFF;
}
.page_container._news::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 265px;
  content: "";
  background: url("../Images/dec_wave01.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: -1;
}

.news_section {
  position: relative;
  width: 100%;
  padding: 0 8vw 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news_section .dec_dots01 {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: -1;
}
.news_section .dec_wave02 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .news_section .img_block {
    margin-top: 60px;
  }
}
.news_section .img_block img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1199.98px) {
  .news_section .img_block img {
    max-height: 600px;
    margin: 0 auto;
    transform: none;
  }
}

.page_container._activity {
  background: #FCF9F0;
}
.page_container._activity .breadcrumb_wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 265px;
  z-index: 0;
  content: "";
  background: url("../Images/dec_wave01.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  transform: scaleX(-1);
}

.activity_section {
  position: relative;
  width: 100%;
  padding: 0 8vw 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.activity_section .page_header, .activity_section .post_block {
  width: 100%;
  max-width: 1200px;
}
.activity_section::after {
  position: absolute;
  bottom: 0;
  right: 0;
  aspect-ratio: 472/351;
  width: 500px;
  content: "";
  background: url("../Images/dec_group03.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.marquee {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  position: relative;
  background: white;
  cursor: grab;
  touch-action: pan-y; /* 允許垂直滾動，水平由我們控制 */
  /* 操作提示動畫 */
}
.marquee:active {
  cursor: grabbing;
}
.marquee .marquee-track {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  will-change: transform;
}
.marquee .marquee-item {
  flex: 0 0 auto;
  border-radius: 8px;
  position: relative;
}
.marquee .marquee-item img {
  width: auto;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin: 0 5px;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (max-width: 1199.98px) {
  .marquee .marquee-item img {
    height: 150px;
  }
}
.marquee .swipe-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 20px 4vw;
  border-radius: 12px;
  z-index: 10;
  animation: hintFadeIn 0.5s ease-in-out;
  pointer-events: none;
  color: white;
  font-size: 0.9rem;
}
.marquee .swipe-hint .icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.marquee .swipe-hint.hidden {
  animation: hintFadeOut 0.5s ease-in-out forwards;
}
.marquee .hand-icon {
  font-size: 2.77rem;
  animation: swipeAnimation 2s ease-in-out infinite;
}
.marquee .arrow {
  font-size: 2.22rem;
  opacity: 0.6;
}
.marquee .arrow.left {
  animation: arrowLeft 2s ease-in-out infinite;
}
.marquee .arrow.right {
  animation: arrowRight 2s ease-in-out infinite;
}

@keyframes hintFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes hintFadeOut {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}
@keyframes swipeAnimation {
  0% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(-20px);
  }
}
@keyframes arrowLeft {
  0% {
    opacity: 1;
    transform: translateX(-8px);
  }
  50% {
    opacity: 0.3;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-8px);
  }
}
@keyframes arrowRight {
  0% {
    opacity: 0.3;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(8px);
  }
  100% {
    opacity: 0.3;
    transform: translateX(0);
  }
}
.npo_section {
  width: 100%;
  padding: 0 8vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.npo_section .npo_content .npo_bg {
  position: relative;
  display: flex;
  align-items: center;
}
.npo_section .npo_content .npo_bg img {
  width: 120%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: -1;
}
.npo_section .npo_content .npo_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 20px;
  padding: 30px 0;
}
.npo_section .npo_content .npo_link .npo_link_item {
  padding: 8px 25px;
  border-radius: 15px;
  border: 1px solid #E0E0E0;
  background: linear-gradient(103deg, rgba(246, 252, 255, 0.2) 15.91%, rgba(174, 218, 255, 0.2) 82.53%), #FFF;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.05), 2px 2px 6px 0 rgba(0, 0, 0, 0.05), 2px 2px 5px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  color: #333333;
}
.npo_section .npo_content .npo_link .npo_link_item:not(.disabled):not([disabled]):hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(139, 218, 255, 0.4) 100%), #FFF;
  transform: translateY(-3px) scale(1.02);
  border-radius: 15px;
  font-weight: 500;
  text-decoration: none;
}
.npo_section .npo_content .npo_link .npo_link_item i {
  font-size: 1.2rem;
  color: rgba(51, 51, 204, 0.8);
  margin-right: 2px;
}
@media (max-width: 1399.98px) {
  .npo_section .npo_content .npo_bg {
    justify-content: center;
  }
  .npo_section .npo_content .npo_bg img {
    width: auto;
    max-width: 100%;
    max-height: 500px;
  }
  .npo_section .npo_content ul {
    padding: 50px 0;
  }
}

.modal_contact {
  position: relative;
  max-width: 900px;
}
@media (max-width: 991.98px) {
  .modal_contact {
    max-width: 100vw;
    margin: 0.5rem;
  }
}
.modal_contact .btn_close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  font-size: 40px;
}
.modal_contact .btn_close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.03);
}
.modal_contact .btn_close:active {
  transform: scale(0.97);
}
.modal_contact .modal-content {
  border-radius: 30px;
  background: linear-gradient(108deg, rgba(227, 242, 253, 0.78) -19.17%, #AEDAFF 65.68%, #50B1FF 143.91%), #fff;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 #fff inset;
  overflow: hidden;
  padding: 100px 50px 50px;
}
.modal_contact .modal-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -180px;
  transform: translateY(-50%);
  width: 250px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}
.modal_contact .modal-content .modal-body {
  padding: 0;
  overflow-y: auto;
  pointer-events: auto;
  width: 100%;
  text-align: center;
}
.modal_contact .modal-content .logo_white {
  width: 200px;
  margin-top: 40px;
  padding-top: 10px;
  border-top: 2px solid #fff;
}
.modal_contact .contact_link {
  color: #333333;
  cursor: pointer;
  text-decoration: none;
}
.modal_contact .contact_link:hover {
  color: #0000AE;
}

.error-page {
  background: linear-gradient(180deg, rgb(248, 252, 255) 0%, rgb(230, 244, 255) 100%);
  width: 100%;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}
.error-page .err_form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 600px;
}
@media (max-width: 1199.98px) {
  .error-page .err_form {
    max-width: 90%;
    padding: 20px;
  }
}
.error-page .err_form .error_slogan {
  width: 330px;
  height: auto;
}
.error-page .err_form .message {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 40px;
  margin-bottom: 30px;
}/*# sourceMappingURL=main.css.map */