body {
  font-family: 'Roboto', sans-serif;
  background: #202020;
  position: relative;
}
.container {
  max-width: 1140px;
  padding: 0 16px;
  margin: 0 auto;
}
.section {
  padding: 64px 0;
}
.section__gallery {
  margin-bottom: 64px;
}
.section__gallery:last-child {
  margin-bottom: 0;
}
.h2 {
  font-family: 'Lora', serif;
  text-align: center;
  font-size: 48px;
  margin-bottom: 48px;
  color: #fff;
}
.gallery {
  position: relative;
}
.gallery__flex {
  height: 600px;
  display: flex;
}
.gallery__flex_column {
  flex-direction: column;
}
.gallery__item {
  flex: 1;
  transition: flex-grow 0.64s ease-in-out;
  min-height: 0;
  overflow: hidden;
}
.gallery__item:hover {
  flex: 16;
}
.gallery__item:hover img {
  transform: scale(1);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 1.6s ease-in-out;
  transform: scale(1.1);
}
