@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap");
* {
  font-family: "Noto Sans TC", sans-serif;
}

html {
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background: transparent;
}

.grecaptcha-badge {
  visibility: hidden;
}

.section-panel {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.section-desktop-bg,
.section-mobile-bg {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}
.section-desktop-bg img,
.section-mobile-bg img {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

@media (max-width: 1024px) {
  .section-desktop-bg {
    display: none;
  }
}

.section-mobile-bg {
  display: none;
}
@media (max-width: 1024px) {
  .section-mobile-bg {
    display: block;
  }
  .section-mobile-bg img {
    height: 165vh;
  }
}

.read-more-btn {
  position: absolute;
  top: 73%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.section-more-btn {
  width: 200px;
  text-align: center;
  color: #000;
  display: block;
  padding: 10px 0px;
  border: 1px solid #000;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
}
.section-more-btn:hover {
  color: #fff;
  background: #000;
}

.container-fluid {
  width: 85%;
  margin: 0 auto;
}
@media (max-width: 450px) {
  .container-fluid {
    width: 100%;
  }
}

.load-page {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 10;
}
.load-page svg {
  fill: #fff;
  stroke: transparent;
  visibility: hidden;
}
.load-page .progress-bar {
  width: 0%;
  height: 10px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

.video-mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.video-bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 450px) {
  .video-bg {
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 1024px) {
  #desktop-video {
    display: none;
  }
}

#mobile-video {
  display: none;
}
@media (max-width: 1024px) {
  #mobile-video {
    display: initial;
  }
}

.index-top-fixbar {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 8;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 50px;
  visibility: hidden;
}
@media (max-width: 1536px) {
  .index-top-fixbar {
    top: 30px;
  }
}
@media (max-width: 450px) {
  .index-top-fixbar {
    top: 0px;
  }
}
.index-top-fixbar #fixbar-logo {
  width: 25%;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .index-top-fixbar #fixbar-logo {
    width: 50%;
    flex-direction: column;
    margin: 0 auto;
  }
}
@media (max-width: 450px) {
  .index-top-fixbar #fixbar-logo {
    width: 80%;
  }
}
.index-top-fixbar #fixbar-menu {
  cursor: pointer;
}
@media (max-width: 1024px) {
  .index-top-fixbar #fixbar-menu {
    display: none;
  }
}
.index-top-fixbar svg {
  margin-right: 10px;
  fill: #fff;
  stroke: transparent;
}
@media (max-width: 1024px) {
  .index-top-fixbar svg {
    margin: 10px 0;
  }
}
@media (max-width: 450px) {
  .index-top-fixbar svg:first-child {
    width: 125px;
  }
}

.index-banner-swiper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}
.index-banner-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index-banner-swiper .swiper-slide h2,
.index-banner-swiper .swiper-slide p {
  width: 60%;
  color: #fff;
  text-align: center;
  text-shadow: 0.3 0.3 0.3 #000;
  opacity: 0;
  transition: all 1s;
}
@media (max-width: 450px) {
  .index-banner-swiper .swiper-slide h2,
  .index-banner-swiper .swiper-slide p {
    width: 90%;
  }
}
.index-banner-swiper .swiper-slide h2 {
  letter-spacing: 10px;
  font-size: 80px;
  font-weight: 300;
  margin-bottom: 20px;
  transform: translateY(-100px);
}
@media (max-width: 1536px) {
  .index-banner-swiper .swiper-slide h2 {
    font-size: 60px;
  }
}
@media (max-width: 450px) {
  .index-banner-swiper .swiper-slide h2 {
    font-size: 30px;
  }
}
.index-banner-swiper .swiper-slide p {
  font-size: 22px;
  font-weight: 100;
  transform: translateY(100px);
}
@media (max-width: 1536px) {
  .index-banner-swiper .swiper-slide p {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .index-banner-swiper .swiper-slide p {
    font-size: 14px;
  }
}
.index-banner-swiper .swiper-slide-active h2,
.index-banner-swiper .swiper-slide-active P {
  transform: translateY(0);
  opacity: 1;
}
.index-banner-swiper .swiper-pagination {
  width: 20%;
  bottom: 30px;
  left: initial;
  right: 165px;
  text-align: right;
}
@media (max-width: 1536px) {
  .index-banner-swiper .swiper-pagination {
    right: 50px;
  }
}
@media (max-width: 1024px) {
  .index-banner-swiper .swiper-pagination {
    text-align: center;
    right: initial;
    left: 50%;
    bottom: 20%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 450px) {
  .index-banner-swiper .swiper-pagination {
    width: 100%;
  }
}
.index-banner-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #fff;
  opacity: 1;
}
.index-banner-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.mouse-horizontally {
  position: absolute;
  bottom: 65px;
  right: 190px;
  z-index: 3;
}
@media (max-width: 1536px) {
  .mouse-horizontally {
    right: 80px;
  }
}
@media (max-width: 1024px) {
  .mouse-horizontally {
    display: none;
  }
}
.mouse-horizontally svg {
  fill: #fff;
  stroke: transparent;
}

.mouse-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1536px) {
  .mouse-down {
    bottom: 10px;
  }
}
.mouse-down .mouse-down-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mouse-down span {
  color: #fff;
  margin: 2px;
  font-size: 16px;
  font-weight: 100;
}
.mouse-down span:first-child {
  letter-spacing: 2px;
}
.mouse-down a {
  display: flex;
  flex-direction: column;
  align-items: center;
  visibility: hidden;
}
.mouse-down svg {
  fill: #fff;
  stroke: transparent;
  margin: 5px;
}
@media (max-width: 1280px) {
  .mouse-down svg:first-child {
    display: none;
  }
}

