:root {
    --basic-color: #585858;
    --secondary-color: #dd7e43;
    --basic-font: 14px;
    --basic-family: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

html, body {
    font-family: var(--basic-family);
    font-size: var(--basic-font);
    color: var(--basic-color);
    font-weight: 500;
    margin: 0;
}

input, select, td {
    font-family: var(--basic-family);
    font-size: var(--basic-font);
    color: var(--basic-color);
    font-weight: 300;
}

a, img {
    border: 0 none;
    border-radius: 3px;
}

a {
    color: var(--basic-color);
    text-decoration: none;
}

a:hover, a:active {
    color: var(--secondary-color);
    text-decoration: underline;
}

input[type="text"], input[type="password"], input[type="tel"], input[type="email"] {
    padding: 5px 24px;
    height: 41px;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
}

::-webkit-input-placeholder {
    color: #b8b8b8;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #b8b8b8;
    opacity: 1;
}

input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0 none;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px;
}

h1 {
	font-size: 15px;
	text-transform: uppercase
}

.limit {
    width: 1200px;
    margin: 0 auto;
}

.clear {
    clear: both;
}

header {
    margin-bottom: 20px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.logo {
    margin-right: 100px;
}

header .date {
    padding: 0 0 0 25px;
    position: relative;
}

header .date:before {
    position: absolute;
    content: "";
    background: url("../images/calendar.svg") center center no-repeat;
    background-size: 150% auto;
    height: 14px;
    width: 15px;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

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

.search {
    position: relative;
    width: 410px;
}

.search input[type="text"] {
    width: 100%;
    font-size: 12px;
}

.search input[type="submit"] {
    position: absolute;
    background: url("../images/search.svg") center center no-repeat;
    background-size: 15px auto;
    height: 41px;
    width: 45px;
    top: 0;
    right: 0;
    text-indent: -9999px;
}

.personal-trigger {
    width: 282px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.personal-trigger .login-trigger {
    padding: 0 0 0 25px;
    position: relative;
}

.personal-trigger .login-trigger:before {
    position: absolute;
    content: "";
    background: url("../images/user.svg") center center no-repeat;
    background-size: 100% auto;
    height: 15px;
    width: 15px;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.personal-trigger .registration-trigger {
    height: 41px;
    width: 162px;
    background: #e9e9e9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}

.menu {
    position: relative;
    height: 90px;
}

.menu ul {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e8e8e8;
}

.menu a {
    position: relative;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #242424;
    font-weight: 600;
    text-transform: uppercase;
}

.menu li:hover a, .menu .selected a {
    color: var(--secondary-color);
    text-decoration: none
}

.menu li:hover a:after, .menu .selected a:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    left: 0;
    bottom: -1px;
    background: var(--secondary-color);
}

.menu .sub-menu {
    position: absolute;
    bottom: 0;
    width: 100%;
    border: 0 none;
    background: #fff;
    left: 0;
    padding-top: 18px;
    z-index: 100;
    display: none;
}

.menu li:hover .sub-menu, .menu li.selected .sub-menu {
    display: flex;
}

.menu .sub-menu a, .menu li:hover .sub-menu a {
    height: auto;
    color: #585858;
    font-size: 12.5px;
    font-weight: 300;
    text-transform: none;
}

.menu .sub-menu a:hover, .menu .sub-menu .selected a {
    color: var(--secondary-color) !important;
    text-decoration: underline !important
}

.menu .sub-menu a:after {
    display: none;
}

main .limit {
    display: flex;
    justify-content: space-between;
}

.content-left {
    width: calc(100% - 380px);
}

.content-left-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden
}

.content-left-top img, .three-items-list img {
border-radius: 3px
}



.content-left-top .afisha, #bx_incl_area_4_1 {
    padding: 15px 0 0;
    width: 253px;
    font-size: 15px;
    background: #f7f7f7;
    border: 1px solid #ededed;
    border-radius: 3px;
    text-align: center;
}


.content-left-top .afisha h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.content-left-top .afisha .item {
    position: relative;
}

.content-left-top .afisha .image {
    position: relative;
    max-width: 158px;
    margin: 0 auto 15px;
}

.content-left-top .afisha .name {
    line-height: 1.6;
    margin-bottom: 10px;
}

.content-left-top .afisha .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f4f4;
    padding: 0 24px;
    height: 50px;
    border-top: 1px solid #ededed;
    color: var(--secondary-color);
    font-weight: 500;
}

.content-left-top .afisha .info .time, .content-left-top .cinema .info .price {
    position: relative;
    padding-left: 25px;
}

.content-left-top .afisha .info .time:before, .content-left-top .cinema .info .price:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.content-left-top .afisha .info .time:before {
    background: url("../images/clock.svg") center center no-repeat;
    background-size: 115% auto;
}

.content-left-top .afisha .info .price:before {
    background: url("../images/price.svg") center center no-repeat;
    background-size: 150% auto;
}

.content-left-top .afisha .label {
    position: absolute;
    top: 14px;
    right: -17px;
    background: #fff;
    color: #ec3237;
    font-weight: 700;
    height: 28px;
    width: 38px;
    padding: 5px 0;
    text-transform: uppercase;
}

.content-left-top .cinema, #bx_incl_area_4_1 {
    padding: 35px 0 0;
    width: 253px;
    font-size: 15px;
    background: #f7f7f7;
    border: 1px solid #ededed;
    border-radius: 3px;
    text-align: center;
}

