head, body {
  margin: 0;
  padding: 0;
  color: #3c3c3c;
  font-family: 'Noto Serif TC', serif;
  letter-spacing: 1px;
  background-color: #ffffff;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

h1 {
  font-size: 36px;
  letter-spacing: 6px;
  font-weight: bold;
  width: 100%;
}

h2 {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 4px;
  position: relative;
  text-align: center;
}

h3 {
  font-weight: 700;
  font-size: 20px;
}

h4 {
  font-weight: 700;
  font-size: 20px;
}

p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}

.anchor {
  display: block;
  height: 90px;
  margin-top: -90px;
  visibility: hidden;
}

@media (min-width: 1500px) {
  .container {
    max-width: 1420px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

header {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

header nav {
  color: #000000;
}

header nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 24px 12px;
}

header nav .container a {
  text-decoration: none;
  color: #000000;
}

header nav .container a .nav-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 6px;
}

header nav .container a .nav-title span {
  color: #9F353A;
  font-size: 36px;
}

header nav .container .navbar-menu-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

header nav .container .navbar-menu-pc a {
  text-decoration: none;
  color: #000000;
}

header nav .container .navbar-menu-pc a li {
  list-style-type: none;
  margin: 0 12px;
}

header nav .container .navbar-toggle-open {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  margin-left: 8px;
  border: 0;
  border-radius: 4px;
  z-index: 1000;
  cursor: pointer;
  background-color: transparent;
}

header nav .container .navbar-toggle-open .toggle-line-set {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

header nav .container .navbar-toggle-open .toggle-line-set .toggle-line {
  width: 25px;
  height: 3px;
  margin: 4px 0;
  background-color: #9F353A;
}

header nav .container .navbar-toggle-close {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  margin-left: 8px;
  border: 0;
  border-radius: 4px;
  background-color: transparent;
}

header nav .container .navbar-toggle-close .toggle-line-set {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

header nav .container .navbar-toggle-close .toggle-line-set .toggle-line {
  width: 25px;
  height: 3px;
  margin: 4px 0;
  background-color: #9F353A;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header nav .container .navbar-toggle-close .toggle-line-set .toggle-line:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 0;
}

header nav .navbar-menu-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fafafa;
  display: none;
  padding: 12px 0;
  width: 100%;
}

header nav .navbar-menu-mobile ul {
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

header nav .navbar-menu-mobile ul a {
  text-decoration: none;
  color: #000000;
  font-size: 18px;
}

header nav .navbar-menu-mobile ul a li {
  list-style-type: none;
  text-align: center;
  margin: 8px 0;
}

@media (max-width: 991px) {
  header nav .container .navbar-menu-pc {
    display: none;
  }
  header nav .container .navbar-toggle-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 400px) {
  header nav .container a .nav-title {
    font-size: 24px;
  }
  header nav .container a .nav-title span {
    font-size: 32px;
  }
}

.banner {
  min-height: 550px;
  height: 75vh;
  width: 100%;
  margin: 0;
}

.banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  min-height: 550px;
  height: 75vh;
  background-image: url("../img/background.jpg");
  background-size: cover;
  background-position: center;
  margin-top: 93px;
  padding: 0;
  border-radius: 40px;
}

.banner .container .banner-block {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 100%;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  background-color: rgba(159, 53, 85, 0.5);
}

.banner .container .banner-block .banner-content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #ffffff;
  padding: 36px;
}

.banner .container .banner-block .banner-content h1 {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 3px solid #F6C1C0;
}

.banner .container .banner-block .banner-content p {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.banner .container .banner-block .banner-content .banner-tel {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 12px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.banner .container .banner-block .banner-content .banner-tel a {
  text-decoration: none;
  width: 100%;
  color: #9F353A;
}

.banner .container .banner-block .banner-content .banner-tel a .tel-location {
  background-color: #9F353A;
  color: #ffffff;
  padding: 1px 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 20px;
}

.banner .container .banner-block .banner-content .banner-tel a .tel-number {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1px 6px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  font-size: 20px;
  font-weight: bold;
}

.banner .container .banner-block .banner-content .banner-tel:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (max-width: 576px) {
  .banner {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 0;
    width: 100%;
    margin: 0;
  }
  .banner .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: none;
        -ms-flex-align: none;
            align-items: none;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 0;
    width: 90%;
  }
  .banner .container .banner-block {
    width: 100%;
    border-radius: 40px;
  }
}

.about {
  width: 100%;
  padding: 60px 0;
  margin: 90px 0;
  background-image: linear-gradient(135deg, #fdfcfb 0%, #fbe0e0 100%);
}

.about .about-block {
  border-radius: 6px;
}

.about .about-block h2 {
  font-size: 24px;
  text-align: left;
  color: #9F353A;
  margin-bottom: 32px;
  position: relative;
}

.about .about-block h2:before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #9F353A;
}

.service {
  width: 100%;
  margin: 90px 0;
}

.service .container .service-block h2 {
  color: #9F353A;
}

.service .container .service-block .service-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 36px;
}

.service .container .service-block .service-set .service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc( (100% - 80px) / 5);
  margin: 5px;
  text-decoration: none;
  color: #3c3c3c;
}

