/** Shopify CDN: Minification failed

Line 144:0 All "@import" rules must come first

**/
.eqWrap {
	display: flex;
  flex-wrap: wrap;
  max-width: 1920px;
  margin: 0 auto;
}
.eq {
  color: #fff;
	padding: 10px;
}
.equalHW {
	flex: 1;
}

.equalHMWrap {
	justify-content: space-between;
}

.equalHM {
	width: 32%;
}

.equalHMRWrap {
	justify-content: space-between;
	flex-wrap: wrap;
}

.equalHMR {
	width: 32%;
	margin-bottom: 2%;
}

.equalHMVWrap {
	flex-wrap: wrap;
}

.equalHMV {
	width: 32%;
	margin: 1%;	
}

.grid-wrap > article {
    box-sizing: border-box;
    padding: 1rem;
    min-width: 33.33%;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.grid-wrap > article .mob {
    display:none
}
@media screen and (max-width:900px){
    .grid-wrap > article {
        min-width: 50%;
    }
    .grid-wrap > article .desk {
        display:none;
    }
    .grid-wrap > article .mob {
        display:block;
    }
}
@media screen and (max-width:678px){
    .grid-wrap > article {
        min-width: 100%;
    }
}
.grid-wrap > article a {
text-decoration: none;
color: #333;
}

.grid-wrap > article:hover img {
filter: grayscale(75%) hue-rotate(45deg);
}
.grid-wrap > article .newsfeed__img {
overflow: hidden;
margin-bottom: 1rem;
max-height: 250px;
}
.grid-wrap > article .newsfeed__img > img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: 3px;
    transition: .3s ease all;
    object-position: center;
}
.contain-image.grid-wrap > article .newsfeed__img > img{
  object-fit: contain;
}
body:not(.page-width) .grid-wrap > article .newsfeed__img > img{
  max-height: 250px;
  min-height: 250px;
}
.grid-wrap > article:hover .newsfeed__img > img {
    transform: scale(1.1);
}
.grid-wrap > article .newsfeed__desc {
line-height: 1.5rem;
margin-bottom: 1rem;
}
.grid-wrap > article .newsfeed__desc > h1 {
font-size: 1.25rem;
}
.grid-wrap > article .newsfeed__footer {
font-style: italic;
font-size: 0.85rem;
display: flex;
flex-flow: row wrap;
justify-content: space-between;
align-items: center;
}
.grid-wrap > article .newsfeed__footer p {
color: #999;
}
.grid-wrap > article .newsfeed__footer .newsfeed__more {
color: #68bad7;
}

@media (max-width: 800px) {
.grid-wrap {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}
}
@media (max-width: 320px) {
.grid-wrap {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
}
} 

/* grids-gallery */
@import 'https://fonts.googleapis.com/css?family=Oswald:300|Slabo+27px';

.grids-gallery {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding-block: 16px;
  max-width: 1920px;
  margin: 0 auto;
}

.grids-gallery-tile {
  min-width: 32.33%;
  max-width: 20vw;
  margin: 0.25em;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width:900px){
  .grids-gallery-tile {
    min-width: 48.33%;
  }
  .grids-gallery{
    padding: 0;
  }
}
@media screen and (max-width:676px){
  .grids-gallery-tile {
    min-width: 48.33%;
  }
}
@media screen and (max-width:575px){
  .grids-gallery-tile {
    min-width: 100%;
  }
}
.grids-gallery-tile img {
  width: 100%;
  height: 100%;
  transition: transform 300ms ease-in-out, filter 300ms ease-in-out;
  object-fit: cover;
}
.grids-gallery-tile .picture-info {
  position: absolute;
  z-index: 1;
  color: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 300ms ease-in-out, filter 300ms ease-in-out;
  background: #00000078;
}
.grids-gallery-tile .picture-info > * {
  margin: 0.5rem 1.25rem;
}
.grids-gallery-tile .picture-info h2 {
font-family: "Fjalla One", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color:white;
}
.grids-gallery-tile:hover img {
  transform: scale(1.1);
  filter: brightness(80%);
}
.grids-gallery-tile:hover .picture-info {
  opacity: 1;
}
.fadeIn {
  animation: fade 300ms ease-in-out forwards;
}
.aling--bottom .picture-info{
    justify-content: end;
    padding-bottom: 8px;
}
.aling--top .picture-info{
    padding-top: 8px;
    justify-content: flex-start;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes swell {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}