@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* CSS */
:root {
  font-family: Inter, sans-serif;
  font-feature-settings: "liga" 1, "calt" 1; /* fix for Chrome */
}

@supports (font-variation-settings: normal) {
  :root {
    font-family: InterVariable, sans-serif;
  }
}
.logo__href {
  max-width: 85px;
  display: flex;
}
.logo__href img {
  width: 100%;
}

.menu {
  align-items: center;
  align-self: stretch;
  display: flex;
  max-width: 720px;
  gap: 40px;
}
.menu__href {
  display: flex;
  text-decoration: none;
  font-weight: 300;
  font-size: 20px;
  color: #EE2996;
  padding: 8px 16px;
}
.menu__href:hover {
  font-weight: 600;
}

footer {
  max-width: 1440px;
  padding: 50px 40px 60px;
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
}
footer .logo {
  max-width: 450px;
  display: flex;
  width: 100%;
  justify-content: center;
}
footer .logo__href {
  display: flex;
  max-width: 305px;
  align-items: center;
}
footer .logo img {
  width: 100%;
}
footer .menu__href {
  line-height: 1.42;
  font-size: 16px;
}
footer .menu__item {
  width: 50%;
  display: flex;
  align-items: center;
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 540px);
}

* {
  box-sizing: border-box;
}

body {
  line-height: 1;
  background-image: url("/images/bg/bg-1.jpg");
  background-size: 300px;
  background-position: 0 0;
}

header {
  max-width: 1440px;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
  z-index: 100;
  background-color: #ffffff;
  border-radius: 8px;
}
header .empty {
  width: 200px;
}

main {
  margin: 10px 0;
  display: flex;
}

