@import url(vars.css);

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}


html, body {
    height: 100%;
}


body {
    font-family: var(--font-a);
    font-size: 16px;
    line-height: 1.5em;
    display: flex;
    flex-direction: column;
}


.stop-scrolling {
    height: 100%;
    overflow: hidden;
}


.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
}


header {
    background-color: var(--color-black);
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}


.header-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


.header-icons {
    color: var(--color-white);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 5px;
    padding: 5px 10px;
}


.search-toggle {
    cursor: pointer;
}


.search-form {
    flex-grow: 1;
    text-align: right;
    opacity: 0;
    transition: opacity .5s;
    visibility: hidden;
    position: relative;
}


.search-form-active {
    opacity: 1;
    transition: opacity 1s, visibility 1s;
    visibility: visible;
}


.search-form input {
    padding: 7px 5px 7px 15px;
    font-size: 18px;
    width: calc(100% - 20px);
    height: 100%;
    border: none;
    border-radius: 5px;
}


.btn-search {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 20px;
    border: 1px solid var(--color-white);
    background-color: var(--color-black);
    color: var(--color-white);
    cursor: pointer;
}


.btn-search:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


.header-icons .icons img {
    height: 26px;
    width: auto;
    margin-left: 20px;
    transition: transform .5s;
}


.header-icons .icons img:hover {
    transform: scale(1.1);
}


.top-menu {
    display: flex;
    list-style: none;
}


.top-menu li a {
    color: var(--color-white);
    font-family: var(--font-c);
    font-weight: 300;
    font-size: 1.3rem;
    text-decoration: none;
    margin-left: 25px;
    display: inline-block;
    padding: 8px;
    text-transform: uppercase;
    position: relative;
}


.top-menu li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition: width .5s;
}


.top-menu li a:hover:after {
    width: 100%;
}


.hidden-link-top-menu {
    display: none;
}


.toggle-menu {
    display: none;
    align-items: center;
    width: 30px;
    height: 22px;
    background-color: #000;
    position: relative;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 30px;
}


.toggle-menu span {
    width: 30px;
    height: 4px;
    background-color: #fff;
}


.toggle-menu:after,
.toggle-menu:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 30px;
    height: 4px;
    background-color: #fff;
    transition: transform .5s;
}


.toggle-menu:before {
    top: 0;
}


.toggle-menu.active span {
    display: none;
}


.toggle-menu.active:after {
    transform: rotate(-45deg);
    bottom: 8px;
}


.toggle-menu.active:before {
    transform: rotate(45deg);
    top: 10px;
}


.quote {
    z-index: 4;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.quote p {
    color: var(--color-white);
    margin-top: 10px;
    padding: 20px;
    text-align: right;
    max-width: 300px;
    font-style: italic;
    font-family: var(--font-c);
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    font-size: 1.1rem;
}


.quote-home p {
    margin-bottom: -170px;
}


.quote span {
    display: block;
    margin-top: 10px;
}


.swiper {
    background-color: var(--color-black);
}


.home-slide {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 550px;
    background-position: center center;
    position: relative;
    color: var(--color-white)
}


.slide-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    padding: 50px 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    text-align: center;
}


.swiper-pagination-home {
    z-index: 10;
    position: absolute;
    width: 100%;
    bottom: 30px;
    text-align: center;
}


.swiper-pagination-home .swiper-pagination-bullet {
    height: 15px;
    width: 15px;
    color: #fff;
    background-color: #fff;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    border: 2px solid #fff;
    cursor: pointer;
}


.swiper-pagination-home .swiper-pagination-bullet-active {
    background-color: #000;
    cursor: default;
}


.btn {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 10px 30px;
    border-radius: 5px;
    border: none;
    font-size: 25px;
    font-weight: 500;
    font-family: var(--font-c);
    cursor: pointer;
}


.btn-subscribe {
    background-color: var(--color-white);
    color: var(--color-black);
    position: relative;
    z-index: 4;
}


.btn-subscribe:hover {
    background-color: antiquewhite;
}


.container-subscribe-home {
    text-align: right;
    padding-bottom: 20px;
    margin-top: -70px;
}


.flex-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}