.service .container .service-block .service-set .service-item .service-img {
  width: 80%;
  height: 0px;
  padding-bottom: 80%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.service .container .service-block .service-set .service-item:hover .service-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.service .container .service-block .service-set .service-item:hover h3 {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .service .container .service-block .service-set .service-item {
    width: calc( (100% - 40px) / 4);
  }
}

@media (max-width: 576px) {
  .service .container .service-block .service-set .service-item {
    width: calc( (100% - 20px) / 2);
  }
}

.intro {
  width: 100%;
  padding: 28px 0;
  margin: 66px 0;
  background-color: #fefafa;
  position: relative;
  z-index: -2;
}

.intro .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.intro .container .intro-block {
  width: 70%;
  padding: 20px 0;
}

.intro .container .intro-block h2 {
  font-size: 24px;
  text-align: left;
  color: #9F353A;
  margin-bottom: 32px;
  position: relative;
}

.intro .container .intro-block h2:before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #9F353A;
}

.intro:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background-image: url("../img/people.jpg");
  background-size: cover;
  background-position: right;
  z-index: -1;
}

@media (max-width: 767px) {
  .intro .container .intro-block {
    width: 100%;
  }
  .intro:before {
    display: none;
  }
}

.article {
  width: 100%;
  margin: 66px 0;
}

.article .container .article-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.article .container .article-set .article-item {
  width: calc( (100% - 150px) / 3);
  margin: 24px 20px;
  position: relative;
}

.article .container .article-set .article-item h2 {
  font-size: 22px;
  text-align: center;
  color: #9F353A;
}

.article .container .article-set .article-item a button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  font-size: 14px;
  border-radius: 4px;
  background-color: #FDF1F1;
}

.article .container .article-set .article-item .article-title-set p {
  border-bottom: 1px solid #dddddd;
  position: relative;
  padding-left: 20px;
  height: 28px;
  overflow: hidden;
  margin: 10px auto;
}

.article .container .article-set .article-item .article-title-set p a {
  text-decoration: none;
  color: #3c3c3c;
 
}

.article .container .article-set .article-item .article-title-set p a:hover {
  color: #CA7A2C;
}

.article .container .article-set .article-item .article-title-set p:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9F353A;
}

.article .container .article-set .article-item .article-title-set p:last-child {
  border-bottom: 0px solid #dddddd;
}

@media (max-width: 767px) {
  .article .container .article-set .article-item {
    width: 100%;
    margin: 24px 0;
  }
}

.process {
  width: 100%;
  padding-top: 48px;
  padding-bottom: 16px;
  margin-top: 60px;
  background-image: linear-gradient(135deg, #fdfcfb 0%, #fbe0e0 100%);
}

.process .container .process-block h2 {
  color: #9F353A;
}

.process .container .process-block .process-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin: 36px 0;
}

.process .container .process-block .process-set .process-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc( (100% - 90px) / 9);
  margin: 5px;
}

