@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

/* 針對整個網頁的滾動條樣式 */
::-webkit-scrollbar {
  width: 6px;
  /* 設定滾動條的寬度 */
  height: 6px;
  /* 設定滾動條的高度，主要用於橫向滾動條 */
}

/* 針對滾動條的滑塊樣式 */
::-webkit-scrollbar-thumb {
  background-color: #888;
  /* 設定滑塊的背景顏色 */
  border-radius: 6px; /* 
設定滑塊的圓角程度 */
}

/* 滑塊在滾動條中的懸停樣式 */
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* 設定滑塊懸停時的背景顏色 */
}

/* 針對滾動條的軌道樣式 */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  /* 設定滾動條軌道的背景顏色 */
  border-radius: 6px;
  /* 設定滾動條軌道的圓角程度 */
}

.load-page {
  width: 100%;
  height: 100dvh;
  background-color: #333;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.load-page .progress-percentage {
  position: absolute;
  bottom: 20px;
  color: #fff;
  font-size: 1.5em;
  transition: opacity 0.3s ease-out;
}
.load-page .progress-bar {
  width: 0%;
  height: 10px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  animation: loadAnimation 3s ease-in-out forwards;
}

@keyframes loadAnimation {
  to {
    width: 100%;
  }
}
.inner #menuBtn svg {
  fill: #23494b;
}

#menuBtn {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 7;
  cursor: pointer;
}
#menuBtn svg {
  transform: rotate(0deg);
  transition: all 0.3s;
  fill: #fff;
}
#menuBtn svg:hover {
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  #menuBtn {
    bottom: 30px;
    right: 10px;
  }
}

#menuContent {
  position: fixed;
  top: 100%;
  left: 100%;
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.7);
  z-index: 8;
  opacity: 0;
  transition: all 0.5s;
}
#menuContent .menuLink {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}
#menuContent .menuLink a {
  text-align: center;
  margin: 3%;
}
#menuContent .menuLink a:hover span {
  color: #57ffdd;
}
#menuContent .menuLink a span {
  font-size: 24px;
  display: block;
  color: #fff;
  letter-spacing: 2px;
  margin: 5px;
  transition: all 0.3s;
}
#menuContent .menuLink a span:last-child {
  font-family: sans-serif;
  font-size: 16px;
}
#menuContent .menuPhone {
  display: flex;
}
@media (max-width: 768px) {
  #menuContent .menuPhone {
    flex-direction: column;
  }
}
#menuContent .menuPhone a {
  display: block;
  transition: all 0.3s;
}
#menuContent .menuPhone a:hover span {
  color: #57ffdd;
}
@media (max-width: 768px) {
  #menuContent .menuPhone a {
    margin-top: 10px;
  }
}
#menuContent .menuPhone a span {
  font-size: 24px;
  text-align: center;
  display: block;
  color: #fff;
  margin: 0 40px;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  #menuContent .menuPhone a span {
    font-size: 16px;
    color: #57ffdd;
    padding-top: 5px;
  }
}
#menuContent .menuPhone a span:last-child {
  font-size: 28px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  #menuContent .menuPhone a span:last-child {
    font-size: 22px;
    margin-top: 0;
    letter-spacing: 4px;
  }
}
#menuContent #closeMenuBtn {
  position: absolute;
  right: 35px;
  bottom: 50px;
  cursor: pointer;
}

#menuContent.menu-active {
  top: 0;
  left: 0;
  opacity: 1;
}

#lineBtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #59af0d;
  position: fixed;
  bottom: 50px;
  left: 30px;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#lineBtn > a {
  text-align: center;
}
#lineBtn > a img {
  width: 75%;
}
@media (max-width: 768px) {
  #lineBtn {
    bottom: 30px;
    left: 10px;
  }
}

.swiper {
  width: 100%;
  height: 100dvh;
}
.swiper .swiper-slide {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  color: #ccc;
  opacity: 0.75;
}

