:root {
  --blue: #0068B2;
  --black: #4A4A4A;
  --lightblue: #0095FF;
  --lightgray: #F2F2F2;
}

/* CSS galleoFilters */

#galleoFilters {
  display: flex;
  gap: 20px;
  margin: 30px 0 50px
}

.select-filter-block select {
  width: 200px;
  padding: 10px;
  border: 0;
  background: var(--lightgray);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: .6em;
  background-position: calc(100% - 1.3em) center;
  background-repeat: no-repeat
}

.select-filter-block select::-ms-expand {
  display: none;
}

@media only screen and (max-width: 768px) {

  #galleoFilters {
    flex-direction: column;
  }

  .select-filter-block select {
    width: 100%;
  }

}

/* End CSS galleoFilters */

/* CSS galleoList */

#galleoList {
  margin: 30px 0px
}

#galleoList.columns-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px
}

#galleoList.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px
}

#galleoList a {
  text-decoration: none
}

#galleoList.columns-2 .object_image, #galleoList.columns-3 .object_image {
  position: relative;
  margin: auto;
  overflow: hidden;
  width: 100%
}

#galleoList.columns-2 .object_image img, #galleoList.columns-3 .object_image img {
  object-fit: cover;
  display: block;
  width: 100%;
  border-radius: 0px;
  transition: all 0.5s;
  transform: scale(1)
}

#galleoList.columns-2 .object_image img {
  height: 300px;
}

#galleoList.columns-3 .object_image img {
  height: 200px;
}

#galleoList.columns-2 .object_image:hover img, #galleoList.columns-3 .object_image:hover img {
  transform: scale(1.15);
}

#galleoList .object_details {
  margin: 15px 0px
}

#galleoList .object_details h5.object_title {
  color: var(--blue);
  font-size: 1.15em;
  line-height: 1.4em;
  font-weight: bold;
  margin: 0 0 5px
}

#galleoList .object_details h5.object_title:hover {
  color: var(--lightblue);
}

#galleoList .object_details p.object_country {
  color: var(--black);
  margin: 0
}

@media only screen and (max-width: 768px) {

  #galleoList.columns-2, #galleoList.columns-3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  #galleoList.columns-2 .object_image img, #galleoList.columns-3 .object_image img {
    height: auto;
  }

}

/* End CSS galleoList */

/* CSS latestGalleoObjects */

#latestGalleoObjects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 30px 0px
}

#latestGalleoObjects a {
  text-decoration: none
}

#latestGalleoObjects .object_image {
  position: relative;
  margin: auto;
  overflow: hidden;
  width: 100%
}

#latestGalleoObjects .object_image img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 200px;
  border-radius: 0px;
  transition: all 0.5s;
  transform: scale(1)
}

#latestGalleoObjects .object_image:hover img {
  transform: scale(1.15);
}

#latestGalleoObjects .object_details {
  margin: 15px 0px
}

#latestGalleoObjects .object_details h5.object_title {
  color: var(--blue);
  font-size: 1.15em;
  line-height: 1.4em;
  font-weight: bold;
  margin: 0 0 5px
}

#latestGalleoObjects .object_details h5.object_title:hover {
  color: var(--lightblue);
}

#latestGalleoObjects .object_details p.object_country {
  color: var(--black);
  margin: 0
}

@media only screen and (max-width: 768px) {

  #latestGalleoObjects {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  #latestGalleoObjects .object_image img {
    height: auto;
  }

}
.object_image { position: relative; }
.object_image a { position: relative; }
.bron {
    position: absolute;
    bottom: 5px;
    color: #fff;
    right: 10px;
    font-size: 9px;
}
