.banner-container {
    border-radius: 20px;
    overflow: hidden;
    /*border: 5px solid #ee1e26;*/
}

.cycloneslider-template-standard {
    margin-bottom: 0px;
}

.videos {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    justify-content: center;
    margin-bottom: 50px;
}

.videos>iframe {
    flex: 1 50%;
    aspect-ratio: 16 / 9;
    width: 50%;
    max-width: 100;

}


.boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin-top: 30px;
    gap: 40px;
    margin-bottom: 60px;

}

.boxes .box {
    flex: 1 45%;
    min-height: 300px;
    flex-direction: column;
    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 #ee1e26;*/
    z-index: 1;
}

.boxes .box.full {
    flex: 1 60%;
}

.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 {
    filter: grayscale(100%);
}

.boxes .box:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 20%;
    top: 25%;
    width: 60%;
    height: 50%;
    z-index: 1;
    background-color: rgba(255, 255, 255, .9);
    border-radius: 20px;
    transition: all .5s;
}

.boxes .box:hover: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: 50px;
    z-index: 2;
    color: #f00315;
    font-size: 38px;
    font-weight: bold;
    line-height: normal;
    transition: all .5s;
}

.boxes .box .content h2 {
    font-size: 30px;
    transition: margin-top .5s;
    font-family: 'Ubuntu', sans-serif;
}

.boxes .box:hover .content h2 {
    margin-top: 20px;
}

.boxes .box.weekly-ad:before {
    background: url("../images/weekly-ad-2.jpg?v=2") no-repeat center center;
}

.boxes .box.order-online:before {
    background: url("../images/instacartbox.png?v=1") no-repeat center center;
}

.boxes .box.digital-coupons:before {
    background: url("../images/couponsbox.png") no-repeat center center;
}

.boxes .box.deli-bakery:before {
    background: url("../images/platters.png") no-repeat center center;
}

.boxes .box.store:before {
    background: url("../images/welcome.png") no-repeat center center;
}

@media (max-width: 850px) {
    .videos {
        flex-direction: column;
        border-radius: 0 0 20px 20px;
        margin-bottom: 0px;
    }

    .videos>iframe {
        max-width: 100%;
        width: 100%;
    }
}


@media (max-width: 600px) {
    @media (max-width: 600px) {
        #main {
            padding-top: 0px !important;
            border-radius: 0px;
            margin-top: -99px;
            margin-bottom: 0px;
        }
    }

    .site-main {
        padding-top: 33px;
    }

    .banner-container {
        box-shadow: none;
        border-radius: 0;
        border: none;
    }

    .boxes {
        margin-left: 15px;
        margin-right: 15px;
    }

    .boxes .box {
        min-height: 200px;
    }

    .boxes .box:after {
        left: 10%;
        width: 80%;
    }

    .boxes .box .content h2 {
        font-size: 24px;
    }

    h2.slogan {
        font-size: 20px;
    }
}