.module__section {
  display: flex;
  flex-wrap: wrap;
}
.module__section .readmore a {
  padding: 0 0 4px;
  display: flex;
}
.module__watch_today, .module__news, .module__recommended {
  padding: 0 80px 40px;
}
.module__watch_today .img, .module__news .img, .module__recommended .img {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 16px;
}
.module__watch_today {
  padding: 0 80px;
  position: relative;
}
.module__watch_today::after {
  content: "";
  position: absolute;
  z-index: 100;
  right: 40px;
  height: 100%;
  background: linear-gradient(270deg, #fff, #fff, rgba(255, 255, 255, 0));
  width: 130px;
  bottom: 0;
}
.module__news .img {
  max-width: 420px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.module__article .img {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.module__aside {
  display: flex;
  flex-direction: column;
  padding: 40px 25px 20px;
  background-color: #ffffff;
  border-radius: 16px;
}
.module__aside .img {
  overflow: hidden;
  border-radius: 16px;
}
.module__aside .article, .module__aside .program {
  padding: 0 0 20px;
  margin: 0 0 20px;
}
.module__aside .article:last-child, .module__aside .program:last-child {
  padding: 0;
  margin: 0;
}
.module__aside .article h3, .module__aside .program h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.module__block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 40px 80px;
  background-color: #ffffff;
  position: relative;
  border-radius: 16px;
  margin: 0 auto;
}
.module__block .h2 h2 {
  margin: 0;
}
.module__block .list__current_programs {
  padding: 0;
}
.module__block .list__current_programs::after {
  content: "";
  position: absolute;
  z-index: 100;
  right: 0;
  height: 100%;
  background: linear-gradient(270deg, #fff, #fff, rgba(255, 255, 255, 0));
  width: 130px;
  bottom: 0;
}
.module .h2 {
  margin: 0 0 20px;
  display: flex;
  gap: 40px;
  width: 100%;
  align-items: flex-end;
}
.module h2 {
  font-size: 36px;
  font-weight: 600;
}

.readmore a {
  text-decoration: none;
  color: #EE2E9A;
  font-size: 16px;
  font-weight: 300;
}

p {
  line-height: 1.414734;
  font-size: 16px;
  margin: 0 0 20px;
}

.aside_link {
  text-decoration: none;
  color: #131414;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.article {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 40px;
  padding: 0 0 40px;
  margin: 0 0 40px;
  position: relative;
}
.article::after {
  content: "";
  position: absolute;
  background-color: #cecece;
  bottom: 0;
  height: 1px;
  width: 100%;
  display: flex;
}
.article:last-child {
  padding: 0;
  margin: 0;
}
.article:last-child::after {
  display: none;
}
.article .description {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 calc(100% - 460px);
  align-self: flex-start;
}
.article h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.22712;
}

.list__programs {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.list__programs .program {
  max-width: 268px;
  width: 100%;
  display: flex;
}
.list__programs .program img {
  width: 100%;
}
.list__current_programs {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1360px;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 0 0 40px;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.list__current_programs::-webkit-scrollbar {
  display: none;
}

.current_programs {
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
  gap: 40px;
  white-space: nowrap;
  padding: 0 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS */
  scroll-behavior: smooth; /* Плавная прокрутка */
  gap: 20px; /* Расстояние между элементами */
  padding: 10px;
  cursor: grab;
  /* Скрытие скроллбара */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE и Edge */
}
.current_programs::-webkit-scrollbar {
  display: none;
}
.current_programs:active {
  cursor: grabbing;
}

.current_program {
  position: relative;
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  color: #131414;
}
.current_program .img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.current_program .time {
  position: absolute;
  z-index: 100;
  bottom: 15px;
  left: 15px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}
.current_program .text {
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 20px;
}

.program_link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: #131414;
}
.program_link h3 {
  font-size: 20px;
  font-weight: 600;
}
.program_link .img {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.on_air {
  position: absolute;
  z-index: 100;
  top: 10px;
  left: 15px;
  display: flex;
}

.in_on_air {
  background-color: #ffffff;
  padding: 6px 9px 6px 23px;
  position: relative;
  display: flex;
  font-size: 11px;
  border-radius: 8px;
}
.in_on_air::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  background-color: red;
  top: 6px;
  left: 7px;
  border-radius: 50%;
}

aside {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: flex-start;
  position: sticky;
  top: 10px;
  margin: 0 auto 10px;
  gap: 25px;
}
aside .list {
  flex-wrap: wrap;
}
aside .list .program {
  max-width: 300px;
  width: 100%;
}
aside img {
  width: 100%;
}

.column {
  width: calc(100% - 375px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-self: flex-start;
  gap: 20px;
}

.row {
  max-width: 1440px;
  width: 100%;
  display: flex;
  gap: 25px;
  margin: 0 auto;
}
.row .section__block {
  max-width: calc(100% - 375px);
  width: 100%;
  margin: 0 0 10px;
}

.section__block {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 80px;
  width: 100%;
}

.article .img {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.page__homepage {
  max-width: 1440px;
  width: 100%;
  flex: 0 0 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
  gap: 50px;
}

.page__news {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.page__news .module__block {
  max-width: 1440px;
  margin: 0 auto;
}
.page__news h1 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 20px;
}
.page__news .article {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
}
.page__news .article h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.22246;
}
.page__news .article .img {
  display: flex;
  overflow: hidden;
  border-radius: 8px;
  flex: 0 0 420px;
}
.page__article {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  gap: 25px;
}

.intro_section {
  display: flex;
  margin: 0 0 25px;
  gap: 40px;
}
.intro_section .img {
  flex: 0 0 420px;
  display: flex;
  align-items: flex-start;
  border-radius: 8px;
  overflow: hidden;
}
.intro_section h1 {
  font-size: 24px;
  margin: 0 0 20px;
  font-weight: 600;
  line-height: 1.22452457;
}

.page__info {
  display: flex;
  max-width: 1440px;
  gap: 20px;
  margin: 0 auto;
}
.page__info h1 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 20px;
}
.page__info h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
}
.page__info article {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 80px;
}

.page__programs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.page__programs .module__block {
  max-width: 1440px;
  margin: 0 auto;
}
.page__programs h1 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 20px;
}
.page__programs .list__programs {
  flex-wrap: wrap;
}
.page__programs .program {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  width: 100%;
  max-width: 1920px;
  padding: 0 0 40px;
  margin: 0 0 40px;
  border-bottom: 1px solid #dedede;
}
.page__programs .program h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.22246;
}
.page__programs .program .img {
  display: flex;
  overflow: hidden;
  border-radius: 8px;
  flex: 0 0 360px;
  align-self: flex-start;
  max-width: 360px;
}
.page__article {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  gap: 25px;
}

