.news-block {
    padding: 60px 0 60px;
    position: relative;
    width: 1230px;
    margin: 0 auto;
    box-sizing: border-box;
}

.news-block:hover .news-slider__btn {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.news-block__title {
    font-size: 40px;
    margin-bottom: 60px !important;
}

.news-block__slider-list {
    width: 90%;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
}

.news-block__slider-item {
    width: 30%;
    position: relative;
}

.news-article {
    max-width: 100%;
    margin-right: 40px;
}

.news-article__img {
    width: 100%;
}

.news-article__img img {
    width: 100%;
    object-fit: cover;
}

.news-article__content {
    background-color: #fafafa;;
    padding: 40px;
}

.date {
    margin-bottom: 10px;
    color: var(--main-color);
    background: 0;
    line-height: 16px;
    font-size: 12px;
    text-align: left;
    font-weight: 500;
    letter-spacing: .4px;
    width: 100%;
}

.news-article__title {
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    letter-spacing: 0.2px;
    color:#000000;
}

.news-article__title:hover {
    color: var(--main-color);
}

.news-article__description {
    line-height: 24px;
    font-size: 12px;
    letter-spacing: .5px;
    margin: 0;
    color:#777;
}

.news-article__links {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50px);
    z-index: 20;
    display: flex;
    opacity: 1;
}

.news-article__link {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    background-color: transparent;
    margin-right: 10px;
    position: relative;
}

.news-article__link::before {
    position: absolute;
    font-size: 14px;
    color: #ffffff;
    font-family: 'FontAwesome';
    top: 7px;
    left: 13px;
}

.news-article__link--fullimg::before {
     content: "\f00e";
}

.news-article__link--viewmore::before {
    content: "\f0c1";
}

.news-article__link:hover {
    background-color: var(--main-color);
}

.news-slider__btn--left {
    top: 55%;
    left: 0;
}

.news-slider__btn--right {
    top: 55%;
    right: 50px;
}

.bg-fade-news {
    display: none;
	position: absolute;
    left: 0;
    width: calc(100% - 40px);
	top: 0;
	height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
}

.news-popup {
    width: 900px;
    height: 618px;
    background-color: transparent;
    border-radius: 5px;
    z-index: 60;
    position: absolute;
    left: 50%;
    transform: translateX(-450px);
    display: none;
}

.news-popup img {
    width: calc(100% - 20px);
    border-radius: 5px;
    border: 10px solid #ffffff;
}

.main-bg-fade {
    display: none;
	position: fixed;
    left: 0;
    width: 100%;
	top: 0;
	height: 100%;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.5);
}

.close-popup__btn {
    width: 30px;
    height: 30px;
    border: none;
    background: url(../images/close.png) top right no-repeat;
    margin-top: 10px;
    margin-left: 860px;
}

@media(max-width: 1200px) {
    .news-slider__btn--left {
        left: 5px;
        top: 56%;
    }
    .news-slider__btn--right {
        right: 5px;
        top: 56%;
    }
    .news-popup {
        width: 90%;
        height: auto;
        transform: translateX(-50%);
    }
    .close-popup__btn {
        margin-left: 90%;
    }
    .news-block {
        width: 90%;
    }
    .news-block__slider-list {
        width: 100%;
        margin-right: -20px;
    }
}
@media(max-width: 767px) {
    .news-block__slider-list {
        width: 100%;
        margin-right: 0;
    }
    .news-article {
        margin-right: 5px;
    }

    .news-article:hover .bg-fad {
         display: block;
    }

    .bg-fade-news {
        width: 100%;
    }
}
