@font-face {
    font-family: "flexslider-icon";
    src: url("../flexslider-icon.woff") format("woff");
    src: url("../flexslider-icon.ttf") format("truetype");
    font-display: swap;
    font-weight: 300
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans/OpenSans-Light.ttf") format("truetype");
    font-display: swap;
    font-weight: 300
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans/OpenSans-Medium.ttf") format("truetype");
    font-display: swap;
    font-weight: 500
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans/OpenSans-SemiBold.ttf");
    font-display: swap;
    font-weight: 600
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
    font-display: swap;
    font-weight: 700
}

@font-face {
    font-family: "Umbrage";
    src: url("../fonts/Umbrage.ttf") format("truetype");
    font-display: swap
}

@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/Oswald-Light.ttf") format("truetype");
    font-display: swap;
    font-weight: 300
}

@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/Oswald-Medium.ttf") format("truetype");
    font-display: swap;
    font-weight: 500
}

@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/Oswald-Bold.ttf") format("truetype");
    font-display: swap;
    font-weight: 700
}

.btn {
    position: relative;
    border: 1px #fe0 solid;
    border-radius: 10px
}

.btn span {
    position: relative;
    display: block;
    padding: clamp(0.75rem, 1.2vw, 1rem);
    width: 100%;
    height: 100%;
    text-align: center
}

.btn:before, .btn:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: #fe0;
    box-shadow: -7px -7px 20px 0px rgba(255, 255, 255, .9), -4px -4px 5px 0px rgba(255, 255, 255, .9), 7px 7px 20px 0px rgba(0, 0, 0, .2), 4px 4px 5px 0px rgba(0, 0, 0, .3);
    transition: all .3s ease
}

.btn:before {
    height: 0%;
    width: 1px
}

.btn:after {
    width: 0%;
    height: 1px
}

.btn:hover, .btn:focus {
    border-color: transparent;
    color: #fe0;
    background: transparent
}

.btn:hover:before {
    height: 100%
}

.btn:hover:after, .btn:focus:after {
    width: 100%
}

.btn span:before, .btn span:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: #fe0;
    box-shadow: -7px -7px 20px 0px rgba(255, 255, 255, .9), -4px -4px 5px 0px rgba(255, 255, 255, .9), 7px 7px 20px 0px rgba(0, 0, 0, .2), 4px 4px 5px 0px rgba(0, 0, 0, .3);
    transition: all .3s ease
}

.btn span:before {
    width: 1px;
    height: 0%
}

.btn span:after {
    height: 1px;
    width: 0%
}

.btn span:hover:before {
    height: 100%
}

.btn span:hover:after {
    width: 100%
}

.btn span:before:focus {
    height: 100%
}

.btn span:focus:after {
    width: 100%
}

ul, ol {
    padding: 0;
    margin: 0
}

.header {
    display: flex;
    position: relative;
    top: 0;
    left: 0;
    min-width: 100px;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
    padding: 1rem 0;
    font-weight: 700;
    color: #d6d1d1;
    text-transform: uppercase;
    z-index: 100
}

.header .navigation {
    display: flex;
    align-items: center
}

.header .navigation__reference {
    position: relative;
    padding: .5rem
}

.header .navigation__reference::before, .header .navigation__reference::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 1px;
    width: 0;
    background: #fe0;
    box-shadow: -1px -1px 5px 0px #fff, 7px 7px 20px 0px #0003, 4px 4px 5px 0px #0002;
    transition: 400ms ease all
}

.header .navigation__reference::after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0
}

.header .navigation__reference:hover::before, .header .navigation__reference:hover::after, .header .navigation__reference:focus::before, .header .navigation__reference:focus::after {
    width: 100%;
    transition: 800ms ease all
}

.question a {
    padding: .5rem;
    text-align: center
}

.question a:hover, .question a:focus {
    color: #fe0
}

.phone a {
    color: #d6d1d1;
    transition: all .2s ease-in-out
}

.phone:hover a, .phone:focus a {
    color: #fe0
}

.phone:hover, .phone:focus {
    transform: scale(1.05)
}

@media all and (max-width: 800px) {
    .header {
        justify-content: flex-end;
        height: auto
    }

    .header__logo {
        margin-right: auto;
    }

    .header .phone {
        margin-right: 3rem
    }

    .header .navigation-wrapper {
        visibility: hidden;
        position: absolute;
        left: 50%;
        top: -100%;
        transform: translate(-50%, -50%);
        transition: top .4s ease-in-out
    }

    .header .burger-menu {
        position: absolute;
        width: auto;
        height: auto;
        top: 1rem;
        right: 1rem
    }

    .header .burger-menu_icon {
        transition: all .4s ease-in-out;
        display: block;
        position: relative;
        cursor: pointer;
        width: 1.625rem;
        flex-shrink: 1;
        flex-grow: 0;
        height: 1.188rem
    }

    .header .burger-menu_icon .burger-menu__icon-line {
        cursor: pointer;
        height: 3px;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 1;
        display: block;
        border-radius: 1px;
        transform: rotate(0deg);
        transition: .5s ease-in-out
    }

    .header .burger-menu_icon .burger-menu__icon-line:nth-child(2) {
        top: .5rem
    }

    .header .burger-menu_icon .burger-menu__icon-line:nth-child(3) {
        top: 1rem
    }

    .menu-active .btn {
        visibility: hidden
    }

    #wrapper.menu-active {
        background: rgba(54, 54, 52, .9)
    }

    .menu-active .phone {
        display: none
    }

    .menu-active .header {
        min-height: 100vh
    }

    .menu-active .header .navigation-wrapper {
        visibility: visible;
        top: 50%;
        transition: top .4s ease-in-out
    }

    .menu-active .header .navigation-wrapper .navigation {
        flex-direction: column
    }

    .menu-active .header .navigation-wrapper .navigation li {
        padding: clamp(0.8rem, 1.7vw, 1.3rem) 0
    }

    .menu-active .header .navigation-wrapper .navigation__reference {
        font-size: clamp(1.3rem, 2.5vw, 2.25rem)
    }

    .menu-active .burger-menu_icon {
        height: 1.28rem
    }

    .menu-active .burger-menu_icon .burger-menu__icon-line:nth-child(1) {
        top: 50%;
        transform: rotate(495deg)
    }

    .menu-active .burger-menu_icon .burger-menu__icon-line:nth-child(2) {
        opacity: 0;
        left: -60px
    }

    .menu-active .burger-menu_icon .burger-menu__icon-line:nth-child(3) {
        top: 50%;
        transform: rotate(-495deg)
    }

    .question {
        display: none
    }
}

