@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rokkitt:wght@900&display=swap");
/*
@mixin truncate-text($overflow: ellipsis){
	overflow: hidden;
	white-space: nowrap;
	text-overflow: $overflow; // values are: clip, ellipsis, or a string
}*/
/* Gallery
	========================================================================== */
section.block-gallery {
  /*&[data-style=carousel] {

  	.gallery {
  		visibility: hidden;
  		height: 0px;

  	}

  	//// Extend align wide
  	&.alignwide  {
  		.container {
  			max-width: $hd + 14px;
  		}
  	}

  }

  //// Slider
  &[data-style=slider] {
  	position: relative;
  	line-height: 0;

  	&.alignfull {
  		padding-left: 0;
  		padding-right: 0;
  	}

  	.gallery {
  		width: 100%;
  		@include aspect-ratio(4,3);
  		visibility: hidden;
  		height: 0px;

  		@include min(600px) {
  			@include aspect-ratio(16,9);
  		}

  	}

  	.container {
  		max-width: 100%;
  		background: #000;
  		overflow: hidden;
  		border-radius: 3px;
  	}

  }*/
}
section.block-gallery .gallery {
  margin-bottom: 0;
}
section.block-gallery.alignwide .container {
  max-width: 1400px;
}
section.block-gallery[data-style=grid] {
  margin-bottom: -13px;
}
section.block-gallery[data-style=grid] .gallery {
  display: flex;
  flex-wrap: wrap;
}
section.block-gallery[data-style=grid] .gallery a {
  width: calc(50% - 5px);
}
section.block-gallery[data-style=grid] .gallery a:nth-child(n) {
  margin-bottom: 10px;
  margin-right: 10px;
}
section.block-gallery[data-style=grid] .gallery a:nth-child(2n) {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  section.block-gallery[data-style=grid] .gallery a {
    width: calc(33.3333333333% - 8.6666666667px);
  }
  section.block-gallery[data-style=grid] .gallery a:nth-child(n) {
    margin-bottom: 13px;
    margin-right: 13px;
  }
  section.block-gallery[data-style=grid] .gallery a:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 992px) {
  section.block-gallery[data-style=grid] .gallery a {
    width: calc(25% - 9.75px);
  }
  section.block-gallery[data-style=grid] .gallery a:nth-child(n) {
    margin-bottom: 13px;
    margin-right: 13px;
  }
  section.block-gallery[data-style=grid] .gallery a:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  section.block-gallery[data-style=grid] .gallery a {
    width: calc(20% - 10.4px);
  }
  section.block-gallery[data-style=grid] .gallery a:nth-child(n) {
    margin-bottom: 13px;
    margin-right: 13px;
  }
  section.block-gallery[data-style=grid] .gallery a:nth-child(5n) {
    margin-right: 0;
  }
}
section.block-gallery[data-style=slider].alignfull {
  padding-left: 0;
  padding-right: 0;
}
section.block-gallery a {
  display: block;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  border-radius: 3px;
}
section.block-gallery a:before {
  content: "";
  float: left;
  padding-bottom: 81.25%;
}
section.block-gallery a:after {
  content: "";
  display: table;
  clear: both;
}
section.block-gallery a img {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: all 0.5s ease;
  z-index: 5;
}
section.block-gallery a:hover img {
  transform: scale(1.1);
  transform-style: preserve-3d;
}
section.block-gallery.captions .swiper-pagination {
  bottom: 35px;
  left: 0;
}
section.block-gallery.captions .caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 6;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
  padding: 0 10px;
  box-sizing: border-box;
}
section.block-gallery.captions .caption p {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/*# sourceMappingURL=gallery.css.map */