#logo {
  position: fixed;
  top: 10px;
  right: 30px;
  z-index: 9;
}
@media (max-width: 768px) {
  #logo {
    top: -5px;
    width: 60%;
    right: initial;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}
#logo #fixedImage {
  margin-top: 10px;
  fill: #fff;
  width: 100%;
}

#fullPageSwiperPagination {
  right: initial;
  left: 45px;
}
@media (max-width: 768px) {
  #fullPageSwiperPagination {
    left: 25px;
  }
}
#fullPageSwiperPagination .swiper-pagination-bullet {
  border: 2px solid;
  border-color: #fff;
  width: 16px;
  height: 16px;
  background-color: transparent;
  margin: 10px 0;
  opacity: 1;
  position: relative;
}
@media (max-width: 768px) {
  #fullPageSwiperPagination .swiper-pagination-bullet {
    display: none;
  }
}
#fullPageSwiperPagination .swiper-pagination-bullet-active::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.changeColor::after {
  background-color: #23494b !important;
}

#indexBanner {
  position: relative;
}
#indexBanner #videoBg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#indexBanner .bannerText .swiper-slide {
  flex-direction: column;
  padding-bottom: 200px;
}
#indexBanner .bannerText .swiper-slide p {
  font-size: 24px;
  color: #fff;
  text-align: center;
  width: 60%;
  margin: 10px auto;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  #indexBanner .bannerText .swiper-slide p {
    font-size: 16px;
    width: 75%;
  }
}
#indexBanner .bannerText .swiper-slide-active p {
  opacity: 1;
}
#indexBanner .indexBannerPhone {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  #indexBanner .indexBannerPhone {
    top: 70%;
    flex-direction: column;
    width: 100%;
  }
}
#indexBanner .indexBannerPhone .phoneBox {
  margin: 0 30px;
}
@media (max-width: 768px) {
  #indexBanner .indexBannerPhone .phoneBox {
    margin: 5px 0;
  }
}
#indexBanner .indexBannerPhone .phoneBox a {
  color: #57ffdd;
  font-size: 20px;
  text-align: center;
}
#indexBanner .indexBannerPhone .phoneBox a:hover span {
  color: #fff;
}
@media (max-width: 768px) {
  #indexBanner .indexBannerPhone .phoneBox a {
    font-size: 18px;
  }
}
#indexBanner .indexBannerPhone .phoneBox a span {
  display: block;
  transition: all 0.3s;
}
#indexBanner .indexBannerPhone .phoneBox a span:last-child {
  letter-spacing: 2px;
  font-size: 22px;
}
@media (max-width: 768px) {
  #indexBanner .indexBannerPhone .phoneBox a span:last-child {
    font-size: 24px;
    margin-top: 5px;
  }
}
#indexBanner .rollDownIcon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  cursor: pointer;
}

#indexCase {
  position: relative;
  background: url(../img/debt.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  flex-direction: column;
}
#indexCase .sectionTitle {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #fff;
}
#indexCase .sectionTitle h2 {
  font-size: 30px;
  letter-spacing: 2px;
  font-family: sans-serif;
}
@media (max-width: 768px) {
  #indexCase .sectionTitle h2 {
    font-size: 18px;
  }
}
#indexCase .sectionTitle p {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: bold;
}
@media (max-width: 768px) {
  #indexCase .sectionTitle p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #indexCase .sectionTitle {
    top: 13%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
  }
}
#indexCase #caseIndex {
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 1024px) {
  #indexCase #caseIndex {
    row-gap: 10px;
  }
}
@media (max-width: 1024px) {
  #indexCase #caseIndex .caseIndexBox {
    padding: 20px 100px;
    border-radius: 20px;
  }
}

