.news {
  padding-top: 100px;
}
@media screen and (max-width: 850px) {
  .news {
    padding-top: 50px;
  }
}
.news .container .title_and_link {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}
.news .container .title_and_link .receive_newsletter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news .container .title_and_link .receive_newsletter p {
  font-weight: 200;
  font-size: 14px;
  line-height: 105%;
  color: #afb0b8;
  transition: 0.3s;
}
.news .container .title_and_link .receive_newsletter p:hover {
  color: #cb1514;
}
.news .container .news_container .news_block {
  display: flex;
  row-gap: 40px;
  column-gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 850px) {
  .news .container .news_container .news_block {
    gap: 20px;
  }
}
.news .container .news_container .news_block .item {
  width: 563px; /* 415px */
  background: #fff;
  cursor: pointer;
  transition: all 0.4s;
  border-radius: 20px;
}
.news .container .news_container .news_block .item:hover .text_block .title {
  color: #cb1514;
}
.news .container .news_container .news_block .item .picture {
  height: 280px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.news .container .news_container .news_block .item .picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news .container .news_container .news_block .item .picture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(203, 21, 20, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.news .container .news_container .news_block .item .picture::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 2px solid #f8f9fb;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.news .container .news_container .news_block .item .text_block {
  padding: 40px 45px 50px;
}
@media screen and (max-width: 1250px) {
  .news .container .news_container .news_block .item .text_block {
    padding: 12px;
  }
}
.news .container .news_container .news_block .item .text_block .title {
  font-weight: 200;
  font-size: 20px;
  line-height: 140%;
  color: #0c0f29;
  margin-bottom: 30px;
  transition: 0.3s;
}
@media screen and (max-width: 850px) {
  .news .container .news_container .news_block .item .text_block .title {
    font-size: 16px;
  }
}
.news .container .news_container .news_block .item .text_block .date {
  font-weight: 200;
  font-size: 14px;
  line-height: 120%;
  color: #454f5b;
}
.news .container .news_container .news_block .item .text_block .date_label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news .container .news_container .news_block .item .text_block .date_label .label {
  font-weight: 200;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #0c0f29;
  padding: 3px 10px 5px;
  border-radius: 100px;
  width: max-content;
}
.news .container .news_container .news_block .item .text_block .date_label .label.label_smi {
  border: 1px solid #cdb81b;
}
.news .container .news_container .news_block .item .text_block .date_label .label.label_meetings {
  border: 1px solid #8a38f5;
}
.news .container .news_container .news_block .item .text_block .date_label .label.label_thanks {
  border: 1px solid #159ca1;
}
.news .container .news_container .news_block .item .text_block .date_label .label.label_events {
  border: 1px solid #009dff;
}
.news .container .news_container .news_block .item:hover .picture::after {
  opacity: 1;
}
.news .container .news_container .news_block .item:hover .picture::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.news .container .news_container .news_block .item:hover .picture .hover-icon {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(20px);
}
.news .container .news_container .news_block .item .picture .hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(-20px);
  width: 70px;
  height: 78px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3;
  pointer-events: none;
}
.news .container .news_container .news_block .item .picture .hover-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.news .container .news_container .news_block .item.big {
  width: auto;
}
.news .container .news_container .news_block .item.big .picture {
  height: auto;
}
@media screen and (max-width: 1450px) {
  .news .container .news_container .news_block {
    display: flex;
    flex-wrap: wrap;
  }
  .news .container .news_container .news_block .item {
    flex-basis: 320px;
    flex-shrink: 1;
    flex-grow: 1;
    width: 100%;
  }
  .news .container .news_container .news_block .item .picture {
    width: 100%;
    height: 280px;
  }
  .news .container .news_container .news_block .item .picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .news .container .news_container .news_block .item.big .picture {
    height: 280px;
  }
}
.news .container .button {
  display: block;
  width: max-content;
}
.news .news-full-description {
  display: none;
}
.news .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  visibility: hidden;
  transition: background-color 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}
.news .popup-overlay.active {
  background-color: rgba(0, 0, 0, 0.7);
  visibility: visible;
}
.news .popup-overlay.active .popup-content {
  transform: translateX(0);
}
.news .popup-content {
  width: 940px;
  max-width: 100%;
  height: 100vh;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  position: relative;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}
.news .popup-close {
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 90px;
  font-weight: 100;
  background: none;
  border: none;
  cursor: pointer;
  color: #afb0b8;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.news .popup-close:hover {
  color: #cb1514;
}
@media screen and (max-width: 850px) {
  .news .popup-close {
    font-size: 60px;
  }
}
.news .popup-body {
  padding: 80px 90px 80px 50px;
  position: relative;
}
.news .popup-navigation {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.news .popup-image {
  width: 100%;
  height: 400px;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 20px;
}
.news .popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .popup-title {
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 110%;
  letter-spacing: 0.03em;
  color: #0c0f29;
}
@media screen and (max-width: 650px) {
  .news .popup-title {
    font-size: 20px;
  }
}
.news .popup-date {
  font-weight: 200;
  font-size: 14px;
  line-height: 120%;
  color: #454f5b;
  margin: 30px 0;
}
.news .popup-full-text {
  font-weight: 200;
  font-size: 16px;
  line-height: 140%;
  color: #0c0f29;
  margin-bottom: 20px;
}
@media screen and (max-width: 650px) {
  .news .popup-full-text {
    font-size: 14px;
  }
}
.news .link_popup {
  font-weight: 400;
  font-size: 16px;
  line-height: 105%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  color: #cb1514;
  display: flex;
  justify-content: flex-end;
}
.news .link_popup:hover {
  color: #931310;
}
@media screen and (max-width: 850px) {
  .news .popup-content {
    width: 100%;
  }
  .news .popup-body {
    padding: 60px 30px 30px;
  }
  .news .popup-image {
    height: 300px;
  }
}
@media screen and (max-width: 650px) {
  .news .popup-body {
    padding: 40px 12px;
  }
}/*# sourceMappingURL=news.css.map */