body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: transparent; /* Ensure background is fully transparent */
    color: white;
    position: relative;
}

a {
    color: #000000;
    text-decoration: none;
}

#video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
}

.transparent-bg-strong {
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black background */
    padding: 20px;
    border-radius: 10px;
    z-index: 1; /* Ensure it's above the video */
    position: relative;
}

.client-logo {
    width: 100px; /* Increased size */
    height: auto;
    margin-bottom: 10px;
    display: block;
}

.hibid-logo {
	background-color:#444444;
}

.client-tile {
    background-color: rgba(255, 255, 255, 1); /* Fully opaque */
    color: #000; /* Black text */
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    border-radius: 5px;
    height: 100%; /* Make sure the tile stretches to the full height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-4 {
    display: flex;
    flex-direction: column;
}