.banner {
    height: 300px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content {
    flex-grow: 1;
}


.breadcrumbs {
    padding: 10px 20px;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 0.9rem;
    /* border-bottom: 3px double var(--color-white); */
    border-top: 1px solid var(--color-white);
}


.breadcrumbs a {
    color: var(--color-white);
    text-decoration: none;
    padding-right: 5px;
}


.breadcrumbs a:hover {
    text-decoration: underline;
}


.headding-page {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}


.headding-page h1 {
    font-size: 40px;
    font-family: var(--font-a);
    font-weight: 800;
    line-height: 3.3rem;
    margin: 0;
    background-color: var(--color-white);
    position: relative;
}


.subtitle {
    display: block;
    font-family: var(--font-c);
    font-weight: 300;
    font-size: 25px;
    line-height: inherit;
}


/*-------------Video-----------*/


/* .section-video {
  display: block;
  width: 100%;
  min-height: 500px;
  background-color: var(--color-black);
  position: relative;
} */


.video-cover {
    background-color: var(--color-black);
    position: relative;
    background-image: url(../img/video-cover-test.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 56.25%;
    /* задаёт высоту контейнера для 16:9 (если 4:3 — поставить 75%) */
    height: 0;
    overflow: hidden;
}


.video-cover img {
    display: block;
    width: 100%;
}


a.video-link {
    background: url('../img/youtube-play-btn.png') no-repeat;
    background-position: 0 -50px;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    position: absolute;
    height: 50px;
    width: 69px;
    transition: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}


a.video-link:hover {
    background-position: 0 0;
}


/* .video {
  position: relative;
  padding-bottom: 56.25%; / задаёт высоту контейнера для 16:9 (если 4:3 — поставить 75%) /
  height: 0;
  overflow: hidden;
}


.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
} */



.text-home {
    padding-top: 50px;
    padding-bottom: 50px;
}


.text-block h3,
h3 {
    font-family: var(--font-a);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1.2;
}


.home-list{
    list-style: none;
    padding-top: 10px;
}


.home-list li{
    position: relative;
    padding-left: 40px;
}


.home-list li:before{
    content: '';
    position: absolute;
    top: calc(50% - 6px);
    width: 30px;
    height: 10px;
    background-color: #000;
    left: 0;
    border-radius: 0px 4px 4px 0;
}


.categories-home {
    background-color: var(--color-black);
    padding-top: 30px;
    margin-bottom: 50px
}


.categories-home h2 {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 500;
    font-family: var(--font-a);
    text-align: center;
}


.categories-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    padding: 30px 0;
}


.categories-wrap figure {
    display: block;
    position: relative;
    overflow: hidden;
}


.categories-wrap figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    font-size: 30px;
    color: var(--color-white);
}


.categories-wrap img {
    width: 100%;
    display: block;
    filter: grayscale(.7);
    transition: transform 0.5s ease;
}


.categories-wrap img:hover{
    transform: scale(1.1);
}


.categories-page {
    grid-gap: 35px;
}


.categories-info {
    position: relative;
}


.categories-page figure {
    position: relative;
    margin-bottom: 75px;
}


.categories-page img {
    width: 85%;
    position: relative;
    z-index: 1;
    border: 10px solid var(--color-white);
    border-top: none;
    border-left: none;
    display: inline-block;
}


.categories-page figcaption {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    left: auto;
    width: 90%;
    height: calc(100% + 60px);
    background-color: var(--color-black);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.categories-text {
    padding-left: 10%;
    text-align: justify;
}


.categories-page .categories-info:nth-child(even) figure {
    text-align: right;
}


.categories-page .categories-info:nth-child(even) figcaption {
    left: 0;
    right: auto;
    align-items: flex-end;
}


.categories-page .categories-info:nth-child(even) img {
    border-left: 10px solid var(--color-white);
    border-right: none;
}


.categories-page .categories-info:nth-child(even) .categories-text {
    padding-left: 0;
    padding-right: 10%;
}


.news-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.news-wrapper .text-block {
    flex-basis: 320px;
    flex-grow: 1;
    margin-bottom: 20px;
    padding: 0 10px;
}


.advantage {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-evenly;
}


.advantage-item {
    background: #000;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 10px double #fff;
    /* padding: 15px;
    text-align: center;
    width: 25%; */
}


.advantage-icon {
    background-color: var(--color-black);
    color: var(--color-white);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.advantage-item-bottom {
    display: flex;
    flex-direction: column;
}


.advantage-headding {
    font-size: 20px;
    font-family: var(--font-a);
    line-height: 1.2;
    /* margin-bottom: 10px;
    min-height: 60px; */
    background-color: var(--color-white);
    padding: 2px 15px;
    margin-bottom: 0;
    text-transform: uppercase;
}


.advantage-text {
    font-family: var(--font-c);
    font-size: 18px;
}


.about-preview {
    background-image: url(../img/about_bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: auto;
    padding: 40px 0;
    margin-bottom: 40px;
    margin-top: -40px;
}


.about-preview-wrap-text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.about-preview-text h3 {
    font-weight: 500;
    font-size: 2rem;
    margin: 20px 0;
    font-family: var(--font-c);
    line-height: 1.1;
}


.about-preview-text {
    width: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--color-white);
    padding: 15px 20px;
    border-radius: 20px;
}


.about-detail-text {
    padding-bottom: 20px;
}


.about-preview-text p,
.about-detail-text p:not(:last-child) {
    margin-bottom: 20px;
}


.pagination-programm {
    overflow: hidden;
    height: 50px;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}


.pagination-programm-date {
    font-weight: 600;
}


.swiper-programm .swiper-pagination-bullet {
    background-color: var(--color-black);
    color: var(--color-white);
    width: calc(100% / 7);
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--color-black);
    font-size: 12px;
    flex-direction: column;
    transition: all 0.5s;
}


.swiper-programm .swiper-pagination-bullet-active {
    background-color: var(--color-white);
    color: var(--color-black);
    cursor: default;
}


.swiper-anons {
    margin-bottom: 30px;
}


.swiper-anons,
.swiper-programm {
    overflow: hidden;
}


.swiper-anons .slide-content {
    position: relative;
}


.swiper-anons .slide-content img {
    display: block;
    width: 100%;
}


.anons-text {
    position: absolute;
    bottom: 0;
    color: var(--color-white);
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    padding: 20px;
}


.anons-button-prev,
.anons-button-next {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    border-bottom: 5px solid #aaa;
    border-left: 5px solid #aaa;
    z-index: 1;
    cursor: pointer;
}


.anons-button-next {
    right: 10px;
    transform: rotate(-135deg);
}


.programm-top-info {
    padding: 30px 0;
}


.btn-live {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-c);
    font-size: 18px;
    font-weight: 300;
    border-radius: 0;
    width: 220px;
}


