@font-face {
  font-family: "Inter";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Inter-Light.woff") format("woff"), url("../fonts/Inter-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Inter-Regular.woff") format("woff"), url("../fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Inter-Medium.woff") format("woff"), url("../fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Inter-Semibold.woff") format("woff"), url("../fonts/Inter-Semibold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Inter-Bold.woff") format("woff"), url("../fonts/Inter-Bold.woff2") format("woff2");
}
body {
  font-family: "Inter";
  font-weight: 400;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*, *::after, *::before {
  box-sizing: border-box;
  outline: none !important;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-width: 320px;
  max-width: 100%;
}

button, input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  padding: 0px 20px;
  margin: 0 auto;
}

.site-container {
  height: 100%;
}

.site-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-container {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

section.grey .container {
  border-radius: 16px;
  background: var(--Background, #f8f8f8);
}

.woff .promo.yellow .promo__title,
.woff .promo.yellow .promo__desc {
  color: #fff;
}
.woff .promo.yellow a[class$=_btn] {
  background: #fff !important;
  color: #000 !important;
}
.woff .promo.yellow a[class$=_btn] svg path {
  stroke: #000 !important;
}

:root {
  --color-primary: #8b1a4a;
  --color-primary-rgb: 139, 26, 74;
  --color-pink: #bf1744;
  --color-green: #0c883f;
  --color-orange: #ef7f1a;
  --color-dark-blue: #0c216f;
  --color-wine: #c33638;
  --color-blue: #4fa6d1;
  --color-bright-red: #E53212;
  --color-gold: #af7912;
  --color-yellow: #cd890a;
  --color-white: #fff;
  --color-red: #8b0700;
  --color-black: #242424;
  --color-text: #000;
  --color-text-grey: #545454;
  --gradient-primary: linear-gradient(180deg, #9e2256 0%, #6f113d 100%);
  --gradient-green: linear-gradient(180deg, #57ab27 0%, #0c883f 100%), #fff;
  --gradient-dark-blue: radial-gradient(93.31% 126.19% at 50% 0%, #298ecb 0%, #0c216f 100%), linear-gradient(180deg, #0c216f 0%, #061341 100%);
  --gradient-yellow: linear-gradient(86deg, #f4ebc4 0.01%, #e6ab09 25.01%, #e8bc39 50.01%, #d59708 75.01%, #c28d09 100.01%), radial-gradient(477% 213.78% at -83.02% 112.32%, #ffec00 0%, #fee700 15%, #fbd902 32%, #f8c104 50%, #f2a108 69%, #ec770d 89%, #e85d10 100%), linear-gradient(180deg, #e2bb2c 0%, #b37f00 100%);
  --gradient-orange: linear-gradient(180deg, #efb61a 0%, #ef7f1a 100%), linear-gradient(180deg, #42c1ff 0%, #008cd1 100%);
  --gradient-black: linear-gradient(180deg, #323232 0%, #151515 100%), #fff;
  --gradient-pink: linear-gradient(180deg, #e36b98 0%, #d95284 100%);
  --gradient-dark: linear-gradient(90deg, #2d82c4 0%, #184274 100%);
  --gradient-blue: linear-gradient(180deg, #42c1ff 0%, #008cd1 100%);
}

.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 100px 0;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-decoration: none;
}
.footer__logo img {
  width: 100%;
  height: auto;
  max-width: 100px;
}
.footer__socials {
  display: flex;
  gap: 8px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  color: #000;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.footer__social-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.footer__social-link img {
  width: 18px;
  height: 18px;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  padding: 32px 0 64px;
}
.footer__col-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-bottom: 24px;
}
.footer__col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__col-link {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col-link:hover {
  color: var(--color-primary);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0 0;
}
.footer__copy {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.footer__bottom-nav {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__bottom-link {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__bottom-link:hover {
  color: var(--color-primary);
}

.hero__swiper {
  border-radius: 16px;
  overflow: hidden;
}
.hero__slide {
  position: relative;
  height: 420px;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: 16px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero__content {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: 64px;
  background: linear-gradient(270deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.8) 100%);
}
.hero__title {
  width: 100%;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-bottom: 16px;
}
.hero__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  max-width: 600px;
  color: #fff;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  margin-top: 42px;
}
.hero__btn:hover {
  opacity: 0.85;
}
.hero .swiper-horizontal > .swiper-pagination-bullets,
.hero .swiper-pagination-bullets.swiper-pagination-horizontal,
.hero .swiper-pagination-custom,
.hero .swiper-pagination-fraction {
  bottom: auto;
  left: auto;
  top: auto;
  width: 100%;
}
.hero__pagination {
  margin: 24px 0 32px;
  position: relative;
}
.hero__pagination .swiper-pagination-bullet {
  width: 32px;
  height: 4px;
  border-radius: 100px;
  background: var(--Stroke, rgba(0, 0, 0, 0.15));
  opacity: 1;
}
.hero__pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.about {
  padding: 60px 0;
}
.about--reverse .about__inner {
  flex-direction: row-reverse;
}
.about--one-image .about__inner {
  flex-direction: row-reverse;
}
.about--one-image .about__images {
  position: relative;
  padding: 0;
  flex: 1 1 50%;
  height: 400px;
  display: flex;
  align-items: flex-end;
}
.about--one-image .about__bg {
  position: absolute;
  top: -16px;
  left: 0;
  transform: unset;
  width: 65%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.about--one-image .about__text {
  flex: 0 0 50%;
}
.about--one-image .about__grid {
  grid-template-columns: 1fr;
}
.about--one-image .about__img {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  aspect-ratio: unset;
}
.about.grey .about__inner {
  padding: 100px 96px;
}
.about.grey .container {
  max-width: 1400px;
  padding: 0;
}
.about__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  justify-content: space-between;
}
.about__text {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__text h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.about h2.about__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.about p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.about__buttons {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
}
.about__btn:hover {
  opacity: 0.85;
}
.about__btn.transparent {
  background: transparent;
  color: #000;
  border: 1px solid #000;
  padding: 11px 24px;
}
.about__images {
  position: relative;
}
.about__images--s .about__img {
  aspect-ratio: unset;
}
.about__bg {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  z-index: 1;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about__img-wrap {
  position: relative;
  overflow: hidden;
}
.about__img-wrap:nth-child(1), .about__img-wrap:nth-child(4) {
  z-index: 2;
}
.about__img-wrap:nth-child(2), .about__img-wrap:nth-child(3) {
  z-index: 0;
}
.about__img-wrap:nth-child(2) {
  margin-top: 16px;
}
.about__img-wrap:nth-child(3) {
  margin-top: -16px;
}
.about__img {
  width: 100%;
  max-width: 240px;
  border-radius: 8px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
}

.shows {
  border-radius: 16px;
  background: var(--Background, #f8f8f8);
  padding: 100px 0;
  margin: 0 24px 50px;
}
.shows__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.shows__grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.shows__card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: var(--gradient-primary);
  box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-decoration: none;
  transition: background 0.3s;
  position: relative;
}
.shows__card:hover {
  background: #fff;
}
.shows__card:hover .shows__card-name {
  color: #000;
}
.shows__card:hover .shows__card-desc {
  color: #000;
}
.shows__card:hover .shows__card-link {
  color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.shows__card:hover .shows__card-bg--default {
  opacity: 0;
}
.shows__card:hover .shows__card-bg--hover {
  opacity: 1;
}
.shows__card-top {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-height: 275px;
  padding: 24px 24px 24px 32px;
  overflow: hidden;
}
.shows__card-info {
  position: relative;
  z-index: 2;
  max-width: 44%;
  width: 100%;
}
.shows__card-name {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.shows__card-desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #fff;
  transition: color 0.3s;
}
.shows__card-link {
  display: block;
  padding: 16px 24px;
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  text-align: center;
  z-index: 11;
  border-top: 1px solid transparent;
  transition: color 0.3s;
}
.shows__card-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 58%;
}
.shows__card-bg {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 308px;
  height: 280px;
  aspect-ratio: 11/10;
  transition: opacity 0.3s;
}
.shows__card-bg--hover {
  opacity: 0;
}
.shows__card-img {
  position: absolute;
  right: 24px;
  bottom: -1px;
  height: 100%;
  max-height: 249px;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 1;
}

.tips {
  padding: 50px 0;
}
.tips__inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.tips.black .tips__inner {
  padding: 64px 96px;
  border-radius: 16px;
  background: linear-gradient(180deg, #323232 0%, #151515 100%);
}
.tips.black .container {
  max-width: 1400px;
  padding: 0;
}
.tips.black h2.tips__title,
.tips.black p {
  color: #fff;
}
.tips.grey .container {
  max-width: 1400px;
  padding: 0;
}
.tips.grey .tips__inner {
  padding: 100px 96px;
}
.tips.tips--reverse .tips__inner {
  flex-direction: row-reverse;
}
.tips.tips--reverse.tips--full-image .tips__inner {
  padding: 0 96px;
  overflow: hidden;
}
.tips.tips--reverse.tips--full-image .tips__media {
  position: relative;
  overflow: hidden;
}
.tips.tips--reverse.tips--full-image .tips__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, #f8f8f8 0%, rgba(248, 248, 248, 0) 25%, rgba(248, 248, 248, 0) 75%, #f8f8f8 100%);
}
.tips.tips--reverse.tips--full-image .tips__media img {
  display: block;
  width: 100%;
}
.tips__media {
  position: relative;
  width: 50%;
  border-radius: 8px;
}
.tips__img {
  width: 100%;
  border-radius: 8px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.tips__content {
  width: 50%;
  z-index: 2;
}
.tips p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-bottom: 16px;
}
.tips p:last-of-type {
  margin-bottom: 0;
}
.tips p a {
  color: var(--color-primary);
  text-decoration: underline;
  margin-top: 42px;
}
.tips h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}
.tips h2.tips__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}
.tips__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  margin-top: 42px;
}
.tips__btn:hover {
  opacity: 0.85;
}

.partners.grey {
  padding: 50px 0;
}
.partners.center .partners__title, .partners.center .partners__desc {
  text-align: center;
  width: 100%;
}
.partners.center .partners__btn {
  margin: 42px auto 0;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  align-items: center;
}
.partners--full {
  overflow: hidden;
}
.partners--full .partners__slider {
  overflow: visible;
  max-width: 100%;
  margin: 0;
}
.partners--full .partners__logo {
  width: 219px;
  height: 164px;
  aspect-ratio: 215/161;
}
.partners--full .partners__slide {
  width: 219px;
  height: 164px;
}
.partners--images {
  overflow: hidden;
}
.partners--images .container {
  background: var(--gradient-primary);
  position: relative;
  border-radius: 16px;
}
.partners--images .partners__slider {
  overflow: visible;
  max-width: 100%;
  margin: 0;
}
.partners--images .partners__slide {
  height: 220px;
  width: 320px;
}
.partners--images .partners__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}
.partners--images .partners__content {
  margin-bottom: 64px;
}
.partners .container {
  max-width: 1400px;
  padding: 100px 0;
}
.partners__content {
  width: 100%;
  margin: 0 auto;
  padding: 0 96px;
}
.partners__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
  width: 55%;
}
.partners__desc {
  width: 55%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-bottom: 32px;
}
.partners__desc a {
  color: var(--color-primary);
}
.partners__subtitle {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: var(--color-primary);
  margin-bottom: 24px;
}
.partners__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
}
.partners__btn:hover {
  opacity: 0.85;
}
.partners__slider {
  overflow: hidden;
  margin-top: 64px;
}
.partners__swiper {
  overflow: visible;
  margin-left: -14px;
  width: calc(100% + 28px);
}
.partners__slide {
  width: 255px;
  height: 127px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners__logo {
  width: 255px;
  height: 127px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.news {
  padding: 50px 0;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .news__grid {
    grid-template-columns: 1fr;
  }
}
.news__empty {
  text-align: center;
  padding: 60px 0;
  color: #545454;
  font-size: 18px;
}
.news.news-grey {
  padding: 100px 0;
  background: #f8f8f8;
  border-radius: 16px;
  margin: 50px 20px;
}
.news.news-grey .news__card {
  background: #fff;
}
.news__header {
  text-align: center;
  margin-bottom: 64px;
}
.news__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}
.news__desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.news__swiper, .news__swiper2 {
  overflow: visible;
}
.news__slider {
  overflow: hidden;
}
.news__card {
  display: flex;
  flex-direction: column;
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
}
.news__img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.news__card-body {
  padding: 24px;
  flex: 1;
}
.news__date {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  display: block;
  margin-bottom: 16px;
}
.news__card-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
}
.news__card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  text-decoration: none;
  transition: color 0.2s;
}
.news__card-link:hover {
  color: var(--color-primary);
}
.news__nav {
  display: none;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.news__prev, .news__next {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: #000;
  transition: border-color 0.2s, color 0.2s;
}
.news__prev:hover, .news__next:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.news .swiper-slide {
  border-radius: 8px;
}
.news__footer {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
.news__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
}
.news__btn:hover {
  opacity: 0.85;
}

.promo {
  padding: 50px 0;
}
.promo .container {
  max-width: 1440px;
}
.promo.yellow .promo__inner {
  background: linear-gradient(180deg, #FBD415 0%, #F19812 100%);
}
.promo.yellow .promo__btn {
  background: var(--color-primary);
  color: var(--White, #fff);
}
.promo.yellow .promo__btn svg path {
  stroke: #fff;
}
.promo.yellow .promo__title, .promo.yellow .promo__desc {
  color: #000;
}
.promo form {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  align-items: center;
  padding-right: 4px;
  max-width: 600px;
  border-radius: 8px;
  border: 1px solid var(--Stroke, rgba(0, 0, 0, 0.15));
  background: var(--White, #fff);
  overflow: hidden;
  height: 51px;
  flex-direction: row;
}
.promo form p {
  margin: 0;
}
.promo__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 40px;
  border-radius: 16px;
  background: var(--gradient-primary);
  overflow: hidden;
}
.promo__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.promo__buttons .promo__btn {
  color: #000;
}
.promo__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.promo__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.promo p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #fff;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.promo__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #fff;
  color: var(--color-primary);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  position: relative;
  z-index: 1;
}
.promo__btn:hover {
  opacity: 0.85;
}

.info {
  padding: 50px 0;
}
.info__header {
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 0;
}
.info__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}
.info__desc, .info p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  max-width: 600px;
}
.info__list {
  display: flex;
  flex-direction: column;
}
.info__item {
  display: flex;
  gap: 64px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.info__item.column {
  flex-direction: column;
  gap: 32px;
}
.info__item.column .info__item-right {
  width: 100%;
}
.info__item-left {
  width: 50%;
}
.info__item-right {
  width: 50%;
}
.info__item-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.info__item-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.info__item-text + .info__item-text {
  margin-top: 16px;
}
.info__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.info__card {
  border-radius: 8px;
  background: var(--Background, #f8f8f8);
  padding: 24px;
}
.info__card-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.info__card-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}

.newsletter {
  padding: 50px 0 24px;
}
.newsletter .container {
  max-width: 1440px;
}
.newsletter__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 40px;
  border-radius: 16px;
  background: var(--gradient-primary);
  overflow: hidden;
}
.newsletter__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.newsletter__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: #fff;
  margin-bottom: 42px;
  flex-shrink: 0;
}
.newsletter__icon svg {
  color: var(--color-primary);
}
.newsletter__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.newsletter__desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #fff;
  margin-bottom: 42px;
  position: relative;
  z-index: 1;
}
.newsletter form {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  align-items: center;
  padding-right: 4px;
  max-width: 600px;
  border-radius: 8px;
  border: 1px solid var(--Stroke, rgba(0, 0, 0, 0.15));
  background: var(--White, #fff);
  overflow: hidden;
  height: 51px;
  flex-direction: row;
}
.newsletter__form form {
  flex-direction: row;
}
.newsletter__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 4px 4px 4px 16px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  font-family: Inter;
  background: transparent;
  color: #000;
  min-width: 0;
}
.newsletter__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.15);
}
.newsletter__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.15);
}
.newsletter__input::placeholder {
  color: rgba(0, 0, 0, 0.15);
}
.newsletter__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.newsletter__submit:hover {
  opacity: 0.85;
}

.page-template-template-wishlist .program__header {
  flex-direction: row;
}
.page-template-template-wishlist .program__title {
  margin-bottom: 16px;
}

.program {
  padding: 40px 0;
}
.program__header {
  margin-bottom: 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-direction: column;
}
.program__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.program__desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.program__dates {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 4px;
}
.program__dates-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 71px;
  height: 71px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  cursor: pointer;
  color: #000;
  transition: border-color 0.2s;
}
.program__dates-arrow:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.program__dates-list {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 4px;
  height: 71px;
}
.program__dates-list::-webkit-scrollbar {
  display: none;
}
.program__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 24px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.program__date span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.program__date--active {
  background: var(--color-primary);
  color: #fff;
}
.program__date--active span {
  color: #fff;
}
.program__date:hover:not(.program__date--active) {
  background: #f5f5f5;
}
.program__filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.program__filter-tag {
  padding: 12px 24px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background: transparent;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.program__filter-tag:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.program__filter-tag--active {
  background: var(--color-primary);
  border-color: #fff;
  color: #fff;
}
.program__filter-tag--active:hover {
  color: #fff;
}
.program__filter-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.program__filter-select-wrap svg {
  position: absolute;
  right: 10px;
  pointer-events: none;
  color: #000;
}
.program__filter-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 240px;
  padding: 12px 36px 12px 24px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #000;
  cursor: pointer;
  outline: none;
}
.program__filter-search {
  display: flex;
  align-items: center;
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding-right: 24px;
  overflow: hidden;
  min-width: 160px;
}
.program__filter-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: Inter;
  padding: 12px 0 12px 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  background: transparent;
}
.program__filter-input::-moz-placeholder {
  color: #aaa;
}
.program__filter-input:-ms-input-placeholder {
  color: #aaa;
}
.program__filter-input::placeholder {
  color: #aaa;
}
.program__filter-search-btn {
  display: flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #545454;
}
.program__filter-bookmark {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background: transparent;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #000;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s;
}
.program__filter-bookmark:hover {
  border-color: var(--color-primary);
}
.program__list {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.program__item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.program__item.program__item--live .program__time {
  color: var(--color-primary);
}
.program__item-time {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 70px;
  flex-shrink: 0;
  padding-top: 4px;
}
.program__item-img-wrap {
  flex-shrink: 0;
  width: 190px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
}
.program__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.program__item-content {
  flex: 1;
  min-width: 0;
  align-self: center;
}
.program__item-mobile-meta {
  display: none;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.program__item-head {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.program__item-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.program__item-meta {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.program__item-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: var(--color-primary);
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  padding: 0;
}
.program__item-toggle--open .program__toggle-icon {
  transform: rotate(180deg);
}
.program__item-details {
  display: none;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
  margin-top: 20px;
}
.program__item-details--open {
  display: grid;
}
.program__item-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.program__item-share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  cursor: pointer;
  color: #545454;
  transition: border-color 0.2s, color 0.2s;
}
.program__item-share--active, .program__item-share:hover {
  border-color: var(--color-primary);
}
.program__item-share--active svg path, .program__item-share:hover svg path {
  stroke: var(--color-primary);
}
.program__item-bookmark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  cursor: pointer;
  color: #545454;
  transition: border-color 0.2s, color 0.2s;
}
.program__item-bookmark--active, .program__item-bookmark:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.program__item-bookmark--active svg path, .program__item-bookmark:hover svg path {
  fill: #fff;
  stroke: #fff;
}
.program__print {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  cursor: pointer;
  color: #545454;
  transition: border-color 0.2s, color 0.2s;
}
.program__print:hover {
  border-color: var(--color-primary);
  color: #fff;
}
.program__print:hover svg path {
  stroke: var(--color-primary);
}
.program__toggle-icon {
  transition: transform 0.2s;
}
.program__live {
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: rgba(255, 59, 48, 0.25);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  /* 19.146px */
  color: #8b0700;
}
.program__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8b0700;
  flex-shrink: 0;
}
.program__time {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.program__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(var(--color-primary-rgb), 0.1);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  /* 19.146px */
  color: var(--color-primary);
  white-space: nowrap;
}
.program__tag--accent {
  background: #ff8c00;
  color: #fff;
}
.program__tag--live {
  background: rgba(255, 59, 48, 0.25);
  color: var(--color-primary);
}
.program__tag--mobile {
  display: none;
}
.program__details-heading {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}
.program__details-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-bottom: 16px;
  line-height: 1.5;
}
.program__details-text:last-child {
  margin-bottom: 0;
}
.program__day {
  display: none;
}
.program__day--active {
  display: block;
}
.program__day-empty {
  padding: 40px 0;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.program__day-empty a {
  color: var(--color-primary);
  text-decoration: underline;
}
.program__item--hidden {
  display: none;
}
.program__banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  border-radius: 16px;
  margin: 100px 0;
  background: var(--gradient-primary);
  overflow: hidden;
  border-radius: 16px;
  text-align: center;
}
.program__banner + .program__item {
  padding-top: 0;
}
.program__banner-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  pointer-events: none;
}
.program__banner-text {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
}
.program__person-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.program__person-link:hover {
  opacity: 0.7;
}
.program__person-badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary);
  color: #fff;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  cursor: pointer;
  white-space: nowrap;
}
.program__person-badge span {
  line-height: 1;
}
.program__person-badge-clear {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  opacity: 0.8;
}
.program__person-badge-clear:hover {
  opacity: 1;
}
.program__wishlist-float {
  display: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 32px;
  z-index: 999;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 100px;
  border: 1px solid var(--Stroke, rgba(0, 0, 0, 0.15));
  background: #fff;
  color: var(--color-primary);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, opacity 0.2s;
}
.program__wishlist-float--visible {
  display: flex;
}
.program__wishlist-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.program__wishlist-float:hover .program__wishlist-float-tooltip {
  opacity: 1;
  transform: translateX(-8px) translateY(-50%);
}
.program__wishlist-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateX(0) translateY(-50%);
  white-space: nowrap;
  display: flex;
  padding: 8px 10px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 6px;
  background: #0F1624;
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.program__wishlist-float-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #0F1624;
}
.program__wishlist-float-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 2px 10px;
  border-radius: 100px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.tvtipps__hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 64px;
}
.tvtipps__hero + .tvtipps__list {
  padding-top: 100px;
}
.tvtipps__hero-img {
  width: 100%;
  aspect-ratio: 15/8;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.tvtipps__hero-video {
  display: none;
  width: 100%;
  aspect-ratio: 16/7;
  -o-object-fit: cover;
  object-fit: cover;
  background: #000;
}
.tvtipps__hero--playing .tvtipps__hero-img,
.tvtipps__hero--playing .tvtipps__play {
  display: none;
}
.tvtipps__hero--playing .tvtipps__hero-video {
  display: block;
}
.tvtipps__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.tvtipps__play:hover {
  opacity: 0.85;
}
.tvtipps__play svg {
  margin-left: 3px;
}
.tvtipps__play--sm {
  left: 24px;
  bottom: 24px;
  transform: unset;
  top: auto;
}
.tvtipps__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 50px 0;
}
.tvtipps__item {
  display: flex;
  align-items: center;
  gap: 64px;
}
.tvtipps__item--reverse {
  flex-direction: row-reverse;
}
.tvtipps__item-text {
  flex: 1;
}
.tvtipps__item-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}
.tvtipps__item-subtitle {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  font-weight: 700;
  margin-bottom: 16px;
}
.tvtipps__item-body {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-bottom: 42px;
}
.tvtipps__item-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
}
.tvtipps__item-btn:hover {
  opacity: 0.85;
}
.tvtipps__item-media {
  position: relative;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}