.statistics {
    padding-top: clamp(1.5rem, 3.5vw, 3rem);
    padding-bottom: clamp(1.5rem, 3.5vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(0.8rem, 1.7vw, 1.3rem);
    flex-wrap: nowrap
}

.statistics__item {
    flex: 1;
    gap: 1rem
}

.statistics__item-flex {
    display: flex;
    justify-content: center;
    align-items: center
}

.statistics__item-img {
    display: flex;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #fe0;
    height: clamp(7rem, 13vw, 10rem);
    width: clamp(7rem, 13vw, 10rem);
    padding: clamp(1.5rem, 3vw, 2.25rem)
}

.statistics__item-img svg {
    height: 100%;
    min-width: 100%
}

.statistics__item-h {
    margin-top: auto;
    text-transform: uppercase;
    text-align: center;
}

.statistics__item-value {
    text-transform: uppercase;
    text-align: center;
    font-size: calc($ font-size-h3-0 .5rem);
    font-family: Oswald;
    font-weight: bold;
}

.statistics__item-value span {
    font-family: "Umbrage", "Oswald", "sans-serif";
    font-size: clamp(1rem, 2vw, 1.5rem)
}

.booking-card-wrapper {
    position: fixed;
    z-index: 9999;
    width: 100vw;
    height: 100%;
    max-height: 100dvh;
    top: -350%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    padding: clamp(0.5rem, 1.2vw, 1rem);
    padding-bottom: calc(clamp(0.75rem, 1.2vw, 1rem) + env(safe-area-inset-bottom, 0px));
    background-color: rgba(54, 54, 52, .95);
    transition: all .3s ease-in-out;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain
}

.booking-card-wrapper .booking-card {
    position: relative;
    max-width: clamp(22rem, 40vw, 30rem);
    min-width: 17.5rem;
    width: 100%;
    max-height: none;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border: 1px solid #fe0;
    border-radius: .5rem;
    overflow: hidden;
    border: none;
    box-shadow: 0px 0px 8px 6px rgba(255, 255, 255, .31)
}

.booking-card-wrapper .booking-card__close {
    position: absolute;
    top: clamp(0.75rem, 1.2vw, 1rem);
    right: clamp(0.75rem, 1.2vw, 1rem);
    background-color: transparent;
    color: #2b2e34;
    border: none;
    transition: all .3s ease-in-out;
    font-size: clamp(1.3rem, 2.5vw, 2.25rem)
}

.booking-card-wrapper .booking-card__close:hover, .booking-card-wrapper .booking-card__close:focus {
    color: red;
    transform: rotate(360deg)
}

.booking-card-wrapper .booking-card__header {
    padding: 0.7rem 2.4rem 0.5rem 0.85rem;
    background-color: #fe0
}

.booking-card-wrapper .booking-card__header h3, .booking-card-wrapper .booking-card__header h4, .booking-card-wrapper .booking-card__header p {
    margin: 0.12rem 0;
    text-transform: uppercase;
    color: #2b2e34;
    line-height: 1.15
}

.booking-card-wrapper .booking-card__header h4 {
    margin-top: 0
}

.booking-card-wrapper .booking-card__header p {
    margin-bottom: 0
}

.booking-card-wrapper .booking-card__header #game-date {
    color: red;
    font-weight: 700
}

.booking-card-wrapper .booking-card__cost {
    position: relative;
    padding: clamp(0.75rem, 1.2vw, 1rem);
    background-color: #fff
}

.booking-card-wrapper .booking-card__cost h4, .booking-card-wrapper .booking-card__cost span {
    margin: clamp(0.6rem, 1vw, 0.8rem) 0;
    font-family: "Umbrage", "Oswald", "sans-serif";
    color: #2b2e34;
    line-height: 1.15
}

.booking-card-wrapper .booking-card__cost span {
    font-size: clamp(1.3rem, 2.5vw, 2.25rem)
}

.booking-card-wrapper .booking-card__cost h4::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: url(../Image/pattern_star.png);
    background-repeat: repeat-x;
    background-position: 0 0;
    margin: 1rem 0
}

.booking-card-wrapper .booking-card__cost h4::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: url(../Image/pattern_star.png);
    background-repeat: repeat-x;
    background-position: 0 0;
    margin: 1rem 0
}

.booking-card-wrapper .booking-card__cost::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 0;
    background-image: url(../Image/pattern_border.png);
    background-repeat: repeat-x;
    background-position: 0 0;
    width: 100%;
    height: 16px
}

.booking-card-wrapper .booking-card__header,
.booking-card-wrapper .booking-card__cost,
.booking-share {
    flex-shrink: 0
}

.booking-card-wrapper .booking-card__main {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    min-height: auto;
    overflow: visible;
    padding: clamp(0.8rem, 1.7vw, 1.3rem) clamp(0.75rem, 1.2vw, 1rem);
    background-color: #363634
}

.booking-card-wrapper .booking-card__main input:-webkit-autofill, .booking-card-wrapper .booking-card__main input:-webkit-autofill:hover, .booking-card-wrapper .booking-card__main input:-webkit-autofill:focus, .booking-card-wrapper .booking-card__main input:-webkit-autofill:active {
    box-shadow: inset 20px 20px 0px 20px #363634;
    -webkit-text-fill-color: #d6d1d1
}

.booking-card-wrapper .booking-card__main input, .booking-card-wrapper .booking-card__main textarea {
    width: 100%;
    max-width: 100%;
    padding: clamp(0.3rem, 0.2vw, 0.5rem);
    background-color: transparent;
    color: #d6d1d1;
    font-family: "OpenSans", "Oswald";
    line-height: 1.15;
    border-radius: .5rem
}

.booking-card-wrapper .booking-card__main span {
    line-height: 1.15
}

.booking-card-wrapper .booking-card__main textarea {
    min-width: 100%;
    min-height: 3.2rem;
    max-height: 5.5rem;
    line-height: 1.15;
    border-width: 2px;
    border-style: inset;
    border-color: -internal-light-dark(#767676, #858585);
    -o-border-image: initial;
    border-image: initial
}

.booking-card-wrapper .booking-card__main .booking-card__input-wrapper {
    position: relative;
    margin-bottom: clamp(0.75rem, 1.2vw, 1rem)
}

.booking-card-wrapper .booking-card__main .focus-border:before, .booking-card-wrapper .booking-card__main .focus-border:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #fe0;
    transition: .2s;
    transition-delay: .2s
}

.booking-card-wrapper .booking-card__main .focus-border:after {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    transition-delay: .6s
}

.booking-card-wrapper .booking-card__main input ~ .focus-border i:before, .booking-card-wrapper .booking-card__main input ~ .focus-border i:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 0;
    background-color: #fe0;
    transition: .2s
}

.booking-card-wrapper .booking-card__main input ~ .focus-border i:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
    transition-delay: .4s
}

.booking-card-wrapper .booking-card__main input:focus ~ .focus-border:before, .booking-card-wrapper .booking-card__main input:focus ~ .focus-border:after {
    width: 100%;
    transition: .2s;
    transition-delay: .6s
}

.booking-card-wrapper .booking-card__main input:focus ~ .focus-border:after {
    transition-delay: .2s
}

.booking-card-wrapper .booking-card__main input:focus ~ .focus-border i:before, .booking-card-wrapper .booking-card__main input:focus ~ .focus-border i:after {
    height: 100%;
    transition: .2s
}

.booking-card-wrapper .booking-card__main input:focus ~ .focus-border i:after {
    transition-delay: .4s
}

.booking-card-wrapper .booking-card__main select {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.75rem;
    padding: 0.7rem 2.4rem 0.7rem 0.75rem;
    background-color: #1f1f1d;
    color: #ffee00;
    -webkit-text-fill-color: #ffee00;
    font-family: "OpenSans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    border: 1px solid #d6d1d1;
    border-radius: .5rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffee00' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px 8px;
}

