.header-transparent {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 1040;
}

.header-inner {
  background: url('../img/header.jpg') no-repeat;
  background-size: cover;
  background-position: right;
}

nav {
  z-index: 1;
}

.navbar-light .navbar-nav .nav-link {
  color: #FFF;
  text-transform: uppercase;
  font-size: .9rem;
  font-weight: 400;
}

.navbar-light .navbar-nav .nav-link {
  padding-right: .9rem !important;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:active,
.navbar-light .navbar-nav .nav-link:focus {
  color: #dbbf90;
}

.navbar-light .navbar-nav .dropdown-menu {
  background-color: #2b2c2e;
  padding: 0;
  border-radius: 15px;
}

.navbar-light .navbar-nav .dropdown-menu .dropdown-divider {
  border-top: 1px solid #FFF;
  width: 80%;
  margin: 0 auto;
}

.navbar-light .navbar-nav .dropdown-menu .dropdown-item {
  color: #FFF;
  font-weight: 300;
  text-transform: uppercase;
  font-size: .8rem;
  padding: .625rem 1.5rem;
}

.navbar-light .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: #1b1d1c;
  color: #46b2a0;
  border-radius: 15px;
}

.navbar-collapse.collapse.show {
  background: #dbbf90;
  padding: 10px;
}

.navbar-toggler i {
  color: #FFF;
}

.navbar-toggler {
  border-color: #FFF !important;
}

.bg-custom-top {
  background-color: #373b3b;
}

body {
  font-family: 'Fahkwang', sans-serif;
}

.bg-gold {
  background: none;
  border-color: #dbbf90;
}

.bg-gold:hover,
.bg-gold:active,
.bg-gold:focus {
  background-color: #dbbf90;
  border-color: #dbbf90;
}

.social-icons .icon {
  padding: 6px 4px;
  margin-left: .4rem;
  line-height: 12px;
}

.social-item .social-square {
  background-color: #4db8a6;
  border-radius: 5px;
  padding: 6px 3px;
}

.social-item i {
  font-size: 1.6rem;
  color: #FFF;
}

.social-item .social-square > span {
  font-size: 1.6rem;
  line-height: 1.6rem;
  width: 40px;
  text-align: center;
  padding-top: 4px;
  color: #FFF;
}

.social-item .text {
  color: #666666;
  font-size: 1rem;
}

.title {
  color: #373b3c;
  font-size: 2.7rem;
  text-transform: uppercase;
  font-weight: 600;
}

.title .text-green {
  color: #4eb7a7;
}

.breadcrumb .breadcrumb-item {
  color: #898a8a;
}

.breadcrumb .breadcrumb-item a {
  color: #898a8a;
  text-decoration: none;
}

.breadcrumb .breadcrumb-item.active {
  color: #46b2a0;
  font-weight: 600;
}

.numbered-item {
  color: #555555;
  font-size: 1.4rem;
  font-weight: 300;
}

.numbered-item .numbered-square {
  background-color: #dbbf90;
  border-radius: 100%;
  padding: 6px 3px;
  width: 45px;
}

.context {
  text-align: justify;
}

.btn-custom {
  letter-spacing: 0.04em;
  font-size: 1rem;
  font-weight: 300;
  color: #dbbf90;
  background: #FFF;
  border: 1px solid #FFF;
  box-shadow: 0px 16px 24px rgba(77, 60, 0, 0.16109);
  border-radius: 15px;
  padding: 0.575rem 1.35rem;
}

.btn-custom:hover,
.btn-custom:active,
.btn-custom:focus {
  color: #FFFFFF;
  background: #dbbf90;
  border-color: #dbbf90;
}

.btn-custom-2 i {
  color: #dbbf90;
}

.btn-custom-2 {
  letter-spacing: 0.04em;
  font-size: 1rem;
  font-weight: 300;
  color: #FFF;
  background: #a1815a;
  border: 1px solid #a1815a;
  box-shadow: 0px 16px 24px rgba(77, 60, 0, 0.16109);
  border-radius: 15px;
  padding: 0.575rem 1.35rem;
}

.btn-custom-2:hover,
.btn-custom-2:active,
.btn-custom-2:focus {
  color: #FFFFFF;
  background: #dbbf90;
  border-color: #dbbf90;
}