.tvtipps__item-media--playing .tvtipps__item-img,
.tvtipps__item-media--playing .tvtipps__play {
  display: none;
}
.tvtipps__item-media--playing .tvtipps__item-video {
  display: block;
}
.tvtipps__item-img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.tvtipps__item-video {
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background: #000;
}
.tvtipps__item-video--vimeo {
  display: block;
}

.reception {
  padding: 16px 0;
}
.reception__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-radius: 100px;
  background: var(--Background, #f8f8f8);
  padding: 4px;
  width: 100%;
}
.reception__tab {
  flex: 1;
  padding: 24px 42px;
  border: none;
  border-radius: 100px;
  background: transparent;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #000;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.reception__tab--active {
  background: var(--color-primary);
  color: #fff;
}
.reception__tab:hover:not(.reception__tab--active) {
  color: var(--color-primary);
}
.reception__panel {
  display: none;
}
.reception__panel--active {
  display: block;
}
.reception__item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.reception__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.reception__item-logo {
  flex-shrink: 0;
  width: 100%;
  max-width: 219px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reception__logo-img {
  width: 100%;
  max-width: 219px;
  height: 164px;
  aspect-ratio: 215/161;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.reception__item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.reception__item-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.reception__item-desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.reception__item-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.reception__item-icons svg {
  color: var(--color-primary);
}
.reception__item-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.reception__item-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.reception__item-btn:hover {
  opacity: 0.85;
}
.reception__item-hotline {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.reception__item-hotline strong {
  display: block;
  font-weight: 400;
}

.sendungen {
  padding-bottom: 50px;
}
.sendungen.sendungen--actor .sendungen__item {
  padding: 16px 0;
}
.sendungen.sendungen--actor .sendungen__card-image {
  border-radius: 8px;
}
.sendungen.sendungen--s .sendungen__card {
  height: 320px;
  width: 47%;
}
.sendungen.sendungen--s .sendungen__card-image .sendungen__card-img {
  -o-object-fit: cover;
  object-fit: cover;
}
.sendungen__item {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 32px 0;
}
.sendungen__item:first-of-type {
  padding-top: 0;
}
.sendungen__item:last-of-type {
  padding-bottom: 0;
}
.sendungen__item--reverse {
  flex-direction: row-reverse;
}
.sendungen__text {
  flex: 1;
  width: 50%;
}
.sendungen__text-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}
.sendungen p.sendungen__text-subtitle {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #545454;
  margin-bottom: 16px;
}
.sendungen__text-body, .sendungen p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-bottom: 16px;
}
.sendungen__text-body:last-of-type, .sendungen p:last-of-type {
  margin-bottom: 0;
}
.sendungen__text-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  margin-top: 42px;
}
.sendungen__text-btn:hover {
  opacity: 0.85;
}
.sendungen__card {
  position: relative;
  flex-shrink: 0;
  width: 50%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  padding-left: 42px;
}
.sendungen__card-image {
  background: transparent;
  padding-left: 0;
}
.sendungen__card-image .sendungen__card-img {
  position: relative;
  width: 100%;
  right: auto;
  min-height: 262px;
  bottom: auto;
  -o-object-position: unset;
  object-position: unset;
}
.sendungen__card-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  pointer-events: none;
}
.sendungen__card-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 60%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
}
.sendungen__card-title {
  position: relative;
  z-index: 2;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 64px */
  font-size: 48px;
  color: #fff;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

.film-slider {
  padding: 60px 0;
}
.film-slider__inner {
  background: var(--gradient-primary), #f8f8f8;
  border-radius: 16px;
  padding: 100px 32px;
  overflow: hidden;
}
.film-slider .container {
  max-width: 1440px;
}
.film-slider__swiper {
  overflow: visible;
  margin-left: -80px;
  width: calc(100% + 160px);
}
.film-slider .swiper-slide {
  width: 347px;
  height: 240px;
  flex-shrink: 0;
}
.film-slider__img {
  width: 347px;
  height: 240px;
  aspect-ratio: 120/83;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.channels .container {
  max-width: 1400px;
  padding: 100px 96px;
}
.channels__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.channels__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}
.channels__item {
  display: flex;
  gap: 64px;
}
.channels__item--reverse {
  flex-direction: row-reverse;
}
.channels__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.channels__logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}
.channels__item-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.channels__item-desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-top: 16px;
}
.channels__media {
  flex-shrink: 0;
  width: 47.5%;
}
.channels__img {
  width: 100%;
  aspect-ratio: 16/11;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.award .container {
  max-width: 1440px;
}
.award__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  border-radius: 16px;
  background: radial-gradient(93.12% 131.46% at 28.92% -0.01%, #4fa6d1 0%, #184274 100%);
  overflow: hidden;
  padding: 100px 96px;
}
.award__media {
  flex-shrink: 0;
  width: 45%;
}
.award__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.award__content {
  flex: 1;
}
.award__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-bottom: 16px;
}
.award__desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #fff;
  margin-bottom: 42px;
}
.award__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  background: #4fa6d1;
  color: #000;
}
.award__btn:hover {
  opacity: 0.85;
}
.award__btn:hover {
  opacity: 0.85;
}

