.sections-list{
    overflow: hidden;
    padding-top: 30px;
}
.section-item{
    width: 45%;
    /*float: left;*/
    text-align: center;
    /*height: 250px;*/
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    position: relative;
}
.section-item a{
    text-decoration: none;
    font-size: 18px;
    font-style: italic;
    transition: all 0.2s;
    padding:10px 10px 30px;
    display: block;
    border:1px solid transparent;
}
.section-item a:hover{
    border:1px solid #999;
}
.section-item span{
    display: block;
    height: 200px;
    line-height: 200px;
    margin-bottom: 10px;
}
.section-item img{
    max-width: 95%;
    max-height:100%;
}
.new-icon{
    position: absolute;
    width: 90px;
    height: 25px;
    top: 12px;
    right: 10px;
    text-transform: uppercase;
    color: red;
    font-weight: bold;
    background: #fff;
}
@media screen and (max-width: 630px){
    .sections-list{
        display: flex;
        flex-wrap: wrap;
    }
    .section-item{
        flex: 0 0 50%;
        width: 50%;
    }
    .section-item a{font-size: 14px;}
    .section-item span{line-height: 110px;height: 100px;}
    .tabs-control span{font-size: 13px;}
}
@media screen and (max-width: 430px){
    .section-item{
        width: 100%;
    }
}