.btn-live span {
    position: relative;
    z-index: 2;
}


.btn-live span::after,
.btn-live span::before {
    content: '';
    background-color: var(--color-black);
    position: absolute;
    top: 50%;
    right: -8px;
}


.btn-live span::before {
    width: 9px;
    height: 19px;
    transform: translateY(-50%);
    z-index: 1;
}


.btn-live span::after {
    background-color: var(--color-white);
    transform: rotate(45deg) translateY(-50%);
    width: 10px;
    height: 10px;
    z-index: 0;
}


.one-day-programm {
    /* border-top:1px solid var(--color-black); */
    border-bottom: 1px solid var(--color-black);
    padding: 20px 10px;
    margin-bottom: 20px;
}


.telecast {
    display: flex;
    align-items: center;
}


.telecast:not(:first-child) {
    padding-top: 20px;
}


.telecast:not(:last-child) {
    border-bottom: 1px solid var(--color-black);
    padding-bottom: 20px;
}


.telecast-info {
    display: flex;
    flex-direction: column;
    min-width: 30%;
}


.telecast-info-time,
.telecast-info-age {
    display: inline-flex;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 5px 10px;
    margin-bottom: 10px;
}


.telecast-info-time span {
    font-weight: 600;
    font-size: 1.2rem;
    padding-right: 20px;
}


.telecast-info-title {
    margin-bottom: 10px;
}


.telecast-info-age {
    width: max-content;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}


.telecast-description {
    padding-left: 20px;
    font-size: 0.8rem;
}


.wrap-forms {
    text-align: center;
    padding: 75px 10px;
    max-width: 500px;
}


.tab {
    display: inline-block;
    width: 49%;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 15px 0;
    cursor: pointer;
    border: 1px solid var(--color-black)
}


.tab-active {
    background-color: var(--color-white);
    color: var(--color-black);
    cursor: default;
}


.tab-forms label {
    position: relative;
    display: flex;
    background-color: var(--color-black);
    margin: 20px 0;
    border-radius: 5px;
    height: 50px;
}


.tab-forms label input {
    width: 100%;
    padding-left: 10px;
}


.tab-forms label img {
    width: 50px;
    height: auto;
    padding: 5px;
}


