.mark-ints-rw {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px;
}
.int-card {
  background: #ffffff;
  border: 0.5px solid #eeeeee;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 32.4%;
  min-height: 280px;
  margin-bottom: 20px;
  padding: 25px;
  position: relative;
  transition: 0.3s;
}
.int-card:hover {
  background: rgba(106, 207, 246, 0.1);
  border: 0.5px solid #005198;
}
.mark-int-img {
  width: 80px;
  height: 80px;
  transition: width 0.3s;
}
.int-card:hover .mark-int-img {
  width: 40px;
  height: 40px;
}
.int-card a {
  display: block;
  z-index: 1;
  position: relative;
  height: 100%;
}
.int-card a::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: " ";
}
.int-card:hover .mark-int-head {
  color: #005198;
}
.int-card:hover .mark-int-text {
  color: #111111;
}
.mark-int-head {
  color: #111111;
  transition: 0.3s;
}
.mark-int-text {
  color: #333333;
  font-size: 14px;
  transition: 0.3s;
}
.mark-int-text-outer {
  max-height: 100px;
  overflow: hidden;
  transition: 0.5s;
  position: absolute;
  bottom: 0;
}
.int-card:hover .mark-int-text-outer {
  max-height: 155px;
}
.page-nav-container {
  width: 100%;
  text-align: center;
}
.page-nav-container .page-numbers,
.page-nav-container .wp-pagenavi a {
  color: #25054d;
  font-size: 18px;
  font-family: museo_sans900;
  margin-right: 10px;
}

.page-nav-container .current {
  color: #ef4277 !important;
  font-size: 18px;
  font-family: museo_sans900;
  margin-right: 10px;
}
.page-nav-container .page-numbers,
.page-nav-container .wp-pagenavi a {
  color: #25054d;
  font-size: 18px;
  font-family: museo_sans900;
  margin-right: 10px;
}
.mark-search {
  width: 40%;
  position: relative;
}
.mark-search input[type="text"] {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: unset;
  color: #fff;
  width: 100%;
  font-size: 24px;
}
.mark-search button {
  background: transparent;
  position: absolute;
  right: 2px;
  bottom: 12px;
}
.mark-search input[type="text"]::placeholder {
  color: #fff;
  opacity: 0.7;
}
@media only screen and (max-width: 900px) {
  .int-card {
    width: 100%;
  }
  .mark-search {
    width: 100%;
  }
}