.fix-btn {
  position: fixed;
  left: 50px;
  bottom: 30px;
  z-index: 8;
  display: flex;
  align-items: center;
}
@media (max-width: 450px) {
  .fix-btn {
    left: 10px;
  }
}
.fix-btn #contact-menu {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  background: transparent;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  visibility: hidden;
}
.fix-btn #contact-menu svg {
  fill: #fff;
  stroke: transparent;
}
.fix-btn .phone-btn {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
@media (max-width: 1024px) {
  .fix-btn .phone-btn {
    display: none;
  }
}
.fix-btn .phone-btn span {
  letter-spacing: 2px;
}
.fix-btn .phone-btn span:first-child {
  font-size: 18px;
}
.fix-btn .phone-btn span:last-child {
  font-size: 22px;
}

.m-fix-menu {
  display: none;
}
@media (max-width: 1280px) {
  .m-fix-menu {
    display: initial;
    position: fixed;
    right: 50px;
    bottom: 40px;
    z-index: 8;
  }
  .m-fix-menu svg {
    fill: #fff;
    stroke: transparent;
  }
}
@media (max-width: 450px) {
  .m-fix-menu {
    right: 10px;
    bottom: 30px;
  }
}

.know-ue-section .mouse-down span {
  color: #333333;
}
.know-ue-section .mouse-down svg {
  fill: #333333;
}

.know-us-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.know-us-content > span {
  font-size: 100px;
  font-weight: 300;
  letter-spacing: 10px;
  margin-bottom: 20px;
}
@media (max-width: 1536px) {
  .know-us-content > span {
    font-size: 70px;
  }
}
@media (max-width: 450px) {
  .know-us-content > span {
    display: none;
  }
}
.know-us-content > h3 {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 40px;
}
@media (max-width: 1536px) {
  .know-us-content > h3 {
    font-size: 46px;
  }
}
@media (max-width: 450px) {
  .know-us-content > h3 {
    font-size: 30px;
  }
}
.know-us-content > P {
  width: 60%;
  font-size: 18px;
  font-weight: 100;
  text-align: center;
}
@media (max-width: 1536px) {
  .know-us-content > P {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .know-us-content > P {
    width: 90%;
    font-size: 14px;
  }
}

.execution-section .mouse-horizontally {
  right: 190px;
}
@media (max-width: 1536px) {
  .execution-section .mouse-horizontally {
    right: 155px;
  }
}
@media (max-width: 1280px) {
  .execution-section .mouse-horizontally {
    right: 130px;
  }
}
.execution-section .mouse-horizontally svg {
  fill: #10429a;
}
.execution-section .mouse-down span {
  color: #333333;
}
.execution-section .mouse-down svg {
  fill: #333333;
}
.execution-section .section-more-btn {
  color: #fff;
  background: #10429a;
  border: none;
}
.execution-section .section-more-btn:hover {
  color: #10429a;
  background: transparent;
  border: 1px solid #10429a;
}

.index-case-swiper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 82%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 450px) {
  .index-case-swiper {
    width: 90%;
  }
}
.index-case-swiper .swiper-wrapper {
  height: 40%;
}
@media (max-width: 1280px) {
  .index-case-swiper .swiper-wrapper {
    height: 35%;
  }
}
@media (max-width: 1024px) {
  .index-case-swiper .swiper-wrapper {
    height: 40%;
  }
}
.index-case-swiper .swiper-slide {
  height: calc((100% - 30px) / 2) !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .index-case-swiper .swiper-slide {
    height: calc((100% - 30px) / 3) !important;
    margin-bottom: 10px;
  }
}
.index-case-swiper .swiper-slide .case-card {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(16, 66, 154, 0.8), rgba(16, 66, 154, 0.5));
  padding: 20px;
  border-radius: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1280px) {
  .index-case-swiper .swiper-slide .case-card {
    padding: 10px;
  }
}
@media (max-width: 450px) {
  .index-case-swiper .swiper-slide .case-card {
    font-size: 14px;
  }
}
.index-case-swiper .swiper-slide .case-card .card-top {
  display: flex;
  align-items: flex-start;
}
.index-case-swiper .swiper-slide .case-card .card-top i {
  font-size: 24px;
  margin-right: 10px;
  padding-top: 2px;
}
.index-case-swiper .swiper-slide .case-card .card-bottom {
  display: flex;
}
.index-case-swiper .swiper-slide .case-card .card-bottom > div {
  margin-right: 10px;
}
.index-case-swiper .swiper-pagination {
  width: 20%;
  bottom: 30px;
  left: initial;
  right: 0px;
  text-align: right;
}
@media (max-width: 1024px) {
  .index-case-swiper .swiper-pagination {
    right: initial;
    left: 50%;
    bottom: 13%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
}
@media (max-width: 450px) {
  .index-case-swiper .swiper-pagination {
    width: 100%;
  }
}
.index-case-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #10429a;
  opacity: 1;
}
.index-case-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #10429a;
}

