@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400&display=swap');

.social-icons {
    display: flex;
		justify-content: center; /* Agar ikon sejajar di tengah */
    align-items: center;
    gap: 7px; /* Jarak antar ikon */
    padding: 10px 0; /* Jarak dari elemen atas */
   
    top: 20px; /* Posisikan di bagian atas */
    
  
    z-index: 9999;
    background: rgba(255, 255, 255, 0.8); /* Tambahkan background transparan */
    padding: 10px 20px;
    border-radius: 10px; /* Biar sedikit melengkung */
}

.social-icons a {
    display: block;
    width: 20px;
    height: 20px;
	 position: relative; /* Agar tooltip tetap dalam batas ikon */
}

.social-icons img {
    width: 100%;
    height: 100%;
}

.social-icons a::after {
    content: attr(data-hover);
    position: absolute;
	
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2b9ad6;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.social-icons a:hover::after {
    opacity: 1;
    visibility: visible;
}







@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400&display=swap');

body {
    font-family: 'Raleway', sans-serif;
}

/* Styling untuk container button */
/* Container tombol agar sejajar */
.container_header_custom {
    display: flex;
    gap: 1vh; /* Dekatkan jarak antara tombol */
    align-items: center; /* Vertikal sejajar */
    justify-content: center; /* Posisi sejajar di tengah */
    padding: 5px 0; /* Sesuaikan padding */
}

/* Styling umum untuk tombol */
.btn {
    padding: 8px 15px; /* Padding tombol */
    border-radius: 50px;
    border: 1px solid rgba(50, 155, 213, 1);
    font-size: 12px; /* Perkecil ukuran font */
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

/* REQUEST A QUOTE Button */
.btn.request {
    color: rgba(50, 155, 213, 1) !important;
    background: transparent;
}

/* GET A DEMO Button */
.btn.demo {
    color: white !important;
    background-color: rgba(50, 155, 213, 1);
}

/* Hover Effect */
.btn:hover {
    opacity: 0.8;
    transform: scale(1.05);
}