.promotional{
    min-height: 400px;
    background-color: darkgreen;
    min-width: 100%;
    display: flex;
}

.promotionalImageSlider{
    min-width: 100%;
    min-height: 100%;
    background: url(/src/Background_Brandmark_Repeated_Grass.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

.promotionalSliderText{
    margin: auto;
    text-align: center;
    display: flex;
    width: 100%;
}

.promotionalImageSlider a{
    display: flex;
    justify-content: center;
}

.promotionalImageSlider img{
    margin-top: auto;
    margin-bottom: auto;
    width: 300px;
    filter: brightness(0);
    margin-left: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: min-content;
}

.promotionalImageSlider img:hover{
    filter: brightness(0.2);
    scale: 1.05;
    transition: all 0.3s ease;
}

.promotionalSliderTextItem{
    color: white;
    font-size: 50px;
    font-weight: bold;
    width: min-content;
    text-align: right;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: auto;
    margin-left: auto;
    margin-right: 40px;
}

@media screen and (max-width: 768px) {

    .promotional{
        min-height: 200px;
    }

    .promotionalImageSlider{
        /*border: red dotted 2px; /* For debugging purposes */
        width: 100%;
        z-index: 10;
    }

    .promotionalSliderTextItem{
        font-size: 30px;
    }

    .promotionalSliderText{
        /*border: red dotted 2px; /* For debugging purposes */
        display: flex;
    }

    .promotionalImageSlider a{
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .promotionalImageSlider img{
        width: 300px;
        object-fit: cover;
        filter: brightness(0);
        margin-left: 0px;
        transition: all 0.3s ease;
        cursor: pointer;
        margin: auto;
    }

    .promotionalImageSlider img:hover{
        filter: brightness(0.2);
        scale: 1.05;
        transition: all 0.3s ease;
    }
    
}