.i-noslick{
  display: flex;
  position: relative;
}
.i-noslick .b-gallery__tile .b-gallery__link{
  /*display: none;*/
}
.i-noslick .b-gallery__link{
  height: 100%;
  background: red;
}
.i-noslick .b-gallery__link img{
  object-fit: cover;
  height: 100%;
}
.b-gallery__slide{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 !important;
}
.i-noslick .b-gallery__tile{
  width: calc(50% - 15px);
  height: calc((100% - 15px) / 2);
  overflow: hidden;
  /*flex-grow: 1;*/
}
.i-noslick .b-gallery__tile .b-gallery__link{
  display: block;
}
.b-gallery__slide--tile a{
  width: 100% !important;
}

.i-noslick .b-gallery__link--one{
  width: calc(100% - 15px);
  cursor: pointer;
}
.b-gallery__arrow--disabled{
  opacity: .5;
}

@media (max-width: 768px) {
  .i-noslick{
    flex-direction: column;
    align-items: center;
  }
  .i-noslick .b-gallery__link--one{
    height: calc(100% - 15px);
  }
}