.content-left-top .cinema h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 25px;
}


.content-left-top .cinema .item {
    position: relative;
}

.content-left-top .cinema .image {
    position: relative;
    max-width: 158px;
    margin: 0 auto 15px;
}

.content-left-top .cinema .name {
    line-height: 1.6;
    margin-bottom: 10px;
}

.content-left-top .cinema .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f4f4;
    padding: 0 24px;
    height: 50px;
    border-top: 1px solid #ededed;
    color: var(--secondary-color);
    font-weight: 500;
}

.content-left-top .cinema .info .time, .content-left-top .cinema .info .price {
    position: relative;
    padding-left: 25px;
}

.content-left-top .cinema .info .time:before, .content-left-top .cinema .info .price:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.content-left-top .cinema .info .time:before {
    background: url("../images/clock.svg") center center no-repeat;
    background-size: 115% auto;
}

.content-left-top .cinema .info .price:before {
    background: url("../images/price.svg") center center no-repeat;
    background-size: 150% auto;
}

.content-left-top .cinema .label {
    position: absolute;
    top: 14px;
    right: -17px;
    background: #fff;
    color: #ec3237;
    font-weight: 700;
    height: 28px;
    width: 38px;
    padding: 5px 0;
    text-transform: uppercase;
}

.owl-carousel .owl-nav {
    margin: 0 !important;
}

.content-left-top .owl-carousel .owl-nav button, .content-left-top .owl-carousel .owl-nav button:hover,
.news-item-detail .owl-carousel .owl-nav button, .news-item-detail .owl-carousel .owl-nav button:hover {
    position: absolute;
    top: 93px;
    height: 30px;
    width: 30px;
    background: url("../images/arrow.svg") center center no-repeat;
    background-size: 18px auto;
    filter: grayscale(1);
    margin: 0;
    text-indent: -9999px;
    z-index: 333;
}

.content-left-top .owl-carousel .owl-nav .owl-prev,
.news-item-detail .owl-carousel .owl-nav .owl-prev {
    left: 5px;
    transform: rotate(180deg);
}

.content-left-top .owl-carousel .owl-nav .owl-next,
.news-item-detail .owl-carousel .owl-nav .owl-next {
    right: 5px;
}

.content-left-top .owl-dots,
.news-item-detail .owl-dots {
    display: none;
}

