#big-picture {
    padding: 15px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    overflow: auto;
    width: 100%;
    background: #121213;
    zoom: 1;
    font-size: 13px;
}

.abs,
#big-picture h2:after,
.cards .card figcaption,
.cards .card:after,
.news .card figcaption,
.news .card:after,
.news .article figcaption {
  position: absolute;
}
.rel,
#big-picture h2,
#big-picture h2 strong,
.cards .card,
.news .card,
.news .article {
  position: relative;
}
.fix {
  position: fixed;
}
.dfix {
  display: inline;
}
.dib {
  display: inline-block;
}
.db {
  display: block;
}
.dn {
  display: none;
}
.df,
.cards,
.news {
  display: flex;
}
.dif {
  display: inline-flex;
}
.dg {
  display: grid;
}
.dig {
  display: inline-grid;
}
#big-picture {
  padding: 15px;
}
#big-picture h2 {
  padding: 10px;
  padding-left: 25px;
  color: #ccc;
  margin: 0;
}
#big-picture h2 strong {
  z-index: 2;
  background: #121213;
  padding: 4px 8px;
}
#big-picture h2 span {
  font-size: 0.7em;
  color: #aaa;
  margin-left: 10px;
}
#big-picture h2:after {
  content: '';
  z-index: 1;
  bottom: 50%;
  margin-bottom: -2px;
  height: 2px;
  left: 0;
  right: 0;
  background: #373d47;
}
#big-picture .cards,
#big-picture .news {
  flex-flow: row wrap;
}
#big-picture .cards .card,
#big-picture .news .card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    margin: 20px;
    min-width: 240px;
    max-width: 440px;
    flex: 1;
    height: 270px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0,0,0,0.8);
    transform-origin: center top;
    transform-style: preserve-3d;
    transform: translateZ(0);
    transition: 0.3s;
    zoom: 1;
    padding: 0;
    font-family: Cyber;
    font-size: 30px;
}
@media (max-width: 768px) {
  #big-picture .cards .card,
  #big-picture .news .card {
      width: 100%;
  }
}
.cards .card > img,
.news .card > img {
/*  width: 100%;*/
  min-height: 100%;
}
.cards .card figcaption,
.news .card figcaption {
left: 0;
    right: 0;
    padding: 20px 10px;
    color: #fff;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    position: absolute;
    height: fit-content;
    font-size: 22px;
/*    max-width: 200px;*/
    word-wrap: break-word;
    padding-bottom: 22px;
    background: #00000063;
}
.cards .card:after,
.news .card:after {
  content: '';
  z-index: 10;
  width: 200%;
  height: 100%;
  top: -90%;
  left: -20px;
  opacity: 0.1;
  transform: rotate(45deg);
  background: linear-gradient(to top, transparent, #fff 15%, rgba(255,255,255,0.5));
  transition: 0.3s;
}
.cards .card:hover,
.news .card:hover,
.cards .card:focus,
.news .card:focus,
.cards .card:active,
.news .card:active {
  box-shadow: 0 8px 16px 3px rgba(0,0,0,0.6);
  transform: translateY(-3px) scale(1.05) rotateX(15deg);
}
.cards .card:hover figcaption,
.news .card:hover figcaption,
.cards .card:focus figcaption,
.news .card:focus figcaption,
.cards .card:active figcaption,
.news .card:active figcaption {
  transform: none;
}
.cards .card:hover:after,
.news .card:hover:after,
.cards .card:focus:after,
.news .card:focus:after,
.cards .card:active:after,
.news .card:active:after {
  transform: rotate(25deg);
  top: -40%;
  opacity: 0.15;
}
.news .article {
  overflow: hidden;
  width: 350px;
  height: 235px;
  margin: 20px;
}
.news .article img {
  width: 100%;
  min-height: 100%;
  transition: 0.2s;
}
.news .article figcaption {
  font-size: 14px;
  text-shadow: 0 1px 0 rgba(51,51,51,0.3);
  color: #fff;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 40px;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
  background: rgba(6,18,53,0.6);
  opacity: 0;
  transform: scale(1.15);
  transition: 0.2s;
}
.news .article figcaption h3 {
  color: #3792e3;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: bold;
}
.news .article:hover img,
.news .article:focus img,
.news .article:active img {
  filter: blur(3px);
  transform: scale(0.97);
}
.news .article:hover figcaption,
.news .article:focus figcaption,
.news .article:active figcaption {
  opacity: 1;
  transform: none;
}

#big-picture input.search {
  width: 100%;
  max-width: 100%;
  border-radius: 5px;
  border-color: #373d46;
  margin-bottom: 17px;
  font-size: 19px;
  font-family: 'Cyber';
  padding-left: 20px;
  zoom: 1.1;
  color: #FFF;
}