/* PAGINATION */
:root {
  --post-list-paginator-font-regular: "larken", sans-serif;
  --post-list-paginator-font-bold: "larken", sans-serif;
  --post-list-paginator-color-hover: #1C2E3D;
  --post-list-paginator-text-color: #333333;
  --post-list-paginator-text-color-hover: #FFFFFF;
}

.pagination {
  width: 100%;
  padding-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 25px;
}

.pagination ul {
  width: auto;
  display: flex;
  column-gap: 10px;
  row-gap: 0;
  justify-content: center;
}

.pagination ul li {
  flex: 0 1 auto;
}

.pagination ul li a {
  color: var(--post-list-paginator-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-family: var(--post-list-paginator-font-regular);
  font-size: 16px;
  transition: all .5s ease;
}

.pagination ul li a.active {
  color: var(--post-list-paginator-text-color-hover);
  background: var(--post-list-paginator-color-hover);
  font-family: var(--post-list-paginator-font-regular);
}

.pagination ul li a.active:hover {
  color: var(--post-list-paginator-text-color-hover);
  background: var(--post-list-paginator-color-hover);
}

.pagination ul li a:hover {
  color: var(--post-list-paginator-text-color-hover);
  background: var(--post-list-paginator-color-hover);
}

a.next-arw span {
  display: block;
  width: 24px;
  height: 24px;
  background: url(./images/ico-pages-right.svg) no-repeat scroll right top;
  transition: all .5s ease;
}

a.next-arw:hover {
  opacity: 0.5;
}

a.prev-arw span {
  display: block;
  width: 24px;
  height: 24px;
  background: url(./images/ico-pages-left.svg) no-repeat scroll left top;
  transition: all .5s ease;
}

a.prev-arw:hover {
  opacity: 0.5;
}

.pagination ul li a span.lft {
  display: block;
  width: 24px;
  height: 24px;
  background: url(./images/ico-pages-left.svg) no-repeat scroll right top;
  transition: all .5s ease;
}

.pagination ul li a span.rgt {
  display: block;
  width: 24px;
  height: 24px;
  background: url(./images/ico-pages-right.svg) no-repeat scroll right top;
  transition: all .5s ease;
}

/* .pagination ul li a span:is(.lft, .rgt) {
  opacity: 0.5;
} */

.pagination ul li a.pagination__number_active {
  color: var(--post-list-paginator-text-color-hover);
  background: var(--post-list-paginator-color-hover)
}

/* end PAGINATION */



/* MAPA */
.multi-map {
  float: left;
  width: 100%;
  height: 60vh;
}

.multi-map .mapa-im {
  float: left;
  width: 36%;
  display: flex;
}

.multi-map .mapa-txt {
  float: right;
  width: 60%;
  margin-left: 4%;
}

.multi-map .img-det h2 {
  font-size: 16px;
  color: var(--post-list-paginator-text-color);
  font-family: var(--post-list-paginator-font-regular);
  line-height: 24px;
  margin-bottom: 5px;
}

.multi-map .img-det p {
  color: var(--post-list-paginator-text-color);
  font-family: var(--post-list-paginator-font-regular);
  margin-bottom: 10px;
  line-height: 18px;
  font-size: 12px;
  letter-spacing: inherit;
}

.multi-map .img-det h2 {
  font-family: var(--post-list-paginator-font-bold);
}

.multi-map .img-det a {
  letter-spacing: .5px;
  color: #282828;
  font-family: var(--post-list-paginator-font-regular);
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.multi-map .img-det a.ver-mas {
  border: 1px solid var(--post-list-paginator-color-hover);
  padding: 5px 10px;
}

.multi-map .img-det a:hover {
  /* color: #5f2d53; */
  border-bottom: 1px solid var(--post-list-paginator-color-hover);
}

.multi-map .img-det a.ver-mas:hover {
  background: var(--post-list-paginator-color-hover);
  color: var(--post-list-paginator-text-color-hover);
}