@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Aboreto&family=IM+Fell+French+Canon+SC&family=Noto+Sans+TC:wght@300;400;500;700&family=Noto+Serif+TC:wght@300;400;500;700&display=swap");
.bs {
  box-shadow: 0 8px 10px rgba(18, 8, 1, 0.062745098);
}

.white-box {
  background-color: white;
}

.dib-center {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: #fbf6e0;
}
#loading .lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#loading .lds-ripple div {
  position: absolute;
  border: 4px solid #B24F0E;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#loading .lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  color: #15170b;
  font-family: Suranna, 微軟正黑體, "Microsoft JhengHei", Arial, sans-serif !important;
  z-index: 0;
}
body:after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../image/bg-body.jpg) no-repeat center/cover, #F3E4A3;
  background-blend-mode: overlay;
  z-index: -1;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 1.2px;
}

.container {
  max-width: 1140px;
  width: 95%;
  margin: auto;
}

hr {
  background-color: #B24F0E;
}

a {
  text-decoration: none;
  display: inline-block;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.8;
}

h2 {
  font-size: 20px;
  font-family: "Baloo Tamma 2", cursive;
  text-align: center;
  margin-bottom: 40px;
  color: rgb(0, 0, 0);
}
h2 span {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  text-align: center;
  display: block;
  font-size: 40px;
  font-family: "IM Fell French Canon SC", serif;
  text-transform: uppercase;
}
h2 span:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #15170b;
  width: 1px;
  height: 20px;
  bottom: 0;
}

h3 {
  font-family: "Baloo Tamma 2", cursive;
  color: #B24F0E;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

p {
  line-height: 2em;
}

img {
  width: 100%;
}

ul {
  margin-bottom: 12px;
}
ul li:not(:last-child) {
  margin-bottom: 12px;
}

.row:not(:last-child) {
  margin-bottom: 20px;
}

.slick-next {
  right: 0;
  z-index: 1;
}

.slick-prev {
  left: 0;
  z-index: 1;
}

.slick-prev:before,
.slick-next:before {
  color: #B24F0E;
  font-size: 24px;
}

.btn-check:focus + .btn,
.btn:focus {
  box-shadow: unset;
}

.btn {
  width: 80%;
  max-width: 600px;
  line-height: 48px;
  font-size: 24px;
  border-radius: 0;
  margin: 16px 8px;
  border: 1px solid #B24F0E;
  background-color: #B24F0E;
  color: white;
  position: relative;
}
.btn i {
  margin-left: 12px;
}

.btn span {
  display: block;
}

.btn.secondary {
  border: 1px solid white;
  background-color: transparent;
  color: white;
}

.link-btn {
  display: block;
  font-size: 16px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  color: #B24F0E;
  background-color: white;
  border-radius: 50vh;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  border: unset;
}

a.circle-btn {
  display: inline-block;
}
a.circle-btn i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 40px;
  color: #fbf6e0;
}

section:not(:first-child) {
  padding: 80px 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(104, 104, 104, 0.2);
  box-shadow: 0 2px 4px rgba(104, 104, 104, 0.2);
  transition: all 0.6s;
}

.navbar a {
  margin-left: 12px;
  font-weight: 400;
  font-family: "Noto Serif TC", serif;
  display: block;
}

.navbar a img {
  width: 140px;
}

.navbar .navbar-toggler {
  color: transparent;
}

.navbar .navbar-toggler i {
  color: #15170b;
}

.navbar .navbar-collapse {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.navbar .navbar-collapse .navbar-nav {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar .navbar-collapse .navbar-nav {
  margin-left: auto;
}

.navbar .navbar-collapse .navbar-nav .nav-link {
  text-align: center;
  width: fit-content;
  margin: 4px 0;
  padding: 8px 0;
  color: #15170b;
  font-family: "Noto Serif TC", serif;
}

#banner {
  position: relative;
}

#banner img {
  height: 100vh;
  object-fit: cover;
  -webkit-filter: brightness(0.9);
  filter: brightness(0.9);
}

#banner .img-content {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 10;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: white;
}

#banner .img-content h1 {
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
  font-size: 1.5em;
  font-weight: 400;
  letter-spacing: 2px;
  font-family: "Baloo Tamma 2", cursive;
}
#banner .img-content h1 small {
  display: block;
  font-size: 16px;
  letter-spacing: 1px;
}

#banner .img-content .animate__fadeIn {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

#news small {
  display: block;
  color: gray;
  text-align: center;
  margin-bottom: 32px;
}