.events, #bx_incl_area_4_2 {
    width: calc(100% - 285px);
}

#bx_incl_area_4_2 .events {
    width: 100%
}

.events .item {
position:relative
}

.events .title {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
background:rgba(0, 0, 0, 0.8);
padding: 15px;
color: #fff;
font-weight: 700
}

.events .owl-events .owl-nav button, .events .owl-events .owl-nav button:hover {
    background-color: #fff;
    height: 48px;
    width: 48px;
    bottom: 120px;
    top: auto;
}

.events .owl-events .owl-nav .owl-prev {
    left: auto;
    right: 72px;
}

.events .owl-events .owl-nav .owl-next {
    right: 18px;
}

.content-left-top .news-list {
    width: 100%;
    margin-top: 75px;
}

.news-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}

.news-title h4, .content-right h4 {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #242424;
    margin: 0;
}

.news-title a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.content-left-top .news-items {
    justify-content: flex-start;
}

.news-items .item {
    width: 251px;
    margin-bottom: 50px;
}

.content-left-top .news-items .item {
    margin-right: 33px;
}

.content-left-top .news-items .item:nth-child(4n) {
    margin-right: 0;
}

.content-left-top .news-items .item a {
	color: #242424
}

/*.content-left .agv-block.mobile {
    display: none;
}

.content-left .agv-block.desktop {
    display: block;
}*/

.content-left .agv-block.desktop img {
    max-width: 100%;
}

.ads-list .item {
    position: relative;
    padding-bottom: 35px;
}

.news-items .item .image {
    margin-bottom: 20px;
    height: 200px;
    overflow: hidden;
}

.news-items .item .date, .forum-right .date {
    font-size: 12px;
    color: #b8b8b8;
    margin-bottom: 15px;
}

.news-items .item .price {
    position: absolute;
    bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: #242424;
}

.ads-list {
    margin-bottom: 80px;
}

.ads-list .more {
    height: 58px;
    width: 285px;
    padding-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    border: 1px solid;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    background: url("../images/arrow.svg") calc(100% - 34px) center no-repeat;
    background-size: 15px auto;
    border-radius: 2px;
}

.agv-block {
    margin-bottom: 90px;
}

.video-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.video-items .item {
    width: 538px;
    margin-bottom: 55px;
}

.video-items .item .image {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 30px;
}

.video-items .item iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/*.video-items .item .image:after {
	position: absolute;
	content: "";
	height: 100px;
	width: 100px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url("../images/video.png") center center no-repeat;
	pointer-events: none
}


.video-items .item .image:hover:after {
	background: url("../images/video-hover.png") center center no-repeat;
}*/

.video-items .item .info {
    display: flex;
    margin-bottom: 25px;
}

.video-items .item .likes, .video-items .item .viewers {
    position: relative;
    padding-left: 43px;
    font-size: 12px;
    color: #b5b5b5;
    margin-right: 20px;
}

