@charset "utf-8";


.certification .title {
    font-weight: bold;
    color: #e56c6e;
    margin-bottom: 40px;
    margin-top: 5px;
    font-size: 24px;
    line-height: 33px;
}

.certification .title i {
    margin-right: 5px;
}

.certification .certification-list {
    display: flex;
    flex-wrap: wrap;
}

.certification .certification-list .items {
    width: 25%;
    padding: 0 8px 30px 0;
    box-sizing: border-box;
    text-align: center;
}

.certification .certification-list .items-border {
    position: relative;
    background: #fff;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    cursor: pointer;
}

.certification .certification-list .items-text {
    display: block;
    padding: 5px;
    background: #fff;
    color: #000;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.6;
}

.certification .certification-list .items-border .zoom-icon {
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 100;
    width: inherit;
    height: inherit;
    position: absolute;
    background-color: #000;
    background-position: 50%;
    background-repeat: no-repeat;
    filter: alpha(opacity=0);
    -webkit-backface-visibility: hidden;
    transition: all 0.4s ease-in-out;
    transform: scale(0);
}

.certification .certification-list .items-border:hover .zoom-icon {
    opacity: 0.4;
    transform: scale(1);
    filter: alpha(opacity=50);
}

@media screen and (max-width: 767px) {
    .certification .certification-list .items {
        width: 50%;
    }
}

@media screen and (max-width: 479px) {
    .certification .certification-list .items {
        width: 100%;
    }
}