.section-top-text .left-count-text {
  position: absolute;
  top: 10%;
  left: 170px;
  z-index: 4;
  display: flex;
  align-items: center;
}
@media (max-width: 1536px) {
  .section-top-text .left-count-text {
    left: 135px;
  }
}
@media (max-width: 1280px) {
  .section-top-text .left-count-text {
    left: 110px;
  }
}
@media (max-width: 1024px) {
  .section-top-text .left-count-text {
    width: 100%;
    justify-content: center;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 450px) {
  .section-top-text .left-count-text {
    width: 100%;
    text-align: center;
    justify-content: space-evenly;
  }
}
.section-top-text .left-count-text .left {
  display: flex;
  flex-direction: column;
  color: #10429a;
}
.section-top-text .left-count-text .left span:first-child {
  font-size: 54px;
  font-weight: 300;
}
@media (max-width: 1536px) {
  .section-top-text .left-count-text .left span:first-child {
    font-size: 48px;
  }
}
@media (max-width: 1280px) {
  .section-top-text .left-count-text .left span:first-child {
    font-size: 36px;
  }
}
.section-top-text .left-count-text .left span:last-child {
  font-size: 36px;
  font-weight: 100;
}
@media (max-width: 1536px) {
  .section-top-text .left-count-text .left span:last-child {
    font-size: 32px;
  }
}
@media (max-width: 1280px) {
  .section-top-text .left-count-text .left span:last-child {
    font-size: 24px;
  }
}
.section-top-text .left-count-text .right {
  color: #10429a;
  font-size: 100px;
  margin-left: 20px;
}
@media (max-width: 1280px) {
  .section-top-text .left-count-text .right {
    font-size: 80px;
  }
}
@media (max-width: 450px) {
  .section-top-text .left-count-text .right {
    margin-left: 5px;
    font-size: 60px;
  }
}
.section-top-text .right-title-text {
  position: absolute;
  top: 10%;
  right: 170px;
  z-index: 4;
}
@media (max-width: 1536px) {
  .section-top-text .right-title-text {
    right: 135px;
  }
}
@media (max-width: 1280px) {
  .section-top-text .right-title-text {
    right: 110px;
  }
}
.section-top-text .right-title-text span {
  font-size: 120px;
  font-weight: 300;
  color: #10429a;
}
@media (max-width: 1536px) {
  .section-top-text .right-title-text span {
    font-size: 100px;
  }
}
@media (max-width: 1280px) {
  .section-top-text .right-title-text span {
    font-size: 80px;
  }
}
@media (max-width: 1024px) {
  .section-top-text .right-title-text span {
    display: none;
  }
}

.completed-section .mouse-horizontally {
  right: 190px;
}
@media (max-width: 1536px) {
  .completed-section .mouse-horizontally {
    right: 155px;
  }
}
@media (max-width: 1280px) {
  .completed-section .mouse-horizontally {
    right: 130px;
  }
}
.completed-section .mouse-horizontally svg {
  fill: #ff9200;
}
.completed-section .mouse-down span {
  color: #333333;
}
.completed-section .mouse-down svg {
  fill: #333333;
}
.completed-section .section-top-text .left-count-text .left {
  color: #ff9200;
}
.completed-section .section-top-text .left-count-text .right {
  color: #ff9200;
}
.completed-section .section-top-text .right-title-text span {
  color: #ff9200;
}
.completed-section .section-more-btn {
  color: #fff;
  background: #ff9200;
  border: none;
}
.completed-section .section-more-btn:hover {
  color: #ff9200;
  background: transparent;
  border: 1px solid #ff9200;
}
.completed-section .index-case-swiper .swiper-slide .case-card {
  background: linear-gradient(to bottom, rgba(255, 146, 0, 0.8), rgba(255, 146, 0, 0.5));
}
.completed-section .index-case-swiper .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #ff9200;
}
.completed-section .index-case-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #ff9200;
}

.completed-mark {
  position: absolute;
  bottom: 30px;
  right: 40px;
  transform: rotate(-15deg);
  color: #ff0000;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 4px;
  text-shadow: 0.3px 0.3px 3px #000;
}
@media (max-width: 1280px) {
  .completed-mark {
    font-size: 24px;
  }
}