#about {
  padding-bottom: 0;
}
#about .container {
  max-width: unset;
  width: 100%;
}
#about figure {
  position: relative;
}
#about figure {
  position: relative;
}
#about figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1882352941) 80%, rgba(0, 0, 0, 0.5019607843) 100%);
  z-index: 0;
}
#about figure blockquote {
  position: absolute;
  right: 10px;
  top: 0;
  text-align: center;
  height: 100%;
  color: white;
  font-size: 15px;
  z-index: 1;
  text-shadow: 0 0 1px #000;
}
#about .text-box {
  color: #fff;
  position: relative;
  padding: 40px 20px;
  background-color: #fbf6e0;
  background: url(../image/about/bg.png) no-repeat center/cover, #B24F0E;
  background-blend-mode: multiply;
}
#about .text-box h2 {
  position: relative;
  margin-bottom: 60px;
  color: #fff;
}
#about .text-box h2 span {
  color: #fff;
}
#about .text-box h2 span:after {
  background-color: #fff;
}
#about .text-box hr {
  background-color: rgba(255, 255, 255, 0.5647058824);
}
#about .text-box strong {
  display: block;
  font-size: 4em;
  font-family: "IM Fell French Canon SC", serif;
}

blockquote {
  color: #F0D3AF;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 2;
  writing-mode: vertical-rl;
  margin: 20px 0 180px;
  font-family: "Noto Serif TC", serif !important;
}
blockquote span {
  letter-spacing: 5px;
  display: block;
}

#services .img-box {
  width: 200px;
  height: 200px;
  padding: 40px;
  background-color: #999187;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#services .img-box img {
  filter: brightness(0.5);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#services .img-box h3 {
  position: absolute;
  width: 100%;
  font-size: 24px;
  color: #F3A36D;
  margin-bottom: 0;
}
#services .modal-dialog {
  width: 90%;
  max-width: 850px;
  margin: 20px auto 0;
}
#services .modal-dialog .modal-header {
  background-color: #f1f1f1;
}
#services .modal-dialog .modal-header h3 {
  color: #000;
  font-size: 24px;
}
#services .modal-dialog .modal-body h6 {
  font-size: 22px;
  line-height: 2;
  margin-top: 20px;
  color: #B24F0E;
}
#services .modal-dialog .modal-body dl dt {
  font-size: 18px;
  margin-bottom: 4px;
  color: #B24F0E;
}
#services .modal-dialog .modal-body dl dd {
  font-size: 15px;
}
#services .modal-dialog .modal-footer {
  background-color: #f1f1f1;
}
#services .modal-dialog .modal-footer a.btn-primary {
  width: 100%;
  max-width: 150px;
  line-height: 2.4;
  background-color: #B24F0E;
  color: #fff;
  text-align: center;
  font-size: 16px;
}
#services .modal-dialog .modal-footer button.btn-secondary {
  background-color: #d6d6d6;
  width: 100%;
  max-width: 150px;
  line-height: 2.4;
  padding: 0;
  border: 0;
  font-size: 16px;
}
#services .modal-dialog .modal-footer a.btn-primary:hover,
#services .modal-dialog .modal-footer button.btn-secondary:hover {
  filter: brightness(0.9);
  border: 0;
}

#feedback .feedback-box {
  padding: 30px 10px;
}
#feedback .feedback-box:not(:last-child) {
  border-bottom: 2px dotted #d6d6d6;
}
#feedback .img-box {
  background-color: #fbf6e0;
  border-radius: 50%;
  width: 20%;
  height: 0;
  padding-bottom: 20%;
  position: relative;
}
#feedback .img-box img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  object-fit: contain;
}
#feedback .text-box {
  width: 75%;
}
#feedback .text-box small {
  display: block;
  font-size: 14px;
  color: gray;
}

#process {
  background: url(../image/bg.jpg) no-repeat center/cover, rgb(36, 36, 36);
  background-blend-mode: overlay;
  padding: 80px 0;
  color: #fbf6e0;
  font-size: 18px;
}
@media (min-width: 992px) {
  #process {
    background-attachment: fixed;
  }
}
#process p {
  font-size: 14px;
  color: #fbf6e0;
}
#process .btn {
  transition: all 0.6s;
  z-index: 0;
}
#process .btn i {
  font-size: 32px;
}
#process .btn span {
  font-family: "Baloo Tamma 2", cursive;
  font-size: 30px;
  line-height: 2;
}
#process .btn span small {
  font-size: 0.5em;
}
#process .btn:after {
  content: "";
  position: absolute;
  left: 10px;
  right: -10px;
  top: 10px;
  bottom: -10px;
  border-right: 1px solid #B24F0E;
  border-bottom: 1px solid #B24F0E;
  transition: all 0.6s;
  z-index: -1;
}
#process .img-section img {
  height: 40vh;
  object-fit: cover;
}