.process .container .process-block .process-set .process-item .process-img {
  width: 80%;
  height: 0px;
  padding-bottom: 80%;
  border-radius: 50%;
  background-image: url("../img/service1.jpg");
  background-size: cover;
  background-position: center;
  margin-bottom: 8px;
}

.process .container .process-block .process-set .process-arrow {
  width: 50px;
  height: 50px;
  background-image: url("../img/arrow.png");
  background-size: cover;
  background-position: center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media (max-width: 991px) {
  .process .container .process-block .process-set .process-item {
    width: calc( (100% - 40px) / 4);
  }
}

@media (max-width: 576px) {
  .process .container .process-block .process-set .process-item {
    width: 100%;
  }
  .process .container .process-block .process-set .process-item .process-img {
    width: 40%;
    height: 0px;
    padding-bottom: 40%;
  }
  .process .container .process-block .process-set .process-item h3 {
    width: 100%;
    text-align: center;
  }
  .process .container .process-block .process-set .process-arrow {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.float-btn .float-set {
  position: fixed;
  right: 0;
  bottom: 24px;
  width: 65px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 100;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.float-btn .float-set .float-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 55px;
  height: 55px;
  position: relative;
  margin-top: 4px;
}

.float-btn .float-set .float-item img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.float-btn .float-set .float-item .float-arrow {
  width: 50px;
  height: 50px;
  background-color: rgba(15, 37, 64, 0.7);
  border-radius: 10px;
  margin-top: 12px;
  position: relative;
}

.float-btn .float-set .float-item .float-arrow::after {
  content: '';
  position: absolute;
  top: 21px;
  left: 13px;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.float-btn .float-set .float-item img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@media (max-width: 576px) {
  .float-btn .float-set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 95px;
    background-color: #fbe0e0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .float-btn .float-set .float-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc( 100% / 3);
    margin-top: 0;
    margin-bottom: 15px;
  }
  .float-btn .float-set .float-item .float-arrow {
    margin-top: 0;
  }
  .float-btn .float-set .float-item img:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.contact {
  background-image: radial-gradient(73% 147%, #EADFDF 59%, #ECE2DF 100%), radial-gradient(91% 146%, rgba(255, 255, 255, 0.5) 47%, rgba(0, 0, 0, 0.5) 100%);
  background-blend-mode: screen;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid #dddddd;
}

.contact .container p {
  font-size: 16px;
  line-height: 24px;
}

.contact .container .contact-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.contact .container .contact-phone .contact-tel {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 12px 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact .container .contact-phone .contact-tel a {
  text-decoration: none;
  width: 100%;
  color: #9F353A;
}

.contact .container .contact-phone .contact-tel a .tel-location {
  background-color: #9F353A;
  color: #ffffff;
  padding: 1px 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 20px;
}

.contact .container .contact-phone .contact-tel a .tel-number {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1px 6px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  font-size: 20px;
  font-weight: bold;
}

.contact .container .contact-phone .contact-tel:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (max-width: 767px) {
  .contact .container .contact-phone .contact-tel {
    margin: 12px 48px;
  }
}

@media (max-width: 400px) {
  .contact .container .contact-phone .contact-tel {
    margin: 12px 24px;
  }
}

footer {
  background-color: rgba(15, 37, 64, 0.7);
  padding-top: 16px;
  padding-bottom: 16px;
}

footer .container .footer-content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

footer .container .footer-content p {
  color: #ffffff;
}

.side {
  padding: 0;
  padding-top: 90px;
  margin: 0;
  min-height: calc( 100vh - 180px);
}

.side .container {
  width: 80%;
}

.side .container h1 {
  font-size: 24px;
  text-align: center;
  color: #9F353A;
  margin-bottom: 32px;
  position: relative;
}

.side .container h1:before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #9F353A;
}
.side .container h2 {
  font-size: 24px;
  text-align: center;
  color: #9F353A;
  margin-bottom: 32px;
  position: relative;
}

.side .container h2:before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #9F353A;
}

.side .container .side-img {
  width: 100%;
  position: relative;
}

.side .container .side-img img {
  width: 100%;
  max-width: 650px;
  height: 100%;
}

.side .container .side-img::before {
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 100%;
}

.side .container .service-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 60px;
}

.side .container .service-set .service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc( (100% - 80px) / 4);
  margin: 10px;
  padding: 5px;
  text-decoration: none;
  color: #3c3c3c;
}

.side .container .service-set .service-item .service-img {
  width: 100%;
  height: 0px;
  padding-bottom: 50%;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  margin-bottom: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.side .container .service-set .service-item:hover .service-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.side .container .service-set .service-item:hover h3 {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .side .container .service-set .service-item {
    width: calc( (100% - 40px) / 2);
  }
}

@media (max-width: 400px) {
  .side .container .service-set .service-item {
    width: calc( (100% - 20px) / 1);
  }
}

.side .container .article-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.side .container .article-set .article-item {
  width: 100%;
  margin: 8px 20px;
  position: relative;
}

.side .container .article-set .article-item .article-title-set .article-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #dddddd;
  position: relative;
  padding: 4px 0;
  padding-left: 20px;
}

.side .container .article-set .article-item .article-title-set .article-title .category {
  color: #9F353A;
  font-weight: bold;
  width: 90px;
}

.side .container .article-set .article-item .article-title-set .article-title .title {
  width: calc( 100% - 90px);
}

.side .container .article-set .article-item .article-title-set .article-title .title a {
  text-decoration: none;
  color: #3c3c3c;
}

.side .container .article-set .article-item .article-title-set .article-title .title a:hover {
  color: #CA7A2C;
}

.side .container .article-set .article-item .article-title-set .article-title:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9F353A;
}

.side .container .article-set .article-item .article-title-set .article-title:nth-child(even) {
  background-color: #FDF1F1;
}

.side .container .article-set .article-item .article-title-set .article-title:last-child {
  border-bottom: 0px solid #dddddd;
}

.side .container .button-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 12px;
}

