
/* Background Image */
.section-background1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-background1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../../images/background-keunggulan.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
   opacity:0.1;
}

.same-size {
  width: 100%;
  height: 300px;
  /* Sesuaikan tinggi */
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .same-size {
    height: 200px;
  }
}

.product-image-slider .swiper-slide img {
  width: 100%; 
  height: 400px;
  object-fit: cover;
}

.product-image-thumb .swiper-slide img {
  width: 100%; 
  height: 80px; 
  object-fit: cover;
}

/* ==================================== Welcome Text ====================================== */
.custom-border {
  position: relative;
  margin-bottom: 20px;
}

.custom-border::before {
  content: '';
  position: absolute;
  bottom: -10px;
  top: -10px;
  right: -10px;
  width: calc(100% + 10px);
  /* Menambah lebar agar border sesuai kontainer */
  height: calc(100% + 10px);
  /* Menambah tinggi agar border sesuai kontainer */
  border-top: 5px solid #5A2210;
  border-right: 5px solid #5A2210;
  border-radius: 8px 8px 8px 16px;
}

@media (max-width: 600px) {
  .fs-30px {
    font-size: 22px;
  }
}

@media (max-width: 363px) {
  header .navbar [class*=col-] {
    padding: 0 0px !important;
}
}


/* ================================= Floating action Buttton ================================= */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px;
  cursor: pointer;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float:hover {
  color: #FFF;
}

.my-float {
  margin-top: 16px;
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  25%,
  50%,
  75%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-12px);
  }
}


/* ============================================ PRICE LIST =================================== */
.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.align-items-start {
  align-items: flex-start;
}

.mt-3 {
  margin-top: 1rem;
}

/* .card:hover {
  background-color: #A07932; 
}

.card-title:hover {
  color: #ff6600;
}

.btn:hover {
  background-color: #ff6600; 
  color: white;
} */

/* Keunggulan */
.bottom-gradient {
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

/* Go To Top */
#button-goto-top {
  display: inline-block;
  background-color: #A07932;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#button-goto-top::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 50px;
  color: #fff;
}

#button-goto-top:hover {
  cursor: pointer;
  background-color: #333;
}

#button-goto-top:active {
  background-color: #555;
}

#button-goto-top.show {
  opacity: 1;
  visibility: visible;
}

/* SMOOTH SCROLL TO */

html {
  scroll-behavior: smooth;
}