.banner {
  background-image: url('../images/banner.jpeg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 500px; /* Atur tinggi sesuai kebutuhan */
  color: #fff;
  display: flex; /* Memastikan konten berada di tengah */
  align-items: center; /* Vertikal tengah */
  justify-content: center; /* Horizontal tengah */
}

.lingkaran {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  color: #fff;
  background-color: #d1e7dd;
  overflow: hidden; /* Menjaga gambar tidak keluar dari lingkaran */
}

.lingkaran img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Memastikan gambar tidak terpotong */
}

.lingkaran i {
  position: relative;
  top: 30px;
}

.crop-img {
  object-fit: cover;
}

.client img {
  height: auto;
  max-height: 50px;
}
