/* Results Section */
section.home-results {
    padding: 40px 0 0px;
}

.results-title h2.banner-title {
    color: #000;
    font-size: 58px;
    padding-bottom: 20px;
    font-family: "Playfair Display";
    font-weight: 700;
    text-transform: capitalize;
}

.results-inner h3 {
    font-weight: 700;
    font-family: "Playfair Display";
    font-size: 31px;
    padding-bottom: 5px;
}

.results-outer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 0;
}

.results-inner {
    width: calc(100% / 4 - 40px);
    margin-bottom: 40px;
    text-align: center;
    padding: 40px 20px;
    background: #dd6327;
    color: #fff;
    cursor: pointer;
    transition: 0.3s all;
}

.results-inner-title {
    padding-bottom: 30px;
}

.results-inner h2 {
    font-weight: 700;
    font-family: "Playfair Display";
    font-size: 21px;
    padding-bottom: 0;
}


.results-inner p.description-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
}

.results-inner:hover {
    background: #fff;
    box-shadow: 1px 1px 29px -8px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 1px 29px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 29px -8px rgba(0,0,0,0.75);
    color: #000;
}

.results-inner:hover p.description-text{
    color: #000;
}

/* Results Section */

