@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap);
/* CSS Document */
/* 
*
*
[Table of contents]
*
*
*

  color / $white
  font / @import 
  general / html
  dropdown / .dropdown-custom.btn
  navbar / .navbar
  slider home / .jumbomain
  breadcumb / .breadcumb
  home / .subheading
  slickteam / .slickteam
  pricing / .pricelist
  testimony / .wraper-testimony
  footer / footer
  portofolio / AppContainer
  contact / .form-side
  service / #service
  blog / #blog
  media all / @media only screen and (max-width: 1199px)

*/
/*color*/
/*font*/
/*general*/
html {
  scroll-behavior: auto;
}

body {
  font-family: "Poppins", "Segoe UI", "Ubuntu", "Droid Sans", sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #fff;
  background: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#mainpreloader .preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999999;
  animation-duration: 1.6s;
  animation-fill-mode: both;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#mainpreloader .fadeOut {
  animation-name: fadeOut;
}

.no-style-links {
  color: inherit;
  text-decoration: none;
}

.no-style-links:hover {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.mainpreloader {
  position: relative;
  animation: rotate 1s infinite linear;
  border: 3px solid rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  margin-right: -24px;
  border-radius: 999px;
}

.mainpreloader span {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid transparent;
  border-top: 3px solid #c8b16f;
  top: -3px;
  left: -3px;
  border-radius: 999px;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#routerhang {
  transform: unset !important;
  transform-origin: unset !important;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.br {
  display: block;
  white-space: pre-wrap;
}

section {
  padding: 75px 0;
}

.wraper {
  padding: 0;
  display: block;
  overflow: hidden;
  width: 100%;
}
.wraper .wraperitem {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.m-2-hor {
  padding: 0 7%;
  max-width: 1500px;
  margin: 0 auto !important;
}

.m-10-hor {
  display: flex;
  justify-content: space-between;
  padding-left: 10%;
  padding-right: 10%;
  max-width: 1500px;
  margin: 0 auto;
}

.white {
  color: #111;
  background: #fff;
}

.black_more {
  background: #0f0f0f;
}

.color {
  color: #c8b16f;
}

.btn {
  position: relative;
  overflow: hidden;
  font-size: 11pt;
  color: #fff;
  background: none;
  border: 2px solid #c8b16f;
  border-radius: 0;
  padding: 10px 44px;
  transition-delay: 0s;
  z-index: 0;
}
.btn span {
  color: #fff;
  position: relative;
  z-index: 1;
}
.btn::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: linear-gradient(to left, #c8b16f, #c7ab5a);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
}
.btn:hover::before {
  opacity: 1;
  transition: all 0.3s ease;
}
.btn:hover .shine {
  animation: sheen 0.6s alternate;
}

.shine {
  content: "";
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: -50px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2) 5%, transparent);
  transform: rotateZ(60deg) translate(-1em, 5.5em);
}
@keyframes sheen {
  0% {
    opacity: 1;
    transform: rotateZ(60deg) translate(0, 6em);
  }
  90% {
    opacity: 1;
    transform: rotateZ(60deg) translate(0, -12em);
  }
  100% {
    opacity: 0;
    transform: rotateZ(60deg) translate(0, -12em);
  }
}
.text-gradient {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  background: linear-gradient(to bottom, #c8b16f, #c7ab5a);
}

/* dropdown */
.dropdown-custom.btn {
  border: 0px;
  position: relative;
  top: -1px;
  overflow: unset !important;
  font-weight: 500;
  padding: 0 20px;
  background: none !important;
}
.dropdown-custom.btn::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 19px;
  width: max-content;
  height: auto;
  padding: 30px 40px;
  background: 0;
}
.dropdown-custom.btn::after {
  margin-left: 10px !important;
}
.dropdown-custom.btn:focus {
  box-shadow: none !important;
}
.dropdown-custom.btn:hover {
  color: #c8b16f;
}

.dropdown-toggle::after {
  position: relative;
  top: 1px;
}

.item-dropdown {
  width: max-content;
  padding: 0;
  position: absolute;
  background: #1b1b1b;
  border-radius: 0px;
  inset: 40px auto auto 19px;
  padding: 5px 0;
  animation: smoothDrop 0.2s ease;
  -webkit-animation: smoothDrop 0.2s ease;
  z-index: 1;
}
.item-dropdown .dropdown {
  position: relative;
  text-align: center;
}
.item-dropdown .dropdown a {
  color: rgba(255, 255, 255, 0.8);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0.6px;
  display: block;
  font-size: 0.78rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px 12px 20px;
  min-width: 210px;
  width: 100%;
  text-align: left;
}
.item-dropdown .dropdown a:hover {
  color: #c8b16f;
  background: 0;
}
.item-dropdown .dropdown a:last-child {
  border-bottom: none;
}

.imgslickz {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*navbar*/
.navbar {
  padding: 20px 0;
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  z-index: 999;
}
.navbar .w-100-nav {
  margin: 0;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.navbar a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 4px 20px;
  text-decoration: none !important;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}
.navbar a:hover {
  color: #c8b16f;
  transition: all 0.3s ease;
}
.navbar a.active {
  color: #c8b16f !important;
  transition: all 0.3s ease;
}
.navbar a.active:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  background: 0;
  cursor: default;
}
.navbar .navbar-title {
  margin-right: auto;
  font-size: 150%;
  padding: 12px 16px;
}
.navbar .navbar-item {
  position: relative;
  display: inline-block;
  padding: 0 5px;
  cursor: default;
  vertical-align: middle;
}
.navbar .logo .navbar-item {
  position: relative;
  top: 0px;
  left: 0px;
  padding: 0;
  width: 300px;
  border-bottom: none;
}
.navbar .logo .navbar-item a {
  padding: 0;
}
.navbar .nav-icon {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .navbar .m-2-hor {
    padding: 0px 2%;
  }
  .navbar .menu {
    padding: 15px 0 10px;
  }
  .navbar.navbar {
    background: #1b1b1b;
    position: relative;
  }
  .navbar .w-100-nav {
    display: block;
  }
  .navbar .navbar-item {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .navbar .nav-icon {
    position: absolute;
    top: 33px;
    right: 25px;
    display: block;
    width: 20px;
    height: 10px;
    padding-top: 13px;
    line-height: 0;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 9999;
  }
  .navbar .bg-nav-icon {
    width: 32px;
    height: 24px;
    background: rgba(255, 255, 255, 0);
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
  }
  .navbar #nav-icon span,
  .navbar .nav-icon span {
    display: none;
    position: absolute;
    top: 5px;
    left: -40px;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  .navbar .menu-line {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 0px;
    background-color: #fff;
  }
  .navbar .menu-line1 {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 5px;
    background-color: #fff;
  }
  .navbar .menu-line2 {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 10px;
    background-color: #fff;
  }
  .navbar.sticky {
    position: absolute !important;
  }
}
.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #1b1b1b;
  animation: smoothScroll 0.6s forwards;
  -webkit-animation: smoothScroll 0.6s forwards;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-300px);
    -webkit-transform: translateY(-300px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
}
@keyframes smoothDrop {
  0% {
    opacity: 0;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
}

/* disable click active */
.navbar-item {
  pointer-events: auto;
}

.navbar-item a.active {
  pointer-events: none;
}

/* disable click active */
/* slider */
.jumbomain {
  position: relative;
  padding: 0;
  margin: 0;
}

.slider-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.slider-wrapper .previousButton,
.slider-wrapper .nextButton {
  opacity: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}
.slider-wrapper:hover .previousButton,
.slider-wrapper:hover .nextButton {
  opacity: 1;
  transition: all 0.3s ease;
}

.slide {
  background-size: cover !important;
}

.slide::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
}

.previousButton,
.nextButton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  text-align: center;
}
.previousButton svg,
.nextButton svg {
  display: none;
}

.previousButton::before,
.nextButton::before {
  content: "\f054";
  font-family: FontAwesome;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: normal;
  color: #fff;
  opacity: 0.8;
}

.previousButton {
  left: 0;
  transform: rotate(180deg) translateY(calc(50% + 0px));
}

.previousButton {
  left: 4%;
}

.nextButton {
  right: 4%;
}

.slider-content {
  text-align: left;
}

.slider-content .inner {
  padding: 0 12%;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slider-content .inner button {
  font-weight: 500;
  position: relative;
  overflow: hidden;
  font-size: 11pt;
  letter-spacing: 1px;
  color: #fff;
  border: 2px solid #c8b16f;
  background: none;
  border-radius: 0;
  padding: 0 44px;
  height: 45px;
  transition-delay: 0s;
  z-index: 0;
}
.slider-content .inner button span {
  position: relative;
  z-index: 1;
}
.slider-content .inner button::before {
  content: "";
  width: 180%;
  height: 180%;
  top: -100%;
  left: -100%;
  position: absolute;
  background-image: linear-gradient(to left, #c8b16f, #c7ab5a);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
}
.slider-content .inner button:hover::before {
  top: 0;
  left: 0;
  opacity: 1;
  transition: all 0.3s ease;
}
.slider-content .inner button:hover .shine {
  animation: sheen 0.6s alternate;
}

.slider-content .inner h1 {
  font-weight: 600;
  max-width: 800px;
  color: #fff;
  font-size: 46px;
  margin-bottom: 35px;
}

.slider-content .inner p {
  color: #fff;
  font-size: 27px;
  line-height: 1.3;
  max-width: 640px;
  margin-bottom: 30px;
}

.slider-content section {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.slider-content section span {
  color: #fff;
}

.slider-content section span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  display: inline-block;
  text-align: left;
  line-height: 1.4;
  vertical-align: middle;
  margin-left: 10px;
}

.slider-content section img {
  width: 40px;
  height: 40px;
  border: solid 2px rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  vertical-align: middle;
}

.slider-content section span strong {
  color: #fff;
  font-size: 14px;
  display: block;
}

@media (max-height: 500px) {
  .slider-wrapper,
  .slide {
    height: calc(100vh - 75px);
  }
}
@media (max-width: 640px) {
  .slider-wrapper,
  .slide {
    height: calc(80vh - 75px);
  }
}
@media (max-height: 600px) {
  .slider-content .inner h1 {
    font-size: 27px;
  }
}
@media (max-width: 640px) {
  .slider-content .inner h1 {
    font-size: 27px;
  }
  .slider-content .inner p {
    font-size: 18px;
  }
}
.slide h1 {
  transition: all 0.3s ease;
  transform: translateY(-20px);
  opacity: 0;
}

.slide button {
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.slide p {
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.slide section * {
  transition: all 0.3s ease;
}

.slide section img {
  transform: translateX(-10px);
  opacity: 0;
}

.slide section span {
  transform: translateY(-10px);
  opacity: 0;
}

.slide section span strong {
  transform: translateY(10px);
  opacity: 0;
}

.slide.animateIn.previous h1,
.slide.current h1,
.slide.animateIn.next h1,
.slide.animateIn.previous button,
.slide.current button,
.slide.animateIn.next button,
.slide.animateIn.previous p,
.slide.current p,
.slide.animateIn.next p,
.slide.animateIn.previous section *,
.slide.current section *,
.slide.animateIn.next section * {
  transform: translateY(0);
  transition-delay: 0.9s;
  opacity: 1;
}

.slide.animateIn.previous p,
.slide.animateIn.next p {
  transition-delay: 1.1s;
}

.slide.animateIn.previous button,
.slide.animateIn.next button {
  transition-delay: 1.3s;
}

.slide.animateIn.previous section img,
.slide.animateIn.next section img {
  transition-delay: 1.3s;
}

.slide.animateIn.previous section span,
.slide.animateIn.next section span {
  transition-delay: 1.4s;
}

.slide.animateIn.previous section span strong,
.slide.animateIn.next section span strong {
  transition-delay: 1.5s;
}

.slide.animateOut h1 {
  transition-delay: 0.3s;
}

.slide.animateOut p {
  transition-delay: 0.2s;
}

.slide.animateOut section span {
  transition-delay: 0.1s;
}

.slide.animateOut section span strong {
  transition-delay: 0s;
}

/* breadcumb */
.breadcumb {
  border-radius: 0;
  margin: 0;
  padding: 0 0;
  background-size: cover;
  width: 100%;
  position: relative;
}
.breadcumb::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #111, rgba(0, 0, 0, 0.1));
  opacity: 0.5;
}
.breadcumb .mainbreadcumb {
  padding: 278px 0 30px;
}
.breadcumb .mainbreadcumb h1 {
  margin-bottom: 0;
  line-height: 1;
}
.breadcumb .mainbreadcumb .list {
  position: relative;
  bottom: -20px;
  display: flex;
  justify-content: right;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 4px;
}
.breadcumb .mainbreadcumb .list .dash {
  padding: 0 10px;
}
.breadcumb .mainbreadcumb .list .link {
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.breadcumb .mainbreadcumb .list .link:hover {
  color: #c8b16f;
  transition: all 0.3s ease;
}
.breadcumb .homebread {
  width: 100%;
  padding: 180px 0 140px;
}
.breadcumb .homebread .heading {
  line-height: 1.3;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.breadcumb .homebread .subheading {
  font-size: 2.1rem;
  margin-bottom: 0;
}
.breadcumb .homebread .content {
  max-width: 500px;
  margin-bottom: 0;
  margin-bottom: 30px;
}
.breadcumb.h-vh {
  height: 100vh;
  display: flex;
  align-items: center;
}

/* home */
.subheading {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.heading {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.content {
  margin-bottom: 0.5rem;
}

.col-feature {
  display: block;
}
.col-feature .sub-color {
  color: #c8b16f;
  font-size: 1.6rem;
  font-weight: 700;
}
.col-feature .heading {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 5px 0;
}
.border-radius {
  border-radius: 0px;
  box-shadow: 0 10px 12px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: all 0.3s ease;
}
.border-radius:hover {
  box-shadow: none;
  transition: all 0.3s ease;
}

/* icon scroll */
.icon-scroll-wraper {
  position: absolute;
  width: 100%;
  bottom: 5vh;
  left: 0;
}

.icon-scroll {
  position: relative;
  margin: 0 auto;
}

.icon-scroll:before {
  position: absolute;
}

.icon-scroll {
  width: 26px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  z-index: 1;
  border-radius: 25px;
  height: 38px;
}

.icon-scroll:before {
  content: "";
  width: 3px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  left: 12px;
  top: 8px;
  border-radius: 4px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: scroll;
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.features {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 60px;
  overflow: hidden;
}
.features .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.features .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.features .content {
  position: relative;
  text-align: center;
}
.features .content .heading {
  color: #c8b16f;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.features .content .con-text {
  font-size: 0.9rem;
  line-height: 1.7rem;
  padding: 0 1.1vw;
}
.features .content .link {
  width: max-content;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  font-size: 11pt;
  letter-spacing: 1px;
  color: #fff;
  border: 2px solid #c8b16f;
  background: none;
  border-radius: 0;
  padding: 0 44px;
  height: 45px;
  line-height: 40px;
  margin: 20px auto 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.features .content .link:hover {
  background: #c8b16f;
  border: 2px solid rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}
.features .content .link:hover .shine {
  animation: sheen 0.6s alternate;
}

/*slickteam*/
.slickteam {
  width: 100%;
  position: relative;
  padding: 30px 0 0;
}
.slickteam .slick-prev {
  opacity: 0;
  left: -30px;
  z-index: 1;
  transition: all 0.3s ease;
}
.slickteam .slick-prev::before {
  content: "\f053" !important;
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal;
  color: #fff;
}
.slickteam .slick-next {
  right: -30px;
  opacity: 0;
  transition: all 0.3s ease;
}
.slickteam .slick-next::before {
  content: "\f054" !important;
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal;
  color: #fff;
}
.slickteam .slick-slide {
  position: relative;
}
.slickteam .slick-slide div {
  margin: 0 5px;
}
.slickteam .slick-slide div .itm {
  margin: 0;
  position: relative;
  height: 100%;
  outline: none;
  overflow: hidden;
}
.slickteam .slick-slide div .itm .bg {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.slickteam .slick-slide div .itm .bg img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.slickteam .slick-slide div .itm .bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.3));
  opacity: 0.5;
  transition: all 0.3s ease;
}
.slickteam .slick-slide div .itm .desc {
  position: absolute;
  bottom: 15px;
  left: 15px;
  text-align: left;
}
.slickteam .slick-slide div .itm .desc .name {
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 1px;
}
.slickteam .slick-slide div .itm .desc .title {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.slickteam .slick-slide div .itm .icon {
  width: 100%;
  position: absolute;
  text-align: right;
  right: 15px;
  bottom: -30px;
  transition: all 0.3s ease;
}
.slickteam .slick-slide div .itm .icon span {
  width: 100%;
  height: auto;
  color: inherit;
  padding: 10px;
}
.slickteam .slick-slide div .itm .icon span i {
  transition: all 0.3s ease;
}
.slickteam .slick-slide div .itm .icon span:hover i {
  transform: scale(1.3);
}
.slickteam .slick-slide div .itm:hover {
  cursor: pointer;
}
.slickteam .slick-slide div .itm:hover .bg:before {
  opacity: 0.8;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}
.slickteam .slick-slide div .itm:hover .icon {
  bottom: 15px;
  transition: all 0.3s ease;
}
.slickteam .slick-slide div .itm:hover .title {
  line-height: 0.9;
  transition: all 0.3s ease;
}
.slickteam .slick-slide.slick-col {
  display: block;
  overflow: hidden;
}
.slickteam .slick-slide.slick-col div .itm .bg img {
  min-height: 300px !important;
}
.slickteam:hover .slick-prev,
.slickteam:hover .slick-next {
  opacity: 1;
  transition: all 0.3s ease;
}

/* pricing */
.pricelist {
  display: block;
  border: 8px solid rgba(255, 255, 255, 0.1);
  padding: 20px 10px;
  margin: 30px auto 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.pricelist .heading {
  font-size: 1.75rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0 30px;
}
.pricelist .bigprice {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  padding: 10px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricelist .bigprice small {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.8;
}
.pricelist .list {
  list-style: none;
  padding: 0px;
  text-align: left;
}
.pricelist .list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricelist .list li i {
  position: relative;
  top: -2px;
  font-size: 0.8rem;
  padding-right: 2px;
}
.pricelist:hover {
  border: 8px solid #c8b16f;
  transition: all 0.3s ease;
}

/*testimony*/
.wraper-testimony {
  background-size: cover;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 110px 0;
}
.wraper-testimony::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to left, #c8b16f, #c7ab5a);
  opacity: 0.95;
}

.testimony {
  width: 100%;
}
.testimony .slick-prev {
  opacity: 0;
  left: -30px;
  z-index: 1;
  transition: all 0.3s ease;
}
.testimony .slick-prev::before {
  content: "\f053" !important;
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal;
  color: #fff;
}
.testimony .slick-next {
  right: -30px;
  opacity: 0;
  transition: all 0.3s ease;
}
.testimony .slick-next::before {
  content: "\f054" !important;
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal;
  color: #fff;
}
.testimony .slick-slide {
  position: relative;
}
.testimony .slick-slide div {
  margin: 0 5px;
}
.testimony:hover .slick-prev,
.testimony:hover .slick-next {
  opacity: 1;
  transition: all 0.3s ease;
}
.testimony .blockquote {
  font-size: 0.98rem;
  text-align: left;
  margin: 15px 30px 30px;
  display: flex;
}
.testimony .blockquote .fa {
  font-size: 1.3rem;
  display: inline-block;
  margin: 5px 15px 0 0;
  color: #fff;
  height: max-content;
}
.testimony .blockquote p {
  line-height: 1.8;
  display: inline-block;
}
.testimony .blockquote .bytesti {
  font-size: 0.9rem;
  font-weight: 400;
}
.testimony .slick-dots {
  bottom: -40px;
}
.testimony .slick-dots li.slick-active button::before {
  opacity: 0.75;
  color: #fff;
}
.testimony .slick-dots li button::before {
  color: #fff;
}

/* footer */
footer {
  position: relative;
  padding: 75px 0 0;
  padding-right: 0px !important;
  padding-left: 0px !important;
  overflow: hidden;
}
footer .bg-footer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}
footer .bg-footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer .footer-col {
  padding-right: 15px;
  padding-left: 15px;
  margin: 15px 0;
}
footer .footer-col .heading {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
footer .footer-col .content {
  line-height: 1.6;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}
footer .footer-col .content .link {
  font-size: 0.96rem;
  width: max-content;
  letter-spacing: 0;
  padding: 0 0 5px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(200, 177, 111, 0.8);
}
footer .footer-col .content .link:hover {
  opacity: 0.6;
  transition: all 0.3s ease;
}
footer .footer-col .content .socialicon {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 10px 14px 6px;
  background: #111;
  margin-right: 10px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(200, 177, 111, 0.8);
  transition: all 0.3s ease;
}
footer .footer-col .content .socialicon i {
  font-size: 1.3rem;
}
footer .footer-col .content .socialicon:hover {
  background: #c8b16f;
  transition: all 0.3s ease;
}
footer .footer-col .content .socialicon:hover .shine {
  z-index: 1;
  animation: sheen 2s alternate;
}
footer .footer-col .link-call {
  font-weight: 300;
  display: inline-block;
  color: #c8b16f;
  font-size: 0.8rem;
  width: max-content;
  letter-spacing: 1px;
  padding: 0 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
footer .footer-col .link-call:hover {
  opacity: 0.6;
  transition: all 0.3s ease;
}

.subfooter {
  width: 100%;
  margin-top: 90px;
  padding: 8px 15px;
  background: rgba(0, 0, 0, 0.6);
}
.subfooter .content {
  font-size: 0.8rem;
  opacity: 1;
  letter-spacing: 0.3px;
  margin: 0;
  color: #eee;
}
.subfooter .content-right {
  text-align: right;
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 0.3px;
  margin: 0;
}
.subfooter .content-right i {
  padding: 0 5px;
}
@media only screen and (max-width: 768px) {
  .subfooter .content-right {
    text-align: left;
    margin-top: 5px;
  }
}

#scroll-to-top {
  cursor: pointer;
  width: max-content;
  height: max-content;
  position: fixed;
  right: 10px;
  z-index: 999;
}
#scroll-to-top.init {
  bottom: -60px;
  transition: all 0.3s ease;
}
#scroll-to-top.show {
  bottom: 15px;
  transition: all 0.3s ease;
}
#scroll-to-top div {
  font-size: 0.8rem;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 30px;
  border-radius: 30px;
  background: #c8b16f;
  transition: all 0.3s ease;
}
#scroll-to-top div:hover {
  background: #1b1b1b;
  transition: all 0.3s ease;
}

/** portofolio **/
.AppContainer {
  color: #fff;
  position: relative;
  z-index: 99;
  height: 100%;
  width: 100%;
  background: none;
}
.lightbox-portal {
  position: relative;
  z-index: 999;
}
.lightbox-portal h4 {
  font-weight: 700;
}

.btnLright {
  color: #fff;
  font-size: 21px !important;
  right: 10px !important;
}

.btnLleft {
  color: #fff;
  font-size: 21px !important;
  left: 10px !important;
}

.closeL {
  font-size: 21px !important;
  position: absolute;
  top: 10px;
  right: 10px;
}

.MainGimg {
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.MainGimg .overlayCap {
  font-size: 1.3rem;
  width: 100%;
  bottom: 15px;
  padding-left: 20px;
  font-weight: 500;
  left: 0;
  z-index: 1;
}
.MainGimg:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.5)));
  bottom: 0;
  left: 0;
  z-index: 1;
}
.MainGimg:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 12px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: all 0.3s ease;
  z-index: 2;
}

/** contact **/
.form-side {
  padding: 30px 40px;
  background: #111;
  border-radius: 4px;
}

.text-side {
  padding: 15px 0;
  margin-top: 15px;
}
.text-side .address {
  padding-top: 15px;
  line-height: 1.6;
}
.text-side .address .heading {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.text-side .address .list {
  position: relative;
  max-width: 320px;
  display: block;
  padding: 5px 0 15px;
  padding-left: 40px;
}
.text-side .address .list i {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 1.3rem;
  display: inline-block;
}
.text-side .address .list a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.text-side .address .list a:hover {
  color: #c8b16f;
  transition: all 0.3s ease;
}

.formcontact {
  display: block;
  width: 100%;
}
.formcontact label {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
.formcontact input {
  width: 100%;
  font-size: 0.9rem;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ebebeb;
  margin-bottom: 15px;
}
.formcontact textarea {
  font-size: 0.9rem;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ebebeb;
  margin-bottom: 15px;
}
.formcontact .msg-error {
  font-size: 0.87rem;
  opacity: 0.8;
  padding: 5px 0;
}
.formcontact button {
  position: relative;
  overflow: hidden;
  font-size: 11pt;
  color: #fff;
  background: none;
  border: 2px solid #c8b16f;
  border-radius: 0;
  padding: 8px 50px;
  margin-top: 15px;
  transition-delay: 0s;
  z-index: 0;
}
.formcontact button span {
  color: #fff;
  position: relative;
  z-index: 3;
}
.formcontact button::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: linear-gradient(to left, #c8b16f, #c7ab5a);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
}
.formcontact button:hover::before {
  opacity: 1;
  transition: all 0.3s ease;
}
.formcontact button:hover .shine {
  animation: sheen 1s alternate;
}

#success.show,
#failed.show {
  display: block !important;
}
#success.hide,
#failed.hide {
  display: none;
}

#buttonsent.show {
  pointer-events: none;
}

#service,
#blog {
  display: block;
  position: relative;
}
#service .left,
#blog .left {
  display: block;
  position: relative;
}
#service .left .mainimg,
#blog .left .mainimg {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 15px;
}
#service .left .mainimg img,
#blog .left .mainimg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#service .left .content .title,
#blog .left .content .title {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 15px 0;
}
#service .left .content .desc,
#blog .left .content .desc {
  letter-spacing: 0.3px;
}
#service .left .content .desc blockquote,
#blog .left .content .desc blockquote {
  font-size: 95%;
  padding: 25px;
  margin: 1.8rem 0 1.5rem;
  font-style: italic;
  background: #333;
  border-left: 4px solid #c8b16f;
}
#service .right .services-list,
#blog .right .services-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
#service .right .services-list li,
#blog .right .services-list li {
  position: relative;
}
#service .right .services-list li a,
#blog .right .services-list li a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.6px;
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #333;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
#service .right .services-list li a:hover,
#blog .right .services-list li a:hover {
  background: #555;
  transition: all 0.3s ease;
}
#service .right .services-list li a.active,
#blog .right .services-list li a.active {
  background: #555;
}
#service .bannerservice,
#blog .bannerservice {
  position: relative;
  padding: 50px 20px;
  margin-top: 30px;
  text-align: center;
}
#service .bannerservice .imgbg,
#blog .bannerservice .imgbg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#service .bannerservice .imgbg img,
#blog .bannerservice .imgbg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#service .bannerservice .contb,
#blog .bannerservice .contb {
  position: relative;
  z-index: 2;
}
#service .bannerservice .contb .headingb,
#blog .bannerservice .contb .headingb {
  font-size: 1.7rem;
  font-weight: 500;
}
#service .bannerservice .contb .descb,
#blog .bannerservice .contb .descb {
  font-size: 1rem;
}
#service .bannerservice .contb .btn,
#blog .bannerservice .contb .btn {
  padding: 10px 20px;
  text-align: center;
  margin-top: 20px;
}
#service .bannerservice:before,
#blog .bannerservice:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

