body {background-color: #6610f2;}

// Within style tags in your html file
* { box-sizing: border-box; }

.grid:after {
  content: '';
  display: block;
  clear: both;
}

.grid-sizer,
.grid-item {
  width: 33.333%;
}
@media (max-width: 575px) {
  .grid-sizer,
  .grid-item {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .grid-sizer,
  .grid-item {
    width: 50%;
  }
}

/* To change the amount of columns on larger devices, uncomment the code below */

@media (min-width: 768px) and (max-width: 991px) {
  .grid-sizer,
  .grid-item {
    width: 33.333%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .grid-sizer,
  .grid-item {
    width: 33.333%;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .grid-sizer,
  .grid-item {
    width: 25%;
  }
} 

@media (min-width: 1500px) {
  .grid-sizer,
  .grid-item {
    width: 20%;
  }
} 

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

/* MORE */
.grid-more:after {
  content: '';
  display: block;
  clear: both;
}

.grid-sizer-more,
.grid-item-more {
  width: 33.333%;
}
@media (max-width: 575px) {
  .grid-sizer-more,
  .grid-item-more {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .grid-size-more,
  .grid-item-more {
    width: 50%;
  }
}

/* To change the amount of columns on larger devices, uncomment the code below */

@media (min-width: 768px) and (max-width: 991px) {
  .grid-sizer-more,
  .grid-item-more {
    width: 33.333%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .grid-sizer-more,
  .grid-item-more {
    width: 33.333%;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .grid-sizer-more,
  .grid-item-more {
    width: 25%;
  }
} 

@media (min-width: 1500px) {
  .grid-sizer-more,
  .grid-item-more {
    width: 20%;
  }
} 

.grid-item-more {
  float: left;
}

.grid-item-more img {
  display: block;
  max-width: 100%;
}

.ribbon-wrapper-green {
	width: 85px;
	height: 88px;
	overflow: hidden;
	position: absolute;
/* 	top: -3px; */
/* 	right: -3px; */
	top:0;
	right:0;
}

.ribbon-green {
	font: bold 15px Sans-Serif;
	color: #333;
	text-align: center;
	text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;
	-webkit-transform: rotate(45deg);
	-moz-transform:    rotate(45deg);
	-ms-transform:     rotate(45deg);
	-o-transform:      rotate(45deg);
	position: relative;
	padding: 7px 0;
	left: -5px;
	top: 15px;
	width: 120px;
	background-color: #ff3300;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#BFDC7A), to(#ff3300)); 
	background-image: -webkit-linear-gradient(top, #ff3300, #ff3300); 
	background-image:    -moz-linear-gradient(top, #ff3300, #ff3300); 
	background-image:     -ms-linear-gradient(top, #ff3300, #ff3300); 
	background-image:      -o-linear-gradient(top, #ff3300, #ff3300); 
	color: #fff;
	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	-moz-box-shadow:    0px 0px 3px rgba(0,0,0,0.3);
	box-shadow:         0px 0px 3px rgba(0,0,0,0.3);
}
 
.ribbon-green:before, .ribbon-green:after {
	content: "";
/* 	border-top:   3px solid #6e8900;  */  
	border-left:  3px solid transparent;
	border-right: 3px solid transparent;
	position: absolute;
	bottom: -3px;
}
 
.ribbon-green:before { left: 0; }
.ribbon-green:after { right: 0; }