*,
html {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
article section.PembiayaanSyariah {
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  background-image: url("https://res.cloudinary.com/dnhcz1uds/image/upload/v1718075055/Hijau_l1hwub.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.PembiayaanSyariah .item {
  cursor: pointer;
}
.item .openModal {
  cursor: pointer;
  background-color: transparent;
  border: hidden;
}
.item .modal-warpper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(15 15 15 / 30%);
  display: none;
  z-index: 9999;
}
.item .modal {
  border: 1px solid #ffff;
  width: 70%;
  height: 80%;
  border-radius: 8px;
  background: white;
  box-shadow: 3px 3px 3px #0000002e;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.item .modal-header {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #cfcfcf;
  padding: 15px 15px;
  text-align: center;
}
.item .modal-body {
  padding: 2rem;
  height: 75%;
  overflow: auto;
}
.item .modal-body .ImgPembiayaan {
  text-align: center;
}
.item .modal-body .ImgPembiayaan h5 {
  margin-bottom: 0.5rem;
  font-weight: 100;
}
.item .modal-body .ImgPembiayaan img {
  width: 70%;
}
.item .modal-body .sub {
  list-style-type: disc;
  margin-left: 3rem;
}
.item .modal-footer {
  border-top: 1px solid #cfcfcf;
  text-align: left;
  padding: 15px 15px;
}
.item .modal-footer button {
  width: 75px;
  border-radius: 3px;
  color: white;
  letter-spacing: 0.5px;
  font-weight: bold;
  cursor: pointer;
  font-size: 18px;
  
}
.item .tutup-btn {
  background: blue;
  border: 1px solid blue;
  padding: 5px;
  
}
