html, body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

a:hover, a:focus{
    color: #00B2CA;
    text-decoration: none;
}

.container-fluid{
    max-width: 1440px;
}

/********************
    HEADER-SECTION
*********************/

.header-section{
    background: #0068A4;
    /* background: #00B2CA; */
    /*background: linear-gradient(81.07deg, #0068A4 0%, rgba(0, 178, 202, 0) 100%);*/
    position: relative;    
    overflow: auto;    
    min-height: 200px;
}
/*
.header-section::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(55.96deg, #0068A4 0%, rgba(0, 178, 202, 0) 100%);
}*/

.header-section.n-main{
    min-height: auto;    
}

@media (min-width: 768px) {
    .header-section{   
        max-height: 285px;
        min-height: 200px;
    }

    .header-section.n-main{
        min-height: auto;        
    }
}

@media (min-width: 992px) {
    .header-section{   
        max-height: 285px;
        min-height: 200px;
    }

    .header-section.n-main{
        min-height: auto;        
    }
}

@media (min-width: 1600px) {
    .header-section{   
        max-height: 285px;
        min-height: 200px;
    }

    .header-section.n-main{
        min-height: auto;        
    }
}

/*** HEADER-TIMETABLE ***/

.h-timetable-block{
    display: block;
    width: 100%;
    min-height: 35px;
    max-height: 35px;
    background: rgba(1, 147, 187, .3);
    color: #FFFFFF;
    line-height: 35px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    overflow: hidden;
    transition: all .4s;
}

.h-timetable-block-inner{
    display: flex;
    z-index: 13;
    margin-bottom: 15px;
}

.h-timetable-block-inner-item{
    display: flex;
    overflow: hidden;
    width: 50%;
    z-index: 13;
}

.h-timetable-now{
    width: calc(50% + 50px);
    z-index: 13;
}

.h-timetable-now::after{position: absolute;
    content: '';
    width: calc(50% + 50px);
    height: 100%;
    border-radius: 0px 0px 15px 0px;
    background: rgba(1, 119, 172, .3);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.h-timetable-next{
    padding-left: 13px;
    width: calc(50% - 50px);
    z-index: 13;
}

.h-timetable-time{
    font-family: inherit;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: #FFFFFF;
    opacity: .9;
    margin-right: 10px;
    transition: all .4s;
    z-index: 13;
    white-space: nowrap;
}

.h-timetable-desc, .htd-desc{
    font-family: inherit;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    color: #FFFFFF;
    opacity: .5;
    margin-right: 10px;
    transition: all .4s;
    z-index: 13;
    white-space: nowrap;
}

.h-timetable-title, .htd-title{
    font-family: inherit;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: #FFFFFF;
    opacity: .9;
    margin-right: 10px;
    transition: all .4s;
    z-index: 13;
    white-space: nowrap;
}
a.h-timetable-block-inner-item:hover .h-timetable-time, .h-timetable-block-inner-item:hover .h-timetable-desc, .h-timetable-block-inner-item:hover .h-timetable-title, .h-timetable-block-inner-item:hover .htd-title, .h-timetable-block-inner-item:hover .htd-desc{
    text-decoration: none;
    opacity: 1;
    transition: all .4s;
    z-index: 13;
}

.top-arrow{
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 300;
}

.top-arrow-fluid{
    position: relative;
    top: 0;
}

.navbar-toggler.navbar-arrow{
    position: absolute;
    right: 15px;
    top: 8px;
    width: 19px;
    height: 19px;
    background: #FFFFFF;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    color: #0193BB;
    transition: all .4s;
    padding: 0;
    margin: 0;
    z-index: 33;
}

.navbar-toggler.navbar-arrow:focus, .navbar-toggler.navbar-arrow:hover{
    outline: 0;
}

.navbar-arrow-icon{
    position: absolute;
    width: 19px;
    height: 19px;
    top: -1px;
    left: -1px;
    right: 0;
    bottom: 0;
    font-size: 13px;
    line-height: 19px;
}

.navbar-arrow-icon::after{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '\2191';
    width: 19px;
    height: 19px;
    transition: all .4s;

}

.collapsed .navbar-arrow-icon::after{
    content: '\2193';
    transition: all .4s;

}

.h-timetable-block.collapse:not(.show){
    display: block;
}

.h-timetable-block.collapse.show{
    background: rgba(1, 147, 187, .8);    
    max-height: 200px;
    transition: all .4s;
}

.h-timetable-block.collapse.show .h-timetable-now::after{
    background: rgba(1, 119, 172, .8);
}

.h-timetable-block.collapse.show .h-timetable-desc, .h-timetable-block.collapse.show .h-timetable-title{
    display: none;
}

.h-timetable-block.collapse.show .h-timetable-block-inner-item{
    flex-direction: column;
}

.h-timetable-data{
    display: none;
}

.h-timetable-block.collapse.show .h-timetable-data{
    display: flex;
    z-index: 1;
}

.htd-content{
    display: flex;
    flex-direction: column;
}

.htd-img-block{
    display: none;
    position: relative;
    width: 62px;
    height: 78.75px;
    border-radius: 2px;
    min-width: 62px;
    overflow: hidden;
    margin-right: 15px;
}

.htd-img-block-next{
    display: none;
}

@media (min-width: 576px) {
    .htd-img-block{
        display: block;
    }
}

@media (min-width: 768px) {
    .htd-img-block-next{
        display: block;
    }
}

@media (min-width: 992px) {
    .htd-img-block{
        min-width: 62px;
    }
}

.htd-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 2px;
}

.htd-title{
    line-height: 18px;
    margin-bottom: 2px;
}

.htd-desc{
    line-height: 18px;
    margin-bottom: 6px;
}

.htd-btn{
    background: #FFFFFF;
    border-radius: 45px;
    padding: 7px 20px;
    font-family: inherit;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    color: #5DB3D0;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    transition: all .4s;
    max-width: 120px;
}

@media (min-width: 576px) {
    .htd-btn{
        max-width: 150px;
    }
}

.htd-play-svg{
    border: 1px solid #5DB3D0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-right: 6px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    transition: border .4s;
}

.htd-play-svg svg{
    width: 6px;
    height: 8px;
    position: relative;
    left: 1px;
}

.h-timetable-now:hover .htd-btn{
    background: #5DB3D0;
    color: #FFFFFF;
    transition: all .4s;
}

.h-timetable-now:hover .htd-play-svg{
    border: 1px solid #FFFFFF;
    transition: border .4s;
}

/*** HEADER-LSLS ***/

.h-lsls-block{
    padding: 8px 0px;
    z-index: 13;
    margin-top: 0px;
    margin-left: 47px;
}

@media (min-width: 768px) {
    .h-lsls-block{
        padding: 16px 0;
        margin-left: 0;
    }    
}

.h-lsls-block-inner{
    display: flex;
    align-content: center;
    z-index: 13;
}

/*** HEADER-LOGO ***/

.h-logo{
    margin-right: 15px;
    display: flex;
    align-items: center;
    z-index: 13;
}

@media (min-width: 576px) {
    .h-logo{
        margin-right: 18px;
    }
}

@media (min-width: 992px) {
    .h-logo{
        margin-right: 28px;
    }
}

/*** HEADER-SEARCH ***/

.search-form{
    position: relative;
    margin-right: 15px;
    z-index: 13;
}

@media (min-width: 576px) {
    .search-form{
        margin-right: 18px;
    }
}

