.gallery {
  padding-bottom: 110px;
}

.gallery__top {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.gallery__btn {
  width: 181px;
  border-radius: 45px;
  height: 60px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.gallery__btn::after {
  display: none;
}

.gallery__btn:hover {
  border: 1px solid #2a58a7;
}

.gallery__btn img {
  margin-left: 12px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  justify-items: center;
  gap: 15px;
}

.gallery__grid img,
video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

@media screen and (max-width: 576px) {
  .gallery__btn {
    width: 159px;
    height: 55px;
    font-size: 14px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    padding-bottom: 80px;
  }
}