#indexService {
  position: relative;
}
#indexService .sectionTitle {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #fff;
  z-index: 2;
}
#indexService .sectionTitle h2 {
  font-size: 30px;
  letter-spacing: 2px;
  font-family: sans-serif;
}
@media (max-width: 768px) {
  #indexService .sectionTitle h2 {
    font-size: 18px;
  }
}
#indexService .sectionTitle p {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: bold;
}
@media (max-width: 768px) {
  #indexService .sectionTitle p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #indexService .sectionTitle {
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
}
#indexService #serviceMobileContent {
  display: none;
}
@media (max-width: 768px) {
  #indexService #serviceMobileContent {
    background: url("../img/BG/s1.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 140px;
  }
  #indexService #serviceMobileContent > div {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background-color: rgba(60, 60, 60, 0.5);
  }
  #indexService #serviceMobileContent > div:nth-child(2), #indexService #serviceMobileContent > div:nth-child(3), #indexService #serviceMobileContent > div:nth-child(6), #indexService #serviceMobileContent > div:nth-child(7), #indexService #serviceMobileContent > div:nth-child(10) {
    background-color: rgba(255, 255, 255, 0.3);
  }
  #indexService #serviceMobileContent > div a {
    display: inline-block;
    height: 100%;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
  }
  #indexService #serviceMobileContent > div a::after {
    content: ">";
    padding-left: 10px;
    font-size: 24px;
  }
}
#indexService .serviceBox {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
#indexService .serviceBox .serviceBoxText {
  width: 40%;
  color: #fff;
  text-align: center;
}
#indexService .serviceBox .serviceBoxText h3 {
  font-size: 30px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
#indexService .serviceBox .serviceBoxText p {
  font-size: 18px;
  letter-spacing: 2px;
  text-align: left;
}
@media (max-width: 768px) {
  #indexService .serviceBox .serviceBoxText {
    width: 70%;
  }
}
#indexService .serviceBox .serviceBoxText .serviceMoreBtn {
  position: absolute;
  left: 50%;
  bottom: 15%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.3s;
}
#indexService .serviceBox .serviceBoxText .serviceMoreBtn:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  #indexService .serviceBox .serviceBoxText .serviceMoreBtn {
    bottom: 20px;
  }
}
#indexService .serviceBox1 {
  background: url("../img/BG/s1.jpg");
}
#indexService .serviceBox2 {
  background: url("../img/BG/s2.jpg");
}
#indexService .serviceBox3 {
  background: url("../img/BG/s3.jpg");
}
#indexService .serviceBox4 {
  background: url("../img/BG/s4.jpg");
}
#indexService .serviceBox5 {
  background: url("../img/BG/s5.jpg");
}
#indexService .serviceBox6 {
  background: url("../img/BG/s6.jpg");
}
#indexService .serviceBox7 {
  background: url("../img/BG/s7.jpg");
}
#indexService .serviceBox8 {
  background: url("../img/BG/s8.jpg");
}
#indexService .serviceBox9 {
  background: url("../img/BG/s9.jpg");
}
#indexService .serviceBox10 {
  background: url("../img/BG/s10.jpg");
}
#indexService .swiper-scrollbar {
  width: 30%;
  height: 10px;
  left: 50%;
  bottom: 100px;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  #indexService .swiper-scrollbar {
    display: none;
  }
}
#indexService .swiper-scrollbar-drag {
  background-color: #fff;
}
@media (max-width: 768px) {
  #indexService .swiper-button-prev,
  #indexService .swiper-button-next {
    display: none;
  }
}

.innerPage {
  background: #eee;
}

