.service{
    display: flex;
  align-items: center;
  justify-content: center;
}
.to-top{
    animation: 2s ease 0s normal none infinite running bounce;
    font-size: 32px;
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: black;
    align-items: center;
    transition: all .10s;
    justify-content: center;
   }
   .to-top.active{
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
   }

   @keyframes bounce { 
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 
    40% {transform: translateY(-30px);} 
    60% {transform: translateY(-15px);} 
} 
.to-top { 
    animation-name: bounce; 
}
.partner img{
    width:100px;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: center;
    align-items:center;
    display: flex;
    margin-left: auto;
}

.container {
    padding-top:20px;
    padding-bottom:20px;
    display: flex;
    justify-content: center; /* Menengahkan secara horizontal */
  align-items: center; /* Menengahkan secara vertikal */
  }
  
  .container img {
    display: flex;
  justify-content: center; /* Menengahkan secara horizontal */
  align-items: center; /* Menengahkan secara vertikal */
    gap: 20px; /* Jarak antara gambar */
    width:100px;
    margin: 5px; /* Memberi jarak antara gambar */
  }