@font-face {
    font-family: fontName;
    src: url(../fonts/fontURL.eot);
    src: url(../fonts/fontURL.eot#iefix) format("embedded-opentype"), url(../fonts/fontURL.woff) format("woff"), url(../fonts/fontURL.ttf) format("truetype");
    font-style: normal;
    font-display: swap
}

:root {
    --icon_size: 24px;
    --h1: clamp(40px, 5.33vw, 80px);
    --h2: clamp(28px, 4vw, 60px);
    --h3: clamp(24px, 3.2vw, 48px);
    --h4: clamp(20px, 2.67vw, 40px);
    --h5: 22px;
    --h6: 18px;
    --body: 20px;
    --family: 'Manrope', sans-serif;
    --color: var(--black);
    --bg: var(--white);
    --white: #fff;
    --black: #000;
    --primary: #7757BD;
    --black-light: #141417;
    --gray: #615E5E;
    --gray-light: #707075;
    --red: #DE1C22;
    --btn_height: 72px;
    --btn_inner: 28px;
    --btn_color: var(--white);
    --btn_font: 1.1em;
    --btn_bg: var(--primary);
    --btn_bd_size: 2px;
    --btn_bd_color: var(--primary);
    --btn__lh: 0px;
    --section_gap: 200px;
    --bone: 24px;
    --bone_w: 1680px;
    --bone_size: max((100vw - var(--bone_w) - var(--scroll)) / 2, var(--bone));
    --grid_2: 2;
    --grid_3: 3;
    --grid_4: 4
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--color)
}

html {
    display: block
}

body {
    margin: 0;
    padding: 0;
    color: var(--color);
    font-size: var(--body);
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    font-family: var(--family);
    background-color: var(--bg)
}

img, svg {
    display: block;
    width: 100%;
    height: auto
}

a {
    text-decoration: none
}

li {
    list-style-type: none
}

button, input, textarea {
    display: block;
    font-family: var(--family);
    background-color: transparent;
    border: 0 none;
    box-shadow: none;
    appearance: none;
    outline: 0;
    resize: none
}

input::placeholder, textarea::placeholder {
    color: var(--color);
    font-family: var(--family)
}

html.hidden {
    overflow: hidden
}

.bone {
    width: 100%;
    max-width: calc(var(--bone_w) + var(--bone) * 2);
    margin: 0 auto;
    padding: 0 var(--bone)
}

._h1 {
    font-size: var(--h1);
    font-weight: 800;
    line-height: 1.25
}

._h2 {
    font-size: var(--h2);
    font-weight: 800;
    line-height: 1.25
}

._h3 {
    font-size: var(--h3);
    font-weight: 800;
    line-height: 1.25
}

._h4 {
    font-size: var(--h4);
    font-weight: 800;
    line-height: 1.25
}

section:not(:first-child) {
    margin-top: var(--section_gap)
}

section + .marquee {
    margin-top: var(--section_gap)
}

[class*=__grid] {
    display: grid;
    grid-gap: var(--inner_g)
}

.__grid-twoo {
    grid-template-columns:repeat(var(--grid_2), 1fr)
}

.__grid-three {
    grid-template-columns:repeat(var(--grid_3), 1fr)
}

.__grid-four {
    grid-template-columns:repeat(var(--grid_4), 1fr)
}

[class*=__flex] {
    display: flex
}

.__flex-align {
    align-items: center
}

.__flex-start {
    align-items: flex-start;
    justify-content: space-between
}

.__flex-end {
    align-items: flex-end;
    justify-content: space-between
}

.__flex-center {
    align-items: center;
    justify-content: space-between
}

[class*=__icon-] {
    position: relative
}

