/*--- COLLECTIONS---*/
.collections-item {
width: 31.1%;
    display: inline-block;
    margin: 8px;
    padding: 0;
    overflow: hidden;
    position: relative;
    cursor: default;
    background-clip: border-box;
    color: #6b6e84;
}

.collections-item a {
	display: block;
	position: relative;
	overflow: hidden;
	padding: 11px;
	background-color: #6a6b6b17;
	border-radius: 4px;
	-webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.01);
	box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.01);
}

.collections-item .cover {
	overflow: hidden;
	position: relative;
}

.collections-item .img {
	padding-top: 75%;
}

.collections-item .img img {
	border-radius: .1875rem;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	   box-shadow: 0 2px 6px 0 rgba(0,0,0,0.1);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}


.collections-item:hover .img img  {
    -moz-transform: scale(1.2) rotate(2deg);
    -webkit-transform: scale(1.2) rotate(2deg);
    -o-transform: scale(1.2) rotate(2deg);
    -ms-transform: scale(1.2) rotate(2deg);
    transform: scale(1.2) rotate(2deg);
}

.collections-item .title {
	position: absolute;
	width: 100%;
	z-index: 11;
	bottom: 0rem;
	background-color: #1e242ea3;
	padding: 1rem 0;
	text-align: center;
	font-size: 15px;
	color: #fff;
	font-weight: 700;
}

.collections-item .collections-count {
	color: #fff;
	display: inline-block;
	background-color: #e33232;
	border-radius: 3px;
	padding: 5px 7px;
	font-size: 10px;
	position: absolute;
	top: 10px;
	right: 10px;
}

@media only screen and (min-width : 740px) and (max-width : 950px) {
	.collections-item {
		width: 47.8%;
    float: left;
    margin: 8px;
	    padding: 0;
    overflow: hidden;
    position: relative;
    cursor: default;
    background-clip: border-box;
    color: #6b6e84;
	}
	.collections-item .img {
		padding-top: 53%;
	}
}

@media only screen and (max-width : 740px) and (min-width : 548px) {
	    	.collections-item {width: 48.7%;    margin: 6px 3px; }
			.collections-item a{    padding: 7px;}
}

@media only screen and (max-width : 548px) and (min-width : 321px) {
	    	.collections-item {width: 48%;    margin: 6px 3px;}
			.collections-item .title{font-size: 12px;}
			.collections-item a{    padding: 7px;}
}

@media only screen and (max-width : 320px) and (min-width : 150px) {
	.collections-item {
    width: 100%;
    padding: 0;
    margin: 10px 0;
	}
	.collections-item .img {
		padding-top: 45%;
	}
	.collections-item .title{
		    font-size: 13px;
	}
}