.contact-form {
  padding-bottom: 14px;
}
.contact-form:last-of-type {
  padding: 40px 0 64px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.page-template-template-contact .contact-form form {
  max-width: 600px;
}

.cform {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.cform__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 26px;
  text-align: center;
}
.cform__label {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-bottom: 8px;
}
.cform a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cform__grid.cform__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.cform__checkbox-text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cform__input, .cform__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #000;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.cform__input::-moz-placeholder, .cform__textarea::-moz-placeholder {
  color: #aaa;
}
.cform__input:-ms-input-placeholder, .cform__textarea:-ms-input-placeholder {
  color: #aaa;
}
.cform__input::placeholder, .cform__textarea::placeholder {
  color: #aaa;
}
.cform__input:focus, .cform__textarea:focus {
  border-color: var(--color-primary);
}
.cform__textarea {
  resize: vertical;
  min-height: 200px;
}
.cform__select {
  display: flex;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #000;
  width: 100%;
  font-family: "Inter";
  max-width: 600px;
  height: 50px;
  padding: 4px 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--Stroke, rgba(0, 0, 0, 0.15));
  background: var(--White, #fff);
}
.cform__field--checkbox {
  margin-top: 8px;
}
.cform__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.cform__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cform__checkbox:checked + .cform__checkbox-box {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.cform__checkbox:checked + .cform__checkbox-box::after {
  display: block;
}
.cform__checkbox-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  aspect-ratio: 1/1;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.cform__checkbox-box::after {
  content: "";
  display: none;
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.cform__checkbox-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin: 0;
}
.cform__link {
  color: var(--color-primary);
  text-decoration: underline;
}
.cform__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 26px;
  position: relative;
}
.cform__submit:hover {
  opacity: 0.85;
}
.cform__submit::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M3 9H15M15 9L10.5 4.5M15 9L10.5 13.5' stroke='white' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.cform__note {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-top: 26px;
  text-align: center;
}
.cform__notice {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-top: 26px;
  text-align: left;
}

.select2-container--default .select2-selection--single {
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #000;
  padding: 0 16px;
  line-height: 1;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #aaa;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 12px;
}
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--color-primary);
}

.select2-dropdown {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  z-index: 9999;
}

.wpcf7-form {
  position: relative;
  overflow: visible;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: var(--color-primary);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal;
}

.imprint {
  padding: 40px 0 50px;
}
.imprint__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  padding-bottom: 42px;
}
.imprint__cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.imprint__cell p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-bottom: 16px;
}
.imprint__cell p:last-of-type {
  margin-bottom: 0;
}
.imprint__cell p a {
  color: var(--color-primary);
  text-decoration: underline;
}
.imprint__cell:nth-child(7) p {
  margin-bottom: 0;
}
.imprint__cell:nth-child(7) p:nth-child(2) {
  margin-bottom: 16px;
}
.imprint__icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}
.imprint__cell-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.imprint__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.imprint__link {
  color: var(--color-primary);
  text-decoration: underline;
  transition: opacity 0.2s;
}
.imprint__link:hover {
  opacity: 0.8;
}
.imprint__collapse {
  display: none;
}
.imprint__collapse.is-open {
  display: inline;
}
.imprint__more {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  font-family: "Inter";
  color: var(--color-primary);
  text-decoration: underline;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
  margin-top: 16px;
}
.imprint__more:hover {
  opacity: 0.8;
}
.imprint__notice {
  width: 100%;
  max-width: 800px;
}
.imprint__notice-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}
.imprint__notice-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  line-height: 1.6;
}

.advert {
  padding: 0 0 64px;
}
.advert__inner {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
  position: relative;
}
.advert__content {
  width: 100%;
  max-width: 800px;
  padding: 64px;
  z-index: 1;
}
.advert__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-bottom: 16px;
}
.advert p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #fff;
}
.advert__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  margin-top: 42px;
}
.advert__btn:hover {
  opacity: 0.85;
}
.advert__img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  right: 0;
}
.advert__img.desktop {
  display: block;
}
.advert__img.mobile {
  display: none;
}

.adcards {
  padding: 40px 0 90px;
}
.adcards__header {
  text-align: center;
  margin-bottom: 64px;
}
.adcards__header p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  text-align: center;
  margin: 0 auto;
}
.adcards__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}
.adcards__desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  max-width: 560px;
  margin: 0 auto;
}
.adcards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.adcards__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.adcards__card-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.adcards__card-img {
  width: 100%;
  display: block;
  height: 217px;
}
.adcards__card-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.adcards__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  margin-top: 22px;
}
.adcards__card-btn:hover {
  opacity: 0.85;
}

.contest-info {
  padding: 60px 0;
}
.contest-info.reverse .contest-info__inner {
  flex-direction: row-reverse;
}
.contest-info.vertical .contest-info__images {
  flex-direction: row;
  padding-right: 0;
}
.contest-info.vertical .contest-info__img {
  height: auto;
  max-width: 50%;
}
.contest-info.vertical .contest-info__img:first-child {
  margin-bottom: 16px;
  margin-left: 0;
}
.contest-info.vertical .contest-info__img:last-child {
  margin-top: 16px;
}
.contest-info__inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.contest-info__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}
.contest-info__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 8px;
}
.contest-info__body,
.contest-info p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.contest-info__link,
.contest-info a {
  color: var(--color-primary);
  text-decoration: none;
}
.contest-info__link:hover,
.contest-info a:hover {
  text-decoration: underline;
}
.contest-info__images {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 16px;
}
.contest-info__img {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  height: 240px;
}
.contest-info__img:first-child {
  margin-left: 16px;
}

.contest-detail {
  padding: 50px 0;
}
.contest-detail__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.contest-detail__img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.contest-detail__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.contest-detail__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contest-detail__text, .contest-detail p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}

.dvd-info {
  padding: 50px 0;
}
.dvd-info__inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.dvd-info__media {
  flex-shrink: 0;
  width: 40%;
}
.dvd-info__img {
  width: 100%;
  border-radius: 8px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.dvd-info__content {
  flex: 1;
  padding-top: 8px;
}
.dvd-info__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 24px;
}
.dvd-info__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  line-height: 1.6;
  margin-bottom: 32px;
}
.dvd-info__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
}
.dvd-info__btn:hover {
  opacity: 0.85;
}

.dvd-gallery {
  padding: 40px 0 60px;
}
.dvd-gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.dvd-gallery__main {
  grid-column: 1/4;
  grid-row: 1;
  height: 332px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), lightgray 50%/cover no-repeat;
}
.dvd-gallery__main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.dvd-gallery__play {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto;
}
.dvd-gallery__img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  height: 332px;
}
.dvd-gallery__img:not(.dvd-gallery__img--small):not(.dvd-gallery__img--wide) {
  grid-column: 4/7;
  grid-row: 1;
}
.dvd-gallery__img--small {
  grid-column: 1/3;
  grid-row: 2;
}
.dvd-gallery__img--wide {
  grid-column: 3/7;
  grid-row: 2;
}

.faq {
  padding: 100px 0;
}
.faq.faq--star .badge {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  /* 19.146px */
  color: #298ecb;
  position: relative;
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: rgba(41, 142, 203, 0.1);
}
.faq.faq--star .faq__arrow {
  display: flex;
  align-self: flex-end;
  margin-bottom: 16px;
}
.faq.faq--star .faq__question_header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 800px;
}
.faq__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 64px;
}
.faq__list {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 32px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq__question span {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  font-family: Inter;
}
.faq__arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.faq__answer {
  display: none;
  padding-bottom: 32px;
  width: 100%;
  max-width: 63%;
}
.faq p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.faq__item--open .faq__answer {
  display: block;
}
.faq__item--open .faq__arrow {
  transform: rotate(180deg);
}

.features {
  padding: 50px 0;
}
.features .container {
  max-width: 1400px;
  padding: 100px 0;
}
.features__header {
  width: 100%;
  margin: 0 auto 64px;
  padding: 0 96px;
}
.features__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 12px;
}
.features__desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 96px;
}
.features__card {
  padding: 24px;
  background: #fff;
  border-radius: 8px;
}
.features__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  display: block;
}
.features__card-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}
.features__card-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  line-height: 1.6;
}
.features__card-text a {
  color: #000;
  text-decoration: underline;
  transition: color 0.2s;
}
.features__card-text a:hover {
  color: var(--color-primary);
}

.header {
  position: relative;
}
.header .logo-header-fmh img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
  object-fit: contain;
}
.header.is-search-open .header__burger,
.header.is-search-open .header__logo,
.header.is-search-open .header__search-btn,
.header.is-search-open .logo-header-fmh {
  display: none;
}
.header.is-search-open .header__search-bar {
  display: flex;
}
.header__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.header .dropdown {
  position: relative;
}
.header .dropdown > a {
  background: transparent;
  height: auto;
  width: 98px;
  text-transform: uppercase;
  flex-shrink: 0;
  display: flex;
  height: 43px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: var(--color-white);
}
.header .dropdown > a svg {
  min-width: 16px;
  height: 16px;
}
.header .dropdown .sub-menu {
  position: absolute;
  top: 102%;
  right: 0;
  left: 0;
  z-index: 21;
  display: none;
  padding: 20px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 78px;
  align-self: stretch;
  list-style: none;
  border-radius: 4px;
  border: 1px solid #000;
  background: #fff;
}
.header .dropdown .sub-menu li {
  display: flex;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  align-self: stretch;
  position: relative;
}
.header .dropdown .sub-menu li:hover {
  color: var(--color-primary);
  border-radius: 4px;
}
.header .dropdown .sub-menu li:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0.2;
  pointer-events: none;
  border-radius: 4px;
}
.header .dropdown .sub-menu li:hover a {
  color: var(--color-primary);
}
.header .dropdown .sub-menu li a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: var(--color-text);
  display: flex;
  padding: 15px 22px;
}
.header .dropdown:hover > .sub-menu {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 4px;
}
.header__left {
  display: flex;
  gap: 42px;
}
.header__block {
  display: flex;
  cursor: pointer;
  gap: 8px;
  position: relative;
}
.header__block .hover-block {
  display: none;
  position: absolute;
  left: -23px;
  bottom: -17px;
  padding: 8px 10px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 6px;
  background: var(--Slate-900, #0f1624);
}
.header__block .hover-block p {
  font-family: "Inter";
  color: var(--Base-White, #fff);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}
.header__block .hover-block::before {
  position: absolute;
  content: "";
  background: url("../img/arr.webp") no-repeat;
  width: 100%;
  height: 100%;
  left: 0;
  top: -6px;
  width: 34px;
  height: 6px;
}
.header__block:hover .hover-block {
  display: flex;
}
.header__block svg {
  margin-top: 4px;
}
.header__block-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header__block-text p {
  overflow: hidden;
  color: var(--White, #fff) !important;
  text-overflow: ellipsis;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.header__block-text strong {
  color: rgba(255, 255, 255, 0.5);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.header__top {
  background: var(--gradient-primary);
  padding: 24px 0;
}
.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 64px;
}
.header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 66px;
  height: 43px;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}
.header__burger:hover svg path {
  stroke: var(--color-primary);
}
.header__burger-close {
  display: none;
}
.header__burger.is-active .header__burger-open {
  display: none;
}
.header__burger.is-active .header__burger-close {
  display: block;
}
.header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.header__logo-icon {
  display: block;
}
.header__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  display: flex;
  height: 43px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: transparent;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
}
.header__search-bar {
  display: none;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  right: 0;
  height: 43px;
  padding: 10px;
  background: #fff;
  border-radius: 4px;
  width: 97%;
}
.header__search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  font-family: Inter;
  line-height: normal;
  color: #000;
  background: transparent;
}
.header__search-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.header__search-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.header__search-input::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.header__search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.header__nav {
  background: #fff;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav-item {
  position: relative;
}
.header__nav-item--dropdown:hover .header__dropdown {
  display: block;
}
.header__nav-item--dropdown:hover .header__nav-arrow {
  transform: rotate(180deg);
}
.header__nav-item--dropdown:hover .header__nav-link {
  color: var(--color-primary);
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.header__nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 24px 12px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.header__nav-link:hover {
  color: var(--color-primary);
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.header__nav-arrow {
  transition: transform 0.2s;
}
.header__dropdown {
  display: none;
  position: absolute;
  top: 82%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background: var(--White, #fff);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  padding: 4px;
  z-index: 100;
}
.header__dropdown li {
  margin-bottom: 2px;
}
.header__dropdown-link {
  display: block;
  padding: 10px 20px;
  color: #000;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.header__dropdown-link:hover {
  color: var(--color-primary);
  border-radius: 4px;
}
.header__dropdown-link:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0.2;
  pointer-events: none;
  border-radius: 4px;
}
.header__mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 20px;
  width: 280px;
  z-index: 200;
  box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .header__mobile-menu {
    width: 100%;
  }
}
.header__mobile-menu.is-open {
  display: block;
}
.header__menu-nav {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}
@media (min-width: 769px) {
  .header__menu-nav {
    display: none;
  }
}
.header__menu-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
}
@media (min-width: 769px) {
  .header__menu-divider {
    display: none;
  }
}
.header__menu-item--active > .header__menu-link {
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.07);
}
.header__menu-item--has-sub.is-open > .header__menu-link--toggle {
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.07);
}
.header__menu-item--has-sub.is-open .header__menu-arrow {
  transform: rotate(180deg);
}
.header__menu-item--has-sub.is-open .header__menu-sub {
  display: block;
}
.header__menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 20px;
  color: #000;
  font-size: 14px;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.header__menu-link:hover {
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.07);
}
.header__menu-arrow {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.header__menu-sub {
  display: none;
  list-style: none;
  padding: 4px 0;
  margin: 0;
  border-radius: 8px;
  border: 1px solid var(--Stroke, rgba(0, 0, 0, 0.15));
  background: var(--White, #fff);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.15);
  margin-top: 4px;
}
.header__menu-sub-link {
  display: block;
  padding: 11px 36px;
  color: #000;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.header__menu-sub-link:hover {
  color: var(--color-primary);
}
.header__menu-secondary {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background: var(--White, #fff);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  padding: 4px;
}
.header__menu-secondary-link {
  display: block;
  padding: 13px 20px;
  color: #000;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  border-radius: 4px;
}
.header__menu-secondary-link:hover {
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.07);
}

.title-block__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 50px;
  text-align: center;
}
.title-block.left .title-block__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.title-block__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}
.title-block p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  max-width: 800px;
  margin-bottom: 16px;
}
.title-block p:last-of-type {
  margin-bottom: 0;
}
.title-block form {
  margin-top: 42px;
  border-radius: 8px;
  border: 1px solid var(--Stroke, rgba(0, 0, 0, 0.15));
  background: var(--White, #fff);
  padding: 4px;
  flex-direction: row;
  align-items: center;
  max-width: 600px;
}
.title-block form p {
  display: contents;
}
.title-block form input {
  padding: 0 0 0 16px;
  height: 46px;
}
.title-block a.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  margin-top: 42px;
}
.title-block a.btn:hover {
  opacity: 0.85;
}
.title-block a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: var(--color-primary);
}

