.tgs-products .product-flex-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.tgs-products .product-item {
    background: rgba(196, 196, 196, 0.5);
    padding: 30px !important;
    height: 100%;
}
.tgs-products .product-item-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.tgs-products .product-item-inner .product-content {
    text-align: center
}
.tgs-products .product-item-inner .product-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 40px;
    text-transform: uppercase;
}
.tgs-products .product-item-inner .product-link {
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--secondary-font)
}
.tgs-products .product-item-inner .product-link a {
    letter-spacing: 0.06em;
}
.tgs-products .product-item-inner .product-image {
    width: 100%;
    height: 300px;
}
@media screen and (max-width: 767px) {
    .tgs-products .product-item {
        padding: 18px !important;
    }
    .tgs-products .product-item-inner .product-link {
        font-size: 11px;
    }
}
@media screen and (max-width: 991px) {
    .tgs-products .product-item-inner .product-title {
        font-size: 16px;
        line-height: 20px;
    }
    .tgs-products .product-item-inner .product-image {
        height: 150px;
    }
    .tgs-products .col {
        padding-bottom: 30px;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .tgs-products .product-item-inner .product-link {
        font-size: 12px;
    }
}
