<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-----------------------
News Boxes
-----------------------*/
.news-box {
    background-color: #000000;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    margin: 20px 0px;
    max-width: 100%;
    min-width: 250px;
    overflow: hidden;
    position: relative;
    text-align: left;
    width: 100%;
}

    .news-box * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }

    .news-box img {
        max-width: 100%;
        vertical-align: top;
        position: relative;
        opacity: 1;
    }
    .news-box h3,
    .news-box p {
        margin: 0;
        padding: 0;
    }

    .news-box h3 {
        color: #ffffff;
        font-size: 22px;
        margin-bottom: 10px;
    }

    .news-box .hover {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.3);
        font-size: 32px;
        opacity: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
        color:#fff;
    }

        .news-box .hover a {
            color: #ffffff;
            z-index: 1;
        }

            .news-box .hover a:hover,
            .news-box .hover a:active,
            .news-box .hover a:visited {
                color: #ffffff;
            }

    .news-box:hover .hover {
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
        opacity: 0;
    }

.portfolio-wrap {
    position: relative;
    overflow: hidden;
}

    .portfolio-wrap img {
        /* width: 100%; */
        /* transform:scale(1.1); */
        /* -webkit-transform:scale(1.1); */
        -moz-transform: scale(1.1);
        /* transition:all .3s; */
        /* -webkit-transition:all .3s; */
        -moz-transition: all .3s;
    }

    .portfolio-wrap:hover img {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
    }

    .portfolio-wrap:before {
        /* position:absolute; */
        te;
        */ left:0;
        /* top:0; */
        /* width:100%; */
        /* height:100%; */
        /* content:""; */
        /* background:#000; */
        /* opacity:.1; */
        /* transition:all .3s; */
        /* -webkit-transition:all .3s; */
        -moz-transition: all .3s;
        /* z-index:9; */
    }

    .portfolio-wrap:hover:before {
        opacity: .7;
    }

    .portfolio-wrap:after {
        position: absolute;
        left: 20%;
        top: 20%;
        width: 60%;
        height: 60%;
        border: 0px solid #fff;
        background: #e6212a;
        opacity: 0;
        content: "";
        z-index: 9;
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
    }

    .portfolio-wrap:hover:after {
        opacity: .9;
    }

.portfolio-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 0;
    text-align: center;
    width: 100%;
    padding: 0px 30px;
    z-index: 99;
    opacity: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    visibility: hidden;
}

.portfolio-wrap:hover .portfolio-content {
    visibility: visible;
    opacity: 1;
}

.portfolio-content b {
    height: 40px;
    width: 40px;
    display: inline-block;
    background: none;
    border-radius: 50%;
    line-height: 40px;
    margin-bottom: 20px;
    position: relative;
    top: -30px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    color:#fff;
    
}
    .portfolio-content b span {
        font-size: 48px;
        -webkit-text-stroke: 6px #e6212a;
    }
    .portfolio-wrap:hover .portfolio-content b {
        top: 0px;
    }

.portfolio-content h3 {
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    font-weight: normal;
    position: relative;
    bottom: -30px;
}

.portfolio-wrap:hover .portfolio-content h3 {
    bottom: 0px;
}
</pre></body></html>