.gallery {
  padding: 50px 0;
}
.gallery .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  background: var(--gradient-primary);
  box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-decoration: none;
  transition: background 0.3s;
  padding: 24px 24px 0;
}
.gallery__card-bg {
  position: absolute;
  z-index: -1;
  width: 308px;
}
.gallery__card-img {
  width: 239.52px;
  height: 249.5px;
  flex-shrink: 0;
  aspect-ratio: 24/25;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
}
.gallery .swiper-free-mode > .swiper-wrapper {
  margin: 0;
  margin-left: 27%;
}

.single-news {
  padding: 40px 0 14px;
}
.single-news:last-of-type {
  padding-bottom: 64px;
}
.single-news .container {
  max-width: 800px;
}
.single-news img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  border-radius: 8px;
  aspect-ratio: 20/9;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 64px;
}
.single-news__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.single-news__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.single-news p,
.single-news li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.single-news p + p {
  margin-top: 16px;
}
.single-news li {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.single-news li strong {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  display: block;
  margin-top: 26px;
}
.single-news a {
  color: var(--color-primary);
  text-decoration: underline;
}
.single-news ul,
.single-news ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 8px 0;
  padding-left: 0px;
}
.single-news ul ul,
.single-news ul ol,
.single-news ol ul,
.single-news ol ol {
  padding-left: 32px;
}
.single-news ul ul li strong,
.single-news ul ol li strong,
.single-news ol ul li strong,
.single-news ol ol li strong {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin: 0;
}
.single-news h2,
.single-news h3,
.single-news h4 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin: 8px 0;
}

.error-page {
  padding: 40px 0 64px;
}
.error-page__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.error-page h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 42px;
}
.error-page p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-top: 16px;
}
.error-page a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  margin-top: 42px;
}
.error-page a:hover {
  opacity: 0.85;
}

.img-slider {
  padding: 60px 0;
}
.img-slider .container {
  max-width: 1440px;
  padding: 0 96px;
}
.img-slider--single .img-slider__cols {
  width: 100%;
  max-width: 336px;
}
.img-slider--single .img-slider__text {
  max-width: 800px;
}
.img-slider__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  justify-content: space-between;
}
.img-slider__text {
  width: 100%;
  max-width: 50%;
}
.img-slider__text h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}
.img-slider__text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-bottom: 32px;
}
.img-slider__text a {
  color: var(--color-primary);
}
.img-slider__btn, .img-slider .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  color: #fff !important;
}
.img-slider__btn:hover, .img-slider .btn:hover {
  opacity: 0.85;
}
.img-slider__cols {
  width: 100%;
  max-width: 50%;
  display: flex;
  gap: 16px;
  height: 460px;
  overflow: hidden;
  position: relative;
}
.img-slider__cols::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, #f8f8f8 0%, rgba(248, 248, 248, 0) 25%, rgba(248, 248, 248, 0) 75%, #f8f8f8 100%);
  height: 100%;
}
.img-slider__col {
  overflow: hidden;
}
.img-slider__track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  -webkit-animation: img-slider-up 30s linear infinite;
  animation: img-slider-up 30s linear infinite;
}
.img-slider__track--down {
  -webkit-animation: img-slider-down 35s linear infinite;
  animation: img-slider-down 35s linear infinite;
}
.img-slider__img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.img-slider--single .img-slider__cols::before {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 75%, #fff 100%);
}
.img-slider--single .img-slider__track {
  -webkit-animation: img-slider-up 30s linear infinite;
  animation: img-slider-up 30s linear infinite;
}
@media (max-width: 768px) {
  .img-slider--single .img-slider__cols {
    height: auto;
    overflow: hidden;
  }
  .img-slider--single .img-slider__col {
    width: 100%;
    overflow: hidden;
  }
  .img-slider--single .img-slider__track {
    flex-direction: row;
    -webkit-animation: img-slider-left 20s linear infinite;
    animation: img-slider-left 20s linear infinite;
  }
  .img-slider--single .img-slider__img {
    width: 240px;
    aspect-ratio: 16/10;
  }
}
.img-slider--reverse .img-slider__inner {
  flex-direction: row-reverse;
}

@-webkit-keyframes img-slider-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes img-slider-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@-webkit-keyframes img-slider-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes img-slider-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes img-slider-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes img-slider-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
section.single-star {
  padding: 40px 0 50px;
}

.single-star__inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.single-star__media {
  position: relative;
  width: 50%;
  border-radius: 8px;
}
.single-star__img {
  width: 100%;
  border-radius: 8px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.single-star__content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.single-star p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.single-star__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.single-star__text {
  padding: 100px 0;
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}
.single-star__text div {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.single-star__text div:first-of-type {
  margin-top: 32px;
  border: 0;
}
.single-star__text div:last-of-type {
  padding-bottom: 0;
}
.single-star__text ul li,
.single-star__text ol li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  position: relative;
  padding-left: 16px;
}
.single-star__text ul li::before,
.single-star__text ol li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #545454;
  top: 8px;
  left: 0;
  border-radius: 50%;
}
.single-star__text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.single-star__text a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: var(--color-primary);
}
.single-star__text h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.single-star__text h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}

.star-gallery {
  padding: 64px 0;
}
.star-gallery.grey {
  border-radius: 16px;
  background: var(--Background, #f8f8f8);
  margin: 0 20px;
}
.star-gallery .swiper-horizontal > .swiper-pagination-bullets,
.star-gallery .swiper-pagination-bullets.swiper-pagination-horizontal,
.star-gallery .swiper-pagination-custom,
.star-gallery .swiper-pagination-fraction {
  bottom: auto;
  left: auto;
  top: auto;
  width: 100%;
}
.star-gallery__vimeo-iframe {
  width: 100%;
  height: 100%;
}
.star-gallery__pagination {
  margin: 24px 0 32px;
  position: relative;
}
.star-gallery__pagination .swiper-pagination-bullet {
  width: 32px;
  height: 4px;
  border-radius: 100px;
  background: var(--Stroke, rgba(0, 0, 0, 0.15));
  opacity: 1;
}
.star-gallery__pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
}
.star-gallery__grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-auto-rows: 330px;
  gap: 16px;
}
.star-gallery__grid > *:nth-child(1) {
  grid-column: span 12;
}
.star-gallery__grid > *:nth-child(2) {
  grid-column: span 6;
}
.star-gallery__grid > *:nth-child(3) {
  grid-column: span 6;
}
.star-gallery__grid > *:nth-child(4) {
  grid-column: span 8;
}
.star-gallery__grid > *:nth-child(5) {
  grid-column: span 6;
}
.star-gallery__grid > *:nth-child(6) {
  grid-column: span 10;
}
.star-gallery__main {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.star-gallery__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.star-gallery__item-video {
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background: #000;
}
.star-gallery__item-media--playing .star-gallery__item-img,
.star-gallery__item-media--playing .star-gallery__play {
  display: none;
}
.star-gallery__item-media--playing .star-gallery__item-video {
  display: block;
}
.star-gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.star-gallery__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.star-gallery__play:hover {
  opacity: 0.85;
}
.star-gallery__play svg {
  margin-left: 3px;
}
.star-gallery__play--sm {
  left: 24px;
  bottom: 24px;
  transform: unset;
  top: auto;
}

.stars-archive {
  padding: 40px 0 50px;
}
.stars-archive__letter {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.stars-archive__letter.stars-archive__letter--disabled {
  color: rgba(0, 0, 0, 0.25);
}
.stars-archive__letter.stars-archive__letter--active {
  color: #298ecb;
}
.stars-archive__letter:first-of-type::before {
  display: none;
}
.stars-archive__letter::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #000;
  top: 9px;
  right: -9px;
  border-radius: 50%;
}
.stars-archive__desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-top: 24px;
}
.stars-archive__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.stars-archive__alphabet {
  margin: 32px 0 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
.stars-archive__search-wrap {
  cursor: pointer;
  margin-top: 64px;
  border-radius: 4px;
  border: 1px solid var(--Stroke, rgba(0, 0, 0, 0.15));
  display: flex;
  height: 43px;
  padding: 0 24px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.stars-archive__search-wrap input {
  height: 43px;
  padding: 12px 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #000;
  font-family: Inter;
}
.stars-archive__search-wrap input::-moz-placeholder {
  color: #545454;
}
.stars-archive__search-wrap input:-ms-input-placeholder {
  color: #545454;
}
.stars-archive__search-wrap input::placeholder {
  color: #545454;
}
.stars-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px 20px;
}
.stars-archive__grid img {
  border-radius: 16px;
  width: 100%;
}
.stars-archive__card {
  cursor: pointer;
}
.stars-archive__card:hover .stars-archive__card-name {
  color: #298ecb;
}
.stars-archive__card-name {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-top: 16px;
  text-align: center;
}

.sendung-hero__img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  max-height: 420px;
}

.sendung-single {
  padding: 40px 0 50px;
}
.sendung-single__content {
  margin: 64px auto 0;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sendung-single__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.sendung-single__text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #000;
  margin-bottom: 16px;
}
.sendung-single__text p:last-of-type {
  margin-bottom: 0;
}
.sendung-single__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 26px;
}
.sendung-single__btn:hover {
  opacity: 0.85;
}

.sendungen-archive {
  padding: 40px 0 50px;
}
.sendungen-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 20px;
  align-items: stretch;
}
.sendungen-archive__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
.sendungen-archive__card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.sendungen-archive__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  margin-top: auto;
  justify-content: center;
}
.sendungen-archive__card-btn:hover {
  opacity: 0.85;
}
.sendungen-archive__card-img {
  width: 100%;
  min-height: 235px;
  border-radius: 8px;
  aspect-ratio: 41/25;
  -o-object-fit: cover;
  object-fit: cover;
}
.sendungen-archive__card-desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.sendungen-archive__card-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.sendungen-archive__card-img-wrap {
  display: flex;
}
.sendungen-archive__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
  width: 100%;
  max-width: 800px;
}
.sendungen-archive__desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.sendungen-archive__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}

.heart {
  padding: 40px 0 50px;
}
.heart__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.heart__content--2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.heart__hero {
  margin-bottom: 32px;
}
.heart__hero-img {
  border-radius: 8px;
  width: 100%;
  min-height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  max-height: 420px;
}
.heart a.heart__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 26px;
  color: #fff;
}
.heart a.heart__btn:hover {
  opacity: 0.85;
}
.heart__gallery {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 32px 0;
}
.heart__gallery-img {
  border-radius: 8px;
  width: 100%;
}
.heart__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 32px auto 0;
  max-width: 800px;
}
.heart__text ul li,
.heart__text ol li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  position: relative;
  padding-left: 16px;
}
.heart__text ul li::before,
.heart__text ol li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #545454;
  top: 8px;
  left: 0;
  border-radius: 50%;
}
.heart__text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-bottom: 16px;
}
.heart__text p:last-of-type {
  margin-bottom: 0;
}
.heart__text a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: var(--color-primary);
}
.heart__text h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.heart__text h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}