.booking-card-wrapper .booking-card__main select option {
    background-color: #ffffff;
    color: #111111;
    -webkit-text-fill-color: #111111;
}

.booking-card-wrapper .booking-card__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}

.booking-card-wrapper .booking-card__checkbox input,
.booking-card-wrapper .booking-card__main .booking-card__checkbox input[type="checkbox"] {
    width: 1rem;
    min-width: 1rem;
    max-width: 1rem;
    height: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.booking-card-wrapper .booking-card__checkbox label {
    text-align: left;
    font-family: "OpenSans", Arial, sans-serif;
    line-height: 1.3;
}

.booking-card-wrapper .booking-card__checkbox-text {
    display: inline;
    flex: 1;
    min-width: 0;
    font-family: "OpenSans", Arial, sans-serif;
    line-height: 1.3;
    color: #d6d1d1;
}

.booking-card-wrapper .booking-card__checkbox label a,
.booking-card-wrapper .booking-card__social-link {
    color: #ffee00;
    text-decoration: underline;
}

.booking-card-wrapper .booking-card__btn-wrapper {
    display: flex;
    justify-content: space-between;
    gap: clamp(0.8rem, 1.7vw, 1.3rem)
}

.booking-card-wrapper .booking-card__btn-wrapper .submit_btn::after, .booking-card-wrapper .booking-card__btn-wrapper .submit_btn::before {
    width: 0;
    height: 0
}

.booking-card-wrapper .booking-card__btn-wrapper .submit_btn, .booking-card-wrapper .booking-card__btn-wrapper .submit_btn-active {
    background-color: transparent;
    border-color: #696767;
    color: #696767;
    flex: 1
}

.booking-card-wrapper .booking-card__btn-wrapper .submit_btn-active {
    border-color: #fff;
    color: #fff
}

.booking-card-wrapper .booking-card__btn-wrapper .submit_btn span {
    color: #696767
}

.booking-card-wrapper .booking-card__btn-wrapper .submit_btn span::after, .booking-card-wrapper .booking-card__btn-wrapper .submit_btn span::before {
    width: 0;
    height: 0
}

.booking-card-wrapper .booking-card__btn-wrapper .close_btn {
    background-color: transparent;
    border-color: #fff;
    flex: 1
}

.booking-card-wrapper .booking-card__btn-wrapper .submit_btn-active:hover, .booking-card-wrapper .booking-card__btn-wrapper .close_btn:hover, .booking-card-wrapper .booking-card__btn-wrapper .submit_btn-active:focus, .booking-card-wrapper .booking-card__btn-wrapper .close_btn:focus, .booking-card-wrapper .booking-card__btn-wrapper .submit_btn-active:active, .booking-card-wrapper .booking-card__btn-wrapper .close_btn:active {
    border-color: transparent
}

.booking-card-wrapper .booking-card__btn-wrapper .submit_btn-active:hover span, .booking-card-wrapper .booking-card__btn-wrapper .close_btn:hover span, .booking-card-wrapper .booking-card__btn-wrapper .submit_btn-active:focus span, .booking-card-wrapper .booking-card__btn-wrapper .close_btn:focus span, .booking-card-wrapper .booking-card__btn-wrapper .submit_btn-active:active span, .booking-card-wrapper .booking-card__btn-wrapper .close_btn:active span {
    color: #fe0
}

.booking-active {
    top: 0;
    transition: all .3s ease-in-out
}

@font-face {
    font-family: "flexslider-icon";
    src: url("../flexslider-icon.woff") format("woff");
    src: url("../flexslider-icon.ttf") format("truetype");
    font-display: swap;
    font-weight: 300
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans/OpenSans-Light.ttf") format("truetype");
    font-display: swap;
    font-weight: 300
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans/OpenSans-Medium.ttf") format("truetype");
    font-display: swap;
    font-weight: 500
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans/OpenSans-SemiBold.ttf");
    font-display: swap;
    font-weight: 600
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
    font-display: swap;
    font-weight: 700
}

@font-face {
    font-family: "Umbrage";
    src: url("../fonts/Umbrage.ttf") format("truetype");
    font-display: swap
}

@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/Oswald-Light.ttf") format("truetype");
    font-display: swap;
    font-weight: 300
}

@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/Oswald-Medium.ttf") format("truetype");
    font-display: swap;
    font-weight: 500
}

@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/Oswald-Bold.ttf") format("truetype");
    font-display: swap;
    font-weight: 700
}

.btn {
    position: relative;
    border: 1px #fe0 solid;
    border-radius: 10px
}

.btn span {
    position: relative;
    display: block;
    padding: clamp(0.75rem, 1.2vw, 1rem);
    width: 100%;
    height: 100%;
    text-align: center
}

.btn:before, .btn:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: #fe0;
    box-shadow: -7px -7px 20px 0px rgba(255, 255, 255, .9), -4px -4px 5px 0px rgba(255, 255, 255, .9), 7px 7px 20px 0px rgba(0, 0, 0, .2), 4px 4px 5px 0px rgba(0, 0, 0, .3);
    transition: all .3s ease
}

.btn:before {
    height: 0%;
    width: 1px
}

.btn:after {
    width: 0%;
    height: 1px
}

.btn:hover, .btn:focus {
    border-color: transparent;
    color: #fe0;
    background: transparent
}

.btn:hover:before {
    height: 100%
}

.btn:hover:after, .btn:focus:after {
    width: 100%
}

.btn span:before, .btn span:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: #fe0;
    box-shadow: -7px -7px 20px 0px rgba(255, 255, 255, .9), -4px -4px 5px 0px rgba(255, 255, 255, .9), 7px 7px 20px 0px rgba(0, 0, 0, .2), 4px 4px 5px 0px rgba(0, 0, 0, .3);
    transition: all .3s ease
}

.btn span:before {
    width: 1px;
    height: 0%
}

.btn span:after {
    height: 1px;
    width: 0%
}

.btn span:hover:before {
    height: 100%
}

.btn span:hover:after {
    width: 100%
}

.btn span:before:focus {
    height: 100%
}

.btn span:focus:after {
    width: 100%
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: clamp(0.75rem, 1.2vw, 1rem);
    padding: clamp(1.3rem, 2.5vw, 2.25rem) 0
}

.site-credit {
    margin: 0;
    padding: 0.35rem 1rem 0.85rem;
    text-align: center;
    font-size: 0.68rem;
    line-height: 1.2;
    letter-spacing: 0.04em;
    opacity: 0.32
}

.site-credit a {
    color: #8a8680;
    text-decoration: none;
    font-family: "OpenSans", "Oswald", sans-serif;
    font-weight: 400
}

.site-credit a:hover,
.site-credit a:focus {
    color: #b8b4ae;
    text-decoration: underline
}

.footer .footer-item {
    flex: 2
}

.footer .footer-item a {
    font-family: "OpenSans", "Oswald", "sans-serif"
}

.footer .footer-item_flex {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.2vw, 1rem)
}

.footer .footer-item__social {
    margin-top: clamp(0.3rem, 0.6vw, 0.5rem)
}

.footer .footer-item__social a {
    flex: 1
}