.innerPageBanner {
  width: 100%;
  height: 30dvh;
  background: url(../img/header_banner/debt.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.innerPageBanner .bannerUp {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .innerPageBanner .bannerUp {
    flex-direction: column-reverse;
  }
}
.innerPageBanner .bannerUp .bannerTitle {
  color: #fff;
}
@media (max-width: 768px) {
  .innerPageBanner .bannerUp .bannerTitle {
    text-align: center;
    margin-top: 25px;
  }
}
.innerPageBanner .bannerUp .bannerTitle h3 {
  font-size: 32px;
  margin-bottom: 10px;
  font-family: sans-serif;
}
.innerPageBanner .bannerUp .bannerTitle p {
  font-size: 20px;
}
@media (max-width: 768px) {
  .innerPageBanner .bannerUp .bannerLogo {
    width: 100%;
    text-align: center;
  }
}
.innerPageBanner .bannerUp .bannerLogo img {
  width: 100%;
}
@media (max-width: 768px) {
  .innerPageBanner .bannerUp .bannerLogo img {
    width: 75%;
  }
}
.innerPageBanner .bannerDown {
  display: flex;
}
@media (max-width: 768px) {
  .innerPageBanner .bannerDown {
    display: none;
  }
}
.innerPageBanner .bannerDown > a {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #fff;
  margin: 0 20px;
  padding-bottom: 20px;
  font-size: 24px;
}

.innerPageArticle {
  padding: 50px 0;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .innerPageArticle {
    width: 80%;
  }
}
.innerPageArticle .articleTitle {
  text-align: center;
  margin-bottom: 50px;
}
.innerPageArticle .articleTitle h1 {
  font-size: 36px;
}
.innerPageArticle .articleContent h2,
.innerPageArticle .articleContent h3 {
  font-size: 18px;
  line-height: 1.5;
  margin: 25px 0;
}
.innerPageArticle .articleContent p,
.innerPageArticle .articleContent li {
  line-height: 1.5;
  margin-bottom: 15px;
}
.innerPageArticle .articleContent li {
  margin-left: 20px;
}

#otherService {
  width: 60%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  #otherService {
    width: 80%;
    grid-template-columns: repeat(2, 1fr);
  }
}
#otherService .box {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
#otherService .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.3s;
}
#otherService .box span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
}
#otherService .box:hover img {
  transform: scale(1.2);
}

.innerSwiper {
  margin-bottom: 50px;
}
.innerSwiper .caseSwiper {
  width: 60%;
  height: 80%;
}
@media (max-width: 768px) {
  .innerSwiper .caseSwiper {
    width: 80%;
  }
}
.innerSwiper .caseSwiper .caseBox {
  background-color: #fff;
  border-radius: 20px;
  padding-bottom: 5px;
}
.innerSwiper .caseSwiper .caseBox img {
  border-radius: 20px 20px 0px 0;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.innerSwiper .caseSwiper .caseBox h3 {
  margin: 10px;
}
.innerSwiper .caseSwiper .caseBox p {
  margin: 10px;
}
.innerSwiper .caseSwiper .caseBox a {
  margin: 10px;
  padding: 10px;
  display: block;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 5px;
}

.caseContainer {
  width: 100%;
  padding: 50px 15%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .caseContainer {
    width: 100%;
    padding: 30px 5%;
    background: #333;
  }
}
.caseContainer .sectionTitle {
  text-align: center;
}
@media (max-width: 1024px) {
  .caseContainer .sectionTitle {
    display: none;
  }
}
.caseContainer .sectionTitle h2 {
  font-size: 16px;
  font-family: sans-serif;
  letter-spacing: 2px;
}
@media (max-width: 1024px) {
  .caseContainer .sectionTitle h2 {
    color: #fff;
  }
}
.caseContainer .sectionTitle p {
  font-size: 36px;
  letter-spacing: 4px;
}
@media (max-width: 1024px) {
  .caseContainer .sectionTitle p {
    color: #fff;
  }
}
.caseContainer h1 {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 1024px) {
  .caseContainer h1 {
    margin-top: 20px;
    font-size: 16px;
    color: #fff;
  }
}

.indexCaseSlogan {
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
  padding: 0 10px;
  color: #fff;
}
@media (max-width: 1024px) {
  .indexCaseSlogan {
    display: none;
  }
}

#caseIndex {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  row-gap: 20px;
}
@media (max-width: 1024px) {
  #caseIndex {
    margin-top: 60px;
    grid-template-columns: repeat(1, 1fr);
  }
}
#caseIndex .caseIndexBox {
  background-color: beige;
  padding: 50px 200px;
  border-radius: 30px;
  position: relative;
  box-shadow: 3px 3px 3px #333;
  background-position: center !important;
}
@media (max-width: 1024px) {
  #caseIndex .caseIndexBox {
    padding: 10px 100px !important;
  }
}
#caseIndex .caseIndexBox span {
  font-size: 28px;
  color: #fff;
  text-shadow: 0px 0px 3px #333;
}
@media (max-width: 1024px) {
  #caseIndex .caseIndexBox span {
    font-size: 22px;
  }
}
#caseIndex .caseIndexBox i {
  color: #fff;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(-50%, -50%);
  font-size: 32px;
}
#caseIndex .caseType1 {
  background: url("../img/caseBg/合法討債.png");
}
#caseIndex .caseType2 {
  background: url("../img/caseBg/討回公道.png");
}
#caseIndex .caseType3 {
  background: url("../img/caseBg/詐騙追討.png");
}
#caseIndex .caseType4 {
  background: url("../img/caseBg/債務協商.png");
}
#caseIndex .caseType5 {
  background: url("../img/caseBg/債務尋人.png");
}
#caseIndex .caseType6 {
  background: url("../img/caseBg/親友債務.png");
}
#caseIndex .caseType7 {
  background: url("../img/caseBg/欠錢不還.png");
}
#caseIndex .caseType8 {
  background: url("../img/caseBg/感情債務.png");
}