.video-items .item .likes:before, .video-items .item .viewers:before {
    position: absolute;
    content: "";
    height: 32px;
    width: 32px;
    border: 1px solid #ededed;
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.video-items .item .likes:before {
    background: url("../images/heart.svg") center center no-repeat;
    background-size: 16px auto;
}

.video-items .item .viewers:before {
    background: url("../images/eye.svg") center center no-repeat;
    background-size: 20px auto;
}

.three-items-list .items {
    display: flex;
    justify-content: space-between;
}

.three-items-list .item-big {
    width: calc(100% - 285px);
    display: flex;
    justify-content: space-between;
}

.three-items-list .item-big .image {
    width: 420px; overflow:hidden; border-radius: 3px;
}

.three-items-list .item-big .image img {
    /*max-width: 100%*/
}

.three-items-list .item-big .text {
    width: calc(100% - 430px);
}

.three-items-list .items-small {
    width: 251px;
}

.three-items-list .date, .news-right .date {
    font-size: 12px;
    color: #b8b8b8;
    margin-bottom: 10px;
}

.three-items-list .item-big .name {
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0;
}

.three-items-list .items .name a {
    color: #242424;
}

.three-items-list .items-small .image {
    margin-bottom: 15px;
}

hr {
    height: 1px;
    background: #e8e8e8;
    border: 0 none;
    margin: 50px 0;
}

.content-right {
    width: 254px;
}

.content-right .agv-block {
    margin-bottom: 38px;
}

.content-right h4 {
    margin-bottom: 30px;
}

.news-right .text {
    margin-bottom: 40px;
}

.vk-block {
    margin-bottom: 40px;
}

.forum-right h4 a {
    color: var(--secondary-color);
}

.forum-right .item {
    padding-bottom: 25px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 25px;
}

.forum-right .name {
    color: #969696;
    margin-bottom: 15px;
}

.forum-right .name a {
    color: #242424;
    font-weight: 500;
}

.forum-right .info {
    display: flex;
}

.forum-right .author, .forum-right .comments {
    position: relative;
    padding-left: 43px;
    font-size: 13px;
    color: #585858;
}

.forum-right .author {
    margin-right: 25px;
}

.forum-right .author:before, .forum-right .comments:before {
    position: absolute;
    content: "";
    height: 29px;
    width: 29px;
    border: 1px solid #ededed;
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.forum-right .author:before {
    background: url("../images/user.svg") center center no-repeat;
    background-size: 12px auto;
}

.forum-right .comments:before {
    background: url("../images/comment.svg") center center no-repeat;
    background-size: 15px auto;
}

.login-form {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 70px 20px 60px;
    width: 100%;
    max-width: 320px;
    z-index: 3333;
}

.login-opened {
    overflow: hidden;
}

.login-opened .login-form {
    display: block;
}

.login-opened:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3332;
}

.login-form h4 {
    text-transform: uppercase;
    text-align: center;
}

.login-form input, .login-form label {
    display: block;
    width: 100%;
}

.login-form label {
    margin-bottom: 5px;
}

.login-form input[type="text"], .login-form input[type="password"] {
    margin-bottom: 15px;
}

.login-form .checkbox label {
    display: flex;
    margin: 0;
}

.login-form .checkbox input {
    width: auto;
}

.login-form input[type="submit"] {
    height: 60px;
    background: #f58220;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.login-form .links a {
    display: block;
    color: #f58220;
    text-decoration: underline;
    margin-bottom: 5px;
    text-align: center;
}

.login-form .login-close {
    position: absolute;
    top: 33px;
    right: 20px;
    background: url("../images/close.svg") center center no-repeat;
    height: 25px;
    width: 25px;
    background-size: 150% auto;
    filter: brightness(0);
}

/*.breadcrumb-navigation {margin-top: 30px !important} //зачем? */ 

.breadcrumb-navigation li {
	color: #282828;
	font-size: 13px;
	margin-right: 10px
}

.breadcrumb-navigation li a {
	color: #b2b2b2
}

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

.search-sort .search-form {
    width: 47%;
    max-width: 440px;
}

.search-sort .search-form form {
position: relative
}

.search-sort .search-form input[type="text"] {
height: 54px;
width: 100%
}

.search-sort .search-form input[type="submit"] {
position: absolute;
    background: url(../images/search.svg) center center no-repeat;
    background-size: 15px auto;
    height: 41px;
    width: 45px;
    top: 8px;
    right: 5px;
text-indent: -9999px
}

.news-sort {
	display: flex;
    white-space: nowrap;
    font-size: 12px;
}

.news-sort a {
margin: 0 5px
}

.news-sort a[href^="?sort=comments"] {
margin-right: 0
}

.sort-date a[href^="?sort=date"] {
color: var(--secondary-color)
}

.sort-views a[href^="?sort=views"] {
color: var(--secondary-color)
}

.sort-comments a[href^="?sort=comments"] {
color: var(--secondary-color)
}

.news-list-item {
position: relative;
display: flex;
border: 0 none !important;
padding-right: 68px
}

.news-list-item .preview_picture {
float: none !important
}

.news-list-item .news-name {
display: block;
font-size: 18px;
font-weight: 500;
margin-bottom: 10px
}

.news-list-item .list-date {
display: block;
font-size: 12px;
font-weight: 300;
color: #b8b8b8;
margin-bottom: 10px
}

.news-list-item .see {
position: absolute;
padding-left: 42px;
top: 0;
right: 0;
    font-size: 12px;
    color: #b5b5b5;
}

.news-list-item .see:before {
    position: absolute;
    content: "";
    height: 32px;
    width: 32px;
    border: 1px solid #ededed;
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    background: url(../images/eye.svg) center center no-repeat;
    background-size: 20px auto;
}

.news-list-item .more {
display: flex;
align-items: center;
padding: 0;
color: var(--secondary-color);
text-transform: uppercase;
font-weight: 500;
margin-top: 25px;
float: none
}

.news-list-item .more img {
width: 12px;
margin-left: 18px
}

.news-detail-wrapper {
display: flex;
flex-wrap: wrap
}

.news-detail-wrapper .obvl-list/*, #bx_incl_area_5_1_1*/ {
	margin-right: 20px;
        width: 200px;
}

.news-detail-wrapper .obvl-list .news-items {
	margin-right: 20px;
        width: 200px;
}

.obvl-list h4 {
    font-size: 14px;
    color: #f58220;
}

.obvl-list .news-title a, .obvl-list .add_ad {
    display: none !important
}

.news-detail-wrapper .obvl-list .news-items .item {
	width: 100%;
	margin: 0 0 50px
} 

.news-detail-wrapper .news-item-detail, #bx_incl_area_5_1_2 {
	width: calc(100% - 10px)
}