.form-content {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0px 150px;
  padding-bottom: 20px;
}
@media (max-width: 1536px) {
  .form-content {
    padding: 0 100px;
    padding-bottom: 10px;
  }
}
@media (max-width: 1280px) {
  .form-content {
    padding: 0 60px;
  }
}
@media (max-width: 1024px) {
  .form-content {
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .form-content {
    justify-content: end;
    padding-bottom: 30px;
  }
}
@media (max-width: 450px) {
  .form-content {
    width: 90%;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    justify-content: space-evenly;
    padding: 0;
    padding-top: 25%;
  }
}

.top-text {
  display: flex;
  align-items: flex-start;
}
.top-text .left-text {
  font-size: 120px;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 6px;
  margin-right: 6px;
}
@media (max-width: 1536px) {
  .top-text .left-text {
    font-size: 80px;
    letter-spacing: 4px;
    margin-right: 4px;
  }
}
@media (max-width: 1280px) {
  .top-text .left-text {
    font-size: 56px;
    letter-spacing: 2px;
    margin-right: 2px;
  }
}
@media (max-width: 1024px) {
  .top-text .left-text {
    display: none;
  }
}
.top-text .right-text {
  display: flex;
  flex-direction: column;
  padding-top: 14px;
}
@media (max-width: 1536px) {
  .top-text .right-text {
    padding-top: 4px;
  }
}
@media (max-width: 1280px) {
  .top-text .right-text {
    padding-top: 2px;
    text-align: center;
  }
}
.top-text .right-text span {
  font-size: 16px;
  font-weight: 300;
}
.top-text .right-text span:first-child {
  font-size: 44px;
  letter-spacing: 4px;
}
@media (max-width: 1536px) {
  .top-text .right-text span:first-child {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .top-text .right-text span:first-child {
    font-size: 22px;
  }
}

.form-title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 1536px) {
  .form-title {
    font-size: 20px;
  }
}
@media (max-width: 1280px) {
  .form-title {
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 4px;
  }
}
@media (max-width: 450px) {
  .form-title {
    font-size: 12px;
  }
}

@media (max-width: 450px) {
  .center-form {
    width: 100%;
  }
}
.center-form .form-name,
.center-form .form-address,
.center-form .form-phone,
.center-form .form-mail,
.center-form .form-answer {
  margin: 10px 0;
}
@media (max-width: 1280px) {
  .center-form .form-name,
  .center-form .form-address,
  .center-form .form-phone,
  .center-form .form-mail,
  .center-form .form-answer {
    margin: 5px 0;
  }
}
@media (max-width: 1024px) {
  .center-form .form-name,
  .center-form .form-address,
  .center-form .form-phone,
  .center-form .form-mail {
    width: 100%;
  }
}
.center-form .form-name label,
.center-form .form-address label,
.center-form .form-phone label,
.center-form .form-mail label {
  display: inline-block;
  width: 125px;
  text-align: right;
  margin-right: 10px;
  color: #333333;
}
@media (max-width: 1280px) {
  .center-form .form-name label,
  .center-form .form-address label,
  .center-form .form-phone label,
  .center-form .form-mail label {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .center-form .form-name label,
  .center-form .form-address label,
  .center-form .form-phone label,
  .center-form .form-mail label {
    width: 25%;
  }
}
@media (max-width: 450px) {
  .center-form .form-name label,
  .center-form .form-address label,
  .center-form .form-phone label,
  .center-form .form-mail label {
    width: 30%;
  }
}
.center-form .form-address select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.center-form .input-style {
  background: #cccccc;
  border: none;
  border-radius: 10px;
  outline: none;
  padding: 4px 10px;
  width: 300px;
}
@media (max-width: 1280px) {
  .center-form .input-style {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .center-form .input-style {
    width: 72%;
  }
}
@media (max-width: 450px) {
  .center-form .input-style {
    width: 60%;
  }
}
.center-form .form-name > span {
  margin: 0 10px;
}
.center-form .form-name > span input {
  margin: 0 5px;
}
.center-form .form-name .sex {
  display: inline;
}
@media (max-width: 1024px) {
  .center-form .form-name .sex {
    display: block;
    text-align: right;
    padding: 0 30px;
  }
}
.center-form .form-answer {
  display: flex;
  flex-direction: column;
}
.center-form .form-answer label {
  margin: 10px 0;
}
@media (max-width: 1280px) {
  .center-form .form-answer label {
    font-size: 14px;
    margin: 5px 0;
  }
}
.center-form .form-answer textarea {
  min-width: 500px;
  max-width: 500px;
  min-height: 150px;
  max-height: 150px;
}
@media (max-width: 1536px) {
  .center-form .form-answer textarea {
    min-height: 100px;
    max-height: 100px;
  }
}
@media (max-width: 1280px) {
  .center-form .form-answer textarea {
    min-height: 80px;
    max-height: 80px;
  }
}
@media (max-width: 1024px) {
  .center-form .form-answer textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 200px;
    max-height: 200px;
  }
}
@media (max-width: 450px) {
  .center-form .form-answer textarea {
    min-height: 100px;
    max-height: 100px;
  }
}
.center-form .form-btn {
  visibility: visible;
}
@media (max-width: 1024px) {
  .center-form .form-btn {
    text-align: center;
    margin: 10px 0;
  }
}
.center-form .form-btn #submit-btn,
.center-form .form-btn #reset-btn {
  visibility: visible;
  background-color: #333333;
  color: #cccccc;
  letter-spacing: 2px;
  border: none;
  border-radius: 10px;
  padding: 4px 10px;
}
@media (max-width: 1280px) {
  .center-form .form-btn #submit-btn,
  .center-form .form-btn #reset-btn {
    font-size: 12px;
    padding: 2px 5px;
  }
}
@media (max-width: 1024px) {
  .center-form .form-btn #submit-btn,
  .center-form .form-btn #reset-btn {
    margin: 0 10px;
  }
}

.bottom-text {
  align-self: center;
  text-align: center;
}
.bottom-text > p {
  margin: 0;
  font-size: 22px;
}
@media (max-width: 1536px) {
  .bottom-text > p {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .bottom-text > p {
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .bottom-text > p {
    font-size: 12px;
  }
}
.bottom-text .bottom-phone {
  margin: 10px 0;
}
@media (max-width: 1536px) {
  .bottom-text .bottom-phone {
    margin: 4px 0;
  }
}
.bottom-text .bottom-phone p {
  margin: 0;
  color: #ff0000;
  font-size: 16px;
}
@media (max-width: 1536px) {
  .bottom-text .bottom-phone p {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .bottom-text .bottom-phone p {
    font-size: 12px;
  }
}
.bottom-text .bottom-phone a {
  text-decoration: none;
  color: #ff0000;
  font-size: 20px;
  transition: all 0.3s;
}
@media (max-width: 1536px) {
  .bottom-text .bottom-phone a {
    font-size: 18px;
  }
}
.bottom-text .bottom-phone a:hover {
  color: #ff9200;
}
.bottom-text .copyright {
  font-size: 16px;
  color: #cccccc;
}
@media (max-width: 1536px) {
  .bottom-text .copyright {
    font-size: 12px;
  }
}
.bottom-text .copyright svg {
  fill: #cccccc;
  stroke: transparent;
}
.bottom-text .pact {
  display: flex;
  justify-content: center;
}
.bottom-text .pact a {
  font-size: 14px;
  text-decoration: none;
  color: #cccccc;
  border-left: 1px solid #cccccc;
  padding-left: 10px;
  padding-right: 10px;
  transition: all 0.3s;
}
.bottom-text .pact a:hover {
  color: #333333;
}
@media (max-width: 1536px) {
  .bottom-text .pact a {
    font-size: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 1024px) {
  .bottom-text .pact a {
    display: none;
  }
}
.bottom-text .pact a:first-child {
  border: none;
}

.execution-page .form-content,
.completed-page .form-content,
.know-us-page .form-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0px 150px;
  padding-bottom: 0px;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1024px) {
  .execution-page .form-content .form-btn,
  .completed-page .form-content .form-btn,
  .know-us-page .form-content .form-btn {
    text-align: center;
    margin-top: 7%;
  }
}
@media (max-width: 1536px) {
  .execution-page .form-content,
  .completed-page .form-content,
  .know-us-page .form-content {
    padding: 0 100px;
    padding-bottom: 10px;
  }
}
@media (max-width: 1280px) {
  .execution-page .form-content,
  .completed-page .form-content,
  .know-us-page .form-content {
    padding: 0 60px;
  }
}
@media (max-width: 1024px) {
  .execution-page .form-content,
  .completed-page .form-content,
  .know-us-page .form-content {
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .execution-page .form-content,
  .completed-page .form-content,
  .know-us-page .form-content {
    justify-content: end;
    padding-bottom: 30px;
  }
}
@media (max-width: 450px) {
  .execution-page .form-content,
  .completed-page .form-content,
  .know-us-page .form-content {
    width: 90%;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    justify-content: space-evenly;
    padding: 0;
  }
}

.execution-page {
  background: url(../img/bg/desktop/execution_header_bg.jpg);
}
@media (max-width: 450px) {
  .execution-page {
    background: url(../img/bg/mobile/execution_mbg.jpg);
  }
}

.inner-page {
  width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #fff;
}

#inner-page-fix-menu {
  position: fixed;
  top: 50px;
  right: 30px;
  z-index: 8;
}
#inner-page-fix-menu svg {
  fill: #10429a;
  stroke: transparent;
}

#inner-page-top-logo {
  display: flex;
  width: 30%;
  padding-top: 50px;
  padding-left: 30px;
}
@media (max-width: 450px) {
  #inner-page-top-logo {
    width: 65%;
    padding-left: 10px;
  }
}
#inner-page-top-logo svg {
  fill: #10429a;
  stroke: transparent;
}
#inner-page-top-logo svg:first-child {
  width: 90px;
}
#inner-page-top-logo svg:last-child {
  width: 450px;
}
@media (max-width: 450px) {
  #inner-page-top-logo svg:last-child {
    display: none;
  }
}

