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

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

p {
  font-size: 16px;
  line-height: 2;
}

.link-item {
  text-transform: uppercase;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-light .navbar-toggler {
  border: none;
}

main {
  margin-top: 88px;
}

section {
  padding: 75px 0;
}

.text-main {
  color: #daa8a2;
}

.bg-main {
  background-color: #fdebe8;
}

.bg-main-linear {
  background: linear-gradient(to right, #fdebe8, #f0c8c4);
}

.bg-main-image {
  background: url(../assets/image/bg-main.jpg) no-repeat center/cover;
}

.obj-cover {
  object-fit: cover;
}

.obj-contain {
  object-fit: contain;
}

.obj-center {
  object-position: center;
}

.invert {
  filter: invert(1);
}

.img-absolute-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sidebar {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
}

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

.sidebar ul li {
  margin-bottom: 16px;
}

.sidebar ul li a {
  width: 50px;
  height: 50px;
  background: #daa8a2;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: 0.3s;
  opacity: 0.8;
}

.sidebar ul li a:hover {
  opacity: 1;
}
header .navbar .navbar-brand{
  display: block;
}

header .navbar .navbar-brand img {
  width: 250px;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding-left: 30px;
  position: relative;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%) rotate(45deg);
  background: #daa8a2;
  width: 8px;
  height: 8px;
  opacity: 0;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::before {
  opacity: 1;
}

.hero {
  position: relative;
}

.hero .hero-img {
  width: 100%;
  height: calc(100vh - 88px);
}



@media (max-width: 992px) {
  .hero .hero-img {
    height: 60vh;
  }
}

.about {
  background: url(../assets/image/about.jpg) no-repeat center/cover fixed #999;
  background-blend-mode: multiply;
}

.featurette .featurette-divider {
  margin: 5rem 0;
  /* Space out the Bootstrap <hr> more */
}

.featurette .featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.05rem;
  font-size: 42px;
}

@media (max-width: 1200px) {
  .featurette .featurette-heading {
    font-size: 36px;
  }
}

.services .services-card {
  display: flex;
}

.services .services-card .services-img {
  display: inline-block;
  flex-basis: 100px;
  width: 100px;
  height: 100px;
  background: #f1f1f1;
  margin-right: 20px;
}

.services .services-card .services-text {
  width: calc(100% - 120px);
}

.services .services-card .services-text h3 {
  display: inline-block;
  padding: 5px 20px;
  border: 1px #aaa solid;
  font-size: 20px;
  margin-bottom: 15px;
}

.services .services-card .services-text ul li {
  margin-bottom: 10px;
  font-weight: 300;
}

.services .services-card .services-text p{
  font-weight: 300;
}


.services .other-details{
  background-color: #FAF3F2;
  padding: 10px;
  margin-top: 40px;
}

.services .other-details i{
  color: white;
  display: block;
  text-align: center;
  font-size: 18px;
  width: 36px;
  line-height: 36px;
  background-color: #EFDAD8;
  border-radius: 50vh;
  margin: 16px auto;
  margin-top: -1.5rem;
}
.services .other-details p{
  font-size: 14px;
  color: gray;
}

.portfolio .portfolio-image {
  display: inline-block;
  position: relative;
}

.portfolio .portfolio-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: 1s;
}

.portfolio .portfolio-image label {
  position: absolute;
  bottom: 20%;
  left: 50%;
  text-align: center;
  opacity: 1;
  transition: 1s;
  transform: translate(-50%, -50%);
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 3;
  display: inline-block;
  padding: 5px 30px;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.3);
}

.portfolio .portfolio-image:hover::after {
  background: transparent;
}

.portfolio .portfolio-image:hover label {
  bottom: 0%;
  opacity: 0;
}

.contact .sns a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .sns a svg {
  fill: #444;
}

@media (max-width: 767px) {
  .services .services-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .services .services-img{
    margin-bottom: 30px;
  }
  .services .services-card .services-text{
    width: 95%;
  }
  .services .services-card .services-text ul{
    list-style-type: none;
    padding: 0;
  }

}


#lesson{
  background-color: #FAF3F2;
  margin-bottom: 0;
}
#lesson .box{
  height: 100%;
  padding: 30px;
  background-color: #f0c8c4;
  color: #6c757d;
  position: relative;
  z-index: 0;
  box-shadow: 0px 8px 16px #00000020;
}
#lesson .box:after{
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border: 1px solid #fff;
  z-index: -1;
}
#lesson .box h3{
  font-size: 22px;
  margin-bottom: 28px;
}
/* #lesson .box ul{
  padding: 0;list-style-position: inside;
} */
#lesson .box ul li,#lesson .box h6{
  line-height: 1.8;
  opacity: 0.7;
}
#lesson .box p{
  line-height: 1.5;
  font-size: 15px;
}
/* #lesson .box */

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