﻿.section-title {
    position: relative
}

    .section-title p {
        font-size: 16px;
        margin-bottom: 5px;
        font-weight: 400;
    }

    .section-title h4 {
        font-size: 40px;
        font-weight: 600;
        text-transform: capitalize;
        position: relative;
        padding-bottom: 20px;
        display: inline-block
    }

        .section-title h4:before {
            position: absolute;
            content: "";
            width: 80px;
            height: 2px;
            background-color: #d8d8d8;
            bottom: 0;
            left: 50%;
            margin-left: -40px;
        }

        .section-title h4:after {
            position: absolute;
            content: "";
            width: 50px;
            height: 2px;
            background-color: #000000;
            left: 0;
            bottom: 0;
            left: 50%;
            margin-left: -25px;
        }

.pt-100 {
    padding-top: 50px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.products {
    background-color: #FBFBFB;
}

.single-product {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
    -webkit-transition: .3s;
    transition: .3s;
    padding: 30px 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
    height: 100%;
}

    .single-product:before {
        position: absolute;
        width: 0;
        height: 0;
        background-color: #000000;
        left: 0;
        top: 0;
        content: "";
        -webkit-transition: .3s;
        transition: .3s
    }

    .single-product:after {
        position: absolute;
        width: 0;
        height: 0;
        background-color: #000000;
        right: 0;
        bottom: 0;
        content: "";
        -webkit-transition: .3s;
        transition: .3s
    }

    .single-product:hover:after,
    .single-product:hover:before {
        width: 50%;
        height: 2px;
        -webkit-transition: .3s;
        transition: .3s
    }

    .single-product:hover {
        box-shadow: 1px 3px 10px 0 rgba(0, 0, 0, 0.10)
    }

    .single-product h4 {
        font-size: 19px;
        font-weight: 100;
        margin-bottom: 15px;
        text-transform: capitalize;
        color: #000000;
    }

    .single-product:hover h4 {
        cursor: pointer;
    }

    .single-product p {
        font-size: 15px;
        line-height: 1.8;
    }

    .single-product:hover p {
        cursor: pointer;
    }

    .single-product img {
        font-size: 20px;
        width: 100%;
        height: 250px;
        border: 1.5px solid #ddd;
        line-height: 60px;
        margin-bottom: 10px;
        border-radius: 0%;
        -webkit-transition: .3s;
        transition: .3s;
        opacity: 1;
        object-fit: cover;
    }

    .single-product:hover img {
        color: #fff;
        border-color: #000000;
        border-radius: 0;
        opacity: 1;
        cursor: pointer;
    }

    .single-product label {
        font-size: 10px;
        font-weight: 100;
        margin-bottom: 15px;
        text-transform: capitalize;
    }

@media screen and (max-width : 480px) {

}