.side .container .button-set button {
  margin: 0 4px;
  border: 0;
}

.side .container .button-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 48px;
}

.side .container .button-back button {
  margin: 0 4px;
  border: 0;
  background-color: #9F353A;
  color: #ffffff;
  border-radius: 40px;
  padding: 2px 12px;
}

@media (max-width: 991px) {
  .side .container {
    width: 100%;
  }
  .side .container .article-set .article-item {
    margin: 0;
  }
}
/*# sourceMappingURL=style.css.map */

.phone{
  margin: 0 auto;
  border-radius: 50%;
  background-color: 	#FFD306;
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 1;
}
.phone::before{
  content: '';
  background-image: url(../img/telephone-outbound-fill.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 auto;
  position: absolute;
  top: 22%;
  left: 6%;
  width: 70%;
  height: 70%;
  z-index: 10;
}
.home{
  background-image: url(../img/icon-home.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
}
.mobil-p{
  color: #D9B300;
  display: none;
}
.phone:hover{
  transform: scale(1.2,1.2)
}
.home:hover{
  transform: scale(1.2,1.2)
}


.catalog{
  background-image: radial-gradient(73% 147%, #EADFDF 59%, #ECE2DF 100%), radial-gradient(91% 146%, rgba(255, 255, 255, 0.5) 47%, rgba(0, 0, 0, 0.5) 100%);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 25px;
}

.catalog h3{
  font-size: 25px;
}

.list li{
  padding: 8px 0px;
  border-bottom: 1px solid #dddddd;
}

.list li a{
  font-size: 18px;
  color: black;
}

.list li a:hover{
  color: #9F353A;
  padding-left: 5px;
  text-decoration: none;
}

.article-price h3{
  font-size: 30px;
}

.table td, .table th{
  border: 1px solid black;
}




.price {
  width: 100%;
  padding: 28px 0;
  margin: 66px 0;
  background-color: #fefafa;
  position: relative;
  z-index: 0;
}


.price .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.price .container .intro-block {
  width: 70%;
  padding: 20px 0;
}



.price:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%),url("../img/price.jpg") no-repeat top center;
  background-size: cover;
  background-position: right;
  box-shadow: rgba(255 , 255, 255, 0.699) 5px 0px, rgba(255, 255, 255, 0.3) 5px 0px, rgba(0, 0, 0, 0.2) 5px 0px, rgba(0, 0, 0, 0.1) 5px 0px, rgba(0, 0, 0, 0.05) 5px 0px;
  z-index: -1;
}


.price-block {
  width: 70%;
  padding: 20px 0;
}

.price-block h2 {
  font-size: 24px;
  text-align: left;
  color: #9F353A;
  margin-bottom: 32px;
  position: relative;
}

.price-block h2:before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #9F353A;
}