[class*=__icon-]:before {
    content: '';
    position: absolute;
    top: calc(50% - var(--icon_size) / 2);
    width: var(--icon_size);
    height: var(--icon_size);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.__btn {
    --color: var(--btn_color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: min(var(--btn_w), 100%);
    height: var(--btn_height);
    padding: 0 var(--btn_inner);
    font-size: var(--btn_font);
    text-align: center;
    font-weight: 700;
    border: var(--btn_bd_size) solid var(--btn_bd_color);
    background-color: var(--btn_bg);
    border-radius: 40px;
    cursor: pointer;
    transition: background-color .43s, color .43s
}

.slick-slider {
    --inner_slider-x: 0px;
    --inner_slider-y: 0px;
    --inner_slider-shadow: 0px;
    --arrow-size: 56px;
    --arrow-icon_size: 24px;
    --arrow-ind: 0;
    --dot-size: 12px;
    position: relative
}

.slick-slider._all {
    overflow: hidden;
    margin: 0 calc(var(--bone_size) * -1)
}

.slick-slider._all .slick-list {
    padding: 0 var(--bone_size)
}

.slick-list {
    overflow: hidden;
    position: relative;
    height: 100%;
    margin: min(var(--inner_slider-y) * -1, var(--inner_slider-shadow) * -1) min(var(--inner_slider-x) / -2, var(--inner_slider-shadow) * -1);
    padding: 0 max(var(--inner_slider-shadow) - var(--inner_slider-x) / 2, 0)
}

.slick-track {
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    height: 100%
}

.slick-slide {
    outline: 0 !important;
    margin: var(--inner_slider-y) calc(var(--inner_slider-x) / 2)
}

.slick-dots {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    grid-gap: 12px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999
}

.slick-dots button {
    display: block;
    width: var(--dot-size);
    height: var(--dot-size);
    font-size: 0;
    border: 1px solid green;
    border-radius: 50%;
    cursor: pointer;
    transition: box-shadow .43s
}

.slick-dots button:hover {
    box-shadow: inset 0 0 0 var(--dot-size) green
}

.slick-dots .slick-active button {
    box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 var(--dot-size) green
}

.slick-arrow {
    position: relative;
    width: var(--arrow-size);
    height: var(--arrow-size);
    font-size: 0;
    border: 1px solid #eaecf0;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    transition: transform .43s
}

.slick-arrow:before {
    content: '';
    position: absolute;
    top: calc(50% - var(--arrow-icon_size) / 2);
    left: calc(50% - var(--arrow-icon_size) / 2);
    width: var(--arrow-icon_size);
    height: var(--arrow-icon_size);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 12.5H5M5 12.5L12 19.5M5 12.5L12 5.5' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.slick-arrow.slick-next {
    left: auto;
    right: var(--arrow-ind)
}

.slick-arrow.slick-next:before {
    transform: rotate(200grad)
}

.slick-arrow:not(.slick-disabled):hover {
    transform: scale(1.2)
}

._select {
    --selcet_arrow_size: 24px;
    --selcet_arrow_inner: 4px;
    --selcet_options_height: 180px;
    --selcet_inner_l: 14px;
    --selcet_inner_r: calc(var(--selcet_arrow_size) + var(--selcet_arrow_inner) + 8px);
    --select_height: 64px;
    --selcet_bg: var(--white);
    --select_bd: #CBCCDA;
    --select_bdrs: 8px;
    --selcet_shadow: none;
    position: relative;
    height: var(--select_height)
}

._select._outline {
    --selcet_bg: var(--white)
}

._select._outline .current.active, ._select._outline .select_dropdown.active {
    border-color: var(--black)
}

._select._inactive .current, ._select._inactive select {
    cursor: no-drop;
    opacity: .3
}

._select .current.error{
    border-color: var(--red);
}

._select .current, ._select select {
    position: relative;
    display: block;
    width: 100%;
    height: var(--select_height);
    padding: 0 var(--selcet_inner_r) 0 var(--selcet_inner_l);
    color: #000;
    font-family: var(--family);
    font-size: var(--body);
    font-weight: 400;
    line-height: var(--select_height);
    background-color: var(--selcet_bg);
    border: 1px solid var(--select_bd);
    border-radius: var(--select_bdrs);
    box-shadow: var(--selcet_shadow);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .43s, color .43s
}

._select .current.placeholder {
    color: #a6a4b4
}

._select .current:not(.active):hover, ._select select:hover {
    border-color: #000
}

._select .current:before {
    content: '';
    position: absolute;
    top: 50%;
    right: var(--selcet_arrow_inner);
    width: var(--selcet_arrow_size);
    height: var(--selcet_arrow_size);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translate3d(0, -50%, 0);
    transition: transform .43s;
    z-index: 1
}

._select .current.active:before {
    transform: rotate(-200grad) translate3d(0, 50%, 0)
}

.select_dropdown {
    overflow: hidden;
    position: relative;
    left: 0;
    right: 0;
    margin-top: 4px;
    font-size: var(--body);
    background-color: var(--selcet_bg);
    border: 1px solid var(--select_bd);
    border-radius: var(--select_bdrs);
    z-index: 10;
    transition: opacity .43s, margin .43s, border .43s
}

.select_dropdown:not(.active) {
    pointer-events: none;
    margin-top: 12px;
    opacity: 0
}

.select_dropdown ul {
    overflow-y: scroll;
    margin-right: -40px;
    padding-right: calc(40px - var(--scroll));
    max-height: var(--selcet_options_height)
}

.select_dropdown li {
    overflow: hidden;
    padding: 6px var(--selcet_inner_r) 6px var(--selcet_inner_l);
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: background-color .23s, color .23s
}

.select_dropdown li.disabled {
    opacity: .4;
    cursor: no-drop
}

.select_dropdown li.focus:not(.disabled) {
    color: var(--primary);
    cursor: pointer
}

._selectselect.error {
    --select_bd: var(--red)
}

._selectselect.error select {
    --color: var(--red)
}

._input {
    display: block;
    position: relative
}

input:not([type=checkbox],[type=radio],[type=submit],[type=range]), textarea {
    width: 100%;
    min-height: 64px;
    padding: 0 14px;
    font-size: var(--body);
    text-overflow: ellipsis;
    border: 1px solid #cbccda;
    border-radius: 8px;
    transition: border-color .43s, color .43s
}

textarea {
    height: 120px;
    padding-top: 16px
}

input:not([type=checkbox],[type=radio],[type=submit],[type=range])::placeholder, textarea::placeholder {
    color: #a6a4b4;
    text-overflow: ellipsis
}

input:not([type=checkbox],[type=radio],[type=submit],[type=range]):focus, input:not([type=checkbox],[type=radio],[type=submit],[type=range]):hover, textarea:focus, textarea:hover {
    border-color: var(--black)
}

input::-webkit-inner-spin-button, input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

.__input_hidden {
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 none !important;
    opacity: 0;
    z-index: -1
}

.sale {
    display: inline-flex;
    align-items: center;
    grid-gap: 5px;
    height: calc(2.17 * var(--h4));
    padding: 0 calc(.6 * var(--h4));
    font-weight: 800;
    background-color: #e3ff3c;
    border-radius: 50px
}

.sale span {
    font-size: var(--h4)
}

.price {
    display: flex;
    align-items: center;
    grid-gap: 16px
}

.price del {
    --color: #656565;
    font-size: 1em;
    font-weight: 700
}

.price ins {
    --color: var(--red);
    font-size: 2em;
    font-weight: 800;
    text-decoration: none
}

.remain {
    --color: var(--gray);
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-weight: 600
}

.remain span {
    --size: 42px;
    --color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--size);
    height: var(--size);
    font-size: 1.4em;
    font-weight: 800;
    border-radius: 6px;
    background-color: var(--red)
}

.user {
    display: flex;
    align-items: center;
    grid-gap: 16px
}

.user_ava img {
    --size: 56px;
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
    object-fit: cover;
    object-position: center;
    border-radius: 50%
}

.user_name {
    color: #101828;
    font-size: 1.1em;
    font-weight: 600
}

.star {
    --inner: calc(var(--gap) / 2);
    display: flex;
    align-items: center;
    margin: 0 calc(var(--inner) * -1)
}

.star li {
    position: relative;
    width: calc(var(--size) + var(--inner) * 2);
    height: var(--size)
}

.star li:before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--inner);
    right: var(--inner);
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.53834 1.10996C8.70914 0.699318 9.29086 0.699318 9.46166 1.10996L11.5278 6.07744C11.5998 6.25056 11.7626 6.36885 11.9495 6.38383L17.3123 6.81376C17.7556 6.8493 17.9354 7.40256 17.5976 7.69189L13.5117 11.1919C13.3693 11.3139 13.3071 11.5053 13.3506 11.6876L14.5989 16.9208C14.7021 17.3534 14.2315 17.6954 13.8519 17.4635L9.26063 14.6592C9.10062 14.5615 8.89938 14.5615 8.73937 14.6592L4.14806 17.4635C3.76851 17.6954 3.29788 17.3534 3.40108 16.9208L4.64939 11.6876C4.69289 11.5053 4.6307 11.3139 4.48831 11.1919L0.402413 7.69189C0.0646445 7.40256 0.244408 6.8493 0.687735 6.81376L6.05054 6.38383C6.23744 6.36885 6.40024 6.25056 6.47225 6.07744L8.53834 1.10996Z' fill='%23707075'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: background-image .43s
}

