.services {
        padding-bottom: 30px;
        text-align: center;
        padding: 50px 0px;
    }

    .services .section-title h2 {
        color: #444;
        font-size: 42px;
    }

    .services .section-title p {
        text-align: center;
        font-style: italic;
        margin-bottom: 40px;
        color: #666;
    }

    .services .service-box {
        margin-bottom: 30px;
        padding: 15px;
        text-align: center;
        box-shadow: 0px 0 5px #bdbdbd;
        float: left;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .services .service-box::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #f1f1f1;
        left: 0px;
        top: -500px;
        z-index: -1;
        transition: 1s;
    }

    .services .service-box:hover::after {
        top: 0px;
    }

    .services i {
        display: flex;
        justify-content: center;
    }

    .services i {
        width: 70px;
        height: 70px;
        margin-bottom: 30px;
        background: #ffffff;
        border-radius: 100%;
        transition: 0.5s;
        color: #28a745;
        font-size: 35px;
        overflow: hidden;
        padding-top: 18px;
        box-shadow: 0px 0 5px #bdbdbd;
        margin: 10px auto 15px;
    }

    .services h4 {
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 18px;
        position: relative;
    }

    .services h4 a {
        color: #444;
        text-decoration: none;
    }

    .services h4 a:hover {
        color: #28a745;
    }

    .services p {
        line-height: 24px;
        font-size: 14px;
    }
    /*End Services sections*/

    #testimonial {
        padding: 30px 0px 20px;
        color: #fff;
        background-color: #272727;
    }

    #testimonial h2 {
        font-style: italic;
        color: #fff;
        font-size: 26px;
        text-align: center;
    }

    #testimonial .client-img {
        width: 80px;
        height: 80px;
        overflow: hidden;
        border: 3px solid #fff;
        margin: 0px auto;
        border-radius: 100%;
        position: absolute;
        left: 0px;
    }

    #testimonial .carousel-content {
        padding: 20px 0px 20px 100px;
        width: 70%;
        margin: 0 auto;
        position: relative;
    }

    #testimonial h3 {
        font-size: 17px;
        color: #fff;
        margin-bottom: 30px;
        font-style: italic;
        text-align: right;
    }

    #testimonial p {
        font-size: 15px;
    }

    #testimonial .client-img img {
        width: 100%;
    }

    #testimonial .carousel-control-prev,
    #testimonial .carousel-control-next {
        font-size: 36px;
    }

    @media (max-width: 576px) {
        #testimonial .carousel-content {
            padding: 20px 0px 20px 0px;
            width: 100%;
        }
        #testimonial .client-img {
            margin: 20px auto;
            position: static;
        }
        #testimonial h3,
        #testimonial p {
            text-align: center;
        }
    }
    /*-- End Testimonial Section CSS --*/