.news-detail-wrapper #bx_incl_area_5_1_2  .news-item-detail {
	width: 100%
}

.news-item-detail h1 {
	    text-transform: inherit;
    font-weight: 500;
    margin-botton: 30px !important
}

.news-item-detail .news-date-time {
	font-size: 12px;
	color: #b8b8b8;
	font-weight: 300;
	margin-bottom: 15px;
	display: block
}

.news-item-detail .events {
	width: 100%
}

.news-item-detail .events .item img {
	margin: 0
}

.news-item-detail .events .owl-events .owl-nav button, .news-item-detail .events .owl-events .owl-nav button:hover {
	bottom: 10px
}

.news-item-detail-copyprint {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 13px;
	margin-bottom: 15px
}

.news-item-detail .print {
	position: relative;
	text-decoration: underline
}

.news-item-detail .print:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	top: -2px;
	left: -32px;
	background: url(../images/print.svg) 0 0 no-repeat;
        background-size: 100% auto;
}

.warning {
	padding: 40px 0 0 60px;
	background: url(../images/info.svg) 0 40px no-repeat;
        background-size: 30px auto;
	font-size: 13px
}

footer {
    background: #313131;
    color: #fff;
}

footer .limit {
    display: flex;
}

.footer-left, .footer-right {
    position: relative;
    width: 50%;
    padding: 55px 0 55px 95px;
}

.footer-left {
    padding: 55px 95px 55px 0;
    background: #292929;
}

.footer-left:before {
    position: absolute;
    content: "";
    height: 100%;
    width: calc((100vw - 1200px)/2);
    background: #292929;
    top: 0;
    right: 100%;
}

.footer-left p {
    margin: 0 0 30px;
}

.footer-left a {
    display: block;
    color: #b5b5b5;
    text-decoration: underline;
}

.footer-right li {
    margin-bottom: 20px;
}

.footer-right a[href^="tel"] {
    color: #fff;
}

.footer-right a[href^="mailto"] {
    color: var(--secondary-color);
}

.afisha {
      margin: auto;
    }