.shuffle-item {
    position: relative;
    padding: 15px;
}

.shuffle-item .content-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.shuffle-item .image {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.shuffle-item .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.shuffle-item .content {
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .3s all ease-in;
    background-color: rgba(255, 255, 255, .5);
    padding: 10px;
}

.shuffle-item:hover .image img {
    transform: scale(1.05);
    transition: .3s all ease-in;
}

.shuffle-item:hover .content {
    opacity: 1;
}

.shuffle-item .content h3 {
    font-weight: bold;
}

.width--33 {
    width: 33%;
}
@media (max-width: 768px) {
    .width--33 {
        width: 100%;
    }
}

.width--66 {
    width: 66%;
}
@media (max-width: 768px) {
    .width--66 {
        width: 100%;
    }
}

.height--400 {
    height: 400px;
}

.height--800 {
    height: 800px;
}


/* ImagesLoaded styles */

.shuffle-container  {
    opacity:0;
}

.loader {
    position: absolute;
    top: 0%;
    left: 0%;
    margin-top: 0px;
    margin-left: 0px;
  }
  
.hidden {
  display: none !important;
  visibility: hidden;
}