/* подключение палитры цветов */
@import url("../css/colors.css");

/* блокирую возможность скачивания картинок */
.locked {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;

  margin: 1px;
}

.section-gallery {
  margin: 0px 0px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.gallery-column {
  width: 25%;
  display: flex;
  flex-direction: column;
}
.gallery-title,
.gallery-title h2 {
  margin: 0px;
  padding-bottom: 50px;
  text-align: center;

  font-family: "FixelDisplay-Bold";
  font-size: 32px;
  color: var(--dark-blue);
}

/* /////////////////////////////// */
/* ///////////   MEDIA   ///////// */
/* /////////////////////////////// */

/* iPad */
@media screen and (max-width: 1212px) {
  .gallery-title h2 {
    padding-bottom: 25px;
  }
}

/* iPhone */
@media screen and (max-width: 820px) {
  .gallery-column {
    width: 50%;
  }
  .gallery-title h2 {
    padding-bottom: 10px;
  }
}
