.common-banner .cover {
  background-image: url("../images/banner/catalog.png");
  background-position: right 60%;
  background-size: 100%;
  background-color: black;
}

.catalog-card {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
@media (max-width: 768px) {
  .catalog-card {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  }
}
.catalog-card a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background-color: white;
}
.catalog-card a .img-box {
  width: 100%;
  aspect-ratio: 1.41/1;
  position: relative;
}
.catalog-card a .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.catalog-card a .img-box button.download-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid white;
  outline: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  border-radius: 9px;
  padding: 15px;
  color: white;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: none;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .catalog-card a .img-box button.download-btn {
    font-size: 20px;
    padding: 12px;
    gap: 6px;
  }
  .catalog-card a .img-box button.download-btn svg {
    width: 24px;
    height: 24px;
  }
}
.catalog-card a p.caption {
  flex: 1;
  padding: 40px 40px;
  width: 100%;
  font-size: 22px;
  text-align: center;
  word-break: break-all;
  color: black;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .catalog-card a p.caption {
    font-size: 18px;
  }
}
.catalog-card:hover .img-box img {
  filter: brightness(0.3);
}
.catalog-card:hover .img-box button.download-btn {
  display: flex;
}
.catalog-card:hover p.caption {
  color: var(--blue-500);
}/*# sourceMappingURL=catalog.css.map */