.inner-page-top-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 0px;
}
.inner-page-top-text .left-side {
  display: flex;
}
@media (max-width: 450px) {
  .inner-page-top-text .left-side {
    justify-content: center;
    align-items: center;
  }
}
.inner-page-top-text .left-side .caption {
  display: flex;
  flex-direction: column;
}
.inner-page-top-text .left-side .caption span {
  font-weight: 300;
  color: #10429a;
}
.inner-page-top-text .left-side .caption span:first-child {
  font-size: 54px;
}
@media (max-width: 450px) {
  .inner-page-top-text .left-side .caption span:first-child {
    font-size: 32px;
  }
}
.inner-page-top-text .left-side .caption span:last-child {
  font-size: 36px;
}
@media (max-width: 450px) {
  .inner-page-top-text .left-side .caption span:last-child {
    font-size: 20px;
  }
}
.inner-page-top-text .left-side .count-text {
  color: #10429a;
  font-size: 100px;
  margin-left: 10px;
  padding-bottom: 50px;
}
@media (max-width: 450px) {
  .inner-page-top-text .left-side .count-text {
    font-size: 60px;
    padding-bottom: 0;
  }
}
.inner-page-top-text .right-side {
  font-size: 150px;
  font-weight: 100;
  color: #10429a;
}
@media (max-width: 1536px) {
  .inner-page-top-text .right-side {
    font-size: 110px;
  }
}
@media (max-width: 1280px) {
  .inner-page-top-text .right-side {
    font-size: 100px;
  }
}
@media (max-width: 1024px) {
  .inner-page-top-text .right-side {
    display: none;
  }
}

.inner-page-title {
  color: #10429a;
  font-size: 26px;
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
@media (max-width: 1280px) {
  .inner-page-title {
    font-size: 22px;
  }
}
@media (max-width: 450px) {
  .inner-page-title {
    display: none;
  }
}

.inner-page-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px 0;
  text-align: center;
  background: rgba(16, 66, 154, 0.5);
}
.inner-page-bottom .bottom-button {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 10px 60px;
  transition: all 0.3s;
}
.inner-page-bottom .bottom-button:hover {
  color: #10429a;
  background: #fff;
}

#execution-question-area {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
  row-gap: 30px;
  -moz-column-gap: 60px;
       column-gap: 60px;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  #execution-question-area {
    grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
  }
}
@media (max-width: 450px) {
  #execution-question-area {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
#execution-question-area .case-box {
  height: 150px;
  background: linear-gradient(to bottom, rgba(16, 66, 154, 0.8), rgba(16, 66, 154, 0.5));
  border-radius: 20px;
  padding: 20px 30px;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#execution-question-area .case-box .case-info {
  display: flex;
  font-size: 16px;
}

.load-more {
  height: 100px;
  text-align: center;
  padding: 30px 0;
  background-image: linear-gradient(to bottom, rgba(240, 244, 249, 0.3), #f0f4f9, #dbe2f0, #f0f4f9, rgba(240, 244, 249, 0.3));
}
.load-more > a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-size: 22px;
  color: #10429a;
  font-weight: 300;
  letter-spacing: 2px;
  transition: all 0.3s;
}
.load-more > a:hover {
  color: #ff9200;
}

#tag-area {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 450px) {
  #tag-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
