/*
@font-face {
  font-family: 'PT Sans Narrow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ptsansnarrow/v17/BngRUXNadjH0qYEzV7ab-oWlsYCB.ttf) format('truetype');
}*/



/*
*,
::before,
::after {
  box-sizing: border-box;
}
body {
  /*font-family: "PT Sans Narrow", sans-serif;
  font-weight: 400;*/
/*}
a {
  color: lightgray;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}*/
img {
  width: auto;
  max-width: 100%;
}
.container {
  /*max-width: 1320px;*/
  margin: 0 auto;
  padding: 0 5px;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  padding: 0px 0;
}
.gallery__item {
  flex: 0 1 calc(1290px / 3);
  padding: 0 10px;
  margin-bottom: 20px;
}
.gallery__item > figure {
  transition: 0.3s ease-in-out;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.06)) no-repeat 0 0;
  background-size: 35%;
  padding: 14px 0 14px 20px;
  margin-top: 50px;
}
.gallery__item > figure:hover .gallery__image::after {
  transform: rotateZ(0deg);
  opacity: 1;
}
.gallery__item > figure:hover .gallery__btns {
  opacity: 1;
}
.gallery__image {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1px;
  padding: 10px;
  margin-top: -50px;
  transition: 0.3s ease-in-out;
}
.gallery__image::after {
  content: '';
  background: rgba(21, 21, 21, 0.4);
  position: absolute;
  top: 16px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  opacity: 0;
  transform: rotate(50deg);
  transition: 0.5s ease-in-out;
}
.gallery__image img {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.gallery__image .gallery__btns {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.gallery__image .gallery__btns > a {
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 10px;
  text-align: center;
  padding: 12px 40px;
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.14rem;
  border: 1px solid white;
}
.gallery__image .gallery__btns > a::after {
  content: '';
  position: absolute;
  left: -200%;
  top: -50%;
  width: 150%;
  height: 200%;
  z-index: -1;
  transform: skew(-45deg);
  background: white;
  transition: 0.7s all;
}
.gallery__image .gallery__btns > a:hover::after {
  left: -30%;
}
.gallery__image .gallery__btns > a:hover {
  color: #333;
}
.gallery__image .gallery__btns > a:last-child {
  margin-bottom: 0;
}
.gallery__description {
  padding: 8px 14px 9px;
  margin-left: 36%;
  font-size: 14px;
  position: relative;
  top: 13px;
  max-width: 250px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1px;
}
.gallery__description h4 {
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02rem;
}
.gallery__description span {
  color: #0072c4;
}