/********** Template CSS **********/
:root {
  --primary: #F4951B;
  --secondary: #000;
  --light: white;
  --dark: #4e4e4e;
}

.card-body{
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.card-body h3{
  font-size: 20px;
}

.border-dots{
  border: 1.5px var(--primary) dashed;
}

.bg-card{
  background: linear-gradient(rgba(0, 0, 0, .95), rgba(0, 0, 0, .7)), url(../../../images/bg-gunung.png) center center;
  background-size: cover;
}

ul {
  padding-left: 15px;
}

ul li::marker {
  content: '⬗';
  color: var(--primary);
}

.bg-orange-trans{
  background: linear-gradient(rgba(244, 149, 27, .75), rgba(244, 149, 27, .9));
}

.bg-utama{
  background-color: var(--primary);
}
.bg-cerah{
  background-color: var(--light);
}
.bg-hitam{
  background-color: var(--secondary);
}
.bg-title-section{
  outline: 1px var(--primary) solid;
}

.text-putih{
  color: var(--light);
}
.text-hitam{
  color: var(--secondary);
}
.text-utama{
  color: var(--primary);
}
.text-merah{
  color: #CC0002;
  font-size:20px;
  font-weight:700;
}
.text-hijau{
  color: #009000;
}

.img-welcome{
    border-radius: 15px;
    max-width: 400px;
    height: auto;
    float: right;
}

/*** Service ***/
@media only screen and (max-width: 767px) {
  .service-item {
      text-align:center;
      height:240px;
      margin-top: 10px;
      margin-bottom: 10px;
  }
}

@media only screen and (min-width: 1200px) {
  .service-item {
      height:240px;
  }
}

.service-item {
  padding:15px;
  background: var(--primary);
  transition: .5s;
  border-radius: 10px;
}
.service-item p{
  color: var(--light);
}

.service-item h5{
  color: var(--light);
}

.service-item:hover {
  margin-top: -10px;
  background: var(--light);
}

.service-item:hover p{
  color: var(--secondary);
}

.service-item:hover h5{
  color: var(--secondary);
}

.service-item * {
  transition: .5s;
}

.service-item:hover * {
  color: #545454;
}

/*** Artikel ***/
.artikel-item {
    display: flex;
    flex-direction: column;
}

blockquote {
    overflow: hidden;
    background-color: rgba(82, 86, 94, 0.06);
    padding: 20px;
    position: relative;
    text-align: center;
    margin: 20px 0;
    border-radius: 10px;
}

blockquote p {
    color: var(--default);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary);
    margin-top: 20px;
    margin-bottom: 20px;
}

/*** Sub Title Start ***/
.sub-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--primary);
}

.sub-title::before {
  content: "";
  width: 100px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -110px;
  border: 1px solid var(--primary) !important;
}

@media only screen and (max-width: 767px) {
    .sub-title::before {
        display: none;
        /*width: 160px;*/
        /*position: absolute;*/
        /*top: 110%;*/
        /*left: 25%;*/
        /*transform: translateY(-50%);*/
        /*margin-right: 0;*/
        /*border: 1px solid var(--primary) !important;*/
    }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 24px;
  bottom: 24px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
  color: #ffffff;
}

.btn.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand img {
  max-height: 60px;
}

