h1{
    background: linear-gradient(180deg, #15B4AA 59.31%, #148982 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 35px;
    font-weight: 700;
    padding: 0 15px;
    position: relative;
}
@media (max-width: 1920px) {
.home_news{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
}
@media (max-width: 950px) {
    .home_news {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
        text-align: center;
    }
}
@media (max-width: 650px) {
    .home_news {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
        text-align: center;
    }
}
.home_news{
    position: relative;
}
.home_news .name{
    font-weight: 700;
    color: #212122;
    font-size: 21px;
    line-height: 30px;
    padding: 20px 10px;
    margin-top: -20px;
    background: #fff;
    position: relative;
    z-index: 1;
    width:94%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: -moz-left;
    text-align: -webkit-left;
    text-align: left;
}
.home_news p{
    font-size: 16px;
    color: #727272;
    font-weight: 700;
}
.home_news .img{
    height: 370px;
    overflow: hidden;
    position: relative;
}
.home_news .container{
    position: relative;
    z-index: 2;
}
.home_news .img img{
    height: 100%;
}
#stream-paging{
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#stream-paging li{
    margin-right: 17px;
}
#stream-paging a{
    width: 53px;
    height: 53px;
    border: 1px solid #CACDCD;
    background: #FFF;
    color: #212122;
    font-size: 16px;
    font-weight: 700;
    line-height: 53px;
    text-align: center;
    display: block;
}
#stream-paging .active a{
    background: #15B8AE;
    border: none;
    color: #fff;
}