.table-wrap {
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 600px) {
  .table-wrap {
    overflow-y: scroll;
  }
}

@media(max-width: 800px) {
        /* Скрываем заголовки таблицы*/
        table thead {
        left: -9999px;
        position: absolute;
        visibility: hidden;
    }
    table tr {
        border-bottom: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    table td {
        border: 1px solid;
        margin: 0 -1px -1px 0; /* объединяем границы ячеек */
        width: 50%;
    }
	
	.title {
		text-align:center;
		font-size: 24px;
	}
}