*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: var(--color-black);
}
.container-1890{
    width: 100%;
    max-width: 1890px;
    margin-left: auto;
    margin-right: auto;
}
.container-1490{
    width: 100%;
    max-width: 1490px;
    margin-left: auto;
    margin-right: auto;
}
.container{
    width: 100%;
    max-width: 1392px;
    margin-left: auto;
    margin-right: auto;
}
.br16{
    border-radius: 16px;
}
.br24{
    border-radius: 24px;
}
.mt50{
    margin-top: 50px!important;
}
.mt60{
    margin-top: 60px!important;
}
.mt70{
    margin-top: 70px!important;
}
.mt80 {
    margin-top: 80px!important;
}
.mt90{
    margin-top: 90px!important;
}
.mt100{
    margin-top: 100px!important;
}
.mt110{
    margin-top: 110px!important;
}
.mt120{
    margin-top: 120px!important;
}
.title__block{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.title{
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 44px;
    line-height: 52px;
    margin: 0;
}
.h1{
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 52px;
    line-height: 70px;
    margin: 0;
}
.preview{
    margin: 30px 0 0 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    max-width: 1038px;
    padding: 0;
    list-style-type: none;
}
.preview li{
    padding-left: 40px;
    position: relative;
}
.preview li::before{
    position: absolute;
    content: '';
    left: 0;
    top: 12px;
    width: 25px;
    height: 1px;
    background: #000;
}
.preview li a{
    transition: .3s;
    color: #000;
    text-decoration: none;
}
.preview li a:hover{
    cursor: pointer;
    color: var(--color-orange);
}
header{
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
}
header.main{
    top: 15px;
    transition: 0.3s;
}
.header{
    background: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
    border-radius: 0 0 16px 16px;
}
header.main .header{
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}
.header__wrapper{
    display: flex;
    align-items: center;
    background: #fff;
    padding: 16px 27px 16px 50px;
}
header.main.fixed{
    top: 0;
}
header.main.fixed .header__wrapper{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
}
.header__logo{
    display: flex;
}
.header__address{
    max-width: 280px;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.01em;
    font-style: normal;
    margin-left: 40px;
}
.header__info{
    display: flex;
    margin-left: auto;
    align-items: center;
}
.header__phone{
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #586946;
    text-decoration: none;
    display: flex;
    position: relative;
    padding-left: 21px;
    margin-left: 15px;
    transition: 0.3s;
}
.header__phone::before{
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url('../images/phone.svg')no-repeat 50%;
    background-size: contain;
    width: 18px;
    height: 18px;
}
.header__phone:hover{
    cursor: pointer;
    color: rgba(88, 105, 70, 0.6);
}
.header__buy-ticket{
    display: flex;
    margin: 0 36px;
    background: url('../images/buy-ticket.svg')no-repeat 50%;
    background-size: contain;
    width: 200px;
    height: 54px;
    transition: 0.3s;
}
.header__buy-ticket:hover{
    opacity: 0.8;
    cursor: pointer;
}
.header__search{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EEEFEC;
    border-radius: 50%;
    width: 54px;
    height: 54px;
}
.header__lang{
    font-weight: 500;
}
.header__lang,
.header__eye{
    margin-left: 24px;
}
.header__eye{
    display: flex;
}
.header__search svg,
.header__eye svg{
    transition: 0.3s;
}
.header__search:hover svg,
.header__eye:hover svg{
    transform: scale(1.1);
}
.header__search:hover,
.header__lang:hover,
.header__eye:hover{
    cursor: pointer;
}
.header__nav{
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    backdrop-filter: blur(15px);
    padding: 16px 49px;
    background: #eeefec;
    transition: 0.3s;
}
header.main .header__nav{
    margin-top: 10px;
    background: rgba(68, 68, 68, 0.5);
}
header.fixed .header__nav{
    margin-top: 0;
}
.header__menu{
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 0 32px;
}
.header__menu-link{
    color: var(--color-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}
header.main .header__menu-link{
    color: #fff;
}
.header__menu-link:hover{
    color: var(--color-orange);
}
.header__nav-write{
    display: flex;
    margin-left: auto;
    position: relative;
    padding-left: 34px;
    text-decoration: none;
    color: #586946;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}
.header__nav-write::before{
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url('../images/mail.svg')no-repeat 50%;
    background-size: contain;
    width: 20px;
    height: 16px;
}
header.main .header__nav-write{
    color: #fff;
}
header.main .header__nav-write::before{
    background: url('../images/mail-main.svg')no-repeat 50%;
    background-size: contain;
}
.header__nav-write:hover{
    opacity: 0.7;
}
main{
    margin-top: 162px;
}
main.main{
    margin-top: 0;
}
.separator{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.separator svg{
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 28px;
    min-width: fit-content;
}
.separator::before{
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: #d1d8c5;
}
body .swiper-button-lock,
body .swiper-button-lock{
    display: none;
}
.partners{
    position: relative;
    padding: 20px 25px;
}
.partners__item{
    display: flex;
    justify-content: center;
}
.partners__item-pic{
    max-width: 100%;
    height: auto;
}
.partners .swiper-wrapper{
    align-items: center;
}
footer{
    background: #231f20;
    color: #fff;
}
.footer{
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 60px 0;
}
.footer__info{
    display: flex;
}
.footer__logo{
    display: flex;
    height: fit-content;
}
.footer__menu{
    min-width: 330px;
    margin-left: auto;
}
.footer__menu ul{
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.footer__menu-link{
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #fff;
    text-decoration: none;
    display: block;
    transition: 0.3s;
    width: fit-content;
}
.footer__contacts{
    display: flex;
    flex-direction: column;
    width: 450px;
    margin-left: 25px;
}
.footer__address{
    font-style: normal;
}
.footer__phones{
    display: flex;
    margin-top: 40px;
    gap: 0 30px;
}
.footer__phone{
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #fff;
    text-decoration: none;
    padding-left: 21px;
    position: relative;
    transition: 0.3s;
}
.footer__phone::before{
    position: absolute;
    content: '';
    left: 0;
    top: 3px;
    background: url('../images/phone-icon-gray.svg')no-repeat 50%;
    background-size: contain;
    width: 18px;
    height: 18px;
}
.footer__menu-link:hover,
.footer__phone:hover{
    color: var(--color-orange);
}
.footer__qr{
    margin-left: 115px;
}
.footer__bottom{
    display: flex;
    justify-content: space-between;
}
.footer__copyright{
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 129%;
    color: rgba(202, 202, 202, 0.8);
}
.footer__social{
    min-width: fit-content;
    margin-left: 122px;
    display: flex;
    align-items: center;
    gap: 0 24px;
}
.footer__social-link{
    display: flex;
    transition: 0.3s;
}
.footer__social-link:hover{
    cursor: pointer;
    opacity: 0.7;
    transform: translateY(-4px);
}
.breadcrumbs{
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
}
.breadcrumbs__item{
    font-weight: 400;
    font-size: 14px;
}
.breadcrumbs__item a{
    text-decoration: none;
    color: #8a8a8a;
    transition: 0.3s;
}
.breadcrumbs__arrow{
    font-weight: 400;
    font-size: 14px;
    color: #8a8a8a;
    margin: 0 9px;
}
.breadcrumbs__item a:hover{
    color: var(--color-orange);
}
.content p{
    margin-top: 24px;
    margin-bottom: 24px;
}
.content h3{
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 24px;
    color: #303030;
    line-height: 32px;
}
.services__list{
    display: flex;
    flex-direction: column;
    gap: 40px 0;
}
.services__item{
    padding: 40px;
    display: flex;
    justify-content: space-between;
    background-repeat: no-repeat!important;
    background-size: cover!important;
    background-position: center!important;
}
.services__item:nth-child(2n){
    flex-direction: row-reverse;
}
.services__item-panel{
    background: #ede6db;
    display: flex;
    flex-direction: column;
    width: 585px;
    min-height: 377px;
    padding: 45px 40px 45px 45px;
}
.services__item:nth-child(2n) .services__item-panel{
    background: #eeefec;
}
.services__item-title{
    margin: 0;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
    color: #303030;
}
.services__item-preview{
    margin: 20px 0 0 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #303030;
    flex-grow: 2;
}
.services__item-link{
    margin-top: 40px;
    font-weight: 600;
    padding: 15px 50px;
}
.services__item-views{
    background: #ede6db;
    border-radius: 100px;
    padding: 7px 10px 7px 40px;
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #303030;
    height: fit-content;
    position: relative;
}
.services__item-views::before{
    position: absolute;
    content: '';
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: url('../images/view-icon.svg')no-repeat 50%;
    background-size: contain;
    width: 20px;
    height: 20px;
}
.afisha{
    position: relative;
}
.afisha .swiper-slide{
    height: auto;
}
.afisha__item{
    background: #ede6db;
    padding: 25px 25px 25px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.afisha__item-data{
    font-weight: 700;
    font-size: 24px;
    color: #231f20;
}
.afisha__item-title{
    margin: 20px 0 0 0;
    padding: 20px 0 0 0;
    border-top: 1px solid #b4a38d;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    color: #231f20;
    flex-grow: 2;
}
.afisha__item-btn{
    padding: 12px 30px!important;
}
.afisha__item .d-flex {
    display: flex;
}
.afisha__item-save {
    margin-top: 7px;
    margin-left: 15px;
}
.afisha__zoo .afisha__item{
    background: #dce1d3;
    position: relative;
    z-index: 1;
}
.afisha__zoo .swiper-slide .afisha__item::before{
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    z-index: -1;
}
.afisha__zoo .swiper-slide:nth-child(4n-3) .afisha__item::before{
    background: url('../images/afisha-fon1.svg')no-repeat 50%;
    background-size: contain;
    width: 207px;
    height: 144px;
}
.afisha__zoo .swiper-slide:nth-child(4n-2) .afisha__item::before,
.afisha__zoo .swiper-slide:nth-child(4n) .afisha__item::before{
    background: url('../images/afisha-fon2.svg')no-repeat 50%;
    background-size: contain;
    width: 226px;
    height: 155px;
}
.afisha__zoo .swiper-slide:nth-child(4n-1) .afisha__item::before{
    background: url('../images/afisha-fon3.svg')no-repeat 50%;
    background-size: contain;
    width: 147px;
    height: 159px;
}
.afisha__zoo .afisha__item-data{
    color: #1b3917;
}
.afisha__zoo .afisha__item-btn{
    color: #1b3917;
    border-radius: 20px 30px;
    padding: 12px 24px;
}
.program{
    display: flex;
    justify-content: center;
    padding: 95px;
    background: url('../images/program-fon.jpg')no-repeat 50%;
    background-size: cover;
    position: relative;
}
.program__info{
    max-width: 660px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.program__text{
    font-size: 26px;
    line-height: 150%;
    letter-spacing: 0.01em;
    text-align: center;
    font-weight: 500;
    color: #fff;
    margin: 0;
}
.program__btns{
    display: flex;
    align-items: center;
    gap: 20px;
}
.program__btn{
    min-width: 285px;
    font-weight: 600;
}
.program::before{
    position: absolute;
    content: '';
    right: 100px;
    bottom: 0;
    background: url('../images/program-pic1.png')no-repeat 50%;
    background-size: contain;
    width: 195px;
    height: 228px;
}
.program::after{
    position: absolute;
    content: '';
    right: 22%;
    top: 0;
    background: url('../images/program-pic2.png')no-repeat 50%;
    background-size: contain;
    width: 109px;
    height: 59px;
}
.program__pic{
    position: absolute;
    left: 7%;
    bottom: 0;
    background: url('../images/program-pic3.png')no-repeat 50%;
    background-size: contain;
    width: 230px;
    height: 346px;
}
.header__burger,
.mob-header__buy-ticket,
.mob-header__address,
.mob-menu__header,
.mob-menu__phones{
    display: none;
}
.map{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eeefec;
    padding: 45px 45px 50px 55px;
    gap: 0 40px;
    position: relative;
}
.map::before{
    position: absolute;
    content: '';
    right: 8px;
    bottom: -16px;
    background: url('../images/map-icon.svg')no-repeat 50%;
    background-size: contain;
    width: 77px;
    height: 63px;
}
.map__text{
    margin-top: 40px;
}
.map__text p{
    margin: 24px 0;
    font-size: 18px;
}
.map__btn{
    margin-top: 50px;
    display: flex;
    align-items: center;
    padding: 20px 40px;
}
.map__btn svg{
    margin-left: 10px;
}
.map__pic{
    display: flex;
    max-width: 684px;
}
.map__pic-center{
    display: flex;
    justify-content: center;
}
.ticket-price{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.ticket-price__item{
    width: 32%;
    max-width: 448px;
    padding: 35px 25px 30px 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.ticket-price__item.item-1{
    background: url('../images/ticket-price-fon-1.svg')no-repeat 50%;
    background-size: cover;
}
.ticket-price__item.item-2{
    background: url('../images/ticket-price-fon-2.svg')no-repeat 50%;
    background-size: cover;
}
.ticket-price__item.item-3{
    background: url('../images/ticket-price-fon-3.svg')no-repeat 50%;
    background-size: cover;
}
.ticket-price__item-title{
    margin: 0;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    flex-grow: 2;
}
.ticket-price__item-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 55px;
}
.ticket-price__item-price{
    margin: 0;
    font-weight: 500;
    font-size: 40px;
    line-height: 50px;
}
.ticket-price__item-price span{
    font-weight: 600;
    font-size: 50px;
    line-height: 62px;
}
.ticket-price__item-pic{
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: -1;
}
.news{
    position: relative;
}
.news__item{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 30px;
    color: #fff;
    text-decoration: none;
    height: 400px;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat!important;
    background-size: cover!important;
    background-position: center!important;
}
.news__item::before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(29, 29, 27, 0) 0%, rgba(29, 29, 27, 0.85) 100%);
    z-index: -1;
    border-radius: 16px;
}
.news__item-title{
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
}
.news__item-data{
    margin-top: 10px;
    line-height: 140%;
}
.news__item-link{
    margin: 10px 0 0 0;
    width: fit-content;
    font-weight: 500;
}
.news__item:hover .link__arrow::before{
    transform: translate(10px, -50%);
}
.guardians{
    position: relative;
}
.guardians__item{
    display: flex;
    align-items: center;
    background: #ede6db;
    padding: 24px 48px 24px 20px;
}
.guardians__item-pic{
    display: flex;
    margin-right: 16px;
}
.guardians__item-pic img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.guardians__item-name{
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: #303030;
}
.navigation{
    display: flex;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.navigation ul{
    list-style-type: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.navigation__link{
    text-decoration: none;
    color: #fff;
    background: var(--color-orange);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    transition: 0.3s;
}
.navigation__link:hover{
    cursor: pointer;
    opacity: 0.7;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.flex-gap-8 {
    gap: 8px;
}

.news__item-short_desc {
    display: none;
    position: absolute;
    transform: translate(0px, -150%);
}
.news-hoverable-block:hover .news__item-short_desc {
    width: 80%;
    height: 50%;
    padding-top: 45px;
    padding-bottom: 20px;
    display: block;
}

.news__item-short_desc {
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #fff;
}

.sort_afisha_by_date {
    cursor: pointer;
}
.font_inter {
    font-family: Inter !important;
}

@media(max-width: 1600px){
    .container-1490{
        margin-left: 20px;
        margin-right: 20px;
        width: calc(100% - 40px);
    }
    .container-1890{
        margin-left: 30px;
        margin-right: 30px;
        width: calc(100% - 60px);
    }
    .container{
        margin-left: 30px;
        margin-right: 30px;
        width: calc(100% - 60px);
    }
    .header__logo-pic{
        width: 140px;
        height: auto;
        object-fit: contain;
    }
    .header__address {
        max-width: 250px;
        font-size: 13px;
        line-height: 150%;
        margin-left: 30px;
    }
    .header__phone{
        font-size: 18px;
        line-height: 115%;
    }
    .header__buy-ticket {
        margin: 0 27px;
        width: 160px;
        height: 43px;
    }
    .header__search {
        width: 43px;
        height: 43px;
    }
    .header__search svg, .header__eye svg {
        transition: 0.3s;
        width: 22px;
        height: 22px;
    }
    header.main{
        top: 10px;
    }
    .header__lang, .header__eye {
        margin-left: 18px;
    }
    .header__lang{
        font-size: 15px;
    }
    .header__wrapper{
        padding: 13px 24px 13px 35px;
    }
    header.main .header__wrapper{
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
    }
    header.main .header__nav{
        margin-top: 6px;
    }
    .header__menu-link{
        font-size: 15px;
    }
    .header__menu{
        gap: 0 28px;
    }
    .header__nav{
        padding: 13px 35px;
    }
    .header__nav-write{
        padding-left: 28px;
        font-size: 15px;
    }
    .header__nav-write::before{
        width: 18px;
        height: 14px;
    }
    .header__nav{
        margin-top: 8px;
    }
    main{
        margin-top: 127px;
    }
    .breadcrumbs{
        padding: 23px 0;
    }
    .breadcrumbs__item,
    .breadcrumbs__arrow{
        font-size: 13px;
        line-height: 18px;
    }
    .mt50{
        margin-top: 40px!important;
    }
    .mt60{
        margin-top: 50px!important;
    }
    .mt70{
        margin-top: 60px!important;
    }
    .mt90{
        margin-top: 80px!important;
    }
    .mt100{
        margin-top: 90px!important;
    }
    .mt110{
        margin-top: 100px!important;
    }
    .mt120{
        margin-top: 110px!important;
    }
    .title{
        font-size: 38px;
        line-height: 48px;
    }
    .h1 {
        font-size: 44px;
        line-height: 54px;
    }
    .preview {
        margin: 25px 0 0 0;
        font-size: 16px;
        line-height: 140%;
    }
    .separator svg{
        padding: 0 18px;
        transform: scale(0.9);
    }
    .afisha__item-data{
        font-size: 22px;
    }
    .afisha__item-title {
        margin: 15px 0 0 0;
        padding: 15px 0 0 0;
        font-size: 16px;
        line-height: 140%;
    }
    .afisha__item-btn{
        /*margin-top: 30px;*/
    }
    .link_black {
        text-decoration-color: black;
        color: black;
        font: Inter;
    }
    .program{
        padding: 75px;
    }
    .program__text {
        font-size: 24px;
        line-height: 140%;
    }
    .program__btns{
        gap: 15px;
    }
    .program__pic{
        width: 194px;
        height: 290px;
    }
    .program::after{
        width: 93px;
        height: 50px;
    }
    .program::before{
        width: 175px;
        height: 200px;
    }
    .partners {
        padding: 15px 20px;
    }
    .footer__logo img{
        height: 40px;
        width: 132px;
    }
    .footer__menu ul{
        gap: 13px 0;
    }
    .footer__menu-link{
        font-size: 15px;
    }
    .footer__address{
        font-size: 15px;
    }
    .footer__qr{
        width: 100px;
        height: 100px;
        object-fit: contain;
    }
    .footer__phones {
        margin-top: 30px;
        gap: 0 20px;
    }
    .footer__phone{
        font-size: 18px;
        line-height: 140%;
    }
    .footer{
        gap: 45px 0;
    }
    .footer__copyright{
        font-size: 13px;
    }
    .services__list{
        gap: 30px 0;
    }
    .services__item{
        padding: 30px;
    }
    .services__item-panel{
        padding: 37px 32px 37px 37px;
        min-height: 350px;
    }
    .services__item-title {
        font-size: 32px;
        line-height: 42px;
    }
    .services__item-preview{
        font-size: 16px;
    }
    .services__item-link{
        margin-top: 30px;
    }
    .services__item-views{
        font-size: 15px;
    }
    .content p {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 24px;
    }
    .content h3 {
        margin-top: 25px;
        margin-bottom: 25px;
        font-size: 22px;
        line-height: 30px;
    }
    .map {
        padding: 37px 37px 42px 45px;
        gap: 0 30px;
    }
    .map__text {
        margin-top: 30px;
    }
    .map__text p {
        margin: 20px 0;
        font-size: 16px;
    }
    .map__btn {
        margin-top: 40px;
        display: flex;
        align-items: center;
        padding: 16px 30px;
    }
    .map__btn svg {
        width: 80px;
        height: auto;
    }
    .map::before{
        width: 60px;
        height: 49px;
    }
    .ticket-price{
        gap: 18px;
    }
    .ticket-price__item-title {
        font-size: 22px;
        line-height: 28px;
    }
    .ticket-price__item-price {
        font-size: 34px;
        line-height: 44px;
    }
    .ticket-price__item-price span {
        font-size: 44px;
        line-height: 54px;
    }
    .ticket-price__item-info{
        margin-top: 40px;
    }
    .ticket-price__item-pic {
        top: 20px;
        right: 30px;
    }
    .ticket-price__item{
        padding: 30px 20px 25px 23px;
        min-height: 225px;
    }
    .news__item{
        height: 360px;
    }
    .news__item-title{
        font-size: 18px;
    }
    .news__item-data,
    .news__item-link{
        font-size: 15px;
    }
    .guardians__item{
        padding: 20px 40px 20px 18px;
    }
    .guardians__item-pic{
        margin-right: 12px;
    }
    .guardians__item-pic img {
        width: 85px;
        height: 85px;
    }
    .guardians__item-name {
        font-size: 16px;
        line-height: 135%;
    }
    .navigation{
        margin-top: 30px;
    }
}
@media(max-width: 1400px){
    .header__logo-pic{
        width: 130px;
    }
    .header__address {
        max-width: 240px;
        font-size: 12px;
        line-height: 140%;
        margin-left: 25px;
    }
    .header__phone{
        font-size: 17px;
    }
    .header__buy-ticket {
        width: 145px;
        height: 40px;
    }
    .header__lang {
        font-size: 14px;
    }
    .header__lang, .header__eye {
        margin-left: 15px;
    }
    .header__search {
        width: 37px;
        height: 37px;
    }
    .header__menu-link {
        font-size: 14px;
    }
    .header__menu {
        gap: 0 20px;
    }
    .header__nav-write {
        padding-left: 25px;
        font-size: 14px;
    }
    .header__nav {
        padding: 10px 35px;
    }
    main {
        margin-top: 118px;
    }
    .breadcrumbs {
        padding: 20px 0;
    }
    .mt50{
        margin-top: 30px!important;
    }
    .mt60{
        margin-top: 40px!important;
    }
    .mt70{
        margin-top: 50px!important;
    }
    .mt90{
        margin-top: 70px!important;
    }
    .mt100{
        margin-top: 80px!important;
    }
    .mt110{
        margin-top: 90px!important;
    }
    .mt120{
        margin-top: 100px!important;
    }
    .title {
        font-size: 34px;
        line-height: 42px;
    }
    .separator svg {
        padding: 0 15px;
        transform: scale(0.8);
    }
    .afisha__item-data {
        font-size: 20px;
        line-height: 24px;
    }
    .afisha__item-title {
        margin: 12px 0 0 0;
        padding: 12px 0 0 0;
        font-size: 14px;
        line-height: 140%;
    }
    .afisha__item-btn {
        /*margin-top: 25px;*/
    }
    .afisha__item{
        padding: 20px 25px 20px 20px;
    }
    .program__text {
        font-size: 22px;
        line-height: 135%;
    }
    .program__info{
        max-width: 560px;
    }
    .program__btns{
        width: 100%;
    }
    .program__btn{
        min-width: calc(50% - 8px);
    }
    .footer {
        gap: 35px 0;
        padding: 30px 0;
    }
    .footer__copyright {
        font-size: 12px;
    }
    .footer__social {
        margin-left: 50px;
        gap: 0 15px;
    }
    .footer__logo img {
        height: 35px;
        width: 116px;
    }
    .footer__qr {
        width: 90px;
        height: 90px;
        margin-left: 50px;
    }
    .footer__menu-link {
        font-size: 14px;
    }
    .footer__address {
        font-size: 14px;
        line-height: 22px;
    }
    .footer__phones {
        margin-top: 25px;
    }
    .footer__phone {
        font-size: 16px;
        line-height: 150%;
    }
    .h1 {
        font-size: 38px;
        line-height: 48px;
    }
    .preview {
        margin: 20px 0 0 0;
        font-size: 14px;
        line-height: 140%;
    }
    .services__item-views {
        font-size: 14px;
        padding: 7px 10px 7px 35px;
    }
    .services__item-panel {
        padding: 25px 25px 25px 30px;
        min-height: 290px;
        width: 520px;
    }
    .services__item-title {
        font-size: 28px;
        line-height: 38px;
    }
    .services__item-preview {
        font-size: 14px;
    }
    .content p {
        margin-top: 16px;
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 22px;
    }
    .content h3 {
        margin-top: 22px;
        margin-bottom: 22px;
        font-size: 20px;
        line-height: 28px;
    }
    .afisha__zoo .afisha__item-btn{
        padding: 10px 24px!important;
    }
    header.main {
        top: 0;
    }
    .map__pic,
    .map__info{
        width: 50%;
    }
    .map__pic-img{
        width: 100%;
        height: auto;
    }
    .map__pic-center .map__pic-img{
        width: fit-content;
    }
    .map__text p {
        margin: 16px 0;
        font-size: 15px;
        line-height: 20px;
    }
    .map__btn {
        margin-top: 30px;
        padding: 12px 25px;
    }
    .map {
        padding: 30px 30px 40px 30px;
        gap: 0 25px;
    }
    .ticket-price__item-title {
        font-size: 20px;
        line-height: 26px;
    }
    .ticket-price__item-price {
        font-size: 28px;
        line-height: 38px;
    }
    .ticket-price__item-price span {
        font-size: 36px;
        line-height: 44px;
    }
    .ticket-price__item {
        padding: 25px 20px 20px 23px;
        min-height: 220px;
    }
    .news__item {
        height: 320px;
    }
    .news__item-title {
        font-size: 17px;
        line-height: 22px;
    }
    .news__item-data, .news__item-link {
        font-size: 14px;
    }
    .guardians__item {
        padding: 16px 30px 16px 18px;
    }
    .guardians__item-pic img {
        width: 65px;
        height: 65px;
    }
    .guardians__item-name {
        font-size: 14px;
    }
    .navigation__link{
        width: 35px;
        height: 35px;
        font-size: 16px;
        line-height: 16px;
    }
}
@media(max-width: 1199px){
    .header__address,
    .header__buy-ticket{
        display: none;
    }
    .header__search{
        margin-left: 30px;
    }
    .header__burger{
        display: flex;
        margin-left: 30px;
        width: 28px;
        height: 23px;
        position: relative;
        background: none;
        border: none;
        padding: 0;
    }
    .header__burger span {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 5px;
        background-color: var(--color-green);
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }
    .header__burger span:nth-child(1) {
        top: 0;
    }
    .header__burger span:nth-child(2) {
        top: 11px;
        transform: translateY(-50%);
    }
    .header__burger span:nth-child(3) {
        bottom: 0;
    }
    .header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 7px);
    }
    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    .header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    body header.main .header__nav,
    body header .header__nav{
        position: fixed;
        top: 69px;
        left: -100%;
        margin: 0;
        width: 100%;
        background: #fff;
        height: calc(100% - 69px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        transition: 0.3s;
        border-radius: 0;
        overflow-y: auto;
    }
    body header .header__nav.active{
        left: 0;
    }
    body header.main .header__menu-link,
    body header .header__menu-link{
        color: var(--color-black);
        font-size: 16px;
    }
    .header__wrapper {
        padding: 15px 0;
    }
    header.main .header__wrapper,
    header.main.fixed .header__wrapper{
        box-shadow: none;
    }
    .header__menu {
        gap: 20px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    header.main .header,
    header .header{
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .header__nav-write::before{
        left: 13px;
        background: url(../images/mail-main.svg) no-repeat 50%;
        background-size: contain
    }
    header.main .header__nav-write,
    header .header__nav-write {
        background: var(--color-green);
        border-radius: 16px;
        margin: 30px 0 0 0;
        color: #fff;
        padding: 10px 20px 10px 40px;
    }
    .mob-header__address{
        display: flex;
        margin: 30px 0 0 0;
        font-size: 18px;
        line-height: 26px;
        max-width: 50%;
    }
    .mob-header__buy-ticket{
        display: flex;
        margin: 30px 0 0 0;
        width: 200px;
        height: 55px;
        min-height: 55px;
    }
    main {
        margin-top: 69px;
    }
    .h1 {
        font-size: 34px;
        line-height: 46px;
    }
    .title {
        font-size: 28px;
        line-height: 40px;
    }
    .afisha__item-btn{
        padding: 10px 30px!important;
    }
    .program__pic{
        left: 20px;
    }
    .program::before{
        right: 10px;
    }
    .partners {
        padding: 15px 30px;
    }
    .container-1890,
    .container {
        margin-left: 20px;
        margin-right: 20px;
        width: calc(100% - 40px);
    }
    .afisha__item {
        padding: 20px 30px;
    }
    .footer__info{
        flex-wrap: wrap;
    }
    .footer__logo{
        width: 100%;
        margin-bottom: 25px;
    }
    .footer__menu{
        margin-left: 0;
    }
    .services__item {
        padding: 20px;
    }
    .services__item-panel {
        padding: 20px;
        min-height: 290px;
        width: 50%;
    }
    .map {
        padding: 25px 25px 35px 25px;
        gap: 0 20px;
    }
    .ticket-price__item{
        width: 33%;
        max-width: 304px;
        padding: 20px 15px 15px 15px;
    }
    .ticket-price {
        gap: 10px;
    }
    .ticket-price__item-pic{
        right: 5px;
    }
    .news__item{
        padding: 20px 25px;
    }
    .guardians__item {
        padding: 16px 30px 16px 30px;
    }
}
@media(max-width: 991px){
    .program{
        z-index: 1;
    }
    .program__pic {
        left: 0;
        z-index: -1;
    }
    .program::before {
        right: 0;
        z-index: -1;
    }
    .footer__menu{
        width: 100%;
    }
    .footer__contacts{
        margin: 25px 0 0 0;
    }
    .footer__qr{
        margin: 25px 0 0 auto;
    }
    .map{
        flex-direction: column;
        align-items: flex-start;
        gap: 30px 0;
    }
    .map__pic, .map__info {
        width: 100%;
    }
    .ticket-price__item {
        width: 49%;
        max-width: 100%;
    }
    .map__pic-center .map__pic-img{
        width: 100%;
    }
    .navigation{
        margin-top: 25px;
    }
}
@media(max-width: 767px){
    .footer__contacts{
        width: 400px;
    }
    .footer__bottom{
        flex-direction: column;
    }
    .footer__social{
        margin: 20px 0 0 0;
    }
    .header__search,
    .header__eye{
    }
    .mob-header__address{
        max-width: 100%;
    }
    .mob-menu__header{
        display: flex;
        align-items: center;
    }
    .mob-menu__header .header__search, .mob-menu__header .header__lang, .mob-menu__header .header__eye {
        display: flex;
    }
    .header__menu{
        margin-top: 25px;
    }
    .mob-menu__header .header__search{
        margin-left: 0;
    }
    .program {
        padding: 60px 30px;
    }
    .h1 {
        font-size: 34px;
        line-height: 34px;
    }
    .services__item-title {
        font-size: 28px;
        line-height: 32px;
    }
    .services__item,
    .services__item:nth-child(2n){
        flex-direction: column;
    }
    .services__item-panel{
        width: 100%;
        min-width: inherit;
        margin-top: 150px;
        min-height: inherit;
    }
    .services__item-views{
        order: -1;
    }
    .ticket-price__item{
        width: 100%;
    }
}
@media(max-width: 575px){
    .header__wrapper {
        padding: 10px 0;
    }
    .hidden-xs {
        display: none;
    }
    .header__burger{
        margin-left: auto;
        margin-right: 15px;
    }
    .mt50{
        margin-top: 20px!important;
    }
    .mt60{
        margin-top: 30px!important;
    }
    .mt70{
        margin-top: 40px!important;
    }
    .mt90{
        margin-top: 60px!important;
    }
    .mt100{
        margin-top: 70px!important;
    }
    .mt110{
        margin-top: 80px!important;
    }
    .mt120{
        margin-top: 90px!important;
    }
    .title {
        font-size: 24px;
        line-height: 28px;
    }
    body header.main .header__nav, body header .header__nav{
        padding: 20px;
        top: 59px;
        height: calc(100% - 59px);
    }
    .mob-header__address {
        font-size: 16px;
        line-height: 24px;
        max-width: 100%;
    }
    .mob-menu__phones{
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    .mob-menu__phones .header__phone{
        display: flex;
        margin-left: 0;
    }
    main {
        margin-top: 59px;
    }
    .afisha__item-data {
        font-size: 18px;
        line-height: 22px;
    }
    .afisha__item-btn {
        padding: 8px 25px !important;
    }
    .program__pic{
        display: none;
    }
    .program::before{
        content: none;
    }
    .program {
        padding: 60px 15px 30px 15px;
    }
    .program__text {
        font-size: 20px;
        line-height: 135%;
    }
    .program__btns{
        flex-direction: column;
    }
    .program__btn{
        min-width: 100%;
    }
    .footer__qr {
        margin: 25px auto 0 auto;
    }
    .footer__social{
        justify-content: center;
    }
    .breadcrumbs {
        padding: 15px 0;
    }
    .services__item {
        padding: 20px 15px;
    }
    .services__item-views{
        width: fit-content;
    }
    .services__item-panel{
        padding: 20px 15px;
    }
    .services__item-title {
        font-size: 24px;
        line-height: 28px;
    }
    .services__item-preview {
        font-size: 13px;
        margin: 15px 0 0 0;
    }
    .services__item-link {
        margin-top: 20px;
    }
    .h1 {
        font-size: 28px;
        line-height: 30px;
    }
    .content h3 {
        margin-top: 17px;
        margin-bottom: 17px;
        font-size: 18px;
        line-height: 24px;
    }
    .footer__menu{
        min-width: 100%;
    }
    .map{
        padding: 25px 15px 35px 15px;
    }
    .news__item {
        height: 300px;
    }
    .news__item-data{
        margin-top: 15px;
    }
}
@media(max-width: 374px){
    .mob-menu__phones{
        flex-direction: column;
    }
}


.header__menu-item {
    position: relative;
}
.header__submenu {
    position: absolute;
    top: 140%;
    left: -30%;
    background-color: #fff;
    border: 1px solid #a1a1a1;
    padding: 5px 0;
    list-style: none;
    margin: 0;
    display: none;
    z-index: 1;
    width: 250%;
    border-radius: 10px;
}
.header__submenu li {
    padding: 5px 15px;
}
.header__submenu-link {
    display: block;
    color: #333;
    text-decoration: none;
}
.header__submenu-link:hover {
    background-color: #f0f0f0;
}
.header__menu-item.active .header__submenu {
    display: block;
}
@media(max-width: 1199px){
    .header__submenu {
        left: 0;
        position: relative;
        top: 0;
        width: 100%;
    }
}

.chat-icon {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 999;
    width: 70px;
    height: 70px;
    display: block;
    padding: 10px;
    background: #fff;
    border: 1px solid #626b3e;
    border-radius: 100%;
}
.chat-icon svg{
    width: 100%;
    height: 100%;
}
#chat_content {
    display: none;
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 500px;
    background: #fff;
    position: fixed;
    right: 50px;
    bottom: 50px;
    border-radius: 10px;
    border: 1px solid #d1d9c5;
    z-index: 9999;
}
#chat_content.active {
    display: block;
}
.header_chat {
    display: flex;
    justify-content: space-between;
    margin: 12px;
}
.content_chat {
    height: 100%;
    max-height: 430px;
    padding: 20px;
    overflow: auto;
}
.close_chat {
    width: 30px;
    height: 30px;
    z-index: 999;
    cursor: pointer;
    text-align: center;
}
.questions {
    display: flex;
    flex-wrap: wrap;
}
.questions .question {
    padding: 6px 12px;
    border-radius: 20px;
    background: #303030;
    color: #fff;
    margin: 2px;
    cursor: pointer;
}
.answer {
    display: none;
    position: relative;
    font-size: 18px;
    padding: 10px 20px;
    border: 1px solid;
    border-radius: 10px;
    background: #fff;
    margin-top: 20px;
}
.answer.active{
    display: block;
}
.answer p {
    padding: 0;
    margin: 0;
}
.answer img {
    max-width: 300px;
}
.zoo-guard__item a {
    text-decoration: none;
}
.navigation_link_history {
    background: #fff;
    color: #000;
    text-decoration: none;
    border: 1px solid;
    padding: 7px 10px;
}

@media (max-width: 600px) {
    #chat_content {
        bottom: 20px;
        right: 0;
    }
}


@media (min-width: 1400px) {
    header {
        margin-top: 15px;
    }
}