#gallery .wrapper h3 {
  text-align: center;
  display: inline-block;
  position: relative;
  z-index: 0;
  font-size: 28px;
}
#gallery .wrapper h3:after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background: url(../image/gallery/bg.png) no-repeat center/contain;
  z-index: -1;
}
#gallery .wrapper figure {
  display: block;
  background-color: rgb(255, 255, 255);
  height: 40vh;
  margin: 20px;
}
#gallery .wrapper figure a {
  display: block;
  height: 100%;
}
#gallery .wrapper figure a img {
  padding: 8px;
  object-fit: contain;
  height: 100%;
}
#gallery .wrapper figure figcaption {
  text-align: center;
  padding-bottom: 8px;
  font-size: 14px;
  color: gray;
}
#gallery .gallery-wrapper .wrapper:first-child figure:nth-child(1), #gallery .gallery-wrapper .wrapper:first-child figure:nth-child(8), #gallery .gallery-wrapper .wrapper:first-child figure:nth-child(14) {
  position: relative;
  box-shadow: unset;
  clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
  overflow: hidden;
}
#gallery .gallery-wrapper .wrapper:first-child figure:nth-child(1) a img, #gallery .gallery-wrapper .wrapper:first-child figure:nth-child(8) a img, #gallery .gallery-wrapper .wrapper:first-child figure:nth-child(14) a img {
  object-fit: cover;
}
#gallery .gallery-wrapper .wrapper:first-child figure:nth-child(1):before, #gallery .gallery-wrapper .wrapper:first-child figure:nth-child(8):before, #gallery .gallery-wrapper .wrapper:first-child figure:nth-child(14):before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7333333333);
}
#gallery .gallery-wrapper .wrapper:first-child figure:nth-child(1):after, #gallery .gallery-wrapper .wrapper:first-child figure:nth-child(8):after, #gallery .gallery-wrapper .wrapper:first-child figure:nth-child(14):after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "水彩";
  position: absolute;
  left: 0;
  text-align: center;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 20px;
  letter-spacing: 4px;
  z-index: 1;
}
#gallery .gallery-wrapper .wrapper:first-child figure:nth-child(8):after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "炭筆素描";
}
#gallery .gallery-wrapper .wrapper:first-child figure:nth-child(14):after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "鉛筆素描";
}
#gallery .gallery-wrapper .wrapper:nth-child(2) figure:nth-child(1), #gallery .gallery-wrapper .wrapper:nth-child(2) figure:nth-child(7), #gallery .gallery-wrapper .wrapper:nth-child(2) figure:nth-child(17) {
  position: relative;
  box-shadow: unset;
  clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
  overflow: hidden;
}
#gallery .gallery-wrapper .wrapper:nth-child(2) figure:nth-child(1) a img, #gallery .gallery-wrapper .wrapper:nth-child(2) figure:nth-child(7) a img, #gallery .gallery-wrapper .wrapper:nth-child(2) figure:nth-child(17) a img {
  object-fit: cover;
}
#gallery .gallery-wrapper .wrapper:nth-child(2) figure:nth-child(1):before, #gallery .gallery-wrapper .wrapper:nth-child(2) figure:nth-child(7):before, #gallery .gallery-wrapper .wrapper:nth-child(2) figure:nth-child(17):before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7333333333);
}
#gallery .gallery-wrapper .wrapper:nth-child(2) figure:nth-child(1):after, #gallery .gallery-wrapper .wrapper:nth-child(2) figure:nth-child(7):after, #gallery .gallery-wrapper .wrapper:nth-child(2) figure:nth-child(17):after {
  position: absolute;
  left: 0;
  text-align: center;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 20px;
  letter-spacing: 4px;
  z-index: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "漫畫插畫";
}
#gallery .gallery-wrapper .wrapper:nth-child(2) figure:nth-child(7):after {
  content: "輕水彩色鉛筆｜";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "輕水彩色鉛筆";
}
#gallery .gallery-wrapper .wrapper:nth-child(2) figure:nth-child(17):after {
  content: "壓克力｜";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "壓克力";
}

#contact {
  background-color: #B24F0E;
  position: relative;
}

#contact .img-box {
  text-align: center;
}

