
 .imgblock {
    position: relative;
    display: inline-block;
}

.imgblock img {
    height: 200px; 
    width: 300px;
    border-radius: 10px;
}

.imgblock:hover { 
    height: 200px;
    width: 300px;
	
    border-radius: 10px;
    bottom:2px;
      right:2px;
}
.imgblock span {
    /*background: rgba(0,0,0,0.7); (полупрозрачность)*/
    background: #FFF;
    color: #fff;
    border-radius: 2px;
    position: absolute;
    right: 0;
    bottom: 4px;
    font-size: 12px;
    font-weight:bold;
    padding: 3px 5px;
}

.table-wrap {
    text-align: center;
    display: inline-block;
  background-color: #fff;
 
  color: #000;
}
 
 table {
    border: 1px solid #fff;
    width: 100%;
    margin:0;
    padding:0;
    border-collapse: collapse;
    border-spacing: 0;
  }
 
  table tr {
    border: 0px solid #ddd;
    padding: 5px;
  }
 
  table th, table td {
    padding: 10px;
    text-align: center;
    border-right: 0px solid #ddd;
  }
 
  table th {
    color: #fff;
    background-color: #000;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
  }
  
  @media screen and (max-width: 980px) {
  table {
    border: 0;
  }
  table thead {
    display: none;
  }
  table tr {
    margin-bottom: 10px;
    display: block;
    border-bottom: 0px solid #ddd;
  }
  table td {
    display: block;
    text-align: right;
    font-size: 10px;
    border-bottom: 0px dotted #000;
    border-right: 0px solid transparent;
  }
  table td:last-child {
    border-bottom: 0;
  }
  table td:before {
    content: attr(data-label);
    float: left;
    text-transform: uppercase;
    font-weight: bold;
  }
}