.banner-container {
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #bf202f;
}

.cycloneslider-template-standard{
    margin-bottom: 0px;
}

#home_page_dfp {
    text-align: center;
    margin: 25px auto 15px auto;
}

.boxes{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin: 15px -20px -20px -20px;
}

.boxes .box{
    flex: 1 40%;
    min-height: 300px;
    flex-direction: column;
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-color: white;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #bf202f;
    z-index: 1;
}

.boxes .box.full{
    flex: 1 60%;
    margin-bottom: 100px;
}

.boxes .box:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover !important;
    transition: all .5s;
}

.boxes .box:hover:before, .boxes .box.full:before{
    filter: grayscale(100%);
}

.boxes .box:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 10%;
    top: 20%;
    width: 80%;
    height: 60%;
    z-index: 1;
    background-color: rgba(255, 255, 255, .9);
    border-radius: 20px;
    transition: all .5s;
}

.boxes .box:hover:after, .boxes .box.full:after{
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .8);
}

.boxes .box .line{
    margin-bottom: 20px;
    max-width: 80%;
}

.boxes .box .content{
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 2;
    color: #bf202f;
    font-size: 38px;
    font-weight: bold;
    line-height: normal;
    transition: all .5s;
}

.boxes .box .content h1{
    font-size: 46px;
    font-family: 'Acme', sans-serif;
    margin-top: 50px;
    margin-bottom: 50px;
    text-decoration: underline;
    text-decoration-color: #fff215;
}

.boxes .box .content h2{
    font-size: 30px;
    transition: margin-top .5s;
    font-family: 'Acme', sans-serif;
}

.boxes .box .content p{
    font-size: 24px;
    font-family: 'Acme', sans-serif;
}

.boxes .box:hover .content h2{
    margin-top: 20px;
}

.boxes .box.hero:before{
    background: url("../images/weekly-ad-full.jpg?v=2") no-repeat center center;
}

.boxes .box.weekly-ad:before{
    background: url("../images/weekly-ad-3.jpg") no-repeat center center;
}

.boxes .box.departments:before{
    background: url("../images/departmentsbox.jpg") no-repeat center center;
}

.boxes .box.store:before{
    background: url("../images/storeinfo.png") no-repeat center center;
}

@media (max-width: 600px) {
    .site-main {
        padding-top: 33px;
    }
    .banner-container {
        box-shadow: none;
        border-radius: 0;
        border: none;
    }
    .boxes{
        margin: 0;
    }
    .boxes .box{
        min-height: 200px;
    }
    .boxes .box:after {
        left: 10%;
        width: 80%;
    }
    .boxes .box .content h1{
        font-size: 32px;
    }
    .boxes .box .content h2{
        font-size: 24px;
    }
    h2.slogan{
        font-size: 42px;
    }
}