certifiedSitesModule {
    position: relative;
    z-index: 9999;
    background: white;
    padding: 80px 0px;
    @include small {
        padding: 40px 0px 10px;
    }
    .titleGrid {
        margin-bottom: 12px;
        .exploreHeadline {
            color: #333;
        }
    }
    .leftSites {
        position: relative;
        .grid-margin-x {
            .medium-6 {
                margin-bottom: .5rem;
            }
        }
        .siteCell {
            height: 25vw;
            max-height: 200px;
            margin-bottom: .5rem;
            @include mediumdown {
                margin-bottom: .5rem;
                height: 70vw;
                max-height: 275px;
            }
        }
    }
    .smallExplore {
        display: none; 
        margin-top: 15px;
        @include small {
            display: flex;
            justify-content: center;
        }
    }
    .desktopExplore {
        display: flex;
        @include small {
            display: none;
        }
    }
    .rightSites {
        .cell {
            height: 50vw;
            max-height: 408px;
        }
        .siteCell {
            @include mediumdown {
                margin-bottom: .5rem;
                height: 70vw;
            }
            a {
                h5 {
                    font-size: 1.5rem;
                }
            }
        }
    }
    .siteCell {
        display: flex;
        justify-content: flex-end;
        flex-direction: column;
        padding: 20px;
        position: relative;
        &:hover {
            .redOverlay {
                opacity: 1;
                @include transition(.2s);
            }
        }
        &:after {
            position: absolute;
            content: '';
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg,transparent 0,rgba(0,0,0,.7));
        }
        .redOverlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            z-index: 8;
            background: rgba(155, 37, 45, 0.6);
            @include transition(.2s);
            opacity: 0;
        }  
        .titleCell {
            position: relative;
            z-index: 9;
            flex-direction: column;
            height: 100%;
            justify-content: flex-end;
            .titleWrap {
                display: flex;
                justify-content: flex-end;
                flex-direction: column;
                height: 100%;
                padding: 0px;
                p {
                    margin-bottom: 1px;
                }
            }
        }
        a {
            position: relative;
            color: white;
            h5 {
                font-size: 1rem;
                line-height: 1;
            }
        }
    }
}