.solution-list {
    margin: 60px auto 100px;
    max-width: 1300px;
    overflow: hidden;
}

.list-item {
    margin-bottom: 30px;
    background-color: #F8F8F8;
    overflow: hidden;
    display: -ms-flexbox;
display: flex;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-ms-flex-pack: justify;
justify-content: space-between;
}

.item-img {
    -ms-flex: none;
    flex: none;
    max-width: 410px;
}
.item-img img{
    transition: all .5s ease;
}
.item-img img:hover{
    transform: scale(1.025);
}
.item-text {
    -ms-flex: none;
    flex: none;
    width: calc(100% - 460px);
    padding: 50px 60px 50px 0;
}

.item-text h3 {
    font-size: 24px;
    font-weight: 900;
    color: #222222;
    position: relative;
    text-transform: capitalize;
    margin-bottom: 58px;
}
.item-text h3 a{
    color: #222222;
}
.item-text h3 a:hover{
    color: #21497C;
}

.item-text h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 10px;
    background-color: #F4B23E;
    position: absolute;
    bottom: -30px;
}

.item-text p {
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 400;
    color: #555555;
    line-height: 26px;
}

.item-text a.button {
    float: left;
    font-size: 16px;
    font-weight: 500;
    color: #F4B23E;
    line-height: 26px;
    border-bottom: 2px solid #F4B23E;
    transition: all .3s ease;
}
.item-text a.button:hover{
    transform: translateY(-0.5rem);
}

@media screen and (max-width: 1440px) {
    .solution-list{
        padding: 60px;
    }
    .item-img{
        width: 360px;
    }
    .item-text{
        width: calc(100% - 410px);
        padding: 40px 50px 40px 0;
    }
}
@media screen and (max-width: 1280px) {
    .solution-list{
        padding: 40px;
    }
    .item-img{
        width: 320px;
    }
    .item-text{
        width: calc(100% - 360px);
    }
}
@media screen and (max-width: 1024px) {
    .item-img{
        width: 280px;
    }
    .item-text{
        width: calc(100% - 310px);
        padding: 30px 40px 30px 0;
    }
}
@media screen and (max-width: 800px) {

    .solution-list{
        margin: 0;
        padding: 40px 20px;
    }
    .item-img{
        width: 100%;
    }
    .item-text{
        width: 100%;
        padding: 20px;
    }
    .item-text p{
        margin-bottom: 25px;
    }
}