@font-face {
  font-family: "Aether";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/d1f4aaca_aether.latin.woff2") format("woff2");
}

@font-face {
  font-family: "Aether";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/b7cac872_aether.latin.woff2") format("woff2");
}

@font-face {
  font-family: "Helvetica W01";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/helvetica-w01-light.woff2") format("woff2");
}

@font-face {
  font-family: "Helvetica W01";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/helvetica-w01-roman.woff2") format("woff2");
}

@font-face {
  font-family: "Helvetica W01";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/helvetica-w01-bold.woff2") format("woff2");
}

@font-face {
  font-family: "DIN Next Light";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/eca8b0cd_din-next-w01-light.woff2") format("woff2");
}

@font-face {
  font-family: "BIAF Custom";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/file.woff2") format("woff2");
}

@font-face {
  font-family: "Helvetica Neue Bold";
  font-style: bold;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/HelveticaNeueCyr-Bold.woff2") format("woff2");
}

:root {
  --biaf-black: #000000;
  --biaf-white: #ffffff;
  --biaf-pink: #ff0085;
  --biaf-muted: #a19d98;
  --biaf-beige: #d6d1ca;
  --biaf-gray: #6b6965;
  --color_40: 211, 208, 205;
  --bg-overlay-color: rgb(var(--color_40));
  --font-display: "Helvetica Neue Bold", sans-serif;
  /*--font-display: "Aether", "Helvetica W01", Helvetica, Arial, sans-serif;*/
  --font-body: "Helvetica W01", Helvetica, Arial, sans-serif;
  --font-ui: "DIN Next Light", "Helvetica W01", Helvetica, Arial, sans-serif;
  --header-h: 171px;
  --content-w: 1757px;
  --pages-w: 1500px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--biaf-black);
  color: var(--biaf-beige);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(100% - 40px, var(--content-w));
  max-width: var(--content-w);
  margin-inline: auto;
}

.container--pages {
  width: min(100% - 40px, var(--pages-w));
  max-width: var(--pages-w);
}

