#main{
    display: none;
}

.main-wrapper, .content-wrapper{
    background: transparent;
}

.site-main {
    margin-top: 0px !important;
    padding-top: 0px !important;
}

.banner-container > div.cycloneslider{
    margin: 50px auto;
    margin-bottom: 100px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.35);
}

div.hero{
    background: url('../images/bg.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    background-attachment: fixed;
    background-color: black;
}

div.hero h1{
    color: white;
    font-family: 'Lobster', sans-serif;
    font-size: 90px;
    line-height:normal;
    padding: 80px 20px;
    padding-bottom: 20px;
    text-align: center;
    text-shadow: black 0px 0px 30px;
}

div.hero h2{
    color: white;
    font-family: 'League Gothic', sans-serif;
    font-size: 68px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height:normal;
    padding: 20px;
    padding-bottom: 80px;
    text-align: center;
    text-shadow: black 0px 0px 30px;
}

div.logo-container{
    width: 100%;
    display: flex;
    justify-content: center;
}

div.logos{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

div.logos > div{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

div.logos > div > div.store{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

div.logos > div > div.store > img{
    max-height: 170px;
    transition: .5s all;
    margin-top: 10px;
}

div.logos > div > div.store:hover > img{
    margin-top: 0px;
    margin-bottom: 10px;
}

div.logos > div > div.store > h2{
    color: #34541b;
    font-family: 'League Gothic', sans-serif;
    font-size: 32px;
    line-height: 40px;
    padding: 5px;
    padding-top: 15px;
    text-align: center;
}

#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;
    border-bottom: 5px solid #c9ad54;
}

#image-track > a:focus{
    outline: 5px solid #34541b;
}

#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(52, 84, 27, 0.9);
    position: absolute;
    z-index: 9;
    bottom: 0px;
}

#image-track > a h2{
    color: white;
    font-family: 'League Gothic', sans-serif;
    font-size: 38px;
    line-height: 40px;
    padding: 10px;
    padding-top: 15px;
}

@media screen and (max-width: 1000px) {
    div.hero{
        background-attachment: scroll;
    }
}

@media screen and (max-width: 600px) {
    .cycloneslider-pager{
        display: none;
    }
    div.logos{
        flex-direction: column;
    }
    div.logos > div > a.store > img{
        max-height: 100px;
    }
    #image-track {
        flex-direction: column;
        align-items: center;
        width: auto;
    }
    #image-track > a{
        height: auto;
    }
    div.hero h1 {
        font-size: 32px;
}