@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.css");
@import url("https://fonts.googleapis.com/css?family=Ubuntu&display=swap&subset=cyrillic");

body {
  font-family: 'Ubuntu', sans-serif;
  color: #333333;
}

.page-title {
  font-size: 34px;
  margin-top: 50px;
}

.page-title.-hidden {
  display: none;
}

.page-subtitle {
  font-size: 28px;
  margin-top: 50px;
}

.container {
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

.preview-wrapper {
  height: 310px;
  position: relative;
  pointer-events: none;
  margin-bottom: 5px;
  overflow: hidden;
}

.preview-wrapper.-wip:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "WORK IN PROGRESS";
  background: rgba(255, 255, 255, .4);
  color: #000;
  font-size: 28px;
  font-weight: bold;
}

.preview {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: scale(.3) translate(-167%, -167%);
  display: block;
  width: 1280px;
  height: 1024px;
  overflow: hidden;
  transition: all 300ms ease;
}

.item-link {
  display: block;
  text-decoration: none;
  color: #5197e1;
  text-align: center;
}

.item-link:hover .preview {
  left: 150%;
  top: 150%;
  transform: scale(.5) translate(-167%, -167%);
}

.list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.item {
  flex: 0 1 33%;
  box-sizing: border-box;
  padding: 20px;
}
