#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;
    margin-top: 50px;
}

#image-track>a {
    height: 374px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-color: black;
    flex: 1;
    min-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}

#image-track>a>.image {
    min-width: 105%;
    min-height: 105%;
    object-fit: cover;
    transition: all .5s;
    position: absolute;
}

#image-track>a:hover>.image {
    min-width: 100%;
    min-height: 100%;
}

#image-track>a>.red {
    width: 100%;
    background-color: #d72832;
    position: absolute;
    bottom: 0;
    transition: all .5s;
}

#image-track>a>.red>h2 {
    color: white;
    text-shadow:
        -1px -1px 0 #1e1854,
        1px -1px 0 #1e1854,
        -1px 1px 0 #1e1854,
        1px 1px 0 #1e1854;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-size: 36px;
    line-height: normal;
    padding: 8px 10px;
    transition: all .5s;
}

#image-track>a:hover>.red {
    background-color: rgba(215, 40, 49, 0.8);
}

#image-track>a:hover>.red>h2 {
    padding: 25px 10px;
}

h1.text{
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #d72832;
    padding: 20px;
    text-align: center;
}

.categories{
    display: flex;
    justify-content: center;
    align-items: center;
}

.categories a{
    flex: 1;
    position: relative;
    text-decoration: none;
}

.categories a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

.categories a > h2{
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 100px 20px;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0px 0px 5px black;
    text-align: center;
    position: relative;
}

.categories a.bakery{
    background: url("../images/bakery.jpg") no-repeat center center;
}

.categories a.meat{
    background: url("../images/meat.jpg") no-repeat center center;
}

.categories a.fruit{
    background: url("../images/fruit.jpg") no-repeat center center;
}

.categories a.vegetables{
    background: url("../images/vegetables.jpg") no-repeat center center;
}

.categories a.dairy{
    background: url("../images/dairy.jpg") no-repeat center center;
}

.categories a.snacks{
    background: url("../images/snacks.jpg") no-repeat center center;
}

.buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 20px;
}

.buttons > .right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.buttons img{
    max-height: 640px;
}

.buttons a{
    position: relative;
}

.buttons a > div.button-text{
    position: absolute;
    top: 20px;
    bottom: 40px;
    left: 20px;
    right: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.buttons a > div.button-text > h2{
    font-size: 48px;
    max-width: 300px;
    color: black;
    text-shadow: 0px 0px 8px white, 0px 0px 10px white;
    line-height: normal;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    text-align: right;
}

div.cycloneslider-slide div.slide-text{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.cycloneslider-slide div.slide-text > h2{
    font-size: 60px;
    max-width: 600px;
    padding: 20px;
    color: black;
    background-color: rgba(255, 255, 255, 0.8);
    text-shadow: 0px 0px 8px white;
    border-radius: 10px;
    line-height: normal;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    border: solid 2px #d72832;
}

@media (max-width: 600px) {
    .site-main {
        padding-top: 33px;
    }

    .banner-container {
        box-shadow: none;
        border-radius: 0;
        border: none;
        margin-top: 0;
    }

    #image-track {
        display: block;
    }

    #image-track>a {
        border: none;
        border-radius: 0px;
        min-width: 0px;
        margin-bottom: 20px;
    }

    a.app>img {
        border-radius: 0px;
    }

    .buttons{
        flex-direction: column;
    }

    div.cycloneslider-slide div.slide-text > h2{
        font-size: 18px;
    }
}