@charset "UTF-8";
:root {
  /* Font Family */
  --global--font-family: "SF Pro HK","SF Pro Text","SF Pro Icons","PingFang HK","Segoe UI","SegoeUI","Microsoft JhengHei","微軟正黑體","Helvetica Neue",Helvetica,Arial,sans-serif;
  /* Color */
  --global--color-primary: #b4947b;
  --global--color-primary-dark: #805f46;
  --global--color-supportive: #e5d1c8;
  --global--color-highlight: #f7c841;
  --global--color-background: #fff3d0;
  --global--color-text: #111;
  /* Layout */
  --global--content-main-width: 1120px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: var(--global--content-main-width);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.full-width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.grid {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.flex {
  display: flex;
}

.space-between {
  justify-content: space-between;
}

body {
  font-family: var(--global--font-family);
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

section {
  padding: 80px 0;
}

a {
  text-decoration: none;
  color: var(--global--color-primary);
}

p {
  line-height: 1.75;
}

.widget {
  background: var(--global--color-highlight);
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 10px 20px;
  border-radius: 40px;
}
.widget a {
  display: flex;
  align-items: center;
  color: var(--global--color-text);
}
.widget a iconify-icon {
  margin-right: 5px;
}

.visuallyhidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

.slogan {
  background: var(--global--color-background);
  text-align: center;
  font-size: 1.5rem;
}
.slogan p:first-child {
  font-size: 2.25rem;
  font-weight: bold;
}

.why-us {
  text-align: center;
}
.why-us article {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.why-us h2 {
  color: var(--global--color-primary-dark);
}
.why-us img {
  display: block;
  width: 100px;
}

.testimonial {
  background: var(--global--color-background);
}
.testimonial h2, .testimonial h3 {
  text-align: center;
}
.testimonial h2 {
  color: var(--global--color-primary-dark);
}

.treatment {
  background: var(--global--color-supportive);
}
.treatment h2 {
  text-align: center;
  color: var(--global--color-primary-dark);
}

.contact .flex {
  flex-wrap: wrap;
  align-items: center;
}
.contact .map {
  width: 300px;
}

footer {
  background: var(--global--color-primary);
  color: #fff;
  padding: 10px 0;
}

/*# sourceMappingURL=style.css.map */