.hz-grid {
  padding: 50px 0;
}
.hz-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
@media (max-width: 900px) {
  .hz-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hz-grid__grid {
    grid-template-columns: 1fr;
  }
}
.hz-grid__empty {
  text-align: center;
  padding: 60px 0;
  color: #545454;
  font-size: 18px;
}
.hz-grid.grey {
  padding: 100px 0;
  background: #f8f8f8;
  border-radius: 16px;
  margin: 50px 20px;
}
.hz-grid.grey .hz-grid__card {
  background: #fff;
}
.hz-grid__header {
  text-align: center;
  margin-bottom: 64px;
}
.hz-grid__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 64px;
  text-align: center;
}
.hz-grid__desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.hz-grid__swiper, .hz-grid__swiper2 {
  overflow: visible;
}
.hz-grid__slider {
  overflow: hidden;
}
.hz-grid__card {
  display: flex;
  flex-direction: column;
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
}
.hz-grid__card-img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.hz-grid__card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hz-grid__card-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
  padding-bottom: 24px;
}
.hz-grid__card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
}
.hz-grid__card-link:hover {
  color: var(--color-primary);
}
.hz-grid__nav {
  display: none;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.hz-grid__prev, .hz-grid__next {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: #000;
  transition: border-color 0.2s, color 0.2s;
}
.hz-grid__prev:hover, .hz-grid__next:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.hz-grid .swiper-slide {
  border-radius: 8px;
}
.hz-grid__footer {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
.hz-grid__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
}
.hz-grid__btn:hover {
  opacity: 0.85;
}

.download {
  padding: 50px 0;
}
.download__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.download__item {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 8px;
  background: var(--Background, #f8f8f8);
}
.download__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 64px;
  gap: 16px;
}
.download__header-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.download__header-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.download__date {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.download__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.download__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.download__link {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  display: flex;
  gap: 16px;
  margin-top: auto;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--color-primary);
}

.contacts {
  padding: 50px 0;
}
.contacts.grey .container {
  max-width: 1400px;
  padding: 0;
}
.contacts.grey .contacts__inner {
  padding: 100px 96px;
}
.contacts__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.contacts__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.contacts__list {
  display: flex;
  flex-direction: column;
}
.contacts__item {
  display: flex;
  gap: 16px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  justify-content: space-between;
}
.contacts__item:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.contacts__item-left, .contacts__item-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacts__role, .contacts__phone-label {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.contacts__name, .contacts__phone {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.contacts__name a, .contacts__phone a {
  color: #000;
}
.contacts__email {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.contacts__email a {
  color: var(--color-primary);
}

.sponsors {
  padding: 50px 0;
}
.sponsors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 20px;
}
.sponsors__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.sponsors__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  padding: 0 8px;
}
.sponsors__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  padding: 0 8px;
}
.sponsors__img {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  align-self: stretch;
  aspect-ratio: 41/25;
  width: 100%;
  display: block;
  margin-bottom: 16px;
  border-radius: 8px;
}

.prizes {
  padding: 50px 0;
}
.prizes__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.prizes__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-top: 16px;
}
.prizes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.prizes__card {
  display: flex;
  margin-bottom: 24px;
  position: relative;
  border-radius: 8px;
}
.prizes__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.prizes__img {
  width: 100%;
}
.prizes__amount {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.prizes__name {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-top: 6px;
}

.jury {
  padding: 50px 0;
}
.jury__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px 20px;
}
.jury__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.jury__role {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.jury__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 64px;
}
.jury__name {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-top: 18px;
}
.jury__img {
  width: 100%;
  border-radius: 8px;
  min-height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}

.jury-slider.grey .container {
  max-width: 1400px;
  padding: 0;
}
.jury-slider.grey .jury-slider__inner {
  padding: 100px 96px;
}
.jury-slider .swiper-horizontal > .swiper-pagination-bullets,
.jury-slider .swiper-pagination-bullets.swiper-pagination-horizontal,
.jury-slider .swiper-pagination-custom,
.jury-slider .swiper-pagination-fraction {
  bottom: auto;
  left: auto;
  top: auto;
  width: 100%;
}
.jury-slider__pagination {
  margin: 24px 0 0;
  position: relative;
}
.jury-slider__pagination .swiper-pagination-bullet {
  width: 32px;
  height: 4px;
  border-radius: 100px;
  background: var(--Stroke, rgba(0, 0, 0, 0.15));
  opacity: 1;
}
.jury-slider__pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
}
.jury-slider__title {
  margin: 0 auto 64px;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  text-align: center;
}
.jury-slider__name {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  color: #000;
  margin-top: 24px;
}
.jury-slider__img-wrap {
  display: flex;
}
.jury-slider__img-wrap img {
  border-radius: 8px;
  width: 100%;
}

.films {
  padding: 50px 0;
}
.films.grey .container {
  max-width: 1400px;
  padding: 0;
}
.films.grey .films__inner {
  padding: 100px 96px;
}
.films__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.films__item {
  display: flex;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  cursor: pointer;
}
.films__item:hover .films__overlay {
  display: flex;
}
.films__overlay {
  display: none;
  position: absolute;
  inset: 0;
  gap: 24px;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2;
}
.films__overlay::before {
  display: block;
  position: absolute;
  background: radial-gradient(258.4% 141.42% at 100% -0.07%, rgba(45, 130, 196, 0.6) 0%, rgba(24, 66, 116, 0.6) 100%), url("../img/bb30.webp") center/cover no-repeat;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 8px;
  z-index: -1;
}
.films__img {
  width: 100%;
}
.films__badge {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #fff;
  display: flex;
  padding: 4px 12px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--color-primary);
}
.films__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
}
.films__desc {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 6px;
}
.films__desc p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #fff;
}

.media .header__top {
  background: var(--gradient-primary);
}
.media .header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.media .header__bottom {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.media .header__bottom .container {
  display: flex;
  align-items: center;
}
.media .header__nav {
  display: flex;
  width: 100%;
}
.media .header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.media .header__nav-item {
  flex: 1 0 20%;
  position: relative;
}
.media .header__nav-item:last-of-type::before {
  display: none;
}
.media .header__nav-item::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.15);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 42px;
}
.media .header__nav-item--dropdown:hover .header__dropdown {
  display: block;
}
.media .header__nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 20px 32px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}
.media .header__nav-link div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.media .header__nav-link:hover {
  color: var(--color-primary);
}
.media .header__nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.media .header__nav-icon--hover {
  display: none;
}
.media .header__nav-link:hover .header__nav-icon--default {
  display: none;
}
.media .header__nav-link:hover .header__nav-icon--hover {
  display: inline-block;
}
.media .header__dropdown-header {
  display: block;
  padding: 10px 20px 6px;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.media .header__dropdown-group {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
}
.media .header__nav-arrow {
  flex-shrink: 0;
  color: currentColor;
}
.media .header__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  border-radius: 8px;
  border: 1px solid var(--Stroke, rgba(0, 0, 0, 0.15));
  background: var(--White, #fff);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.15);
  padding: 4px;
  list-style: none;
  margin: 0;
  z-index: 100;
}
.media .header__dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.media .header__dropdown-link:hover {
  color: var(--color-primary);
  background: rgba(0, 0, 0, 0.03);
}
.media .header__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.media .header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 66px;
  height: 43px;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}
.media .header__burger-close {
  display: none;
}
.media .header__burger.is-active .header__burger-open {
  display: none;
}
.media .header__burger.is-active .header__burger-close {
  display: block;
}
.media .header__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 200;
  padding: 16px 0 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.media .header__mobile-menu.is-open {
  display: block;
}
.media .header__menu-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.media .header__menu-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.media .header__menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.media .header__menu-link--toggle svg {
  transition: transform 0.2s;
}
.media .header__menu-item--open > .header__menu-link--toggle svg {
  transform: rotate(180deg);
}
.media .header__menu-sub {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
  background: rgba(0, 0, 0, 0.02);
}
.media .header__menu-item--open > .header__menu-sub {
  display: block;
}
.media .header__menu-sub-link {
  display: block;
  padding: 10px 24px 10px 36px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}
.media .header__menu-sub-link:hover {
  color: var(--color-primary);
}

.portfolio {
  padding: 50px 0;
}
.portfolio.grey .container {
  max-width: 1400px;
  padding: 0;
}
.portfolio.grey .portfolio__inner {
  padding: 100px 96px;
}
.portfolio.grey .portfolio__item {
  background: #fff;
}
.portfolio__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 64px;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.portfolio__item {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.portfolio__item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.15);
}
.portfolio__item-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}
.portfolio__item-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 32px;
  width: 100%;
  min-height: 270px;
}
.portfolio__item-left {
  width: 50%;
}
.portfolio__item-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 8px;
}
.portfolio__item-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.portfolio__item-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio__item-img {
  max-width: 100%;
  max-height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
}

.calendar {
  padding: 50px 0;
}
.calendar__header {
  text-align: center;
  margin-bottom: 64px;
}
.calendar__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}
.calendar__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.calendar__list {
  display: flex;
  flex-direction: column;
}
.calendar__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 42px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.calendar__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.calendar__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  padding: 12px 23px;
  background: #f8f8f8;
  border-radius: 8px;
  flex-shrink: 0;
}
.calendar__day {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.calendar__month {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #000;
  margin-top: 6px;
}
.calendar__info {
  flex: 1;
  min-width: 0;
}
.calendar__name {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}
.calendar__meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.calendar__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.calendar__meta-item svg {
  flex-shrink: 0;
}
.calendar__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.calendar__btn:hover {
  opacity: 0.85;
}
.calendar__btn svg path {
  stroke: #fff;
}

.press-slider {
  padding: 50px 0;
}
.press-slider.grey .container {
  max-width: 1400px;
  padding: 0;
}
.press-slider.grey .press-slider__inner {
  padding: 100px 96px;
}
.press-slider.grey .press-slider__card {
  background: #fff;
}
.press-slider__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .press-slider__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .press-slider__grid {
    grid-template-columns: 1fr;
  }
}
.press-slider__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 64px;
}
.press-slider__swiper, .press-slider__swiper2 {
  overflow: visible;
}
.press-slider__slider {
  overflow: hidden;
}
.press-slider__card {
  display: flex;
  flex-direction: column;
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
}
.press-slider__img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.press-slider__card-body {
  padding: 24px;
  flex: 1;
}
.press-slider__card-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  width: 100%;
  margin-bottom: 12px;
}
.press-slider__card-title a {
  color: inherit;
  text-decoration: none;
}
.press-slider__card-title a:hover {
  color: var(--color-primary);
}
.press-slider__card-desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 16px;
}
.press-slider__card-file {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: auto;
}
.press-slider__card-file svg {
  flex-shrink: 0;
}
.press-slider__card-file:hover span {
  text-decoration: none;
}
.press-slider__nav {
  display: none;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.press-slider__prev, .press-slider__next {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: #000;
  transition: border-color 0.2s, color 0.2s;
}
.press-slider__prev:hover, .press-slider__next:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.press-slider .swiper-slide {
  border-radius: 8px;
}
.press-slider__footer {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
.press-slider__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
}
.press-slider__btn:hover {
  opacity: 0.85;
}

.sales-partners {
  padding: 50px 0;
}
.sales-partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sales-partners__item {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;
  background: var(--Background, #f8f8f8);
}
.sales-partners__img {
  width: 124px;
  height: 124px;
  aspect-ratio: 1/1;
}
.sales-partners__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.sales-partners__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #000;
}
.sales-partners__link {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: var(--color-primary);
  margin-top: auto;
}

.tv-showcase {
  padding-bottom: 50px;
}
.tv-showcase__item {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 64px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.tv-showcase__item:first-of-type {
  padding-top: 0;
}
.tv-showcase__item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.tv-showcase__item--reverse {
  flex-direction: row-reverse;
}
.tv-showcase__text {
  width: 50%;
}
.tv-showcase__logo-wrap {
  margin-bottom: 24px;
}
.tv-showcase__logo {
  max-height: 60px;
  max-width: 180px;
  -o-object-fit: contain;
  object-fit: contain;
}
.tv-showcase__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 16px;
}
.tv-showcase__body {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-bottom: 24px;
}
.tv-showcase__body p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-bottom: 12px;
}
.tv-showcase__body p:last-child {
  margin-bottom: 0;
}
.tv-showcase__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  margin-bottom: 32px;
}
.tv-showcase__btn:hover {
  opacity: 0.85;
}
.tv-showcase__partners {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.tv-showcase__swiper {
  flex: 1;
  overflow: hidden;
}
.tv-showcase__partner-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tv-showcase__partner-img {
  width: 82px;
  height: 82px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
}
.tv-showcase__prev, .tv-showcase__next {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #545454;
  transition: color 0.2s;
}
.tv-showcase__prev:hover, .tv-showcase__next:hover {
  color: var(--color-primary);
}
.tv-showcase__card {
  position: relative;
  width: 50%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #f0f0f0;
  cursor: pointer;
}
.tv-showcase__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.tv-showcase__video-wrap {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
}
.tv-showcase__video-wrap iframe,
.tv-showcase__video-wrap video {
  width: 100%;
  height: 100%;
}
.tv-showcase__play {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  z-index: 2;
}
.tv-showcase__play svg {
  margin-left: 2px;
}

.stellen {
  padding: 64px 0;
}
.stellen__list {
  display: flex;
  flex-direction: column;
}
.stellen__item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.stellen__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.stellen__date {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-bottom: 8px;
}
.stellen__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  font-weight: 700;
  margin-bottom: 16px;
}
.stellen__content {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-bottom: 24px;
}
.stellen__content p {
  margin-bottom: 12px;
}
.stellen__content p:last-child {
  margin-bottom: 0;
}
.stellen__content ul,
.stellen__content ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.stellen__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.stellen__btn:hover {
  opacity: 0.85;
}
.stellen__footer {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.stellen__footer-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.stellen__footer-link {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.stellen__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 0;
  gap: 24px;
}
.stellen__empty-img {
  max-width: 280px;
  width: 100%;
}
.stellen__empty-title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
}
.stellen__empty-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  max-width: 480px;
}
.stellen__modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.stellen__modal.is-open {
  display: flex;
}
.stellen__modal .form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stellen__modal .form__grid--full {
  grid-template-columns: 1fr;
}
.stellen__modal .form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stellen__modal .form__field--full {
  grid-column: 1/-1;
}
.stellen__modal .form__label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  /* 19.146px */
  color: #000;
  font-weight: 700;
}
.stellen__modal .form__input,
.stellen__modal .form__select,
.stellen__modal .form__textarea {
  border-radius: 6px;
  border: 1px solid var(--Stroke, rgba(0, 0, 0, 0.15));
  background: var(--Base-White, #fff);
  box-shadow: 0 1px 2px 0 rgba(15, 22, 36, 0.05);
  padding: 8px 12px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #000;
  font-family: "Inter";
  outline: none;
  width: 100%;
}
.stellen__modal .form__input::-moz-placeholder, .stellen__modal .form__select::-moz-placeholder, .stellen__modal .form__textarea::-moz-placeholder {
  color: #545454;
}
.stellen__modal .form__input:-ms-input-placeholder, .stellen__modal .form__select:-ms-input-placeholder, .stellen__modal .form__textarea:-ms-input-placeholder {
  color: #545454;
}
.stellen__modal .form__input::placeholder,
.stellen__modal .form__select::placeholder,
.stellen__modal .form__textarea::placeholder {
  color: #545454;
}
.stellen__modal .form__input:focus,
.stellen__modal .form__select:focus,
.stellen__modal .form__textarea:focus {
  border-color: var(--color-primary);
}
.stellen__modal .form__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.stellen__modal .form__textarea {
  resize: vertical;
  height: 120px;
}
.stellen__modal .form__section-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 32px 0 16px;
}
.stellen__modal .form__section-note {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin: 8px 0 24px;
}
.stellen__modal .form__upload {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 4px;
}
.stellen__modal .upload-item__label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  /* 19.146px */
  color: #000;
  margin-bottom: 8px;
  display: block;
  font-weight: 700;
}
.stellen__modal .upload-item__box {
  border-radius: 8px;
  border: 1px dashed var(--Stroke, rgba(0, 0, 0, 0.15));
  background: var(--Base-White, #fff);
  box-shadow: 0 1px 2px 0 rgba(15, 22, 36, 0.05);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  height: 120px;
  justify-content: center;
}
.stellen__modal .upload-item__hint {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.stellen__modal .upload-item__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  /* 19.146px */
  color: #545454;
  border: 0;
  padding: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
}
.stellen__modal .upload-item__btn input[type=file] {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  /* 19.146px */
  color: #545454;
}
.stellen__modal .cform__real-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.stellen__modal .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}
.stellen__modal .wpcf7-list-item-label {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.stellen__modal .wpcf7-list-item-label a {
  color: var(--color-primary);
  text-decoration: underline;
}
.stellen__modal .cform__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.stellen__modal .cform__real-checkbox:checked ~ .cform__checkbox-box,
.stellen__modal .wpcf7-list-item input:checked ~ .cform__checkbox-box {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.stellen__modal .cform__real-checkbox:checked ~ .cform__checkbox-box::after,
.stellen__modal .wpcf7-list-item input:checked ~ .cform__checkbox-box::after {
  display: block;
}
.stellen__modal .form__checkbox-text a {
  color: var(--color-primary);
  text-decoration: underline;
}
.stellen__modal .form__submit {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 32px;
  transition: background 0.2s;
  position: relative;
}
.stellen__modal .form__submit::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M3 9H15M15 9L10.5 4.5M15 9L10.5 13.5' stroke='white' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.stellen__modal .form__submit:hover {
  opacity: 0.7;
}
.stellen__modal .form__submit svg {
  flex-shrink: 0;
}
.stellen__modal .mt-16 {
  margin-top: 16px;
}
.stellen__modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.stellen__modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 660px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
}
.stellen__modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #545454;
}
.stellen__modal-close:hover {
  color: #000;
}
.stellen__modal-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 24px;
  padding-right: 32px;
}