.footer .footer-item__social a {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.footer .footer-item__social svg {
    height: clamp(2rem, 4vw, 3rem)
}

.footer .footer-item__social svg:hover path, .footer .footer-item__social svg:hover circle, .footer .footer-item__social svg:focus path, .footer .footer-item__social svg:focus circle {
    fill: #fe0
}

.footer .footer-item__social svg:hover, .footer .footer-item__social svg:focus {
    transform: scale(1.1)
}

.footer .footer-item__social img {
    height: clamp(2rem, 4vw, 3rem);
    width: auto
}

.footer .footer-item .btn_footer {
    border: none;
    padding-bottom: clamp(0.3rem, 0.4vw, 0.3rem)
}

.footer .footer-item li {
    margin-bottom: clamp(0.3rem, 0.6vw, 0.5rem)
}

.footer .footer-item .btn_footer:hover::before, .footer .footer-item .btn_footer:focus::before {
    display: none
}

.footer .footer-item_about {
    flex: 3
}

@media all and (max-width: 33rem) {
    .footer {
        flex-direction: column
    }

    .footer .footer-item__social-header {
        text-align: left
    }

    .footer .footer-item_flex {
        justify-content: flex-start
    }

    .footer .footer-item_about {
        flex: 1
    }
}

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

*:focus {
    outline: none
}

body {
    background-color: #363634
}

a, p, h1, h2, h3, h4, h5, span, date, input, textarea, label, select, option, li, blockquote, button {
    font-family: "Umbrage", "Oswald", "sans-serif";
    color: #d6d1d1;
    font-size: clamp(0.8rem, 1.5vw, 1.3rem);
    font-weight: 300;
    line-height: 1.5;
    text-align: justify;
    margin: 0;
    padding: 0
}

li, a {
    text-decoration: none;
    list-style: none
}

button {
    line-height: 1.15
}

.btn {
    border-color: #d6d1d1
}

blockquote {
    font-style: italic;
    margin: clamp(0.8rem, 1.7vw, 1.3rem) 0
}

p, span, li, button {
    font-family: "OpenSans", "Oswald", "sans-serif"
}

h2 {
    font-size: clamp(1.8rem, 3.75vw, 3rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: .12em;
    font-family: "Oswald"
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 2.25rem);
    letter-spacing: .12em
}

h4, blockquote {
    font-size: clamp(1rem, 2vw, 1.5rem)
}

.wrapper {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    background: rgba(54, 54, 52, .6);
    z-index: 5999
}

.container {
    max-width: 88.5rem;
    width: 100%;
    padding-left: .5rem;
    padding-right: .5rem;
    margin: 0 auto
}

.section-padding {
    padding-top: clamp(1.5rem, 3.5vw, 3rem)
}

.section-header {
    padding: clamp(1rem, 2.3vw, 2rem) 0 1rem 0;
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1.5rem);
    margin-bottom: 0;
    border-top: 1px solid #fe0;
    border-radius: 1rem
}

.section-header svg {
    display: flex;
    align-items: center;
    width: clamp(2rem, 4vw, 3rem);
    height: auto
}

.btn:hover, .btn:focus {
    border-color: transparent
}

.btn:hover span, .btn:focus span {
    color: #fe0
}

.banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    background-image: url(../Image/banner-ad.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow-y: hidden;
    min-height: 100vh;
    height: 100%
}

.banner .banner__wrapper {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    max-height: 100%;
    width: 100%;
    opacity: .9;
    overflow: hidden
}

.banner .banner__wrapper .margin-top {
    margin-top: 40vh
}

.banner .banner__wrapper canvas {
    z-index: 10;
    transform: translateX(-50%);
    overflow: hidden;
    height: 100%;
    max-width: 90%;
    width: 100%
}

.banner .banner__wrapper h1 {
    display: block;
    position: static;
    margin: clamp(1.3rem, 2.5vw, 2.25rem);
    font-size: clamp(2.2rem, 8vw, 5rem);
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    mix-blend-mode: normal
}

.banner .banner__wrapper h2, .banner .banner__wrapper h3 {
    color: #fff;
    text-align: center
}

.banner .banner__wrapper h1, .banner .banner__wrapper h2, .banner .banner__wrapper h3 {
    text-align: left
}

.banner .banner__text {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 20;
    width: 100%;
    margin-left: clamp(1.8rem, 3.75vw, 3rem);
    margin-bottom: clamp(1.8rem, 3.75vw, 3rem)
}

.banner .banner__text h1, .banner .banner__text h3 {
    margin-left: clamp(0.75rem, 1.2vw, 1rem);
    margin-right: clamp(0.75rem, 1.2vw, 1rem);
    text-align: center
}

.banner .banner__text .btn_to-booking {
    margin-top: clamp(1.3rem, 2.5vw, 2.25rem)
}

@media screen and (max-width: 58rem)and (orientation: landscape) {
    .banner .banner__text h3 {
        display: none
    }

    .banner .banner__text h1 {
        margin-top: 0;
        margin-bottom: 0
    }
}

@media screen and (max-width: 58rem) {
    body:not(.quest-ad-tsena-dushi) .banner {
        background-image: url(../Image/banner-ad-tablet.jpg)
    }
}

@media screen and (max-width: 32rem) {
    body:not(.quest-ad-tsena-dushi) .banner {
        background-image: url(../Image/banner-ad-mobile.jpg)
    }
}

.about .section-header {
    border-top: none;
    padding-top: 0
}

.about blockquote:first-of-type {
    margin-top: 0
}

.statistics {
    padding-top: 3rem;
    padding-bottom: 0px;
    border-top: 1px solid #fe0;
    border-radius: 1rem
}

@media (max-width: 840px) {
    #section-statistics .statistics {
        flex-wrap: wrap
    }

    #section-statistics .statistics__item {
        flex-basis: 30%
    }
}

#slider {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 60vh
}

#slider .part {
    flex: 1
}

#slider .part .section {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center
}

#slider .part .section img {
    flex: 1;
    width: 300%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 0;
    pointer-events: none
}

.cursor {
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    z-index: 999;
    pointer-events: none;
    mix-blend-mode: difference
}

.cursor-f {
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='47' height='47' viewBox='0 0 47 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42.4202 42.4202C38.8403 46 33.3594 46 23.5 46C13.6406 46 8.15966 46 4.57983 42.4202C1 38.8403 1 33.3594 1 23.5C1 13.6406 1 8.15966 4.57983 4.57983C8.15966 1 13.6406 1 23.5 1C33.3594 1 38.8403 1 42.4202 4.57983C46 8.15966 46 13.6406 46 23.5C46 33.3594 46 38.8403 42.4202 42.4202Z' stroke='white'/%3E%3C/svg%3E%0A");
    background-size: cover;
    mix-blend-mode: difference;
    pointer-events: none;
    opacity: .5
}

.buttons {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99
}

.buttons button {
    border: none;
    background-size: contain;
    background: url("data:image/svg+xml,%3Csvg width='10' height='29' viewBox='0 0 10 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0V27L1 17.4857' stroke='white' stroke-width='2' /%3E%3C/svg%3E%0A") no-repeat;
    background-position: center;
    width: 10px;
    height: 30px;
    display: block;
    margin: 20px 0;
    padding: 0 15px;
    transition-duration: .6s
}