.carousel-caption {
  top: 10%;
  left: 5%;
}

.banner {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.banner .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Make it taller to prevent gaps */
  background: url('../img/banner.jpg') no-repeat center/cover;
  transform: translateY(0);
  will-change: transform;
  z-index: -1;
}

.banner .title {
  color: #f4f4f4;
  font-size: 2.1rem;
  line-height: 2.4rem;
  font-weight: 400;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .banner .title {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }

  .banner .parallax-bg {
    background: url('../img/banner-mobile.jpg') no-repeat center/cover;
    filter: brightness(90%);
  }
}

/*** DISCOVER ***/

.discover {
  overflow: hidden;
  position: relative;
  height: 100vh;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.discover .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Make it taller to prevent gaps */
  background: url('../img/clients.jpg') no-repeat;
  background-position: center;
  background-size: cover;
  transform: translateY(0);
  will-change: transform;
  z-index: -1;
}

.discover .title {
  font-size: 3.7rem;
  margin-bottom: 1.7rem;
  color: #FFF;
}

.discover .context {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .discover .parallax-bg {
    background-position: 60% top !important;
    filter: brightness(80%);
  }

  .discover .title {
    font-size: 1.3rem;
    line-height: 1.7rem;
    padding: 0 20px;
  }

  .discover .context {
    font-size: 1rem;
    padding: 0 20px;
  }
}

/*** TRANSFORMATION ***/

.transformations .text-container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.transformations .title {
  font-size: 3.5rem;
  margin-bottom: 1.8rem;
  color: #b7986c;
  font-weight: 400;
  letter-spacing: 1px;
}

.transformations .context {
  color: #a3a2a5;
  font-size: 1.4rem;
  line-height: 1.7rem;
  font-weight: 300;
  letter-spacing: 1.5px;
}

@media (max-width: 768px) {
  .transformations .title {
    font-size: 2rem;
  }
}

.transformations .image {
  border-radius: 15px;
}

.transformations .card-title {
  font-size: 1.5rem;
  line-height: 2.3rem;
  text-transform: uppercase;
  color: #b7986c;
  font-weight: 400;
  margin-top: 1.5rem;
}

.transformations .call-to-action {
  color: #a3a2a5;
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 1px;
}

/*** SERVICES ***/

.services {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.services .title {
  color: #b7986c;
  font-size: 2.3rem;
  font-weight: 400;
}

.services .context {
  color: #a3a2a5;
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 400;
}

/*** CLIENTS ***/

.clients {
  overflow: hidden;
  position: relative;
  padding-top: 7rem;
  padding-bottom: 9rem;
}


.clients .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Make it taller to prevent gaps */
  background: url('../img/schedule.jpg') no-repeat center/cover;
  transform: translateY(0);
  will-change: transform;
  z-index: -1;
}

.clients .title {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.clients .context {
  color: #fff;
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 400;
}

/*** HISTORY ***/
.history .header-title {
  background: url('../img/header_medium.jpg') no-repeat;
  background-position: center top;
  background-position: cover;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.history .header-title .title {
  color: #FFF;
  font-size: 2.8rem;
  font-weight: 400;
}

.history .main-container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.history .context {
  color: #898989;
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 400;
}

.history li {
  color: #898989;
}

.history .image {
  border-radius: 15px;
}

.history .card-title {
  font-size: 2rem;
  line-height: 2.3rem;
  text-transform: uppercase;
  color: #b7986c;
  font-weight: 400;
  margin-top: 2.4rem;
}

.history .call-to-action {
  color: #a3a2a5;
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 1px;
}

.history .show-more .title {
  color: #a1815a;
  font-size: 2rem;
  font-weight: 400;
}

/*** FOOTER ***/

footer {
  padding-top: 5rem;
  padding-bottom: 2rem;
  height: 80vh;
  background: url('../img/footer.jpg') no-repeat;
  background-position: center top;
  background-size: cover;
}

footer .title {
  color: #f2d6aa;
  font-size: 1.3rem;
  font-weight: 400;
}

footer .context {
  color: #FFF;
  font-size: .7rem;
}

footer .copy {
  color: #b5aa96;
  font-size: 9px;
}