#tag-area .tag {
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  margin: 10px 5px;
  padding: 6px 10px;
  text-align: center;
  transition: all 0.3s;
}
#tag-area .tag-type1 {
  border: 1px solid #10429a;
  background-color: #10429a;
}
#tag-area .tag-type1:hover {
  color: #ff9200;
}
#tag-area .tag-type2 {
  border: 1px solid #0972b0;
  background-color: #0972b0;
}
#tag-area .tag-type2:hover {
  color: #b06909;
}
#tag-area .tag-type3 {
  border: 1px solid #0895a6;
  background-color: #0895a6;
}
#tag-area .tag-type3:hover {
  color: #a64b08;
}
#tag-area .tag-type4 {
  border: 1px solid #00bd9c;
  background-color: #00bd9c;
}
#tag-area .tag-type4:hover {
  color: #702000;
}
#tag-area .tag-type5 {
  border: 1px solid #00b361;
  background-color: #00b361;
}
#tag-area .tag-type5:hover {
  color: #660e00;
}
#tag-area .tag-type6 {
  border: 1px solid #0ac93d;
  background-color: #0ac93d;
}
#tag-area .tag-type6:hover {
  color: #c90a10;
}
#tag-area .tag-type7 {
  border: 1px solid #0dbf0a;
  background-color: #0dbf0a;
}
#tag-area .tag-type7:hover {
  color: #bf0a69;
}
#tag-area .tag-type8 {
  border: 1px solid #92cc00;
  background-color: #92cc00;
}
#tag-area .tag-type8:hover {
  color: #73003c;
}

#tag-area-mobile {
  display: none;
}
@media (max-width: 450px) {
  #tag-area-mobile {
    display: block;
  }
  #tag-area-mobile .tag {
    display: block;
    border: 1px solid #0972b0;
    background: linear-gradient(#00bd9c, #0ac93d);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    margin: 10px 5px;
    padding: 6px 10px;
    text-align: center;
    transition: all 0.3s;
  }
  #tag-area-mobile .tag:hover {
    color: #b06909;
  }
}
#tag-area-mobile .accordion-item .accordion-header {
  color: #000;
  border-radius: 15px;
}
#tag-area-mobile .accordion-item .accordion-header .accordion-button.collapsed {
  border-radius: 15px;
  background: linear-gradient(#0972b0, #10429a);
}
#tag-area-mobile .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  border-radius: 15px;
  background: linear-gradient(#333333, #000);
}

.inner-page-copyright {
  text-align: center;
  padding-top: 50px;
}
.inner-page-copyright p {
  font-size: 14px;
  margin: 0;
  color: #cccccc;
}
.inner-page-copyright p svg {
  width: 100px;
  fill: none;
  stroke: #333333;
}

.inner-page-pact {
  text-align: center;
  padding-bottom: 120px;
}
.inner-page-pact > a {
  color: #cccccc;
  font-size: 14px;
  text-decoration: none;
  border-left: 1px solid #cccccc;
  padding: 0 5px;
  margin: 0px;
  transition: all 0.3s;
}
.inner-page-pact > a:first-child {
  border: none;
}
.inner-page-pact > a:hover {
  color: #333333;
}

.inner-fix-btn {
  position: fixed;
  bottom: 100px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #10429a;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inner-fix-btn a {
  display: block;
}
.inner-fix-btn i {
  color: #fff;
  font-size: 30px;
}
.inner-fix-btn svg {
  width: 30px;
}

.contact-btn {
  left: 30px;
}
@media (max-width: 450px) {
  .contact-btn {
    left: 10px;
  }
}

.go-top-btn {
  right: 30px;
}
@media (max-width: 450px) {
  .go-top-btn {
    right: 10px;
  }
}

#submit-btn,
#reset-btn {
  letter-spacing: 2px !important;
  padding: 4px 10px !important;
}

.completed-page {
  background: url(../img/bg/desktop/completed_header_bg.jpg);
  width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #fff;
}
@media (max-width: 450px) {
  .completed-page {
    background: url(../img/bg/mobile/completed_header_mbg.jpg);
    width: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #fff;
  }
}
.completed-page #inner-page-fix-menu svg {
  fill: #ff9200;
}
.completed-page #inner-page-top-logo svg {
  fill: #ff9200;
}
.completed-page .inner-page-top-text .left-side .caption span {
  color: #ff9200;
}
.completed-page .inner-page-top-text .left-side .count-text {
  color: #ff9200;
}
.completed-page .inner-page-top-text .right-side {
  color: #ff9200;
}
.completed-page .inner-page-title {
  color: #ff9200;
}
.completed-page .inner-page-bottom {
  background: rgba(255, 146, 0, 0.5);
}
.completed-page .inner-page-bottom .bottom-button:hover {
  color: #ff9200;
}
.completed-page #execution-question-area .case-box {
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 146, 0, 0.8), rgba(255, 146, 0, 0.5));
}
.completed-page .load-more {
  background-image: linear-gradient(to bottom, rgba(255, 252, 248, 0.3), #fff1df, #ffe8c8, #fff1df, rgba(255, 252, 248, 0.3));
}
.completed-page .load-more > a {
  color: #ff9200;
}
.completed-page .load-more > a:hover {
  color: #10429a;
}
.completed-page #tag-area .tag {
  border: 1px solid #ff9200;
  color: #ff9200;
}
.completed-page #tag-area .tag:hover {
  color: #10429a;
}
.completed-page .inner-fix-btn {
  background: #ff9200;
}

#menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  transform: translate(2000, -2000);
}
#menu .menu-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  visibility: hidden;
}
#menu .menu-list > a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 2px;
  transition: all 0.3s;
}
#menu .menu-list > a:hover {
  color: #ff0000;
}
#menu .menu-list .menu-pact a {
  display: none;
}
@media (max-width: 1024px) {
  #menu .menu-list .menu-pact a {
    width: 100%;
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    margin: 5px 0px;
    padding: 5px 0px;
  }
}
#menu .menu-close-btn {
  position: absolute;
  top: 50px;
  right: 60px;
}
@media (max-width: 1024px) {
  #menu .menu-close-btn {
    top: initial;
    bottom: 40px;
    right: 50px;
  }
}
@media (max-width: 450px) {
  #menu .menu-close-btn {
    bottom: 30px;
    right: 10px;
  }
}
#menu .menu-close-btn svg {
  fill: #fff;
  stroke: transparent;
}

#contact-menu-list {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}
#contact-menu-list .menu-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}
#contact-menu-list .menu-list > div {
  width: 40%;
  min-height: 30%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