#blog .recent-post {
  list-style: none;
  color: #fff;
  padding: 0;
  margin: 0 0 45px;
}
#blog .recent-post a.recent {
  color: #fff;
  text-decoration: none;
  display: flex;
  margin-bottom: 15px;
}
#blog .recent-post a.recent .img {
  width: 75px;
  height: 75px;
  overflow: hidden;
  margin-right: 15px;
}
#blog .recent-post a.recent .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#blog .recent-post a.recent .contblog {
  width: 70%;
}
#blog .recent-post a.recent .contblog .title {
  font-size: 1rem;
  font-weight: 500;
}
#blog .recent-post a.recent .contblog .descblog {
  font-size: 14px;
}
#blog h3 {
  width: max-content;
  font-size: 1.6rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(200, 177, 111, 0.6);
}
#blog .tags {
  list-style: none;
  padding: 0;
  margin-bottom: 0 0 30px;
}
#blog .tags li {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 25px;
}
#blog .tags li a.tag {
  font-size: 13px;
  letter-spacing: 0.6px;
  text-decoration: none;
  padding: 3px 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
#blog .tags li a.tag:hover {
  border: 1px solid rgba(200, 177, 111, 0.69);
  transition: all 0.3s ease;
}

/*** media all ***/
@media only screen and (max-width: 1199px) {
  .item-dropdown {
    position: relative;
    width: max-content;
    inset: unset;
    padding-top: 10px;
    border: 0;
    background: none;
  }
  .item-dropdown .dropdown a {
    padding: 10px 10px 10px 10px;
    width: max-content;
    text-align: left;
    left: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .navbar {
    top: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .m-10-hor {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media only screen and (max-width: 768px) {
  .breadcumb .mainbreadcumb .list {
    justify-content: left;
    text-align: left;
    margin-bottom: 30px;
  }
  .previousButton,
  .nextButton {
    opacity: 1 !important;
  }
}
.responsive-map {
  width: 100%; /* Always take full width of its container */
  max-width: 100%; /* Prevents overflow */
  height: min(200px, 40vw); /* Shrinks on smaller screens, max 200px */
  transition: height 0.3s ease, width 0.3s ease;
}

@media (max-width: 768px) {
  .responsive-map {
    height: 250px; /* Slightly bigger on smaller screens */
  }
}
@media (max-width: 576px) {
  .responsive-map {
    height: 300px; /* Fully expands when taking full width */
  }
}

/*# sourceMappingURL=main.55dbefdc.chunk.css.map*/