#contact img.logo {
  width: 200px;
  filter: invert(2) brightness(2);
}

#contact ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

#contact ul.information li {
  margin-bottom: 28px;
}

#contact ul.information li span {
  display: block;
  color: #fbf6e0;
  font-size: 24px;
  font-family: "IM Fell French Canon SC", serif;
  text-transform: uppercase;
}

#contact ul.information li a {
  display: block;
  margin: 0;
  margin-top: 4px;
  font-size: 16px;
  color: #fff;
}

#contact ul.information li a i {
  transform: translateX(8px);
  color: #fbf6e0;
}

#contact ul.information li i {
  margin-right: 1rem;
  width: 16px;
  line-height: 16px;
  color: #fff;
}

#contact .contact-content {
  padding: 0 10px;
}

#contact iframe {
  height: 300px;
  width: 100%;
  display: block;
  z-index: 1;
}

footer {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 80px;
}

footer p,
footer a {
  margin: 0;
  font-size: 12px;
  color: gray;
}

.quick-link-l {
  z-index: 99;
  position: fixed;
  bottom: 80px;
  right: 0;
  -webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0.51);
  box-shadow: 0 1px 3px rgba(128, 128, 128, 0.51);
  background-color: #80390A;
}

.quick-link-l .link-btn {
  font-size: 20px;
  border-radius: 0;
  background-color: #80390A;
  color: white;
  width: 50px;
  line-height: 50px;
  box-shadow: 0 0 0;
  padding: 12px 0;
  transition: all 0.6s;
}
.quick-link-l .link-btn span {
  display: block;
  writing-mode: vertical-rl;
  font-size: 16px;
  letter-spacing: 4px;
  margin-top: 8px;
  font-family: "Baloo Tamma 2", cursive;
}
.quick-link-l .link-btn:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-link-l .link-btn i {
  padding: 4px;
}

.quick-link-s {
  z-index: 99;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #F3A36D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: 0 -2px 4px rgba(104, 104, 104, 0.2);
  box-shadow: 0 -2px 4px rgba(104, 104, 104, 0.2);
}

.quick-link-s .link-btn {
  line-height: 30px;
  width: 50%;
  color: #000;
  text-align: center;
  background-color: #fff;
  border: 0;
  border-radius: unset;
  padding: 8px 0;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  float: left;
  margin: 0;
  font-size: 16px;
  letter-spacing: 1.2px;
  font-family: "Baloo Tamma 2", cursive;
}

.quick-link-s .link-btn:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.062745098);
}

.quick-link-s .link-btn i {
  margin: auto;
}

