  .grid_info_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    justify-items: center;
  }
  .info_card {
    color: white;
    padding: 0px;
    border-radius: 0.375rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 300px;
  }
  .info_card_img {
    border-radius: calc(0.375rem - 1px);
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size:  auto 100%;
    transition: all 0.5s ease;
  }
  .info_card_img:hover {
    background-size: auto 110%;
  }
  .info_card_img span {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 10px;
    border-radius: 0 0 calc(0.375rem - 1px) calc(0.375rem - 1px);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    text-shadow: 1px 1px black;
    font-size: 130%;
    transition: all 0.5s ease;
  }
  .info_card_img:hover span {
    background-color: rgba(0, 0, 0, 0.55);
  }


/*_____________ Инструкции _________________ */
.display-10 {
  font-size: 1.8rem;
  font-weight: normal;
}
.get_pdf {
background-color: #b30c00;
color: white;
text-decoration: none;
padding: 0.5rem 1rem;
display: inline-flex;
align-items: center;
border-radius: 6px;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
transition: all ease 0.35s;
}
.get_pdf:hover {
 background-color: #9f0400;
color: white;
text-decoration: none;
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
}
/*_____________ /Инструкции _________________ */