.intro_section {
  display: flex;
  margin: 0 0 25px;
  gap: 40px;
}
.intro_section .img {
  flex: 0 0 420px;
  display: flex;
  align-items: flex-start;
  border-radius: 8px;
  overflow: hidden;
}
.intro_section h1 {
  font-size: 24px;
  margin: 0 0 20px;
  font-weight: 600;
  line-height: 1.22452457;
}

.page__program {
  margin: 0 auto;
}
.page__program article {
  width: calc(100% - 375px);
  background-color: #ffffff;
  padding: 40px 80px;
  border-radius: 16px;
  display: flex;
  gap: 40px;
}
.page__program article h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
}
.page__program article h2 {
  font-weight: 600;
  margin: 0 0 20px;
}
.page__program article .img {
  position: sticky;
  top: 10px;
  display: flex;
  align-self: flex-start;
  overflow: hidden;
  border-radius: 16px;
  flex: 0 0 406px;
  max-width: 406px;
  width: 100%;
}
.page__program article img {
  width: 100%;
  display: flex;
  align-self: flex-start;
}
.page__program .row {
  margin: 0 auto 25px;
}
.page__program .module {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto 10px;
}

.module__watch_today {
  position: relative;
}
.module__watch_today::after {
  content: "";
  position: absolute;
  z-index: 100;
  right: 40px;
  height: 100%;
  background: linear-gradient(270deg, #fff, #fff, rgba(255, 255, 255, 0));
  width: 130px;
  bottom: 0;
}

.page__program_schedule {
  margin: 0 auto;
}
.page__program_schedule h1 {
  font-size: 34px;
  margin: 0 0 20px;
  font-weight: 600;
}
.page__program_schedule .row .section {
  flex-wrap: wrap;
}
.page__program_schedule .row .list {
  flex-wrap: wrap;
}
.page__program_schedule .row .program {
  width: 100%;
  max-width: 1920px;
  gap: 40px;
  position: relative;
  padding: 0 0 20px;
  margin: 0 0 20px;
}
.page__program_schedule .row .program::after {
  content: "";
  position: absolute;
  background-color: #cecece;
  bottom: 0;
  height: 1px;
  width: 100%;
  display: flex;
}
.page__program_schedule .row .program:last-child::after {
  display: none;
}
.page__program_schedule .row .program .text {
  padding: 8px 0;
}
.page__program_schedule .row .program .time {
  font-weight: 600;
  margin: 0 0 15px;
}
.page__program_schedule .row .program h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px;
}
.page__program_schedule .row .img {
  max-width: 250px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-self: flex-start;
}
.page__program_schedule .aside_link {
  width: 100%;
}
.page__program_schedule .module__aside .img {
  max-width: 300px;
}

.days_row {
  display: flex;
  margin: 0 0 50px;
}
.days_row a {
  text-decoration: none;
  color: #131414;
  font-size: 16px;
}
.days_row a:hover {
  color: #EF2D98;
}

.days {
  display: flex;
  flex: 1 1 120px;
  gap: 45px;
  align-items: flex-end;
}

.day {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.day.active .day__name {
  font-size: 24px;
  color: #EF2D98;
}

.next_week {
  max-width: 120px;
  display: flex;
  align-items: flex-end;
  display: none;
}
.next_week a {
  color: #707070;
  font-weight: 300;
}

.day__name {
  display: flex;
  margin: 0 0 5px;
  text-transform: capitalize;
  font-weight: 300;
}

.day__date {
  font-size: 12px;
  color: #707070;
}

.swiper {
  width: 1440px;
  height: 650px;
}

.slider__homepage .swiper-slide {
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
}
.slider__homepage .swiper-slide a {
  display: flex;
  position: relative;
  z-index: 1;
}

.mob__menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  z-index: 150;
  height: 100%;
  width: 80%;
  padding: 40px 0 0 0;
  flex-direction: column;
}
.mob__menu_btn {
  display: none;
  width: 40px;
  height: 40px;
  content: "";
  position: relative;
  background-image: url("/images/icons/mob-menu.png");
  background-position: center;
  background-size: 80%;
  background-repeat: no-repeat;
}
.mob__menu_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mob__menu_list .menu__href {
  display: flex;
  text-decoration: none;
  font-weight: 300;
  font-size: 20px;
  color: #EE2996;
  padding: 12px 36px;
  justify-content: center;
}

