﻿body {
}


/* ================================
	Portfolio Page Style
================================== */

.portfolio-wrapper {
    padding: 100px 0;
}

    .portfolio-wrapper .portfolio-content figure {
        position: relative;
        margin-bottom: 30px;
        overflow: hidden;
    }

        .portfolio-wrapper .portfolio-content figure img {
            transition: 0.6s ease;
        }

        .portfolio-wrapper .portfolio-content figure:hover img {
            -webkit-transform: scale(1.2);
            -ms-transform: scale(1.2);
            transform: scale(1.2);
        }

        .portfolio-wrapper .portfolio-content figure:hover figcaption {
            background: rgba(128, 205, 54, 0.8);
            opacity: 1;
            visibility: visible;
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            transform: scale(1);
            bottom: 0;
            left: 0;
        }

        .portfolio-wrapper .portfolio-content figure figcaption {
            position: absolute;
            bottom: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: #000;
            visibility: hidden;
            opacity: 0;
            transition: 0.6s ease;
            -webkit-transform: scale(0.2);
            -ms-transform: scale(0.2);
            transform: scale(0.2);
        }

            .portfolio-wrapper .portfolio-content figure figcaption div {
                position: absolute;
                width: 100%;
                text-align: center;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
            }

                .portfolio-wrapper .portfolio-content figure figcaption div p a {
                    color: #fff;
                    display: block;
                    margin-bottom: 10px;
                    text-transform: uppercase;
                }

                .portfolio-wrapper .portfolio-content figure figcaption div h3 {
                    margin: 0;
                }

                    .portfolio-wrapper .portfolio-content figure figcaption div h3 a {
                        text-transform: uppercase;
                        color: #fff;
                    }

                .portfolio-wrapper .portfolio-content figure figcaption div a:hover {
                    color: #323232;
                }

    .portfolio-wrapper .blog-pagination {
        margin-top: 30px;
    }

        .portfolio-wrapper .blog-pagination ul {
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            border-top: 1px solid rgba(0, 0, 0, 0.04);
            margin-bottom: 0;
            padding: 10px 0;
            text-align: center;
        }

            .portfolio-wrapper .blog-pagination ul li {
                display: inline-block;
            }

                .portfolio-wrapper .blog-pagination ul li a {
                    background: none;
                    font-weight: 500;
                    display: block;
                    padding: 10px 15px;
                    color: #727272;
                }

                    .portfolio-wrapper .blog-pagination ul li a:hover {
                        background: #781F3B;
                        color: #fff;
                    }

                .portfolio-wrapper .blog-pagination ul li.active a {
                    background: #781F3B;
                    color: #fff;
                }
