.random_gallery > ul
{
  margin: 0;
  padding: 0;
}

.random_gallery > ul > li
{
  width: calc(50% - 7px);
  height: 115px;
  float: left;
  list-style: none;
  margin-right: 13px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 10px;
}

.random_gallery > ul > li:nth-child(2n)
{
  margin-right: 0;
}

.random_gallery > ul > li:nth-child(1),
.random_gallery > ul > li:nth-child(2)
{
  margin-top: 0;
}

.random_gallery > ul > li > a > img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s ease;
}

.random_gallery > ul > li > a:hover > img
{
  transform: scale(1.1);
}

.random_gallery_btn_link
{
  text-align: center;
  margin-top: 10px;
}

.random_gallery_btn_link a
{
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-1);
  text-decoration: none;
}

.random_gallery_btn_link a:hover
{
  border-bottom: 1px solid var(--color-1);
}

.random_gallery_empty
{
  margin-top: 20px;
}

.random_gallery_empty span
{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--color-1);
}