.star li.active:before {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.53834 1.10996C8.70914 0.699318 9.29086 0.699318 9.46166 1.10996L11.5278 6.07744C11.5998 6.25056 11.7626 6.36885 11.9495 6.38383L17.3123 6.81376C17.7556 6.8493 17.9354 7.40256 17.5976 7.69189L13.5117 11.1919C13.3693 11.3139 13.3071 11.5053 13.3506 11.6876L14.5989 16.9208C14.7021 17.3534 14.2315 17.6954 13.8519 17.4635L9.26063 14.6592C9.10062 14.5615 8.89938 14.5615 8.73937 14.6592L4.14806 17.4635C3.76851 17.6954 3.29788 17.3534 3.40108 16.9208L4.64939 11.6876C4.69289 11.5053 4.6307 11.3139 4.48831 11.1919L0.402413 7.69189C0.0646445 7.40256 0.244408 6.8493 0.687735 6.81376L6.05054 6.38383C6.23744 6.36885 6.40024 6.25056 6.47225 6.07744L8.53834 1.10996Z' fill='%23FEC84B'/%3E%3C/svg%3E%0A")
}

.top {
    max-width: 1856px;
    margin: 32px auto 0;
    padding: 72px 0;
    background-color: #eceff9;
    border-radius: 20px
}