.btn{
  margin: 0 4px;
  border: 0;
  background-color: #9F353A;
  color: #ffffff;
  border-radius: 40px;
  padding: 2px 12px;
}
.target-fix{
  position: relative;
  top: -76px;  /*偏移值*/
  display: block;
  height: 0;
  overflow: hidden;
}


.price-img{
  width: 80%;
  margin: 0 auto;
  padding: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 0.375rem;
  margin-bottom: 20px;
}

.img-br{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%),url(../img/price/0.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.375rem;
  padding: 25% 0px;
}

.price-text{
  margin: 0 22px;
}

.price-text h3{
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: white;
  font-family: cursive;
}


.img-br2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%),url(../img/price/1.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.375rem;
  padding: 25% 0px;
}

.img-br3{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%),url(../img/price/2.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.375rem;
  padding: 25% 0px;
}

.img-br4{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%),url(../img/price/3.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.375rem;
  padding: 25% 0px;
}

.img-br5{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%),url(../img/price/4.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.375rem;
  padding: 25% 0px;
}

.img-br6{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%),url(../img/price/5.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.375rem;
  padding: 25% 0px;
}

.img-br7{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%),url(../img/price/6.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.375rem;
  padding: 25% 0px;
}

.img-br8{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%),url(../img/price/7.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.375rem;
  padding: 25% 0px;
}

.img-br9{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%),url(../img/price/8.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.375rem;
  padding: 25% 0px;
}

.img-br10{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%),url(../img/price/9.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.375rem;
  padding: 25% 0px;
}

.img-br11{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%),url(../img/price/10.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.375rem;
  padding: 25% 0px;
}

.img-br12{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%),url(../img/price/11.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.375rem;
  padding: 25% 0px;
}


.img-br13{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%),url(../img/price/12.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.375rem;
  padding: 25% 0px;
}


.article-list{
  padding-left: 5rem;
}

.article-list li{
  font-size: 19px;
  padding: 15px 0px;
}






@media(max-width:767px){
  .price-img{
    width: 100%;
  }
  .price-text h3{
    font-size: 1.6rem;
  }
  .target-fix{
    position: relative;
    top: -88px !important; /*偏移值*/
    display: block;
    height: 0;
    overflow: hidden;
  }
  .price .container .price-block {
    width: 100%;
  }
  .price:before {
    display: none;
  }
  .mobil-p{
    color: #D9B300;
    display: block;
    font-size: 23px;
  }
  .top{
    width: 20%!important;
    position: fixed !important;
    right: 0% !important;
    bottom: 10% !important;
  }
  .mobil-footer{
    margin-bottom: 90px;
  }
  .phone:hover{
    transform: scale(1,1)
  }
  .home:hover{
    transform: scale(1,1)
  }
}
@media(max-width:322px){
  .top{
    bottom: 15% !important;
  }
}
.error-page{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
}




.title-error:after{
  content: 'attr(data-h1)';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: transparent;
  /* webkit only for graceful degradation to IE */
  background: -webkit-repeating-linear-gradient(-45deg, #71b7e6, #69a6ce, #b98acc, #ee8176, #b98acc, #69a6ce, #9b59b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 400%;
  text-shadow: 1px 1px 2px transparentize(#fff, .75);
  animation: animateTextBackground 10s ease-in-out infinite;
}
