*, *::after, *::before {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: content-box;
}
ul, ol, li {
    list-style: none;
}
html, body {
    height: 100%;
    line-height: 125%;
    font-size: 24px;
    font-family: 'Roboto';
    scroll-behavior: smooth;
}
a, a:visited {
    text-decoration: none;
    color: inherit;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit;
}
button {
    background-color: transparent;
}
.wrapper {
    min-height: 100%;
}
:root {
    --bg-dark: #030303;
    --dark-red: #710707;
    --dark-red-filter: brightness(0) saturate(100%) invert(9%) sepia(75%) saturate(5083%) hue-rotate(356deg) brightness(73%) contrast(99%);
    --font-gold: #9d8665;
    --black: #000000;
    --font-active: #7e6c51;
    --white: #FFFFFF;
    --button-color: invert(0%) sepia(100%) saturate(0%) hue-rotate(274deg) brightness(113%) contrast(107%);
    --font-gold-filter: invert(56%) sepia(27%) saturate(433%) hue-rotate(356deg) brightness(91%) contrast(88%);
    --font-active-filter: brightness(0) saturate(100%) invert(45%) sepia(20%) saturate(597%) hue-rotate(357deg) brightness(90%) contrast(86%);
    --overview-dark: #272727;
    --overview-red: #740C11;
    --padding: 20px;
}
._container {
    box-sizing: content-box;
    max-width: 1440px;
    margin: 0px auto;
    padding: 0 var(--padding);
}
.header, .footer, .welcome, .explore {
    background-color: var(--bg-dark);
}
.header {
    position: relative;
}
.header__button {
    display: block;
    position: fixed;
    bottom: 3vw;
    right: 3vw;
    width: 3vw;
    height: 3vw;
    border: 0.25vw solid var(--font-gold);
    border-radius: 20%;
    filter: var(--button-color);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
.header__button.active {
    opacity: 1;
    visibility: visible;
}
.header__button div {
    background: url(assets/svg/arrow_top.svg) no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: left 50% top 40%;
    background-size: 80% 60%;
    filter: var(--button-color);
}
.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 150px;
    padding: 0 var(--padding);
}
.header__logo, .footer__logo {
    background: url(assets/svg/header/logo.svg) no-repeat;
    background-position: left 0px top 0px;
    background-size: 49px 26px;
    color: var(--white);
    transition: all 0.5s;
}
.header__title, .footer__title {
    transition: all 0.5s;
    font-family: 'Forum';
    padding-left: 74px;
    font-size: 28px;
    line-height: 31px;
    letter-spacing: 5px;
    text-transform: uppercase;
}
.menu__icon {
    display: none;
}
.menu__list {
    display: flex;
}
.menu__item, .footer__menu_item {
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 2px;
    font-weight: 100;
    color: var(--white);
    transition: all 0.5s;
}
.menu__item:not(:last-child) {
    margin: 0 55px 0 0;
}
@media (max-width: 1300px) {
    .menu__item:not(:last-child) {
        margin: 0 30px 0 0;
    }
}
@media (max-width: 1024px) {
    .header__container {
        height: 130px;
    }
    .menu__list {
        position: absolute;
        left: -100%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease 0s;
        top: 165px;
        flex-direction: column;
        z-index: 10;
    }
    .menu__list.active {
        opacity: 1;
        visibility: visible;
        left: 55px;
    }
    .menu__item:not(:last-child) {
        margin: 0 0 25px 0;
    }
    .menu__item {
        width: 121px;
        font-weight: 300;
        font-size: 20px;
        line-height: 23px;
    }
    .menu__item a {
        display: flex;
        justify-content: space-between;
    }
    .menu__item a::after {
        content: '';
        margin: 5px 0 0 0;
        height: 12px;
        width: 12px;
        background: url(assets/svg/welcome/arrow.svg) no-repeat;
    }
    .menu__item:hover {
        filter: var(--font-gold-filter);
    }
    .menu__icon {
        position: relative;
        top: 0px;
        right: 0px;
        z-index: 5;
        display: block;
        width: 32px;
        height: 18px;
        cursor: pointer;
    }
    .menu__icon span, .menu__icon::before, .menu__icon::after {
        position: absolute;
        right: 0%;
        height: 2px;
        width: 100%;
        transition: all 0.3s ease 0s;
        background-color: white;
    }
    .menu__icon::before, .menu__icon::after {
        content: "";
    }
    .menu__icon::before {
        top: 0%;
    }
    .menu__icon::after {
        bottom: 0%;
    }
    .menu__icon span {
        top: 50%;
        transform: scale(1) translate(0px, -50%);
    }
    .menu__icon.active span {
        transform: scale(0) translate(0px, -50%);
    }
    .menu__icon.active::before {
        top: 50%;
        transform: rotate(-45deg) translate(0px, -50%);
    }
    .menu__icon.active::after {
        bottom: 50%;
        transform: rotate(45deg) translate(0px, 50%);
    }
}
@media (max-width: 768px) {
    .header__container {
        height: 110px;
    }
    .menu__list {
        top: 145px;
    }
}
@media (max-width: 420px) {
    .header__container {
        height: 90px;
    }
    .menu__list {
        top: 125px;
    }
    .header__logo {
        background-position: left 0px top 5px;
        background-size: 29px 16px;
    }
    .header__title {
        padding-left: 54px;
        font-size: 16px;
        line-height: 18px;
    }
}
.menu__item:hover, .header__title:hover, .footer__title:hover, .footer__menu_item:hover {
    color: var(--font-gold);
}
.header__logo:hover, .footer__logo:hover {
    filter: var(--font-gold-filter);
}
.menu__item:active, .footer__menu_item:active {
    color: var(--font-active);
}
.header__logo:active, .footer__logo:active {
    filter: var(--font-active-filter);
}
.welcome__images, .welcome__line, .welcome__social-networks {
    display: none;
}
.welcome__container {
    color: var(--white);
    position: relative;
    display: grid;
    grid-template-columns: minmax(100px, 440px) minmax(700px, 1fr);
    transition: all 0.5s;
}
.welcome__text {
    pointer-events: none;
    padding: 150px 0 0 0;
    position: absolute;
    grid-column: 1 / span 2;
    z-index: 1;
    transition: all 0.5s;
}
.welcome__title {
    font-family: 'Forum';
    font-size: 80px;
    letter-spacing: 5px;
    line-height: 90px;
    text-transform: uppercase;
}
.welcome__sub-title {
    font-size: 28px;
    line-height: 33px;
    letter-spacing: 2px;
    font-weight: 300;
    margin: 25px 0 0 0;
}
.welcome__button {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 360px;
    height: 75px;
    background: var(--dark-red);
    border-radius: 10px;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 2px;
    font-weight: 300;
    margin: 75px 0 0 0;
    transition: all 0.5s;
}
.welcome__button:hover {
    background: var(--font-gold);
}
.welcome__button:active {
    background: var(--font-active);
}
.welcome__slider {
    grid-column: 2 / 3;
    max-height: 750px;
    line-height: 0;
    padding-bottom: 60px;
    min-width: 0;
    position: relative;
}
.welcome__slider .slider__item {
    max-width: 100%;
}
.welcome__slider .slider__item img{
    max-height: 100%;
    width: 100%;
}
.slider__bar_slides {
    position: absolute;
    width: 76px;
    height: 40px;
    bottom: 40px;
    right: 450px;
    font-weight: 400;
    font-size: 22px;
    line-height: 40px;
    display: flex;
    justify-content: space-between;
}
.slider__bar_buttons {
    position: absolute;
    display: flex;
    justify-content: space-between;
    height: 8px;
    width: 80px;
    top: 52px;
    left: 445px;
}
.welcome__slider .slick-list {
    overflow: hidden;
}
.welcome__slider .slick-track {
    display: flex;
}
.welcome__slider .slick-slide {
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(16.19%, transparent), color-stop(30.73%, black));
    mask-image: -webkit-gradient(linear, left top, right top, color-stop(16.19%, transparent), color-stop(30.73%, black));
}
.welcome__slider .slick-slide.slick-active {
    width: 100%;
    height: 100%;
}
.welcome__slider .slick-arrow {
    position: absolute;
    width: 30px;
    height: 8px;
    top: calc(100% - 64px);
    font-size: 0;
    z-index: 1;
}
.welcome__slider .slick-arrow:hover {
    filter: var(--font-gold-filter);
    cursor: pointer;
}
.welcome__slider .slick-arrow:active {
    filter: var(--font-active-filter);
}
.welcome__slider .slick-arrow.slick-prev {
    right: 125px;
    background: url('assets/svg/welcome/slider_arrow1.svg') 0 0 no-repeat;
}
.welcome__slider .slick-arrow.slick-next {
    right: 75px;
    background: url('assets/svg/welcome/slider_arrow2.svg') 0 0 no-repeat;
}
.welcome__slider .slick-dots {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 120px;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.welcome__slider .slick-dots li {
    list-style: none;
    margin: 0 25px 0 0;
}
.welcome__slider .slick-dots li:last-child {
    margin: 0;
}
.welcome__slider .slick-dots li.slick-active button {
    background-color: var(--font-active);
}
.welcome__slider .slick-dots li button {
    font-size: 0;
    width: 16px;
    height: 16px;
    background-color: var(--white);
}
.welcome__slider .slick-dots li button:hover {
    background-color: var(--font-gold);
    cursor: pointer;
}
.welcome__slider .slick-dots li button:active {
    background-color: var(--font-active);
}
@media (max-width: 1300px) {
    .welcome__text {
        padding: 50px 0 0 0;
    }
    .welcome__text.active {
        opacity: 0;
        visibility: hidden;
    }
    .welcome__title {
        font-size: 50px;
    }
    .welcome__sub-title {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: 2px;
        font-weight: 300;
        margin: 25px 0 0 0;
    }
    .welcome__button {
        width: 300px;
        height: 60px;
        font-size: 20px;
        line-height: 24px;
        margin: 50px 0 0 0;
    }
    .welcome__slider .slick-dots li button {
        width: 12px;
        height: 12px;
    }
}
@media (max-width: 844px) {
    .welcome__container {
        grid-template-columns: 100px 1fr;
    }
}
@media (max-width: 768px) {
    .welcome__container {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .welcome__text {
        padding: 0 0 47px 0;
        position: static;
        grid-column: 1 / 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .welcome__title {
        font-size: 40px;
        line-height: 60px;
        align-self: center;
        text-align: center;
    }
    .welcome__sub-title {
        align-self: center;
        text-align: center;
        font-size: 20px;
        line-height: 23px;
    }
    .welcome__button {
        display: none;
    }
    .welcome__slider {
        padding: 0 0 100px 0;
    }
    .welcome__slider .slick-dots {
        height: 100px;
        width: 100%;
    }
    .welcome__slider .slick-dots li {
        margin: 0 3.255vw 0 0;
    }
    .welcome__slider .slick-slide {
        -webkit-mask-image: none;
        mask-image: none;
    }
    .welcome__slider .slick-arrow {
        top: calc(100% - 52px);
    }
    .welcome__slider .slick-arrow.slick-prev {
        right: 22.00%;
        width: 4.12%;
        background-size: 100%;
    }
    .welcome__slider .slick-arrow.slick-next {
        right: 15%;
        width: 4.12%;
        background-size: 100%;
    }
    .slider__bar_slides {
        width: 9.9vw;
        bottom: 30px;
        font-size: 3vw;
        left: 15%;
    }
    .welcome__line.active {
        display: block;
        width: 100%;
        height: 0px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        margin: 34px 0 34px 0;
    }
    .welcome__social-networks.active {
        display: flex;
        justify-content: center;
        padding: 0 0 35px 0;
    }
    .welcome__social-networks_link {
        box-sizing: border-box;
        width: 48px;
        height: 48px;
        border: 1px solid #666666;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s;
    }
    .welcome__social-networks_link  > img {
        transition: all 0.5s;
    }
    .welcome__social-networks_link:hover {
        border-color: var(--font-gold);
    }
    .welcome__social-networks_link:active {
        border-color: var(--font-active);
    }
    .welcome__social-networks_link:hover img {
        filter: var(--font-gold-filter);
    }
    .welcome__social-networks_link:active img {
        filter: var(--font-active-filter);
    }
    .welcome__social-networks li:not(:last-child) {
        margin: 0 25px 0 0;
    }
    .welcome__text.active, .welcome__slider.active {
        display: none;
        width: 0;
    }
    .welcome__container.active {
        display: block;
        padding: 333px 55px 0 55px;
    }
    .welcome__images img {
        width: 100%;
    }
    .welcome__images.active {
        width: 100%;
        grid-column: 1 / span 2;
        display: grid;
        grid-template: auto auto / 1fr 1fr;
        grid-gap: 20px;
    }
    .welcome__images img:first-child {
        grid-column: 1 / span 2;
    }
}
@media (max-width: 500px) {
    .welcome__slider {
        padding: 0 0 80px 0;
    }
    .welcome__slider .slick-dots {
        height: 80px;
    }
    .slider__bar_slides {
        bottom: 20px;
    }
    .welcome__slider .slick-arrow {
        top: calc(100% - 42px);
    }
    .welcome__slider .slick-arrow.slick-prev, .welcome__slider .slick-arrow.slick-next  {
        width: 20px;
    }
}
@media (max-width: 420px) {
    .welcome__text {
        padding: 0 0 50px 0;
    }
    .welcome__title {
        margin: 5px 0 0 0;
        font-size: 28px;
        line-height: 40px;
    }
    .welcome__sub-title {
        font-size: 16px;
        line-height: 19px;
    }
    .welcome__slider .slick-dots li button {
        width: 7px;
        height: 7px;
    }
    .slider__bar_slides {
        top: calc(100% - 58px);
        font-size: 3vw;
    }
    .welcome__images.active {
        width: 100%;
        grid-column: 1 / span 2;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-column-gap: 12px;
        grid-template-rows: 95px;
        grid-row-gap: 0px;
    }
    .welcome__images img:first-child {
        grid-column: 1 / 2;
    }
    .welcome__images img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .welcome__line.active {
        margin: 20px 0 0 0;
    }
    .welcome__social-networks.active {
        display: flex;
        justify-content: center;
        padding: 22px 0 24px 0;
    }
    .welcome__social-networks li:not(:last-child) {
        margin: 0 5px 0 0;
    }
}
.main__container {
    padding: 75px 20px;
}
.visiting, .video, .tickets, .contacts {
    background-color: var(--white);
}
.main__title {
    font-family: 'Forum';
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 80px;
    line-height: 90px;
    color: var(--white);
}
.tickets__title, .visiting__title, .video__title, .contacts__title {
    color: var(--font-gold);
}
.main__title_underline {
    position: relative;
}
.main__title_underline::after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--dark-red);
}
.visiting__panorama {
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
    justify-content: space-between;
}
.panorama__link {
    display: block;
    margin-top: 53px;
}
.panorama__link > img {
    width: 100%;
}
.panorama__title {
    font-family: 'Forum';
    font-size: 32px;
    letter-spacing: 5px;
    line-height: 35px;
    margin-top: 18px;
    text-transform: uppercase;
    position: relative;
}
.panorama__title:after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -12px;
    width: 300px;
    height: 2px;
    background-color: #710707;
    transition: 1s;
}
.panorama__link:hover .panorama__title:after {
    width: 100%;
    transition: 1s;
}
.panorama__sub-title_1 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 100;
    margin-top: 23px;
}
.panorama__sub-title_2 {
    font-size: 18px;
    line-height: 21px;
    font-weight: 100;
    margin-top: 10px;
}
.panorama__link:hover {
    color: var(--font-gold);
}
.panorama__link:active {
    color: var(--font-active);
}
@media (max-width: 1416px) {
    .visiting__panorama {
        justify-content: space-evenly;
    }
}
@media (max-width: 1024px) {
    .visiting__container {
        padding: 60px 20px;
    }
    .main__title {
        font-size: 50px;
        line-height: 75px;
    }
    .main__title_underline::after {
        bottom: -23px;
    }
    .visiting__panorama {
        padding-top: 44px;
    }
    .panorama__link {
        margin-top: 41px;
        max-width: 330px;
    }
    .panorama__title {
        font-size: 28px;
        line-height: 31px;
        letter-spacing: 3px;
        margin-top: 18px;
    }
    .panorama__title:after {
        bottom: -12px;
        width: 150px;
    }
    .panorama__sub-title_1 {
        font-size: 20px;
        line-height: 23px;
        font-weight: 100;
        margin-top: 22px;
    }
    .panorama__sub-title_2 {
        font-size: 16px;
        line-height: 19px;
    }
}
@media (max-width: 768px) {
    .visiting__container {
        padding: 40px 20px 80px 20px;
    }
    .main__title {
        font-size: 40px;
        line-height: 60px;
    }
    .visiting__panorama {
        padding-top: 42px;
    }
    .panorama__link {
        margin-top: 20px;
        max-width: 280px;
    }
    .panorama__title {
        font-size: 22px;
        line-height: 24px;
        letter-spacing: 3px;
        margin-top: 17px;
    }
    .panorama__title:after {
        bottom: -10px;
        width: 150px;
    }
    .panorama__sub-title_1 {
        font-size: 18px;
        line-height: 21px;
    }
}
@media (max-width: 420px) {
    .visiting__container {
        padding: 40px 20px 39px 20px;
    }
    .visiting__panorama {
        padding-top: 42px;
    }
    .main__title {
        font-size: 28px;
        line-height: 40px;
    }
    .panorama__title {
        margin-top: 17px;
        font-size: 18px;
        line-height: 20px;
        letter-spacing: 5px;
    }
    .panorama__title:after {
        bottom: -13px;
        width: 150px;
    }
    .panorama__sub-title_1 {
        font-size: 16px;
        line-height: 19px;
    }
}
.explore, .footer {
    color: var(--white);
}
.explore__container {
    display: flex;
    justify-content: space-between;
    padding: 75px 20px 75px 20px;
}
.explore__title_underline::after {
    width: 660px;
}
.explore__text {
    max-width: 655px;
    font-size: 22px;
    line-height: 38.5px;
    font-weight: 300;
    margin: 0 0 25px 0;
}
.explore__text:last-child {
    margin: 0;
}
.explore__text:first-child {
    margin: 104px 0 25px 0;
}
.explore-img {
    padding-top: 15px;
}
.explore__compare {
    position: relative;
    margin: 15px 0 0 0;
    line-height: 0;
    
    width: 720px;
    height: 700px;
}
.compare__img {
    width: 100%;
    height: 100%;
    overflow:hidden;
}
.compare__img > img {
    display: block;
}
.compare__verticall-line_top, .compare__verticall-line_bottom {
    position: absolute;
    cursor: ew-resize;
    z-index: 9;
    width: 0.695%;
    height: 47.286%;
    background-color: var(--white);
}
.compare__round {
    box-sizing: border-box;
    position: absolute;
    cursor: ew-resize;
    z-index: 9;
    height: 5.572%;
    width: 5.417%;
    border: 5px solid var(--white);
    border-radius: 50%;
}
.compare__overlay {
    position: absolute;
    top: 0;
    left: 0;
}
.explore__text_yellow {
    color: #caaa7d;
}
.explore__compare_slider {
    cursor: pointer;
}
@media (max-width: 1460px) {
    .explore__container {
        line-height: 0;
        font-size: 0;
        padding: 60px 20px 60px 20px;
        flex-direction: column;
    }
    .explore__title_underline::after {
        width: 100%;
    }
    .explore__text {
        max-width: 100%;
        margin: 0;
        font-size: 20px;
        line-height: 36px;
    }
    .explore__text:first-child {
        margin: 84px 0 0 0;
    }
    .explore__text:last-child {
        display: none;
    }
    .explore__compare {
        margin: 62px 0 0 0;
        align-self: center;
    }
}
@media (max-width: 1024px) {
    .explore__title {
        font-size: 50px;
        line-height: 75px;
    }
}
@media (max-width: 768px) {
    .explore__container {
        padding: 40px 20px 40px 20px;
    }
    .explore__title {
        font-size: 40px;
        line-height: 60px;
    }
    .explore__text {
        display: none;
    }
    .explore__compare {
        margin: 63px 0 0 0;
        width: calc(100vw - 40px);
        height: calc((100vw - 40px) / 1.0325);
    }
    .compare__img > img {
        width: calc(100vw - 40px);
        height: calc((100vw - 40px) / 1.0325);
    }
    
}
@media (max-width: 420px) {
    .explore__title {
        font-size: 28px;
        line-height: 40px;
    }
}
.video__container {
    line-height: 0px;
}
.video__text {
    display: flex;
    justify-content: space-between;
    margin: 0 0 75px 0;
    gap: 20px;
}
.video__title {
    display: flex;
    align-items: center;
    min-width: max-content;
}
.video__text_discript {
    display: flex;
    color: var(--black);
    max-width: 720px;
    min-height: 90px;
    font-weight: 300;
    font-size: 22px;
    line-height: 38px;
    align-items: center;
}
.video__player {
    position: relative;
    height: 650px;
    width: 1440px;
}
.video__player.active {
    position: fixed;
    height: 88.435vh;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 10;
}
.video__player video {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.video__button {
    position: absolute;
    border: none;
    background-color: rgba(2555,255,255,0);
    padding: 0px;
    filter: var(--button-color);
    transition: 0.3s;
}
.video__button:hover {
    filter: var(--font-gold-filter);
    cursor: pointer;
}
.video__player_play {
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    width: 15.278%;
    height: 33.847%;
    opacity: 1;
}
.video__player_play.active {
    opacity: 0;
    display: none;
}
.video__controls {
    position: relative;
    height: 85px;
    background-color: var(--black);
}
.video__controls.active {
    position: fixed;
    height: 11.565vh;
    width: 100vw;
    bottom: 0;
    left: 0;
    z-index: 10;
}
.video__button_play {
    top: 31.77%;
    left: 2.084%;
    height: 36.471%;
    width: 1.597%;
    background: url('assets/svg/video/play.svg') 0 0 no-repeat;
    filter: var(--button-color);
}
.video__button_play.active {
    background: url('assets/svg/video/pause.svg') 0 0 no-repeat;
    filter: var(--button-color);
}
.video__button_volume {
    top: 31.77%;
    left: 75.139%;
    height: 36.471%;
    width: 2.639%;
    background: url('assets/svg/video/volume.svg') 0 0 no-repeat;
    filter: var(--button-color);
}
.video__button_volume.active {
    background: url('assets/svg/video/mute.svg') 0 0 no-repeat;
}
.video__button_fullscreen {
    top: 29.412%;
    left: 95.486%;
    height: 41.177%;
    width: 2.431%;
    background: url('assets/svg/video/fullscreen.svg') 0 0 no-repeat;
    filter: var(--button-color);
}
.video__button_fullscreen.active {
    background: url('assets/svg/video/fullscreen_exit.svg') 0 0 no-repeat;
}
.video__progress_timeline {
    position: absolute;
    top: 45.882%;
    left: 7.153%;
    height: 8px;
    width: 64.514%;
    outline: none;
    transition: background 450ms ease-in;
    -webkit-appearance: none;
}
.video__progress_timeline::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    -webkit-appearance: none;
    cursor: ew-resize;
    background: var(--white);
}
.video__progress_volume {
    position: absolute;
    top: 45.882%;
    left: 81.25%;
    height: 8px;
    width: 10.764%;
    outline: none;
    transition: background 450ms ease-in;
    -webkit-appearance: none;
}
.video__progress_volume::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    -webkit-appearance: none;
    cursor: ew-resize;
    background: var(--white);
}
.playbackRate {
    position: absolute;
    top: 20%;
    left: 50%;
    transform:translateX(-50%);
    font-size: 40px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}