.container-wide {
  width: min(100% - 40px, var(--content-w));
  max-width: var(--content-w);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: #000;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 32px;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 36px;
  min-width: 0;
  flex: 1;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.site-logo img {
  width: 157px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  min-width: 0;
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.menu a {
  color: var(--biaf-beige);
  font-size: 16px;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.menu a:hover,
.menu .active a {
  color: var(--biaf-pink);
}

.social-link--ig {
  color: var(--biaf-beige);
  display: inline-flex;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-link--ig:hover {
  color: var(--biaf-pink);
  transform: scale(1.06);
}

.social-link img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  opacity: 0.9;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-link:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--biaf-beige);
  margin: 6px 0;
  transition: 0.25s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown__handle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 72px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.lang-dropdown__chevron {
  display: inline-flex;
  color: #fff;
  transition: transform 0.2s ease;
}

.lang-dropdown.is-open .lang-dropdown__chevron {
  transform: rotate(180deg);
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 100%;
  padding: 6px 0;
  border-radius: 8px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 120;
}

.lang-dropdown__menu[hidden] {
  display: none;
}

.lang-dropdown__option {
  appearance: none;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: left;
  text-decoration: none;
  padding: 10px 14px;
  cursor: pointer;
  box-sizing: border-box;
}

.lang-dropdown__option:hover,
.lang-dropdown__option.is-active {
  color: var(--biaf-pink);
  background: rgba(255, 255, 255, 0.06);
}

.social-link--ig img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

/* Hero */

.hero__inner {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.hero__aside {
  justify-self: stretch !important;
  width: 100% !important;
  max-width: none !important;
}

.hero__dates {
  align-items: flex-end;
}

.hero__date {
  width: fit-content !important;
  text-align: left;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--biaf-black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../img/bg-main.png") right center / auto 100% no-repeat;
  opacity: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding: 170px 0 100px;
  min-height: 670px;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 80px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--biaf-white);
}

.hero__title span {
  display: block;
}

.hero__year {
  display: block;
  color: var(--biaf-pink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 80px;
  letter-spacing: 0.02em;
  margin-top: 18px;
  line-height: 1;
}

.hero__aside {
  justify-self: end;
  text-align: right;
  max-width: 640px;
  padding-bottom: 5px;
}

.hero__dates {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.hero__date {
  color: var(--biaf-white);
  font-size: 80px;
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 1.05;
  padding-bottom: 6px;
  width: fit-content;
  min-width: 320px;
}

.hero__dates .hero__date:first-child {
  border-bottom: 5px solid #FF0085;
}

.hero__badge {
  color: var(--biaf-muted);
  font-size: 70px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  line-height: 1.05;
}

.hero__lead {
  margin: 0;
  color: var(--biaf-pink);
  font-size: 70px;
  font-weight: 400;
  line-height: 1.05;
}

/* Mobile: title and dates occupy separate vertical zones. */
@media (max-width:575px) {
  .hero {
    min-height: 520px;
  }

  .hero__bg {
    background: url("../img/bg-main.png") right center / auto 100% no-repeat !important;
  }

  .hero__inner {
    display: block !important;
    position: relative !important;
    min-height: 520px !important;
    padding: 0 !important;
  }

  .hero__content {
    position: absolute !important;
    left: 22px !important;
    right: 22px !important;
    bottom: 42px !important;
    width: auto !important;
  }

  .hero__aside {
    position: absolute !important;
    top: 42px !important;
    right: 20px !important;
    width: 100% !important;
  }

  .hero__title, .hero__year {
    font-size: clamp(40px, 10vw, 48px) !important;
    line-height: .84 !important;
  }

  .hero__date {
    font-size: clamp(34px, 9.2vw, 40px) !important;
    white-space: nowrap;
  }

  .hero__badge {
    font-size: clamp(28px, 8vw, 35px) !important;
  }

  .hero__lead {
    font-size: clamp(28px, 8vw, 35px) !important;
  }

}

/* Final mobile hero layout: original black-left / blue-right composition. */
@media (max-width:991px) {
  .hero {
    min-height: 620px !important;
  }

  .hero__bg {
    background: radial-gradient(ellipse 90% 60% at 110% 12%, #66a8e9 0, #2a5a94 35%, rgba(10, 31, 59, .72) 54%, transparent 72%) !important;
  }

  .hero__inner {
    display: block !important;
    position: relative !important;
    min-height: 620px !important;
    padding: 0 !important;
  }

  .hero__content {
    position: absolute !important;
    left: 30px !important;
    right: 30px !important;
    bottom: 56px !important;
    width: auto !important;
  }

  .hero__aside {
    position: absolute !important;
    top: 52px !important;
    right: 30px !important;
    width: 100% !important;
  }

  .hero__date {
    white-space: nowrap;
  }

}

@media (max-width:575px) {
  .hero {
    min-height: 520px !important;
  }

  .hero__inner {
    min-height: 520px !important;
  }

  .hero__content {
    left: 22px !important;
    right: 22px !important;
    bottom: 42px !important;
  }

  .hero__aside {
    top: 42px !important;
    right: 20px !important;
    width: 56% !important;
  }

}

@media (max-width:991px) {
  .hero__aside {
    left: 38% !important;
    right: 30px !important;
    width: auto !important;
  }

  .hero__dates {
    align-items: stretch !important;
  }

  .hero__date {
    width: 100% !important;
  }

}

@media (max-width:575px) {
  .hero__aside {
    left: 38% !important;
    right: 20px !important;
    width: auto !important;
  }

  .hero__date .hero__lead {
    font-size: clamp(31px, 8.5vw, 38px) !important;
  }

}

/* Homepage hero — mobile composition: two independently aligned columns. */
@media (max-width:991px) {
  .hero__content {
    left: 7.5vw !important;
    right: auto !important;
  }

  .hero__aside {
    left: auto !important;
    right: 7.5vw !important;
    width: 56% !important;
    text-align: right !important;
  }

  .hero__dates {
    align-items: flex-end !important;
  }

  .hero__date {
    width: fit-content !important;
    min-width: 0 !important;
    align-self: flex-end !important;
    text-align: right !important;
  }

  .hero__badge, .hero__lead {
    width: 100% !important;
    text-align: right !important;
  }

}

/* Sections common */
.section {
  padding: 70px 0 90px;
}

.section-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--biaf-white);
  font-weight: 700;
}

.section-title--lined {
  display: block;
  padding-bottom: 18px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(214, 209, 202, 0.45);
}

.section-title--lined::after {
  display: none;
}

/* About */
.about {
  background: var(--biaf-black);
}

.about__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 48px;
  margin-bottom: 48px;
}

.about__col {
  flex: 0 1 300px;
  max-width: 300px;
}

.about__col p {
  margin: 0 0 16px;
  color: var(--biaf-beige);
  font-size: 18px;
  line-height: 1.55;
}

.about__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--biaf-pink);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.25s ease;
}

.about__link:hover {
  gap: 14px;
}

.about__gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.about__gallery-item {
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about__gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about__gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.about__gallery-item:nth-child(n + 6) img {
  height: 240px;
}

/* Venues */
.venues__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  gap: 28px 36px;
  justify-content: start;
}

.venue-card {
  max-width: 300px;
  width: 100%;
  text-align: left;
  color: inherit;
  display: block;
  cursor: default;
}

.venue-card__img {
  margin-bottom: 18px;
  overflow: hidden;
}

.venue-card__img img {
  width: 100%;
  /* aspect-ratio: 16 / 11; */
  aspect-ratio: 16 / 16;
  object-fit: cover;
  display: block;
}

.venue-card__title {
  margin: 0 0 12px;
  color: var(--biaf-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.venue-card__text {
  margin: 0;
  color: var(--biaf-beige);
  font-size: 17px;
  line-height: 130%;
}

.venue-card__text p {
  margin: 0 0 10px;
}

.venue-card__text p:last-child {
  margin-bottom: 0;
}

/* Volunteer */
.volunteer {
  background: var(--biaf-black);
}

.volunteer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 48px;
}

.volunteer__col {
  flex: 0 1 300px;
  max-width: 300px;
}

.volunteer__col p,
.volunteer__col li {
  color: var(--biaf-beige);
  font-size: 15px;
  line-height: 1.55;
}

.volunteer__col p {
  margin: 0 0 14px;
}

.volunteer__col.volunteer__col--lead,
.volunteer__col.volunteer__col--lead p,
.volunteer__col.volunteer__col--lead li {
  font-size: 29px;
}

.volunteer__col ul {
  margin: 0;
  padding-left: 18px;
}

.volunteer__col strong,
.volunteer__col b {
  color: var(--biaf-white);
}

.volunteer__status {
  color: var(--biaf-beige);
  font-weight: 700;
}

.form-header {
    margin: 0 auto;
    max-width: 1000px;
    padding: 30px;
    font-size: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form-header-logo {
    margin: 40px 0px;
}
.form-header__text-top {
    margin-bottom: 35px;
    text-align: center;
}
.form-header__text-bottom {
    display: flex;
    column-gap: 50px;
    row-gap: 20px;
    justify-content: space-between;
}
.form-header__text-left {
    max-width: 300px;
}
.form-header__text-left span {
    color: #FF0085;
    padding-top: 20px;
    display: block;
}
.form-header__text-right {
    max-width: 300px;
    opacity: 30%;
    font-size: 20px;
}
.form__body {
    max-width: 500px;
    background: #fff;
    margin: 0 auto;
}

/* Footer */
.site-footer {
  padding: 72px 0 48px;
  background: var(--bg-overlay-color);
  color: #111;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 220px minmax(320px, 520px) 1fr;
  gap: 48px 80px;
  align-items: start;
  min-height: 420px;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-nav a {
  color: #000;
  font-size: 20px;
  line-height: 1.35;
}

.footer-nav a:hover {
  color: var(--biaf-pink);
}

.social-link--footer {
  display: inline-flex;
  margin-bottom: 28px;
}

.social-link--footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
}

.site-footer__copy {
  margin-top: auto;
  color: #6b6965;
  font-size: 14px;
}

.footer-contacts__title {
  margin: 0 0 22px;
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.footer-contacts__item {
  margin-bottom: 18px;
}

.footer-contacts__item a {
  color: #000;
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contacts__item a:hover {
  color: #333;
}

.footer-contacts__item p {
  margin: 6px 0 0;
  color: #6b6965;
  font-size: 14px;
  line-height: 1.4;
  max-width: 360px;
}

.site-footer__brand {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: stretch;
}

.site-footer__brand img {
  width: min(100%, 280px);
  height: auto;
}


@media (max-width: 1200px) {
  .hero__title,
  .hero__year,
  .hero__date,
  .hero__badge,
  .hero__lead {
    font-size: clamp(36px, 5.5vw, 80px);
  }
}

@media (max-width: 991px) {
  .site-header {
    height: auto;
    min-height: 88px;
  }

  .site-header__inner {
    height: auto;
    min-height: 88px;
    padding: 16px 0;
  }

  .site-header__left {
    flex: 1;
  }

  .site-nav {
    position: fixed;
    inset: 88px 0 auto 0;
    background: rgba(0, 0, 0, 0.97);
    padding: 24px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .burger {
    display: block;
    order: 3;
  }

  .hero__inner,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__aside {
    justify-self: start;
  }

  .about__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .venues__list {
    grid-template-columns: repeat(2, minmax(0, 300px));
  }

  .site-footer__brand {
    justify-content: flex-start;
  }

  .site-footer__inner {
    min-height: 0;
  }
}

@media (max-width: 575px) {
  .venues__list {
    grid-template-columns: 1fr;
  }

  .about__gallery {
    grid-template-columns: 1fr;
  }

  .about__gallery-item img,
  .about__gallery-item:nth-child(n + 6) img {
    height: 200px;
  }
  
  .form-header {
        padding: 30px;
        font-size: 20px;
    }
    .form-header-logo {
        margin: 20px 0px;
    }
    .form-header__text-top {
        margin-bottom: 25px;
        text-align: center;
    }
    .form-header__text-bottom {
        row-gap: 20px;
        flex-direction: column;
    }
    .form-header__text-left span {
        color: #FF0085;
        padding-top: 20px;
        display: block;
    }
    .form-header__text-right {
        font-size: 18px;
    }
}

/* Program page */
.program-page {
  padding: 48px 0 96px;
  background: #000;
  color: #f4f4f4;
}

.program-page .container--program {
  width: min(100% - 40px, 980px);
  max-width: 980px;
  margin-left: max(20px, calc((100% - var(--content-w)) / 2));
  margin-right: auto;
}

.program-page__title {
  margin: 0 0 56px;
  font-family: var(--font-body);
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  color: #f4f4f4;
}

.program-event {
  padding: 0 0 56px;
  margin: 0 0 56px;
  border-bottom: 1px solid rgba(244, 244, 244, 0.25);
}

.program-event:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.program-event__video {
  margin: 0 0 20px;
}

.program-event__video video {
  display: block;
  width: 100%;
  max-height: 640px;
  background: #111;
}

.program-event__slider {
  margin: 0 0 36px;
}

.program-event__slider-main {
  margin: 0 0 14px;
  background: #111;
}

.program-event__slider-main img {
  display: block;
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}

.program-event__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.program-event__thumb {
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  padding: 0;
  border: 2px solid transparent;
  background: #111;
  cursor: pointer;
}

.program-event__thumb.is-active,
.program-event__thumb:hover {
  border-color: var(--biaf-pink);
}

.program-event__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-event__title {
  margin: 0 0 50px;
  font-family: var(--font-body);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: #f4f4f4;
}

.program-event__meta {
  margin: 0 0 20px;
  /* font-size: 18px; */
  line-height: 1.4;
  color: #f4f4f4;
  text-transform: none;
}

.program-event__meta-sep {
  margin: 0 8px;
  opacity: 0.7;
}

.program-event__tickets {
  display: inline-block;
  margin: 0 0 28px;
  padding: 10px 18px;
  border: 1px solid #f4f4f4;
  color: #f4f4f4;
  text-decoration: none;
  letter-spacing: 0.06em;
  font-size: 14px;
}

.program-event__tickets:hover {
  color: var(--biaf-pink);
  border-color: var(--biaf-pink);
}

.program-event__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2.1fr);
  gap: 32px 48px;
  align-items: start;
  font-size: 20px;
}

.program-event__artists,
.program-event__text {
  /* font-size: 16px; */
  line-height: 1.55;
  color: #d6d1ca;
}

.program-event__artists p,
.program-event__text p {
  margin: 0 0 14px;
}

.program-event__artists {
  color: #f4f4f4;
  font-size: 18px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .program-event__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .program-event__thumb {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }
}

/* News page — layout via .venues__list / .venue-card */
.news-item__meta {
  margin: 0 0 12px;
  color: var(--biaf-beige);
  font-size: 13px;
  line-height: 1.4;
}

.news-item__more {
  display: inline-block;
  margin-top: 14px;
  color: var(--biaf-pink);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-item__more:hover {
  text-decoration: underline;
}

.project-video__frame video{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}