.ch-item {
    border-radius: 50%;
    position: relative;
    cursor: default;
    margin: 20px auto;
    width: 20%;
    float: left;
}

.ch-info-wrap,
.ch-info {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.ch-info-wrap {
    background: rgba(255,255,255,.7);
    box-shadow: 0 0 0 5px rgba(218, 162, 49,.7), inset 0 0 3px rgba(115,114, 23, 0.8);
    margin: auto;
}

.ch-info > div {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-position: center center;
    -webkit-backface-visibility: hidden; /*Just for webkit to have a smooth font*/
}

.ch-info .ch-info-front {
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ch-info .ch-info-front h3 {
        font-size: 16px !important;
        color: #000;
    }
    .ch-info .ch-info-front h3 span{
        color:#000;
    }
.ch-info .ch-info-back {
    opacity: 0;
    background: #daa231;
    pointer-events: none;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: all 0.4s ease-in-out 0.2s;
    -moz-transition: all 0.4s ease-in-out 0.2s;
    -o-transition: all 0.4s ease-in-out 0.2s;
    -ms-transition: all 0.4s ease-in-out 0.2s;
    transition: all 0.4s ease-in-out 0.2s;
}

    .ch-info .ch-info-back h4 {
        color: #fff;
        font-size: 16px;
        margin-top: 40px;
    }

.ch-info h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    margin: 0 5px;
    padding: 30px 0 0 0;
    height: 80px;
    text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0,0,0,0.3);
}

.ch-info p {
    color: #fff;
    padding: 5px 5px 5px;
    font-style: italic;
}

    .ch-info p a {
        display: block;
        color: #fff;
        font-style: normal;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 9px;
        letter-spacing: 1px;
        padding-top: 4px;
    }

        .ch-info p a:hover {
            color: #fff;
        }

.ch-item:hover .ch-info-front {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
}

.ch-item:hover .ch-info-back {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

@media(max-width:1024px) {
    .ch-info-wrap, .ch-info {
        width: 120px;
        height: 120px;
    }
}

@media(max-width:767px) {
    .ch-item {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .ch-info-wrap, .ch-info {
        position: relative;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin: auto;
        margin-bottom: 30px;
    }

    .quicklinks-bg {
        min-height: inherit;
        text-align: center;
        height: auto;
        padding: 10px 0;
    }
}
