.page-title-header {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0;
    background: #e9ecef7a;
    /* margin: -100% 0 0 0; */
    /* position: relative; */
    /* top: -100%; */
    /* transform: translateY(-100%); */
}


.carousel-item {
   
    overflow: hidden;
}

.carousel-item img{
    width: 100%;
}

.image-header{
    position: relative;
    margin: 0 0 20px 0;
}

.carousel.carousel-fade .carousel-item {
    display: block;
    opacity: 0;
    transition: opacity ease-out .7s;
    
}

    .carousel.carousel-fade .carousel-item.active {
        opacity: 1 !important;
        
    }

@media (max-width: 800px) {
    .page-title-header{
        position: inherit;
    }
    
}

.carousel-control-next, .carousel-control-prev {
    z-index: 10;
}

.homepage-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.homepage-tile {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    background-color: #000033;
    text-transform: uppercase;
}

    .homepage-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(50%);
        transition: filter 0.3s ease-in-out;
    }

    .homepage-tile:hover {
        transform: scale(1.05);
        box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    }

        .homepage-tile:hover img {
            filter: brightness(80%);
        }

    .homepage-tile .tile-content {
        position: absolute;
        bottom: 10%;
        left: 10%;
        color: white;
        font-size: 1.4rem;
        font-weight: bold;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    }