.form__modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.form__modal.active {
  display: flex;
}
.form__modal-social {
  display: flex;
  gap: 16px;
}
.form__modal-content {
  position: relative;
  padding: 24px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.05);
  z-index: 2;
  max-width: 640px;
  width: 100%;
}
.form__modal-header {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.form__modal-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
}
.form__modal-form {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  align-items: center;
  padding-right: 4px;
  max-width: 600px;
  border-radius: 8px;
  border: 1px solid var(--Stroke, rgba(0, 0, 0, 0.15));
  background: var(--White, #fff);
  overflow: hidden;
  height: 51px;
}
.form__modal-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 4px 4px 4px 16px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  font-family: Inter;
  background: transparent;
  color: #000;
  min-width: 0;
}
.form__modal-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.15);
}
.form__modal-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.15);
}
.form__modal-input::placeholder {
  color: rgba(0, 0, 0, 0.15);
}
.form__modal-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.form__modal-submit:hover {
  opacity: 0.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
  cursor: pointer;
  margin-top: 42px;
}
.btn:hover {
  opacity: 0.85;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  display: none;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.close {
  cursor: pointer;
}

.title-block + .promo {
  padding-top: 0;
}

.tvtipps + .partners .container {
  padding: 0;
}

.partners + .promo {
  padding-top: 0;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: 50px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: url("../img/chevron-down.svg") right 16px center no-repeat, #fff;
}

.select2-container--open .select2-selection--single {
  background: url("../img/chevron-top.svg") right 16px center no-repeat, #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--color-primary);
  color: white;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}

.title-block + .news {
  padding-top: 14px;
}

.page-id-675 .contact-form p,
.page-id-675 .contact-form p {
  display: contents;
}

.page-id-675 .contact-form p.cform__notice,
.page-id-675 .contact-form p.cform__notice {
  display: block;
}

.wpcf7-not-valid-tip {
  position: absolute;
  font-size: 12px;
}

.title-block + .contact-form {
  padding: 0 0 14px;
}

form a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stars .header__logo {
  margin-right: 10%;
}
.stars .shows__card:hover .shows__card-link {
  color: #fff;
}
.stars .shows__card::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  background: url(../img/stars.webp) no-repeat;
  z-index: 10;
  background-size: cover;
}
.stars .promo__bg,
.stars .newsletter__bg {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.stars .promo__btn {
  background: var(--color-primary);
  color: #fff;
}
.stars .promo__btn svg path {
  stroke: #fff;
}

.herz .header__burger {
  display: none;
}
.herz .header__left {
  align-items: center;
  gap: 16px;
}
.herz .header__nav {
  background: transparent;
}
.herz .header__nav-link {
  color: #fff;
  padding: 0 12px;
}
.herz .hero {
  padding-top: 64px;
}
.herz .channels p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
  margin-top: 16px;
}
.herz .footer__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.herz .footer__right {
  width: 50%;
}
.herz .footer__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.756%;
  color: #545454;
}
.herz .footer__nav {
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
}
.herz .footer__top {
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  gap: 16px;
}
.herz .footer__bottom {
  padding-top: 64px;
}

.woff .program__banner {
  background: linear-gradient(180deg, #efb61a 0%, #ef7f1a 100%), linear-gradient(180deg, #42c1ff 0%, #008cd1 100%);
}
.woff .program__date--active,
.woff .reception__item-btn,
.woff .program__tag--accent,
.woff .program__wishlist-float-count,
.woff .program__person-badge,
.woff .form__modal-submit,
.woff .cform__submit,
.woff .error-page a {
  background: var(--color-orange);
}
.woff .program__item-bookmark--active,
.woff .program__item-bookmark:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
}
.woff .cform__link {
  color: var(--color-orange);
}
.woff .program__wishlist-float svg path {
  stroke: var(--color-orange);
}
.woff a[class$=_btn],
.woff .sendungen__text-btn {
  background: var(--color-orange) !important;
  color: #fff !important;
}
.woff a[class$=_btn] svg,
.woff .sendungen__text-btn svg {
  stroke: #fff !important;
}

.krimi .footer {
  background: url("../img/k14.webp") no-repeat;
  background-size: cover;
}
.krimi .footer__text, .krimi .footer__copy, .krimi .footer__col-link {
  color: #fff !important;
}
.krimi .footer__col-title {
  color: #8e8e8e;
}
.krimi .footer__social-link {
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.krimi .program__banner-bg {
  position: absolute;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  pointer-events: none;
  right: 0;
  stroke-width: 1px;
  stroke: #000;
  mix-blend-mode: color-dodge;
}
.krimi .header {
  position: relative;
}
.krimi .header::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 164px;
  left: 0;
  background: url("../img/logo-hover.svg") no-repeat;
}
.krimi .tips.black .tips__inner {
  padding: 124px 96px;
}
.krimi .tips.black .tips__media {
  display: flex;
  justify-content: center;
}
.krimi .tips.black .tips__img {
  max-width: 465px;
}

.blau .footer {
  position: relative;
}
.blau .footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url("../img/bb13.webp") no-repeat;
  background-size: cover;
  z-index: 1;
}
.blau .footer .container {
  position: relative;
  z-index: 2;
}

.anime .tips.black .tips__inner {
  padding: 100px 96px;
}
.anime .header {
  position: relative;
}
.anime .header::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 164px;
  left: 0;
  background: url("../img/logo-hover.svg") no-repeat;
}
.anime .program__banner-bg {
  position: absolute;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  pointer-events: none;
  right: 0;
  stroke-width: 1px;
  stroke: #000;
  mix-blend-mode: color-dodge;
}

.telenovela .footer__logo img {
  max-width: 315px;
}

.filmgold .partners.black .container {
  background: #242424;
  position: relative;
  border-radius: 16px;
}
.filmgold .tips.black .tips__btn {
  background: #fff;
  color: #000;
}
.filmgold .tips.black .tips__btn svg path {
  stroke: #000;
}
.filmgold .sendungen__card-image .sendungen__card-img {
  -o-object-fit: cover;
  object-fit: cover;
}
.filmgold .tips.black .tips__inner {
  background: #242424;
  position: relative;
}
.filmgold .tips.black .tips__inner::before {
  position: absolute;
  content: "";
  border-radius: 16px;
  width: 100%;
  height: 100%;
  left: 0;
  background: url("../img/fg-20.webp") no-repeat;
  z-index: 1;
  top: 0;
}
.filmgold .tips.black .tips__media {
  z-index: 2;
}

.page-template-template-policy .single-news h2,
.page-template-template-policy .single-news h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin: 8px 0;
}