@media (min-width: 992px) {
    .search-form{
        margin-right: 28px;
    }
}

.search-input{
    min-width: 30px;
    max-width: 50px;
    background: rgba(255, 255, 255, 0.1);
    padding: 7px 14px;
    font-size: 13px;
    color: #FFFFFF;
    border: 0;
    border-radius: 45px 0 0 45px;
    z-index: 13;
}

@media (min-width: 359px) {
    .search-input{
        min-width: 50px;
        max-width: 80px;
    }
}

@media (min-width: 374px) {
    .search-input{
        min-width: 80px;
        max-width: 100px;
    }
}

@media (min-width: 410px) {
    .search-input{
        min-width: 100px;
        max-width: 120px;
    }
}

@media (min-width: 576px) {
    .search-input{
        min-width: 120px;
        max-width: 180px;
    }
}

@media (min-width: 768px) {
    .search-input{
        min-width: 200px;
        max-width: 330px;
    }
}

.search-input:focus{
    outline: none;
    z-index: 13;
}

.form-control::-webkit-input-placeholder{color: rgba(255, 255, 255, .3);opacity: 1;}
.form-control::-moz-placeholder{color: rgba(255, 255, 255, .3);opacity: 1;}
.form-control:-ms-input-placeholder{color: rgba(255, 255, 255, .3);opacity: 1;}
.form-control::placeholder {color: rgba(255, 255, 255, .3);opacity: 1;}

.search-button{
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 45px 45px 0;
    border: 0;
    margin-left: 0;
    z-index: 13;
    max-width: 50px;
}

.form-control{
    height: auto;
}

.input-group>.form-control+.form-control{
    margin-left: 0;
}

.input-group>.form-control+.form-control.search-button{
    min-width: 30px;
}

.form-control:focus {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
}

.search-form:focus{
    background: rgba(255,255,255,.3);
    border-radius: 45px;
}

/*** HEADER-LIVE-BTN ***/

.h-live-btn{
    display: flex;
    align-items: center;
    background: #FF6B6B;
    padding: 0px 10px;
    border-radius: 10px 2px;
    z-index: 13;
    transition: all .4s;
}

@media (min-width: 576px) {
    .h-live-btn{
        padding: 2px 14px;
    }
}

.live-btn-text{
    margin-left: 6px;
    font-family: inherit;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: #FFFFFF;
    z-index: 13;
}

.h-live-btn:hover, .h-live-btn:focus{
    background: #EA4949;
    transition: all .4s;
}

/*** HEADER-SOCIAL ***/

.h-social{
    display: none;
}

@media (min-width: 768px) {
    .h-social{
        display: flex;
        z-index: 13;
    }
}

.social-item{
    margin-right: 13px;
    color: #FFFFFF;
    z-index: 13;
    transition: .4s;
}

.social-item:hover, .social-item:focus{
    color: #FDDB27;
    transition: .4s;
}

.f-social .social-item:hover, .f-social .social-item:focus{
    color: #00B2CA;
    transition: .4s;
}

.social-svg{
    width: 15px;
    height: 15px;
}

/*** HEADER-NAV ***/

.navbar{
    z-index: 10;
    padding-top: 0;
    padding-left: 0;
}

.navbar-nav{
    z-index: 10;
    list-style: none;
}

.nav-item{
    z-index: 10;
    margin-right: 25px;
    position: relative;
    overflow: hidden;
}

.nav-link{
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    color: rgba(255, 255, 255, .9);
    transition: all .4s;
}

.navbar-expand-md .navbar-nav .nav-link{
    padding-left: 0;
    padding-right: 0;
}

.nav-link::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    right: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1px;
    border: 0;
    transition: .4s ease-in-out;
}

.show .nav-link.active::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1px;
    border: 0;
}

@media (min-width: 768px) {
    .nav-link.active::after{
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 2px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 1px;
        border: 0;
    }
}

.nav-link:hover, .nav-link:focus{
    color: rgba(255, 255, 255, 1);
    transition: all .4s;
}

.nav-link:hover::after{    
    left: 0;
    transition: .4s ease-in-out;
}

.navbar-humb{
    position: absolute;
    left: 0;
    top: -38px;
    padding: 0;
    z-index: 18;
}

.navbar-humb:hover, .navbar-humb:focus{
    outline: 0;
}

.navbar-toggler-icon{
    width: 30px;
    height: 2px;
    display: none;
    background: #FFF;
    margin: 8px 0;
    transition: all .3s;
}

.navbar-toggler-icon:first-child{
    display: block;
    transform: translateY(10px) rotate(45deg);
    margin-top: 6px;
    transition: all .3s;
}

.navbar-toggler-icon:last-child{
    display: block;
    transform: translateY(0) rotate(-45deg);
    margin-bottom: 6px;
    transition: all .3s;
}

.collapsed .navbar-toggler-icon{
    display: block;
    transition: all .3s;
}

.collapsed .navbar-toggler-icon:first-child{
    display: block;
    transform: translateY(0) rotate(0);
    margin-top: 6px;
    transition: all .3s;
}

.collapsed .navbar-toggler-icon:last-child{
    display: block;
    transform: translateY(0) rotate(0);
    margin-bottom: 6px;
    transition: all .3s;
}

.navbar-collapse.collapse.show{
    display: contents;
}

/*** HEADER-SLIDER ***/

.slider-dots-fluid{
    position: relative;
}

.slider-container{
    position: relative;
    left: 0;
    right: 0;
    max-height: 285px;
    width: 100%;
    overflow: hidden;
}

.kaztrk-slider{
    width: 100%;
}

.owl-carousel.owl-drag .owl-item, .slider-item{
    width: 100%;
}

.slider-link{
    position: relative;
    display: block;
    width: 100%;
    max-height: 285px;
    min-height: 200px;
}

