<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.boxes {
    margin-top: 30px;
    flex-wrap: wrap;
}

.box {
    /* padding: 20px; */
    background: #210d3c;
    width: 32%;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.box img {
    width: 100%;
}

.box h4 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 8px;
}

.box-title {
    padding: 10px;
    background: #fff;
    color: #000;
    width: 80%;
    position: absolute;
    left: 10%;
    bottom: 0px;
    transition: all 0.5s;
}

.box-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.5s;
}

.box p {
    margin-bottom: 0px;
}

.box:hover .box-overlay {
    bottom: 0;
}

.box:hover .box-title {
    opacity: 0;
}

.slot-block p{
    line-height: 1.4;
}

.button{
    margin-bottom: 20px;
}

.lightTitle {
    letter-spacing: 0.5px;
    font-weight: 300;
    color: #fff;
    line-height: 1.5;
    font-size: 1.1em;
}

.section-title {
    font-weight: 700;
    font-size: 3em;
    margin-bottom: 10px;
}

#mediaReach {
    background: url("../images/mfw/social-media-bg.png") no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

.btns-block{
    padding: 60px 0px 40px;
    margin-top: 0px;
}

.pointsOuter{
    padding: 50px 30px 50px 0px;
}

/* Media */

@media screen and (max-width: 680px){
    .pointsOuter{
        padding: 20px;
    }

    .bullet-block, .box {
        width: 100%;
    }

    .btns-block{
        padding: 20px 0px;
    }
}</pre></body></html>