charset "UTF-8";

.products {
    float: left;
    width: 100%;
}

.products .container {
  max-width: 1200px;
  padding-left: 0px;
  padding-right: 0px;
}

.products .title {
    font-size: 48px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 100px;
    float: left;
    line-height: 1;
    width: 100%;
}

.products .subtitle {
    font-size: 24px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    float: left;
    width: 100%;
    margin-bottom: 50px;
}

.products-row {
    margin-left: 0px;
    margin-right: 0px;
}

.products-row .col-md-4 {
    padding-left: 5px;
    padding-right: 5px;
}

.product-item {
    float: left;
    width: 100%;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 5px;
    margin-bottom: 5px;
}


.product-content {
    position: absolute;
    left: 0;
    width: 100%;
    top: calc(100% - 123px);
    height: 100%;
    background: rgba(45, 156, 219, 0.6);
    text-align: center;
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}

.product-item2 .product-content {
    background: rgba(44, 78, 132, 0.7);
}

.product-item3 .product-content {
    background: rgba(86, 204, 242, 0.7);
}

.product-item4 .product-content {
    background: rgba(86, 204, 242, 0.7);
}

.product-item5 .product-content {
    background: rgba(45, 156, 219, 0.7);
}

.product-item6 .product-content {
    background: rgba(44, 78, 132, 0.7);
}

@media (min-width: 300px) {

    .product-item:hover .product-content {
        top: 0;
    }

}

.product-img {
	width: 100%;
}




.product-title {
    width: 100%;
    padding: 0 15%;
    float: left;
    text-align: center;
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    height: 123px;
    text-transform: uppercase;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.1;
}

.product-item3 .product-title {
    padding: 0 10%;
}

.product-desc {
    color: #fff;
    font-size: 15px;
    text-align: center;
    line-height: 1.5;
    width: 85%;
    margin-left: 7.5%;
    float: left;
    margin-top: 0;
    font-weight: 500;
}

.product-btn {
    display: inline-block;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    border: 4px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 5px;
    color: #fff;
    padding: 4px 8px;
    margin-top: 15px;
    position: absolute;
    left: 50%;
    bottom: 48px;
    transform: translate(-65%, 0);
}

.product-btn::after {
    position: absolute;
    /* background: url("images/supermarket.png"); */
    width: 92px;
    height: 92px;
    content: "";
    right: -68px;
    top: -24px;
}


@media screen and (max-width: 991px) {
	.product-title
	{
		font-size: 24px;
	}
	.product-desc 
	{
		font-size: 11px;
	}
	.product-btn
	{
		visibility: hidden;
	}
}

@media screen and (max-width: 575px) {
	.product-desc 
	{
		font-size: 15px;
	}
}