#caseList {
  padding: 50px 20%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
}
@media (max-width: 768px) {
  #caseList {
    padding: 50px 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
#caseList .caseBox {
  background-color: #fff;
  border-radius: 20px;
  padding-bottom: 5px;
  position: relative;
}
@media (max-width: 768px) {
  #caseList .caseBox {
    padding-bottom: 50px;
  }
}
#caseList .caseBox img {
  border-radius: 20px 20px 0px 0;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #caseList .caseBox img {
    height: 100px;
  }
}
#caseList .caseBox h3 {
  margin: 10px;
}
@media (max-width: 768px) {
  #caseList .caseBox h3 {
    font-size: 16px;
  }
}
#caseList .caseBox p {
  margin: 10px;
  display: none;
}
#caseList .caseBox a {
  margin: 10px;
  padding: 10px;
  display: block;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 5px;
}
@media (max-width: 768px) {
  #caseList .caseBox a {
    position: absolute;
    width: 90%;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    margin: 0;
    padding: 5px;
  }
}

#mailForm {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background-image: url(../img/BG/form_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#mailForm::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(32, 212, 221, 0.5), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  opacity: 0.5; /* 調整這個值以改變遮罩的透明度 */
  pointer-events: none; /* 確保遮罩不會攔截鼠標事件 */
}
#mailForm .sectionTitle {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #23494b;
  z-index: 2;
}
@media (max-width: 768px) {
  #mailForm .sectionTitle {
    display: none;
  }
}
#mailForm .sectionTitle h2 {
  font-size: 30px;
  letter-spacing: 2px;
  font-family: sans-serif;
}
#mailForm .sectionTitle p {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: bold;
}
#mailForm .map {
  width: 40%;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  #mailForm .map {
    display: none;
  }
}
#mailForm .map img {
  width: 55%;
}
#mailForm .map .mapPhone {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
}
#mailForm .map .mapPhone > img {
  width: 30px;
  margin-right: 10px;
}
#mailForm .map .mapPhone > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#mailForm .map .mapPhone > div h4 {
  font-size: 18px;
}
#mailForm .map .mapPhone > div a {
  color: #23494b;
  font-size: 22px;
}
#mailForm .map .mapPhone1 {
  top: 5%;
  left: 55%;
}
#mailForm .map .mapPhone2 {
  top: 35%;
  left: 35%;
}
#mailForm .map .mapPhone3 {
  top: 70%;
  left: 30%;
}
#mailForm .map .mapPhone4 {
  top: 80%;
  left: 55%;
}
@media (max-width: 768px) {
  #mailForm .map .mapPhone4 {
    top: 90%;
  }
}
#mailForm .formContent {
  width: 60%;
  height: 100%;
  padding: 50px 0;
}
@media (max-width: 768px) {
  #mailForm .formContent {
    padding-top: 70px;
    padding-bottom: 50px;
    width: 90%;
    text-align: center;
  }
}
#mailForm .formContent .formTitle {
  color: #23494b;
}
#mailForm .formContent .formTitle h2 {
  font-size: 30px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #mailForm .formContent .formTitle h2 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