.slider-content, .slider-content-inner{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    max-height: 285px;
    min-height: 200px;    
    background: #0068A4;
    background: linear-gradient(81.07deg, #0068A4 0%, rgba(0, 178, 202, 0) 100%);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slider-content-inner{    
    bottom: 0;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.slider-dots-container{
    display: none;
}

.owl-dots{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 12;
}

.owl-dot{
    z-index: 12;
    cursor: pointer;
    padding: 5px 6px 5px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: flex-start
}

.owl-dot.active{
    background: rgba(19, 157, 184, .5);
}

.owl-dot:last-child{
    margin-bottom: 8px;
}

.owl-d-number{
    display: flex;
    align-items: center;
    align-content: center;
    padding: 3px 12px;
    margin-right: 13px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.07);
    border-radius: 10px 2px;
    background: rgba(255, 255, 255, .1);
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    color: #FFF;
}

.owl-d-content{
    display: flex;
    flex-direction: column;
}

.owl-d-c-desc{
    white-space: nowrap;
    font-family: inherit;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    color: #FFF;
    margin-bottom: 3px;
    line-height: 6px;
}

.owl-d-c-title{
    white-space: nowrap;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    color: #FFF;
    margin-bottom: 2px;
}

@media (min-width: 768px) {
    .slider-container{
        max-height: 285px;
    }

    .slider-link{
        max-height: 285px;
        min-height: 200px;
    }

    .slider-content, .slider-content-inner{
        max-height: 285px;
        min-height: 200px;
    }
}

@media (min-width: 992px) {
    .slider-container{
        max-height: 285px;
    }

    .slider-link{
        max-height: 285px;
        min-height: 200px;
    }

    .slider-content, .slider-content-inner{
        max-height: 285px;
        min-height: 200px;
    }

    .slider-content{
        background-position: center;
    }

    .slider-content-inner{
        background-size: contain;
    }

    .owl-dot{
        padding: 8px 6px 8px 10px;
    }

    .owl-dot:last-child{
        margin-bottom: 10px;
    }

    .slider-dots-container{
        display: block;
        position: absolute;
        right: 15px;
        bottom: 0;
        width: 100%;
        max-width: 260px;
        height: calc(100% - 35px);
        min-height: 285px;
        z-index: 11;
        background: linear-gradient(180deg, rgba(1, 119, 172, .1) 0%, rgba(1, 119, 172, .5) 100%);
        mix-blend-mode: normal;
    }
}

@media (min-width: 1600px) {
    .slider-container{
        max-height: 285px;
    }

    .slider-content-inner{
        background-size: contain;
    }

    .slider-link{
        max-height: 285px;
        min-height: 200px;
    }

    .slider-content, .slider-content-inner{
        max-height: 285px;
        min-height: 200px;
    }
}

/*** LINE-TIMETABLE ***/

.line-timetable{
    background: #00B2CA;
    display: flex;
}

.l-timetable-day{
    background: #005A89;
}

.ltd-link{
    padding: 7px 50px 7px 16px;
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    border-right: 1px solid rgba(0, 90, 137, 0.1);
    background: rgba(0, 90, 137, 0);
    transition: 0.4s;
}

@media (min-width: 768px) {
    .ltd-link{
        padding: 10px 70px 10px 26px;
    }
}

@media (min-width: 992px) {
    .ltd-link{
        padding: 15px 100px 15px 36px;
    }
}

.ltdl-week{
    color: inherit;
    transition: .4s;
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
}

.ltdl-day{
    color: inherit;
    transition: .4s;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    white-space: nowrap;
}

.l-timetable-data{
    background: #0068A4;
    background: linear-gradient(41.05deg, #0068A4 0%, rgba(0, 178, 202, 0) 100%);
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.ltdl-hour{
    color: inherit;
    transition: .4s;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
}

.ltdl-title{
    color: inherit;
    transition: .4s;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    white-space: nowrap;
}

.ltd-link:hover, .ltd-link:focus {
    color: #FFFFFF;
    background: rgba(0, 90, 137, 0.3);
    transition: 0.4s;
}

/********************
    CONTENT-SECTION
*********************/

.content-section{
    padding: 0 0 20px;
}

@media (min-width: 768px) {
    .content-section{
        padding: 0 0 30px;
    }
}

@media (min-width: 992px) {
    .content-section{
        padding: 0 0 40px;
    }
}

/*** NEWS-SECTION ***/

.news-section{
    padding: 20px 0 0;
}

@media (min-width: 768px) {
    .news-section{
        padding: 30px 0 0;
    }
}

@media (min-width: 992px) {
    .news-section{
        padding: 40px 0 0;
    }
}

.title-block{
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title{
    font-family: inherit;
    font-size: 28px;
    font-weight: 700;
    font-style: normal;
    margin: 0;
    color: #141414; 
}

.st-link{
    color: #141414;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .section-title{
        font-size: 32px;
    } 
}

.all-content-link{
    align-self: flex-end;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    color: #00B2CA; 
}

.aqparat .all-content-link{
    font-weight: 500;
}

.all-content-link:hover{
    text-decoration: underline;
}

/*** NEWS-BLOCK ***/

.news-block{
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    display: block;
    position: relative;
}

.aqparat{
    font-family: 'Inter', sans-serif;
}

.news-img{
    width: 100%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    display: block;
    padding-top: 56.25%;
    background: #0068A4;
    background: linear-gradient(81.07deg, #0068A4 0%, rgba(0, 178, 202, 0) 100%);
    margin-bottom: 8px;
    z-index: 4;
}

.news-img::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
}

.news-img-inner{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.video-preview-cover{    
    width: 213px;
    height: 120px;
    background-position-x: 0;
    border: 0;
    position: relative;
}

.news-main-image{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    border-radius: 6px;
    height: auto;
    opacity: 1;
    transition: opacity .5s ease-in-out;
    z-index: 1;
}

.news-date{
    position: absolute;
    bottom: 8px;
    left: 8px;
    padding: 4px 5px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px 1px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    color: #FFF; 
    z-index: 5;
}

.main-news .news-date{
    position: static;
    display: inline-block;
    margin-bottom: 5px;
    background: #00B2CA;
}

.news-title{
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    color: #141414;
    transition: 0.4s;
}

.main-news .news-title{
    font-size: 16px;
    font-weight: 700;
}

.news-block:hover .news-title, .news-block:focus .news-title{
    color: #00B2CA;
    transition: 0.4s;
}

/* .news-block:hover .news-main-image{
    opacity: 0;
    transition: opacity .5s ease-in-out;
}

.news-block:hover .videos-video{
    opacity: 1;
    transition: opacity .5s ease-in-out;
} */

.aqparat .news-title{
    font-size: 16px;
    font-weight: 700;
}

.aqparat .main-news .news-title{
    font-size: 18px;
}

.right-lenta{
    height: auto;
}

.news-block.lenta{
    margin-bottom: 8px;
}

.lenta .news-date{
    position: static;
    padding: 0;
    background: none;
    color: #CCCCCC;
}

.lenta .news-title{
    font-size: 16px;
    font-weight: 400;
}

.lenta.main-last .news-title{
    font-weight: 700;
}

.aqparat .main-news.main-one-news .news-title{
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 15px;
}

.aqparat .main-news.main-one-news .news-date{
    position: static;
    padding: 0;
    background: none;
    color: #CCCCCC;
    font-size: 14px;
    margin-bottom: 15px;
}

.main-news .news-desc{
    color: #000;
    font-size: 18px;
}

.aqparat-carousel{
    margin-bottom: 30px;
}

.aqparat-carousel.owl-theme .owl-nav.disabled+.owl-dots{
    margin-bottom: -20px;
}

/*** PROJECTS-SECTION ***/

.projects-section{
    padding: 20px 0 0;
}

@media (min-width: 768px) {
    .projects-section{
        padding: 30px 0 0;
    }
    .right-lenta{
        height: 600px;
        overflow-y: scroll;
    }
}

@media (min-width: 992px) {
    .projects-section{
        padding: 40px 0 0;
    }
}

@media (min-width: 1200px){
    .right-lenta{
        height: 780px;
    }
}

/*** PROJECTS-BLOCK ***/

.projects-block{
    width: 100%;
    margin: 0 0 30px;
    padding: 0;
    display: block;
    position: relative;
}

.project-img{
    width: 100%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    display: block;
    padding-top: 118.75%;
    background: #0068A4;
    background: linear-gradient(81.07deg, #0068A4 0%, rgba(0, 178, 202, 0) 100%);
    margin-bottom: 8px;
}

.projects-main-image{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    border-radius: 6px;
    height: auto;
}

.projects-date{
    position: absolute;
    bottom: 8px;
    left: 8px;
    padding: 4px 8px;
    background: rgba(196, 196, 196, 0.2);
    border-radius: 5px 1px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    color: #FFF; 
}

.main-project .projects-date{
    bottom: 16px;
    left: 20px;
}

.projects-attribute{
    font-family: inherit;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    margin: 0;
    color: #888; 
}

.projects-title{
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    margin: 0;
    color: #141414; 
}

.main-project .projects-title{
    font-size: 20px;
    font-weight: 700;
}

.projects-desc{
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    margin: 0;
    color: #141414; 
}

.projects-block:hover .projects-title, .projects-block:focus .projects-title{
    color: #00B2CA;
    transition: 0.4s;
}

.section-title.p-i-title{
    margin-bottom: 16px;
}

.project-data-inner{
    margin-bottom: 16px;
}

/*** SERIALS-SECTION ***/

.serials-section{
    padding: 20px 0 0;
}

@media (min-width: 768px) {
    .serials-section{
        padding: 30px 0 0;
    }
}

@media (min-width: 992px) {
    .serials-section{
        padding: 40px 0 0;
    }
}

/*** SERIALS-BLOCK ***/

.serials-block{
    width: 100%;
    margin: 0 0 30px;
    padding: 0;
    display: block;
    position: relative;
}

.serial-img{
    width: 100%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    display: block;
    padding-top: 118.75%;
    background: #0068A4;
    background: linear-gradient(81.07deg, #0068A4 0%, rgba(0, 178, 202, 0) 100%);
    margin-bottom: 8px;
}

.serials-main-image{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    border-radius: 6px;
    height: auto;
}

.serials-date{
    position: absolute;
    bottom: 8px;
    left: 8px;
    padding: 4px 8px;
    background: rgba(196, 196, 196, 0.2);
    border-radius: 5px 1px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    color: #FFF; 
}

.main-serial .serials-date{
    bottom: 16px;
    left: 20px;
}

.serials-attribute{
    font-family: inherit;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    margin: 0;
    color: #888; 
}

.serials-title{
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    margin: 0;
    color: #141414; 
}

.main-serial .serials-title{
    font-size: 20px;
    font-weight: 700;
}

.serials-desc{
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    margin: 0;
    color: #141414; 
}

.serials-block:hover .serials-title, .serials-block:focus .serials-title{
    color: #00B2CA;
    transition: 0.4s;
}

/*** VIDEOS-SECTION ***/

.videos-section{
    padding: 20px 0 0;
}

@media (min-width: 768px) {
    .videos-section{
        padding: 30px 0 0;
    }
}

@media (min-width: 992px) {
    .videos-section{
        padding: 40px 0 0;
    }
}

/*** VIDEOS-BLOCK ***/

.videos-block{
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    display: block;
    position: relative;
}

.video-img{
    width: 100%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    display: block;
    padding-top: 56.25%;
    background: #0068A4;
    background: linear-gradient(81.07deg, #0068A4 0%, rgba(0, 178, 202, 0) 100%);
    margin-bottom: 8px;
}

.videos-main-image{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    opacity: 1;
    border-radius: 6px;
    height: auto;
}

.video-fade{
    transition: opacity .5s ease-in-out;
}

.videos-video{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    border-radius: 6px;
    opacity: 0;
    transition: opacity .5s ease-in-out;
}

.videos-date{
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 4px 5px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px 1px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    color: #FFF; 
}

.videos-attribute{
    font-family: inherit;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    margin: 0;
    color: #888;
}

.videos-title{
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    color: #141414; 
}

.videos-block:hover .videos-title, .videos-block:focus .videos-title{
    color: #00B2CA;
    transition: 0.4s;
}

.aqparat .videos-title{
    font-size: 14px;
    font-weight: 700;
}

/* .videos-block:hover .videos-main-image{
    opacity: 0;
    transition: opacity .5s ease-in-out;
}

.videos-block:hover .videos-video{
    opacity: 1;
    transition: opacity .5s ease-in-out;
} */

/*** FILMS-SECTION ***/

.films-section{
    padding: 20px 0 0;
}

@media (min-width: 768px) {
    .films-section{
        padding: 30px 0 0;
    }
}

@media (min-width: 992px) {
    .films-section{
        padding: 40px 0 0;
    }
}

/*** FILMS-BLOCK ***/

.films-block{
    width: 100%;
    margin: 0 0 30px;
    padding: 0;
    display: block;
    position: relative;
}

.film-img{
    width: 100%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    display: block;
    padding-top: 118.75%;
    background: #0068A4;
    background: linear-gradient(81.07deg, #0068A4 0%, rgba(0, 178, 202, 0) 100%);
    margin-bottom: 8px;
}

.films-main-image{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    border-radius: 6px;
    height: auto;
}

.films-date{
    position: absolute;
    bottom: 8px;
    left: 8px;
    padding: 4px 8px;
    background: rgba(196, 196, 196, 0.2);
    border-radius: 5px 1px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    color: #FFF; 
}

.main-film .films-date{
    bottom: 16px;
    left: 20px;
}

.films-attribute{
    font-family: inherit;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    margin: 0;
    color: #888; 
}

.films-title{
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    margin: 0;
    color: #141414; 
}

.main-film .films-title{
    font-size: 20px;
    font-weight: 700;
}

.films-desc{
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    margin: 0;
    color: #141414; 
}

.films-block:hover .films-title, .films-block:focus .films-title{
    color: #00B2CA;
    transition: 0.4s;
}

/*** MAIN-CHANNELS-SECTION ***/

.main-channels-section{
    padding: 20px 0;
    background: #F8F8F8;
}

@media (min-width: 768px) {
    .main-channels-section{
        padding: 30px 0;
    }
}

@media (min-width: 992px) {
    .main-channels-section{
        padding: 40px 0;
    }
}

/*** REGIONAL-CHANNELS-SECTION ***/

.reg-channels-section{
    padding: 20px 0;
}

@media (min-width: 768px) {
    .reg-channels-section{
        padding: 30px 0;
    }
}

@media (min-width: 992px) {
    .reg-channels-section{
        padding: 40px 0;
    }
}

/*** REGIONAL-CHANNELS-BLOCK ***/

.reg-channels-block{
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
    display: block;
    position: relative;
}

.reg-channel-item{
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
    display: block;
    position: relative;
}

.reg-logo{
    width: 100%;
    position: relative;
    border-radius: 20px 0;
    overflow: hidden;
    display: block;
    padding-top: 47.5%;
    /* background: #0068A4; */
    /* background: linear-gradient(81.07deg, #0068A4 0%, rgba(0, 178, 202, 0) 100%); */
    margin-bottom: 8px;
}

.reg-channel-logo{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    border-radius: 20px 0;
    height: auto;
    transform: scale(1.05);
}

/********************
    FOOTER-SECTION
*********************/

.footer-section{
    background: #144253;
    position: relative;
    padding: 20px 0;
}

@media (min-width: 768px) {
    .footer-section{   
        padding: 30px 0;
    }
}

@media (min-width: 992px) {
    .footer-section{   
        padding: 40px 0;
    }
}

.f-top-block{
    display: flex;
    /*flex-direction: column;*/
    align-items: center;
    margin-bottom: 30px; 
}

.f-logo{
    margin: 0 30px 0 0;
}

.f-social{
    margin: 0 30px 0 0;
}

.f-social .social-item:last-child{
    margin-right: 0;
}

.lang-switcher{
    border-radius: 45px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    padding: 5px 12px 5px 16px;
    margin: 0;
    background: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    position: relative;
    transition: .4s;
}

.lang-switcher::after{
    content: '\2193';
    display: inherit;
    vertical-align: inherit;
    border: 0 solid transparent;
    margin-left: 9px;
}

.lang-switcher:hover{
    background: #00B2CA;
    color: #FFF;
    text-decoration: none;
}

.lang-switcher:not(:disabled):not(.disabled).active:focus, .lang-switcher:not(:disabled):not(.disabled):active:focus, .show>.lang-switcher.dropdown-toggle:focus{
    background: #00B2CA;
    color: #FFF;
    text-decoration: none;
}

.dropdown-menu{
    border-radius: 20px 0;
    overflow: hidden;
}

.dropdown-item:focus, .dropdown-item:hover{
    color: #00B2CA;
}

.dropdown-item.active, .dropdown-item:active{
    background: #00B2CA;
    color: #FFF;
    text-decoration: none;
}

.f-search .search-form{    
    border-radius: 45px;
    margin-right: 0;
    margin-bottom: 30px;
}

.f-search .search-input{
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
}

.f-search .search-button{
    background: rgba(255, 255, 255, 0.9);
}

.f-search .form-control::-webkit-input-placeholder{color: rgba(20, 20, 20, .3);opacity: 1;}
.f-search .form-control::-moz-placeholder{color: rgba(20, 20, 20, .3);opacity: 1;}
.f-search .form-control:-ms-input-placeholder{color: rgba(20, 20, 20, .3);opacity: 1;}
.f-search .form-control::placeholder {color: rgba(20, 20, 20, .3);opacity: 1;}

.f-menu-title{
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 15px;
    color: rgba(255, 255, 255, .3);
}

.f-menu{
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.f-menu-item{
    margin: 0 0 10px;    
}

.f-menu-link{   
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;    
    color: #FFFFFF;
    transition: .4s;
}

.f-menu-link:hover, .f-menu-link:focus{
    color: #00B2CA;
    transition: .4s;
}

.f-subscribe{
    margin-bottom: 20px;
}

.subscribe-form{
    border: 1px solid #144145;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 45px;
    max-width: 500px;
}

.f-search-form{
    max-width: 500px;
}

.footer .subs-result, .live .subs-result{
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .subscribe-form, .f-search-form{
        max-width: 282px;
    }
}

.subscribe-input{
    min-width: 200px;
    max-width: 400px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 13px;
    color: #141414;
    border: 0;
    border-radius: 45px 0 0 45px;
    z-index: 13;
}

.form-control.subscribe-input:focus {
    color: #141414;
    background-color: rgba(255, 255, 255, 0.9);
    outline: 0;
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
}

@media (min-width: 768px) {
    .subscribe-input{
        min-width: 105px;
        max-width: 180px;
    }
}

.subscribe-input:focus{
    outline: none;
    z-index: 13;
}

.subscribe-input.form-control::-webkit-input-placeholder{color: rgba(20, 20, 20, .3);opacity: 1;}
.subscribe-input.form-control::-moz-placeholder{color: rgba(20, 20, 20, .3);opacity: 1;}
.subscribe-input.form-control:-ms-input-placeholder{color: rgba(20, 20, 20, .3);opacity: 1;}
.subscribe-input.form-control::placeholder {color: rgba(20, 20, 20, .3);opacity: 1;}

.subscribe-button{
    padding: 6px 21px;
    background: #00B2CA;
    border-radius: 45px;
    border: 1px solid #00B2CA;
    margin-left: 0px;
    max-width: 100px;
    z-index: 14; 
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;    
    color: #FFFFFF;
    transition: .4s;
}

.q-btn:hover, .q-btn:focus, .q-btn:active{
    color: #00B2CA;
    background: #FFFFFF;
    transition: .4s;

}

.input-group>.form-control.subscribe-button:not(:first-child){
    border-top-left-radius: 45px;
    border-bottom-left-radius: 45px;
}

.app-link{
    display: inline;
    margin-right: 15px;
}

.app-badge{
    max-width: 50%;
    width: auto;
    height: 40px;
}

@media (min-width: 768px) {
    .app-badge{
        height: 40px;
    }
}

.f-ch-logo{
    position: relative;
}

.f-ch-text{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2px 9px;
    background: #FF6B6B;
    color: #FFFFFF;
    border-radius: 0px 2px;
    font-family: inherit;
    font-size: 8px;
    font-weight: normal;
    font-style: normal;
    transition: all .4s;
}

@media (min-width: 768px) {
    .f-ch-text{
        font-size: 10px;
    }
}

.f-ch-text::before{
    content: '\2022';
    margin-right: 5px;
    z-index: 3;
}

/*** INNER-SLIDER ***/

.inner-slider{
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.inner-slider-container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    min-height: 200px;
    width: 100%;
    overflow: hidden;
}

.inner-kaztrk-slider{
    width: 100%;
}

.inner-slider-link{
    position: relative;
    display: block;
    width: 100%;
    max-height: 200px;
    min-height: 200px;
}

.inner-slider-content, .inner-slider-content-inner{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    max-height: 200px;
    min-height: 200px;    
    background: #0068A4;
    background: linear-gradient(81.07deg, #0068A4 0%, rgba(0, 178, 202, 0) 100%);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.inner-slider-content-inner{
    bottom: 0;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.inner-slider-dots-container{
    display: none;
}

@media (min-width: 768px) {
    .inner-slider{    
        min-height: 300px;
    }

    .inner-slider-container{
        min-height: 300px;
    }

    .inner-slider-link{
        max-height: 300px;
        min-height: 300px;
    }

    .inner-slider-content, .inner-slider-content-inner{
        max-height: 300px;
        min-height: 300px;
    }
}

@media (min-width: 992px) {
    .inner-slider-container{
        min-height: 300px;
    }

    .inner-slider-dots-container{
        display: block;
        position: absolute;
        right: 15px;
        bottom: 0;
        width: 100%;
        max-width: 250px;
        height: 100%;
        min-height: 300px;
        z-index: 11;
        background: linear-gradient(180deg, rgba(1, 119, 172, .1) 0%, rgba(1, 119, 172, .5) 100%);
        mix-blend-mode: normal;
    }

    .inner-slider-link{
        max-height: 300px;
        min-height: 300px;
    }

    .inner-slider-content-inner{
        background-size: contain;
    }

    .inner-slider-content, .inner-slider-content-inner{
        max-height: 300px;
        min-height: 300px;
    }
}

@media (min-width: 1600px) {
    .inner-slider-container{
        min-height: 300px;
    }

    .inner-slider-link{
        max-height: 300px;
        min-height: 300px;
    }

    .inner-slider-content, .inner-slider-content-inner{
        max-height: 300px;
        min-height: 300px;
    }
}

/*** ASIDE ***/

.aside-last + .aside{
    margin-top: 30px;
}

.aside-title{
    color: #141414;
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 16px;
}

/*** ASIDE-CALENDAR ***/

.aside-calendar{
    background: #F4FBFD;
    border-radius: 5px;
    padding: 24px 30px 30px;
    margin-bottom: 30px;
}

.datepicker-inline .datepicker{
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(255, 255, 255, 0);
    border: 0;
}

.datepicker--nav{
    align-items: center;
    border-bottom: 0;
}

.datepicker--nav-action{
    width: 18px;
    height: 18px;
    color: #0193BB;
    background: #FFFFFF;
    transition: all .4s;
    border-radius: 50%;
}

.datepicker--nav-action svg{
    width: 6px;
    height: 4px;
    overflow: visible;
    color: #0193BB;
}

.datepicker--nav-action path{
    stroke: none;
    fill: #0193BB;
    transition: all .4s;
}

.datepicker--nav-action:hover, .datepicker--nav-action:focus{
    color: #FFFFFF;
    background: #0193BB;
    transition: all .4s;
}

.datepicker--nav-action:hover path, .datepicker--nav-action:focus path{
    fill: #FFFFFF;
    transition: all .4s;
}

.datepicker--nav-title{
    padding: 10px 16px;
    color: #0193BB;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 2px;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
}

.datepicker--day-name{
    color: #141414;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;    
}

.datepicker--cell{
    margin: 0 0;
    padding: 25px 0;
    font-family: inherit;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 46px;
    color: #0193BB;
    border-radius: 10px 2px;
    transition: all .4s;
}

@media (min-width: 576px) {
    .datepicker--cell{
        padding: 25px 0;
    }
}

@media (min-width: 768px) {
    .datepicker--cell{
        padding: 0 0;
    }
}

@media (min-width: 992px) {
    .datepicker--cell{
        padding: 25px 0;
    }
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade-{
    color: #E1E1E1;
}

.datepicker--cell.-disabled-{
    color: rgba(1, 147, 187, .4);
}

.datepicker--cell:hover, .datepicker--cell:focus{
    background: #0193BB;
    color: #FDDB27;
    transition: all .4s;
}

.datepicker--cell.-disabled-:hover, .datepicker--cell.-disabled-:focus{
    background: none;
    color: rgba(1, 147, 187, .4);
}

.datepicker--cell.-current-{
    background: #0193BB;
    color: #FFFFFF;
}

.datepicker--cell.-active-{
    background: rgba(1, 147, 187, .5);
    color: #FDDB27;
}

.datepicker--cell.-current-:hover, .datepicker--cell.-current-:focus{
    color: #FFFFFF;
}

/*** TAGS-LIST (NEWS-VIEW) ***/

.tags-list{
    list-style: none;
    margin-bottom: 20px;
    width: 100%;
}

.tags-item{
    margin-right: 10px;
    margin-bottom: 5px;
    line-height: 34px;
}

.tags-link{
    padding: 8px 20px;
    border-radius: 5px;
    font-family: inherit;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #000000;
    white-space: nowrap;
    background: rgba(0, 180, 204, .05);
    transition: all .4s;
}

.tags-link.active{
    background: #00B2CA;
    color: #FFFFFF;
    transition: all .4s;
}

.navbar-tags{
    position: absolute;
    right: 0;
    top: -50px;
}

.tags-switcher{
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 1px solid #00B2CA;
    display: flex;
    background: #FFFFFF;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.tags-switcher::after{
    content: none;
}

.ts-ellipse{
    position: relative;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 1px;
}

.ts-ellipse::after{
    content: '';
    width: 1px;
    height: 1px;
    background: #FFFFFF;
    border-radius: 50%;
    border: 1px solid #00B2CA;
}

.tags-switcher:hover, .tags-switcher:focus{
    background: #00B2CA;
    transition: all .4s;
}

.tags-switcher:hover .ts-ellipse::after, .tags-switcher:focus .ts-ellipse::after{
    background: #00B2CA;
    border: 1px solid #FFFFFF;
}

.tags-d-menu{
    left: unset;
    right: 0;
}

/*** NEWS-VIEW ***/

.article-content{
    margin-bottom: 48px;
}

.a-title{
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

.a-pub-date{
    display: block;
    font-family: inherit;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    color: #B3B3B3;
    margin-bottom: 15px;
}

.a-tags-list-block{
    margin-bottom: 15px;
}

.navbar-nav.a-tags-list{
    flex-direction: row;
}

.article-content{
    font-family: inherit;
    font-style: normal;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.ratio16x9{
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    margin-bottom: 1rem;
}

.ratio16x9 iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

.ratio16x9 > div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

.a-full-text * {
    max-width: 100%;
    font-size: 18px!important;
}

.project-data-inner * {
    font-size: 14px!important;
}

.a-full-text .blockquote, .a-full-text blockquote{
    padding: 10px 0 10px 15px;
    border-left: 5px solid #0068A4;
    margin-left: 15px;
}

.article-hashtags .article-hashtag{
    font-size: 16px;
    margin-right: 10px;
    text-transform: uppercase;
    white-space: nowrap;
}

.hashtag::before{
    content: '#'
}

/*** SHARE-BLOCK ***/

.a-share-block{
    padding: 4px 4px;
    background: #F4FBFD;
    border-radius: 25px 5px;
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
}

.a-share-inner{
    display: flex;
    flex-direction: column;
    padding: 18px 28px;
}

.socail-share{
    border-bottom: 1px solid #ECECEC;
    border-right: 0;
}

.a-share-block.video, .a-share-block.live{
    background: rgba(244, 251, 253, .05);
}

.a-share-block.video .socail-share{
    border: 0;
}

.a-share-block.live .socail-share{
    border-color: rgba(236, 236, 236, .05);
}

.a-share-block.live .a-share-title, .a-share-block.video .a-share-title{
    color: #FFFFFF;
}

.a-share-title{
    font-family: inherit;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    color: #000000;
    margin-bottom: 12px;
}

.a-share-icons{
    list-style: none;
    margin: 0;
    padding: 0;
}

.a-share-item{
    line-height: 34px;
}

.a-share-item + .a-share-item{
    margin-left: 10px;
}

.a-share-item:last-child{
    margin-right: 0;
}

.a-share-link{
    padding: 8px 14px 11px;
    font-family: inherit;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    color: #FFFFFF;
    background: #00B2CA;
    border-radius: 1000px;
    white-space: nowrap;
    transition: all .4s;
}

.a-share-link .social-svg{
    margin-right: 0;
}

.a-share-link.facebook{
    background: #1877F2;
}

.a-share-link.vk{
    background: #4C6C91;
}

.a-share-link.twitter{
    background: #55ACEE;
}

.a-share-link.telegram{
    background: #0088CC;
}

.a-share-link.whatsapp{
    background: #25D366;
}

.a-share-link:hover, .a-share-link:focus{
    background: #00B2CA;
    color: #FFFFFF;
    transition: all .4s;
}

.a-share-icon-title{
    display: none;
}

.a-subscribe .subscribe-form{
    border: 1px solid #F2F2F2
}

@media (min-width: 576px) {
    .a-share-item + .a-share-item{
        margin-left: 4px;
    }

    .a-share-inner{
        display: flex;
        flex-direction: column;
        padding: 18px 10px;
    }

    .a-share-icon-title{
        display: inline-flex;
    }

    .a-share-link .social-svg{
        margin-right: 4px;
    }
}

@media (min-width: 768px) {
    .a-share-item + .a-share-item{
        margin-left: 10px;
    }

    .a-share-inner{
        padding: 18px 28px;
    }

    .a-share-icon-title{
        display: none;
    }

    .live .a-share-icon-title{
        display: inline-flex;
    }

    .a-share-link .social-svg{
        margin-right: 0;
    }
}

@media (min-width: 992px) {
    .a-share-block{
        flex-direction: row;
    }

    .a-share-item + .a-share-item{
        margin-left: 4px;
    }

    .a-share-inner{
        padding: 18px 28px;
    }

    .socail-share{
        border-right: 1px solid #ECECEC;
        border-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .a-share-icon-title{
        display: inline-flex;
    }

    .a-share-inner{
        padding: 18px 10px;
    }

    .a-share-link .social-svg{
        margin-right: 4px;
    }
}

@media (min-width: 1340px) {
    .a-share-inner{
        padding: 18px 28px;
    }

    .a-share-link .social-svg{
        margin-right: 8px;
    }
}

/*** RELATED-ARTICLES ***/

.aside-related-articles{
    margin-bottom: 12px;
}

.a-related-articles{
    margin-bottom: 30px;
}

.img-data-lazy.lazy{
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
}

.img-data-lazy.lazy.loaded{
    width: 100%;
    height: auto;
    top: 0;
    transform: translateY(0);
    margin: 0;
}

/*** LIVE-PAGE ***/

.header-section.live{
    background: #1B1B1B;
}

/* .header-section.live::after{
    content: '';
    background: rgba(1, 119, 172, .5);
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
} */

.live-page-section{
    padding: 20px 0 0;
}

@media (min-width: 768px) {
    .live-page-section{
        padding: 30px 0 0;
    }
}

@media (min-width: 992px) {
    .live-page-section{
        padding: 40px 0 0;
    }
}

.content-section.live{
    background: #1B1B1B;
    position: relative;
    padding-bottom: 0;
}

.content-section.live *{
    z-index: 10;
}

.content-section.live::after{
    content: '';    
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 119, 172, 0) 0%, rgba(1, 119, 172, 0.5) 100%);
    opacity: .5;
    z-index: 0;
}

.live .page-title{
    margin-bottom: 32px;
    color: #FFFFFF;
}

.live .a-title{
    color: #FFFFFF;
    margin-bottom: 5px;
}

.live-player{
    max-width: 1200px;
    margin: 0 auto 35px;
}

.aside-title.white-color{
    color: #FFFFFF;
}

.white .aside-title, .white .videos-title{
    color: #FFFFFF;
}

/*** TIMELINE ***/

.timeline-section{
    background: #1B1B1B;
    position: relative;
    padding: 0 0 20px;
}

.timeline-section::after{
    content: '';    
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 119, 172, 0) 0%, rgba(1, 119, 172, 0.5) 100%);
    opacity: .5;
    z-index: 0;
}

.vis-content{
    background: #00B2CA;
}

.vis-itemset{
    background: #0068A4;
    background: linear-gradient(41.05deg, #0068A4 0%, rgba(0, 178, 202, 0) 100%);
}

.vis-panel.vis-bottom, .vis-panel.vis-center, .vis-panel.vis-left, .vis-panel.vis-right, .vis-panel.vis-top{
    border: 0;
}

.timeline-block{
    padding: 5px 10px 19px;
    color: #FFFFFF;
}

.vis-timeline{
    border: 0;
}

.vis-content, .vis-itemset, .vis-item.vis-background{
    min-height: 75px;
}

.vis-time-axis .vis-text{
    color: rgba(255, 255, 255, .32);    
    font-family: inherit;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
}

.vis-current-time{
    z-index: 99;
    background: #F45959;
    width: 3px;
    max-height: 80%;

}

.vis-time-axis .vis-text > div{
    display: none;
}

.vis-time-axis .vis-grid.vis-minor{
    border-color: rgba(0, 90, 137, .2);
}

.futureTimeline .timeline-block{
    color: rgba(255, 255, 255, .2);
}

@media (min-width: 768px) {
    .timeline-block{
        padding: 10px 20px 14px;
    }

    .timeline-section{
        padding: 0 0 30px;
    }

    .vis-content, .vis-itemset, .vis-item.vis-background{
        min-height: 75px;
    }
}

@media (min-width: 992px) {
    .timeline-block{
        padding: 15px 30px 19px;
    }

    .timeline-section{
        padding: 0 0 40px;
    }

    .vis-content, .vis-itemset, .vis-item.vis-background{
        min-height: 75px;
    }
}

.vis-item.vis-background{
    border-left: 1px solid rgba(0, 90, 137, .2);
}

.timeline-section.main{
    padding-bottom: 0;
}

.timeline-section.main{
    background: rgba(255,255,255,0);
    padding-bottom: 0;    
}

.timeline-section.main::after{
    content: none;
}

.timeline-section.main .vis-time-axis .vis-text{
    color: rgba(0, 0, 0, .52);  
}

.vis-rolling-mode-btn{
    z-index: 100;
    top: 17px;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    background: #005A89
}

.vis-rolling-mode-btn::before{
    content: '\21BB';
}

/*** TIMETABLE-PAGE ***/

.timetable-page-section{
    padding: 20px 0;
}

.timetable-page-section .page-title{
    margin-bottom: 12px;
}

.timetable-nav{
    margin-bottom: 23px;
}

.timetable-week{
    list-style: none;
    margin: 0;
    padding: 0;    
    position: relative;
    background: #00B2CA;
    z-index: 1;
}

.timetable-week::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(56.18deg, #0068A4 0%, rgba(0, 178, 202, 0) 100%);
    z-index: 2;
}

.timetable-week-item{
    width: 13.5%;
    z-index: 3;
}

.timetable-week-item.current-day{
    width: 19%;
}

.timetable-link{
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 5px 8px;
    color: #FFFFFF;
    font-family: inherit;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    overflow: hidden;
    transition: all .4s;
}

.active .timetable-link{
    background: #005A89;
}

.current-day .timetable-link::after{
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    border-radius: 4px 0;
    background: #FDDB27;
    top: calc(50% - 6px);
    right: 8px;
}

.twil-week{
    color: inherit;
    font-family: inherit;
    font-style: inherit;
    font-weight: inherit;
    font-size: inherit;
    white-space: nowrap;
}

.twil-day{
    color: inherit;
    font-family: inherit;
    font-style: inherit;
    font-weight: bold;
    font-size: inherit;
    white-space: nowrap;
}

.timetable-link:hover, .timetable-link:focus{
    background: #005A89;
    transition: all .4s;
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .timetable-page-section{
        padding: 30px 0;
    }

    .timetable-link{
        padding: 10px 18px;
        font-size: 14px;
    }

    .current-day .timetable-link::after{
        width: 16px;
        height: 16px;
        border-radius: 5px 0;
        background: #FDDB27;
        top: calc(50% - 8px);
        right: 18px;
    }

    .timetable-page-section .page-title{
        margin-bottom: 24px;
    }
}

@media (min-width: 992px) {
    .timetable-page-section{
        padding: 40px 0;
    }

    .timetable-link{
        padding: 15px 28px;
        font-size: 16px;
    }

    .current-day .timetable-link::after{
        right: 28px;
    }

    .timetable-page-section .page-title{
        margin-bottom: 32px;
    }
}

.timetable-data{
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.timetable-link-item{
    display: flex;
    flex-direction: row;
    margin-bottom: 8px;
    background: #00B2CA;
    width: 100%;
    min-height: 58px;
    color: #FFFFFF;
    font-family: inherit;
    font-style: inherit;
    font-weight: normal;
    font-size: inherit;
    /*white-space: nowrap;*/
    align-items: center;
    overflow: hidden;
    transition: all .4s;
}

.timetable-link-item:hover, .timetable-link-item:focus{
    color: #FFFFFF;
}

.til-time{
    padding: 10px 8px;
    font-family: inherit;
    font-style: inherit;
    font-weight: bold;
    font-size: 24px;
    min-height: 58px;
    align-items: center;
    white-space: nowrap;
    background: #005A89;
}

.til-data{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    line-height: 1;
    min-height: 58px;
    padding: 5px 14px;
    background: linear-gradient(59.23deg, #0068A4 0%, rgba(0, 178, 202, 0) 100%);
}

.til-d-desc{
    font-family: inherit;
    font-style: inherit;
    font-weight: normal;
    font-size: 10px;
    margin-bottom: 5px;
}

.til-d-title{
    font-family: inherit;
    font-style: inherit;
    font-weight: bold;
    font-size: 16px;
}

.til-d-info{
    padding: 4px 9px;
    border-radius: 6px 0;
    font-family: inherit;
    font-style: inherit;
    font-weight: normal;
    font-size: 10px;
    align-items: center;
    display: flex;
}

.til-d-info.repeat{
    border: 1px solid #FFFFFF;
}

.til-d-info.new{
    background: #005A89;
    position: relative;
}

.til-d-info.premier{
    background: #FDDB27;
    position: relative;
    color: #141414;
}

.til-d-info.live{
    background: #FF6B6B;
    position: relative;
}

.til-d-info.new::before, .til-d-info.live::before, .til-d-info.premier::before{
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 3px 0px;
    background: #FDDB27;
    display: inline-block;
    margin-right: 6px;
}

.til-d-info.premier::before{
    background: #FF6B6B;
}

@media (min-width: 768px) {
    .timetable-link-item{
        min-height: 68px;
    }

    .til-time{
        padding: 10px 18px;
        font-size: 28px;
        min-height: 68px;
    }

    .til-data{
        padding: 10px 18px;
        min-height: 68px;
    }

    .til-d-desc{
        font-size: 12px;
    }

    .til-d-title{
        font-size: 18px;
    }

    .til-d-info{
        padding: 6px 13px;
        font-size: 12px;
        border-radius: 8px 1px;
    }
}

@media (min-width: 992px) {
    .timetable-link-item{
        min-height: 96px;
    }

    .til-time{
        padding: 24px 28px;
        font-size: 32px;
        min-height: 96px;
    }

    .til-data{
        padding: 24px 28px;
        min-height: 96px;
    }

    .til-d-info{
        padding: 8px 18px;
        font-size: 14px;
        border-radius: 10px 2px;
    }
}

.timetable-link-item:hover .til-data, .timetable-link-item:focus .til-data{
    background: #005A89;
}

.timetable-link-item.now{
    background: #005A89;
}

.timetable-link-item.now .til-data, .timetable-link-item.past .til-data{
    background: none;
}

.timetable-link-item.past, .past .til-time{
    background: #888888;
}

/*** TAGS-MODAL ***/

#tagsModal.modal.fade.show{
    padding-right: 0;
}

.modal-dialog.tags-modal{
    margin: 0 0 0 auto;
    min-height: 100vh;
}

.tags-modal .modal-content{
    height: 100vh;
    border: 0;
}

.tags-modal .modal-body{
    overflow: auto;
}

/*** VIDEO-VIEW ***/

.last-videos{
    padding: 20px 0 10px;
}

.main-articles{
    padding: 10px 0 20px;
}

@media (min-width: 768px) {    
    .last-videos{
        padding: 30px 0 15px;
    }

    .main-articles{
        padding: 15px 0 30px;
    }
}

@media (min-width: 992px) {
    .last-videos{
        padding: 40px 0 20px;
    }

    .main-articles{
        padding: 20px 0 40px;
    }
}

.live-page-section.video-view{
    padding: 20px 0;
}

@media (min-width: 768px) {
    .live-page-section.video-view{
        padding: 30px 0;
    }
}

@media (min-width: 992px) {
    .live-page-section.video-view{
        padding: 40px 0;
    }
}

.project-info{
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 5px 1px;
    padding: 12px;
    display: flex;
}

.p-img{
    width: 140px;
    margin-right: 12px;
    height: 175px;
    flex-shrink: 2;
    position: relative;
    overflow: hidden;
}

.p-main-image{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 2px;
}

.p-data{
    flex-shrink: 3;
    color: #FFFFFF;
}

.p-data-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pd-date{
    padding: 4px 10px;
    background: rgba(196, 196, 196, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 5px 1px;
}

.pd-desc{
    margin-bottom: 12px;
}

.p-data-bottom{
    line-height: 35px;
}

.pd-btn{
    padding: 10px 23px;
    background: #00B2CA;
    border-radius: 45px;
    font-family: inherit;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #FFFFFF;
    transition: all .4s;
}

.pd-btn:hover, .pd-btn:focus{
    background: #FFFFFF;
    color: #00B2CA;
    transition: all .4s;
}

/*** LOADMORE-BUTTON ***/

#loadButton, #loadButton1, #loadButton2, #loadButton3, #loadButton4, #loadButton5, #loadButton6, #loadButton7, #loadButton8, #loadButton9, #loadButton10{
    margin: 30px auto;
    line-height: 35px;
}

#loadButton.hidden, #loadButton1.hidden, #loadButton2.hidden, #loadButton3.hidden, #loadButton4.hidden, #loadButton5.hidden, #loadButton6.hidden, #loadButton7.hidden, #loadButton8.hidden, #loadButton9.hidden, #loadButton10.hidden{
    display: none;
}

a.loadmorebtn:not([href]):not([tabindex]), .loadmorebtn{
    padding: 9px 30px;
    background: #00B2CA;
    border: 1px solid #00B2CA;
    border-radius: 45px;
    font-family: inherit;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #FFFFFF;
    transition: all .4s;
}

.loadmorebtn::before{
    content: '\21BB';
    margin-right: 10px;
    display: inline-block;
}

.loadmorebtn.all::before{
    content: none;
}

a.loadmorebtn:not([href]):not([tabindex]):hover, a.loadmorebtn:not([href]):not([tabindex]):focus, .loadmorebtn:hover, .loadmorebtn:focus{
    cursor: pointer;
    background: #FFFFFF;
    color: #00B2CA;
}

.loadmorebtn.rotated::before{
    transform: rotate(360deg);
    transition: all 1s;
}

.new-year-banner{
    width: 100%;
    height: auto;
    text-align: center;
}

.new-year-banner * {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.voice-form{
    padding: 40px 0;
}

.vote-form.voice{
    width: 100%;
}

.vote-form.voice input, .vote-form.voice input:active, .vote-form.voice input:focus, .vote-form.voice select, .vote-form.voice select:active, .vote-form.voice select:focus, .vote-form.voice textarea, .vote-form.voice textarea:active, .vote-form.voice textarea:focus{
    color: #000;
}

.vote-form.voice input.q-btn.subscribe-button{
    color: #FFF;
}

.vote-form.voice input.q-btn.subscribe-button:hover, .vote-form.voice input.q-btn.subscribe-button:active, .vote-form.voice input.q-btn.subscribe-button:focus{
    color: #00B2CA;
}

.voice-video-file {
    position: relative;
    background: linear-gradient(to right, #507479 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: #000;
    transition:all 1s ease;
}
 
.voice-video-file.done {
    background: #00B2CA;
}

.voice-video-file a {
    display: block;
    position: relative;
    padding: 8px 16px;
    color: #000!important;
}

.voice-video-file.done a{
    color: #FFF!important;
}

.datepicker.dropdown-menu{
    border-radius: 0;
    padding: 10px;
    z-index: 100!important;
}

#voice-gender option:first-child {
    display: none;
}

.thevoice-data {
    text-align: center;
}

.thevoice-text {
    margin-bottom: 40px;
    font-size: 16px!important;
}

.thevoice-logo {
    width: 150px;
    margin: 0 auto;
    height: auto;
    margin-bottom: 20px;
}

.subscribe-button.the-voice-button {
    max-width: 300px;
    padding: 8px 26px;
    font-size: 16px;
}

#thevoice-success-data {
    margin-bottom: 40px;
    font-size: 24px!important;
}

.a-full-text.video-view {
    color: white;
}