@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500&display=swap");
body {
  margin: 0;
  background-color: #161616;
}

* {
  box-sizing: border-box;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: white;
}

h3 {
  line-height: 2em;
  text-align: center;
  color: #FFBE0A;
}

h2 {
  color: #575757;
  font-size: 40px;
}

h2 span {
  display: block;
  font-size: 0.8em;
  margin-bottom: 0.5em;
  font-family: 'Dancing Script', cursive;
}

p {
  line-height: 1.7em;
  color: white;
}

img {
  width: 100%;
}

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

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

section:nth-child(odd) {
  background: url(../image/bg.jpg) no-repeat center/cover;
  background-attachment: fixed;
}

@media screen and (max-width: 576px) {
  #process {
    background-attachment: unset;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-size: cover;
  background: #161616;
}

.navbar h1 {
  margin: 0;
  font-size: 20px;
}

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

.navbar .navbar-toggler i {
  color: white;
}

.navbar .navbar-collapse {
  justify-content: space-around;
}

.navbar .navbar-collapse .navbar-nav {
  justify-content: center;
  align-items: center;
}

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

.navbar .navbar-collapse .navbar-nav .nav-link {
  text-align: center;
  color: white;
  margin: 12px;
  padding: 10px;
}

#banner {
  position: relative;
  padding-top: 50px;
}

#banner .slogan {
  text-align: center;
  display: inline-block;
  z-index: 10;
  position: absolute;
  color: white;
  top: 25%;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  font-size: 2em;
  text-shadow: 1px 1px 1px black;
}

#banner .banner-content {
  padding: 10px;
  background-color: #575757;
  box-shadow: 6px 6px 6px rgba(17, 17, 17, 0.1);
}

#banner .banner-content p {
  text-align: center;
  color: white;
}

#banner .banner-content p span {
  display: block;
}

#banner .banner-content i {
  padding: 10px;
  color: white;
}

#about h3 {
  margin-bottom: 12px;
  margin-top: 32px;
}

#about .reserve-block {
  text-align: center;
}

#about .reserve-block p {
  margin-right: 30px;
}

#about .reserve-block p .num {
  margin-right: 12px;
}

#about .reserve-block p a {
  margin: 20px 0;
}

#about .about-img {
  height: 60vh;
  object-fit: cover;
}

#services img {
  object-fit: cover;
  object-position: center;
  height: 50vh;
}

#services .text-box {
  padding: 20px;
  background-color: #575757;
}

#services .text-box h3 {
  color: #FFBE0A;
  margin-bottom: 20px;
}

#services .text-box p {
  position: relative;
  padding-left: 10px;
  font-weight: 700;
}

#services .text-box p small {
  display: block;
  font-style: italic;
  font-weight: 300;
}

#services .text-box p::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: white;
}

#price th,
#price td {
  color: white;
}

#price h3 {
  color: #FFBE0A;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

#price h3 span {
  display: block;
  color: white;
  font-size: 16px;
}

#price .details {
  margin: 20px 0;
}

#price .details p {
  font-size: 15px;
  text-align: center;
}

#price .details img {
  width: 50px;
  height: 50px;
  display: block;
  margin: 12px auto;
}

#work h3 {
  margin: 10px 0;
}

#work .tab-link a {
  display: block;
  text-align: center;
  padding: 8px;
  border: 1px solid;
}

#work .tab-link a.active {
  color: #FFBE0A;
  border: 1px solid #FFBE0A;
}

#work .tab-box .tab-item .multiple-items, #work .tab-box .tab-item .multiple-items-row {
  margin: 30px;
}

#work .tab-box .tab-item .multiple-items a, #work .tab-box .tab-item .multiple-items-row a {
  margin: 0 8px;
}

#work .tab-box .tab-item .multiple-items a img, #work .tab-box .tab-item .multiple-items-row a img {
  height: 300px;
  object-fit: cover;
}

#process .step {
  position: relative;
}

#process .step:not(:last-child):before {
  content: "";
  display: block;
  position: absolute;
  top: 34px;
  left: -30px;
  height: 100%;
  width: 1px;
  background: #FFBE0A;
}

#process .step h3 {
  display: inline-block;
  position: relative;
}

#process .step h3::after {
  content: "1";
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  display: inline-block;
  background-color: #FFBE0A;
  color: black;
  font-size: 15px;
  width: 20px;
  line-height: 20px;
  border-radius: 50%;
}

#process .step:nth-child(2) h3::after {
  content: "2";
}

#process .step:nth-child(3) h3::after {
  content: "3";
}

#process .step:nth-child(4) h3::after {
  content: "4";
}

#contact iframe {
  height: 300px;
}

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

#contact .content-box a {
  display: block;
}

#contact .content-box span {
  display: block;
}

#contact .link-box a {
  width: 40px;
  height: 40px;
  margin: 12px;
}

footer {
  padding: 20px;
}

#quick-link {
  display: none;
  position: fixed;
  z-index: 100;
  right: 8px;
  bottom: 20px;
}

.link-btn,
.top {
  display: inline-block;
  text-align: center;
  width: 30px;
  line-height: 30px;
  margin: 12px;
  font-size: 1.6rem;
  color: white;
  font-size: 16px;
  border: 1px solid;
}

@media screen and (min-width: 768px) {
  #services img {
    width: 50%;
    height: 400px;
  }
  #services .text-box {
    width: 50%;
    padding: 50px;
  }
  #work .tab-box .tab-item .multiple-items a img, #work .tab-box .tab-item .multiple-items-row a img {
    height: 80vh;
    object-fit: cover;
  }
}

@media screen and (min-width: 992px) {
  h2 {
    padding-bottom: 40px;
  }
  a:hover {
    color: #FFBE0A;
  }
  section:not(:first-child) {
    padding: 120px 0;
  }
  .navbar .navbar-collapse .navbar-nav .nav-link:hover {
    margin: 0 12px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-link:hover,
  .navbar h1:hover {
    color: #FFBE0A;
  }
  #banner {
    position: relative;
  }
  #banner .img-box {
    background-color: #1f1918;
  }
  #banner .img-box img {
    object-fit: contain;
    height: 80vh;
    width: 80%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  #banner .slogan {
    top: 40%;
    font-size: 2.5em;
  }
  #banner .banner-content {
    position: absolute;
    padding: 40px;
    margin-top: -20px;
    left: 0;
    display: inline-block;
  }
  #banner .banner-content p {
    margin: 0 12px;
  }
  #banner .banner-content p span {
    display: inline-block;
  }
  #about {
    padding-top: 350px;
  }
  #about .content-box {
    padding: 40px;
  }
  #about .content-box a:hover {
    filter: brightness(0.7);
  }
  #contact iframe {
    height: 100%;
  }
  #contact .link-box a:hover {
    filter: brightness(0.7);
  }
  .top:hover,
  .link-btn:hover {
    border: 1px solid #FFBE0A;
    color: #FFBE0A;
    cursor: pointer;
  }
}
/*# sourceMappingURL=style.css.map */