#mailForm .formContent .formTitle p {
  font-size: 24px;
  font-family: sans-serif;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #mailForm .formContent .formTitle p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #mailForm .formContent .slogan {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%);
    width: 90%;
    font-size: 14px;
  }
}
#mailForm .formContent #form {
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media (max-width: 768px) {
  #mailForm .formContent #form {
    align-items: center;
    padding-top: 100px;
    height: 50%;
    justify-content: center;
  }
}
#mailForm .formContent #form label {
  letter-spacing: 2px;
  color: #23494b;
  font-weight: bolder;
}
#mailForm .formContent #form label:not(.no-asterisk)::before {
  content: "*";
  color: red;
}
@media (max-width: 768px) {
  #mailForm .formContent #form label {
    text-align: left;
  }
}
#mailForm .formContent #form input[type=text],
#mailForm .formContent #form input[type=email] {
  width: 200px;
  height: 24px;
  border-radius: 2px;
  padding: 5px;
  border: none;
}
#mailForm .formContent #form input[type=text]::-moz-placeholder, #mailForm .formContent #form input[type=email]::-moz-placeholder {
  font-size: 0.8em;
}
#mailForm .formContent #form input[type=text]::placeholder,
#mailForm .formContent #form input[type=email]::placeholder {
  font-size: 0.8em;
}
@media (max-width: 768px) {
  #mailForm .formContent #form input[type=text],
  #mailForm .formContent #form input[type=email] {
    width: 120px;
  }
}
#mailForm .formContent #form select {
  width: 200px;
  height: 24px;
}
@media (max-width: 768px) {
  #mailForm .formContent #form select {
    width: 120px;
  }
}
#mailForm .formContent #form button {
  color: #23494b;
  background: transparent;
  margin-right: 10px;
  padding: 5px 25px;
  border-radius: 20px;
  border: 1px solid #23494b;
  cursor: pointer;
  transition: all 0.3s;
}
#mailForm .formContent #form button:hover {
  background: #23494b;
  color: #fff;
}
@media (max-width: 768px) {
  #mailForm .formContent #form button {
    margin-top: 15px;
  }
}
#mailForm .formContent #form .form1,
#mailForm .formContent #form .form2,
#mailForm .formContent #form .form3 {
  display: flex;
}
@media (max-width: 768px) {
  #mailForm .formContent #form .form1,
  #mailForm .formContent #form .form2,
  #mailForm .formContent #form .form3 {
    margin: 5px 0;
  }
}
#mailForm .formContent #form .form1 .form-sex,
#mailForm .formContent #form .form1 .form-mail,
#mailForm .formContent #form .form1 .form-caseType,
#mailForm .formContent #form .form2 .form-sex,
#mailForm .formContent #form .form2 .form-mail,
#mailForm .formContent #form .form2 .form-caseType,
#mailForm .formContent #form .form3 .form-sex,
#mailForm .formContent #form .form3 .form-mail,
#mailForm .formContent #form .form3 .form-caseType {
  margin-left: 20px;
}
#mailForm .formContent #form .form1 .form-name,
#mailForm .formContent #form .form1 .form-phone,
#mailForm .formContent #form .form1 .form-mail,
#mailForm .formContent #form .form1 .form-address,
#mailForm .formContent #form .form1 .form-caseType,
#mailForm .formContent #form .form2 .form-name,
#mailForm .formContent #form .form2 .form-phone,
#mailForm .formContent #form .form2 .form-mail,
#mailForm .formContent #form .form2 .form-address,
#mailForm .formContent #form .form2 .form-caseType,
#mailForm .formContent #form .form3 .form-name,
#mailForm .formContent #form .form3 .form-phone,
#mailForm .formContent #form .form3 .form-mail,
#mailForm .formContent #form .form3 .form-address,
#mailForm .formContent #form .form3 .form-caseType {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #mailForm .formContent #form .form1 .form-name input {
    width: 140px;
  }
}
@media (max-width: 768px) {
  #mailForm .formContent #form .form2 {
    flex-direction: column;
  }
  #mailForm .formContent #form .form2 .form-mail {
    margin-left: 0;
  }
  #mailForm .formContent #form .form2 .form-mail,
  #mailForm .formContent #form .form2 .form-phone {
    text-align: left;
    margin: 5px 0;
  }
  #mailForm .formContent #form .form2 .form-mail input,
  #mailForm .formContent #form .form2 .form-phone input {
    width: 260px;
  }
}
#mailForm .formContent #form .form-message {
  display: flex;
  flex-direction: column;
}
#mailForm .formContent #form .form-message #user-message {
  width: 500px;
  height: 150px;
}
@media (max-width: 768px) {
  #mailForm .formContent #form .form-message #user-message {
    width: 260px;
    height: 100px;
  }
}

