.catalog_in .title{
  text-align: center;
}
.catalog_items{
display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
    margin: 20px 0;
}
.catalog_item{
text-align: center;
}
.cat_btn {
  margin-top: 8px;
  border-radius: 60px;
  padding: 24px 64px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #197faf;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #fff;
  transition: 0.2s;
  border:none;
}
.cat_btn:hover {
  background-color: #fff;
  color: #000;
}
.catalog_item a{
      font-family: var(--second-family);
    font-weight: 700;
    font-size: 40px;
    color: #197faf;
    margin-bottom: 16px;
}
.list_single{

}
.list_single_item{
 margin-bottom: 30px;
}
.list_single_item_row{
display: flex;
  justify-content: space-between;   
  text-align: center;
font-size: 16px;
}
.list_single_item_row:first-child{
background: #197faf;
color:#fff;
}
.list_single_item_title{
border: 1px solid #197faf;
width: 25%;
padding: 5px;
}
.list_single_item_proizv{
border: 1px solid #197faf;
width: 20%;
padding: 5px;
}
.list_single_item_art{
border: 1px solid #197faf;
width: 20%;
padding: 5px;
}
.list_single_item_price{
border: 1px solid #197faf;
width: 15%;
padding: 5px;
}
.list_single_item_more{
border: 1px solid #197faf;
width: 20%;
display: flex;
justify-content: center;
align-items: center;
padding: 5px;
}
@media (max-width: 720px) {
.catalog_items{
display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
    margin: 20px 0;
}
.list_single_item_row{
  flex-wrap: wrap;
}
.list_single_item_row{
  font-size: 14px;
}
.list_single_item_row:first-child .list_single_item_more{
  display: none;
}
.list_single_item_more{
  width: 100%;
}
.list_single_item_title{
  width: 30%;
}
.list_single_item_proizv{
width: 25%;
}
.list_single_item_art{
width: 25%;
}
.list_single_item_price{
width: 20%;
}
}