body {
  font-family: Sarabun, sans-serif;
  background-color: var(--body-bg);
  color: var(--body-text);
  background-size: cover;
}

/*===================================
* loader
*===================================*/
.loader-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1035;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.loader-bg .loader-track {
  position: relative;
  height: 3px;
  display: block;
  width: 100%;
  overflow: hidden;
}

.loader-bg .loader-track .loader-fill:after,
.loader-bg .loader-track .loader-fill:before {
  content: "";
  background: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
}

.loader-bg .loader-track .loader-fill:before {
  -webkit-animation: mbar 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  animation: mbar 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.loader-bg .loader-track .loader-fill:after {
  -webkit-animation: m_s 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation: m_s 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

@-webkit-keyframes mbar {
  0% {
    left: -35%;
    right: 100%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: 100%;
    right: -35%;
  }
}

@keyframes mbar {
  0% {
    left: -35%;
    right: 100%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: 100%;
    right: -35%;
  }
}

@-webkit-keyframes m_s {
  0% {
    left: -200%;
    right: 100%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: 107%;
    right: -8%;
  }
}

@keyframes m_s {
  0% {
    left: -200%;
    right: 100%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: 107%;
    right: -8%;
  }
}

/*===================================
* navbar
*===================================*/
.navbar {
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: var(--header-bg);
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(252, 252, 252, 0) 99%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.navbar-brand img {
  height: 50px;
  transition: height 0.25s ease-in-out;
}

.navbar-collapse.show {
  margin-top: 1rem;
}

.btn-menu,
.link-menu {
  color: var(--header-text);
  line-height: 1;
  font-weight: 300;
  font-family: Sarabun, sans-serif;
  font-size: 1rem;
  text-decoration: none !important;
  letter-spacing: 2px;
}

.link-menu {
  display: block;
  padding: 20px 12px;
}

.btn-menu {
  border-color: #fff;
  border-radius: 0;
  display: inline-block;
  margin: 12px 0 12px 10px;
  padding: 9px 12px;
}

.btn-menu:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-menu i,
.link-menu i {
  padding-right: 3px;
}

@media (min-width: 992px) {
  .navbar {
    padding: 1rem;
    background-color: transparent;
    position: absolute;
  }

  .navbar-brand img {
    height: 100px;
  }

  .navbar-nav {
    align-items: center;
  }

  .link-menu {
    font-size: 1.25rem;
    padding: 0 12px;
    border-color: transparent;
  }

  .btn-menu {
    display: block;
    font-size: 1.25rem;
    margin: 0;
  }
}

.navbar.scrolled {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  margin-top: -130px;
  background: var(--header-bg);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border: none;
  padding: .5rem;
}

.navbar.scrolled.awake {
  margin-top: 0px;
  -webkit-transition: .3s all ease-out;
  -o-transition: .3s all ease-out;
  transition: .3s all ease-out;
}

.navbar.scrolled.sleep {
  -webkit-transition: .3s all ease-out;
  -o-transition: .3s all ease-out;
  transition: .3s all ease-out;
}

.navbar.scrolled .navbar-brand img {
  height: 30px;
}

@media (min-width: 992px) {

  .navbar.scrolled .link-menu,
  .navbar.scrolled .btn-menu {
    font-size: 1rem;
  }
}

/* ------------- hamburger ------------- */
.hamburger {
  position: relative;
  height: 15px;
  width: 20px;
  margin: auto;
}

.hamburger>div {
  background-color: var(--header-text);
  border-radius: 5px;
  position: absolute;
  height: 15%;
  width: 100%;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger,
.hamburger>div {
  transition: all 0.2s ease-in-out;
}

.hamburger div:nth-child(1) {
  top: 50%;
  transform: rotate(134deg);
}

.hamburger div:nth-child(2) {
  opacity: 0;
}

.hamburger div:nth-child(3) {
  top: 50%;
  transform: rotate(-134deg);
}

.navbar-toggler.collapsed .hamburger div:nth-child(1) {
  top: 0;
  transform: none;
}

.navbar-toggler.collapsed .hamburger div:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
  opacity: 1;
}

.navbar-toggler.collapsed .hamburger div:nth-child(3) {
  top: auto;
  bottom: 0;
  transform: none;
}

/*------------ owl-carousel -------------------*/

.owl-carousel {
  position: relative;
}

.owl-carousel .owl-item {
  opacity: .4;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y !important;
  touch-action: pan-y !important;
}

.owl-carousel .owl-item.active {
  opacity: 1;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -10px;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}

.owl-carousel .owl-nav .owl-prev span:before,
.owl-carousel .owl-nav .owl-next span:before {
  font-size: 30px;
}

.owl-carousel .owl-nav .owl-prev {
  left: 0;
}

.owl-carousel .owl-nav .owl-next {
  right: 0;
}

.owl-carousel:hover .owl-nav .owl-prev,
.owl-carousel:hover .owl-nav .owl-next {
  opacity: 1;
}

.owl-carousel:hover .owl-nav .owl-prev {
  left: -25px;
}

.owl-carousel:hover .owl-nav .owl-next {
  right: -25px;
}

.owl-carousel.home-slider {
  position: relative;
  z-index: 0;
}

.owl-carousel.home-slider .slider-item .slider-text {
  color: #fff;
}

.owl-carousel.home-slider .slider-item .slider-text p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  color: white;
}

.owl-carousel.home-slider .slider-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.owl-carousel.home-slider .slider-item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: .3;
}

.owl-carousel.home-slider .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  width: 100%;
  text-align: center;
}