@media screen and (min-width: 768px) {
  #banner .img-content {
    font-size: 24px;
  }
  #banner .img-content .btn {
    width: 150px;
    line-height: 30px;
    font-size: 20px;
    margin: 20px;
  }
  #banner .img-content p span {
    font-size: 60px;
  }
  #news {
    position: relative;
  }
  #news img {
    margin: 5px;
  }
  #news img.i1 {
    border-radius: 50px 0 0 0;
  }
  #news img.i2 {
    border-radius: 0 50px 0 0;
  }
  #news img.i3 {
    border-radius: 0 0 50px 0;
  }
  #about figure blockquote {
    right: 30px;
    font-size: 20px;
  }
  #services .img-box {
    width: 250px;
    height: 250px;
    padding: 60px;
  }
  #process {
    padding: 80px 0 0;
  }
  #process .text {
    padding: 80px 0;
  }
  #process p {
    font-size: 18px;
  }
  #process .img-section figure {
    width: 50%;
  }
  #process .img-section figure img {
    height: 40vh;
    object-fit: cover;
  }
  #gallery {
    background-attachment: fixed;
  }
  #gallery h3 {
    display: inline-block;
    position: relative;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 30px;
    padding: 0;
  }
  #contact img.logo {
    width: 400px;
  }
  #contact img {
    width: 80%;
    max-width: 500px;
  }
}
@media screen and (min-width: 992px) {
  section:not(:first-child) {
    padding: 120px 0;
  }
  h2 span {
    font-size: 60px;
  }
  a:hover {
    color: white;
  }
  .sticky-lg-top {
    top: 100px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-link {
    position: relative;
    display: block;
    margin: 0 12px;
  }
  .navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-bottom: 1px solid;
    width: 0%;
    background-color: #B24F0E;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .navbar .navbar-nav .nav-link:hover:after {
    width: 100%;
  }
  footer a:hover {
    color: #B24F0E;
  }
  .quick-link-l .link-btn:hover {
    cursor: pointer;
    filter: brightness(1.1);
    color: white;
  }
  .link-btn:hover {
    background-color: #B24F0E;
    color: white;
  }
  #banner .img-box {
    overflow: hidden;
  }
  #banner .img-box img {
    transition: all 1.5s;
  }
  #banner .img-box:hover img {
    transform: scale(1.05);
  }
  #banner .img-content {
    margin-bottom: 60px;
  }
  #banner .img-content h1 {
    font-size: 2em;
  }
  #banner .img-content h1 small {
    font-size: 24px;
    letter-spacing: 1.5px;
  }
  #news img {
    transition: all 0.6s;
  }
  #news img:hover {
    box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.1254901961);
  }
  #news img:hover.i1 {
    transform: translateX(-5px);
  }
  #news img:hover.i2 {
    transform: translateX(5px);
  }
  #news img:hover.i3 {
    transform: translateX(5px);
  }
  #about .container {
    max-width: unset;
    width: 100%;
  }
  #about .text-box {
    padding: 120px 80px;
    margin-left: -100px;
  }
  #about figure blockquote {
    right: 150px;
  }
  #services .container {
    max-width: unset;
    width: 100%;
    padding: 0 80px;
  }
  #services a:hover {
    color: white;
    background-color: #80390A;
    border: 1px solid #80390A;
  }
  #services .img-box {
    width: 260px;
    height: 260px;
    transition: all 0.6s;
    top: 0;
  }
  #services .img-box h3 {
    font-size: 28px;
    opacity: 1;
    transition: all 0.6s;
    margin-top: 0;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2509803922);
  }
  #services .img-box img {
    transition: all 0.6s;
  }
  #services .img-box .bs {
    transition: all 0.6s;
  }
  #services .img-box:hover {
    background-color: #fff;
    top: -20px;
  }
  #services .img-box:hover img {
    filter: brightness(1);
  }
  #services .img-box:hover h3 {
    opacity: 0;
  }
  #services .img-box:hover.bs {
    box-shadow: 0 14px 16px rgba(122, 122, 122, 0.3);
  }
  #feedback .feedback-box {
    padding: 60px 0;
  }
  #feedback .img-box {
    width: 10%;
    padding-bottom: 10%;
  }
  #feedback .img-box img {
    width: 55%;
    height: 55%;
  }
  #feedback .text-box {
    width: 85%;
  }
  #process .text {
    padding: 120px 0;
  }
  #process .btn i {
    font-size: 50px;
  }
  #process .btn span {
    font-size: 32px;
  }
  #process .btn {
    transition: all 0.6s;
    left: 0;
    top: 0;
  }
  #process .btn:hover {
    left: -5px;
    top: -5px;
    color: #fff;
  }
  #process .btn:hover:after {
    left: 25px;
    right: -25px;
    top: 25px;
    bottom: -25px;
  }
  #process .img-section figure {
    width: 25%;
    overflow: hidden;
  }
  #process .img-section figure img {
    transition: all 0.6s;
  }
  #process .img-section figure:hover img {
    transform: scale(1.1);
  }
  #teacher x .container {
    max-width: unset;
  }
  #teacher .teacher-box {
    width: 18%;
    margin: 0 1% 40px;
  }
  #teacher .teacher-box .bs {
    transition: all 0.6s;
  }
  #teacher .teacher-box .img-box {
    overflow: hidden;
  }
  #teacher .teacher-box img {
    transition: all 0.6s;
  }
  #teacher .teacher-box:hover .bs {
    box-shadow: 0 10px 12px rgba(122, 122, 122, 0.35);
  }
  #teacher .teacher-box:hover img {
    transform: scale(1.05);
  }
  #gallery figure {
    overflow: hidden;
    transition: all 0.6s;
    margin: 0 10px;
    position: relative;
  }
  #gallery figure:hover {
    box-shadow: 0 10px 12px rgba(122, 122, 122, 0.5);
  }
  #gallery figure:hover figcaption {
    opacity: 1;
  }
  #gallery figure figcaption {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    width: 80%;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: all 0.8s;
  }
  #contact .contact-content {
    height: 100%;
  }
  #contact .contact-content a i {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  #contact .contact-content ul.information li a:hover i {
    transform: translateX(16px);
  }
  #contact .contact-content ul.link-group li a.circle-btn:hover i {
    transform: scale(1.1);
  }
  footer {
    padding: 40px 0;
  }
}
/*# sourceMappingURL=style.css.map */