.buttons button.next {
    transform: scaleY(-1)
}

.buttons button.prev:active {
    transform: translateY(8px)
}

.buttons button.next:active {
    transform: scaleY(-1) translateY(8px)
}

.content {
    width: 90%;
    position: absolute;
    bottom: 20px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    z-index: 99;
    font-size: .8em
}

.content p {
    margin: .5em auto
}

.content kbd {
    width: 15px;
    height: 15px;
    border: 1px solid #fff;
    display: inline-block;
    border-radius: 3px;
    font-size: .9em;
    vertical-align: text-top
}

.content a {
    color: rgba(227, 227, 227, .78);
    text-decoration: none;
    border-bottom: 1px solid currentColor
}

.content a:hover {
    padding-bottom: 1px
}

.booking__header {
    margin-bottom: clamp(0.8rem, 1.7vw, 1.3rem)
}

.booking__header .btn {
    background-color: transparent;
    padding: 0
}

.booking__header .btn:hover span {
    color: #fe0
}

.booking-gift-note {
    margin: 0 0 1.15rem;
    padding: 0.85rem 1rem;
    border: 1px solid #ffee00;
    border-radius: 10px;
    color: #d6d1d1;
    font-family: "OpenSans", "Oswald", sans-serif;
    line-height: 1.5;
    text-align: left;
}

.booking-gift-note a {
    color: #ffee00;
    text-decoration: underline;
}

.booking__form {
    display: grid;
    grid-template-columns:auto 1fr;
    gap: clamp(1rem, 2.3vw, 2rem)
}

.booking__form .booking__day {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(0.75rem, 1.2vw, 1rem);
    border: 1px solid #fe0;
    border-radius: .5rem;
    line-height: 1.15
}

.booking__form .booking__day .booking__date {
    font-weight: 700;
    line-height: inherit
}

.booking__form .booking__day .booking__day-name {
    line-height: inherit
}

.booking__form .booking__times {
    display: flex;
    gap: clamp(0.5rem, 1.2vw, 1rem)
}

.booking__form .booking__times .booking__times-item {
    position: relative;
    background: #fe0;
    border: none;
    border-radius: .5rem;
    line-height: 1.15;
    padding: 0;
    padding: .5rem;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #2b2e34
}

.booking__form .booking__times .booking__times-item span {
    display: block;
    border-top: 1px solid #2b2e34;
    font-size: clamp(0.75rem, 1.2vw, 1rem);
    line-height: 1.15;
    color: inherit;
    margin-top: 2px
}

.booking__form .booking__times .booking__times-item span::before {
    content: "";
    visibility: hidden;
    display: block;
    position: absolute;
    padding-top: 2px;
    text-align: center;
    width: 100%;
    height: 100%
}

.booking__form .booking__times .booking__times-item:hover, .booking__form .booking__times .booking__times-item:focus {
    color: #fe0;
    background: transparent;
    box-shadow: none
}

.booking__form .booking__times .booking__times-item:hover span, .booking__form .booking__times .booking__times-item:focus span {
    border-top-color: inherit;
    color: inherit
}

.booking__form .booking__times .booking__times-item::before, .booking__form .booking__times .booking__times-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 1px;
    width: 0;
    background: #fe0;
    box-shadow: -1px -1px 5px 0px #fff, 7px 7px 20px 0px #0003, 4px 4px 5px 0px #0002;
    transition: 400ms ease all
}

.booking__form .booking__times .booking__times-item::after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0
}

.booking__form .booking__times .booking__times-item:hover::before, .booking__form .booking__times .booking__times-item:hover::after, .booking__form .booking__times .booking__times-item:focus::before, .booking__form .booking__times .booking__times-item:focus::after {
    width: 100%;
    transition: 800ms ease all
}

.booking__form .booking__times .booked {
    background: transparent;
    border: rgba(248, 18, 18, .89) solid 1px;
    color: rgba(248, 18, 18, .89)
}

.booking__form .booking__times .booked span {
    position: relative;
    visibility: hidden;
    border: none
}

.booking__form .booking__times .booked span::before {
    content: "бронь";
    visibility: visible;
    color: rgba(248, 18, 18, .89);
    border-top: 1px solid rgba(248, 18, 18, .89)
}

.booking__form .booking__times .booked:hover, .booking__form .booking__times .booked:focus {
    background: none;
    color: rgba(248, 18, 18, .89)
}

.booking__form .booking__times .booked::before, .booking__form .booking__times .booked::after {
    visibility: hidden
}

.booking__form .booking__times .closed {
    background: transparent;
    border: #b1a9a9 solid 1px;
    color: #b1a9a9
}

.booking__form .booking__times .closed span {
    position: relative;
    visibility: hidden
}

.booking__form .booking__times .closed span::before {
    content: "закрыто";
    visibility: visible;
    color: #b1a9a9;
    border-top: 1px solid #b1a9a9
}

.booking__form .booking__times .closed:hover, .booking__form .booking__times .closed:focus {
    background: none;
    color: #b1a9a9
}

.booking__form .booking__times .closed::before, .booking__form .booking__times .closed::after {
    visibility: hidden
}

@media (max-width: 840px) {
    .section-header {
        justify-content: center;
        margin-bottom: 0
    }

    .booking__form {
        grid-template-columns:1fr;
        align-self: center;
        align-items: center
    }

    .booking__form .booking__day {
        flex-direction: row;
        gap: clamp(0.75rem, 1.2vw, 1rem);
        padding-bottom: 0px;
        border: none
    }

    .booking__form .booking__times {
        justify-content: center
    }
}

@media (max-width: 700px) {
    .booking__times {
        flex-wrap: wrap
    }
}

.map-wrap {
    width: 100%;
    margin-top: clamp(0.75rem, 1.2vw, 1rem);
    height: clamp(20rem, 40vw, 35rem)
}

.map-wrap .map-item, .map-wrap iframe {
    height: 100%;
    border: none;
    width: 100%
}

#section-feedback {
    padding: clamp(1.8rem, 3.75vw, 3rem) 0
}

#section-feedback li, #section-feedback p, #section-feedback a {
    color: #d6d1d1;
    text-align: center
}

#section-feedback .flex-direction-nav li a:hover::before, #section-feedback .flex-direction-nav li a:hover::after {
    background-color: #fe0
}

#section-feedback .btn {
    border-color: #d6d1d1
}

#section-feedback .btn:hover, #section-feedback .btn:focus {
    border-color: transparent
}

#section-feedback .btn:hover span, #section-feedback .btn:focus span {
    color: #fe0
}

.address-bottom {
    font-size: clamp(1.3rem, 2.5vw, 2.25rem);
    letter-spacing: .12em;
    font-weight: inherit;
}
/* окно с промокодом */
.modal-info {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    width: 90%;
    max-width: 900px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    padding-right: 50px;
    background-color: #d6d1d1;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.modal-info.active {
    visibility: visible;
    opacity: 1;
}

.modal-info_close-btn {
    position: absolute;
    right: 16px;
    top: 10px;
    font-size: clamp(1.3rem, 2.5vw, 2.25rem);
    color: red;
    font-family: "OpenSans", "Oswald", "sans-serif";
    border: none;
    background: none;
}

