/* UNIVERSAL GRID ======= */
 .wrapper-inner {
     width: 1440px;
     margin: 0 auto;
}
 *, *::before, *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 [class*="cols-"] > * {
     position: relative;
}
 .cols-1, 
 .cols-2, 
 .cols-3, 
 .cols-4, 
 .cols-5, 
 .cols-6 {
     position: relative;
     display: flex;
     flex-wrap: wrap;
     justify-content: flex-start;
}
 .cols-1 > * {
     width: 100%;
}
 .cols-2 > * {
     width: 50%;
}
 .cols-3 > * {
     width: 33.333%;
}
 .cols-4 > * {
     width: 25%;
}
 .cols-5 > * {
     width: 20%;
}
 .cols-6 > * {
     width: 16.666%;
}
 .margin-small {
     margin: -3px;
}
 .margin-small > * {
     padding: 3px;
}
 .margin-medium {
     margin: -5px;
}
 .margin-medium > * {
     padding: 5px;
}
 .margin-large {
     margin: -10px;
}
 .margin-large > * {
     padding: 10px;
}
 .gallery::after, #single-post::after, .clearfix::after {
     visibility: hidden;
     display: block;
     content: "";
     clear: both;
     height: 0;
}
 .gallery .gallery-item {
     margin-top: 0 !important;
     margin-bottom: 0 !important;
}
 .gallery-item .gallery-icon {
     padding: 1px;
}
 .gallery-item .gallery-icon a {
     position: relative;
     overflow: hidden;
     display: block;
     border-radius: 5px;
}
 .gallery-columns-3 .gallery-item {
     float: left;
     width: 33.333333% !important;
}
 .gallery .gallery-item img {
     border: 0 !important;
     border-radius: 0 !important;
     transition: all 0.24s linear;
     -webkit-transition: all 0.24s linear;
     -o-transition: all 0.24s linear;
     -ms-transition: all 0.24s linear;
     -moz-transition: all 0.24s linear;
}
 .gallery .gallery-item:hover img {
     transform: perspective(1px) scale(1.1) translateZ(0);
     -webkit-transform: perspective(1px) scale(1.1) translateZ(0);
     -o-transform: perspective(1px) scale(1.1) translateZ(0);
     -ms-transform: perspective(1px) scale(1.1) translateZ(0);
     -moz-transform: perspective(1px) scale(1.1) translateZ(0);
}