#main{
    display: none;
}

.main-wrapper, .content-wrapper{
    background: transparent;
}

.main-wrapper{
    margin-bottom: 50px;
}

.site-main {
    margin-top: 0px !important;
    padding-top: 0px !important;
}

.banner-container{
    margin-top: 50px;
}

#image-track {
    margin-top: 100px;
    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 #1b9cde;
}

#image-track > a > .image{
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
    transform: scale(1.1);
    transition: all .5s;
    position: relative;
    z-index: 1;
}

#image-track > a:hover > .image{
    transform: scale(1);
}

#image-track div.title-bar{
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 5px #1b9cde solid;
    border-bottom: 5px #1b9cde solid;
    position: absolute;
    z-index: 9;
    bottom: 0px;
}

#image-track > a h2{
    color: black;
    font-family: 'League Gothic', sans-serif;
    font-size: 38px;
    line-height: 40px;
    padding: 10px;
    padding-top: 15px;
}

@media screen and (max-width: 600px) {
    .banner-container{
        margin-top: 0px;
    }
    .cycloneslider-pager{
        display: none;
    }
    #image-track {
        flex-direction: column;
        align-items: center;
        width: auto;
    }
    #image-track > a{
        height: auto;
    }
}