.link {
  display: inline-block;
  font-weight: 600;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  position: relative;
  color: #fff;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.link::before {
  display: inline-block;
  position: absolute;
  top: 8px;
  left: -24px;
  content: ' ';
  height: 6px;
  width: 6px;
  border: 1px solid #fff;
  border-right: none;
  border-bottom: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 3;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.link::after {
  display: inline-block;
  position: absolute;
  top: 8px;
  left: -16px;
  content: ' ';
  height: 6px;
  width: 6px;
  border: 1px solid #fff;
  border-right: none;
  border-bottom: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 3;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.link:hover.link {
  color: #D66F50;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.link:hover.link::before {
  border-color: #D66F50;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.link:hover.link::after {
  border-color: #D66F50;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.h3 {
  font-weight: 900;
  font-size: 20px;
  line-height: 130%;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1720px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 978px;
  }
}

main {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

main::after {
  content: "";
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  background-repeat: no-repeat;
  width: 1430px;
  height: 1430px;
  position: absolute;
  top: -542px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

main::before {
  content: "";
  background-image: url(../img/grain.png);
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 12%;
}

.breadcrumbs {
  position: relative;
  color: #B8B8B8;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 24px;
  z-index: 5;
}

.post {
  padding-top: 210px;
  position: relative;
  z-index: 3;
}

.post__back {
  position: relative;
  z-index: 4;
  margin-bottom: 56px;
  display: inline-block;
  margin-left: 26px;
}

.post__bg {
  position: absolute;
  top: 110px;
  left: -220px;
  height: 991px;
  z-index: 4;
}

.post-top {
  margin-bottom: 110px;
  height: 660px;
  overflow: hidden;
  position: relative;
}

.post-top-wrapper {
  height: 660px;
  position: relative;
}

.post-top__img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
}

.post-top-wrap {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  padding: 32px 60px;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(44.19%, rgba(27, 27, 27, 0.8)), color-stop(111.24%, rgba(27, 27, 27, 0)));
  background: linear-gradient(0deg, rgba(27, 27, 27, 0.8) 44.19%, rgba(27, 27, 27, 0) 111.24%);
}

.post-top__title {
  margin-bottom: 30px;
}

.post-top__date {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #B8B8B8;
}

.post-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.post-content__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  margin-bottom: 24px;
}

.post__img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  max-height: 560px;
}

.post-wrap {
  margin-bottom: 100px;
}

.post-wrap-video {
  height: 596px;
  overflow: hidden;
  z-index: 6;
  display: inline-block;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: 100%;
  position: relative;
}

.post-wrap-video__img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}

.post-wrap-video__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(29, 29, 29, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border: none;
  cursor: pointer;
}

.post-wrap-video__play {
  margin-left: 4px;
  width: 30px;
  height: 34px;
}

.news {
  padding-bottom: 60px;
  padding-top: 100px;
  position: relative;
  z-index: 3;
}

.news-row {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  margin: 0 -16px;
  scrollbar-width: none; */
}

.news-row::-webkit-scrollbar {
  display: none;
}

.news-row .news-card {
  width: 400px;
  min-width: 400px;
  /* margin: 0 16px; */
}

@media (max-width: 1199px) {
  .post {
    padding-top: 170px;
  }

  .post__bg {
    height: 722px;
  }

  .news-card__img {
    /* min-height: 248px;
    max-height: 360px !important; */
    height: 247px;
  }

  .post-top-wrap {
    position: static;
    padding: 0;
    background: none;
  }

  .post-top__date {
    margin-bottom: 50px;
    display: inline-block;
  }

  .post-top__title {
    margin-bottom: 24px;
  }

  .post__back {
    margin-bottom: 28px;
  }

  .post-top {
    height: auto;
    margin-bottom: 60px;
  }

  .post-top-wrapper {
    position: relative;
    overflow: hidden;
    height: 376px;
  }

  .post__img {
    height: 376px;
  }

  .post-content {
    display: inline-block;
    margin-bottom: 60px;
  }

  .post__img {
    margin-bottom: 60px;
  }

  .post-wrap {
    margin-bottom: 0;
  }

  .post-wrap-video {
    margin-bottom: 60px;
    height: 512px;
  }

  .news {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .h2 {
    font-size: 24px;
  }

  .post__bg {
    height: 610px;
    top: -80px;
  }

  .news-card__img {
    height: 247px;
  }

  .news {
    padding-top: 50px;
  }
}

@media (max-width: 600px) {
  .post__bg {
    height: 518px;
    top: 30px;
  }
}

@media (max-width: 576px) {
  .post {
    padding-top: 150px;
  }

  .post-top-wrapper {
    height: 190px;
  }

  .post__img {
    height: 328px;
    margin-bottom: 32px;
  }

  .post-wrap-video {
    height: 328px;
    margin-bottom: 32px;
  }

  .post-top {
    margin-bottom: 32px;
  }

  .h2 {
    font-size: 24px;
  }

  .article {
    font-size: 14px;
  }

  .post-content__title {
    font-size: 18px;
  }

  .post-content__title {
    margin-bottom: 16px;
  }

  .post-content {
    margin-bottom: 32px;
  }

  .news {
    padding-top: 50px;
  }
}

@media (max-width: 480px) {
  .post__bg {
    height: 474px;
  }

  .post {
    padding-top: 120px;
  }
}

@media (max-width: 425px) {
  .regular {
    font-size: 16px;
  }

  .h2 {
    font-size: 20px;
  }

  .news__link {
    display: none;
  }

  .post__bg {
    height: 300px;
    left: -78px;
  }

  .news-card__img {
    height: 282px;
  }

  .post-content__title {
    font-size: 16px;
  }

  .post-top__date {
    margin-bottom: 40px;
  }

  .post-top__title {
    margin-bottom: 16px;
  }

  .post-top {
    margin-bottom: 24px;
  }

  .post__img {
    margin-bottom: 24px;
  }

  .post-content {
    margin-bottom: 24px;
  }

  .post-top-wrapper {
    height: 168px;
  }

  .post__img {
    height: 168px;
  }

  .post-wrap-video {
    height: 184px;
  }

  .news {
    padding-top: 40px;
  }

  .news-card__img {
    height: 262px !important;
  }

  main::after {
    display: none;
  }

  main::before {
    display: none;
  }
}

@media (max-width: 1200px) {
  .news-row .news-card {
    width: 300px;
    min-width: 300px;
    /* margin: 0 10px; */
  }

  .news-row {
    margin: 0 -10px;
  }
}

/*# sourceMappingURL=post.css.map */