.gender-label::before {
  content: none;
}

.copyright {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}
@media (max-width: 768px) {
  .copyright {
    flex-direction: column-reverse;
  }
}
.copyright > p {
  font-size: 14px;
}
@media (max-width: 768px) {
  .copyright > p {
    margin: 10px;
  }
}
.copyright > p span {
  font-weight: bold;
}
.copyright .pact a {
  color: #23494b;
  font-size: 14px;
  padding-left: 2px;
  padding-right: 2px;
  border-left: 1px solid #23494b;
  transition: all 0.3s;
}
.copyright .pact a:first-child {
  border-left: none;
}
.copyright .pact a:hover {
  color: #000;
}

.grecaptcha-badge {
  visibility: hidden;
}

.serviceTextBox {
  display: flex;
}
@media (max-width: 1024px) {
  .serviceTextBox {
    flex-direction: column;
  }
}
.serviceTextBox .leftText {
  width: 50%;
}
@media (max-width: 1024px) {
  .serviceTextBox .leftText {
    width: 100%;
  }
}
.serviceTextBox img {
  width: 50%;
}
@media (max-width: 1024px) {
  .serviceTextBox img {
    width: 100%;
  }
}

.hightLight {
  display: block;
  color: #000;
  text-align: center;
  background: #ddd;
  font-size: 24px;
  padding: 30px;
  margin-bottom: 20px;
  transition: all 0.3s;
  border-radius: 10px;
  box-shadow: 0.5px 0.5px 3px rgba(0, 0, 0, 0.5);
}
.hightLight i {
  color: #aaa;
  transition: all 0.3s;
}
.hightLight:hover {
  color: #ddd;
  background: #aaa;
}
.hightLight:hover i {
  color: #ddd;
}
@media (max-width: 1024px) {
  .hightLight {
    padding: 30px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  }
}

.fakeTable {
  display: flex;
  padding-bottom: 20px;
}
@media (max-width: 1024px) {
  .fakeTable {
    flex-direction: column;
  }
}
.fakeTable > div {
  flex: 1;
  border: 1px solid #aaa;
  padding: 20px;
  border-radius: 20px;
  margin: 0 20px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  position: relative;
}
@media (max-width: 1024px) {
  .fakeTable > div {
    margin: 20px 0;
  }
}/*# sourceMappingURL=main.css.map */