.page-id-794.media .title-block a.promo__btn {
  background: var(--color-primary);
  color: #fff;
  margin-top: 64px;
}
.page-id-794.media .title-block .container {
  max-width: 1400px;
  padding: 96px;
  border-radius: 16px;
  background: var(--Background, #f8f8f8);
}
.page-id-794.media .title-block .title-block__header {
  align-items: flex-start;
  padding: 0;
}

.media .partners--images .container {
  background: transparent;
  position: relative;
  border-radius: 0;
  padding: 0 20px;
}
.media .hero {
  padding-top: 40px;
}
.media .tips.grey .tips__inner {
  padding: 0;
}
.media .tips.grey .container {
  padding: 100px 96px;
}
.media .tips__inner {
  margin-bottom: 64px;
}
.media .tips__inner:last-of-type {
  margin-bottom: 0;
}
.media .tips__inner.tips--reverse {
  flex-direction: row-reverse;
}
.media .adcards {
  padding: 40px 0;
}
.media .adcards__card-img {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.media .adcards__card-title {
  color: #545454;
}
.media .adcards__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.media .adcards__card-btn {
  margin-top: 0;
}

@media (max-width: 1240px) {
  .partners__content {
    padding: 0 20px;
  }
}
@media (max-width: 1200px) {
  .header__search-bar {
    width: 94vw;
  }
}
@media (max-width: 1024px) {
  .sales-partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media .adcards {
    padding: 16px 0;
  }
  .media .adcards__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .media .adcards__header {
    margin-bottom: 24px;
  }
  .media .header {
    position: relative;
  }
  .media .header__bottom {
    display: none;
  }
  .media .header__burger {
    display: flex;
    height: 34px;
    padding: 8px 16px;
    width: 52px;
  }
  .media .header__top {
    padding: 14px 0;
  }
  .media .header__mobile-menu {
    top: 118%;
  }
  .media .header__menu-nav {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-radius: 0;
  }
  .media .header__menu-sub {
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    border: 0;
  }
  .media .header__logo img {
    width: 100%;
    max-width: 150px;
  }
  .media .tips__inner {
    margin-bottom: 32px;
  }
  .media .tips.grey .container {
    padding: 32px 20px;
  }
  .media .footer__logo img {
    max-width: 150px;
  }

  .tvtipps__item {
    gap: 32px;
  }

  .tips.grey .container {
    padding: 32px;
  }
  .tips.grey .tips__inner {
    padding: 0;
  }
  .tips.tips--reverse.tips--full-image .tips__inner {
    padding: 0;
  }
  .tips__inner {
    flex-wrap: wrap;
  }
  .tips__media {
    width: 100%;
  }
  .tips__content {
    width: 100%;
  }

  .about__title {
    font-size: 26px;
  }
  .about__bg {
    width: 70%;
  }

  .program__filter-select {
    min-width: 100%;
  }
  .program__filter-bookmark {
    width: 100%;
    justify-content: center;
  }
  .program__filter-select-wrap {
    width: 71%;
  }
  .program__filter-tag {
    width: 25%;
  }

  br {
    display: none;
  }

  .img-slider .container {
    padding: 0 20px;
  }
  .img-slider__inner {
    gap: 32px;
  }

  section.single-star {
    padding: 16px 0;
  }

  .single-star__inner {
    gap: 24px;
  }
  .single-star__media {
    width: 100%;
  }
  .single-star__content {
    width: 100%;
  }
  .single-star__title {
    font-size: 20px;
  }

  .herz .header__burger {
    display: flex;
  }
  .herz .header__logo {
    width: 100px;
    height: auto;
  }
  .herz .header__logo img {
    width: 100%;
  }
  .herz .header__menu-nav {
    padding: 0;
  }
  .herz .header_left {
    flex-direction: row-reverse;
  }
  .herz .header__nav {
    display: none;
  }
  .herz .hero {
    padding-top: 32px;
  }
  .herz .footer__top {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 32px;
  }
  .herz .footer__nav {
    grid-template-columns: repeat(1, 1fr);
  }
  .herz .footer__botoom {
    padding-top: 32px;
  }
  .herz .footer__left {
    width: 100%;
  }
  .herz .footer__right {
    width: 100%;
  }

  .contacts.grey .contacts__inner {
    padding: 32px 20px;
  }

  .download {
    padding: 32px 0;
  }
  .download__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .download__title {
    font-size: 20px;
  }

  .sponsors {
    padding: 32px 0;
  }
  .sponsors__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prizes__label {
    font-size: 18px;
  }

  .jury {
    padding: 32px 0;
  }
  .jury__title {
    margin-bottom: 24px;
  }
  .jury__grid {
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
  }

  .jury-slider.grey .jury-slider__inner {
    padding: 32px 20px;
  }
  .jury-slider.grey .jury-slider .container {
    border-radius: 0;
  }

  .portfolio.grey .portfolio__inner {
    padding: 32px 20px;
  }
}
@media (max-width: 768px) {
  .tv-showcase__play {
    width: 48px;
    height: 48px;
  }
  .tv-showcase__play svg {
    width: 50%;
  }
  .tv-showcase__item {
    flex-direction: column-reverse;
    gap: 24px;
    padding: 24px 0;
  }
  .tv-showcase__text {
    width: 100%;
  }
  .tv-showcase__card {
    width: 100%;
  }

  .sales-partners {
    padding: 16px 0;
  }
  .sales-partners__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .portfolio__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .portfolio__utem-link {
    padding: 16px;
  }
  .portfolio__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .portfolio__item-wrap {
    gap: 16px;
    min-height: 170px;
    padding: 16px;
  }

  .jury-slider__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .jury-slider__name {
    font-size: 20px;
    margin-top: 16px;
  }

  .jury__grid {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .films {
    padding: 32px 0;
  }
  .films.grey .films__inner {
    padding: 32px 20px;
  }
  .films__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .films__title {
    font-size: 24px;
  }
  .films__desc {
    gap: 10px;
  }

  .prizes {
    padding: 32px 0;
  }
  .prizes__title {
    font-size: 24px;
  }
  .prizes__amount {
    font-size: 16px;
  }
  .prizes__grid {
    margin-top: 24px;
    grid-template-columns: repeat(1, 1fr);
  }

  .contacts__inner {
    gap: 24px;
  }
  .contacts__title {
    font-size: 24px;
  }
  .contacts__name, .contacts__phone, .contacts__email {
    font-size: 18px;
  }
  .contacts__item {
    padding: 16px 0;
  }

  .download__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

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

  .sendungen-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sendungen-archive__header {
    margin-bottom: 24px;
  }

  .sendung-single__content {
    margin: 24px auto 0;
  }
  .sendung-single__title {
    font-size: 24px;
  }

  .hz-grid.grey {
    padding: 32px 0;
    border-radius: 0;
    margin: 16px 0;
  }
  .hz-grid__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .hz-grid__card-title {
    -webkit-line-clamp: unset;
    font-size: 20px;
  }

  .stellen__modal .form__grid {
    grid-template-columns: 1fr;
  }
  .stellen__modal-title {
    font-size: 20px;
  }
  .stellen__modal .form__section-title {
    font-size: 18px;
    margin: 16px 0;
  }

  .stars .header__logo {
    margin-right: 0;
  }

  .krimi .tips.black .tips__inner {
    padding: 32px;
  }

  .logo-header-fmh img {
    width: 50px;
    height: auto;
  }

  .stars-archive {
    padding: 16px 0;
  }
  .stars-archive__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stars-archive__card-name {
    font-size: 16px;
  }
  .stars-archive__alphabet {
    margin: 16px 0 24px;
  }
  .stars-archive__title {
    font-size: 24px;
  }
  .stars-archive__search-wrap {
    margin-top: 24px;
  }

  .single-star__inner {
    flex-direction: column;
  }
  .single-star__text {
    padding: 32px 0 16px;
  }
  .single-star__text div {
    padding: 16px 0;
  }
  .single-star__text div:first-of-type {
    margin-top: 16px;
  }
  .single-star h2 {
    font-size: 20px;
  }
  .single-star h3 {
    font-size: 18px;
  }

  .faq.faq--star .faq__question_header {
    gap: 24px;
  }

  .tvtipps + .partners .container {
    padding: 16px 0;
  }

  .img-slider {
    padding: 32px 0;
  }
  .img-slider--single .container {
    padding: 0;
  }
  .img-slider--single .img-slider__track {
    flex-direction: row;
    -webkit-animation: img-slider-left 10s linear infinite;
    animation: img-slider-left 10s linear infinite;
  }
  .img-slider--single .img-slider__text {
    padding: 0 20px;
  }
  .img-slider--single .img-slider__col {
    height: 164px;
  }
  .img-slider--single .img-slider__cols {
    max-width: 100%;
  }
  .img-slider--single .img-slider__cols::before {
    display: none;
  }
  .img-slider--single .img-slider__inner {
    flex-direction: column;
  }
  .img-slider__inner {
    flex-direction: column-reverse;
    padding: 20px 0;
  }
  .img-slider__text {
    max-width: 100%;
  }
  .img-slider__text h2 {
    font-size: 20px;
  }
  .img-slider__text p {
    margin-bottom: 24px;
  }
  .img-slider__cols {
    height: 350px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .img-slider__col {
    height: 350px;
  }
  .img-slider__img {
    aspect-ratio: 12/9;
  }

  .hero {
    padding: 32px 0 0;
  }
  .hero__slide {
    height: 100%;
  }
  .hero__content {
    padding: 64px 20px;
  }
  .hero__title {
    font-size: 24px;
    max-width: 90%;
  }
  .hero__btn {
    padding: 10px 18px;
    font-size: 13px;
    margin-top: 24px;
  }
  .hero__pagination {
    margin: 8px 0 16px;
  }

  .about {
    padding: 16px 0;
  }
  .about--one-image .about__inner {
    flex-direction: column-reverse;
  }
  .about--one-image .about__bg {
    top: -50px;
    width: 50%;
    z-index: 1;
  }
  .about--reverse .about__inner {
    flex-direction: column-reverse;
  }
  .about.grey .about__inner {
    padding: 32px 20px;
  }
  .about__inner {
    flex-direction: column;
    gap: 32px;
  }
  .about__title {
    font-size: 20px;
  }
  .about h2.about__title {
    font-size: 20px;
  }
  .about__buttons {
    margin-top: 24px;
  }
  .about__text {
    flex: none;
    width: 100%;
  }
  .about__images {
    width: 100%;
    padding: 0 20px;
  }
  .about__grid {
    gap: 9px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }

  .shows {
    padding: 32px 20px;
    margin: 0;
  }
  .shows__title {
    font-size: 24px;
  }
  .shows__card-top {
    min-height: 184px;
    padding: 20px;
  }
  .shows .shows__card-name {
    font-size: 18px;
  }
  .shows .shows__card-desc {
    display: none;
  }
  .shows__grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
  .shows__card-img {
    max-height: 163px;
  }
  .shows__card-bg {
    width: 180.571px;
    top: 40px;
    height: 164px;
    aspect-ratio: 98/89;
  }
  .shows .container {
    padding: 0;
  }

  .heart {
    padding: 16px 0;
  }
  .heart__title {
    font-size: 24px;
  }
  .heart__text {
    margin-top: 24px;
  }
  .heart__text h2 {
    font-size: 20px;
  }
  .heart__text h3 {
    font-size: 18px;
  }
  .heart a.heart__btn {
    margin-top: 0;
  }
  .heart__gallery {
    gap: 10px;
    margin: 24px 0;
  }

  .telenovela .footer__logo img {
    max-width: 100px;
  }

  .tips {
    padding: 16px 0;
  }
  .tips.black .tips__inner {
    padding: 32px;
    border-radius: 0;
  }
  .tips__inner {
    flex-direction: column;
    gap: 32px;
  }
  .tips__media {
    max-width: 100%;
  }
  .tips__btn {
    margin-top: 24px;
  }
  .tips__title {
    font-size: 24px;
  }
  .tips h2.tips__title {
    font-size: 20px;
  }

  .info {
    padding: 16px 0;
  }
  .info__title {
    font-size: 20px;
  }
  .info__header {
    padding-bottom: 32px;
  }
  .info__cards {
    gap: 10px;
  }
  .info__card-title {
    font-size: 16px;
  }
  .info__item {
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
  }
  .info__item.column {
    gap: 24px;
  }
  .info__item-left {
    width: 100%;
  }
  .info__item-title {
    font-size: 18px;
  }
  .info__item-right {
    width: 100%;
  }
  .info__cards {
    grid-template-columns: 1fr;
  }

  .program {
    padding: 16px 0;
  }
  .program__time {
    margin-right: 6px;
  }
  .program__filter-search {
    min-width: 100%;
  }
  .program__dates-arrow {
    display: none;
  }
  .program__header {
    margin-bottom: 32px;
  }
  .program__date {
    padding: 6px 20px;
  }
  .program__title {
    font-size: 24px;
  }
  .program__item {
    flex-direction: column;
    gap: 0;
    position: relative;
  }
  .program__item-share {
    position: absolute;
    top: 260px;
    right: 0;
    border: 0;
    padding: 0;
    justify-content: flex-end;
  }
  .program__item-share:hover {
    background: transparent;
  }
  .program__item-share:hover svg path {
    stroke: var(--color-primary);
  }
  .program__item-time {
    display: none;
  }
  .program__item-content {
    flex: unset;
    align-self: unset;
    margin-top: 32px;
  }
  .program__item-img-wrap {
    width: 100%;
    height: 200px;
    order: -1;
  }
  .program__item-img {
    max-height: 200px;
  }
  .program__item-mobile-meta {
    display: flex;
  }
  .program__item-tag--desktop {
    display: none;
  }
  .program__item-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .program__item-bookmark {
    position: absolute;
    top: 48px;
    right: 16px;
    border-radius: 8px;
    background: #fff;
  }
  .program__item-bookmark--active, .program__item-bookmark:hover {
    background: var(--color-primary);
  }
  .program__tag--desktop {
    display: none;
  }
  .program__filters {
    flex-wrap: wrap;
  }
  .program__filters-search {
    width: 100%;
  }
  .program__filters-bookmark {
    width: 100%;
    justify-content: center;
  }
  .program__banner {
    margin: 32px 0;
    padding: 32px 20px;
  }
  .program__banner-text {
    font-size: 20px;
  }

  .anime .tips.black .tips__inner {
    padding: 32px 20px;
  }

  .contact-form:last-of-type {
    padding: 16px 0 32px;
  }

  .contest-info.reverse .contest-info__inner {
    flex-direction: column;
  }

  .cform__submit {
    margin-top: 8px;
  }
  .cform__title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 16px;
  }
  .cform__note, .cform__notice {
    margin-top: 8px;
  }

  .form__modal-content {
    max-width: 90%;
  }
  .form__modal-input {
    padding: 12px 12px 16px;
    width: 100%;
  }
  .form__modal-submit {
    border-radius: 4px;
    justify-content: center;
    width: 100%;
  }
  .form__modal-form {
    flex-direction: column;
    background: #fff;
    height: auto;
    padding: 4px;
  }

  .error-page {
    padding: 32px 0;
  }
  .error-page h1 {
    margin-top: 24px;
    font-size: 24px;
  }
  .error-page a {
    margin-top: 24px;
  }

  .title-block.left .title-block__header {
    width: 100%;
  }
  .title-block__title {
    font-size: 24px;
  }
  .title-block__header {
    padding: 32px 0 24px;
    align-items: center;
    text-align: center;
  }
  .title-block form {
    margin-top: 32px;
  }

  .film-slider {
    padding: 16px 0;
  }
  .film-slider__swiper {
    margin-left: 70px;
    width: calc(100% + 80px);
  }
  .film-slider__inner {
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
  .film-slider .swiper-slide {
    width: 237px;
    height: 164px;
  }
  .film-slider__img {
    width: 237px;
    height: 164px;
    aspect-ratio: 237/164;
  }
  .film-slider .container {
    padding: 0;
  }

  .gallery {
    padding: 16px 0;
  }
  .gallery .swiper-slide {
    padding: 12px 12px 0;
  }
  .gallery .swiper-free-mode > .swiper-wrapper {
    margin: 0 0 0 3%;
  }
  .gallery__card-img {
    width: 120px;
    height: 125px;
  }
  .gallery__card-bg {
    width: 154px;
  }

  .sendungen {
    padding-bottom: 16px;
  }
  .sendungen.sendungen--s .sendungen__card {
    width: 100%;
    height: auto;
  }
  .sendungen.sendungen--s .sendungen__card-image .sendungen__card-img {
    min-height: 197px;
  }
  .sendungen.sendungen--actor .sendungen__text-subtitle {
    font-size: 16px;
  }
  .sendungen__item {
    flex-direction: column-reverse;
    gap: 24px;
    padding: 16px 0;
  }
  .sendungen__item--reverse {
    flex-direction: column-reverse;
  }
  .sendungen__text {
    width: 100%;
  }
  .sendungen__text-title {
    font-size: 18px;
  }
  .sendungen__text-btn {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
  }
  .sendungen__card {
    width: 100%;
    height: 260px;
    padding-left: 26px;
  }
  .sendungen__card-image {
    padding-left: 0;
  }
  .sendungen__card-title {
    font-size: 39px;
  }

  .features {
    padding: 32px 0;
  }
  .features .container {
    padding: 32px 0;
  }
  .features__header {
    padding: 0 20px;
    margin-bottom: 24px;
  }
  .features__title {
    font-size: 24px;
  }
  .features__grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .features__card {
    padding: 24px;
  }
  .features__card-title {
    font-size: 18px;
  }

  .single-news {
    padding: 32px 0 16px;
  }
  .single-news:last-of-type {
    padding: 32px 0;
  }
  .single-news img {
    margin-bottom: 24px;
  }
  .single-news__title {
    font-size: 24px;
  }
  .single-news h2,
.single-news h3,
.single-news h4 {
    margin: 16px 0 8px;
    font-size: 20px;
  }
  .single-news li strong {
    margin-top: 8px;
    font-size: 18px;
  }
  .single-news ul ul li strong,
.single-news ul ol li strong,
.single-news ol ul li strong,
.single-news ol ol li strong {
    font-size: 16px;
  }

  .dvd-info {
    padding: 32px 0;
  }
  .dvd-info__inner {
    flex-direction: column;
    gap: 24px;
  }
  .dvd-info__media {
    width: 100%;
  }
  .dvd-info__title {
    font-size: 24px;
  }

  .dvd-gallery {
    padding: 16px 0;
  }
  .dvd-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
  .dvd-gallery__main {
    grid-column: 1/3;
    grid-row: 1;
    height: 300px;
  }
  .dvd-gallery__img {
    -o-object-position: top;
    object-position: top;
  }
  .dvd-gallery__img:not(.dvd-gallery__img--small):not(.dvd-gallery__img--wide) {
    grid-column: 1;
    grid-row: 2;
    height: 270px;
  }
  .dvd-gallery__img--small {
    grid-column: 2;
    grid-row: 2;
    height: 270px;
  }
  .dvd-gallery__img--wide {
    grid-column: 1/3;
    grid-row: 3;
    height: 300px;
  }

  .contest-detail {
    padding: 32px 0;
  }
  .contest-detail__images {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }
  .contest-detail__title {
    font-size: 24px;
  }

  .contest-info {
    padding: 32px 0 16px;
  }
  .contest-info__inner {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .contest-info__images {
    width: 100%;
    gap: 10px;
  }
  .contest-info__title {
    font-size: 20px;
  }

  .adcards {
    padding: 32px 0;
  }
  .adcards__title {
    font-size: 20px;
  }
  .adcards__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .adcards__card-btn {
    margin-top: 12px;
  }
  .adcards__card-img {
    height: auto;
  }

  .advert {
    padding: 32px 0;
  }
  .advert__inner {
    flex-direction: column;
  }
  .advert__content {
    padding: 64px 20px;
  }
  .advert__img.desktop {
    display: none;
  }
  .advert__img.mobile {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .advert__title {
    font-size: 24px;
  }
  .advert__btn {
    margin-top: 24px;
  }
  .advert__media {
    width: 100%;
    height: 220px;
  }

  .imprint {
    padding: 32px 0 16px;
  }
  .imprint__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 24px;
  }
  .imprint__notice {
    max-width: 100%;
  }
  .imprint__notice-title {
    font-size: 18px;
  }

  .award__btn {
    width: 100%;
    justify-content: center;
  }
  .award__inner {
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
  }
  .award__media {
    width: 100%;
  }
  .award__content {
    padding: 0;
  }
  .award__desc {
    margin-bottom: 24px;
  }
  .award__title {
    font-size: 20px;
  }

  .channels .container {
    padding: 32px 20px;
  }
  .channels__title {
    font-size: 20px;
  }
  .channels__list {
    gap: 32px;
    margin-top: 24px;
  }
  .channels__item {
    flex-direction: column;
    gap: 20px;
  }
  .channels__item--reverse {
    flex-direction: column;
  }
  .channels__item-title {
    font-size: 20px;
  }
  .channels__media {
    width: 100%;
  }

  .faq {
    padding: 16px 0;
  }
  .faq__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .faq__question {
    padding: 24px 0;
  }
  .faq__question span {
    font-size: 18px;
  }
  .faq__answer {
    padding-bottom: 24px;
    max-width: 100%;
  }

  .reception__tabs {
    max-width: 100%;
  }
  .reception__tab {
    padding: 10px 12px;
    font-size: 14px;
  }
  .reception__item {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    padding: 24px 0;
  }
  .reception__item-logo {
    align-self: center;
  }
  .reception__logo-img {
    width: 165px;
    height: 124px;
    aspect-ratio: 161/121;
  }
  .reception__item-info {
    flex: 1;
    min-width: 200px;
  }
  .reception__item-action {
    width: 100%;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: space-between;
  }
  .reception__item-hotline {
    text-align: left;
  }

  .tvtipps__play {
    width: 56px;
    height: 56px;
  }
  .tvtipps__hero {
    margin-bottom: 16px;
  }
  .tvtipps__hero-img {
    aspect-ratio: 15/8;
  }
  .tvtipps__list {
    gap: 32px;
    padding: 32px 0;
  }
  .tvtipps__hero + .tvtipps__list {
    padding-top: 32px;
  }
  .tvtipps__item {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .tvtipps__item--reverse {
    flex-direction: column;
  }
  .tvtipps__item-text {
    display: contents;
  }
  .tvtipps__item-title {
    order: 1;
    margin-bottom: 8px;
  }
  .tvtipps__item-subtitle {
    order: 2;
    margin-bottom: 16px;
  }
  .tvtipps__item-media {
    order: 3;
    width: 100%;
  }
  .tvtipps__item-body {
    order: 4;
    margin: 24px 0;
  }
  .tvtipps__item-btn {
    order: 5;
  }
  .tvtipps__item-img {
    aspect-ratio: 16/9;
    min-height: 260px;
  }

  .header .logo-header-fmh img {
    width: 48px;
    height: 48px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--White, #fff);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.2s;
    cursor: pointer;
    margin-top: 16px;
  }
  .btn:hover {
    opacity: 0.85;
  }

  .promo form {
    flex-direction: column;
    background: #fff;
    height: auto;
    padding: 4px;
    align-items: stretch;
  }
  .promo__buttons {
    gap: 16px;
  }

  .newsletter {
    padding: 16px 0;
  }
  .newsletter__inner {
    padding: 32px 20px;
  }
  .newsletter__title {
    font-size: 20px;
  }
  .newsletter form {
    flex-direction: column;
    background: #fff;
    height: auto;
    padding: 4px;
    align-items: stretch;
  }
  .newsletter__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
  }
  .newsletter__icon svg {
    width: 25.358px;
    height: 25.358px;
  }
  .newsletter__desc {
    margin-bottom: 32px;
  }
  .newsletter__input {
    padding: 12px 12px 16px;
    width: 100%;
  }
  .newsletter__submit {
    border-radius: 4px;
    justify-content: center;
    width: 100%;
  }

  .promo {
    padding: 16px 0;
  }
  .promo__inner {
    padding: 32px 20px;
  }
  .promo__title {
    font-size: 20px;
    max-width: 60%;
  }

  .news {
    padding: 16px 0;
    border-radius: 0;
    margin: 0;
  }
  .news.news-grey {
    padding: 16px 0;
    border-radius: 0;
    margin: 0;
  }
  .news .container {
    padding: 0;
  }
  .news__card-link {
    display: none;
  }
  .news__date {
    margin-bottom: 8px;
  }
  .news__card-title {
    font-size: 18px;
  }
  .news__card-body {
    padding: 20px;
  }
  .news__header {
    margin-bottom: 32px;
    padding: 0 20px;
  }
  .news__title {
    font-size: 20px;
  }
  .news__nav {
    display: flex;
  }
  .news__footer {
    margin-top: 32px;
  }

  .press-slider {
    padding: 16px 0;
  }
  .press-slider.grey .press-slider__inner {
    padding: 32px 0;
  }
  .press-slider .container {
    padding: 0;
  }
  .press-slider__card-body {
    padding: 20px;
  }
  .press-slider__card-title {
    font-size: 18px;
  }
  .press-slider__card-desc {
    font-size: 14px;
  }
  .press-slider__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .press-slider__nav {
    display: flex;
  }

  .calendar {
    padding: 16px 0;
  }
  .calendar__header {
    margin-bottom: 24px;
  }
  .calendar__date {
    min-width: 75px;
  }
  .calendar__day {
    font-size: 24px;
  }
  .calendar__meta {
    gap: 16px;
  }
  .calendar__name {
    font-size: 20px;
  }
  .calendar__title {
    font-size: 24px;
  }
  .calendar__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
  }

  section.grey .container {
    border-radius: 0;
  }

  .partners.partners--images .container {
    padding: 16px 0;
  }

  .partners {
    padding: 16px 0;
  }
  .partners .container {
    padding: 32px 0;
  }
  .partners--images .partners__slide {
    height: auto;
    width: 150px !important;
  }
  .partners--images .partners__img {
    width: 100%;
    height: auto;
  }
  .partners--images .partners__content {
    padding: 0 20px;
    margin-bottom: 24px;
  }
  .partners--full .partners__slider {
    overflow: visible;
    max-width: 100%;
    margin: 0;
  }
  .partners--full .partners__logo {
    width: 160px;
    height: 120px;
    aspect-ratio: 160/120;
  }
  .partners--full .partners__slide {
    width: 160px !important;
    height: 120px;
  }
  .partners__subtitle {
    margin-bottom: 16px;
  }
  .partners .container {
    padding: 16px 20px;
  }
  .partners__swiper {
    margin-left: 0;
    width: 100%;
  }
  .partners__slide {
    width: 100px !important;
    height: 100px;
  }
  .partners__logo {
    width: 100px;
    height: 100px;
  }
  .partners__title {
    font-size: 24px;
    width: 100%;
  }
  .partners__desc {
    width: 100%;
  }
  .partners__content {
    padding: 0 20px;
  }
  .partners__slider {
    margin-top: 32px;
  }

  .footer {
    padding: 32px 0;
  }
  .footer__top {
    padding: 0 0 16px;
  }
  .footer__col-title {
    margin-bottom: 16px;
  }
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .footer__col {
    padding: 16px 0;
  }
  .footer__col:last-child {
    border-bottom: none;
  }
  .footer__col-list {
    gap: 10px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
  }
  .footer__bottom-nav {
    flex-direction: column;
    gap: 12px;
  }

  .header__block {
    display: none;
  }
  .header__top {
    padding: 16px 0;
  }
  .header__top-inner {
    min-height: 42px;
  }
  .header__mobile-menu {
    width: 100%;
    top: 58px;
    left: 0;
    border: 0;
    padding: 32px 20px;
  }
  .header__menu-secondary {
    box-shadow: unset;
    border-radius: 0;
    border: 0;
    padding: 24px 0 0;
  }
  .header__menu-nav {
    padding: 0 0 24px;
  }
  .header__menu-link {
    padding: 12px 16px;
  }
  .header__search-btn {
    height: 34px;
    padding: 8px 16px;
  }
  .header__burger {
    width: 50px;
    height: 34px;
  }
  .header__logo mr0 img {
    height: 42px;
  }
  .header__buttons {
    gap: 6px;
  }
  .header__left {
    flex-direction: row-reverse;
  }
  .header .dropdown > a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 12px 4px;
  }

  .anime .header::before {
    height: 74px;
  }

  .star-gallery {
    padding: 16px 0;
  }
  .star-gallery.grey {
    border-radius: 0;
    margin: 0;
  }
  .star-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 300px;
  }
  .star-gallery__grid > *:nth-child(1) {
    grid-column: span 2;
  }
  .star-gallery__grid > *:nth-child(2) {
    grid-column: span 1;
  }
  .star-gallery__grid > *:nth-child(3) {
    grid-column: span 1;
  }
  .star-gallery__grid > *:nth-child(4) {
    grid-column: span 1;
  }
  .star-gallery__grid > *:nth-child(5) {
    grid-column: span 1;
  }
  .star-gallery__grid > *:nth-child(6) {
    grid-column: span 2;
  }
  .star-gallery__pagination {
    margin: 16px 0;
  }
}
@media (max-width: 568px) {
  .program__wishlist-float-tooltip {
    white-space: normal;
    font-size: 14px;
  }

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

  .contacts__item {
    flex-direction: column;
  }

  .sendungen-archive__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .star-gallery__grid {
    grid-auto-rows: 230px;
  }

  .dvd-gallery__main {
    height: 196px;
  }
  .dvd-gallery__img:not(.dvd-gallery__img--small):not(.dvd-gallery__img--wide) {
    height: 124px;
  }
  .dvd-gallery__img--small {
    height: 124px;
  }
  .dvd-gallery__img--wide {
    height: 196px;
  }

  .contest-info__img {
    height: 170px;
  }

  .about__grid {
    gap: 9px;
    width: auto;
  }

  .program__filter-select-wrap {
    width: 59%;
  }
  .program__filter-tag {
    width: 36%;
  }
}
@media (max-width: 425px) {
  .portfolio__item-left {
    width: 100%;
  }
  .portfolio__item-wrap {
    flex-direction: column-reverse;
  }
  .portfolio__item-title {
    font-size: 18px;
  }

  .star-gallery__grid {
    grid-auto-rows: 180px;
  }
}
@media (max-width: 375px) {
  .footer__logo img {
    max-width: 100px;
  }

  .program__filter-select-wrap {
    width: 100%;
  }
  .program__filter-tag {
    width: 100%;
  }

  .promo__btn {
    padding: 12px;
  }
}