.result-swiper {
  width: 100%;
  height: 500px;
  /* transform: translateY(-62px); */
}

.result-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#photoes .row {
  display: flex;
  flex-wrap: wrap;
}

#photoes .col {
  flex-basis: calc(100% / 3);
}

#photoes .col:first-child,
#photoes .col:nth-of-type(2) {
  flex-basis: 50%;
}

#photoes .col img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .result-swiper {
    margin-top: 4rem;
  }
}

@media screen and (max-width: 375px) {
  .result-swiper {
    transform: translateY(-43px);
    height: 200px;
  }
  #photoes .col:first-child,
  #photoes .col:nth-of-type(2),
  #photoes .col {
    flex-basis: 100%;
  }
  #photoes .col img {
    height: 100%;
  }
}