.featured .featured-product-wrapper {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: -webkit-transform 100ms ease-in-out;
    transition: -webkit-transform 100ms ease-in-out;
    -moz-transition: transform 100ms ease-in-out, -moz-transform 100ms ease-in-out;
    transition: transform 100ms ease-in-out;
    transition: transform 100ms ease-in-out, -webkit-transform 100ms ease-in-out, -moz-transform 100ms ease-in-out;
    padding: 0 0px;
    margin-top: 45px;
}

.featured .featured-product-wrapper:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.featured .featured-product-wrapper .product {
    min-height: 300px;
    height: auto;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.featured .featured-product-wrapper .product.thumbnail img {
    -webkit-border-radius: 2%;
    border-radius: 2%;
    width: 100%;
    height: 100%;
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    top: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    max-height: none;
    max-width: none;
    padding: 0px 0px 25px 0px;
}

.featured .featured-product-wrapper .product .title h3 {
    font-size: 1.75rem;
    width: 85%;
    white-space: normal;
    padding: 20px;
    color: #fff;
}

.featured-product-thumbnail-wrapper {
    width: 85%;
    position: relative;
    margin: 20px auto;
    margin-bottom: 0px;
    height: auto;
}

.featured-product-thumbnail-wrapper::after {
    content: "";
    display: block;
    padding-top: 100%;
}

.featured .featured-product-wrapper {
    padding: 0px;
}

.featured .featured-product-wrapper .product {
    height: inherit;
}

.featured .featured-product-wrapper .product .title {
    position: relative;
    padding: 0;
    bottom: inherit;
    height: inherit;
    width: inherit;
    top: auto;
}

.featured .featured-product-wrapper .product .title h3 {
    overflow: inherit;
    white-space: inherit;
    padding: 0px;
    text-overflow: inherit;
    color: #fff;
}

.row.featured {
    margin-bottom: 125px;
}

/* Additional CSS to change Thumbnails as per Linda's request */
.featured .featured-product-wrapper .product {
    border-radius: 20px;
    background-color: #444344;
}

.featured .featured-product-wrapper .product.thumbnail img {
    border-radius: 15px;
    padding: 0px 0px 25px 0px;
}

.featured-product-thumbnail-wrapper {
    margin: 6px auto;
    width: 96%
}

.featured .featured-product-wrapper .product .title {
    top: -15px;
}


@media (max-width: 768px) {
   .featured .featured-product-wrapper .product .title {
    position: relative;
    padding: 0;
    bottom: inherit;
    height: inherit;
    width: inherit;
    top: -15px;
    left: 30px;
}

.featured .featured-product-wrapper .product .title h3 {
    overflow: inherit;
    position: relative;
    white-space: inherit;
    padding: 0px;
    text-overflow: inherit;
    color: #fff;
    top: -15px;
    left: 30px;
}

}