@media (max-width: 767.98px) {
  .owl-carousel.home-slider .owl-dots {
    bottom: 5px;
  }
}

.owl-carousel.home-slider .owl-dots .owl-dot {
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: 18px;
  height: 18px;
  margin: 5px;
  border-radius: 50%;
  background: none;
  outline: none;
  position: relative;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  display: inline-block;
}

.owl-carousel.home-slider .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;

  position: absolute;
  border-radius: 50% !important;
  left: 50%;
  top: 50%;
  display: block;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.owl-carousel.home-slider .owl-dots .owl-dot.active {
  border: 2px solid white;
}

.owl-carousel.home-slider .owl-dots .owl-dot.active span {
  background: white;
}

/*===================================
* footer
*===================================*/

footer {
  background: rgba(0, 0, 0, .8);
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

footer,
footer a {
  color: #acacac;
}

footer .footer-heading {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1;
  text-transform: uppercase;
}

footer strong {
  color: #fff;
}

footer hr {
  border-color: #45423e;
  margin: 1rem 0;
  width: 260px;
}

footer ul {
  margin: 0;
  padding: 0;
}

footer li {
  list-style: none;
  margin: 0;
  padding-bottom: 15px;
}

footer li a {
  display: flex;
  text-decoration: none;
  position: relative;
}

footer li i {
  width: 32px;
  height: 32px;
  font-size: 32px;
  line-height: 32px;
  color: #fff;
  margin-right: 1rem;
}

ul.social-media a {
  display: flex;
  align-items: center;
}

ul.e-commerce a {
  display: inline-block;
  background-color: #fff;
  padding: 0.5rem 1rem;
  width: 140px;
}

footer a:hover,
footer li a:hover i {
  color: var(--primary);
}


ul.e-commerce li {
  list-style: none;
  margin: 0;
  padding-bottom: 15px;
}

ul.e-commerce li a {
  display: flex;
  text-decoration: none;
  position: relative;
}

ul.e-commerce a:hover {
  background-color: var(--primary);
}

ul.e-commerce img {
  height: 20px;
}


/*===================================
* section
*===================================*/
section.img-bg,
section.overlay {
  position: relative;
}

section.img-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}

section.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.section-title {
  font-size: 45px;
  line-height: 1.6;
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
}

.divider {
  text-overflow: clip;
}

.divider .outer-line {
  border-bottom: 1px solid var(--primary);
  width: 25%;
  display: inline-block;
  vertical-align: middle;
}

.divider .teks {
  font-family: "Meow Script", Sans-serif;
  font-size: 2rem;
  margin: 0 1rem;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 300;
  position: relative;
  z-index: 5;
}

