#main {
    display: none;
}

.main-wrapper,
.content-wrapper {
    background: transparent;
}

.site-main {
    margin-top: 0px !important;
    padding-top: 0px !important;
}

.banner-container {
    max-width: 1900px;
    margin: 0 auto;
    margin-top: 10px;

}

.banner-container>div.cycloneslider {
    margin: auto;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.35);
}

#image-track {
    margin-top: 100px;
    display: flex;
    gap: 30px;
    position: relative;
    flex-wrap: wrap;
    margin-bottom: -100px;

}

#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-radius: 25px;
}

#image-track>a:focus {
    outline: 5px solid #ffcf09;
}

#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: #dd3333;
    opacity: 90%;
    position: absolute;
    z-index: 9;
    bottom: 0px;
}

#image-track>a h2 {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 38px;
    line-height: 40px;
    padding: 10px;
    padding-top: 15px;
}

@media screen and (max-width: 600px) {
    .cycloneslider-pager {
        display: none;
    }

    #image-track {
        flex-direction: column;
        align-items: center;
        width: auto;
    }

    #image-track>a {
        height: auto;
    }

    .recipes-list {
        flex-direction: column;
        width:auto;
    }

    .recipes-list a.recipe .image{
        width: auto;
    }
}

.recipes {
    background-color: #ffffff;
    border-radius: 10px;
    margin-top: 50px;
}

.recipes h2 {
    font-family: 'Raleway', sans-serif;
    color: rgb(0, 0, 0);
    font-size: 36px;
    font-weight: bold;
    padding: 20px;
    padding-top: 35px;
    text-align: center;
    line-height: normal;
}

.recipes-list {
    display: flex;
    gap: 20px;
    padding: 25px;
}

.recipes-list a.recipe {
    flex: 1;
    text-decoration: none;
}

.recipes-list a.recipe h4 {
    font-family: 'Raleway', sans-serif;
    color: rgb(0, 0, 0);
    font-size: 22px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
}

.recipes-list a.recipe .image {
    background-size: cover;
    height: 250px;
    border-radius: 10px;
    position: relative;
    transition: .5s all;
}

.recipes-list a.recipe:hover .image {
    background-size: cover;
    height: 250px;
    border-radius: 10px;
    transform: translateY(-20px);
}

.recipes-list a.recipe.desserts .image {
    background: url("../images/5dollarbox.png") no-repeat center center;
}

.recipes-list a.recipe.meals .image {
    background: url("../images/stealsdeals.png") no-repeat center center;
}