.al-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    mask-image: radial-gradient(rgba(0, 0, 0, 1) -100%, transparent 100%);
    -webkit-mask-image: radial-gradient(rgba(0, 0, 0, 1) -100%, transparent 100%);
}

.image-grid-al-wrapper {
    display: flex;
    width: 100%;
}

.slot-al-wrapper {
    flex: 1;
    position: relative;
    min-height: 32rem;
    border: 2px solid white;
}

.slot-al-anchor-title {
    position: relative;
    z-index: 1;
    color: white;
    padding: 8rem 5rem;
    transition: 0.4s all ease-in-out;
}

.slot-al-anchor-title>h2 {
    font-size: 28px;
    font-weight: 600;
    transition: 0.4s all ease-in-out;
}

.slot-image-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    transition: 0.25s all ease-in-out;
}

.slot-al-wrapper:hover {
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .slot-al-wrapper:hover .slot-image-bg {
        opacity: 0.7;
    }

   
}

@media screen and (max-width: 991px) {
    .image-grid-al-wrapper {
        flex-direction: column;
    }
    .slot-al-wrapper {
     
        min-height: 15rem;
        
    }
    .slot-al-anchor-title {
        padding: 4rem 6rem;
    }
    
}