#section_3 {
    padding-bottom: 80px;
}


.s3_box {
    float: left;
    width: 100%;
    height: 350px;
    box-sizing: border-box;
    position: relative;
    transition-duration: 0.5s;
    margin-bottom: 30px;
}

.s3_in {
    float: left;
    width: 100%;
    overflow: hidden;
    text-align: center;
    position: absolute;
    bottom: 35px;
    left: 0;
    z-index: 100;
}

.s3_in a {
    float: left;
    width: 100%;
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
}

.s3_in img {
    width: 100px;
    margin: 0 auto;
    float: none;
    display: none;
    padding-bottom: 60px;
} 

.s3_box:hover {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

#cover1,
#cover2 {
    background-color: #3c3c3c;
}

.s3_box:hover #cover1 {
    background-color: #db5454;
    opacity: 1;
}

.s3_box:hover #cover2 {
    background-color: #2f2f2f;
    opacity: 1;
}

.s3_box:hover .s3_in img {
    display: block;
}

@media all and (max-width:1024px) and (min-width:760px){
    .s3_box{
        height: auto;
    }
    
    .s3_in{
        bottom: 200px;
    }
    
    .s3_in img{
        width: 240px;
    }
    
    .s3_in a{
        font-size: 90px;
    }
}
