/* #header {
    height: 120px;
    width: 100%;
    background-color: brown;
} */

.logo {
    max-height: 100px;
    object-fit: contain;
    height: auto;
    width: auto;
}

.container-fluid {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

.col-lg-12 {
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
}

.image-container {
    position: relative;
    width: auto;
    height: 300px;
    margin: 5px;
}

.image-container img {
    width: auto;
    height: 100%;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* background-color: rgba(0, 0, 0, 0.5); */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .overlay {
    opacity: 1;
}

.overlay h2,
.overlay p {
    margin: 0;
    padding: 0;
}