.top_net {
    grid-gap: 20px;
    flex-wrap: wrap
}

.top_description {
    max-width: 15.6em;
    font-size: max(var(--h4), 24px);
    font-weight: 600;
    line-height: 1.25
}

.top_logo {
    max-width: 296px
}

.top_info {
    grid-gap: 24px;
    margin-top: 96px
}

.top_info li {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 416px;
    padding-top: 16px;
    border-top: 1px solid #000
}

.top_info a {
    --color: var(--primary);
    font-size: 1.2em;
    font-weight: 600
}

.top_info span {
    --color: var(--gray-light);
    display: block;
    margin-top: 4px;
    font-size: max(.8em, 14px)
}

.top_info img {
    --size: 48px;
    width: var(--size);
    height: var(--size);
    object-fit: contain;
    object-position: center
}

.header_net {
    flex-wrap: wrap;
    grid-gap: 56px;
    min-height: 120px;
    padding: 32px 0
}

.header_logo {
    max-width: 192px
}

.header_right {
    grid-gap: 64px
}

.header_right a {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2em
}

.header_right p {
    margin-top: 4px;
    color: var(--gray-light);
    font-size: max(14px, .8em)
}

.marquee {
    --color: var(--white);
    --gap: 48px;
    position: relative;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    height: 4.7em;
    min-height: 4.7em;
    background-color: var(--primary);
    z-index: 2
}

.marquee_line {
    display: flex;
    align-items: center;
    grid-gap: var(--gap);
    white-space: nowrap;
    padding: 0 calc(var(--gap) / 2);
    animation: marquee 60s linear infinite
}

.marquee_line p {
    position: relative;
    padding-left: 1.9em;
    font-weight: 700;
    line-height: 2rem
}

.marquee_line p:before {
    --size: 1.3em;
    content: '';
    position: absolute;
    top: calc(50% - var(--size) / 2);
    left: 0;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: var(--color)
}

.marquee_line span {
    font-size: 1.2em
}

@keyframes marquee {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        transform: translate3d(-100%, 0, 0)
    }
}

main:has(.cards) + .footer {
    margin-top: 0
}

.footer {
    max-width: 1856px;
    margin: var(--section_gap) auto var(--bone);
    padding: 72px 0;
    background-color: #eceff9;
    border-radius: 20px
}

.footer_title {
    font-size: max(1.8em, 24px);
    font-weight: 600
}

.footer_info {
    flex-wrap: wrap;
    grid-gap: 60px 40px;
    margin-top: 80px
}

.footer_info li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 32px;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.1
}

.footer_info p:first-child {
    --color: #070928;
    opacity: .54
}

.footer_bottom {
    flex-wrap: wrap;
    grid-gap: 40px 60px;
    margin-top: 56px;
    padding-top: 52px;
    border-top: 1px solid #000
}

.footer_nav ul {
    --color: var(--primary);
    display: flex;
    grid-gap: 88px;
    flex-wrap: wrap;
    font-size: 20px;
    font-weight: 700;
    text-decoration-line: underline
}

.footer_logo {
    width: 346px
}

.footer_logo img {
    max-width: 296px
}

.cards {
    --bone_w: 1856px;
    margin: 96px 0
}

.card_net {
    --items_line: 5;
    display: grid;
    grid-template-columns:repeat(var(--items_line), 1fr);
    grid-gap: 40px 24px
}

.card {
    padding: 16px 16px 0;
    background-color: #eceff9;
    border-radius: 10px
}

.card_img {
    display: block;
    position: relative
}

.card_img:after {
    content: '';
    display: block;
    padding-bottom: 96%
}

.card_img img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px
}

