#rig {
    /*max-width:910px;*/
    margin:0 auto; /*center aligned*/
    padding:0;
    font-size:0; /* Remember to change it back to normal font size if have captions */
    list-style:none;
    /*background-color:#312450;*/
	background-color: rgba(0, 0, 0, 0);
}
#rig li {
    display: inline-block;
    *display:inline;/*for IE6 - IE7*/
    width:25%;
    vertical-align:middle;
    box-sizing:border-box;
    margin: 4px;
    padding: 4px;
}
        
/* The wrapper for each item */
.rig-cell {
    margin:5px;
    box-shadow:0 0 6px rgba(0,0,0,0.3);
    display:block;
    position: relative;
    overflow:hidden;
}
        
/* If have the image layer */
.rig-img {
    display:block;
    width: 100%;
    height: auto;
    border:none;
    transform:scale(1);
    transition:all 1s;
}

#rig li:hover .rig-img {
    transform:scale(1.05);
}
        
/* If have the overlay layer */
.rig-overlay {
    position: absolute;
    display:block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    /*background: #3DC0F1 url(img/link.png) no-repeat center 20%;*/
    background-size: 50px 50px;
    opacity:0;
    filter:alpha(opacity=0);/*For IE6 - IE8*/
    transition:all 0.5s;
}
#rig li:hover .rig-overlay {
    opacity:0.9;
}

/* If have captions */
.rig-text {
    display:block;
    padding:0 15px;
    box-sizing:border-box;
    position:absolute;
    left:0;
    width:100%;
    text-align:center;
    text-transform:capitalize;
    font-size:14px;
    font-weight:bold;
    font-family: 'Oswald', sans-serif;
    font-weight:normal!important;
    top:23%;
    color:#fff;
    opacity:0;
    filter:alpha(opacity=0);/*For older IE*/
    transform:translateY(-20px);
    transition:all .3s;
}

#rig li:hover .rig-text {
    transform:translateY(0px);
    opacity:0.85;
}

.play {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	-moz-transition: border-color 0.2s ease;
	-webkit-transition: border-color 0.2s ease;
	-ms-transition: border-color 0.2s ease;
	transition: border-color 0.2s ease;
	background-color: #F08119 !important;
	border: solid 1px !important;
	border-color: rgba(255, 255, 255, 0.15) !important;
	border-radius: 0.25em;
	color: #ffffff !important;
	cursor: pointer;
	display: inline-block;
	font-size: 0.6em;
	font-weight: bold;
	height: calc(3.75em + 2px);
	letter-spacing: 0.25em;
	line-height: 3.75em;
	outline: 0;
	padding: 0 2.75em;
	position: relative;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	/*
	padding: 10px 20px 10px 20px;
	width: 100%;
	-webkit-border-radius: 3;
	-moz-border-radius: 3;
	font-family: Arial;
	*/
}

.play:hover {
	border-color: rgba(255, 255, 255, 0.55) !important;
}

@keyframes flickerAnimation {
  0%   { opacity:1; }
  50%  { opacity:0.2; }
  100% { opacity:1; }
}
@-o-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0.2; }
  100% { opacity:1; }
}
@-moz-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0.2; }
  100% { opacity:1; }
}
@-webkit-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0.2; }
  100% { opacity:1; }
}
.animate-flicker {
   -webkit-animation: flickerAnimation 0.7s infinite;
   -moz-animation: flickerAnimation 0.7s infinite;
   -o-animation: flickerAnimation 0.7s infinite;
    animation: flickerAnimation 0.7s infinite;
}

@media (max-width: 1800px) {
    #rig li {
        width:14.2857%;
    }
}

@media (max-width: 1500px) {
    #rig li {
        width:16.66%;
    }
}

@media (max-width: 1200px) {
    #rig li {
        width:20%;
    }
}

@media (max-width: 900px) {
    #rig li {
        width:20%;
    }
}

@media (max-width: 830px) {
    #rig li {
        width:25%;
    }
}

@media (max-width: 650px) {
    #rig li {
        width:33.33%;
    }
}

@media (max-width: 480px) {
    #rig li {
        width:50%;
    }
}