.navbar .navbar-nav .nav-link {
  margin-left: 10px;
  padding: 10px 0;
  color: var(--secondary);
  font-weight: 500;
  outline: none;
  padding-left: 5px;
  padding-right: 5px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
  /*background: black;*/
  border-radius: 7px;
  /* text-shadow:#000 0px 0px 1px,   #000 0px 0px 1px,   #000 0px 0px 1px; */
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand img {
    max-height: 45px;
  }

  .navbar .navbar-nav {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .navbar .nav-item .dropdown-menu {
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  text-align: start;
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

@media (max-width: 768px) {
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      width: 35px;
      height: 35px;
      background-color: var(--primary);
      border: 10px solid var(--primary);
      border-radius: 50px;
    }
}

@media (min-width: 992px) {
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      width: 3rem;
      height: 3rem;
      background-color: var(--primary);
      border: 15px solid var(--primary);
      border-radius: 50px;
    }
}
.page-header {
  /* background: linear-gradient(rgba(19, 58, 98, .9), rgba(19, 58, 98, .9)), url(../img/carousel-1.jpg) center center no-repeat; */
  /* background: linear-gradient(rgba(19, 58, 98, .75), rgba(19, 58, 98, .75)), url(../img/carousel-1.jpg) center center no-repeat; */
  color: white;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
  color: #fff;
}

/*** Facts ***/
@media (min-width: 992px) {
  .container.facts {
    max-width: 100% !important;
  }

  .container.facts .facts-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

.container.facts .facts-text {
  /* background: linear-gradient(rgba(19, 58, 98, 0.9), rgba(19, 58, 98, 0.9)),
    url(../img/carousel-1.jpg) center right no-repeat;
  background-size: cover; */
}

.container.facts .facts-counter {
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url(../img/carousel-2.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*** Appointment ***/
.appointment {
  background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  bottom: 0;
  opacity: 1;
}

.team-item a.btn {
  color: var(--primary);
}

.team-item a.btn:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Testimonial Start ***/

@media (min-width: 992px) {
  .testimonial-item{
      height: 320px;
  }
}

@media (max-width: 768px) {
  .testimonial-item{
      height: 350px;
  }
}

.testimonial-item {
  background: var(--abu);
}

.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--dark);
  border-radius: 15px;
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #FFFFFF !important;
  box-shadow: 0 0 30px #DDDDDD;
}

.scroll{
  display:block;
  height: 160px;
  overflow:auto;
}
/*** Testimonial End ***/

/*** Footer ***/
.footer {
  color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: #a7a8b4;
  border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
  color: #fff;
  border-color: var(--light);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: #ffffff;
}

.btn-gradient {
  border-radius: 40px;
  background: -o-linear-gradient(357deg, #777777 -18.71%, #000 117.68%);
  background: linear-gradient(93deg, #777777 -18.71%, #000 117.68%);
  background-size: 100%;
  color: var(--primary);
  font-weight: 700;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* gap: 21px; */
  /* width: 300px; */
  height: 50px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  z-index: 100;
}
.btn-gradient::before {
  border-radius: inherit;
  background: #FFF;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  z-index: -100;
}
.btn-gradient:hover, .btn-gradient:focus, .btn-gradient:active {
  color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  outline: 4px solid #ffb641 !important;
  outline-offset: 5px;
}
.btn-gradient:hover::before {
  opacity: 1;
}
/* @media (min-width: 576px) {
  .btn-gradient {
    width: 350px;
  }
} */
.btn-gradient .arrow-right-alt {
  display: none;
}

.btn-kuning {
  color: var(--dark);
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-kuning:hover{
  color: var(--primary);
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-kuning-outline {
  color: var(--dark);
  background-color: transparent;
  border-color: var(--dark);
}

.btn-kuning-outline:hover{
  color: var(--dark);
  background-color: var(--primary);
  border-color: var(--dark);
}

.btn-gelap-outline{
  color: var(--light);
  background-color: transparent;
  border-color: var(--light);
}
.btn-gelap-outline:hover{
  color: var(--primary);
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-blue {
  color: #fff;
  background-color: #1c37bc;
  background-image: none;
  border-color: #1c37bc;
}

.btn-blue:hover {
  color: #1c37bc;
  background-color: transparent;
  border-color: #1c37bc;
}

.btn-blue-outline {
  color: #1c37bc;
  background-color: transparent;
  background-image: none;
  border-color: #1c37bc;
}

.btn-blue-outline:hover {
  color: #fff;
  background-color: #1c37bc;
  border-color: #1c37bc;
}

.btn-white-outline {
  color: #fff;
  background-color: transparent;
  background-image: none;
  border-color: #fff;
}

.btn-white-outline:hover {
  color: var(--dark);
  background-color: white;
  border-color: white;
}

.heading-section .subheading {
  font-weight: 400;
  font-size: 18px;
  display: block;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b3b3b3;
}

.heading-section h2 {
  font-size: 34px;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .heading-section h2 {
    font-size: 28px;
  }
}

.heading-section.heading-section-with-line {
  position: relative;
}

.heading-section.heading-section-with-line:after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: #1c37bc;
}

.heading-section.heading-section-white .subheading {
  color: rgba(255, 255, 255, 0.7);
}

.heading-section.heading-section-white h2 {
  font-size: 40px;
  color: #fff;
}

.heading-section.heading-section-white p {
  color: rgba(255, 255, 255, 0.9);
}

.desc-box h1,
.desc-box h2,
.desc-box h3,
.desc-box h4,
.desc-box h5,
.desc-box h6 {
  color: var(--dark);
}

.text-blue-primary {
  color: #1c37bc;
}

.sidebar-box {
  margin-bottom: 30px;
  padding: 25px;
  font-size: 15px;
  width: 100%;
  position: sticky;
  top: 70px;
  border-radius: 10px;
}

.sidebar-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.block-21 .blog-img {
  display: block;
  height: 80px;
  width: 80px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.block-21 .text {
  width: calc(100% - 100px);
}
.block-21 .text .heading {
  font-size: 18px;
  font-weight: 300;
}
.block-21 .text .heading a {
  color: #000000;
}
.block-21 .text .heading a:hover,
.block-21 .text .heading a:active,
.block-21 .text .heading a:focus {
  color: var(--primary);
}
.block-21 .text .meta > div {
  display: inline-block;
  font-size: 12px;
  margin-right: 5px;
}
.block-21 .text .meta > div a {
  color: gray;
}

.owl-carousel .owl-stage {
  display: flex;
}

.testimoni-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimoni-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--dark);
  border-radius: 10px;
  transition: 0.5s;
}

.testimoni-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--dark);
}

.artikel-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.artikel-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--dark);
  border-radius: 10px;
  transition: 0.5s;
}

.artikel-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--dark);
}

