/* NEWS */
.news-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: block;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 25px;
 /* border-bottom: 1px solid #eef1f3;  */
    padding-bottom: 25px;
}

.news-item .news-item__outer-img-wrap {
    padding: 0px 25px 0px 0px;
    position: relative;
}

.news-item .news-item__outer-img-wrap .news-item__img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    width: 175px;
    height: 175px;
    /*-webkit-transform: rotate(45deg);*/
    /*-ms-transform: rotate(45deg);*/
    /*transform: rotate(45deg);*/
    /*border: 2px solid #f68121;*/
    /*-webkit-border-radius: 3px;*/
    /*border-radius: 3px;*/
}

.news-item .news-item__outer-img-wrap .news-item__img-wrap img {
    /*-webkit-transform: rotate(-45deg);*/
    /*-ms-transform: rotate(-45deg);*/
    /*transform: rotate(-45deg);*/
    /*margin-top: -20px;*/
    /*margin-left: -20px;*/
    width: 100%;
    height: auto;
}

.news-item .news-item__outer-img-wrap .terminal-card__rhombus-wrap {
    left: 20px;
}

.news-item .news-item__text-content-wrap {
    width: -webkit-calc(100% - 160px);
    width: calc(100% - 0px);
    border: solid 30px;
    background-color: #f2f2f2;
    border: solid 30px;
    border-radius: 30px;
    border-color: #f2f2f2;
    margin-top: -120px;
    border-bottom: solid 70px;
    border-top: solid 130px;
    border-top-color: #f2f2f2;
    border-bottom-color: #f2f2f2;

}

.news-item .news-item__text-content-wrap .news-item__label {
    display: none;
    background-color: #014282;
    color: #ffffff;
    font-size: 11px;
    padding: 4px 2px;
    margin-bottom: 6px;
}

.news-item .news-item__head {
    display: block;
    color: #014282;
    font-size: -webkit-calc((100vw - 320px) / (1920 - 320) * (18 - 15) + 15px);
    font-size: calc((100vw - 320px) / (1920 - 320) * (18 - 15) + 15px);
    font-weight: 700;
    margin-bottom: 5px;
}

.news-item .news-item__head:hover {
    text-decoration: underline;
}

.news-item .news-item__date {
    font-size: -webkit-calc((100vw - 320px) / (1920 - 320) * (15 - 13) + 13px);
    font-size: calc((100vw - 320px) / (1920 - 320) * (15 - 13) + 13px);
    color: #000000;
    margin-bottom: 10px;
    background-color: #B6CFF5;
    border-radius: 30px;
    padding-left: 13px;
    padding-top: 3px;
    width: 100px;
}

.news-item .news-item__text {
    font-size: -webkit-calc((100vw - 320px) / (1920 - 320) * (15 - 13) + 13px);
    font-size: calc((100vw - 320px) / (1920 - 320) * (15 - 13) + 13px);
  /*  position: relative;  */
}

.news-item .news-item__text:after {
    content: '';
    height: 25px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(rgba(254, 254, 254, 0.01)));
    background: -webkit-linear-gradient(bottom, #ffffff, rgba(254, 254, 254, 0.01));
    background: linear-gradient(to top, #ffffff, rgba(254, 254, 254, 0.01));
}

.mainscreen__news-wrap .news-item .news-item__text:after {
    content: none;
}

.news__head {
    margin: 40px auto 0;
    color: #014282;
    text-align: center;
}

.news__btn {
    margin: 25px auto 0;
    width: 120px;
}

.mainscreen-news {
    background-color: #eef1f3;
    overflow: visible;
    border: 1px solid transparent;
}

.mainscreen-news .mainscreen__news-wrap {
    margin-top: 30px;
}

@media (max-width: 750px) {
    .mainscreen-news .news-item {
        width: 100%;
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        padding-left: 0;
    }

    .news-item .news-item__text-content-wrap {
        width: 100%;
    }

    .mainscreen-news .news-item__outer-img-wrap {
        margin-bottom: 30px;
    }
}