
.banner-container {
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid white;
}

.cycloneslider-template-standard{
    margin-bottom: 0px;
}
.boxes {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin: 35px auto;
}
.boxes .box{
    flex: 1 46%;
    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 white;
    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: sepia(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: #028655;
    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: 'Raleway', sans-serif;
}

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

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

.boxes .box.community:before{
    background: url("../images/commbox.jpg") no-repeat center center;
}

.boxes .box.employment:before{
    background: url("../images/employment.jpg") no-repeat center center;
}

.boxes .box.online-shopping:before{
    background: url("../images/onlineshopping.jpg") no-repeat center center;
}

.boxes .box.store:before{
    background: url("../images/storeinfo.jpg?v=1") 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-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: 42px;
    }
}