* {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff8f8;
}

#map {
  height: 500px;
  width: 100%;
}

.section-padding {
  padding: 100px 0;
}

.carousel-item {
  height: 100vh;
  min-height: 300px;
}

.carousel-caption {
  bottom: 220px;
  z-index: 2;
}

.carousel-caption h5 {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 25px;
}

.carousel-caption p {
  width: 60%;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
}

.carousel-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.navbar-nav a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 300;
}

.navbar-light .navbar-brand {
  color: #000;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 700;
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: #000;
}

.navbar-light .navbar-nav .nav-link {
  color: #000;
}

.w-100 {
  height: 100vh;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #0d6efd;
}

#map {
  height: 500px;
}

/*  */
.img-area {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
}

.card.no-shadow {
  box-shadow: none !important;
}

.card-body {
  flex-grow: 1;
}

.scroll {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 9999;
}

.scroll img {
  width: 50px;
  height: auto;
  transition: transform 0.3s ease;
}

.scroll img:hover {
  transform: scale(1.1);
}

/* ===== RESPONSIVE CSS */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .carousel-caption {
    bottom: 370px;
  }

  .carousel-caption p {
    width: 100%;
  }

  .img-area img {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .navbar-nav {
    text-align: center;
  }

  .carousel-caption h5 {
    font-size: 17px;
  }

  .carousel-caption a {
    padding: 10px 20px;
  }

  .carousel-caption p {
    width: 100%;
    line-height: 1.6;
    font-size: 13px;
  }

  .tentang-text {
    padding-top: 50px;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
    display: none;
    position: fixed;
  }
  3% {
    opacity: 0;
    display: none;
  }
  3.5% {
    opacity: 1;
    display: block;
  }
  100% {
    opacity: 1;
    display: block;
    position: fixed;
  }
}
