#main{
    margin-top: 0px;
}

.banner-container {
    overflow: hidden;
    margin-bottom: 50px;
}

#main-container{
    overflow: hidden;
}

#image-track {
    display: flex;
    gap: 20px;
    position: relative;
    flex-wrap: wrap;
}

#image-track > a{
    height: 300px;
    position: relative;
    overflow: hidden;
    background-color: black;
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#image-track > a:focus{
    outline: 5px solid #4f8234;
}

#image-track > a > .image{
    height: 110%;
    object-fit: cover;
    transition: all .5s;
}

#image-track > a:hover > .image{
    height: 100%;
}

#image-track div.title-bar{
    width: 100%;
    background-color: rgba(79, 130, 52, .85);
    position: absolute;
    bottom: 0px;
}

#image-track > a h2{
    color: white;
    font-family: 'HighVoltage Rough', sans-serif;
    font-size: 38px;
    line-height: 40px;
    padding: 10px;
    padding-top: 15px;
}

@media (max-width: 600px) {
    .site-main {
        padding-top: 33px;
    }
    .banner-container {
        box-shadow: none;
        border-radius: 0;
        border: none;
        margin-top: 0;
    }
    #image-track {
        flex-direction: column;
        align-items: center;
        width: auto;
    }
    #image-track > a{
        height: auto;
    }
}