@media (max-width: 1024px) {
  #contact-menu-list .menu-list > div {
    width: 100%;
  }
}
#contact-menu-list .menu-list > div a {
  border: 1px solid #fff;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 4px;
  padding: 6px 30px;
  transition: all 0.3s;
}
#contact-menu-list .menu-list > div a:hover {
  color: #ff9200;
  border: 1px solid #ff9200;
}
#contact-menu-list .menu-list > div a span:last-child {
  letter-spacing: 0;
  font-size: 16px;
}
@media (max-width: 1024px) {
  #contact-menu-list .menu-list > div a {
    font-size: 18px;
    letter-spacing: 2px;
    padding: 6px 16px;
  }
}
#contact-menu-list .menu-list > div > div {
  width: 50%;
  height: 200%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
@media (max-width: 1024px) {
  #contact-menu-list .menu-list > div > div {
    width: 100%;
  }
}
#contact-menu-list .contact-menu-close-btn {
  position: absolute;
  top: 50px;
  right: 60px;
}
@media (max-width: 1024px) {
  #contact-menu-list .contact-menu-close-btn {
    top: initial;
    bottom: 40px;
    right: 50px;
  }
}
@media (max-width: 450px) {
  #contact-menu-list .contact-menu-close-btn {
    bottom: 30px;
    right: 10px;
  }
}
#contact-menu-list .contact-menu-close-btn svg {
  fill: #fff;
  stroke: transparent;
}

.know-us-page {
  background: url(../img/bg/desktop/KnowUsbg.jpg);
  width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #fff;
}
@media (max-width: 450px) {
  .know-us-page {
    background: url(../img/bg/mobile/mbg.jpg);
    width: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #fff;
  }
}
.know-us-page #inner-page-fix-menu svg {
  fill: #333333;
}
.know-us-page #inner-page-top-logo svg {
  fill: #333333;
}
.know-us-page .inner-page-top-text .left-side .caption span {
  color: #333333;
}
.know-us-page .inner-page-top-text .right-side {
  color: #333333;
}
.know-us-page .inner-page-title {
  color: #333333;
}
.know-us-page .inner-page-bottom {
  background: rgba(51, 51, 51, 0.5);
}
.know-us-page .inner-page-bottom .bottom-button:hover {
  color: #333333;
}
.know-us-page .inner-fix-btn {
  background: #333333;
}
.know-us-page .inner-know-us {
  font-size: 14px;
  padding-bottom: 20px;
}

.btn-close {
  width: 80px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 0px;
  background: transparent url(../img/icon/back_btn2.svg) center/50px auto no-repeat;
  opacity: 1;
  z-index: 3;
}
@media (max-width: 1024px) {
  .btn-close {
    top: 15px;
    right: 0;
  }
}

.modal-body {
  background: #fff;
}
.modal-body .model-section-title {
  text-align: center;
}
.modal-body .copyright {
  font-size: 16px;
  color: #cccccc;
}
@media (max-width: 1536px) {
  .modal-body .copyright {
    font-size: 12px;
  }
}
.modal-body .copyright svg {
  fill: #cccccc;
  stroke: transparent;
}

.model-content-text {
  position: relative;
}
.model-content-text .tab {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 10px;
}
.model-content-text .tab button {
  background-color: inherit;
  text-align: center;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}
.model-content-text .tab button:hover {
  color: #fff;
  background-color: #ff0000;
}
.model-content-text .tab button.active {
  color: #fff;
  background-color: #ff0000;
}
.model-content-text .tabcontent {
  display: none;
  width: 95%;
  margin: 0 auto;
  padding-top: 100px;
}
.model-content-text .tabcontent > p {
  margin: 10px 0;
}
.model-content-text .tabcontent .tab-content-logo {
  text-align: center;
  padding: 20px;
}
.model-content-text .tabcontent .tab-content-copyright {
  text-align: center;
  color: #333333;
  padding-top: 20px;
}

#inner-page-pact {
  background: #fff;
}
#inner-page-pact .pact-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}
#inner-page-pact .pact-page-logo {
  display: block;
  text-align: center;
  padding-top: 30px;
}
#inner-page-pact .pact-page-logo img {
  width: 125px;
}
#inner-page-pact .pact-title {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
#inner-page-pact .pact-title span {
  text-align: center;
  font-size: 22px;
  margin: 5px 0;
}

.accordion {
  display: none;
}
@media (max-width: 1280px) {
  .accordion {
    display: initial;
  }
  .accordion .accordion-item {
    border: none;
    margin: 10px 0;
    padding: 0px;
  }
  .accordion .accordion-item .accordion-header {
    font-size: 30px;
    margin: 0;
    padding: 0;
    background: #cccccc;
  }
  .accordion .accordion-item .accordion-header .accordion-button {
    display: block;
    text-align: center;
    font-size: 22px;
    background: transparent;
    margin: 0 auto;
    padding: 15px;
    color: #fff;
    position: relative;
  }
  .accordion .accordion-item .accordion-header .accordion-button::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    right: 10%;
  }
  .accordion .accordion-item .accordion-body {
    text-align: left;
  }
  .accordion .accordion-item .accordion-button:not(.collapsed) {
    display: block;
    color: #fff;
    background-color: #333333;
  }
  .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .accordion .accordion-item .accordion-button:focus {
    box-shadow: none;
  }
}

.accordion-button::after {
  background-image: url("../img/arrow.png");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../img/arrow.png");
}

.creditCard-content .creditCard-logo {
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
}
.creditCard-content .creditCard-logo img {
  width: 10%;
}
@media (max-width: 450px) {
  .creditCard-content .creditCard-logo img {
    width: 125px;
  }
}
.creditCard-content .model-content-text {
  line-height: 1.75;
  letter-spacing: 2px;
}
.creditCard-content .model-content-text ol li {
  margin: 20px 0;
}

