.home-banner{display:flex;margin:5px -10px 10px}
@media (min-width: 767px) {
    .home-banner {
    margin-left: 20px;
    margin-right: 20px;
    }
}
@media screen and (max-width: 767px) {
    .home-banner {
    margin:0px 0px 0px
    }
}
.home-banner > div{display:flex}
.home-banner__item{display:flex;align-items:center;flex:1 1 100%;margin:0 0 20px;padding:17px;border-radius:4px;transition: transform 0.3s;}
.home-banner__item:after{position:absolute;top:0;bottom:20px;left:10px;right:10px;content:'';/*background:rgba(0, 0, 0, .015);*/transform:scale(0);transition:all linear .15s}
.home-banner__item:hover{
    transform:scale(1.2)
}
.home-banner__item:hover:after{transform:scale(1)}
.home-banner__item.link{cursor:pointer}
.home-banner__icon{font-size:3em}
.home-banner__image{width:auto;height:auto;max-width:55px;max-height:55px}
.home-banner__text{display:flex;flex-direction:column;justify-content:space-evenly;height:100%;padding:0 0 0 15px;word-wrap:break-word}
.home-banner__text-1{margin:0 0 5px;font-weight:500;font-size:16px}
.home-banner__text-1.link{text-decoration:underline dotted}
@media screen and (max-width: 767px) {
    .home-banner__text-1 {
        font-weight: 400;
        font-size: 15px;
        font-family: verdana;
        text-align: center;
        color: #616161;
    }
    .home-banner__text-2 {
        display: none;
    }
    .home-banner__item {
        flex-direction: column;
    }
    .home-banner__icon {
        margin-bottom: 5px;
    }
}

