.gallery-products {
    margin: 6px 0;
    position: relative;
    float: left;
    width: 100%;
}

.gallery-products .full {
    position: relative;
    min-height: 400px;
}

.gallery-products .full .product {
    position: absolute;
    width: 100%;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.gallery-products .full .product.active {
    opacity: 1;
    visibility: visible;
}

.gallery-products .full .product .title {
    margin: 0;
    padding-bottom: 20px;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 54px;   
    text-align: left;
}

.gallery-products .full .product .button {
    margin: 0;
    float: left;
}

.gallery-products .full .product img {
    max-width: 100%;
}

.gallery-products .thumbnails {
    margin: 30px -3px 0;
}

.gallery-products .thumbnails .product {
    border: 1px solid #8e8e8e;
    margin: 2px;
    width: calc(100% - 4px);
    transition: 0.3s;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
}

.gallery-products .thumbnails .product.active {
    border-color: #dc200e;
}

.gallery-products .thumbnails .product img {
    max-width: 100%;
}