.gallery-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.gallery-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--dark);
  border-radius: 10px;
  transition: 0.5s;
}

.gallery-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--dark);
}

.gallery-overlay {
  opacity: 0;
  transition: ease-in-out 0.2s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.paketwisata-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.paketwisata-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid #1c37bc;
  border-radius: 10px;
  transition: 0.5s;
}

.paketwisata-carousel .owl-dot.active {
  background: #1c37bc;
  border-color: #1c37bc;
}

.contact-btn {
  position: fixed;
  /* display: none; */
  left: 30px;
  bottom: 30px;
  z-index: 99;
}

.button-33 {
  background-color: #009000;
  border-radius: 100px;
  box-shadow: rgba(44, 187, 99, 0.2) 0 -25px 18px -14px inset,
    rgba(44, 187, 99, 0.15) 0 1px 2px, rgba(44, 187, 99, 0.15) 0 2px 4px,
    rgba(44, 187, 99, 0.15) 0 4px 8px, rgba(44, 187, 99, 0.15) 0 8px 16px,
    rgba(44, 187, 99, 0.15) 0 16px 32px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-family: CerebriSans-Regular, -apple-system, system-ui, Roboto, sans-serif;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-33:hover {
  box-shadow: rgba(44, 187, 99, 0.35) 0 -25px 18px -14px inset,
    rgba(44, 187, 99, 0.25) 0 1px 2px, rgba(44, 187, 99, 0.25) 0 2px 4px,
    rgba(44, 187, 99, 0.25) 0 4px 8px, rgba(44, 187, 99, 0.25) 0 8px 16px,
    rgba(44, 187, 99, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
  color:var(--primary);
}
