.location-list {
  border-top: 1px solid #eaeaea;
}
.location-list__item {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #eaeaea;
}
.location-list__item__thumbnail {
  width: 140px;
  margin-right: 30px;
}
.location-list__item__thumbnail img {
  display: block;
}
.location-list__item__title h4 {
  margin-bottom: 0;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.location-list__item__title p {
  margin-bottom: 0;
}
.location-list__item__title__count {
  font-size: 14px;
  color: rgb(50, 183, 117);
  font-weight: 600;
  letter-spacing: 2px;
}
.location-list__item__link {
  margin-left: auto;
}
.location-list__item__link a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.location-list__item__link a img {
  width: 50px;
  margin-left: 8px;
}

@media screen and (min-width: 768px) {
  .location-list-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    display: grid;
  }
}
.location-list-grid__item {
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.location-list-grid__item__thumbnail {
  width: 100%;
  margin-bottom: 20px;
}
.location-list-grid__item__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.location-list-grid__item__title h4 {
  margin-bottom: 0;
  font-size: 33px;
  line-height: 1.2;
  margin-bottom: 8px;
  text-align: center;
}

.artwork-list {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .artwork-list {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .artwork-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.artwork-list__filters {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .artwork-list__filters {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .artwork-list__filters > div {
    width: 25%;
  }
}
.artwork-list__filters > div input {
  width: 100%;
  height: 100%;
  padding: 20px !important;
  border: none;
}
.artwork-list__filters > div input:focus {
  border: none;
}
.artwork-list__filters > div .select-wrapper {
  position: relative;
  display: block;
}
.artwork-list__filters > div .select-wrapper:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 25px;
  pointer-events: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;
  transform: rotate(45deg);
}
.artwork-list__filters > div .select-wrapper select {
  border: none;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  appearance: none;
  padding: 20px 40px 20px 20px !important;
  position: relative;
  background-color: #f4f3f1 !important;
}
.artwork-list__filters > div button {
  width: 100%;
  height: 100%;
}
.artwork-list__filters__reset {
  margin: 0 auto 30px;
  display: block;
}
.artwork-list__item {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.artwork-list__item:hover {
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
}
.artwork-list__item__content {
  padding: 30px;
}
.artwork-list__item__content__infos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.artwork-list__item__content__infos * {
  line-height: 1;
}
.artwork-list__item__content__thumbnail {
  margin-bottom: 30px;
}
.artwork-list__item__content__thumbnail img {
  display: block;
}
.artwork-list__item__content__thumbnail a {
  display: block;
}
.artwork-list__item__content__fom-ids a {
  color: #32B775;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
}
.artwork-list__item__content__objects {
  color: #808080;
  text-transform: uppercase;
  font-size: 13px;
}
.artwork-list__item__content__title {
  font-size: 20px;
  line-height: 1.3;
}
.artwork-list__item__content__author {
  line-height: 1.2;
  font-size: 16px;
}

.top-100 {
  position: relative;
  top: -100px;
  background: white;
  padding-top: 24px;
}
@media screen and (min-width: 768px) {
  .top-100 {
    padding: 70px;
  }
}

.artwork-detail__top {
  padding: 24px;
  background-color: black;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .artwork-detail__top {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
@media screen and (min-width: 768px) {
  .artwork-detail__top__content {
    padding: 0 70px;
    margin-bottom: 90px;
  }
}
.artwork-detail__top__content h1 {
  font-family: "Metropolis", sans-serif;
  color: white;
  font-size: 33px;
  margin-bottom: 10px;
  line-height: 40px;
}
.artwork-detail__top__content a {
  color: #808080;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.artwork-detail__top__content__author {
  color: white;
  font-size: 20px;
  line-height: 30px;
}
.artwork-detail__top__content__author__description {
  color: #32B775;
}
.artwork-detail__top__gallery {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .artwork-detail__top__gallery {
    margin: 0 auto 100px;
  }
}
.artwork-detail__bottom {
  background-color: #F6F3EB;
}
@media screen and (min-width: 768px) {
  .artwork-detail__bottom {
    padding-top: 200px;
  }
}
.artwork-detail__bottom__content {
  background-color: white;
  padding: 24px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .artwork-detail__bottom__content {
    top: -400px;
    padding: 70px;
  }
}
.artwork-detail__bottom__content h3 {
  margin-bottom: 12px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .artwork-detail__bottom__content h3 {
    margin-bottom: 20px;
  }
}
.artwork-detail__bottom__content__block p {
  margin-bottom: 0;
}
.artwork-detail__bottom__content__block.abstract p {
  font-size: 15px;
}
.artwork-detail__bottom__content__block.bibliography ul {
  margin-left: 18px;
}
.artwork-detail__bottom__content__block.bibliography li {
  margin-bottom: 8px;
}
.artwork-detail__bottom__content__block:not(:last-child) {
  border-bottom: 1px solid #D6D7D8 !important;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .artwork-detail__bottom__content__block:not(:last-child) {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .artwork-detail__bottom__content__block__item {
    display: grid;
    grid-template-columns: 250px 1fr;
  }
}
.artwork-detail__bottom__content__block__item:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .artwork-detail__bottom__content__block__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.artwork-detail__bottom__content__block__item__label {
  margin-right: 10px;
  font-weight: 600;
}
.artwork-detail__bottom__content__block__links {
  margin-top: 40px;
}
.artwork-detail__bottom__content__block__links a {
  background-color: #1E2B25;
  color: white;
  width: fit-content;
  padding: 8px 15px;
  font-weight: 100;
  display: inline-block;
  margin-right: 30px;
  text-decoration: none;
  margin-bottom: 16px;
}
.artwork-detail .swiper {
  width: 100%;
  --swiper-navigation-size: 24px;
  --swiper-theme-color: white;
  --swiper-navigation-sides-offset: 20px;
}
@media screen and (min-width: 768px) {
  .artwork-detail .swiper {
    width: 768px;
  }
}

.swiper-slide.swiper-slide-next,
.swiper-slide.swiper-slide-active {
  max-height: none !important;
  height: auto !important;
}

@media screen and (min-width: 768px) {
  .artwork-list__pagination {
    display: block;
  }
}
.artwork-list__pagination__links {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.artwork-list__pagination__link {
  background-color: #55555e;
  color: white;
  padding: 6px 12px;
  font-weight: 100;
  text-decoration: none;
  margin: 0 5px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .artwork-list__pagination__link {
    padding: 8px 15px;
  }
}
.artwork-list__pagination__link:hover, .artwork-list__pagination__link.active {
  background-color: rgb(9.0410958904, 12.9589041096, 11.1506849315);
  color: white;
}
.artwork-list__pagination__info {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #808080;
}

@media screen and (min-width: 768px) {
  .fondohome {
    background-position-y: 109px;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .vc_empty_space {
    max-height: 30px;
  }
  #userInput {
    margin-bottom: 20px;
  }
  .fondohome {
    background-color: #F6F6EE;
    padding-top: 24px;
  }
  body .footer-hook-bottom-down,
  body .footerfinale {
    overflow: hidden !important;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
  }
}

/*# sourceMappingURL=style.css.map */