.card_info {
    margin: 0 -16px;
    padding: 16px 16px 20px;
    background-color: var(--white)
}

.card_name {
    font-size: min(20px, 5vw);
    font-weight: 600
}

.card_bottom {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    margin-top: 8px;
    font-size: min(16px, 4vw)
}

.card_price .price ins {
    font-size: 1.25em
}

.card_sale {
    --color: var(--primary);
    display: flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(119, 87, 189, .16);
    border-radius: 14px
}

.master_net {
    align-items: center;
    grid-gap: 40px;
    padding: 32px 0
}

.master_title {
    --color: var(--primary)
}

.master_title:not(:first-child) {
    margin-top: 4px
}

.master_price {
    margin-top: 32px;
    font-size: 20px
}

.master_description {
    --color: var(--gray);
    max-width: 638px;
    margin-top: 16px
}

.master_bottom {
    flex-wrap: wrap;
    grid-gap: 16px;
    margin-top: 80px;
    max-width: 680px
}

.master_img {
    position: relative;
    max-width: 100%
}

.master_img .sale {
    position: absolute;
    top: 32px;
    right: 32px
}

.master_img img {
    border-radius: 20px
}

.save_title {
    text-align: center
}

.save_list {
    grid-gap: 80px 40px;
    margin-top: 80px
}

.save_sale {
    --color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    padding: 0 14px;
    font-size: 22px;
    font-weight: 700;
    background: rgba(119, 87, 189, .16);
    border-radius: 44px
}

.save_bottom {
    display: flex;
    grid-gap: 10px;
    margin-top: 16px;
    font-size: max(var(--h4), 32px);
    font-weight: 800
}

.save_bottom span {
    --color: var(--red)
}

.desc_net {
    align-items: center;
    justify-content: space-between;
    grid-gap: 40px calc(var(--section_gap) / 2)
}

.desc_img img {
    margin-left: clamp(-88px, var(--bone_size) * -1 + 32px, var(--bone) * -.5);
    border-radius: 20px
}

.desc_description {
    margin-top: 32px;
    max-width: 700px
}

.desc_list {
    counter-reset: direction;
    grid-gap: 48px 40px;
    margin-top: 64px
}

.desc_list li {
    --color: var(--black-light);
    display: flex;
    align-items: center;
    grid-gap: 28px;
    padding-bottom: 16px;
    font-weight: 600;
    border-bottom: 1px solid #b4b4b4
}

.desc_list li:before {
    counter-increment: direction;
    content: '0' counter(direction);
    font-size: var(--h4);
    color: var(--primary)
}

.desc_btn {
    margin-top: 64px
}

.character_net {
    grid-gap: 26px 40px
}

.character_info {
    flex-grow: 1;
    max-width: 916px
}

.character_caption {
    margin-top: 64px;
    font-size: 1.2em;
    font-weight: 700
}

.character_list {
    counter-reset: direction;
    grid-gap: 48px 40px;
    margin-top: 32px
}

.character_list li {
    --color: var(--black-light);
    display: flex;
    align-items: center;
    grid-gap: 28px;
    padding-bottom: 16px;
    font-weight: 600;
    border-bottom: 1px solid #b4b4b4
}

.character_list li:before {
    counter-increment: direction;
    content: '0' counter(direction);
    font-size: var(--h4);
    color: var(--primary)
}

.character_text {
    --color: var(--gray);
    margin-top: 32px;
    font-weight: 500
}

.character_btn {
    margin-top: 64px
}

.character_img {
    width: 40%;
    max-width: 702px;
    min-width: min(460px, 100%);
    margin-right: clamp(-52px, var(--bone_size) * -1 + 32px, var(--bone) * -.5)
}

.how_title {
    text-align: center
}

.how_list {
    --size: min(394px, 40vw);
    counter-reset: direction;
    position: relative;
    margin-top: 80px
}

.how_list li {
    display: flex;
    align-items: center;
    grid-gap: 32px 40px;
    max-width: 737px
}

.how_list li:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: auto
}

