body {
  font-family: 'Montserrat', sans-serif;
}

nav, nav a {
  text-transform: uppercase;
  color: #000
}

nav a.active {
  color: #fd9f47;
  font-weight: bold;
}

nav a:hover {
  color: #ffff;
}

nav h5 {
  font-weight: bold;
}

.main {
  color: rgb(0, 0, 0);
}

.main h1 {
  font-weight: 600;
  font-size: 35px;
}

.main h1 span {
  font-weight: 650;
  color: #ff4c01;
  font-size: 23px;
}

.main p {
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
  color: black;
}

.main-button {
  padding: 5px;
  background: linear-gradient(to right, #ff4c01, #ff7b42, #ff4c01);
  color: rgb(255, 255, 255);
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 60px;
  border-radius: 10px;
}

.chat-button {
  padding: 5px;
  background: linear-gradient(to right, #1fb900, #4bfd28, #1fb900);
  color: rgb(255, 255, 255);
  margin-top: 20px;
  margin-right: 10px;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .chat-button {
    display:table;
    padding: 5px;
    background: linear-gradient(to right, #1fb900, #4bfd28, #1fb900);
    color: rgb(255, 255, 255);
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 990px) {
  .chat-button {
    display:table;
    padding: 5px;
    background: linear-gradient(to right, #1fb900, #4bfd28, #1fb900);
    color: rgb(255, 255, 255);
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 10px;
  }
}
.whatsapp-icon {
  width: 25px;
  height: 20px;
  margin-right: 5px;
}

.icon-tambah {
  color: white;
  width: 25px;
  height: 20px;
}

.second-button {
  padding: 5px;
  background-color: #ff4c01;
  color: rgb(255, 255, 255);
  border-radius: 10px;
}

.main-button:hover {
  background-color: #ff4c01;
  color:black;
}


.card-body {
  position: relative;
  overflow: hidden;
}

.bg-img {
  position:absolute;
  bottom: 40px;
  right: -25px;
  width: auto;
  max-width: 50%;
}

.bg-img-2 {
  position:absolute;
  bottom: 40px;
  right: -25px;
  width: auto;
  max-width: 55%;
}

.bg-img-3 { 
  position:absolute;
  bottom: 40px;
  right: 10px;
  width: auto;
  max-width: 47%;
}
.horizontal-menu {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.horizontal-menu {
  list-style-type: none;
  display: flex;
  margin-left: 0px;
  padding: 0;
  justify-content: flex-end; /* Ini akan menggeser menu ke ujung kanan */
}

.horizontal-menu li {
  margin-left: 20px; /* Margin kiri antara menu */
}

.horizontal-menu a {
  text-decoration: none;
  font-weight: bold;
  color: #ffff; /* Sesuaikan warna teks dengan preferensi Anda */
  background: linear-gradient(#ff7b42, #ff4c01);
  padding: 2px; /* Menambahkan jarak antara teks dan border */
  border-radius: 10px; /* Sudut border */
  border: 1px solid #000; /* Warna border */
  transition: background-color 0.3s, color 0.3s; /* Transisi warna saat dihover */
}

.horizontal-menu a.active {
  color: #ffff;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .horizontal-menu {
    display:flex;
    text-align: center; /* Untuk mengatur teks menu ke kanan pada mode mobile */
  }

  .horizontal-menu li {
    margin-left: 10px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  .bg-img {
    display: none !important;
  }

  .bg-img-2 {
    display: none !important;
  }

  .bg-img-3 {
    display: none !important;
  }
}

@media screen and (max-width: 990px) {
  .bg-img {
    display: none !important;
  }

  .bg-img-2 {
    display: none !important;
  }

  .bg-img-3 {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .whatsapp-icon {
    display: none;
  }

@media screen and (max-width: 768px) {
  .icon-tambah {
    display: none;
  }