.popup_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 120;
  display: none;
}

.bg_close {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  background-color: rgba(0, 0, 0, 0.45);
}

@media screen and (max-width: 600px) {
  header {
    padding: 0 15px;
  }
  .page__homepage {
    flex: 0 0 100%;
  }
  .page__homepage h1 {
    font-size: 23px;
    padding: 25px 0 0;
  }
  .page__program_schedule h1 {
    font-size: 23px;
    padding: 25px 0 0;
  }
  .page__program_schedule .row .img {
    max-width: 360px;
    margin: 0 auto;
  }
  .page__news h1 {
    font-size: 23px;
    padding: 25px 0 0;
  }
  .page__news .article {
    flex-wrap: wrap;
  }
  .page__news .text {
    width: 100%;
  }
  .page__programs h1 {
    font-size: 23px;
    padding: 25px 0 0;
  }
  .page__programs .list__programs .program {
    width: 100%;
    flex-wrap: wrap;
  }
  .page__program article {
    width: 100%;
    padding: 20px 15px;
    flex-wrap: wrap;
  }
  .page__program article .img {
    position: relative;
    margin: 0 auto;
  }
  .page__info {
    flex-wrap: wrap;
  }
  .page__info h1 {
    font-size: 23px;
    padding: 25px 0 0;
  }
  .page__info article {
    padding: 0 15px;
  }
  .page__article {
    flex-wrap: wrap;
  }
  .page__article .img {
    margin: 0 auto;
  }
  .page__article img {
    width: 100%;
  }
  .column {
    width: 100%;
  }
  .swiper {
    width: 100%;
    height: auto;
  }
  .menu__pc {
    display: none;
  }
  .section__block {
    padding: 0 15px;
  }
  .module__aside {
    width: 100%;
  }
  .module__slider .slide__link {
    height: 300px;
  }
  .module__slider .slide__link img {
    object-fit: cover;
    width: 100%;
    height: auto;
  }
  .module__section, .module__watch_today, .module__news, .module__recommended {
    padding: 0 15px 25px;
    width: 100%;
  }
  .module__watch_today::after {
    right: 0;
  }
  .module__block {
    padding: 0 15px 25px;
  }
  .module__block::after {
    right: 0;
  }
  .module .h2 {
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }
  .module h2 {
    padding: 15px 0 0;
    font-size: 23px;
  }
  .intro_section {
    flex-wrap: wrap;
  }
  .empty {
    display: none;
  }
  .readmore {
    width: 100%;
  }
  .footer {
    flex-wrap: wrap;
    padding: 15px;
    gap: 25px;
    justify-content: center;
    text-align: center;
  }
  .footer__menu {
    width: 100%;
  }
  .footer .menu__item, .footer .menu__href {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .article {
    flex-wrap: wrap;
    gap: 20px;
  }
  .article .description {
    width: 100%;
    flex: 0 0 100%;
  }
  .article .img {
    margin: 0 auto;
  }
  .article img {
    width: 100%;
  }
  .list__current_programs {
    padding: 0;
  }
  .list__programs {
    flex-wrap: wrap;
    gap: 20px;
  }
  .list__programs .program {
    width: calc(50% - 10px);
  }
  .row {
    flex-wrap: wrap;
  }
  .row .section__block {
    max-width: 1440px;
    padding: 0 15px 25px;
  }
  .program {
    flex-wrap: wrap;
  }
  .program .text {
    width: 100%;
  }
  .days_row {
    overflow: hidden;
  }
  .days {
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    overflow-y: auto;
  }
  .days::-webkit-scrollbar {
    display: none;
  }
  .day.active {
    display: flex;
  }
  aside {
    max-width: 1440px;
  }
  .mob__menu.active {
    display: flex;
  }
  .mob__menu_btn {
    display: flex;
  }
  .mob__menu .logo {
    display: flex;
    position: relative;
    justify-content: center;
    margin: 0 0 40px;
  }
  .popup_bg.active {
    display: flex;
  }
}

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