#pactLogo {
  width: 10%;
}
@media (max-width: 768px) {
  #pactLogo {
    width: 125px;
  }
}

.inner-service h1,
.inner-service h2 {
  font-size: 24px;
}
.inner-service p {
  text-align: center;
}
@media (max-width: 768px) {
  .inner-service p {
    width: 90%;
    margin: 0 auto;
    text-align: left;
  }
}
.inner-service .serviceListContent {
  width: 60%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 15px;
  padding-top: 50px;
  padding-bottom: 100px;
}
@media (max-width: 450px) {
  .inner-service .serviceListContent {
    width: 90%;
    grid-template-columns: repeat(1, 1fr);
    padding-top: 25px;
    padding-bottom: 50px;
  }
}
.inner-service .serviceListContent .serviceListBtn {
  text-decoration: none;
  text-align: center;
  font-size: 28px;
  font-weight: 100;
  color: #000;
  letter-spacing: 4px;
  padding: 40px 0px;
  background-image: linear-gradient(to bottom right, #e6efff, #fff, #e6efff);
  border-radius: 10px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .inner-service .serviceListContent .serviceListBtn {
    padding: 10px;
    background-image: linear-gradient(to right, #e6efff, #fff, #e6efff);
  }
}

.service-page {
  background: url(../img/bg/desktop/93778_after.jpg);
  width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #fff;
}
@media (max-width: 450px) {
  .service-page {
    background: url(../img/bg/mobile/93778m_after.jpg);
    width: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #fff;
  }
}
.service-page #inner-page-fix-menu svg {
  fill: #333333;
}
.service-page #inner-page-top-logo svg {
  fill: #333333;
}
@media (max-width: 768px) {
  .service-page .inner-page-top-text {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .service-page .inner-page-top-text .left-side {
    text-align: center;
  }
}
.service-page .inner-page-top-text .left-side .caption span {
  color: #333333;
}
.service-page .inner-page-top-text .right-side {
  color: #333333;
}
.service-page .inner-page-title {
  color: #333333;
}
@media (max-width: 450px) {
  .service-page .inner-page-title {
    display: block;
  }
}
.service-page .inner-page-bottom {
  background: rgba(51, 51, 51, 0.5);
}
.service-page .inner-page-bottom .bottom-button:hover {
  color: #333333;
}
.service-page .inner-fix-btn {
  background: #333333;
}
.service-page .inner-know-us {
  font-size: 14px;
  padding-bottom: 20px;
}

.inner-service-page {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .inner-service-page {
    width: 100%;
    padding: 0;
    margin-bottom: 50px;
  }
}
.inner-service-page #servicePageTitle {
  font-size: 32px;
  margin-bottom: 20px;
}
.inner-service-page #servicePageContent {
  text-align: left;
}
.inner-service-page #servicePageContent a {
  text-decoration: none;
  color: #10429a;
  transition: all 0.3s;
}
.inner-service-page #servicePageContent a:hover {
  color: #ff9200;
}
@media (max-width: 768px) {
  .inner-service-page #servicePageContent {
    width: 80%;
    margin: 0 auto;
  }
}
.inner-service-page #servicePageImg {
  width: 100%;
}

.tabsSection {
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .tabsSection {
    display: none;
  }
}
.tabsSection .tabContent {
  display: none;
}
.tabsSection .tabContent.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}
.tabsSection .tabContent.active > h2 {
  margin-bottom: 30px;
}
.tabsSection .tabContent.active > p {
  margin-bottom: 20px;
}
.tabsSection .tabContent.active .tabSubBtn {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 15px;
}
.tabsSection .tabContent.active .tabSubBtn .tabLink-btn {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 4px;
  padding: 15px 25px;
  border-radius: 15px;
  border: 1px solid #041734;
  color: #041734;
  text-decoration: none;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.tabsSection .tabContent.active .tabSubBtn .tabLink-btn:hover {
  background: #041734;
  color: #fff;
}
.tabsSection .tabBtn {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.tabsSection .tabBtn .tabLink {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 4px;
  padding: 15px 30px;
  border-radius: 15px;
  border: 1px solid #041734;
  color: #041734;
  text-decoration: none;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.tabsSection .tabBtn .tabLink:hover {
  background: #041734;
  color: #fff;
}
.tabsSection .tabBtn .tabLink.active {
  background: #041734;
  color: #fff;
  border-bottom: 2px solid #041734;
  position: relative;
}
.tabsSection .tabBtn .tabLink.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top-color: #041734;
  border-bottom: 0;
  margin-left: -20px;
  margin-bottom: -20px;
}

#serviceAccordion {
  display: none;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #serviceAccordion {
    display: block;
  }
}
#serviceAccordion .accordion-header {
  background: #041734;
  border-radius: 10px;
}
#serviceAccordion .accordion-header .accordion-button {
  letter-spacing: 4px;
  background: #041734;
  border-radius: 10px;
}
#serviceAccordion .accordion-body {
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
}
#serviceAccordion .accordion-body .tabLink-sub {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 4px;
  padding: 10px 0px;
  margin: 10px 0;
  border-radius: 15px;
  border: 1px solid #041734;
  color: #041734;
  text-decoration: none;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}

.highlightBox1 {
  background: #ddd;
  padding: 20px;
  margin-bottom: 20px;
}

.highlightBox2 {
  text-align: center;
  background: rgb(239, 175, 103);
  padding: 20px;
  margin-bottom: 20px;
  font-size: 18px;
}

.highlightBox3 {
  background: #ddd;
  padding: 20px;
  margin-bottom: 20px;
}
.highlightBox3 h3 {
  text-align: center;
  margin-bottom: 20px;
}

.redText {
  font-size: 18px;
  color: #f00;
}/*# sourceMappingURL=main.css.map */