.how_icon {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: var(--size);
    background-image: url(../fonts/how_bg.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    border-radius: 12px
}

.how_icon:after {
    content: '';
    display: block;
    position: relative;
    padding-bottom: 100%;
    background-image: image-set(url('../images/how_noice.png') 1x, url('../images/how_noice%402x.png') 2x);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    z-index: 1
}

.how_icon img {
    --size_icon: calc(var(--size) * .45);
    position: absolute;
    top: calc(50% - var(--size_icon) / 2);
    left: calc(50% - var(--size_icon) / 2);
    width: var(--size_icon);
    height: var(--size_icon)
}

.how_info {
    width: 100%;
    max-width: 260px;
    font-size: 26px;
    font-weight: 500
}

.how_info:before {
    counter-increment: direction;
    content: '0' counter(direction);
    display: block;
    margin-bottom: 16px;
    font-size: 40px;
    font-weight: 600;
    color: var(--primary)
}

.reviews_title {
    text-align: center
}

.reviews_net {
    align-items: center;
    grid-gap: 24px 32px;
    margin-top: 80px
}

.reviews_list {
    overflow: hidden;
    width: 100%;
    max-width: 760px
}

.reviews_li {
    display: grid;
    grid-gap: 48px
}

.reviews_li_star {
    --size: 20px;
    --gap: 4px
}

.reviews_li_description {
    font-size: calc(var(--h4) * 1.2);
    letter-spacing: -.02em;
    line-height: 1.25
}

.reviews_li_bottom {
    max-width: 580px
}

.reviews_li_arrows {
    display: flex;
    align-items: center;
    grid-gap: 32px
}

.reviews_img {
    position: relative;
    width: 100%;
    margin-right: clamp(-88px, var(--bone_size) * -1 + 32px, var(--bone) * -.5);
}

.reviews_img:after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.reviews_img img {
    position: absolute;
    top: 0;
    left: 0;

    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.ways_net {
    grid-gap: 56px 0
}

.ways_title {
    text-align: center;
    text-transform: uppercase
}

.ways_list {
    position: relative;
    margin-top: 80px;
    padding-top: 40px;
    padding-bottom: 96px
}

.ways_list li {
    position: relative;
    height: 210px;
    padding: 40px 20px
}

.ways_list img {
    max-width: 572px;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
    object-position: center
}

.ways_caption {
    margin-top: 20px;
    font-weight: 500;
    text-align: center
}

.order {
    position: relative;
    margin-top: min(120px, var(--section_gap))
}

.order .bone {
    position: relative
}

.order_bg {
    position: absolute;
    top: 0;
    left: 50%;
    right: var(--bone);
}

.order_bg:after {
    content: '';
    display: block;
    padding-bottom: 52%;
}

.order_bg img {
    position: absolute;
    top: 0;
    left: 0;

    /*height: 100%;*/
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}
.order_sale {
    position: absolute;
    top: 32px;
    right: calc(32px + var(--bone));
    z-index: 1
}

.order_form {
    display: inline-block;
    position: relative;
    margin: 32px 32px 0;
    padding: 40px;
    background-color: var(--white);
    border-radius: 20px;
    max-width: 834px;
    z-index: 1
}

.order_title {
    --color: var(--primary)
}

.order_title:not(:first-child) {
    margin-top: 4px
}

.order_price {
    margin-top: 32px;
    font-size: var(--body)
}

.order_descriprion {
    margin-top: 16px;
    max-width: 636px
}

.order_form form {
    display: grid;
    grid-gap: 32px;
    margin-top: 48px
}

.order_form form ._select {
    display: block
}

.order_form form label {
    display: block;
    margin-bottom: 12px;
    font-size: var(--h6);
    font-weight: 500
}

.order_form_bottom {
    flex-wrap: wrap;
    grid-gap: 12px 40px;
    margin-top: 16px
}

.block {
    --bone_w: 1856px
}

.block_net {
    grid-gap: 32px
}

.block_net > * {
    position: relative
}

.block_net > :after {
    content: '';
    display: block;
    padding-bottom: 53%
}

.block_net img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px
}

.four {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 140px 0
}

.four_logo {
    position: absolute;
    top: 60px;
    left: 50%;
    width: calc(100% - var(--bone) * 2);
    max-width: 288px;
    transform: translate3d(-50%, 0, 0)
}

.four_content {
    display: flex;
    flex-direction: column;
    align-items: center
}

.four_img {
    max-width: 580px
}

.four_title {
    margin-top: 32px;
    font-size: max(var(--h4), 32px);
    text-align: center
}

.four_description {
    --color: #808080;
    max-width: 612px;
    margin-top: 20px;
    font-size: 16px;
    text-align: center
}

.four_btn {
    margin-top: 48px
}

@media only screen and (min-width: 771px) {
    .ways_col:not(:first-child) .ways_list:before {
        content: '';
        position: absolute;
        top: 0;
        left: -1px;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, rgba(180, 180, 180, 0) 0, rgba(180, 180, 180, .77) 48.14%, rgba(180, 180, 180, 0) 100%)
    }

    .ways_col li:last-child:nth-child(2):after, .ways_col li:not(:first-child):before {
        content: '';
        position: absolute;
        top: -1px;
        left: calc(var(--bone_size) * -1);
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, rgba(180, 180, 180, 0) 0, rgba(180, 180, 180, .41) 50.07%, rgba(180, 180, 180, .77) 100%)
    }

    .ways_col:nth-child(even) li:last-child:nth-child(2):after, .ways_col:nth-child(even) li:not(:first-child):before {
        left: 0;
        right: calc(var(--bone_size) * -1);
        background: linear-gradient(-90deg, rgba(180, 180, 180, 0) 0, rgba(180, 180, 180, .41) 50.07%, rgba(180, 180, 180, .77) 100%)
    }

    .ways_col li:last-child:nth-child(2):after {
        top: auto;
        bottom: -1px
    }
}