.tab-forms p {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.hidden-form {
    display: none;
}


.operators {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}


.operator {
    flex-basis: 30%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}


.operator-img {
    display: flex;
    align-items: center;
    height: 100%;
}


.operator-img img {
    display: block;
    width: 100%;
}


.operator h3 {
    width: 100%;
    text-align: center;
}


.operator h3 a {
    text-decoration: none;
    color: var(--color-white);
    background-color: var(--color-black);
    display: block;
    padding: 5px 0;
    text-transform: uppercase;
}


.razdel-descriotion {
    margin-bottom: 30px
}


.section-black {
    background-color: var(--color-black);
    color: var(--color-white);
}


.broadcasts {
    padding: 20px 0;
}


.broadcast-descriotion {
    padding: 30px 10px 60px;
}


.broadcast-descriotion h1 {
    line-height: 1.3;
    font-family: var(--font-a);
}


footer {
    background-color: var(--color-black);
    padding: 25px 0;
    color: var(--color-white);
    text-align: center;
    border-top: 1px solid var(--color-white);
}


.icons-social p a img {
    height: 30px;
    margin: 30px 10px 30px;
}

.element-social {
    display: inline-flex;
}
/************************/


@media (max-width: 1024px) {

    .header-icons {
        display: block;
        padding-top: 50px;
        text-align: center;
    }

    .header-icons .icons {
        padding-bottom: 10px;
        border-bottom: 1px solid #fff;
        margin-bottom: 20px;
    }

    .header-icons .icons img {
        height: 30px;
    }

    .search-form {
        margin: 0 auto 30px;
        width: 95%;
        text-align: left;
    }

    .header-nav {
        display: none;
    }

    .header-nav-active {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        /* height: 100vh; */
        height: calc(var(--vh) * 100);
        z-index: 5;
        background-color: var(--color-black);
        overflow-y: auto;
        padding: 30px 0;
    }

    .top-menu.active {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        order: 1;
        width: 100%;
        /*position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
    background-color: var(--color-black); */
    }

    .hidden-link-top-menu {
        display: block;
    }

    .toggle-menu {
        display: flex;
        z-index: 100;
    }

    .top-menu li {
        display: block;
        width: 100%;
        text-align: center;
    }

    .top-menu li a {
        margin-left: 0;
        width: 100%;
    }

    /* .advantage {
        flex-wrap: wrap;
    }

    .advantage-item {
        width: 50%;
    }

    .advantage-headding {
        min-height: auto;
    } */

    .swiper-programm .swiper-pagination-bullet {
        width: 20%;
    }

    .swiper-anons {
        margin-bottom: 20px;
    }

    .broadcast-descriotion h1 {
        font-weight: 400;
        font-size: 27px;
    }
}



@media (max-width: 768px) {
    .banner {
        height: 250px;
    }

    .headding-page {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .headding-page h1 {
        font-size: 2.5rem;
        font-weight: 500;
        line-height: 2.7rem;
    }

    .advantage-icon {
        width: 80px;
        height: 80px;
    }

    .advantage-icon img {
        width: 40px;
    }

    .about-preview-text {
        width: 100%;
    }

    .swiper-programm .swiper-pagination-bullet {
        width: 33.3333%;
    }

    .telecast-info-title {
        font-size: 0.8rem;
        font-weight: 600;
    }

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

    .advantage-item {
        width: 80px;
        height: 80px;
        border: 8px double #fff;
    }

    .advantage-headding {
        font-size: 14px;
    }

    .home-list li{font-size: 0.9rem;}
}



@media (max-width: 600px) {
    .swiper-pagination-home {
        width: auto;
        left: 20px;
    }

    .headding-page {
        margin-top: 2rem;
        margin-bottom: 15px;
    }

    .headding-page h1 {
        font-size: 2rem;
        margin: 1rem auto;
    }

    .subtitle {
        font-size: 20px;
    }

    .categories-home {
        padding-top: 15px;
    }

    .categories-home h2 {
        font-size: 1.7rem;
        line-height: 2rem;
    }

    .categories-wrap {
        grid-template-columns: 1fr;
        grid-gap: 10px;
        padding: 15px 0;
    }

    .advantage-item {
        /* width: 100%; */
    }

    .advantage-headding {
        font-size: 11px;
        padding: 2px 10px;
    }

    .categories-page .categories-info:nth-child(even) img {
        position: relative;
        border: none;
    }

    .categories-info img {
        margin: auto;
        border: none;
        display: block;
        width: 100%;
    }

    .categories-info figcaption {
        width: 100%;
        align-items: flex-end;
    }

    .categories-text,
    .categories-page .categories-info:nth-child(even) .categories-text {
        padding: 0;
        margin-bottom: 20px;
    }

    .telecast {
        display: block;
        position: relative;
    }

    .telecast-info-title {
        font-size: 0.9rem;
    }

    .telecast-info-age {
        position: absolute;
        top: 20;
        right: 0;
        background-color: #999;
    }

    .telecast-description {
        padding-left: 0;
    }

    .operator {
        height: 250px;
    }

    .operators {
        display: block;
    }

    .razdel-quote {
        display: none;
    }

    .home-list li{font-size: 0.8rem;}
}



@media (max-width: 400px) {
    .advantage-item {
        width: 70px;
        height: 70px;
    }

    .advantage-headding {
        font-size: 9px;
    }
}



@media (min-width: 2000px) {
    .home-slide,
    .banner {
        height: 800px;
    }
}