.responsive-title {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.responsive-title .title {
  margin-left: 1rem;
}

.menu-pad {
  padding-top: 200px;
  padding-bottom: 3rem;
}


.menu-title {
  font-family: Cormorant Garamond, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 60px;
  line-height: 1.07;
  letter-spacing: -.05em;
  margin-bottom: 0;
  position: relative;
  z-index: 5;
  text-align: center;
  color: #fff;
}

.menu-sub-title {
  position: relative;
  border-bottom: 1px solid var(--primary);
  text-align: center;
  margin-bottom: 2rem;
}

.menu-sub-title span {
  background: var(--primary);
  color: black;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  padding: 0.5rem 1rem;
}

/*===================================
* home
*===================================*/

.checkbox-list {
  list-style-type: none;
  margin-left: 2.5em;
  padding: 0 2rem;
}

.checkbox-list>li {
  position: relative;
}

.checkbox-list>li>i.fa {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
  color: var(--primary);
}

/*===================================
* nav-tab
*===================================*/
.nav-tab {
  border: 1px solid var(--primary);
  border-bottom: none;
}

.nav-tab .nav-link {
  border-radius: 0;
  margin: 0;
  color: var(--primary);
  font-size: 18px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid var(--primary);
}

@media (min-width: 576px) {
  .nav-tab {
    border: none;
  }

  .nav-tab .nav-link {
    width: auto;
    margin-left: 5px;
    margin-right: 5px;
  }
}

.nav-tab .nav-link.active,
.nav-tab .nav-link:hover {
  color: black;
  transition: all 0.3s ease;
  background: var(--primary);
}

/*===================================
* Btn
*===================================*/

.btn.btn-white {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}

.btn.btn-white:not(:disabled):not(.disabled):hover {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
}

.btn.btn-outline-white {
  color: rgb(239, 239, 239);
  background-color: rgb(0, 0, 0, 0.4);
  border: 2px solid #efefef;

  font-weight: 800;
  letter-spacing: 2.5px;
  padding: 14px 35px;
  font-size: 13px;
  line-height: 1.7em;
  text-transform: uppercase;
  transition: color .3s cubic-bezier(.55, .21, .51, .75), background-color .3s cubic-bezier(.55, .21, .51, .75), border-color .3s cubic-bezier(.55, .21, .51, .75);
}

.btn.btn-outline-white:not(:disabled):not(.disabled):hover,
.btn.btn-outline-white:not(:disabled):not(.disabled):focus,
.btn.btn-outline-white:not(:disabled):not(.disabled):active {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.modal-dark .modal-content {
  background-color: #242424;
  color: #fff;
}

.modal-dark .modal-header {
  border-bottom: 1px solid #343434;
}

.modal-dark .modal-title {
  color: #fff;
}

.modal-dark .close {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  display: block;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  padding: 0 0 8px 0;
  margin: 0;
  width: 40px;
  height: 40px;
  white-space: nowrap;

  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 1;
}

.modal-dark .close:hover {
  background-color: #dc3545;
  color: #fff;
}

.modal-dark .close:not(:disabled):not(.disabled):focus,
.modal-dark .close:not(:disabled):not(.disabled):hover {
  opacity: 1;
}

@media (min-width: 576px) {
  .modal-dark .close {
    top: -20px;
    right: -20px;
  }
}

/*
.modal-dialog {
  max-width: 100%;
  color: #000;
  margin: 0;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
}

@media (min-width: 768px) {
  .modal-dialog {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .modal-dialog {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .modal-dialog {
    max-width: 1140px;
  }
}

.modal-body {
  background-color: #d9d9d9;
}

.modal,
.modal-open {
  padding: 0 !important;
}
*/

.media-responsive {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.media-responsive img {
  margin-right: 0;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .media-responsive {
    flex-direction: row;
  }

  .media-responsive img {
    margin-right: 3rem;
    margin-bottom: 0;
  }
}

.breadcrumb a:hover {
  color: #fff;
}

/*


.border-circle {
  border: 12px solid rgba(0, 0, 0, 0.7);
  border-radius: 50%;
}



*/

.img-wrap {
  position: relative;
  display: block;
  outline: 0 !important;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.img-wrap img {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.card .caption {
  text-align: center;
  background-color: #151515;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
  border-top: 3px solid var(--primary);
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  position: relative;
  padding-bottom: 35px;
}

.card .caption h4 {
  line-height: 0;
  text-transform: uppercase;
  margin: 35px 0 25px;
  font-weight: 700;
  color: #eee;
  font-size: 18px;
}

.card .caption p {
  padding: 0px 0 18px;
  font-style: italic;
  margin: 0;
}

.background-image {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.judul {
  text-transform: uppercase;
  color: #fff;
  font-family: Cormorant Garamond, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 4rem;
  line-height: 1.07;
  letter-spacing: -.05em;
  text-shadow: 0px 3px 25px rgba(0, 0, 0, 0.1);
}

.text-shadow {
  text-shadow: 0px 3px 25px rgba(0, 0, 0, 0.1);
}

.box {
  background-color: #343434;
  box-shadow: none;
  padding: 18px 20px 15px;
  width: 100%;
  border-radius: 7px;
  font-size: 14px;
  color: inherit;
  display: flex;
}

.box h4 {
  padding-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 1px solid #444;
  color: #eee;
}