.modal-info_title {
    font-size: clamp(0.9rem, 2.25vw, 2rem);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-family: "OpenSans", "Oswald", "sans-serif";
    margin-bottom: 10px;
    color: #000;
}

.modal-info_text {
    font-size: clamp(0.8rem, 1.5vw, 1.3rem);
    font-weight: 300;
    line-height: 1.5;
    font-family: "OpenSans", "Oswald", "sans-serif";
    color: #000;
}

.breadcrumbs {
    max-width: 90rem;
    margin: 0 auto;
    padding: 6.75rem 0.5rem 0.75rem;
}

/* Quest pages: crumbs are the next sibling of the fixed header. */
.wrapper + .breadcrumbs {
    position: relative;
    z-index: 1;
    padding-top: 6.75rem;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumbs__item:not(:last-child)::after {
    content: "/";
    margin-left: 0.35rem;
    color: #888;
}

.breadcrumbs__item a {
    color: #ffee00;
    text-decoration: none;
}

.breadcrumbs__item span {
    color: #ccc;
}

.quest-closed-banner {
    margin: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(180deg, rgba(90, 0, 0, 0.45) 0%, rgba(45, 0, 0, 0.65) 100%);
    border-bottom: 1px solid #ff6b6b;
    color: #fff;
    text-align: center;
}

.quest-closed-banner__title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ff8f8f;
}

.quest-closed-banner__text {
    margin: 0;
    line-height: 1.5;
}

.quest-closed-banner__text a {
    color: #ffee00;
    text-decoration: underline;
}

.seo-quest-content__archive-note {
    margin: 0 0 1rem;
    padding: 0.75rem 1rem;
    border-left: 4px solid #ff6b6b;
    background: rgba(90, 0, 0, 0.25);
    color: #f5f5f5;
}

.similar-quests {
    background: #1d1f20;
    color: #fff;
    padding-bottom: clamp(2.75rem, 6vw, 5rem);
}

.similar-quests__title {
    margin-bottom: 1.5rem;
    color: #ffee00;
    text-transform: uppercase;
}

.similar-quests__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.similar-quests__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ffee00;
}

.similar-quests__item h3 {
    margin: 0.75rem 0 0.35rem;
}

.similar-quests__item h3 a {
    color: #fff;
    text-decoration: none;
}

.similar-quests__item p {
    margin: 0 0 0.75rem;
    color: #ccc;
}

.quest-guides .similar-quests__item p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.quest-guides__all {
    margin: 1.5rem 0 0;
    text-align: center;
}

.quest-guides__all a {
    color: #ffee00;
    text-decoration: none;
    font-weight: 600;
}

.quest-guides__all a:hover {
    text-decoration: underline;
}

.sticky-booking-cta {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translate(-50%, 120%);
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    background: #ffee00;
    color: #111;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease;
}

.sticky-booking-cta--visible {
    transform: translate(-50%, 0);
}

.sticky-booking-cta--visible {
    transform: translate(-50%, 0);
}

.seo-article h1,
.seo-article h2,
.seo-article h3 {
    color: #ffee00;
    font-family: "Oswald", "OpenSans", sans-serif;
    font-weight: 700;
    text-align: left;
    line-height: 1.2;
}

