.grid-link {
    cursor: pointer;
}

.grid-outer {
    0;
    float: left;
}

.grid-thumb {
    width: 100%;
    padding: 0;
    position: relative;
    display: block;
    opacity: 0;
}
/* 이미지 호버 */
.section-wrap .grid-outer {
    position: relative;
    width: 100;
    border: 0;
}

.section-wrap .image {
    display: block;
    width: 100%;
    height: auto;
}

.section-wrap .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 0.2s ease;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.section-wrap .grid-outer:hover .overlay {
    opacity: 1;
}

.section-wrap .overlay .text {
/* 중앙정렬
    width: 80%;
    top: 50%;
    left: 50%;
    text-align: center;
*/
    top: 10%;
    left: 50%;
    width: 100%;
    padding-left: 40px;
    margin-top: 30px;
    text-align: left;
    color: #fff;
    font-size: 16px;
    position: absolute;
    
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    
    line-height: 22px;
}
.section-wrap .overlay .text h5 {
    font-size: 13px;
    border: 1px #fff solid;
    border-radius: 3em;
    padding: 6px 15px;
    background-color: transparent;
    display: inline-block;
    margin-bottom: 0;
    
}
.section-wrap .overlay .text h4 {
    margin-top: 8px;
    padding-top: 0;
    font-size: 22px;
    
}
/*
.section-wrap .overlay .text p {
    padding-top: 0;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 17px;
}
*/
/* 이미지 호버 마감 */
@media screen and (min-width:992px) {
    .grid-outer {
        width: 25%;
    }
    .grid-outer:nth-child(4n+1) {
        clear: left;
    }
}

@media screen and (max-width:991px) and (min-width:768px) {
    /*
	.grid-outer {width:33.33%;}
	.grid-outer:nth-child(3n+1) {clear:left;}
*/
    .grid-outer {
        width: 50%;
    }
    .grid-outer:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width:767px) and (min-width:481px) {
   
    
    .grid-outer {
        width: 50%;
    }
    .grid-outer:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width:480px) {
    .section-wrap {

    }
    .grid-outer {
        width: 100%;
        display: block;
    }
    .grid-outer:first-child {
        clear: none;
    }
/*
    .grid-thumb {
        width: 50%;
        padding: 28.12% 0 0 0;
        float: left;
    }
*/
}