.home-section {
    margin: 50px auto
}
    .module-title {
    display: block;
    margin: 9px 0px 9px 0px;
    text-align: center;
}

.module-title .title {
    display: inline-block;
    color: #002559;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: bold;
    background-color: #fdb813;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}
.product-thumb {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    text-align: left;
    background-color: #fff;
    transition: all ease 0.3s;
    border-radius: 10px
}

.product-thumb:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.2)
}

.product-thumb:hover .image img {
    transform: scale(1.1, 1.1)
}

.product-thumb:hover .caption {
    background-color: #081356
}

.product-thumb:hover .caption .name {
    color: #fff
}

.product-thumb:hover .caption .description {
    color: #fff
}

.product-thumb:hover .caption .description a {
    color: #fff
}

.product-thumb .image {
    overflow: hidden;
    position: relative
}

.product-thumb .image img {
    width: 100%;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out
}

.product-thumb .image .top {
    position: absolute;
    top: 0;
    left: 0;
    animation-name: fade;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 2s;
    animation-duration: 3s;
    animation-direction: alternate
}

.product-thumb .actions-link {
    display: none;
    text-align: center;
    width: 80%;
    margin: 5px auto;
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out
}

.product-thumb .actions-link .button {
    background-color: #fff;
    border-radius: 0;
    text-align: center;
    color: #999;
    margin: 0;
    border: none
}

.product-thumb .actions-link .button:last-child {
    border-bottom: none
}

.product-thumb .caption {
    padding: 10px;
    background-color: #f9f9f9
}

.product-thumb .caption .name {
    font-size: 17px;
    color: #000;
    text-transform: capitalize;
    min-height: 30px;
    padding-right: 30px;
    position: relative;
    line-height: 1.5
}

.product-thumb .caption .name:before {
    position: absolute;
    font-family: FontAwesome;
    top: 5px;
    right: 10px;
    z-index: 4;
    font-size: 20px
}

.product-thumb .caption .description {
    color: #333
}

.product-thumb .caption .description a {
    color: #333
}

.product-thumb .btn {
    font-size: 12px
}

.product-thumb .product-color {
    padding: 5px 0;
    min-height: 35px;
    display: none
}

.product-thumb .product-color img {
    width: 15px;
    border: 1px solid #eee
}

.product-thumb .thumb-bottom {
    display: none
}

.product-thumb .price {
    display: none
}

.thumb-image {
    position: relative
}

.thumb-image .image-hover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    width: 100%
}
@media (min-width: 992px) {
    .home-section {
        margin: 100px auto;
    }
}