.layanan-card
  .info-p {
  position: absolute;
  bottom: 10px;
  font-size: 12px;
  margin: 0
    auto;
  right: auto;
  width: 150px;
  left: 100px;
  text-align: center;
  color: white;
  border-radius: 5px;
  background: #00a149;
  opacity: 0;
  transition: all .3s ease-in-out;
}

.layanan-card:hover
  .info-p {
  bottom: -10px;
  opacity: 1;
}

.galeri-custom {
    padding: 15px;
    border: 2px solid rgba(0, 0, 0, .1);
    border-radius: 15px;
}
.galeri-custom .con-img {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    transform: scale(1);
    transition: .3s all ease;
}
.galeri-custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.galeri-custom .over-img {
    position: absolute;
    inset: 0;
    background: linear-gradient(-135deg, #00833b, transparent);
    opacity: 0;
    transition: .3s all ease;
}
.galeri-custom:hover .con-img {
    transform: scale(1.1);
    border-radius: 15px;
}
.galeri-custom:hover .over-img {
    opacity: 1;
}
.galeri-button {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 50px;
    opacity: 0;
    transition: .3s all ease;
}
.galeri-custom:hover .galeri-button {
    opacity: 1;
    bottom: 20px;
}
.galeri-button i {
    font-size: 15px;
    color: white;
    background: var(--bs-primary);
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 4;
}
.galeri-button span {
    display: flex;
    background: white;
    color: var(--bs-primary);
    height: 25px;
    font-size: 12px;
    margin-left: -15px;
    align-items: center;
    padding: 0 10px 0 20px;
    border-radius: 10px;
}
.bg-custom-overlay {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    filter: grayscale(1);
}
.bg-custom-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #fefefe, rgba(255, 255, 255, .75));
    filter: none;
}
.bg-custom-overlay.reverse::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #fefefe, rgba(255, 255, 255, .75));
    filter: none;
}
.bg-custom-overlay-2 {
    position: absolute;
    inset: 0;
    background-position: bottom !important;
}
.bg-custom-overlay-2::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #fefefe, rgba(255, 255, 255, .45));
    filter: none;
}
.contact-btn {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 99;
	display: flex;
	gap: 10px;
}
.button-33 {
	background-color: #39B54A;
	border-radius: 30px;
	color: white;
	cursor: pointer;
	display: inline-block;
	padding: 5px 25px;
	text-align: center;
	text-decoration: none;
	transition: all 250ms;
	border: 0;
	font-size: 14px;
	font-weight: 500;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
}
.button-33:hover {
	box-shadow: rgba(57, 181, 74, 0.35) 0 -25px 18px -14px inset,
	  rgba(57, 181, 74, 0.25) 0 1px 2px, rgba(57, 181, 74, 0.25) 0 2px 4px,
	  rgba(57, 181, 74, 0.25) 0 4px 8px, rgba(57, 181, 74, 0.25) 0 8px 16px,
	  rgba(57, 181, 74, 0.25) 0 16px 32px;
	transform: scale(1.05) rotate(-1deg);
	color: white;
}