.playbackRate.active {
    opacity: 1;
    visibility: visible;
}
.video__slider {
    margin: 40px 0;
    position: relative;
}
.video__slider .slick-list {
    overflow: hidden;
    position: relative;
    height: 306px;
}
.video__slider .slick-track {
    display: flex;
    justify-content: space-between;
    height: 254px;
}
.video__slider .slick-slide {
    height: auto;
    width: auto;
    text-align:center;
    margin-right:15px;
    margin-left:15px;
}
.video__slider .slick-slide iframe {
    width: 100%;
    height: 100%;
    border: 0px;
    outline-width: 0;
}
.video__slider .slick-arrow {
    position: absolute;
    width: 10px;
    height: 12px;
    font-size: 0px;
    bottom: 0px;
    z-index: 1;
}
.video__slider .slick-arrow:hover {
    filter: var(--dark-red-filter);
    cursor: pointer;
}
.video__slider .slick-arrow:active {
    filter: var(--dark-red-filter);
}
.video__slider .slick-arrow.slick-prev {
    background: url('assets/svg/video/video_left.svg') 0 0 no-repeat;
    left: 43.055%;
}
.video__slider .slick-arrow.slick-next {
    background: url('assets/svg/video/video_right.svg') 0 0 no-repeat;
    right: 43.055%;
}
.video__slider .slick-dots{
    position: absolute;
    bottom: 2px;
    right: 50%;
    transform: translateX(50%);
    width: 9.722%;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.video__slider .slick-dots li {
    height: 12px;
    width: 12px;
}
.video__slider .slick-dots li button {
    font-size: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #999999;
}
.video__slider .slick-dots li.slick-active button {
    background-color: #333333;
}
.video__slider .slick-dots li:hover button {
    background-color: var(--dark-red);
    cursor: pointer;
}
@media (max-width: 1024px) {
    .video__container {
        padding: 60px 20px 60px 20px;
    }
    .video__text {
        margin: 0 0 40px 0;
    }
    .video__controls {
        top: -1px;
        height: 60px;
    }
    .video__button_play {
        left: 4.065%;
        top: 25%;
        height: 50%;
        width: 2.337%;
    }
    .video__button_volume {
        left: 69.919%;
        top: 33.333%;
        height: 33.333%;
        width: 2.642%;
    }
    .video__button_fullscreen {
        left: 93.293%;
        top: 28.333%;
        height: 43.333%;
        width: 2.642%;
    }
    .video__progress_timeline {
        top: 45%;
        left: 9.451%;
        height: 5px;
        width: 57.317%;
    }
    .video__progress_volume {
        top: 45%;
        left: 75.711%;
        height: 5px;
        width: 14.533%;
    }
    .video__progress_timeline::-webkit-slider-thumb, .video__progress_volume::-webkit-slider-thumb {
        width: 13px;
        height: 13px;
    }
    .video__text_discript {
        display: none;
    }
    .video__slider_item {
        position: relative;
        padding-bottom: 17.277%;
        width: 452px;
    }
}
@media (max-width: 768px) {
    .video__container {
        padding: 40px 20px 80px 20px;
    }
    .video__text {
        margin: 0 0 20px 0;
    }
    .video__player {
        margin: 0 0 3px 0;
    }
    .video__player_play {
        width: 10.989%;
        height: 24.316%;
    }
    .video__controls {
        height: 53px;
    }
    .video__button_play {
        top: 22.642%;
        left: 4.121%;
        height: 54.717%;
        width: 3.159%;
    }
    .video__button_volume {
        top: 30.188%;
        left: 12.088%;
        height: 39.623%;
        width: 3.709%;
    }
    .video__button_fullscreen {
        top: 24.528%;
        left: 92.170%;
        height: 50.943%;
        width: 3.709%;
    }
    .video__progress_timeline {
        top: -5px;
        left: 0;
        height: 5px;
        width: 100%;
    }
    .video__progress_timeline::-webkit-slider-thumb {
        width: 13px;
        height: 13px;
    }
    .video__progress_volume {
        top: 45.882%;
        left: 20.604%;
        height: 5px;
        width: 66.759%;
    }
    .video__progress_volume::-webkit-slider-thumb {
        width: 13px;
        height: 13px;
    }
    .video__slider {
        gap: 20px;
        margin: 20px 0 21px;
    }
    .video__slider_item:last-child {
        display: none;
    }
    .video__slider_item:not(:last-child) {
        padding-bottom: 27.335%;
    }
    .video__sliderBar {
        width: 190px;
    }
    .video__sliderBar_item {
        height: 10px;
        width: 10px;
    }
}
@media (max-width: 420px) {
    .video__container {
        padding: 36px 20px 40px 20px;
    }
    .video__player_play {
        width: 13.158%;
        height: 29.070%;
    }
    .video__controls {
        height: 50px;
        top: 1px;
    }
    .video__button_play {
        top: 32%;
        left: 5.263%;
        height: 36%;
        width: 3.684%;
    }
    .video__button_volume {
        top: 36%;
        left: 16.842%;
        height: 28%;
        width: 4.737%;
    }
    .video__button_fullscreen {
        top: 32%;
        left: 90%;
        height: 36%;
        width: 4.737%;
    }
    .video__progress_timeline {
        top: -4px;
        left: 0;
        height: 4px;
        width: 100%;
    }
    .video__progress_timeline::-webkit-slider-thumb {
        width: 13px;
        height: 13px;
    }
    .video__progress_volume {
        top: 46%;
        left: 29.474%;
        height: 4px;
        width: 52.632%;
    }
    .video__progress_volume::-webkit-slider-thumb {
        width: 10px;
        height: 10px;
    }
    .video__slider {
        margin: 40px 0;
    }
    .video__slider_item:not(:last-child) {
        padding-bottom: 26.935%;
    }
    .video__sliderBar {
        width: 174px;
    }
    .video__sliderBar_button {
        position: relative;
        height: 8px;
        width: 7px;
    }
    .video__sliderBar_button img {
        position: absolute;
        top: 0;
        left: 0;
        height: 8px;
        width: 7px;
    }
    .video__sliderBar_item {
        height: 8px;
        width: 8px;
    }
}
.gallery {
    background-color: var(--bg-dark);
}
.gallery__container {
    padding: 75px 20px 0 20px;
}
.gallery__title {
    margin: 0 0 75px 0;
}
.gallery__picture-container {
    height: 1960px;
    overflow-y: hidden;
    position: relative;
}
.gallery__picture-container_shadow {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 360px;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.gallery__picture-inner-container {
    height: 2996px;
    max-width: 1440px;
    position: relative;
    display: grid;
    grid-gap: 6px 36px;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(500, 0px);
}
.gallery__picture-inner-container::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
}
.gallery__item.slide-in {
    transform: translateY(20%) scale(0.8);
}
.slide-in {
    opacity: 0;
    transition: all 0.5s;
}
.slide-in.active {
    opacity: 1;
    transform: translateY(0%) scale(1);
}
.gallery__item img {
    width: 100%;
}
.gallery__picture-inner-container {
    font-size: 0px;
    line-height: 0px;
}
.small {
    grid-row: span 61;
}
.medium {
    grid-row: span 80;
}
.large {
    grid-row: span 99;
}
.gallery__item:nth-child(1), .gallery__item:nth-child(2), .gallery__item:nth-child(3), .gallery__item:nth-child(4), .gallery__item:nth-child(5), .gallery__item:nth-child(11), .gallery__item:nth-child(12), .gallery__item:nth-child(13), .gallery__item:nth-child(14), .gallery__item:nth-child(15) {
    margin: 50px 0 0 0;
}
@media (max-width: 1480px) {
    .gallery__picture-inner-container {
        grid-gap: 0.401vw 36px;
    }
    .gallery__picture-container {
        height: max(1265px, calc(200vw - 1000px));
    }
}
@media (max-width: 1024px) {
    .gallery__container {
        padding: 60px 20px 0 20px;
    }
    .gallery__title {
        margin: 0 0 60px 0;
    }
    .gallery__picture-container_shadow {
        height: 23.340vw;
    }
}
@media (max-width: 768px) {
    .gallery__container {
        padding: 40px 20px 0 20px;
    }
    .gallery__title {
        margin: 0 0 40px 0;
    }
    .gallery__picture-inner-container {
        height: 4000px;
        grid-gap: 0.614vw 24px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(1000, 0px);
    }
    .gallery__item:nth-child(11), .gallery__item:nth-child(12), .gallery__item:nth-child(13), .gallery__item:nth-child(14), .gallery__item:nth-child(15) {
        margin: 0;
    }
    .gallery__picture-container {
        height: min(1080px, calc(150vw + 7px));
    }
    .gallery__picture-container_shadow {
        height: 30.599vw;
    }
}
@media (max-width: 420px) {
    .gallery__picture-container_shadow {
        height: 26.667vw;
    }
}
.tickets__content {
    margin: 103px 0 0 0;
    display: grid;
    grid-template-columns: 720px 1fr 175px;
    color: var(--black);
    font-size: 22px;
    line-height: 26px;
    font-weight: 300;
}
.tickets__block_ticket-type, .tickets__block_amount {
    display: flex;
    flex-direction: column;
}
.tickets__block_ticket-type {
    margin: 0 0 0 60px;
}
.tickets__block_amount {
    align-items: flex-end;
}
.tickets__sub-title {
    font-size: 28px;
    line-height: 33px;
    font-weight: 700;
}
.tickets__sub-title_ticket-type {
    margin: 0 0 50px 0;
}
.tickets__sub-title_amount {
    margin: 0 0 15px 0;
    text-align: right;
}
.tickets__type_radio-button {
    display: block;
    position: relative;
    cursor: pointer;
    padding-left: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.5s;
}
.tickets__type_radio-button:not(:last-child) {
    margin: 0 0 25px 0;
}
.tickets__type_radio-button input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    display: none;
}
.tickets__type_checkmark {
    position: absolute;
    left: 0;
    top: 4px;
    height: 13px;
    width: 13px;
    border: 2px solid var(--black);
    background-color: var(--white);
    border-radius: 50%;
    transition: all 0.5s;
}
.tickets__type_checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.tickets__type_radio-button input:checked ~ .tickets__type_checkmark:after {
    display: block;
}
.tickets__type_radio-button .tickets__type_checkmark:after {
    top: 4px;
    left: 4px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--black);
}
.tickets__type_radio-button:hover input ~ .tickets__type_checkmark {
    background-color: #c9c9c9;
}
.tickets__form_item {
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 10px 0 0 0;
}
.tickets__form_name {
    font-size: 22px;
    line-height: 26px;
    margin: 4px 0 10px 0;
}
.tickets__form_content {
    align-self: flex-end;
    box-sizing: border-box;
    width: 150px;
    height: 50px;
    border: 3px solid var(--black);
    display: grid;
    grid-template-columns: 5fr 14fr 5fr;
}
.tickets__button_plus, .tickets__button_minus {
    font-size: 32px;
    line-height: 37px;
    font-weight: 400;
    transition: all 0.5s;
}
.tickets__button_plus {
    text-align: left;
}
.tickets__button_minus {
    text-align: right;
}
.tickets__counter {
    text-align: center;
    font-weight: 300;
    font-size: 22px;
    line-height: 26px;
    outline: none;
}
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.tickets__forms_price {
    text-align: right;
    letter-spacing: 1.65px;
    font-size: 28px;
    line-height: 33px;
    font-weight: 700;
    margin: 50px 0 60px 0;
}
.tickets__button_buy {
    width: 175px;
    height: 50px;
    background-color: var(--black);
    color: var(--white);
    font-weight: 300;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: all 0.5s;
}
.tickets__type_radio-button:hover {
    color: var(--font-gold);
}
.tickets__type_radio-button:active {
    color: var(--font-active);
}
.tickets__form_content > button:hover {
    color: var(--font-gold);
}
.tickets__form_content > button:active {
    color: var(--font-active);
}
.tickets__button_buy:hover {
    background-color: var(--font-gold);
    color: var(--black);
    cursor: pointer;
}
@media (max-width: 1300px) {
    .tickets__content {
        grid-template-columns: 1fr 284px;
        margin: 83px 0 0 0;
    }
    .tickets__img {
        width: 100%;
        max-height: 440px;
        object-fit: cover;
    }
    .tickets__block_ticket-type {
        display: none;
    }
    .tickets__block_amount {
        padding: 0 29px 0 80px;
        align-items: start;
    }
    .tickets__sub-title_amount {
        margin: 0;
    }
    .tickets__form_item {
        width: 100%;
        margin: 25px 0 0 0;
    }
    .tickets__form_content {
        width: 175px;
        align-self: flex-start;
    }
    .tickets__forms_price {
        margin: 25px 0 0 0;
    }
    .tickets__button_buy {
        margin: 69px 0 0 0;
    }
}
@media (max-width: 1024px) {
    .tickets__container {
        padding: 60px 20px 60px 20px;
    }
    .tickets__content {
        margin: 83px 0 0 0;
    }
}
@media (max-width: 768px) {
    .tickets__container {
        padding: 40px 20px 40px 20px;
    }
    .tickets__block_amount {
        padding: 0 49px 0 60px;
    }
    .tickets__content {
        margin: 63px 0 0 0;
    }
    .tickets__sub-title_amount {
        margin: 0 0 14px 0;
    }
    .tickets__form_name {
        margin: 0 0 10px 0;
    }
    .tickets__forms_price {
        margin: 39px 0 40px 0;
    }
    .tickets__button_buy {
        margin: 0;
    }
}
@media (max-width: 650px) {
    .tickets__title {
        font-size: 28px;
        line-height: 40px;
    }
    .tickets__content {
        grid-template-columns: 1fr;
        grid-template-rows: 160px 1fr;
        grid-auto-flow: column;
    }
    .tickets__img {
        height: 100%;
        object-position: center;
    }
    .tickets__block_amount {
        padding: 40px 0 0 0;
        align-items: center;
    }
    .tickets__sub-title_amount {
        font-size: 16px;
        line-height: 19px;
        margin: 0;
    }
    .tickets__form_item {
        width: 175px;
        align-items: center;
        margin: 20px 0 0 0;
    }
    .tickets__form_name {
        font-size: 16px;
        line-height: 19px;
        align-self: flex-start;
        margin: 0 0 15px 0;
    }
    .tickets__forms_price {
        font-size: 16px;
        line-height: 19px;
        letter-spacing: 0;
    }
    .tickets__button_buy {
        font-size: 16px;
    }
}
.parallax__image {
    background: url(assets/img/parallax.webp) no-repeat;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
@media (max-width: 1024px) {
    .parallax__image {
        height: min(400px, 39.0625vw);
    }
}
@media (max-width: 768px) {
    .parallax__image {
        height: 300px;
    }
}
.contacts__container {
    padding: 75px 20px 74px 20px;
}
.contacts__content {
    margin: 103px 0 0 0;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}
.contacts__content_text {
    min-width: 274px;
}
.contacts__content_text > h4 {
    margin: 0 0 51px 0;
    font-weight: 500;
    font-size: 28px;
    line-height: 33px;
}
.contacts__content_text > p {
    margin: 25px 0 25px 0;
    font-weight: 300;
    font-size: 22px;
    line-height: 26px;
}
.contacts__content_text a {
    transition: all 0.5s;
}
.contacts__content_text a:hover {
    color: var(--font-gold);
}
.contacts__map {
    width: 960px;
    height: 620px;
}
#map {
    height: 100%;
    width: 100%;
    font-family: 'Roboto';
    font-size: 14px;
}
#map h3 {
    color: var(--dark-red);
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 5px 0;
}
@media (max-width: 1294px) {
    .contacts__map {
        width: calc(100vw - 290px - 40px);
        height: calc((100vw - 290px - 40px) / 1.529);
    }
}
@media (max-width: 1024px) {
    .contacts__container {
        padding: 60px 20px 68px 20px;
    }
    .contacts__content {
        margin: 83px 0 0 0;
    }
    .contacts__content_text > h4 {
        margin: 0 0 35px 0;
        font-size: 24px;
        line-height: 28px;
    }
    .contacts__content_text > p {
        margin: 15px 0 15px 0;
        font-size: 20px;
        line-height: 23px;
    }
}
@media (max-width: 768px) {
    .contacts__container {
        padding: 40px 20px 67px 20px;
    }
    .contacts__content {
        margin: 63px 0 0 0;
        flex-direction: column;
        gap: 25px;
    }
    .contacts__content_text > h4 {
        margin: 0 0 40px 0;
        font-size: 20px;
        line-height: 23px;
    }
    .contacts__content_text > p {
        font-size: 18px;
        line-height: 21px;
    }
    .contacts__map {
        width: calc(100vw - 40px - 17px);
        height: calc((100vw - 40px) / 1.529);
    }
}
@media (max-width: 420px) {
    .contacts__container {
        padding: 40px 20px 40px 20px;
    }
    .contacts__content_text > h4 {
        font-size: 16px;
        line-height: 19px;
    }
    .contacts__content_text > p {
        font-size: 16px;
        line-height: 19px;
    }
    .contacts__map {
        width: calc(100vw - 40px);
        height: calc((100vw - 40px) / 1.532);
    }
}
.footer__container {
    padding: 0 var(--padding);
}
.footer__block1 {
    padding: 87px var(--padding) 50px var(--padding);
    display: grid;
    grid-template-columns: minmax(239px, 17fr) 38fr minmax(340px, 17fr);
    grid-template-rows: 128px;
}
.footer__menu_list {
    display: flex;
    flex-direction: column;
    height: 128px;
    gap: 0px 150px;
    flex-wrap: wrap;
    font-size: 22px;
    line-height: 26px;
}
.footer__menu_body {
    justify-self: flex-start;
}
.footer__menu_item {
    width: 107px;
}
.footer__menu_item:nth-child(1), .footer__menu_item:nth-child(2), .footer__menu_item:nth-child(4), .footer__menu_item:nth-child(5){
    margin: 0 0 25px 0;
}
.footer__social-networks {
    display: flex;
    height: 123px;
    align-items: flex-end;
}
.footer__social-networks_link {
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    border: 1px solid #666666;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}
.footer__social-networks_link  > img {
    transition: all 0.5s;
}
.footer__social-networks_link:hover {
    border-color: var(--font-gold);
}
.footer__social-networks_link:active {
    border-color: var(--font-active);
}
.footer__social-networks_link:hover img {
    filter: var(--font-gold-filter);
}
.footer__social-networks_link:active img {
    filter: var(--font-active-filter);
}
.footer__social-networks li:not(:last-child) {
    margin: 0 25px 0 0;
}
.footer__line {
    width: 100%;
    height: 3px;
    background-color: #666666;
}
.footer__block2 {
    height: 124px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__block2_item {
    font-weight: 100;
    font-size: 22px;
    line-height: 22px;
    letter-spacing: 2px;
    transition: all 0.5s;
}
.footer__block2 > a:hover {
    color: var(--font-gold);
}
.footer__block2 > a:active {
    color: var(--font-active);
}
@media (max-width: 1150px) {
    .footer__block1 {
        padding: 60px var(--padding) 55px var(--padding);
    }
    .footer__menu_body {
        padding: 5px 0 0 0;
        justify-self: flex-start;
    }
    .footer__menu_list {
        gap: 0px 100px;
    }
    .footer__social-networks {
        padding: 5px 0 0 0;
        height: 100%;
    }
}
@media (max-width: 960px) {
    .footer__block1 {
        padding: 40px var(--padding) 40px var(--padding);
        grid-template-columns: minmax(298px, 2fr) minmax(430px, 3fr);
        grid-template-rows: 179px 48px;
    }
    .footer__menu_body {
        padding: 17px 0 0px 0;
    }
    .footer__menu_list {
        gap: 0px 150px;
    }
    .footer__logo {
        margin: 10px 0 0 0;
    }
    .footer__menu_item {
        font-size: 18px;
        line-height: 21px;
    }
    .footer__social-networks {
        grid-column: 1 / span 2;
        justify-self: end;
        padding: 0 90px 0 0;
    }
    .footer__line {
        width: 100%;
        height: 1px;
    }
    .footer__block2 {
        height: 102px;
    }
}
@media (max-width: 767px) {
    .footer__block1 {
        grid-template-columns: 1fr;
        grid-template-rows: 20px 68px 48px;
        grid-gap: 40px 0px;
    }
    .footer__menu_body {
        padding: 0;
        width: 100%;
    }
    .footer__logo {
        height: 100%;
        background-size: 29px 16px;
        margin: 0;  
    }
    .footer__menu_list {
        justify-content: space-between;
        flex-direction: column;
        gap: 0 19%;
        height: 100%;
    }
    .footer__title {
        position: relative;
        top: -8px;
        padding-left: 49px;
        font-size: 16px;
        line-height: 18px;
        height: 100%;
    }
    .footer__menu_item {
        margin: 0px;
        font-size: 16px;
        line-height: 19px;
        width: 79px;
    }
    .footer__menu_item:nth-child(2), .footer__menu_item:nth-child(4){
        margin: 0;
    }
    .footer__menu_item:nth-child(1), .footer__menu_item:nth-child(3), .footer__menu_item:nth-child(5){
        margin: 0 0 25px 0;
    }
    .footer__social-networks {
        width: 68.421%;
        padding: 0;
        justify-self: center;
        grid-column: 1 / 2;
        justify-content: space-between;
    }
    .footer__social-networks li:not(:last-child) {
        margin: 0;
    }
    .footer__rs-logo {
        display: none;
    }
    .footer__block2_item {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 2px;
    }
}
@media (max-width: 419px) {
    .footer__menu_list {
        gap: 0;
    }
    .footer__social-networks {
        width: 100%;
    }
}
.popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s ease 0s;
}
.popup.open {
    opacity: 1;
    visibility: visible;
}
.popup.open .popup__content{
    opacity: 1;
    transform: translate(0px, 0px);
}
.popup__body {
    min-height: 100vh;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup__content {
    box-sizing: border-box;
    background-color: var(--white);
    color: var(--bg-dark);
    width: 100%;
    max-height: 845px;
    padding: 30px 27px;
    position: relative;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    transition: all 1s ease 0s;
    opacity: 0;
    transform: translate(-100%, 0px);
}
.popup__close {
    position: absolute;
    background: url(assets/svg/popup_buy_tickets/close.svg) no-repeat;
    right: 30px;
    top: 30px;
    width: 25px;
    height: 25px;
}
.popup__close:hover {
    cursor: pointer;
}
.form {
    margin: max(45px, min(61px, calc(3.177vw + 12.468px))) 0 max(0px, min(61px, calc(7vw - 71.68px))) 0;
    max-width: 970px;
    max-height: 663px;
    display: grid;
    grid-template: 1fr / 400px 530px;
    grid-gap: 0px 40px;
}
.form__block-left {
    box-sizing: border-box;
    font-size: 0;
    line-height: 0;
}
.block-left__logo {
    top: 0px;
    left: 0px;
    width: 85px;
    height: 41px;
    background: url(assets/svg/popup_buy_tickets/logo.svg);
}
.block-left__title {
    font-size: 50px;
    line-height: 55px;
    font-family: 'Forum';
    color: var(--font-gold);
    text-transform: uppercase;
}
.block-left__sub-title {
    color: var(--dark-red);
    font-size: 18px;
    line-height: 21px;
    font-weight: 400;
    margin: 14px 0 72px 0;
    position: relative;
}
.block-left__sub-title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    top: 30px;
    left: 0px;
    background-color: var(--dark-red);
}
.input__date, .input__time, .input__name, .input__email, .input__tel, .select__ticket-type {
    box-sizing: border-box;
    display: inline-block;
    border: 1px solid var(--bg-dark);
    height: 45px;
    position: relative;
    font-family: 'Roboto';
    font-size: 18px;
    line-height: 21px;
    color: var(--bg-dark);
}
.input__date {
    margin: 0 20px 0 0;
}
.input__time, .input__date {
    width: 190px;
}
.input__date > input, .input__time > input, .input__name > input, .input__email > input, .input__tel > input {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 8;
}
::-webkit-calendar-picker-indicator {
    width: 100%;
    height: 100%;
    background: white;
}
.input__date_icon {
    position: absolute;
    background: url(assets/svg/popup_buy_tickets/date.svg);
    height: 15px;
    width: 15px;
    top: 14px;
    left: 14px;
}
.input__date_arrow, .input__time_arrow {
    position: absolute;
    background: url(assets/svg/popup_buy_tickets/arrow.svg);
    height: 17px;
    width: 17px;
    top: 13px;
    right: 14px;
}
.input__date_title, .input__time_title {
    position: absolute;
    top: calc(50% - 10px);
    left: 44px;
}
.input__time_icon {
    position: absolute;
    background: url(assets/svg/popup_buy_tickets/time.svg);
    height: 15px;
    width: 15px;
    top: 14px;
    left: 14px;
}
.input__name, .input__email, .input__tel, .select__ticket-type, .ticket__amount {
    width: 100%;
    margin: 20px 0 0 0;
}
.input__name_icon {
    position: absolute;
    background: url(assets/svg/popup_buy_tickets/name.svg);
    height: 15px;
    width: 13px;
    top: 14px;
    left: 14px;
    z-index: 9;
}
.input__name > input, .input__email > input, .input__tel > input {
    opacity: 1;
    padding: 5px 10px 5px 42px;
    font-family: 'Roboto';
    font-size: 18px;
    line-height: 21px;
}
.input__email_icon {
    position: absolute;
    background: url(assets/svg/popup_buy_tickets/email.svg);
    height: 11px;
    width: 15px;
    top: 16px;
    left: 14px;
    z-index: 9;
}
.input__email > input, .input__tel > input {
    padding: 5px 10px 5px 43px;
}
.input__tel_icon {
    position: absolute;
    background: url(assets/svg/popup_buy_tickets/tel.svg);
    height: 23px;
    width: 14px;
    top: 10px;
    left: 14px;
    z-index: 9;
}
.select__ticket-type > select {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 8;
    padding: 5px 10px 5px 42px;
    font-family: 'Roboto';
    font-size: 18px;
    line-height: 21px;
}
.input__ticket-type_icon {
    position: absolute;
    background: url(assets/svg/popup_buy_tickets/ticket_type.svg);
    height: 15px;
    width: 15px;
    top: 14px;
    left: 14px;
}
.input__ticket-type_title {
    position: absolute;
    top: calc(50% - 10px);
    left: 44px;
}
.input__ticket-type_arrow {
    position: absolute;
    background: url(assets/svg/popup_buy_tickets/arrow.svg);
    height: 17px;
    width: 17px;
    top: 13px;
    right: 14px;
}
.ticket__amount {
    box-sizing: border-box;
    border: 1px solid var(--bg-dark);
    height: 135px;
    position: relative;
    font-family: 'Roboto';
    font-size: 18px;
    line-height: 21px;
    color: var(--bg-dark);
    padding: 9px 14px 14px 14px;
}
.ticket__amount_sub-title {
    color: var(--font-gold);
    font-family: 'Forum';
    font-size: 18px;
    line-height: 20px;
    text-transform: capitalize;
    position: relative;
    margin: 0 0 22px 0;
}
.ticket__amount_sub-title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    top: 25px;
    left: 0px;
    background-color: var(--dark-red);
}
.amount__block {
    display: grid;
    grid-template: repeat(2, 25px) / 1fr 110px;
    grid-gap: 18px 5px;
}
.amount__block_title {
    align-self: end;
}
.amount__block_basic, .amount__block_senior {
    justify-self: end;
    box-sizing: border-box;
    width: 105px;
    height: 25px;
    border: 1px solid var(--bg-dark);
    display: grid;
    grid-template-columns: repeat(3, 35px);
}
.amount__basic_counter, .amount__senior_counter {
    justify-self: center;
    align-self: center;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    outline: none;
    text-align: center;
}
.amount__block_minus, .amount__block_plus {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-dark);
}
.form__block-right {
    box-sizing: content-box;
    border: 1px solid var(--bg-dark);
    padding: 25px 30px 26px 30px;
    box-sizing: border-box;
}
.overview {
    display: grid;
    grid-template: 151px / 1fr 150px;
}
.overview__title {
    color: var(--overview-dark);
    font-weight: 500;
    font-size: 32px;
    line-height: 37px;
}
.overview__sub-title {
    color: var(--overview-red);
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    opacity: 0.9;
    margin: 3px 0 10px;
}
.overview__items {
    display: grid;
    grid-template: repeat(3, 22px) / 15px 1fr;
    grid-gap: 4px 15px;
    align-items: center;
    justify-items: start;
}
.overview__item {
    color: var(--overview-dark);
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
}
.overview__tickets {
    margin: 25px 0 0;
    display: grid;
    grid-template: repeat(2, 20px) / 32px 1fr 80px;
    grid-gap: 12px 10px;
    align-items: center;
    position: relative;
}
.overview__tickets::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    top: 63px;
    left: 0px;
    background-color: var(--dark-red);
}
.overview__tickets_amount {
    height: 100%;
    width: 100%;
    background-color: var(--overview-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overview__tickets_value {
    font-size: 18px;
    line-height: 21px;
    color: #A4A4A3;
    font-weight: 400;
}
.overview__tickets_type, .overview__tickets_price {
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
    color: var(--bg-dark)
}
.overview__tickets_price {
    justify-self: end;
}
.overview__total {
    margin: 24px 0 10px;
    display: flex;
    justify-content: space-between;
}
.overview__total {
    font-size: 32px;
    line-height: 37px;
    color: var(--bg-dark);
}
.overview__total_title {
    font-weight: 400;
}
.overview__total_price {
    font-weight: 500;
}
.overview__card {
    display: grid;
    grid-template: 211px 30px / 1fr;
}
.card {
    box-sizing: border-box;
    width: 360px;
    height: 211px;
    background-color: #BCBCBC;
    border-radius: 4px;
    padding: 15px 20px;
}
.card__front {
    justify-self: start;
    align-self: start;
    z-index: 1;
    font-size: 12px;
    line-height: 14px;
    color: #161615;
    font-weight: 400;
    position: relative;
}
.card__back {
    justify-self: end;
    align-self: end;
    background: #939393;
    position: relative;
}
.card__number_input {
    box-sizing: border-box;
    margin: 5px 0 10px;
    width: 215px;
    height: 35px;
    border: 0.5px solid #A4A4A3;
}
.card__number_input > input {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 5px 10px;
}
.card__date_title {
    margin: 10px 0 5px 0;
}
.card__month_input {
    border: 0.5px solid #A4A4A3;
    display: inline-block;
    box-sizing: border-box;
    width: 100px;
    height: 35px;
    position: relative;
    background-color: var(--white);
}
.card__month_input > input {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
}
.card__month_value, .card__year_value {
    position: absolute;
    top: 9px;
    left: 8px;
    z-index: 2;
}
.card__month_arrows, .card__year_arrows {
    position: absolute;
    background: url(assets/svg/popup_buy_tickets/arrows.svg);
    height: 33px;
    width: 28px;
    top: -1px;
    right: 0px;
    z-index: 2;
}
.card__year_input {
    border: 0.5px solid #A4A4A3;
    display: inline-block;
    box-sizing: border-box;
    width: 100px;
    height: 35px;
    position: relative;
    background-color: var(--white);
    margin: 0 0 0 12px;
}
.card__year_input > input {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
}
.card__name_title {
    margin: 10px 0 5px 0;
}
.card__name_input {
    box-sizing: border-box;
    margin: 5px 0 10px;
    width: 100%;
    height: 35px;
    border: 0.5px solid #A4A4A3;
}
.card__name_input > input {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 5px 10px;
}
.card__visa {
    position: absolute;
    top: 34px;
    right: 20px;
}
.card__mastercard {
    position: absolute;
    top: 65px;
    right: 20px;
}
.card__magnet {
    position: absolute;
    width: 100%;
    height: 45px;
    background: #161615;
    top: 25px;
    left: 0px;
}
.card__code_title {
    margin: 70px 14px 0 0;
    text-align: right;
    font-size: 12px;
    line-height: 14px;
    color: #161615;
    font-weight: 400;
}
.card__code_input {
    box-sizing: border-box;
    margin: 5px 0 0 0;
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: right;
}
.card__code_input > input {
    box-sizing: border-box;
    width: 75px;
    border: 0.5px solid #A4A4A3;
    padding: 5px 10px;
}
.card__code_decription {
    position: absolute;
    top: 146px;
    right: 30px;
    width: 55px;
    height: 50px;
    font-size: 10px;
    line-height: 12px;
    color: #161615;
}
.form__submit {
    display: block;
    width: 220px;
    height: 45px;
    background-color: var(--dark-red);
    color: var(--white);
    text-align: center;
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
    margin: 26px 0 0 auto;
    transition: all 0.5s;
}
.form__submit:hover {
    cursor: pointer;
    background-color: var(--font-gold);
}
.amount__block_plus:hover, .amount__block_minus:hover {
    cursor: pointer;
}
@media (max-width: 1023px) {
    .popup.open {
        overflow-y: scroll;
    }
    .popup__content {
        padding: 30px 30px 40px 30px;
        width: 590px;
        flex-direction: column;
        gap: 25px;
        max-height: fit-content;
        align-items: center;
    }
    .popup__close {
        position: relative;
        right: 0px;
        top: 0px;
        align-self: flex-end;
    }
    .form {
        margin: 0;
        grid-gap: 51px 0px;
        width: 100%;
        max-height: 1359px;
        grid-template: 643px 665px / 1fr;
    }
    .block-left__sub-title {
        margin: 16px 0 52px 0;
    }
    .input__time, .input__date {
        width: calc((100% - 28px) / 2);
    }
    .input__date {
        margin: 0 28px 0 0;
    }
    .form__block-right {
        padding: 25px 15px 25px 15px;
    }
    .overview__total {
        margin: 24px 0 15px;
    }
}
@media (max-width: 550px) {
    .popup__content {
        padding: 30px 30px 50px 30px;
        width: 100%;
        gap: 25px;
    }
    .form {
        margin: 0;
        grid-gap: 49px 0px;
        max-width: 420px;
        max-height: min-content;
        grid-template: 690px 1fr / 1fr;
    }
    .form__block-right, .form__block-left {
        width: 100%;
    }
    .overview {
        display: grid;
        grid-template: 1fr / minmax(min-content, 1fr) minmax(100px, 120px);
    }
    .overview__logo img {
        width: 100%;
    }
    .block-left__title {
        font-size: 32px;
        line-height: 35px;
    }
    .input__date, .input__time, .input__name, .input__email, .input__tel, .select__ticket-type, .ticket__amount {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .block-left__sub-title {
        margin: 16px 0 52px 0;
    }
    .form__block-right {
        padding: 25px 15px 25px 15px;
    }
    .overview__title {
        font-size: 7.62vw;
        line-height: 8.81vw;
    }
    .overview__tickets {
        margin: 29px 0 0;
    }
    .overview__tickets::after {
        top: 65px;
    }
    .overview__items {
        grid-template: repeat(3, 1fr) / 15px 1fr;
    }
    .card {
        width: 100%;
        height: 209px;
    }
    .card__front {
        font-size: 11px;
        line-height: 13px;
    }
    .card__code_decription {
        font-size: 9px;
        line-height: 11px;
    }
    .card__number_input {
        width: 74.65%;
    }
    .card__month_input {
        width: 34.72%;
    }
    .overview__card {
        display: grid;
        grid-template: 1fr 1fr / 1fr;
        grid-gap: 25px;
    }
    .overview__total {
        margin: 25px 0 15px;
    }
    .card__visa {
        width: 19.098%;
        top: 16%;
    }
    .card__mastercard {
        width: 18.403%;
        top: 24%;
    }
    .form__submit {
        margin: 40px 0 0 auto;
    }
}
@media (max-width: 420px) {
    .form {
        width: 100%;
    }
}
@media (max-width: 350px) {
    .amount__block_title {
        font-size: 15px;
    }
    .overview__tickets_type, .overview__tickets_price {
        font-size: 16px;
        line-height: 26px;
    }
}
.ripple {
    overflow: hidden;
    position: relative;
}
.ripple .circle {
    position: absolute;
    background-color: var(--overview-red);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: scale 0.5s ease-out;
}
@keyframes scale {
    to {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}