:root {
    --font-main: "Inter", sans-serif;
    --font-accent: "Marvin", serif;
    --light-pink: #f5b0d0;
    --pink: #ff9cca;
    --dark-pink: #d76d93;
    --yellow: #fdd078;
    --purple: #8f9ee4;
    --cyan: #9dd5f2;
    --dark-cyan: #83ccf2;
    --swiper-theme-color: var(--dark);
}
.center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.block-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -1rem;
}
@media (max-width: 992px) {
    .block-flex {
        margin: 0 -0.5rem;
    }
}
@media (max-width: 768px) {
    .block-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0 auto;
    }
}
.block-flex .w-50 {
    width: 50%;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    margin: 0 1rem;
}
@media (max-width: 1200px) {
    .block-flex .w-50 {
        width: 45%;
    }
}
@media (max-width: 992px) {
    .block-flex .w-50 {
        margin: 0 0.5rem;
    }
}
@media (max-width: 768px) {
    .block-flex .w-50 {
        width: 100%;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .md {
        display: none !important;
    }
}
.mm {
    display: none !important;
}
@media (max-width: 768px) {
    .mm {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}
.ai {
    position: relative;
    overflow: hidden;
    padding: 0 0 50% 0;
}
.ai img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
._mask {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}
._hide {
    visibility: hidden;
    opacity: 0;
}
._show {
    visibility: visible !important;
    -webkit-animation: show 0.2s forwards 0.2s;
    animation: show 0.2s forwards 0.2s;
}
@-webkit-keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.block-btn-arrow {
    background: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.block-btn-arrow .btn {
    text-align: center;
}
.block-btn-arrow .btn-arrow .arrow {
    margin: 15px;
}
@media (max-width: 768px) {
    .block-btn-arrow .btn-arrow .arrow {
        margin: 10px;
    }
}
.block-btn-arrow .btn-arrow .arrow img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.block-form {
    max-width: 464px;
}
@media (max-width: 768px) {
    .block-form {
        max-width: 100%;
    }
}
.block-form form {
    background-color: #8f9ee4;
    border-radius: 50px;
    overflow: hidden;
    padding: 25px 20px 10px;
}
.block-form .head-title {
    font-size: 25px;
    line-height: 130%;
    color: #2f2f2f;
    font-family: "Inter-Medium";
    text-align: center;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .block-form .head-title {
        font-size: 22px;
        line-height: 130%;
        color: #343434;
    }
}
.block-form .block-input input,
.block-form .block-input textarea {
    width: 100%;
    border-radius: 30px;
    background: #fff;
    font-size: 18px;
    line-height: 130%;
    color: #2f2f2f;
    font-family: "Inter-Light";
    margin-bottom: 10px;
}
.block-form .block-input input::-webkit-input-placeholder,
.block-form .block-input textarea::-webkit-input-placeholder {
    color: rgba(52, 52, 52, 0.74);
}
.block-form .block-input input::-moz-placeholder,
.block-form .block-input textarea::-moz-placeholder {
    color: rgba(52, 52, 52, 0.74);
}
.block-form .block-input input:-ms-input-placeholder,
.block-form .block-input textarea:-ms-input-placeholder {
    color: rgba(52, 52, 52, 0.74);
}
.block-form .block-input input::-ms-input-placeholder,
.block-form .block-input textarea::-ms-input-placeholder {
    color: rgba(52, 52, 52, 0.74);
}
.block-form .block-input input::placeholder,
.block-form .block-input textarea::placeholder {
    color: rgba(52, 52, 52, 0.74);
}
@media (max-width: 768px) {
    .block-form .block-input input,
    .block-form .block-input textarea {
        font-size: 16px;
    }
}
.block-form .block-input input {
    height: 57px;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .block-form .block-input input {
        height: 50.12px;
    }
}
.block-form .block-input textarea {
    height: 134px;
    padding: 20px;
    resize: none;
}
@media (max-width: 768px) {
    .block-form .block-input textarea {
        height: 117.83px;
    }
}
.block-form .block-btn-arrow {
    margin-top: 30px;
}
.block-form .block-btn-arrow .btn {
    border-radius: 31.89px;
}
.block-form .block-btn-arrow .btn.btn-yellow {
    width: 205.18px;
    height: 59.79px;
    font-size: 19.93px;
    color: #2f2f2f;
}
@media (max-width: 768px) {
    .block-form .block-btn-arrow .btn.btn-yellow {
        width: 180.41px;
        height: 52.57px;
        font-size: 18px;
        color: #2c2c2c;
    }
}
.block-form .block-btn-arrow .btn.btn-arrow {
    min-width: 56.97px;
    max-width: 56.97px;
    height: 56.97px;
}
@media (max-width: 768px) {
    .block-form .block-btn-arrow .btn.btn-arrow {
        min-width: 50.09px;
        max-width: 50.09px;
        height: 50.09px;
    }
}
@media (max-width: 768px) {
    .block-bottom .block-agree {
        margin-top: 10px;
    }
}
.block-bottom .block-agree input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.block-bottom .block-agree input + label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 15px;
    line-height: 130%;
    color: #2f2f2f;
    font-family: "Inter-Light";
    cursor: pointer;
}
@media (max-width: 768px) {
    .block-bottom .block-agree input + label {
        font-size: 13px;
        color: #343434;
    }
}
.block-bottom .block-agree input + label::before {
    content: "";
    min-width: 28px;
    max-width: 28px;
    height: 28px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 10px;
    background: #fff;
}
@media (max-width: 768px) {
    .block-bottom .block-agree input + label::before {
        min-width: 24.62px;
        max-width: 24.62px;
        height: 24.62px;
        border-radius: 8.79px;
    }
}
.block-bottom .block-agree input:checked + label::before {
    background-image: url("../img/svg/check.svg");
    background-repeat: no-repeat;
    background-position: center;
}
.text-bg {
    border-radius: 16.72px;
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 10px;
    margin: 0 5px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.text-bg span {
    font-size: 27px;
    line-height: 130%;
    color: #2f2f2f;
    font-family: var(--font-accent);
    -webkit-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
@media (max-width: 768px) {
    .text-bg span {
        font-size: 23px;
        color: #343434;
    }
}
.text-bg.yellow {
    background: var(--yellow);
}
.text-bg.light-pink {
    background: var(--light-pink);
}
.text-bg.purple {
    background: var(--purple);
}
.title {
    font-weight: 400;
    font-size: 55px;
    line-height: 130%;
    color: #2f2f2f;
    text-align: center;
    font-family: var(--font-accent);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media (max-width: 768px) {
    .title {
        font-size: 35px;
        color: #2c2c2c;
    }
}
@media (max-width: 480px) {
    .title {
        font-size: 28px;
    }
}
.block-btn-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.block-btn-arrow .btn {
    background: var(--yellow);
}
.block-btn-arrow .btn:hover,
.block-btn-arrow .btn:focus {
    background: #febd3d;
    color: #000;
    -webkit-transition: 0.2s ease 0.2s;
    -o-transition: 0.2s ease 0.2s;
    transition: 0.2s ease 0.2s;
}
.block-btn-arrow .btn.btn-yellow {
    line-height: 100%;
    font-family: "Inter-Medium";
}
.block-btn-arrow .btn.btn-arrow {
    margin-left: -10px;
    min-width: 75px;
    max-width: 75px;
    height: 75px;
}
.btn {
    width: 100%;
    min-width: 275px;
    max-width: 275px;
    height: 65px;
    border-radius: 40px;
    font-size: 25px;
    line-height: 100%;
    color: #2f2f2f;
    font-family: "Inter-Medium";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 768px) {
    .btn {
        min-width: 180.53px;
        max-width: 180.53px;
        font-size: 16px;
    }
}
.btn.light-pink {
    background: var(--light-pink);
}
.btn.light-pink:hover,
.btn.light-pink:focus {
    background: #f679b3;
    -webkit-transition: 0.2s ease 0.2s;
    -o-transition: 0.2s ease 0.2s;
    transition: 0.2s ease 0.2s;
}
.btn.yellow {
    background: var(--yellow);
}
.btn.yellow:hover,
.btn.yellow:focus {
    background: #ffbf3f;
    -webkit-transition: 0.2s ease 0.2s;
    -o-transition: 0.2s ease 0.2s;
    transition: 0.2s ease 0.2s;
}
.btn.purple {
    background: var(--purple);
}
.btn.purple:hover,
.btn.purple:focus {
    background: #6c82e2;
    -webkit-transition: 0.2s ease 0.2s;
    -o-transition: 0.2s ease 0.2s;
    transition: 0.2s ease 0.2s;
}
.video .btn-play {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 97px;
    height: 95px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    z-index: 1;
}
.video .btn-play:hover,
.video .btn-play:focus {
    background: #ccc;
    -webkit-transition: 0.2s ease 0.2s;
    -o-transition: 0.2s ease 0.2s;
    transition: 0.2s ease 0.2s;
}
.video video,
.video iframe {
    width: 100%;
    height: 100%;
}
@media (max-width: 768px) {
    .video .btn-play {
        width: 68px;
        height: 66px;
    }
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
}
.modal .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 47.52px;
    height: 47.52px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}
@media (max-width: 768px) {
    .modal .btn-close {
        top: 10px;
        right: 10px;
        width: 37.48px;
        height: 37.48px;
    }
}
.modal .btn-close:hover,
.modal .btn-close:focus {
    opacity: 0.5;
    -webkit-transition: 0.2s ease 0.2s;
    -o-transition: 0.2s ease 0.2s;
    transition: 0.2s ease 0.2s;
}
.modal .btn-close img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.modal .backdrop {
    background-color: rgba(16, 16, 16, 0.29);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modal .backdrop ~ div {
    position: relative;
}
.modal .video {
    width: 50%;
    height: 500px;
    padding: 20px;
}
@media (max-width: 768px) {
    .modal .video {
        width: 100%;
    }
}
.modal .modal-bonus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 580px;
    border-radius: 54px;
    overflow: hidden;
    background-color: #fff;
    margin: 0 20px;
}
@media (max-width: 768px) {
    .modal .modal-bonus {
        height: 356px;
        border-radius: 29.57px;
    }
}
.modal .modal-bonus.card {
    max-width: 815.46px;
}
.modal .modal-bonus.no-card {
    max-width: 900px;
}
.modal .modal-bonus.no-card .modal-bonus__text {
    margin-top: 20px;
}
@media (max-width: 768px) {
    .modal .modal-bonus.no-card .modal-bonus__text {
        margin-top: 10px;
    }
}
.modal .modal-bonus__img {
    background-color: #fee4b3;
    position: relative;
    width: 45%;
}
.modal .modal-bonus__img .gift {
    width: 114.66px;
    height: 114.66px;
    top: 30px;
    right: -30px;
}
@media (max-width: 768px) {
    .modal .modal-bonus__img .gift {
        width: 67.09px;
        height: 67.09px;
        top: 15px;
        right: -25px;
    }
}
.modal .modal-bonus__img .coin {
    position: absolute;
}
.modal .modal-bonus__img .coin img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.modal .modal-bonus__img .coin.top {
    width: 103.86px;
    height: 101.39px;
    top: -17px;
    right: -40px;
}
@media (max-width: 768px) {
    .modal .modal-bonus__img .coin.top {
        width: 63.75px;
        height: 62.23px;
        right: -30px;
        top: -10px;
    }
}
.modal .modal-bonus__img .coin.bottom {
    width: 109.71px;
    height: 107.1px;
    bottom: 0;
    left: 70px;
}
@media (max-width: 768px) {
    .modal .modal-bonus__img .coin.bottom {
        width: 67.34px;
        height: 65.74px;
        bottom: 15px;
        left: -25px;
    }
}
.modal .modal-bonus__img .coin.mm {
    width: 53.91px;
    height: 52.62px;
    top: 100px;
    left: 15px;
}
.modal .modal-bonus__content {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.modal .modal-bonus__content .coin {
    width: 130.62px;
    height: 127.51px;
    position: absolute;
    bottom: 50px;
    right: -22px;
}
.modal .modal-bonus__content .coin img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.modal .modal-bonus__content .block-btn-arrow {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
}
@media (max-width: 480px) {
    .modal .modal-bonus__content .block-btn-arrow {
        bottom: 15px;
        right: 40px;
    }
}
.modal .modal-bonus__content .block-btn-arrow .btn.btn-yellow {
    font-size: 21.89px;
    height: 68.18px;
}
@media (max-width: 768px) {
    .modal .modal-bonus__content .block-btn-arrow .btn.btn-yellow {
        font-size: 15px;
        height: 45.85px;
    }
}
.modal .modal-bonus__content .block-btn-arrow .btn.btn-arrow {
    min-width: 64.25px;
    max-width: 64.25px;
    height: 64.25px;
}
@media (max-width: 768px) {
    .modal .modal-bonus__content .block-btn-arrow .btn.btn-arrow {
        min-width: 42.8px;
        max-width: 42.8px;
        height: 42.8px;
    }
}
.modal .modal-bonus__head {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
}
@media (max-width: 480px) {
    .modal .modal-bonus__head {
        top: 50px;
    }
}
.modal .modal-bonus__logo {
    width: 206.29px;
    height: 59.7px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .modal .modal-bonus__logo {
        width: 127.26px;
        height: 36.83px;
    }
}
.modal .modal-bonus__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.modal .modal-bonus__title {
    font-size: 8.97px;
    line-height: 130%;
    color: #d76d93;
    font-family: var(--font-accent);
    text-align: center;
}
@media (max-width: 768px) {
    .modal .modal-bonus__title {
        font-size: 5.53px;
    }
}
.modal .modal-bonus__subtitle {
    font-size: 30px;
    line-height: 130%;
    color: #ff88bf;
    font-family: var(--font-accent);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media (max-width: 768px) {
    .modal .modal-bonus__subtitle {
        font-size: 18.41px;
    }
}
@media (max-width: 480px) {
    .modal .modal-bonus__subtitle {
        font-size: 14px;
    }
}
.modal .modal-bonus__body {
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 20px;
}
.modal .modal-bonus__text {
    font-size: 26px;
    line-height: 130%;
    color: #2f2f2f;
    font-family: "Inter-Light";
}
@media (max-width: 768px) {
    .modal .modal-bonus__text {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .modal .modal-bonus__text {
        font-size: 14px;
    }
}
.modal .modal-bonus__count {
    font-size: 38.22px;
    line-height: 130%;
    color: #ff88bf;
    font-family: var(--font-accent);
    margin-top: 10px;
}
@media (max-width: 768px) {
    .modal .modal-bonus__count {
        font-size: 23px;
    }
}
@media (max-width: 480px) {
    .modal .modal-bonus__count {
        font-size: 18px;
    }
}
.modal .modal-bonus .tiki {
    width: 400.71px;
    height: 554.08px;
    position: absolute;
    bottom: 0;
    right: -50px;
}
.modal .modal-bonus .tiki img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 768px) {
    .modal .modal-bonus .tiki {
        width: 234px;
        height: 323.56px;
        right: -25px;
    }
}
@media (max-width: 480px) {
    .modal .modal-bonus .tiki {
        width: 150px;
        height: 250px;
        right: -25px;
        bottom: -21px;
    }
}
.modal .modal-bonus .viki {
    width: 509px;
    height: 560px;
    position: absolute;
    bottom: 0;
    right: -70px;
    z-index: 1;
}
.modal .modal-bonus .viki img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 768px) {
    .modal .modal-bonus .viki {
        width: 298.13px;
        height: 328px;
        right: -65px;
    }
}
@media (max-width: 480px) {
    .modal .modal-bonus .viki {
        width: 200px;
        height: 230px;
        right: -45px;
    }
}
.modal .modal-bonus .gift {
    position: absolute;
}
.modal .modal-bonus .gift.right {
    width: 130.8px;
    height: 130.8px;
    right: -25px;
    bottom: 100px;
}
@media (max-width: 768px) {
    .modal .modal-bonus .gift.right {
        width: 75.12px;
        height: 75.12px;
        right: -25px;
        bottom: 100px;
    }
}
@media (max-width: 480px) {
    .modal .modal-bonus .gift.right {
        bottom: 50px;
    }
}
.modal .modal-bonus .gift.bottom {
    width: 144.56px;
    height: 144.56px;
    bottom: -50px;
    left: -40px;
}
@media (max-width: 768px) {
    .modal .modal-bonus .gift.bottom {
        width: 80.32px;
        height: 80.32px;
        bottom: 0;
        left: -20px;
    }
}
.modal .modal-bonus .gift img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.modal .modal-stock {
    width: 100%;
    max-width: 624px;
    height: auto;
    border-radius: 50px;
    overflow: hidden;
    background-color: #fff;
}
@media (max-width: 768px) {
    .modal .modal-stock {
        border-radius: 38.46px;
        margin: 0 20px;
    }
}
.modal .modal-stock .btn-close {
    top: 15px;
    right: 15px;
    width: 42.97px;
    height: 42.97px;
}
@media (max-width: 768px) {
    .modal .modal-stock .btn-close {
        width: 42.21px;
        height: 42.21px;
    }
}
.modal .modal-stock .body {
    padding: 75px 20px 50px;
    overflow-x: hidden;
    height: fit-content;
    max-height: 600px;
}
.modal .modal-stock .body .head-title {
    font-family: var(--font-accent);
    font-size: 26px;
    line-height: 130%;
    color: var(--purple);
    text-align: center;
}
@media (max-width: 768px) {
    .modal .modal-stock .body .head-title {
        font-size: 21px;
    }
}
.modal .modal-stock .body .text {
    font-family: "Inter-Light";
    font-size: 21px;
    line-height: 130%;
    color: #2f2f2f;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .modal .modal-stock .body .text {
        font-size: 16.15px;
    }
}
.modal .modal-stock .body .text strong {
    font-family: "Inter-Medium";
}
.modal .modal-stock .body .text a {
    color: var(--purple);
    display: inline-block;
}
.modal .modal-stock .body .text a:hover,
.modal .modal-stock .body .text a:focus {
    text-decoration: underline;
    -webkit-transition: 0.2s ease 0.2s;
    -o-transition: 0.2s ease 0.2s;
    transition: 0.2s ease 0.2s;
}
.modal .modal-event {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    font-family: "Inter-Light";
    font-size: 16px;
    line-height: 100%;
    padding: 50px 20px 30px;
}
.modal .modal-event .body .strokes {
    display: flex;
    flex-wrap: wrap;
}
.modal .modal-event .body .strokes .stroke {
    margin-top: 2rem;
    font-size: 18px;
    flex: 0 0 50%;
}
.modal .modal-event .body .strokes .stroke span {
    font-family: "Inter-Bold";
}
.modal .modal-event .body .head-title {
    font-size: 20px;
    font-family: "Inter-Bold";
    line-height: 30px;
    padding-right: 50px;
}
.modal .modal-event .body .text {
    line-height: 20px;
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .modal .modal-event .body .strokes .stroke {
        flex: 1 1 auto;
        width: 100%;
    }
}
.modal#haveCard, 
.modal#noCard {
    z-index: 99;
}
.modal#haveCard .backdrop, 
.modal#noCard .backdrop {
    pointer-events: none;
}
.modal #btnContinue {
    position: absolute;
    bottom: 50px;
    right: 0;
    left: 0;
    z-index: 1;
    margin: auto;
}
@media (max-width: 768px) {
    .modal #btnContinue {
        min-width: fit-content;
        max-width: fit-content;
        padding: 0 20px;
    }
}
.bgc-yellow {
    background-color: var(--yellow);
}
.bgc-purple {
    background-color: var(--purple);
}
.bgc-lightPink {
    background-color: var(--light-pink);
}
.bgc-darkCyan {
    background-color: var(--dark-cyan);
}
.bg-lines {
    position: relative;
}
.bg-lines::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/lines.webp");
    background-repeat: no-repeat;
    background-size: cover;
    filter: opacity(0.5);
}
.text-style {
    position: relative;
    display: inline-flex;
    width: fit-content;
    height: auto;
    border-radius: 16.99px;
    transform: rotate(-3.42deg);
}
.text-style span {
    transform: rotate(3.42deg);
    padding: 2px;
    font-family: var(--font-main);
    font-size: 25px;
    line-height: 130%;
    color: #2f2f2f;
}
@media (max-width: 768px) {
    .text-style span {
        font-size: 16px;
    }
}
.opacity {
    opacity: 0;
}
.opacity.anim {
    opacity: 1 !important;
    transition: opacity 0.5s ease;
}
._left {
    position: relative;
    left: -100%;
    opacity: 0;
}
._left.anim {
    left: 0 !important;
    opacity: 1 !important;
    transition: left 0.5s ease, opacity 0.5s ease;
}
._right {
    position: relative;
    right: -100%;
    opacity: 0;
}
._right.anim {
    right: 0 !important;
    opacity: 1 !important;
    transition: right 0.5s ease, opacity 0.5s ease;
}
._top {
    position: relative;
    top: -10vh;
    opacity: 0;
}
._top.anim {
    top: 0 !important;
    opacity: 1 !important;
    transition: top 0.5s ease, opacity 0.5s ease;
}
._bottom {
    position: relative;
    bottom: -10vh;
    opacity: 0;
}
._bottom.anim {
    bottom: 0 !important;
    opacity: 1 !important;
    transition: bottom 0.5s ease, opacity 0.5s ease;
}
._rotate {
    opacity: 0;
    transform: rotate(360deg);
}
._rotate.anim {
    animation: animRotate 0.5s forwards 0.5s;
}
@keyframes animRotate {
    0% {
        transform: rotate(360deg);
        opacity: 0;
    }
    100% {
        transform: rotate(0);
        opacity: 1;
    }
}
.error-text {
    color: red;
}
span[disabled] {
    background: #ccc !important;
    pointer-events: none;
}
._dn {
    display: none !important;
}
._headerFixed {
    position: fixed;
    z-index: 99;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
}
.dropdown-menu {
    position: absolute;
    z-index: 10;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    padding-top: 5px;
}
.dropdown-menu .menu-item {
    margin-top: 0 !important;
}
.dropdown-menu .menu-item .menu-link {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    display: block;
    margin-top: 5px;
}
.dropdown-menu .menu-item .menu-link:hover,
.dropdown-menu .menu-item .menu-link:focus {
    background: #343434;
    color: #fff;
    -webkit-transition: 0.2s ease 0.2s;
    -o-transition: 0.2s ease 0.2s;
    transition: 0.2s ease 0.2s;
}
.dropdown-menu .menu-item .menu-link::before {
    display: none;
}
._dropdown {
    visibility: visible !important;
    animation: animDropdown 0.5s ease-out forwards 0.5s;
}
@keyframes animDropdown {
    0% {
        height: 0;
    }
    25% {
        height: 25%;
    }
    50% {
        height: 50%;
    }
    75% {
        height: 75%;
    }
    100% {
        height: 100%;
    }
}
.popup {
    background: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
    -webkit-overflow-scrolling: touch;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup__inner {
    width: 100%;
    max-width: 750px;
    height: auto;
    background: #fbfbfb;
    position: relative;
}
.popup__body {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 1rem;
}
.popup__close {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}
.popup__close span {
    margin: 1rem 1rem 0 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
}
.popup__close span:hover {
    filter: invert(0.5);
    transition: filter 0.2s ease 0.2s;
}
.popup__close span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.popup__title h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
}
.popup__subtitle {
    margin-top: 1.5rem;
}
.popup__subtitle p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}
.popup__block-form {
    text-align: center;
    margin-top: 2rem;
}
.popup__form {
    display: flex;
}
.popup__input {
    background: #f3f4f6;
    height: 50px;
    flex: 1 1 auto;
}
.popup__input input {
    width: 100%;
    height: 100%;
    background: inherit;
    padding: 0 1rem;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    color: rgba(8, 12, 44, 0.4);
}
.popup__btn {
    background: rgba(8, 12, 44, 0.2);
    width: 40px;
    height: 50px;
}
.popup__btn:hover,
.popup__btn:focus {
    background: rgba(8, 12, 44, 0.1);
    transition: 0.2s ease 0.2s;
}
.popup__agree {
    margin-top: 2rem;
}
.popup__agree p {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}
.popup__agree a {
    color: inherit;
    text-decoration: underline;
}
.popup__agree a:hover,
.popup__agree a:focus {
    text-decoration: none;
    transition: 0.2s ease 0.2s;
}
.block-attractions .bg-img {
    background-image: url("../img/attractions/bg.avif");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 33px;
    overflow: hidden;
    padding: 35px 45px 45px;
}
@media (max-width: 768px) {
    .block-attractions .bg-img {
        background-image: url("../img/attractions/bg-mobile.avif");
        padding: 20px;
    }
}
.block-attractions .head-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 992px) {
    .block-attractions .head-title {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.block-attractions .head-title .title {
    font-size: 67.75px;
    text-align: left;
}
@media (max-width: 992px) {
    .block-attractions .head-title .title {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .block-attractions .head-title .title {
        font-size: 26px;
    }
}
.block-attractions .mark {
    font-size: 20px;
    line-height: 130%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.block-attractions .mark svg {
    margin-right: 5px;
}
.block-attractions .mark p {
    text-align: center;
}
.block-attractions .mark p span {
    color: var(--yellow);
    font-family: "Inter-Bold";
}
@media (max-width: 768px) {
    .block-attractions .mark {
        width: 50%;
        font-size: 11px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}
.block-attractions .head-subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 31px;
    line-height: 130%;
    color: #2f2f2f;
}
@media (max-width: 992px) {
    .block-attractions .head-subtitle {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    .block-attractions .head-subtitle {
        font-size: 18px;
    }
}
.block-attractions .head-subtitle .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.block-attractions .head-subtitle .flex span {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.block-attractions .head-subtitle .text-bg {
    padding: 0 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.block-attractions .head-subtitle .text-bg span {
    font-size: 30px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
@media (max-width: 768px) {
    .block-attractions .head-subtitle .text-bg span {
        font-size: 18px;
    }
}
.block-attractions .block-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -80px;
}
@media (max-width: 768px) {
    .block-attractions .block-flex {
        margin-top: 1rem;
    }
}
.block-attractions .block-flex .block-video {
    width: 25%;
    padding: 10% 0 0;
}
@media (max-width: 768px) {
    .block-attractions .block-flex .block-video {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        padding: 0;
    }
}
.block-attractions .block-flex .block-video .video {
    position: relative;
    margin-bottom: 20px;
    margin-right: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 300px;
    border-radius: 35.17px;
    overflow: hidden;
}
@media (max-width: 992px) {
    .block-attractions .block-flex .block-video .video {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        height: auto;
        margin: 20px 0;
    }
}
@media (max-width: 768px) {
    .block-attractions .block-flex .block-video .video {
        width: 50%;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }
}
.block-attractions .block-flex .block-video .video .body-video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .block-attractions .block-flex .block-video .video .body-video {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        position: relative;
    }
}
.block-attractions .block-flex .block-video .video .body-video .btn-overview {
    background: none;
    width: 92.54px;
    height: 92.54px;
    position: relative;
    margin: 0;
}
@media (max-width: 768px) {
    .block-attractions .block-flex .block-video .video .body-video .btn-overview {
        width: 51.73px;
        height: 51.73px;
    }
}
.block-attractions .block-flex .block-video .video .body-video .btn-overview img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.block-attractions .block-flex .block-video .video .body-video .name-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
}
.block-attractions .block-flex .block-video .video .body-video .name-video .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.block-attractions .block-flex .block-video .video .body-video .name-video span {
    font-size: 19px;
    line-height: 130%;
}
@media (max-width: 768px) {
    .block-attractions .block-flex .block-video .video .body-video .name-video span {
        font-size: 13.17px;
    }
    .block-attractions .block-flex .block-video .video .body-video .name-video .flex {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.block-attractions .block-flex .block-video .video .body-video .name-video .text-bg span {
    font-size: 14.7px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
@media (max-width: 768px) {
    .block-attractions .block-flex .block-video .video .body-video .name-video .text-bg span {
        font-size: 9.81px;
    }
}
.block-attractions .block-flex .block-animations {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100% !important;
    justify-content: space-between;
}
.block-attractions .block-flex .block-animations .hero:not(:last-child) {
    margin-right: 20px;
}
.block-attractions .block-flex .block-animations .hero.tiki .img {
    bottom: 30px;
    left: -10px;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .block-attractions .block-flex .block-animations .hero.tiki .img {
        bottom: 15px;
        -webkit-transform: scale(1.25);
        -ms-transform: scale(1.25);
        transform: scale(1.25);
    }
}
.block-attractions .block-flex .block-animations .hero.viki .img {
    bottom: 16px;
    -webkit-transform: scale(1.135);
    -ms-transform: scale(1.135);
    transform: scale(1.135);
    z-index: 1;
}
@media (max-width: 768px) {
    .block-attractions .block-flex .block-animations .hero.viki .img {
        bottom: 0;
        -webkit-transform: scale(1.35);
        -ms-transform: scale(1.35);
        transform: scale(1.35);
    }
}
.block-attractions .block-flex .block-animations .hero.spaco .img {
    bottom: 60px;
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
}
@media (max-width: 768px) {
    .block-attractions .block-flex .block-animations .hero.spaco .img {
        bottom: 20px;
        -webkit-transform: scale(1.25);
        -ms-transform: scale(1.25);
        transform: scale(1.25);
    }
}
.block-attractions .block-flex .block-animations .hero:hover .bg,
.block-attractions .block-flex .block-animations .hero:focus .bg {
    border-radius: 35.17px 35.17px 0 0;
}
.block-attractions .block-flex .block-animations .hero:hover .bg::before,
.block-attractions .block-flex .block-animations .hero:focus .bg::before {
    -webkit-animation: showBgGrad 0.2s forwards 0.2s;
    animation: showBgGrad 0.2s forwards 0.2s;
}
@-webkit-keyframes showBgGrad {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes showBgGrad {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@media (max-width: 768px) {
    .block-attractions .block-flex .block-animations .hero:hover .bg,
    .block-attractions .block-flex .block-animations .hero:focus .bg {
        border-radius: 21.77px 21.77px 0 0;
    }
}
.block-attractions .block-flex .block-animations .hero:hover .name,
.block-attractions .block-flex .block-animations .hero:focus .name {
    -webkit-animation: showName 0.2s forwards 0.2s;
    animation: showName 0.2s forwards 0.2s;
}
@-webkit-keyframes showName {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes showName {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.block-attractions .block-flex .block-animations .hero .bg {
    background-color: #fff;
    border-radius: 35.17px;
    width: 312px;
    height: 300px;
    position: relative;
}
.block-attractions .block-flex .block-animations .hero .bg::before {
    content: "";
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(rgb(148, 159, 209)),
        color-stop(50%, rgb(245, 176, 208))
    );
    background: -o-linear-gradient(bottom, rgb(148, 159, 209) 0%, rgb(245, 176, 208) 50%);
    background: linear-gradient(0deg, rgb(148, 159, 209) 0%, rgb(245, 176, 208) 50%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    border-radius: inherit;
}
@media (max-width: 768px) {
    .block-attractions .block-flex .block-animations .hero .bg {
        width: 100%;
        border-radius: 21.77px;
    }
    .block-attractions .block-flex .block-animations .hero {
        flex: 0 0 50%;
    }
    .block-attractions .block-flex .block-animations {
        margin-left: 0;
        padding: 50px 20px 0;
    }
}
@media (max-width: 480px) {
    .block-attractions .block-flex .block-animations .hero .bg {
        height: 100px;
        position: relative;
    }
    .block-attractions .block-flex .block-animations .hero .bg .img {
        position: absolute !important;
        bottom: 1rem;
        transform: scale(1.5);
    }
    .block-attractions .block-buttons {
        margin-top: -1rem;
    }
    .block-attractions .bg-img .block-buttons .btn {
        min-width: 100%;
        max-width: 100%;
        height: 45px;
    }
    .block-attractions .bg-img .block-buttons .btn.light-pink {
        padding: 0 12px;
    }
}
.block-attractions .block-flex .block-animations .hero .bg .img {
    position: relative;
    width: 100%;
    height: 100%;
}
.block-attractions .block-flex .block-animations .hero .bg .img img,
.block-attractions .block-flex .block-animations .hero .bg .img video {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}
.block-attractions .block-flex .block-animations .hero .bg .img video {
    visibility: hidden;
    opacity: 0;
}
.block-attractions .block-flex .block-animations .hero .name {
    font-size: 27.49px;
    line-height: 130%;
    color: #343434;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border-radius: 0 0 35.17px 35.17px;
    width: inherit;
    height: 62px;
    opacity: 0;
}
@media (max-width: 768px) {
    .block-attractions .block-flex .block-animations .hero .name {
        height: 38.38px;
        font-size: 15.89px;
        border-radius: 0 0 21.77px 21.77px;
    }
}
.block-attractions .block-flex .block-animations .hero .name span {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--light-pink);
    display: block;
    margin-right: 10px;
}
@media (max-width: 768px) {
    .block-attractions .block-flex .block-animations .hero .name span {
        width: 15.48px;
        height: 15.48px;
    }
}
.block-attractions .block-slider {
    padding: 10% 0 0;
    width: 75%;
}
@media (max-width: 992px) {
    .block-attractions .block-slider {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .block-attractions .block-slider {
        padding: 21% 0 0;
        margin-right: 0;
        padding: 0 0 0 50px;
        overflow-y: hidden;
    }
}
@media (max-width: 480px) {
    .block-attractions .block-slider {
        padding: 0;
    }
}
.block-attractions .block-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .block-attractions .block-buttons {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.block-attractions .block-buttons .block-btn-arrow .btn-arrow {
    min-width: 65px;
    max-width: 65px;
    height: 65px;
}
@media (max-width: 768px) {
    .block-attractions .block-buttons .block-btn-arrow .btn-arrow {
        min-width: 44.03px;
        max-width: 44.03px;
        height: 44.03px;
    }
}
.block-attractions .block-buttons a {
    margin: 20px 20px 0;
}
@media (max-width: 768px) {
    .block-attractions .block-buttons a {
        margin: 10px 5px 0;
    }
}
.block-attractions .swiper {
    overflow: unset;
}
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
/* выравнивание Спако под Вики на мобиле */
@media (max-width: 768px) {
    .block-attractions .block-flex .block-animations .hero.spaco .img {
        -webkit-transform: scale(1.75);
        -ms-transform: scale(1.75);
        transform: scale(1.75);
    }
    .block-attractions .block-flex .block-animations .hero.spaco img {
        -webkit-transform: none;
        transform: none;
    }   
}