@media only screen and (min-width: 901px) {
    .master_img {
        margin-left: clamp(var(--bone) * .5, var(--bone_size) - 32px, 88px);
        margin-right: clamp(-88px, var(--bone_size) * -1 + 32px, var(--bone) * -.5)
    }
}

@media only screen and (min-width: 1401px) {
    .how_list:before {
        content: '';
        position: absolute;
        top: calc(var(--size) - 32px);
        left: var(--size);
        bottom: 0;
        width: 616px;
        background-image: url("data:image/svg+xml,%3Csvg width='617' height='1078' viewBox='0 0 617 1078' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100.866 0.25C100.866 304.75 105.752 228.275 496.586 390.062C778.773 506.875 526.251 798.906 97.7188 798.906C-83.4054 798.906 -47.0936 1110.75 524.5 1074' stroke='url(%23paint0_linear_1_13820)' stroke-width='1.3125' stroke-dasharray='17.06 17.06'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1_13820' x1='80.5238' y1='-52.9063' x2='520.867' y2='1249.09' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.0104167' stop-color='%23B4B4B4' stop-opacity='0'/%3E%3Cstop offset='0.560756' stop-color='%23B4B4B4'/%3E%3Cstop offset='1' stop-color='%23B4B4B4' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
        background-position: top left;
        background-repeat: no-repeat;
        background-size: contain
    }
}

@media only screen and (max-width: 1920px) {
    .top {
        margin-left: var(--bone);
        margin-right: var(--bone)
    }

    .footer {
        margin-left: var(--bone);
        margin-right: var(--bone)
    }
}

@media only screen and (max-width: 1800px) {
    .card_net {
        --items_line: 4
    }
}

@media only screen and (max-width: 1600px) {
    .footer_nav ul {
        grid-gap: 40px
    }
}

@media only screen and (max-width: 1460px) {
    :root {
        --body: 18px;
        --btn_height: 60px;
        --section_gap: 100px
    }

    .footer_logo {
        width: 308px
    }

    .footer_nav ul {
        grid-gap: 16px 32px
    }
}

@media only screen and (max-width: 1400px) {
    .card_net {
        --items_line: 3
    }
}

@media only screen and (max-width: 1300px) {
    .card_net {
        --items_line: 2
    }
}

@media only screen and (max-width: 1200px) {
    :root {
        --grid_4: var(--grid_3)
    }

    .master_price {
        margin-top: 24px
    }

    .master_bottom {
        margin-top: 40px
    }

    .desc_description {
        margin-top: 24px
    }

    .desc_list {
        margin-top: 32px
    }

    .desc_btn {
        margin-top: 40px
    }

    .character_caption {
        margin-top: 32px
    }

    .character_list {
        margin-top: 24px
    }

    .character_text {
        margin-top: 24px
    }

    .character_btn {
        margin-top: 40px
    }

    .order_form {
        margin-top: 200px
    }
}

@media only screen and (max-width: 900px) {
    :root {
        --grid_3: var(--grid_2)
    }

    .top_net {
        flex-direction: column-reverse;
        max-width: 416px;
        margin: 0 auto
    }

    .top_info {
        flex-direction: column;
        margin-top: 32px
    }

    .master_net {
        display: flex;
        flex-direction: column-reverse;
        align-items: start
    }

    .desc_net {
        grid-template-columns:1fr
    }

    .desc_title br {
        display: none
    }

    .character_net {
        display: flex;
        flex-direction: column-reverse;
        align-items: stretch
    }

    .character_title br {
        display: none
    }

    .character_img {
        margin-left: auto;
        margin-right: auto
    }
}

@media only screen and (max-width: 770px) {
    .header_right {
        grid-gap: 24px 40px
    }

    .reviews_net {
        display: flex;
        flex-direction: column-reverse;
        margin-top: 32px
    }

    .reviews_li {
        grid-gap: 24px
    }

    .reviews_li_bottom {
        flex-direction: column;
        grid-gap: 32px
    }

    .reviews_li_bottom .user {
        width: 100%
    }

    .ways_net {
        grid-template-columns:1fr
    }

    .ways_list {
        display: grid;
        grid-gap: 52px;
        margin-top: 48px;
        padding: 0
    }

    .ways_list li {
        height: auto;
        padding: 0
    }

    .ways_list img {
        width: 90%;
        max-width: 298px;
        max-height: 80px
    }

    .ways_caption {
        margin-top: 40px
    }

    .ways_caption br {
        display: none
    }

    .block_net {
        grid-template-columns:1fr
    }
}

@media only screen and (max-width: 700px) {
    .cards {
        margin: 32px 0 48px
    }

    .card_net {
        --items_line: 1
    }

    .slick-slide {
        height: 0px!important;
    }
    .slick-slide.slick-active {
        height: 100% !important;
    }
}

@media only screen and (max-width: 600px) {
    :root {
        --grid_2: 1;
        --body: 16px;
        --btn_height: 56px;
        --section_gap: 80px
    }

    .top {
        padding: 20px 12px 28px
    }

    .top .bone {
        padding: 0
    }

    .top_info li:first-child {
        padding-top: 0;
        border-top: 0 none
    }

    .header_net, .header_right {
        align-items: flex-start;
        flex-direction: column
    }

    .marquee {
        height: 3.5em;
        min-height: 3.5em
    }

    .footer {
        padding: 20px 12px 28px
    }

    .footer .bone {
        padding: 0
    }

    .footer_title {
        text-align: center
    }

    .footer_info {
        flex-direction: column;
        align-items: stretch;
        grid-gap: 24px;
        margin-top: 32px
    }

    .footer_info li {
        grid-gap: 12px
    }

    .footer_nav ul {
        align-items: stretch;
        flex-direction: column;
        grid-gap: 24px
    }

    .footer_bottom {
        margin-top: 24px;
        padding-top: 24px
    }

    .footer_logo {
        width: 188px
    }

    .master_bottom {
        --btn_w: 100%
    }

    .save {
        margin-top: 40px !important
    }

    .save_list {
        margin-top: 32px
    }

    .how_list {
        --size: 100%;
        display: grid;
        grid-gap: 48px
    }

    .how_list li {
        flex-direction: column !important;
        width: 100%;
        text-align: center
    }

    .how_info {
        max-width: none
    }

    .order_form {
        margin-left: calc(var(--bone) * -1);
        margin-right: calc(var(--bone) * -1);
        padding: 20px var(--bone);
        border-radius: 0
    }

    .order_bg img {
        border-radius: 20px 20px 0 0
    }

    .order_price {
        margin-top: 12px
    }

    .order_form form {
        grid-gap: 16px;
        margin-top: 20px
    }

    .order_form_bottom {
        --btn_w: 100%;
        flex-direction: column-reverse;
        margin-top: 8px
    }
}

@media only screen and (max-width: 1200px) and (min-width: 901px), only screen and (max-width: 600px) {
    .desc_list {
        grid-template-columns:1fr;
        grid-gap: 24px
    }

    .character_list {
        grid-template-columns:1fr;
        grid-gap: 24px
    }
}

@media (hover: hover) {
    .__btn:hover {
        --color: var(--primary);
        background-color: transparent
    }

    .footer_info a {
        transition: color .43s
    }

    .footer_info a:hover {
        --color: var(--primary)
    }

    a.card_img {
        display: block;
        transition: transform .43s
    }

    a.card_img:hover {
        transform: scale(1.05)
    }

    a.card_name {
        display: block;
        transition: color .43s
    }

    a.card_name:hover {
        color: var(--primary)
    }
}
.ttu{
    text-transform: uppercase;
}

#form input.error{
    border-color: var(--red);
}

.original-form,#form-thx{
    display: none;
}

#form-thx{
    margin-top: 55px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.page{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--bone);
}

.page p,
.page h2,
.page h3,
.page h4,
.page h5,
.page h6,
.page .wp-block-table,
.page h1{
    margin-bottom: 15px;
}

.page ul,
.page ol{
    padding-left: 40px;
    margin-bottom: 15px;
}

.page li{
    list-style: inherit;
}

.header_net.single{
    min-height: auto;
}