.ch-grid {
    margin: 20px 0 0 0;
    padding: 0;
/*    list-style: none;*/
/*    display: block;*/
    text-align: center;
    width: 100%;
}
 
/*.ch-grid:after,
.ch-item:before {
    content: '';
    display: table;
}
 
.ch-grid:after {
    clear: both;
}*/
 
.ch-grid li {
    width: 140px;
    height: 140px;
/*    float: right;*/
    display: inline-block;
    margin: 5px;
}
.ch-item {
    width: 100%;
    height: 100%;
/*    border-radius: 10%;*/
    position: relative;
    cursor: default;
    box-shadow:/**/
        inset 0 0 0 0 rgba(31,22,14, 0.4),
        inset 0 0 0 4px rgba(255,255,255,0.3),
        0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.4s ease-in-out;
    
    background-size: contain;
}
/*.ch-img-1 {
    background-image: url();
}
 
.ch-img-2 {
    background-image: url(../prog_img_file/img1.jpg);
}
 
.ch-img-3 {
    background-image: url(../prog_img_file/img1.jpg);
}*/
.ch-info {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    transform: scale(0);
    backface-visibility: hidden;
}
.ch-info h3 {
    color: #fff;
    text-transform: uppercase;
    position: relative;
/*    letter-spacing: 2px;*/
    font-size: 20px;
    margin: 0 15px;
    padding: 25px 0 0 0;
    height: 50px;
    font-family: 'Open Sans', Arial, sans-serif;

    text-shadow:
        0 0 1px #fff,
        0 1px 2px rgba(0,0,0,0.3);
}
 
.ch-info p {
    color: #fff;
    padding: 4px 4px;
/*    font-style: italic;*/
    margin: 0 20px;
    font-size: 12px;
    border-top: 1px solid rgba(255,255,255,0.5);
}
 
.ch-info p a {
/*    display: inline;*/
    
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 17px;
/*    letter-spacing: 1px;*/
/*    padding-top: 4px;*/
    font-family: 'Open Sans', Arial, serif;
}
.ch-info p a img{
  margin-right: 4px;
}
.ch-info p a:hover {
/*    color: rgba(255,242,34, 0.8);*/
}
.ch-item:hover {
    box-shadow:
        inset 0 0 0 110px rgba(31,22,14, 0.5),
        inset 0 0 0 7px rgba(255,255,255,0.4),
        0 1px 2px rgba(0,0,0,0.1);
}
.ch-item:hover .ch-info {
    opacity: 1;
    transform: scale(1);   
}
