.m-top {
  margin-top: 10rem !important;
}
.download-btn {
  background: linear-gradient(to right, #1db954, #3bb78f);
}

.pagination {
  display: flex;
  justify-content: center;
}
.pagination-ul {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 8px;
}
.pagination-ul a {
  background: linear-gradient(to right, #1db954, #3bb78f);

  color: #ffffff;
}

.img-container {
  position: relative;
}
.img-container img,
.modal-body img {
  /*width: 348px;*/
  height: 446px;
  object-fit: cover;
}
.img-container div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38px;
  margin: 0 auto;
  background: black;
  color: white;
  margin-bottom: 5px;
  font-family: sans-serif;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s, opacity 0.5s linear;
  transition: visibility 0s, opacity 0.5s linear;
}
.img-container:hover {
  cursor: pointer;
}

.img-container:hover div {
  width: 150px;
  padding: 8px 15px;
  visibility: visible;
  opacity: 0.7;
}
.btn-close {
  background: none;
  border: none;
}
.modal-body{
    display: flex;
    justify-content: center;
    padding:0!important;
}
.modal-body *{
    width:auto !important;
    height:auto !important;
}