.seo-article h1 {
    margin: 0 0 1.25rem;
    font-size: clamp(2rem, 5vw, 3.4rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.seo-article h2 {
    margin: 2rem 0 1rem;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.seo-article h3 {
    margin: 1.5rem 0 0.8rem;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    text-transform: uppercase;
}

.seo-article p,
.seo-article li {
    color: #ddd;
    font-family: "OpenSans", "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 1rem;
}

.blog-article > ul,
.blog-article > ol {
    margin: 0 0 1.25rem;
    padding-left: 1.4rem;
}

.blog-article > ul {
    list-style: disc;
}

.blog-article > ol {
    list-style: decimal;
}

.blog-article > ul > li,
.blog-article > ol > li {
    list-style: inherit;
    margin-bottom: 0.45rem;
}

.seo-article .breadcrumbs__list,
.seo-article .breadcrumbs__item,
.blog-listing .breadcrumbs__list,
.blog-listing .breadcrumbs__item {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.seo-article .breadcrumbs__item {
    font-size: 0.9rem;
    color: #ccc;
}

.seo-article a {
    color: #ffee00;
}

.seo-article .btn,
.seo-article .btn span {
    color: #d6d1d1;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
}

.blog-page a.btn,
.similar-quests a.btn,
.similar-quests__item a.btn,
.seo-quest-content a.btn,
.seo-article a.btn,
.contacts-page a.btn {
    display: inline-block;
    width: auto;
    max-width: 100%;
    vertical-align: middle;
    text-decoration: none;
}

.blog-page a.btn span,
.similar-quests a.btn span,
.similar-quests__item a.btn span,
.seo-quest-content a.btn span,
.seo-article a.btn span,
.contacts-page a.btn span {
    width: auto;
    height: auto;
}

.similar-quests a.btn {
    margin-top: 0.35rem;
}

.seo-article__meta {
    color: #888;
    font-size: 0.9rem;
    text-align: left;
    margin-bottom: 1.25rem;
}

.seo-article__list {
    list-style: none;
    padding: 0;
}

.seo-article__list li {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    border-left: 3px solid #ffee00;
}

.seo-quest-content {
    background: #242628;
    color: #fff;
    padding-bottom: clamp(2rem, 4.5vw, 3.5rem);
}

.seo-quest-content h2,
.seo-quest-content h3 {
    color: #ffee00;
}

.seo-quest-content p {
    color: #ddd;
    line-height: 1.7;
}

.seo-quest-content .quest-faq {
    margin-top: 2rem;
    max-width: 46rem;
}

.seo-quest-content .quest-faq h2 {
    margin-bottom: 1rem;
}

.article-faq__more {
    margin: 0.55rem 0 0;
}

.article-faq__more a,
.seo-quest-content .article-faq__more a {
    color: #ffee00;
    text-decoration: none;
    font-weight: 600;
}

.article-faq__more a:hover {
    text-decoration: underline;
}

.kids-animator {
    background: #111;
    padding: 2.75rem 0 1.75rem;
}

.kids-animator__card {
    position: relative;
    border: 1px dashed #ffee00;
    padding: 1.5rem 1.35rem 1.4rem;
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
}

.kids-animator__avatar {
    position: absolute;
    right: 1.1rem;
    top: 1.1rem;
    width: 3.4rem;
    height: 3.4rem;
    border: 2px solid #ffee00;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 38%, #ffee00 0 0.38rem, transparent 0.4rem),
        radial-gradient(circle at 50% 92%, #ffee00 0 1.15rem, transparent 1.18rem);
}

.kids-animator__label {
    margin: 0 5rem 0.45rem 0;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffee00;
}

.kids-animator__title {
    margin: 0 5rem 0.55rem 0;
    color: #fff;
    text-transform: uppercase;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    line-height: 1.15;
}

.kids-animator__text {
    margin: 0 0 1rem;
    max-width: 52rem;
    color: #ccc;
    line-height: 1.5;
}

.kids-animator__btn {
    display: inline-block;
    background: #ffee00;
    color: #111;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.55rem 0.9rem;
}

.kids-animator__btn:hover {
    color: #111;
    filter: brightness(1.05);
}

@media (min-width: 768px) {
    .kids-animator {
        padding-top: 3.75rem;
    }

    .kids-animator__card {
        padding: 2rem 2.25rem 1.75rem;
    }

    .kids-animator__avatar {
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        width: 4.5rem;
        height: 4.5rem;
    }
}

@media (max-width: 600px) {
    .kids-animator {
        padding-top: 2rem;
    }

    .kids-animator__avatar {
        width: 2.6rem;
        height: 2.6rem;
        right: 0.85rem;
        top: 0.85rem;
    }

    .kids-animator__title,
    .kids-animator__label {
        margin-right: 3.4rem;
    }
}

@media (min-width: 768px) {
    .sticky-booking-cta {
        display: none;
    }
}

.modal-info_promo {
    font-weight: 600;
    color: #000;
}

.header__logo {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.header__logo img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.navigation__reference_active {
    color: #fe0;
}

.blog-page {
    background: #363634;
}

.banner_article {
    position: relative;
    min-height: 70vh;
    height: auto;
    background-color: #1a1a18;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner_article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 19, 20, 0.25) 0%, rgba(18, 19, 20, 0.78) 100%);
    z-index: 1;
}

.banner_article .banner__wrapper {
    z-index: 2;
}

.banner_article .banner__text {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding: 0 1rem 1.5rem;
    box-sizing: border-box;
}

.banner_article .banner__text h1,
.banner_article .banner__text h3 {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
    margin-left: 0;
    margin-right: 0;
}

.banner_article .banner__text h1 {
    font-weight: 300;
    font-size: clamp(2rem, 6vw, 3.75rem);
    line-height: 1.05;
}

.banner_article .banner__text h3 {
    font-size: clamp(0.9rem, 1.6vw, 1.2rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffee00;
}

.blog-listing__inner {
    padding-top: 110px;
    padding-bottom: 4rem;
    max-width: 72rem;
}

.blog-article {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
    max-width: 72rem;
}

.certificate-page .about.section-padding {
    padding-top: 0;
}

.certificate-page .blog-article {
    padding-top: 0;
}

.blog-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 0 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2c2f32;
}

.blog-hero__eyebrow {
    margin: 0 0 0.6rem;
    color: #ffee00;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.blog-hero h1 {
    margin: 0 0 0.85rem;
    color: #fff;
    font-family: "Oswald", "OpenSans", sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    text-transform: uppercase;
    line-height: 1.1;
    text-align: left;
}

.blog-hero__lead {
    max-width: 40rem;
    margin: 0 0 1.4rem;
    color: #cfcfcf;
    font-size: 1.05rem;
    line-height: 1.7;
}

.blog-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.blog-hero__visual {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #3a3d40;
    min-height: 220px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.blog-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    filter: saturate(0.92);
}

.blog-featured {
    margin-bottom: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(180deg, #1f2124 0%, #181a1c 100%);
    border: 1px solid #2c2f32;
    border-radius: 16px;
    min-height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: #ffee00;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.blog-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #111;
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.05);
}

.blog-card__badge {
    position: absolute;
    left: 0.9rem;
    top: 0.9rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: #ffee00;
    color: #111;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.15rem 1.2rem 1.3rem;
    flex: 1;
    text-align: left;
}

.blog-card__meta,
.seo-article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    color: #8b8b8b;
    font-size: 0.85rem;
    text-align: left;
}

.blog-card__tag {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border: 1px solid #ffee00;
    border-radius: 999px;
    color: #ffee00;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-card__title {
    margin: 0;
    font-family: "Oswald", "OpenSans", sans-serif;
    font-size: 1.35rem;
    line-height: 1.25;
    text-transform: none;
    text-align: left;
}

.seo-article .blog-card__title {
    font-size: 1.35rem;
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
    margin: 0;
}

.seo-article .similar-quests__title,
.seo-article .article-more > h2,
.seo-article .article-cta h2,
.seo-article .article-faq h2 {
    text-align: center;
}

.seo-article .similar-quests__item h3 {
    color: #fff;
    font-size: 1.25rem;
    text-transform: none;
    letter-spacing: 0;
    margin: 0.75rem 0 0.35rem;
}

.seo-article .similar-quests__item p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.seo-article .article-quest-strip__item,
.seo-article .article-quest-strip__name,
.seo-article .article-quest-strip__meta {
    color: #fff;
    text-align: left;
    text-decoration: none;
}

.seo-article .article-quest-strip__cta {
    color: #ffee00;
}

.seo-article .article-cta {
    text-align: center;
}

.seo-article .article-cta p {
    text-align: center;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.seo-article .article-cta__actions {
    justify-content: center;
}

.blog-card__title a {
    color: #fff;
    text-decoration: none;
}

.blog-card__title a:hover {
    color: #ffee00;
}

.blog-card__excerpt {
    margin: 0;
    color: #c5c5c5;
    line-height: 1.6;
    flex: 1;
    text-align: left;
}

.blog-card__more {
    color: #ffee00;
    text-decoration: none;
    font-weight: 700;
}

.blog-card--featured {
    display: grid;
    grid-template-columns: 1fr;
}

.blog-card--featured .blog-card__media {
    min-height: 220px;
}

.blog-card--featured .blog-card__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.blog-article > p,
.blog-article > ul,
.blog-article > ol,
.blog-article > h2,
.blog-article > h3 {
    max-width: 46rem;
}

.article-hero {
    margin: 0 0 1.75rem;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #ffee00;
    max-height: 420px;
    background: #111;
}

.article-hero img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.article-figure {
    margin: 1.5rem 0 2rem;
    overflow: hidden;
    border-radius: 14px;
    background: #111;
    border: 1px solid #2c2f32;
}

.article-figure img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.article-figure figcaption {
    padding: 0.7rem 1rem 1rem;
    color: #9a9a9a;
    font-size: 0.9rem;
    border-left: 3px solid #ffee00;
}

.article-quest-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.6rem 0 2rem;
}

.article-quest-strip__item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #1c1e20;
    border: 1px solid #2c2f32;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.article-quest-strip__item:hover {
    border-color: #ffee00;
    transform: translateY(-3px);
}

.article-quest-strip__item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.article-quest-strip__name {
    padding: 0.75rem 0.9rem 0.2rem;
    font-family: "Oswald", "OpenSans", sans-serif;
    font-size: 1.1rem;
}

.article-quest-strip__meta {
    padding: 0 0.9rem;
    color: #9a9a9a;
    font-size: 0.85rem;
}

.article-quest-strip__cta {
    margin-top: auto;
    padding: 0.7rem 0.9rem 0.95rem;
    color: #ffee00;
    font-weight: 700;
}

.article-faq {
    margin: 2.4rem 0 0;
    max-width: 46rem;
}

.article-faq__item {
    margin-bottom: 0.7rem;
    padding: 0.85rem 1rem;
    border: 1px solid #2c2f32;
    border-radius: 12px;
    background: #1a1c1e;
}

.article-faq__item summary {
    cursor: pointer;
    color: #ffee00;
    font-weight: 700;
}

.article-faq__item p {
    margin: 0.7rem 0 0;
}

.article-cta {
    margin: 2.5rem 0 0;
    padding: 1.5rem 1.4rem;
    border: 1px solid #ffee00;
    border-radius: 16px;
    background: linear-gradient(160deg, #242628 0%, #161718 100%);
}

.article-cta h2 {
    margin-top: 0;
}

.article-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.article-cta .btn {
    display: inline-block;
    min-width: 180px;
}

.article-related-quests {
    margin-top: 2.5rem;
    padding: 0;
    background: transparent;
}

.article-related-quests .similar-quests__item {
    padding: 0.85rem;
    background: #1c1e20;
    border: 1px solid #2c2f32;
    border-radius: 14px;
}

.article-related-quests .similar-quests__item .btn {
    display: inline-block;
}

.article-more {
    margin-top: 2.5rem;
}

.blog-grid_compact {
    margin-top: 1rem;
}

.blog-article .breadcrumbs {
    padding: 6.75rem 0 1rem;
}

.seo-article .breadcrumbs,
.blog-listing .breadcrumbs {
    padding-top: 0.75rem;
}

.contacts-legal {
    margin: 1rem 0 0;
    color: #8e8e8e;
    font-size: 0.85rem;
}

.contacts-section-title {
    margin: 0 0 1.25rem;
    color: #ffee00;
    text-transform: uppercase;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    text-align: left;
}

.contacts-grid,
.contacts-ways {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 0 0 2.5rem;
}

.contact-card,
.contact-way {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.35rem 1.3rem 1.45rem;
    background: #1d1f20;
    border: 1px solid #ffee00;
    border-radius: 12px;
    color: #fff;
}

.contact-card__tag {
    margin: 0 0 0.45rem;
    color: #ffee00;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.contact-card h3,
.contact-way h3 {
    margin: 0 0 0.55rem;
    color: #fff;
    text-transform: none;
    font-size: 1.25rem;
    line-height: 1.25;
}

.contact-card__address {
    margin: 0 0 0.65rem;
    color: #ffee00;
    font-weight: 600;
}

.contact-card__note,
.contact-way p {
    margin: 0 0 1rem;
    color: #cfcfcf;
    line-height: 1.6;
}

.contact-card__quests {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 1.15rem;
    padding: 0;
    list-style: none;
}

.contact-card__quests li {
    list-style: none;
    margin: 0;
}

.contact-card__quests a {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    border: 1px solid #3a3d40;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
}

.contact-card__quests a:hover {
    border-color: #ffee00;
    color: #ffee00;
}

.contact-card > .btn {
    margin-top: auto;
}

.contacts-cta {
    margin-top: 0;
}

@media (min-width: 720px) {
    .blog-hero {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
    }

    .blog-hero__visual,
    .blog-hero__visual img {
        min-height: 320px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts-grid,
    .contacts-ways {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-card--featured {
        grid-template-columns: 1.15fr 0.85fr;
    }

    .blog-card--featured .blog-card__media {
        min-height: 100%;
        aspect-ratio: auto;
    }

    .article-quest-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-grid_compact {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header-book-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: #ffee00;
    color: #111;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.header-book-cta:hover,
.header-book-cta:focus {
    color: #111;
    transform: scale(1.03);
}

.quest-fit {
    margin: 0 auto;
    padding: 1.5rem 1rem 0.5rem;
    max-width: 1180px;
    color: #fff;
}

.quest-fit__title {
    margin: 0 0 0.85rem;
    color: #ffee00;
    font-family: "Oswald", "OpenSans", sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    text-transform: uppercase;
}

.quest-fit__grid {
    display: grid;
    gap: 1rem;
}

.quest-fit__yes,
.quest-fit__no {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.45;
}

.quest-fit__yes li::marker {
    color: #ffee00;
}

.quest-fit__no-title {
    margin: 0 0 0.4rem;
    color: #d6d1d1;
    font-weight: 600;
}

.quest-fit__cta {
    display: inline-flex;
    margin-top: 1rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: #ffee00;
    color: #111;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.quest-promo-note {
    margin: 0 0 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ffee00;
    border-radius: 8px;
    background: rgba(255, 238, 0, 0.08);
    color: #fff;
}

.quest-promo-note strong {
    color: #ffee00;
}

.quest-price-grid {
    margin: 0 0 1.25rem;
    color: #fff;
}

.quest-price-grid__title {
    margin: 0 0 0.65rem;
    color: #ffee00;
    font-weight: 700;
    text-transform: uppercase;
}

.quest-price-grid__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
    gap: 0.6rem;
}

.quest-price-grid__cell {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid #ffee00;
    border-radius: 8px;
    background: #2a2c2d;
}

.quest-price-grid__cell span,
.quest-price-grid__cell strong {
    white-space: nowrap;
}

.quest-price-grid__cell strong {
    color: #ffee00;
    font-variant-numeric: tabular-nums;
}

.quest-price-grid__note {
    margin: 0.6rem 0 0;
    color: #d6d1d1;
    font-size: 0.9rem;
}

.booking-fear {
    margin: 0.75rem 0 0.5rem;
    color: #fff;
}

.booking-fear__title {
    margin: 0 0 0.25rem;
    font-weight: 700;
}

.booking-fear__hint {
    margin: 0 0 0.55rem;
    color: #d6d1d1;
    font-size: 0.85rem;
}

.booking-fear__options {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
}

.booking-fear label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    margin: 0;
    white-space: nowrap;
    font-family: "OpenSans", Arial, sans-serif;
    line-height: 1.3;
}

.booking-card-wrapper .booking-card__main .booking-fear input[type="radio"] {
    width: 1.15rem;
    min-width: 1.15rem;
    max-width: 1.15rem;
    height: 1.15rem;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    background: transparent;
    border: 0;
    -webkit-appearance: radio;
    appearance: radio;
}

.booking-share {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0.7rem 0.85rem 0.1rem;
    background-color: #363634;
}

.booking-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: auto;
    max-width: 100%;
    padding: 0.5rem 0.95rem;
    border: 1px solid #ffee00;
    border-radius: 999px;
    background: rgba(255, 238, 0, 0.14);
    color: #ffee00;
    font-family: "OpenSans", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
}

.booking-share__icon {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
}

.booking-share__btn span {
    width: auto;
}

.booking-share__btn:active {
    background: rgba(255, 238, 0, 0.26);
}

.booking__times-item--shared {
    outline: 2px solid #ffee00;
    outline-offset: 2px;
}

@media (min-width: 720px) {
    .quest-fit__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 800px) {
    .header-book-cta {
        margin-right: 3rem;
        padding: 0.35rem 0.7rem;
        font-size: 0.78rem;
    }

    .header .phone {
        margin-right: 3rem;
        white-space: nowrap;
    }

    .header:has(.header-book-cta) .phone {
        margin-right: 0.45rem;
    }
}

@media (max-width: 767px) {
    .sticky-booking-cta {
        left: 1rem;
        right: auto;
        bottom: 5.75rem;
        min-width: 0;
        padding: 0.8rem 1.15rem;
        transform: translate(0, 120%);
        z-index: 90;
    }

    .sticky-booking-cta--visible {
        transform: translate(0, 0);
    }
}