.other-pages {
  width: 100%;
  display: flex;
  justify-content: center;
  color: #ffffff;
  max-width: 1600px;
  margin: 3rem auto;
}
.other-pages .row {
  padding: 0;
  margin: 0;
  width: 100%;
}
.other-pages .cardPage {
    color:unset;
    display:block;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  height: 250px;
  transition: transform 0.2s linear;
}
.other-pages .cardPage:hover {
  transform: translateY(-10px);
}
.other-pages .cardPage img {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: scaleX(-1) translateY(-50%);
}
.other-pages .cardPage img.weight {
  left: -35%;
}
.other-pages .cardPage img.rope {
  left: 0;
}
.other-pages .cardPage .icon {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #111214;
  color: #ffffff;
  font-size: 13px;
  padding: 20px 25px;
  border-radius: 10px;
}
.other-pages .cardPage p {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 25px;
  font-weight: bold;
}
@media (min-width: 992px) {
  .other-pages .cardPage {
    height: 350px;
  }
  .other-pages .cardPage p {
    font-size: 35px;
  }
}
