* {
    margin: 0;
    padding: 0;
    line-height: 1;
}

body,
html {
    width: 100%;
    height: 100%;
    background-image: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.container {
    margin-top: 70px;
    margin-left: 8%;
	padding-top: 25px;
	padding-bottom: 25px;
}
.container h1{
    text-align: center;
}

hr {
	border-color: darken(#fafafa, 8.25);
    width: 100%;
	margin: 15px 0px 5px;
}

.card-wrapper {
	position: relative;	
	width: 100%;
	height: 335px;
	border: 1px solid darken(#808080, 8.25);
	border-bottom-width: 2px;
	overflow: hidden;
	margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px #8e8e8e;
    transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card-wrapper:hover {
    transform: scale(1.025);
}
.card-wrapper img {
    width: 100%;
    height: 265px ;
	max-width: 100%;
    border: 1px solid darken(#808080, 8.25);
}

.image-holder__link{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.image-holder__link i{
    color: white;
    margin: 20% 40%;
    font-size: 4em;
    opacity: 0.6;
}
.card-wrapper:hover .image-holder__link{
    opacity: 1;
}
.store-description {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;	
	height: 80px;
	padding: 10px 15px;
	overflow: hidden;
	background-color: #fafafa;
    border: 1px solid#808080;
	border-bottom: 2px solid#808080;
    border-bottom-left-radius:  10px;
    border-bottom-right-radius:  10px;
}

.card-wrapper:hover  .store-description {
    height: 190px;
}
.secondary-text {
	color: #6d6d6d;
}
.store-description__title {	
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;	
    font-size: 18px;		
    line-height: 1.25;	
}
.store-description__category {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 0px;
    width: 66.6%;
}

.store-description__star {
    color: #f6ab3f;
    text-align: left;
    font-weight: bold;
    letter-spacing: 0.06em; 
    width: 33.3%;  
    font-size: 0.8em; 
}

.contact-wrapper {
    margin-top: 0px;
    margin-bottom: 5px;
    line-height: 20px;
}

.contact-wrapper a {
    background-color:#25d366;
    color:#ffffff;
    padding: 3px;
    border-radius: 2px;
    margin-top: 28px;
    margin-bottom: 28px;
    text-decoration: none;
    cursor: pointer;
}
.text-time{
    color: #47821c;
    font-weight: bold;
}


/*-------------------------Responsive-------------------------*/

@media only screen and (min-width: 1000px) and (max-width: 1300px) {
    .store-description__star {

        font-size: 0.7em; 
    }
    hr {
        width: 100%;
        margin: 10px 2px 5px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
    .card-wrapper img {
        height: 325px;
        }
    .store-description {
        height: 65px;
    }
    .store-description__title {		
        font-size: 15px;		
        line-height: 1;	
    }
    .store-description__category {
        font-size: 0.8em;
        width: 52%;
    }
    .store-description__star {
        width: 48%;
        font-size: 0.7em; 
    }
    hr {
        width: 100%;
        margin: 10px 2px 0px;
    }
    .contact-wrapper b{
        font-size: 0.8em;
        line-height: 8px;
    }
    .text-uppercase{
        font-size: 0.7em;
    }
}
@media only screen and (min-width: 600px) and (max-width: 768px) {
    .card-wrapper img {
        height: 325px;
        }
    .store-description {
        height: 65px;
    }	
    .card-wrapper:hover  .store-description {
        height: 185px;	
    }
    .store-description__title {		
        font-size: 14px;		
        line-height: 1;	
    }
    .store-description__category {
        font-size: 0.7em;
        width: 54%;
    }
    .store-description__star {
        width: 46%;
        font-size: 0.6em; 
    }
    hr {
        width: 100%;
        margin: 2px 0;
    }
    .contact-wrapper {
        padding-top: 5px;
    }
    .contact-wrapper b{
        font-size: 0.8em;
    }
    .text-uppercase{
        font-size: 0.8em;
    }
}
@media only screen and (max-width: 600px) {
    .container{
        margin-top: 50px;
        padding: 50px;
    }
 }