.container{
    margin-top: 160px;
}

.container .title{
    font-size: 22px;
    padding: 60px 20px 40px 20px;
}

.container .main {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.container .item{
    width: 31.33%;
    margin: 20px 1% 20px 1%;
    background-color: #ffffff;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s linear, box-shadow 0.3s;
    -webkit-transition: transform 0.3s linear ,box-shadow 0.3s;
    -moz-transition:transform 0.3s linear ,box-shadow 0.3s;
    -o-transition: transform 0.3s linear ,box-shadow 0.3s;
    color: #000000;
    padding: 20px 0 20px 0;
}
.container .item:nth-of-type(2){

}

.container .item:hover{
    box-shadow: 0 0 4px #888888;
    transform: translate(0,-10px);
    -webkit-transform: translate(0,-10px);
    -moz-transform: translate(0,-10px);
    -o-transform: translate(0,-10px);
}

.more{
    background-color: #0074c2;
    color: #ffffff !important;
    width: 100px;
    height: 25px;
    line-height: 25px;
    border-radius: 5px;
    margin: auto;
}

.container .item>div:nth-of-type(1){
    padding: 20px 0 20px 0;
}
.container .item>div:nth-of-type(2)>p{
    padding: 5px 0 5px 0;
    text-transform: uppercase;
    font-size: 14px;
}
.container .item>div:nth-of-type(2)>p:last-child{
    color: #0f7cc6;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
}

@media screen and (max-width: 750px) {
    .container{
        margin-top: 60px;
    }
    .container .item{
        width: 48%;
        margin: 20px 1% 40px 1%;
    }
}
@media screen and (max-width: 415px) {
    .container .title{
        padding: 20px;
    }
    .container .item{
        height: auto;
        margin: 20px 1% 20px 1%;
    }
    .container .item>div:nth-of-type(1)>img{
        width: 60%;
    }
    .container .item>div:nth-of-type(2){
        padding: 0 10px 0 10px;
    }
    .container .item>div:nth-of-type(2)>p {
        font-size: 12px;
    }

    .container .item:hover{
        box-shadow: none;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
    }
}