.ch-grid {
    margin: 10px 0 10px 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: 125px;
    height: 125px;
    display: inline-block;
    margin: 5px;
}

.ch-item {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    cursor: default;
    box-shadow: 
        inset 0 0 0 0 rgba(200,95,66, 0.4),
        inset 0 0 0 3px rgba(255,255,255,0.6),
        0 1px 1px rgba(0,0,0,0.1);
    transition: all 0.4s ease-in-out;
}

.ch-img-Laurent { 
    background-image: url(../img/Laurent.png);
}

.ch-img-Frederic { 
    background-image: url(../img/Frederic.png);
}

.ch-img-Wijnand { 
    background-image: url(../img/Wijnand.png);
}

.ch-img-Xavier { 
    background-image: url(../img/Xavier.png);
}

.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: 11px;
    margin: 0 15px;
    padding: 32px 0 0 0;
    height: 55px;
    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: 10px 5px;
    font-style: italic;
    margin: 0 30px;
    font-size: 12px;
    border-top: 1px solid rgba(255,255,255,0.5);
}


.ch-item:hover {
    box-shadow: 
        inset 0 0 0 60px rgba(200,95,66, 0.4),
        inset 0 0 0 3px rgba(255,255,255,0.8),
        0 1px 2px rgba(0,0,0,0.1);
}

.ch-item:hover .ch-info {
    opacity: 1;
    transform: scale(1);    
}

.ch-item:hover .ch-info p {
    opacity: 1;
}

#about{
    text-align: justify !important;
}

#flickr > pre{
    background-color: black; 
    border: none ;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}