.fade-enter-active,
.fade-leave-active {
  transition: all 0.9s ease;
  overflow: hidden;
  visibility: visible;
  position: absolute;
  width: 100%;
  opacity: 1;
}

.fade-enter,
.fade-leave-to {
  visibility: hidden;
  width: 100%;
  opacity: 0;
}

.news_block {
  padding: 80px 119px 46px;
}
@media (max-width: 1600px) {
  .news_block {
    padding: 80px 16px 46px;
  }
}
@media (max-width: 767px) {
  .news_block {
    padding: 20px 0 16px;
  }
}
.news_block--header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .news_block--header {
    display: block;
    padding: 0 16px 16px;
  }
}
.news_block--title {
  position: relative;
  font-family: "Montserrat", Arial, sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 36px;
  line-height: 44px;
  color: #282B33;
}
@media (max-width: 1600px) {
  .news_block--title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 14px;
  }
}
.news_block--title span {
  position: relative;
  z-index: 1;
}
.news_block--title:before {
  z-index: 0;
  display: block;
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 64px;
  line-height: 78px;
  color: #EAEAEA;
}
@media (max-width: 1600px) {
  .news_block--title:before {
    font-size: 38px;
    line-height: 46px;
  }
}
.news_block--sections {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.news_block--sections.desktop {
  display: flex;
}
@media (max-width: 1280px) {
  .news_block--sections.desktop {
    display: none;
  }
}
.news_block--sections.mobile {
  display: none;
}
@media (max-width: 1280px) {
  .news_block--sections.mobile {
    display: block;
    min-width: 290px;
  }
}
@media (max-width: 767px) {
  .news_block--sections.mobile {
    min-width: auto;
  }
}
.news_block--sections__item {
  margin-left: 22px;
}
.news_block--sections__item:first-child {
  margin-left: 0;
}
.news_block--sections__link {
  display: block;
  padding: 12px 23px 13px;
  border: 1px solid #858585;
  box-sizing: border-box;
  font-family: "Montserrat", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  color: #858585;
}
.news_block--sections__link:active, .news_block--sections__link:focus {
  border: 1px solid #858585;
  color: #858585;
  text-decoration: none;
}
.news_block--sections__link.active, .news_block--sections__link:hover {
  border-color: #BF273A;
  color: #BF273A;
  text-decoration: none;
}
@media (max-width: 1600px) {
  .news_block--sections__link {
    font-size: 14px;
  }
}
.news_block--list.desktop {
  display: block;
}
@media (max-width: 767px) {
  .news_block--list.desktop {
    display: none;
  }
}
.news_block--list.mobile {
  display: none;
}
@media (max-width: 767px) {
  .news_block--list.mobile {
    display: block;
    max-height: 100vw;
  }
}
.news_block--list span {
  margin-top: 49px;
  display: grid;
  gap: 22.5px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  grid-template-areas: "a a a a" "a a a a";
}
@media (max-width: 1280px) {
  .news_block--list span {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "a a" "a a";
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .news_block--list span {
    margin-top: 17px;
    grid-template-areas: none;
    grid-template-columns: auto;
    grid-auto-rows: 271px;
  }
}
.news_block--list__item {
  background-size: cover;
  position: relative;
  mix-blend-mode: normal;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding-bottom: 100%;
}
@media (max-width: 767px) {
  .news_block--list__item {
    transition: all 0.3s ease-in-out;
  }
}
.news_block--list__item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: normal;
}
.news_block--list__content {
  padding: 0 33px 34px;
  z-index: 1;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  .news_block--list__content {
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 14px 14px;
  }
  .news_block--list__content:before {
    content: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    mix-blend-mode: normal;
  }
}
.news_block--list__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 767px) {
  .news_block--list__meta {
    position: relative;
  }
}
.news_block--list__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 14px 13px;
}
.news_block--list__label {
  margin-right: 16px;
}
.news_block--list__label a {
  display: block;
  padding: 5px 10px 5px;
  text-align: center;
  background-color: #BF273A;
  mix-blend-mode: normal;
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
}
.news_block--list__label a:hover {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 1600px) {
  .news_block--list__label a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .news_block--list__label a {
    font-size: 12px;
    line-height: 15px;
  }
}
.news_block--list__date {
  font-family: "Montserrat", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .news_block--list__date {
    font-size: 12px;
    line-height: 15px;
  }
}
.news_block--list__title {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .news_block--list__title {
    position: relative;
  }
}
.news_block--list__title a {
  font-family: "Montserrat", Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}
.news_block--list__title a:hover {
  color: #FFFFFF;
  text-decoration: none;
}
@media (max-width: 767px) {
  .news_block--list__title a {
    font-size: 13px;
    line-height: 16px;
  }
}
.news_block--list > .tns-outer > #mobileView_matches-mw > div {
  margin: 17px 0 0 !important;
}
.news_block--slider {
  max-height: 100vw;
}
.news_block .custom-select {
  position: relative;
  width: 100%;
  text-align: left;
  outline: none;
  height: 45px;
  line-height: 45px;
}
.news_block .custom-select .selected {
  padding-left: 1em;
  cursor: pointer;
  user-select: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: #858585;
  border: 1px solid #858585;
  box-sizing: border-box;
}
.news_block .custom-select .selected.open {
  border: 1px solid #ad8225;
  border-radius: 6px 6px 0 0;
}
.news_block .custom-select .selected:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 41px;
  height: 47px;
  border-left: 1px solid #858585;
  background-image: url("/local/resource/images/sp_portal_v2/arrow_select.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.news_block .custom-select .items {
  background-color: #fff;
  color: #858585;
  overflow: hidden;
  border-right: 1px solid #858585;
  border-left: 1px solid #858585;
  border-bottom: 1px solid #858585;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0 16px;
}
.news_block .custom-select .items div {
  cursor: pointer;
  user-select: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  padding: 17px 0;
}
.news_block .custom-select .items div.active {
  color: #BF273A;
}
.news_block .selectHide {
  display: none;
}

@media (max-width: 767px) {
  .news_block .slick-slide {
    padding: 0 4px;
    opacity: 0.5;
  }
  .news_block .slick-slide + .slick-active {
    padding: 0 4px;
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
